diff --git a/.env.example b/.env.example index d5d7e6af..dd7f82bc 100644 --- a/.env.example +++ b/.env.example @@ -1,17 +1,5 @@ -NEXT_PUBLIC_NEYNAR_CLIENT_ID= -NEYNAR_CLIENT_ID= -NEYNAR_API_KEY= -NEXT_PUBLIC_REFERRAL= -SOUND_API_KEY= -NEYNAR_CLIENT_ID= -SUPABASE_URL= -SUPABASE_KEY= -NEXT_PUBLIC_SPOTIFY_CLIENT_ID= -SPOTIFY_CLIENT_SECRET= -STACK_SYSTEM_ID= -STACK_API_KEY= -NEXT_PUBLIC_ANON_KEY= -NEXT_PUBLIC_SUPABASE_URL= -NEXT_PUBLIC_THIRDWEB_CLIENT_ID= PRIVY_APP_ID= -PRIVY_APP_SECRET= \ No newline at end of file +PRIVY_APP_SECRET= +REWARDS_DEPOSIT_POINT_SYSTEM_ID= +STACK_API_KEY= +STACK_POINT_SYSTEM_ID= \ No newline at end of file diff --git a/LICENSE b/LICENSE index 406a929d..83677105 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Sonata +Copyright (c) 2024 sweetman.eth Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e1102b2a..693d8316 100644 --- a/README.md +++ b/README.md @@ -1,43 +1,78 @@ -# sonata +# myco API 🌟 -music client for farcaster +myco API is a powerful tool designed to help developers and creators leverage the Zora ecosystem more effectively. It provides a suite of endpoints that simplify interaction with Zora's blockchain data and offer valuable insights. 🚀 -supports music on +## Tech Stack 🛠️ -- Spotify -- Soundcloud -- Sound.xyz -- Zora (coming soon) +- **Frontend**: Next.js 14, React 18, TypeScript +- **Styling**: Tailwind CSS, shadcn/ui +- **Backend**: Next.js API Routes +- **Blockchain Interaction**: viem +- **Authentication**: Privy +- **Analytics**: Stack +- **Deployment**: Vercel -# Setup +## Getting Started 🏁 -1. Download and install Docker: https://docs.docker.com/get-docker/ -2. Open the Docker App on your machine. Verify with `docker info`. -3. Use node v20 with `nvm use 20`. -4. Run the following in the root of the sonata codebase: - `npx supabase init`. -5. Run the starting function - `npx supabase start`. This will now have the database live with some production data available to you. -6. Run - `npx supabase status` -7. Now go to .env file and fill the env variables +1. Clone the repository: -# DB Issues + ``` + git clone https://github.com/sweetmantech/myco-api.git + cd myco-api + ``` -- If you see any errors happening db related or, need to make DB migrations run the following: `npx supabase db reset` +2. Install dependencies: -``` -NEXT_PUBLIC_SUPABASE_URL={API URL} -NEXT_PUBLIC_ANON_KEY={anon key} -SUPABASE_URL={API URL} -SUPABASE_KEY={service_role key} -``` + ``` + yarn install + ``` -## Authors +3. Set up environment variables: + Create a `.env.local` file in the root directory and add the following variables: -- [@sweetmantech](https://github.com/sweetmantech) ([warpcast](https://warpcast.com/sweetman-eth)) -- [@ramiechaarani](https://github.com/ramiechaarani) ([warpcast](https://warpcast.com/ramie/)) + ``` + STACK_API_KEY=your_stack_api_key + PRIVY_APP_ID=your_privy_app_id + PRIVY_APP_SECRET=your_privy_app_secret + ``` + +4. Run the development server: + + ``` + yarn dev + ``` + +5. Open [http://localhost:3000](http://localhost:3000) in your browser to see the application. + +## How myco API Helps Developers 👨‍💻 + +1. **Simplified Zora Integration**: Access Zora protocol data through easy-to-use REST API endpoints. 🔗 +2. **Profile Information**: Retrieve comprehensive Zora profile data for any address. 👤 +3. **Token and Collection Data**: Easily fetch information about Zora tokens and collections. 🖼️ +4. **Rewards System**: Access and track Zora rewards for different activities. 🏆 +5. **Leaderboard**: Implement gamification features using the built-in leaderboard system. 🏅 +6. **Scoring System**: Utilize the Zora score calculation for user engagement metrics. 📊 + +## How myco API Helps Creators 🎨 + +1. **Profile Insights**: Gain valuable insights into your Zora profile, including completeness score and follower metrics. 📈 +2. **Reward Tracking**: Easily monitor your earnings from creator rewards, referrals, and first minter bonuses. 💰 +3. **Collection Management**: Access detailed information about your created collections and their performance. 🗂️ +4. **Engagement Metrics**: Understand your audience better with follower and following scores. 🤝 +5. **Leaderboard Participation**: Increase visibility and engagement by participating in the platform's leaderboard. 🌟 -## License +## API Endpoints 🔌 -This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details +For a complete list of available API endpoints and their usage, please refer to our [API documentation](https://api.myco.wtf). + +## Contributing 🤝 + +We welcome contributions! Please open a pull request to contribute. + +## License 📄 + +This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details. + +## Authors ✍️ + +- [@sweetmantech](https://github.com/sweetmantech) ([warpcast](https://warpcast.com/sweetman-eth)) diff --git a/abis/hypersub.json b/abis/hypersub.json deleted file mode 100644 index 0e5e202b..00000000 --- a/abis/hypersub.json +++ /dev/null @@ -1,802 +0,0 @@ -[ - { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "owner", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "approved", "type": "address" }, - { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" } - ], - "name": "Approval", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "owner", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "operator", "type": "address" }, - { "indexed": false, "internalType": "bool", "name": "approved", "type": "bool" } - ], - "name": "ApprovalForAll", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": false, "internalType": "uint256", "name": "tokens", "type": "uint256" } - ], - "name": "FeeAllocated", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "from", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "to", "type": "address" } - ], - "name": "FeeCollectorChange", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "from", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "to", "type": "address" }, - { - "indexed": false, - "internalType": "uint256", - "name": "tokensTransferred", - "type": "uint256" - } - ], - "name": "FeeTransfer", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, - { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" }, - { "indexed": false, "internalType": "uint256", "name": "secondsGranted", "type": "uint256" }, - { "indexed": false, "internalType": "uint256", "name": "expiresAt", "type": "uint256" } - ], - "name": "Grant", - "type": "event" - }, - { - "anonymous": false, - "inputs": [{ "indexed": false, "internalType": "uint8", "name": "version", "type": "uint8" }], - "name": "Initialized", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" } - ], - "name": "OwnershipTransferStarted", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" } - ], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": false, "internalType": "address", "name": "account", "type": "address" } - ], - "name": "Paused", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, - { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" }, - { - "indexed": false, - "internalType": "uint256", - "name": "tokensTransferred", - "type": "uint256" - }, - { "indexed": false, "internalType": "uint256", "name": "timePurchased", "type": "uint256" }, - { "indexed": false, "internalType": "uint256", "name": "rewardPoints", "type": "uint256" }, - { "indexed": false, "internalType": "uint256", "name": "expiresAt", "type": "uint256" } - ], - "name": "Purchase", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": false, "internalType": "uint256", "name": "id", "type": "uint256" }, - { "indexed": false, "internalType": "uint16", "name": "rewardBps", "type": "uint16" } - ], - "name": "ReferralCreated", - "type": "event" - }, - { - "anonymous": false, - "inputs": [{ "indexed": false, "internalType": "uint256", "name": "id", "type": "uint256" }], - "name": "ReferralDestroyed", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" }, - { "indexed": true, "internalType": "address", "name": "referrer", "type": "address" }, - { "indexed": true, "internalType": "uint256", "name": "referralId", "type": "uint256" }, - { "indexed": false, "internalType": "uint256", "name": "rewardAmount", "type": "uint256" } - ], - "name": "ReferralPayout", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, - { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" }, - { - "indexed": false, - "internalType": "uint256", - "name": "tokensTransferred", - "type": "uint256" - }, - { "indexed": false, "internalType": "uint256", "name": "timeReclaimed", "type": "uint256" } - ], - "name": "Refund", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": false, "internalType": "uint256", "name": "tokensIn", "type": "uint256" } - ], - "name": "RefundTopUp", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "slasher", "type": "address" }, - { - "indexed": false, - "internalType": "uint256", - "name": "rewardPointsSlashed", - "type": "uint256" - } - ], - "name": "RewardPointsSlashed", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, - { - "indexed": false, - "internalType": "uint256", - "name": "tokensTransferred", - "type": "uint256" - } - ], - "name": "RewardWithdraw", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": false, "internalType": "uint256", "name": "tokens", "type": "uint256" } - ], - "name": "RewardsAllocated", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": false, "internalType": "uint256", "name": "supplyCap", "type": "uint256" } - ], - "name": "SupplyCapChange", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "from", "type": "address" }, - { "indexed": true, "internalType": "address", "name": "to", "type": "address" }, - { "indexed": true, "internalType": "uint256", "name": "tokenId", "type": "uint256" } - ], - "name": "Transfer", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "recipient", "type": "address" } - ], - "name": "TransferRecipientChange", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": false, "internalType": "address", "name": "account", "type": "address" } - ], - "name": "Unpaused", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, - { - "indexed": false, - "internalType": "uint256", - "name": "tokensTransferred", - "type": "uint256" - } - ], - "name": "Withdraw", - "type": "event" - }, - { - "inputs": [], - "name": "acceptOwnership", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "to", "type": "address" }, - { "internalType": "uint256", "name": "tokenId", "type": "uint256" } - ], - "name": "approve", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], - "name": "balanceOf", - "outputs": [{ "internalType": "uint256", "name": "numSeconds", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "baseTokenURI", - "outputs": [{ "internalType": "string", "name": "uri", "type": "string" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "address[]", "name": "accounts", "type": "address[]" }], - "name": "canRefund", - "outputs": [{ "internalType": "bool", "name": "refundable", "type": "bool" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "contractURI", - "outputs": [{ "internalType": "string", "name": "uri", "type": "string" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "uint256", "name": "code", "type": "uint256" }, - { "internalType": "uint16", "name": "bps", "type": "uint16" } - ], - "name": "createReferralCode", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "creatorBalance", - "outputs": [{ "internalType": "uint256", "name": "balance", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "code", "type": "uint256" }], - "name": "deleteReferralCode", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "erc20Address", - "outputs": [{ "internalType": "address", "name": "erc20", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "feeBalance", - "outputs": [{ "internalType": "uint256", "name": "balance", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "feeSchedule", - "outputs": [ - { "internalType": "address", "name": "feeCollector", "type": "address" }, - { "internalType": "uint16", "name": "feeBps", "type": "uint16" } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "tokenId", "type": "uint256" }], - "name": "getApproved", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address[]", "name": "accounts", "type": "address[]" }, - { "internalType": "uint256", "name": "secondsToAdd", "type": "uint256" } - ], - "name": "grantTime", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "components": [ - { "internalType": "string", "name": "name", "type": "string" }, - { "internalType": "string", "name": "symbol", "type": "string" }, - { "internalType": "string", "name": "contractUri", "type": "string" }, - { "internalType": "string", "name": "tokenUri", "type": "string" }, - { "internalType": "address", "name": "owner", "type": "address" }, - { "internalType": "uint256", "name": "tokensPerSecond", "type": "uint256" }, - { "internalType": "uint256", "name": "minimumPurchaseSeconds", "type": "uint256" }, - { "internalType": "uint16", "name": "rewardBps", "type": "uint16" }, - { "internalType": "uint8", "name": "numRewardHalvings", "type": "uint8" }, - { "internalType": "uint16", "name": "feeBps", "type": "uint16" }, - { "internalType": "address", "name": "feeRecipient", "type": "address" }, - { "internalType": "address", "name": "erc20TokenAddr", "type": "address" } - ], - "internalType": "struct Shared.InitParams", - "name": "params", - "type": "tuple" - } - ], - "name": "initialize", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "owner", "type": "address" }, - { "internalType": "address", "name": "operator", "type": "address" } - ], - "name": "isApprovedForAll", - "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "minPurchaseSeconds", - "outputs": [{ "internalType": "uint256", "name": "numSeconds", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "numTokens", "type": "uint256" }], - "name": "mint", - "outputs": [], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "account", "type": "address" }, - { "internalType": "uint256", "name": "numTokens", "type": "uint256" } - ], - "name": "mintFor", - "outputs": [], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "uint256", "name": "numTokens", "type": "uint256" }, - { "internalType": "uint256", "name": "referralCode", "type": "uint256" }, - { "internalType": "address", "name": "referrer", "type": "address" } - ], - "name": "mintWithReferral", - "outputs": [], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "account", "type": "address" }, - { "internalType": "uint256", "name": "numTokens", "type": "uint256" }, - { "internalType": "uint256", "name": "referralCode", "type": "uint256" }, - { "internalType": "address", "name": "referrer", "type": "address" } - ], - "name": "mintWithReferralFor", - "outputs": [], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [], - "name": "name", - "outputs": [{ "internalType": "string", "name": "", "type": "string" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "owner", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "tokenId", "type": "uint256" }], - "name": "ownerOf", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "pause", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "paused", - "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "pendingOwner", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "reconcileERC20Balance", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "reconcileNativeBalance", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "tokenAddress", "type": "address" }, - { "internalType": "address", "name": "recipientAddress", "type": "address" }, - { "internalType": "uint256", "name": "tokenAmount", "type": "uint256" } - ], - "name": "recoverERC20", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "recipient", "type": "address" }], - "name": "recoverNativeTokens", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "code", "type": "uint256" }], - "name": "referralCodeBps", - "outputs": [{ "internalType": "uint16", "name": "bps", "type": "uint16" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "uint256", "name": "numTokensIn", "type": "uint256" }, - { "internalType": "address[]", "name": "accounts", "type": "address[]" } - ], - "name": "refund", - "outputs": [], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], - "name": "refundableBalanceOf", - "outputs": [{ "internalType": "uint256", "name": "numSeconds", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "address[]", "name": "accounts", "type": "address[]" }], - "name": "refundableTokenBalanceOfAll", - "outputs": [{ "internalType": "uint256", "name": "numTokens", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "renounceOwnership", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], - "name": "rewardBalanceOf", - "outputs": [{ "internalType": "uint256", "name": "numTokens", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "rewardBps", - "outputs": [{ "internalType": "uint16", "name": "bps", "type": "uint16" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "rewardMultiplier", - "outputs": [{ "internalType": "uint256", "name": "multiplier", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "rewardPoolBalance", - "outputs": [{ "internalType": "uint256", "name": "numTokens", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "from", "type": "address" }, - { "internalType": "address", "name": "to", "type": "address" }, - { "internalType": "uint256", "name": "tokenId", "type": "uint256" } - ], - "name": "safeTransferFrom", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "from", "type": "address" }, - { "internalType": "address", "name": "to", "type": "address" }, - { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, - { "internalType": "bytes", "name": "data", "type": "bytes" } - ], - "name": "safeTransferFrom", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "operator", "type": "address" }, - { "internalType": "bool", "name": "approved", "type": "bool" } - ], - "name": "setApprovalForAll", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "supplyCap", "type": "uint256" }], - "name": "setSupplyCap", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "recipient", "type": "address" }], - "name": "setTransferRecipient", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], - "name": "slashRewards", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], - "name": "subscriptionOf", - "outputs": [ - { "internalType": "uint256", "name": "tokenId", "type": "uint256" }, - { "internalType": "uint256", "name": "refundableAmount", "type": "uint256" }, - { "internalType": "uint256", "name": "rewardPoints", "type": "uint256" }, - { "internalType": "uint256", "name": "expiresAt", "type": "uint256" } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "supplyDetail", - "outputs": [ - { "internalType": "uint256", "name": "count", "type": "uint256" }, - { "internalType": "uint256", "name": "cap", "type": "uint256" } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "bytes4", "name": "interfaceId", "type": "bytes4" }], - "name": "supportsInterface", - "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "symbol", - "outputs": [{ "internalType": "string", "name": "", "type": "string" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "numTokens", "type": "uint256" }], - "name": "timeValue", - "outputs": [{ "internalType": "uint256", "name": "numSeconds", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [{ "internalType": "uint256", "name": "tokenId", "type": "uint256" }], - "name": "tokenURI", - "outputs": [{ "internalType": "string", "name": "uri", "type": "string" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "totalCreatorEarnings", - "outputs": [{ "internalType": "uint256", "name": "total", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "totalRewardPoints", - "outputs": [{ "internalType": "uint256", "name": "numPoints", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "tps", - "outputs": [{ "internalType": "uint256", "name": "numTokens", "type": "uint256" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "transferAllBalances", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "transferFees", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "address", "name": "from", "type": "address" }, - { "internalType": "address", "name": "to", "type": "address" }, - { "internalType": "uint256", "name": "tokenId", "type": "uint256" } - ], - "name": "transferFrom", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }], - "name": "transferOwnership", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "transferRecipient", - "outputs": [{ "internalType": "address", "name": "recipient", "type": "address" }], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "unpause", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "newCollector", "type": "address" }], - "name": "updateFeeRecipient", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "string", "name": "contractUri", "type": "string" }, - { "internalType": "string", "name": "tokenUri", "type": "string" } - ], - "name": "updateMetadata", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "withdraw", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "withdrawAndTransferFees", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "withdrawRewards", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], - "name": "withdrawTo", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { "stateMutability": "payable", "type": "receive" } -] diff --git a/app/(feeds)/[username]/page.tsx b/app/(feeds)/[username]/page.tsx deleted file mode 100644 index 4fddf8c5..00000000 --- a/app/(feeds)/[username]/page.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { getFrameMetadata } from '@coinbase/onchainkit'; -import type { Metadata } from 'next'; -import { DEFAULT_FRAME, DESCRIPTION, TITLE, VERCEL_URL } from '@/lib/consts'; -import Feeds from '../feeds'; - -const frameMetadata = { ...getFrameMetadata(DEFAULT_FRAME), 'of:accepts:xmtp': '2024-02-01' }; - -export const metadata: Metadata = { - title: TITLE, - description: DESCRIPTION, - openGraph: { - title: TITLE, - description: DESCRIPTION, - images: `${VERCEL_URL}/images/og.png`, - }, - icons: [`${VERCEL_URL}/images/logo2.png`], - other: { - ...frameMetadata, - }, -}; - -export default function ProfileHome() { - return ; -} diff --git a/app/(feeds)/channel/[channelId]/page.tsx b/app/(feeds)/channel/[channelId]/page.tsx deleted file mode 100644 index 2bb29ec5..00000000 --- a/app/(feeds)/channel/[channelId]/page.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import Feeds from '@/app/(feeds)/feeds'; -import { CHANNELS } from '@/lib/consts'; - -export async function generateStaticParams() { - return CHANNELS.map((channel) => { - return { channelId: channel.value }; - }); -} - -export default function Channel({ params }: { params: { channelId: string } }) { - return ; -} diff --git a/app/(feeds)/feeds.tsx b/app/(feeds)/feeds.tsx deleted file mode 100644 index e8e9fc34..00000000 --- a/app/(feeds)/feeds.tsx +++ /dev/null @@ -1,33 +0,0 @@ -'use client'; - -import { useEffect } from 'react'; -import Feed from '@/components/Feed'; -import Loader from '@/components/Loader'; -import { useFeedProvider } from '@/providers/FeedProvider'; -import InfiniteScroll from 'react-infinite-scroll-component'; - -const Feeds = ({ channelId }: { channelId?: string }) => { - const { feed, fetchMore, hasMore, updateFilter, filter } = useFeedProvider(); - - useEffect(() => { - if (!filter.channel && channelId !== '/') { - updateFilter({ channel: channelId }); - } - }, [channelId]); - - return ( - fetchMore(feed.length)} - hasMore={hasMore} - loader={} - endMessage={

{`That's All!`}

} - className="!overflow-y-hidden" - scrollableTarget="feed-container" - > - -
- ); -}; - -export default Feeds; diff --git a/app/(feeds)/layout.tsx b/app/(feeds)/layout.tsx deleted file mode 100644 index 057b9b0d..00000000 --- a/app/(feeds)/layout.tsx +++ /dev/null @@ -1,63 +0,0 @@ -'use client'; - -import { ReactNode } from 'react'; -import Sidebar from '@/components/Sidebar'; -import { Sheet, SheetContent } from '@/components/ui/sheet'; -import { useUi } from '@/providers/UiProvider'; -import Header from '@/components/Header'; -import { Separator } from '@/components/ui/separator'; -import GlobalPlayer from '@/components/GlobalPlayer'; -import CreatePost from '@/components/CreatePost'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import FeedProvider from '@/providers/FeedProvider'; -import ProfileProvider from '@/providers/ProfileProvider'; -import { useParams } from 'next/navigation'; -import TipsList from '@/components/TipsList'; - -export default function FeedLayout({ children }: { children: ReactNode }) { - const { menuOpen, setMenuOpen } = useUi(); - const { username } = useParams(); - const { user } = useNeynarProvider(); - - return ( - - - -
- -
- - - - -
-
- -
-
-
- {user && !username && } - {children} -
-
-
-
-
- - -
-
-
- ); -} diff --git a/app/(feeds)/loading.tsx b/app/(feeds)/loading.tsx deleted file mode 100644 index 9fb9cda6..00000000 --- a/app/(feeds)/loading.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import { Loader2 } from 'lucide-react'; - -export default function Loading() { - return ( -
- -
- ); -} diff --git a/app/(feeds)/page.tsx b/app/(feeds)/page.tsx deleted file mode 100644 index 016efefd..00000000 --- a/app/(feeds)/page.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { getFrameMetadata } from '@coinbase/onchainkit'; -import type { Metadata } from 'next'; -import { DEFAULT_FRAME, DESCRIPTION, TITLE, VERCEL_URL } from '@/lib/consts'; -import Feeds from './feeds'; - -const frameMetadata = { ...getFrameMetadata(DEFAULT_FRAME), 'of:accepts:xmtp': '2024-02-01' }; - -export const metadata: Metadata = { - title: TITLE, - description: DESCRIPTION, - openGraph: { - title: TITLE, - description: DESCRIPTION, - images: `${VERCEL_URL}/images/og.png`, - }, - icons: [`${VERCEL_URL}/images/logo2.png`], - other: { - ...frameMetadata, - }, -}; - -export default function FeedsHome() { - return ; -} diff --git a/app/api/channel/stats/route.ts b/app/api/channel/stats/route.ts deleted file mode 100644 index 4cff34e8..00000000 --- a/app/api/channel/stats/route.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { CHANNELS } from "@/lib/consts"; -import combinePrivyAccountWithChannelStats from "@/lib/privy/combineAccountsWithStats"; -import sortChannels from "@/lib/sortChannels"; -import getChannelStats from "@/lib/supabase/getChannelStats"; -import { ChannelStats } from "@/types/ChannelStats"; -import { NextRequest } from "next/server"; - -export async function GET(req: NextRequest) { - const applyChannelFilter = req.nextUrl.searchParams.get('apply_channel_filter'); - const onlyChannelIds = req.nextUrl.searchParams.get('only_channel_ids'); - - try { - const channelStats = await getChannelStats(!!applyChannelFilter); - console.log('channelStats count', channelStats.length); - - const splitChannelStats = channelStats.reduce< - [ChannelStats[], ChannelStats[]] - >((previous, current) => { - const inChannels = CHANNELS.some(channel => channel.value === current.channelId); - if (inChannels) previous[0].push(current); - else previous[1].push(current); - - return previous; - }, [[], []]); - - const channelStatsWithAddresses = - await combinePrivyAccountWithChannelStats(splitChannelStats[0]); - console.log('channelStatsWithAddresses count', channelStatsWithAddresses.length); - - const allChannelStats = sortChannels([...channelStatsWithAddresses, ...splitChannelStats[1]]); - const channels = onlyChannelIds ? allChannelStats.map(channel => channel.channelId) : allChannelStats; - - return Response.json({ message: 'success', channels }); - } catch (error) { - console.error('Error:', error); - return Response.json({ message: 'failed' }, { status: 400 }); - } -} diff --git a/app/api/claimAirdrop/route.ts b/app/api/claimAirdrop/route.ts deleted file mode 100644 index af1d41ef..00000000 --- a/app/api/claimAirdrop/route.ts +++ /dev/null @@ -1,56 +0,0 @@ -import verifySignerUUID from '@/lib/neynar/verifySigner'; -import { stack } from '@/lib/stack/client'; -import { createClient } from '@supabase/supabase-js'; -import { NextRequest, NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); - -const getResponse = async (req: NextRequest): Promise => { - const body = await req.json(); - const { wallet_address, signer_uuid } = body; - - const verify = await verifySignerUUID(signer_uuid); - - if (!verify.status) { - return NextResponse.json( - { message: `Invalid Signer UUID`, tipRemaining: 0, totalTipOnPost: 0 }, - { status: 400 }, - ); - } - - const airdropAmount = await callRedeemAirdrop(wallet_address); - - if (airdropAmount > 0) { - await stack.track(`airdrop`, { account: wallet_address, points: airdropAmount }); - } - - return NextResponse.json( - { - message: `Airdropped ${airdropAmount} NOTES`, - }, - { status: 200 }, - ); -}; - -async function callRedeemAirdrop(walletAddressInput: string) { - const { data, error } = await supabase.rpc('redeem_airdrop', { - wallet_address_input: walletAddressInput, - }); - - if (error) { - console.error('Error calling function:', error); - return null; - } - - console.log('Function returned:', data); - return data; -} - -export async function POST(req: NextRequest): Promise { - return getResponse(req); -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/degenTip/route.ts b/app/api/degenTip/route.ts deleted file mode 100644 index e48aa83c..00000000 --- a/app/api/degenTip/route.ts +++ /dev/null @@ -1,57 +0,0 @@ -import postDegenTipComment from '@/lib/neynar/postDegenTipComment'; -import verifySignerUUID from '@/lib/neynar/verifySigner'; -import { createClient } from '@supabase/supabase-js'; -import { NextRequest, NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); - -const getResponse = async (req: NextRequest): Promise => { - const body = await req.json(); - const { signer_uuid, tipAmount, postHash } = body; - - const verify = await verifySignerUUID(signer_uuid); - - if (!verify.status) { - return NextResponse.json( - { message: 'Invalid Signer UUID', tipRemaining: 0, totalTipOnPost: 0 }, - { status: 400 }, - ); - } - - const totalDegenOnPost = await callAllocateDegenTip(tipAmount, postHash); - - await postDegenTipComment(signer_uuid, tipAmount, postHash); - - return NextResponse.json( - { - message: `Tipped ${tipAmount} DEGEN`, - usedTip: tipAmount, - totalTipOnPost: totalDegenOnPost, - }, - { status: 200 }, - ); -}; - -export async function POST(req: NextRequest): Promise { - return getResponse(req); -} - -async function callAllocateDegenTip(tipAmount: number, postHashInput: string) { - const { data, error } = await supabase.rpc('degen_tip_post', { - tip_amount: tipAmount, - post_hash_input: postHashInput, - }); - - if (error) { - console.error('Error calling function:', error); - return null; - } - - console.log('Function returned:', data); - return data; -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/feed/route.ts b/app/api/feed/route.ts deleted file mode 100644 index 08c6caf2..00000000 --- a/app/api/feed/route.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { NextRequest, NextResponse } from 'next/server'; -import { FeedType } from '@/types/Feed'; -import { getFeed } from '@/lib/feed/getFeed'; - -export async function GET(req: NextRequest) { - try { - const { searchParams } = new URL(req.url); - const feedType = searchParams.get('feedType') || FeedType.Trending; - const viewerFid = searchParams.get('viewerFid'); - const channelId = searchParams.get('channelId'); - - const filteredPosts = await getFeed(channelId, feedType as FeedType, Number(viewerFid)); - - return NextResponse.json({ posts: filteredPosts }); - } catch (error) { - console.error(error); - return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 }); - } -} diff --git a/app/api/frame/route.ts b/app/api/frame/route.ts deleted file mode 100644 index a941ffa2..00000000 --- a/app/api/frame/route.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { VERCEL_URL } from '@/lib/consts'; -import getButtons from '@/lib/getButtons'; -import { FrameRequest, getFrameHtmlResponse } from '@coinbase/onchainkit'; -import { NextRequest, NextResponse } from 'next/server'; -import { getFarcasterConnectedAccount } from '@/lib/airstack/getFarcasterConnectedAccount'; - -const getResponse = async (req: NextRequest): Promise => { - let address; - try { - const body: FrameRequest = await req.json(); - const { untrustedData } = body; - const { fid } = untrustedData; - const response = await getFarcasterConnectedAccount(fid.toString()); - const firstSocial = response?.data?.Socials?.Social?.[0]; - const firstConnectedAccount = firstSocial?.connectedAddresses?.[0]?.address; - const fallback = firstSocial?.userAddress; - address = firstConnectedAccount || fallback; - } catch (error) { - console.error('Error parsing JSON from request', error); - } - const buttons = getButtons(address); - const imageSrc = `${VERCEL_URL}/api/images/collector/collections?address=${address}`; - const frame = { - buttons, - image: { - src: imageSrc, - }, - postUrl: `${VERCEL_URL}/api/frame`, - }; - - return new NextResponse(getFrameHtmlResponse(frame)); -}; - -export async function POST(req: NextRequest): Promise { - return getResponse(req); -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/getLeaderboardRank/route.ts b/app/api/getLeaderboardRank/route.ts deleted file mode 100644 index a84e962c..00000000 --- a/app/api/getLeaderboardRank/route.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { stack } from '@/lib/stack/client'; -import { NextRequest } from 'next/server'; - -export async function GET(req: NextRequest): Promise { - const wallet_address = req.nextUrl.searchParams.get('wallet_address'); - - if (!wallet_address) { - return new Response(JSON.stringify({ error: 'wallet_address is required' }), { - status: 400, - headers: { - 'Content-Type': 'application/json', - }, - }); - } - const leaderBoard = await stack.getLeaderboardRank(wallet_address); - - return new Response(JSON.stringify({ leaderBoard: leaderBoard }), { - status: 200, - headers: { - 'Content-Type': 'application/json', - }, - }); -} diff --git a/app/api/getPoints/route.ts b/app/api/getPoints/route.ts deleted file mode 100644 index 55abd331..00000000 --- a/app/api/getPoints/route.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { stack } from '@/lib/stack/client'; -import { NextRequest } from 'next/server'; - -export async function GET(req: NextRequest): Promise { - // Retrieve the wallet_address from the query parameters - const wallet_address = req.nextUrl.searchParams.get('wallet_address'); - - if (!wallet_address) { - return new Response(JSON.stringify({ error: 'wallet_address is required' }), { - status: 400, - headers: { - 'Content-Type': 'application/json', - }, - }); - } - const currentBalance = await stack.getPoints(wallet_address); - - return new Response(JSON.stringify({ notes: currentBalance }), { - status: 200, - headers: { - 'Content-Type': 'application/json', - }, - }); -} diff --git a/app/api/jobs/getMissingCasts/route.ts b/app/api/jobs/getMissingCasts/route.ts deleted file mode 100644 index 2aca5df2..00000000 --- a/app/api/jobs/getMissingCasts/route.ts +++ /dev/null @@ -1,136 +0,0 @@ -import { CHANNELS } from '@/lib/consts'; -import createPostReply from '@/lib/neynar/createPostReply'; -import getChannelIdFromCast from '@/lib/neynar/getChannelIdFromCast'; -import getFeedFromTime from '@/lib/neynar/getFeedFromTime'; -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { createClient } from '@supabase/supabase-js'; -import { isEmpty, isNil } from 'lodash'; -import { NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; -const BOT_SIGNER_UUID = process.env.BOT_SIGNER_UUID as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY, { - auth: { - autoRefreshToken: false, - persistSession: false, - detectSessionInUrl: false, - }, -}); - -const processEntriesInBatches = async (entries: any[], batchSize = 50) => { - console.log('jobs::getMissingCasts', `${entries.length} new entries being added`); - for (let i = 0; i < entries.length; i += batchSize) { - const batch = entries.slice(i, i + batchSize); - await Promise.all(batch.map((entry: any) => processSingleEntry(entry))); - } -}; - -const processSingleEntry = async (cast: Cast) => { - const address = cast?.author?.verifications ? cast?.author?.verifications : undefined; - - if (!isEmpty(address)) { - await createCast(cast); - } -}; - -const getResponse = async (): Promise => { - 'use server'; - - const dateFourHoursAgo = new Date(); - dateFourHoursAgo.setHours(dateFourHoursAgo.getHours() - 6); - - const lastChecked = dateFourHoursAgo; - - console.log('jobs::getMissingCasts', `Starting Job from ${lastChecked}`); - - const formattedLastChecked = new Date(`${lastChecked}`); - - const [spotify, soundCloud, soundxyz, youtube] = await Promise.all([ - getFeedFromTime('spotify.com/track', formattedLastChecked), - getFeedFromTime('soundcloud.com', formattedLastChecked), - getFeedFromTime('sound.xyz', formattedLastChecked), - getFeedFromTime('youtube.com/watch', formattedLastChecked), - ]); - const allEntries: any[] = []; - allEntries.push(...spotify, ...soundCloud, ...soundxyz); - - const youtubeFiltered = youtube.filter((entry) => { - const channelId = getChannelIdFromCast(entry); - return channelId && CHANNELS.find((channel) => channel.value === channelId); - }); - - console.log('jobs::getNewCasts', 'ytEntries', youtubeFiltered); - allEntries.push(...youtubeFiltered); - - console.log('jobs::getMissingCasts', `${allEntries.length} new entries`); - - if (allEntries.length > 0) { - await processEntriesInBatches(allEntries); - } - - return NextResponse.json({ message: 'success', allEntries }, { status: 200 }); -}; - -async function createCast(cast: Cast) { - const likes = (cast as any).reactions.likes_count; - const parentUrl = cast.parent_url; - let channelId = null; - if (parentUrl) { - const match = /\/channel\/([^/]+)$/.exec(parentUrl); - if (match) { - channelId = match[1]; - } - } - - const { data: existingPosts } = await supabase - .from('posts') - .select() - .eq('post_hash', cast.hash) - .single(); - - if (isNil(existingPosts) && isEmpty(existingPosts)) { - const { data, error } = await supabase.from('posts').insert({ - post_hash: cast.hash, - likes, - created_at: new Date(cast.timestamp), - embeds: cast.embeds, - author: cast.author, - channelId, - }); - - console.log('jobs::getMissingCasts', `Successfully created/updated ${cast.hash}`); - - console.log(data); - if (error) { - console.error('Error calling function:', error); - return null; - } else { - sendBotCast(cast); - } - } - - return { success: true }; -} - -async function sendBotCast(cast: Cast) { - await createPostReply( - BOT_SIGNER_UUID, - cast.hash, - `This song is now available on @sonatatips where you earn NOTES when people tip you.\n\nSee you over there!\n\nhttps://sonata.tips/cast/${cast.author.username}/${cast.hash.substring(0, 8)}`, - ); - - return { success: true }; -} - -export async function GET(): Promise { - const response = await getResponse().catch((error) => { - console.error('Error in background task:', error); - }); - return response as NextResponse; -} - -export const dynamic = 'force-dynamic'; -export const fetchCache = 'force-no-store'; -export const revalidate = 0; diff --git a/app/api/jobs/getNewCasts/route.ts b/app/api/jobs/getNewCasts/route.ts deleted file mode 100644 index c561c350..00000000 --- a/app/api/jobs/getNewCasts/route.ts +++ /dev/null @@ -1,107 +0,0 @@ -import filterCastsByChannels from '@/lib/filterCastsByChannels'; -import getPlatformFeedFromTime from '@/lib/neynar/getPlatformFeedFromTime'; -import sendBotCast from '@/lib/sonata/sendBotCast'; -import getSpotifyWithAlternatives from '@/lib/spotify/getSpotifyWithAlternatives'; -import upsertCast from '@/lib/supabase/upsertCast'; -import filterZoraFeed from '@/lib/zora/filterCasts'; -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { createClient } from '@supabase/supabase-js'; -import { isEmpty } from 'lodash'; -import { NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY, { - auth: { - autoRefreshToken: false, - persistSession: false, - detectSessionInUrl: false, - }, -}); - -const processEntriesInBatches = async (entries: any[], batchSize = 50) => { - console.log('jobs::getNewCasts', `${entries.length} new entries being added`); - for (let i = 0; i < entries.length; i += batchSize) { - const batch = entries.slice(i, i + batchSize); - await Promise.all(batch.map((entry: any) => processSingleEntry(entry))); - } -}; - -const processSingleEntry = async (cast: Cast) => { - const address = cast?.author?.verifications ? cast?.author?.verifications : undefined; - - if (!isEmpty(address)) { - const data = await upsertCast(cast); - if (data.statusText == 'Created') await sendBotCast(cast); - } -}; - -const getResponse = async (): Promise => { - 'use server'; - const { data: cast_query_date } = await supabase - .from('cast_query_date') - .select('lastcheck') - .eq('id', 1) - .single(); - console.log('jobs::getNewCasts', `Starting Job from ${cast_query_date?.lastcheck}`); - - const twoMinutesAgo = new Date(new Date().getTime() - 2 * 60 * 1000).toISOString(); - - const lastChecked = cast_query_date ? cast_query_date.lastcheck : twoMinutesAgo; - - const formattedLastChecked = new Date(`${lastChecked}`); - - const feeds = await getPlatformFeedFromTime(formattedLastChecked); - - const spotifyWithAlternatives = await getSpotifyWithAlternatives(feeds.spotify); - console.log('jobs::getNewCasts', 'spotifyEntries', spotifyWithAlternatives); - - const youtubeFiltered = filterCastsByChannels(feeds.youtube); - console.log('jobs::getNewCasts', 'ytEntries', youtubeFiltered); - - const zoraFiltered = await filterZoraFeed(feeds.zora); - console.log('jobs::getNewCasts', 'zoraEntriesCount', zoraFiltered.length); - - const allEntries: Cast[] = [ - ...feeds.soundcloud, - ...feeds.soundxyz, - ...spotifyWithAlternatives, - ...youtubeFiltered, - ...zoraFiltered, - ]; - - console.log('jobs::getNewCasts', `${allEntries.length} new entries`); - if (allEntries.length > 0) { - await processEntriesInBatches(allEntries); - } - - let newLastChecked: string = allEntries.reduce((max, cast) => { - const current = new Date(cast.timestamp as string); - return current > new Date(max) ? cast.timestamp : max; - }, lastChecked); - - console.log('jobs::getNewCasts', `About to set cast_query_date to ${newLastChecked}`); - - if (isEmpty(newLastChecked)) { - newLastChecked = twoMinutesAgo; - } - - const { data, error } = await supabase - .from('cast_query_date') - .upsert({ id: 1, last_checked: newLastChecked, lastcheck: newLastChecked }); - - console.log(data, error); - return NextResponse.json({ message: 'success', allEntries }, { status: 200 }); -}; - -export async function GET(): Promise { - const response = await getResponse().catch((error) => { - console.error('Error in background task:', error); - }); - return response as NextResponse; -} - -export const dynamic = 'force-dynamic'; -export const fetchCache = 'force-no-store'; -export const revalidate = 0; diff --git a/app/api/jobs/reward_trending_posts/route.ts b/app/api/jobs/reward_trending_posts/route.ts deleted file mode 100644 index 6d1ea6e6..00000000 --- a/app/api/jobs/reward_trending_posts/route.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { stack } from '@/lib/stack/client'; -import { createClient } from '@supabase/supabase-js'; -import { isNil } from 'lodash'; -import { NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; -const TIP_AWARD_PER = 1000; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); - -const getResponse = async (): Promise => { - const topPosts = await fetchTopPosts(); - - if (isNil(topPosts)) return NextResponse.json({ message: 'No top posts' }, { status: 400 }); - - for (let i = 0; i < topPosts.length; i++) { - const post = topPosts[i]; - const verifications = post.verifications; - if (!isNil(verifications) && verifications.length > 0) { - const authorWallet = verifications[0]; - stack.track(`trending_reward_${authorWallet}`, { - account: authorWallet, - points: TIP_AWARD_PER, - }); - } - } - - return NextResponse.json({ message: 'success' }, { status: 200 }); -}; - -async function fetchTopPosts() { - const { data, error } = await supabase - .from('trending_posts') - .select('*') - .order('score', { ascending: false }) - .limit(100); - - if (error) { - console.error('Error fetching posts:', error); - return null; - } - - return data; -} - -export async function GET(): Promise { - await getResponse().catch((error) => { - console.error('Error in background task:', error); - }); - return NextResponse.json({ message: 'success' }, { status: 200 }); -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/jobs/updateHypersub/route.ts b/app/api/jobs/updateHypersub/route.ts deleted file mode 100644 index 9d79ba7b..00000000 --- a/app/api/jobs/updateHypersub/route.ts +++ /dev/null @@ -1,110 +0,0 @@ -import { createClient } from '@supabase/supabase-js'; -import { NextResponse } from 'next/server'; -import { base } from 'viem/chains'; -import HyperSub from '@/abis/hypersub.json'; -import { createPublicClient, http } from 'viem'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; -const NEYNAR_API_KEY = process.env.NEYNAR_API_KEY as string; -const BASEAlchemyKey = process.env.BASE_ALCHEMY_KEY as string; -const hypersubContractAddress = process.env.HYPERSUB_CONTRACT_ADDRESS as `0x${string}`; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY, { - auth: { - autoRefreshToken: false, - persistSession: false, - detectSessionInUrl: false, - }, -}); - -const fetchUserData = async (fids: string[]): Promise => { - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: NEYNAR_API_KEY }, - } as any; - const queryParams = new URLSearchParams({ fids: fids.join(',') }); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/user/bulk?${queryParams}`, - options, - ); - return response.json(); -}; - -const checkBalances = async (verifications: string[]): Promise => { - const BASEpublicServerClient = createPublicClient({ - chain: base, - transport: http(`https://base-mainnet.g.alchemy.com/v2/${BASEAlchemyKey}`), - }); - - for (const address of verifications) { - const balance = (await BASEpublicServerClient.readContract({ - address: hypersubContractAddress, - abi: HyperSub, - functionName: 'balanceOf', - args: [address], - })) as number; - - if (balance > 0) { - return true; - } - } - - return false; -}; - -const updateSupabaseEntry = async (fid: string, hasBalance: boolean): Promise => { - const now = new Date().toISOString(); - const updateData = hasBalance - ? { hypersub_subscribed_since: now } - : { hypersub_subscribed_since: null }; - - await supabase - .from('tips') - .update(updateData) - .eq('fid', fid) - .is('hypersub_subscribed_since', null); -}; - -const getResponse = async (): Promise => { - 'use server'; - const { data: fids, error } = await supabase.from('tips').select('fid'); - if (error) { - return NextResponse.json({ message: 'Error retrieving fids', error }, { status: 500 }); - } - - const fidChunks = []; - const chunkSize = 10; // Reduce chunk size for more parallel batches - for (let i = 0; i < fids.length; i += chunkSize) { - fidChunks.push(fids.slice(i, i + chunkSize)); - } - - const processChunks = fidChunks.map(async (chunk) => { - const { users } = await fetchUserData(chunk.map((fid: any) => fid.fid)); - const results = await Promise.all( - users.map(async (user: any) => { - const hasBalance = await checkBalances(user.verifications); - await updateSupabaseEntry(user.fid, hasBalance); - return { fid: user.fid, hasBalance }; // Return result if needed - }), - ); - return results; - }); - - await Promise.all(processChunks); - - return NextResponse.json({ message: 'success' }, { status: 200 }); -}; - -export async function GET(): Promise { - const response = await getResponse().catch((error) => { - console.error('Error in background task:', error); - return NextResponse.json({ message: 'Error in background task', error }, { status: 500 }); - }); - return response as NextResponse; -} - -export const dynamic = 'force-dynamic'; -export const fetchCache = 'force-no-store'; -export const revalidate = 0; diff --git a/app/api/jobs/update_tips/route.ts b/app/api/jobs/update_tips/route.ts deleted file mode 100644 index f5dc67d2..00000000 --- a/app/api/jobs/update_tips/route.ts +++ /dev/null @@ -1,121 +0,0 @@ -import filterCastsByChannels from '@/lib/filterCastsByChannels'; -import getTipAllocationFeedFromTime from '@/lib/neynar/getTipAllocationFeedFromTime'; -import { createClient } from '@supabase/supabase-js'; -import { isEmpty } from 'lodash'; -import { NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); - -const processEntriesInBatches = async (entries: any[], batchSize = 50) => { - for (let i = 0; i < entries.length; i += batchSize) { - const batch = entries.slice(i, i + batchSize); - await Promise.all(batch.map((entry: any) => processSingleEntry(entry))); - } -}; - -const processSingleEntry = async (cast: { - reactions: { likes: string | any[] }; - author: { - power_badge: any; - verifications: any; - fid: any; - }; - timestamp: any; -}) => { - const likes = cast.reactions?.likes?.length ?? 0; - const address = cast?.author?.verifications ? cast?.author?.verifications[0] : undefined; - const powerBadge = cast?.author?.power_badge ?? false; - const timestamp = cast?.timestamp; - const fid = cast?.author?.fid; - - if (!isEmpty(address)) { - await callUpdateTips(address, fid, likes, 1, timestamp, powerBadge); - } -}; - -const getResponse = async (): Promise => { - 'use server'; - const { data: tip_query_date } = await supabase - .from('tip_query_date') - .select('last_checked') - .eq('id', 1) - .single(); - console.log('jobs::update_tips', `Starting Job from ${tip_query_date?.last_checked}`); - - const lastChecked = tip_query_date ? tip_query_date.last_checked : ''; - const formattedLastChecked = new Date(`${lastChecked}`); - - const [spotify, soundCloud, soundxyz, youtube] = await Promise.all([ - getTipAllocationFeedFromTime('spotify.com/track', formattedLastChecked), - getTipAllocationFeedFromTime('soundcloud.com', formattedLastChecked), - getTipAllocationFeedFromTime('sound.xyz', formattedLastChecked), - getTipAllocationFeedFromTime('youtube.com/watch', formattedLastChecked), - ]); - - const allEntries: any[] = []; - - allEntries.push(...spotify, ...soundCloud, ...soundxyz); - - const youtubeFiltered = filterCastsByChannels(youtube); - console.log('jobs::update_tips', 'ytEntries', youtubeFiltered); - allEntries.push(...youtubeFiltered); - - console.log('jobs::update_tips', `New entries:`, allEntries.length); - - await processEntriesInBatches(allEntries); - - const newLastChecked: string = allEntries.reduce((max, cast) => { - const current = new Date(cast.timestamp as string); - return current > new Date(max) ? cast.timestamp : max; - }, lastChecked); - - console.log('jobs::update_tips', `About to call update_daily_tip_allocation`); - await supabase.rpc('update_daily_tip_allocation'); - - console.log('jobs::update_tips', `About to set last_checked to ${newLastChecked}`); - await supabase.from('tip_query_date').upsert({ id: 1, last_checked: newLastChecked }); - - return NextResponse.json({ message: 'success' }, { status: 200 }); -}; - -async function callUpdateTips( - walletAddress: string, - fid: string, - totalLikes: number, - numPosts: number, - firstPostDate: string, - power_badge: boolean, -) { - const firstPostDateISO = new Date(firstPostDate).toISOString(); - - const { data, error } = await supabase.rpc('update_tips', { - p_wallet_address: walletAddress, - p_fid: fid, - p_total_likes: totalLikes, - p_num_posts: numPosts, - p_first_post_date: firstPostDateISO, - p_power_badge: power_badge, - }); - - if (error) { - console.error('Error calling function:', error); - return null; - } - - console.log('Function called successfully, result:', data); - return data; -} - -export async function GET(): Promise { - await getResponse().catch((error) => { - console.error('Error in background task:', error); - }); - return NextResponse.json({ message: 'success' }, { status: 200 }); -} - -export const dynamic = 'force-dynamic'; -export const fetchCache = 'force-no-store'; -export const revalidate = 0; diff --git a/app/api/neynar/createReaction/route.ts b/app/api/neynar/createReaction/route.ts deleted file mode 100644 index 59b0cba5..00000000 --- a/app/api/neynar/createReaction/route.ts +++ /dev/null @@ -1,62 +0,0 @@ -import getCastLikesCount from '@/lib/neynar/getCastLikesCount'; -import hasUserLikedCast from '@/lib/neynar/hasUserLiked'; -import verifySignerUUID from '@/lib/neynar/verifySigner'; -import { createClient } from '@supabase/supabase-js'; -import { NextRequest, NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); - -const getResponse = async (req: NextRequest): Promise => { - const body = await req.json(); - const { signer_uuid, reaction_type, target } = body; - - const options = { - method: 'POST', - headers: { - accept: 'application/json', - api_key: process.env.NEYNAR_API_KEY, - 'content-type': 'application/json', - }, - body: JSON.stringify({ - signer_uuid, - reaction_type, - target, - }), - } as any; - - try { - const { fid } = await verifySignerUUID(signer_uuid); - - let likes_count = await getCastLikesCount(target); - const isFidIncluded = await hasUserLikedCast(target, fid); - - if (!isFidIncluded) { - await fetch(`https://api.neynar.com/v2/farcaster/reaction?`, options); - - likes_count++; - await supabase.from('posts').upsert( - { - post_hash: target, - likes: likes_count, - }, - { - onConflict: 'post_hash', - }, - ); - } - - return NextResponse.json({ success: true, likes: likes_count }, { status: 200 }); - } catch (error) { - console.error(error); - return NextResponse.json({ errors: 'Something went wrong' }, { status: 400 }); - } -}; - -export async function POST(req: NextRequest): Promise { - return getResponse(req); -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/neynar/getFeed/route.ts b/app/api/neynar/getFeed/route.ts deleted file mode 100644 index 58404abd..00000000 --- a/app/api/neynar/getFeed/route.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { isEmpty } from 'lodash'; -import { NextRequest } from 'next/server'; - -export async function GET(req: NextRequest): Promise { - const embedUrl = req.nextUrl.searchParams.get('embedUrl') as string; - - if (isEmpty(embedUrl)) { - return new Response(JSON.stringify({ error: 'embedUrl required' }), { - status: 400, - headers: { - 'Content-Type': 'application/json', - }, - }); - } - - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - next: { - revalidate: 60, - }, - } as any; - - try { - const queryParams = new URLSearchParams({ - feed_type: 'filter', - filter_type: 'embed_url', - embed_url: embedUrl, - with_recasts: 'false', - limit: '100', - }); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/feed?${queryParams}`, - options, - ); - const data = await response.json(); - return new Response(JSON.stringify(data), { - status: 200, - headers: { - 'Content-Type': 'application/json', - }, - }); - } catch (error) { - console.error(error); - return new Response(JSON.stringify({ error: 'getUser Failed' }), { - status: 400, - headers: { - 'Content-Type': 'application/json', - }, - }); - } -} diff --git a/app/api/neynar/getFollowers/route.ts b/app/api/neynar/getFollowers/route.ts deleted file mode 100644 index ee8b37dc..00000000 --- a/app/api/neynar/getFollowers/route.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { NextRequest } from 'next/server'; - -export async function GET(req: NextRequest): Promise { - const fid = req.nextUrl.searchParams.get('fid'); - if (!fid) return Response.json({ message: 'fid required' }, { status: 400 }) - - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - next: { - revalidate: 60, - }, - } as any; - - try { - const queryParams = new URLSearchParams({ fid, limit: '3' }); - - const response = await fetch(`https://api.neynar.com/v2/farcaster/followers?${queryParams}`, options); - const data = await response.json(); - const users = data?.users?.map((follower: any) => follower.user) ?? []; - - return Response.json({ users }); - } catch (error) { - console.error(error); - return Response.json({ message: 'getFollwers failed' }, { status: 500 }); - } -} diff --git a/app/api/neynar/getFollowing/route.ts b/app/api/neynar/getFollowing/route.ts deleted file mode 100644 index f1f3ac99..00000000 --- a/app/api/neynar/getFollowing/route.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { NextRequest } from 'next/server'; - -export async function GET(req: NextRequest): Promise { - const { searchParams } = new URL(req.url); - const fid = searchParams.get('fid') as string; - let first = true, - cursor = null; - - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - next: { - revalidate: 60, - }, - } as any; - - try { - const params: any = { fid, limit: '100' }; - const users = []; - while (first || cursor) { - first = false; - if (cursor) { - params.cursor = cursor; - } - const queryParams = new URLSearchParams(params); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/following?${queryParams}`, - options, - ); - const data = await response.json(); - if (data.users) { - users.push(...data.users.map((user: any) => user.user)); - } - cursor = data.next.cursor; - } - - return new Response(JSON.stringify({ users }), { - status: 200, - headers: { - 'Content-Type': 'application/json', - }, - }); - } catch (error) { - console.error(error); - return new Response(JSON.stringify({ error: 'getFollowing Failed' }), { - status: 400, - headers: { - 'Content-Type': 'application/json', - }, - }); - } -} diff --git a/app/api/neynar/getProfile/route.ts b/app/api/neynar/getProfile/route.ts deleted file mode 100644 index de5d0d98..00000000 --- a/app/api/neynar/getProfile/route.ts +++ /dev/null @@ -1,22 +0,0 @@ -import getUserByUsername from '@/lib/neynar/getNeynarUserByUsername'; -import { NextRequest, NextResponse } from 'next/server'; - -const getResponse = async (req: NextRequest): Promise => { - const url = req.nextUrl; - const username = url.searchParams.get('username'); - - if (!username) return NextResponse.json({ message: 'invalid param.' }, { status: 500 }); - - try { - const profile = await getUserByUsername(username); - return NextResponse.json(profile, { status: 200 }); - } catch (error: any) { - return NextResponse.json({ errors: 'Something went wrong' }, { status: 400 }); - } -}; - -export async function GET(req: NextRequest): Promise { - return getResponse(req); -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/neynar/getUser/route.ts b/app/api/neynar/getUser/route.ts deleted file mode 100644 index c4540e42..00000000 --- a/app/api/neynar/getUser/route.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { isEmpty } from 'lodash'; -import { NextRequest } from 'next/server'; - -export async function GET(req: NextRequest): Promise { - const fids = req.nextUrl.searchParams.get('fids') as string; - - if (isEmpty(fids)) { - return new Response(JSON.stringify({ error: 'fids required' }), { - status: 400, - headers: { - 'Content-Type': 'application/json', - }, - }); - } - - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - } as any; - - try { - const queryParams = new URLSearchParams({ - fids, - }); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/user/bulk?${queryParams}`, - options, - ); - const { users } = await response.json(); - return new Response(JSON.stringify({ users }), { - status: 200, - headers: { - 'Content-Type': 'application/json', - }, - }); - } catch (error) { - console.error(error); - return new Response(JSON.stringify({ error: 'getUser Failed' }), { - status: 400, - headers: { - 'Content-Type': 'application/json', - }, - }); - } -} diff --git a/app/api/og-image/cast/[username]/[hash]/[[...rank]]/route.tsx b/app/api/og-image/cast/[username]/[hash]/[[...rank]]/route.tsx deleted file mode 100644 index 4d0c152c..00000000 --- a/app/api/og-image/cast/[username]/[hash]/[[...rank]]/route.tsx +++ /dev/null @@ -1,54 +0,0 @@ -import CastImageLayout from '@/components/Og/CastImageLayout'; -import { getDataForCastOg } from '@/lib/getDataForCastOg'; -import { ImageResponse } from '@vercel/og'; -import { NextRequest } from 'next/server'; - -export const runtime = 'edge'; - -export async function GET( - req: NextRequest, - { params }: { params: { username: string; hash: string; rank: string } }, -) { - const { username, hash, rank } = params; - - const { - encodedUsername, - profilePfp, - metadata, - channelLabel, - channelIcon, - points, - soraSemiBold, - soraNormal, - }: any = await getDataForCastOg(username, hash); - - return new ImageResponse( - ( - - ), - { - width: 1200, - height: 630, - fonts: [ - { - name: 'Sora', - data: await soraNormal, - weight: 400, - }, - { - name: 'Sora', - data: await soraSemiBold, - weight: 600, - }, - ], - }, - ); -} diff --git a/app/api/og/route.tsx b/app/api/og/route.tsx deleted file mode 100644 index 753e3f7c..00000000 --- a/app/api/og/route.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import Title from '@/components/Header/Title'; - -export const runtime = 'edge'; - -export async function GET() { - const { ImageResponse } = await import('@vercel/og'); - return new ImageResponse( - ( -
- - </div> - ), - ); -} diff --git a/app/api/postMusicEmbed/route.ts b/app/api/postMusicEmbed/route.ts deleted file mode 100644 index 1b4c57e1..00000000 --- a/app/api/postMusicEmbed/route.ts +++ /dev/null @@ -1,44 +0,0 @@ -import postMusicEmbed from '@/lib/neynar/postMusicEmbed'; -import sendBotCast from '@/lib/sonata/sendBotCast'; -import upsertCast from '@/lib/supabase/upsertCast'; -import { NextRequest } from 'next/server'; - -const getResponse = async (req: NextRequest) => { - const body = await req.json(); - const { signer_uuid, url } = body; - - const data = await postMusicEmbed(signer_uuid, url); - - if (!data?.success || !data?.cast?.hash) { - return Response.json({ message: 'casting failed' }, { status: 400 }); - } - console.log('new cast:', data); - - const cast: any = { - timestamp: new Date().toISOString(), - parent_url: '', - root_parent_url: '', - reactions: { - likes_count: 0, - }, - hash: data.cast.hash, - embeds: [{ url }], - author: data.cast.author, - }; - const { success } = await upsertCast(cast); - - if (!success) return Response.json( - { message: 'successfuly casted', data }, - { status: 200 } - ); - sendBotCast(cast); - - return Response.json({ - message: 'successfuly casted and indexed', - link: `/cast/${cast.author.username}/${cast.hash.substring(0, 8)}` - }, { status: 307 }); -}; - -export async function POST(req: NextRequest) { - return getResponse(req); -} \ No newline at end of file diff --git a/app/api/profile/route.ts b/app/api/profile/route.ts new file mode 100644 index 00000000..458fa432 --- /dev/null +++ b/app/api/profile/route.ts @@ -0,0 +1,33 @@ +import { EVENT_ZORA_PROFILE } from '@/lib/consts'; +import getConnectedZoraProfile from '@/lib/getConnectedZoraProfile'; +import trackEndpoint from '@/lib/stack/trackEndpoint'; +import verifySubscription from '@/lib/verifySubscription'; +import getZoraProfile from '@/lib/zora/getZoraProfile'; +import { NextRequest } from 'next/server'; +import { Address, isAddress, zeroAddress } from 'viem'; + +export async function GET(req: NextRequest) { + try { + await trackEndpoint(EVENT_ZORA_PROFILE); + + const address = req.nextUrl.searchParams.get('address'); + if (!address) throw Error('address is required'); + + const zoraProfile = await getZoraProfile(address); + const isPro = await verifySubscription(isAddress(address) ? (address as Address) : zeroAddress); + const connectedZoraProfile = await getConnectedZoraProfile(zoraProfile.address); + return Response.json({ + message: 'success', + zoraProfile, + isPro, + connectedZoraProfile, + }); + } catch (e) { + const message = (e as { message?: string })?.message ?? 'failed'; + return Response.json({ message }, { status: 400 }); + } +} + +export const dynamic = 'force-dynamic'; +export const fetchCache = 'force-no-store'; +export const revalidate = 0; diff --git a/app/api/songLink/fetchLink/route.ts b/app/api/songLink/fetchLink/route.ts deleted file mode 100644 index 8ea3aff7..00000000 --- a/app/api/songLink/fetchLink/route.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { NextRequest, NextResponse } from 'next/server'; - -const getResponse = async (req: NextRequest): Promise<NextResponse> => { - const url = req.nextUrl; - const trackUrl = url.searchParams.get('trackUrl'); - if (!trackUrl) return NextResponse.json({ errors: 'Missing trackUrl' }, { status: 422 }); - const endpoint = `https://api.song.link/v1-alpha.1/links?url=${trackUrl}&userCountry=US&songIfSingle=true`; - const headers = { - 'Content-Type': 'application/json', - Accept: 'application/json', - } as any; - - try { - const response = await fetch(endpoint, { - method: 'GET', - headers: headers, - }); - - const data = await response.json(); - - if (response.ok) { - if (data.errors) { - console.error('SongLink Errors:', data.errors); - return NextResponse.json(data, { status: 400 }); - } - return NextResponse.json(data, { status: 200 }); - } else { - console.error(response.status, response.statusText); - return NextResponse.json(data, { status: 400 }); - } - } catch (error: any) { - console.error(error?.message); - return NextResponse.json({ errors: 'Something went wrong' }, { status: 400 }); - } -}; - -export async function GET(req: NextRequest): Promise<Response> { - return getResponse(req); -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/sound/fetchSoundGraphQL/route.ts b/app/api/sound/fetchSoundGraphQL/route.ts deleted file mode 100644 index 1ef23a4b..00000000 --- a/app/api/sound/fetchSoundGraphQL/route.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { NextRequest, NextResponse } from 'next/server'; - -const getResponse = async (req: NextRequest): Promise<NextResponse> => { - const body = await req.json(); - const { query, variables } = body; - - const endpoint = 'https://api.sound.xyz/graphql'; - const headers = { - 'Content-Type': 'application/json', - Accept: 'application/json', - 'X-Sound-Client-Key': process.env.SOUND_API_KEY, - } as any; - - try { - const response = await fetch(endpoint, { - method: 'POST', - headers: headers, - body: JSON.stringify({ - query: query, - variables: variables, - }), - }); - - const data = await response.json(); - - if (response.ok) { - if (data.errors) { - console.error('GraphQL Errors:', data.errors); - return NextResponse.json(data, { status: 400 }); - } - - return NextResponse.json(data, { status: 200 }); - } else { - console.error(response.status, response.statusText); - return NextResponse.json(data, { status: 400 }); - } - } catch (error: any) { - console.error(error?.message); - return NextResponse.json({ errors: 'Something went wrong' }, { status: 400 }); - } -}; - -export async function POST(req: NextRequest): Promise<Response> { - return getResponse(req); -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/stack/leaderboard/getLeaderboardData.tsx b/app/api/stack/leaderboard/getLeaderboardData.tsx new file mode 100644 index 00000000..e22e6466 --- /dev/null +++ b/app/api/stack/leaderboard/getLeaderboardData.tsx @@ -0,0 +1,30 @@ +import getAllEndpointWallets from '@/lib/privy/getAllEndpointWallets'; +import { stack } from '@/lib/stack/client'; + +const getLeaderboardData = async () => { + const stackData = await stack.getLeaderboard(); + const wallets = await getAllEndpointWallets(); + + const walletMap = wallets.reduce((map, wallet) => { + wallet.linked_accounts.forEach((account: any) => { + if (account.type === 'wallet') { + map[account.address.toLowerCase()] = wallet; + } + }); + return map; + }, {}); + + const mergedLeaderboard = stackData.leaderboard.map((entry) => { + const walletDetails = walletMap[entry.address.toLowerCase()] || {}; + return { ...entry, walletDetails }; + }); + + return { + leaderboard: mergedLeaderboard, + metadata: stackData.metadata, + stats: stackData.stats, + pointSystem: (stackData as any)?.pointSystem, + }; +}; + +export default getLeaderboardData; diff --git a/app/api/stack/leaderboard/route.ts b/app/api/stack/leaderboard/route.ts new file mode 100644 index 00000000..dea223e8 --- /dev/null +++ b/app/api/stack/leaderboard/route.ts @@ -0,0 +1,33 @@ +import trackEndpoint from '@/lib/stack/trackEndpoint'; +import getLeaderboardData from './getLeaderboardData'; + +export const dynamic = 'force-dynamic'; +export const revalidate = 0; +export const fetchCache = 'force-no-store'; + +export async function GET() { + try { + await trackEndpoint('stack+leaderboard'); + const data = await getLeaderboardData(); + return new Response( + JSON.stringify({ + message: 'success', + data, + }), + { + status: 200, + headers: { + 'Cache-Control': 'no-store, max-age=0, must-revalidate', + }, + }, + ); + } catch (error) { + console.error('Error:', error); + return new Response(JSON.stringify({ message: 'failed' }), { + status: 400, + headers: { + 'Cache-Control': 'no-store, max-age=0, must-revalidate', + }, + }); + } +} diff --git a/app/api/tip/route.ts b/app/api/tip/route.ts deleted file mode 100644 index 63b85a27..00000000 --- a/app/api/tip/route.ts +++ /dev/null @@ -1,103 +0,0 @@ -import getUser from '@/lib/neynar/getNeynarUser'; -import verifySignerUUID from '@/lib/neynar/verifySigner'; -import { stack } from '@/lib/stack/client'; -import { createClient } from '@supabase/supabase-js'; -import { isEmpty, isNil } from 'lodash'; -import { NextRequest, NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); - -const getResponse = async (req: NextRequest): Promise<NextResponse> => { - const body = await req.json(); - const { signer_uuid, tipAmount, postHash, recipientFid } = body; - - const { status, fid: tipperFid } = await verifySignerUUID(signer_uuid); - - if (!status) { - return NextResponse.json( - { message: `Invalid Signer UUID`, tipRemaining: 0, totalTipOnPost: 0 }, - { status: 400 }, - ); - } - - if (tipperFid === recipientFid) { - return NextResponse.json( - { message: `Can not tip yourself`, tipRemaining: 0, totalTipOnPost: 0 }, - { status: 400 }, - ); - } - - const { remaining_tip_allocation, total_tip_on_post, used_tip } = await callAllocateTip( - `${tipperFid}`, - tipAmount, - postHash, - `${recipientFid}`, - ); - - if (used_tip === 0) { - return NextResponse.json( - { - message: `Already reached max NOTES tips`, - usedTip: used_tip, - tipRemaining: remaining_tip_allocation, - totalTipOnPost: total_tip_on_post, - }, - { status: 200 }, - ); - } - - const recipientUser = await getUser(recipientFid); - const recipientWalletAddress = !isEmpty(recipientUser.verifications) - ? recipientUser.verifications[0] - : undefined; - - if (isNil(recipientWalletAddress)) { - return NextResponse.json( - { message: `Invalid recipient`, tipRemaining: 0, totalTipOnPost: 0 }, - { status: 400 }, - ); - } - - stack.track(`tip_from_${tipperFid}`, { account: recipientWalletAddress, points: used_tip }); - - return NextResponse.json( - { - message: `Tipped ${used_tip} NOTES`, - usedTip: used_tip, - tipRemaining: remaining_tip_allocation, - totalTipOnPost: total_tip_on_post, - }, - { status: 200 }, - ); -}; - -export async function POST(req: NextRequest): Promise<Response> { - return getResponse(req); -} - -async function callAllocateTip( - fidInput: string, - tipAmount: number, - postHashInput: string, - recipientFid: string, -) { - const { data, error } = await supabase.rpc('allocate_tip_with_fid_recipient', { - fid_input: fidInput, - tip_amount: tipAmount, - post_hash_input: postHashInput, - receiver_fid: recipientFid, - }); - - if (error) { - console.error('Error calling function:', error); - return null; - } - - console.log('Function returned:', data); - return data; -} - -export const dynamic = 'force-dynamic'; diff --git a/app/api/tips/route.ts b/app/api/tips/route.ts deleted file mode 100644 index e96b0b84..00000000 --- a/app/api/tips/route.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { getLatestTips } from '@/lib/getLatestTips'; - -export async function GET(): Promise<Response> { - return getLatestTips(); -} diff --git a/app/api/user/getSongs/route.tsx b/app/api/user/getSongs/route.tsx deleted file mode 100644 index fbc316f4..00000000 --- a/app/api/user/getSongs/route.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import { createClient } from '@supabase/supabase-js'; -import { NextRequest, NextResponse } from 'next/server'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY, { - auth: { - autoRefreshToken: false, - persistSession: false, - detectSessionInUrl: false, - }, -}); - -const getResponse = async (profileFid: string): Promise<NextResponse> => { - const { data: songs } = await supabase - .from('posts') - .select('*') - .eq('authorFid', profileFid) - .order('likes', { ascending: false }); - return NextResponse.json({ message: 'success', songs }, { status: 200 }); -}; - -export async function GET(req: NextRequest): Promise<Response> { - const profileFid = req.nextUrl.searchParams.get('profile_fid'); - if (!profileFid) return NextResponse.json({ errors: 'invalid param.' }, { status: 400 }); - - const response = await getResponse(profileFid).catch((error) => { - console.error('Error in background task:', error); - }); - return response as NextResponse; -} - -export const dynamic = 'force-dynamic'; -export const fetchCache = 'force-no-store'; -export const revalidate = 0; diff --git a/app/api/zora/collections/route.ts b/app/api/zora/collections/route.ts new file mode 100644 index 00000000..ac936a0c --- /dev/null +++ b/app/api/zora/collections/route.ts @@ -0,0 +1,52 @@ +import { NextRequest } from 'next/server'; +import trackEndpoint from '@/lib/stack/trackEndpoint'; +import { EVENT_ZORA_COLLECTIONS, TOKEN_INDEXER_POINT_ID } from '@/lib/consts'; +import { createStackClient } from '@/lib/stack/client'; +import { TOKEN_EVENT_TYPE } from '@/types/token'; +import getChainId from '@/lib/getChainId'; + +const stack = createStackClient(TOKEN_INDEXER_POINT_ID); + +export async function GET(request: NextRequest) { + try { + await trackEndpoint(EVENT_ZORA_COLLECTIONS); + const query: Record<string, any> = { limit: 100 }; + const creatorAddress = request.nextUrl.searchParams.get('creator'); + if (creatorAddress) query.address = creatorAddress; + + const tokens: TOKEN_EVENT_TYPE[] = (await stack.getEvents(query)) as any; + + const aggregatedData = tokens.reduce((acc: any, curr: TOKEN_EVENT_TYPE) => { + const { collection } = curr.metadata; + const key = collection; + + if (!acc[key]) { + acc[key] = { ...curr, count: 1 }; + } else { + acc[key].count += 1; + acc[key].points += curr.points; + } + + return acc; + }, {}); + + const collections = Object.values(aggregatedData).map((collection: any) => { + const chain = collection.metadata.uniqueId.split('-')[0]; + const chainId = getChainId(chain); + + return { + tokensCreated: collection.points, + address: collection.metadata.collection, + chainId, + }; + }); + return Response.json({ collections }); + } catch (error) { + console.error('Error:', error); + return Response.json({ message: 'failed' }, { status: 400 }); + } +} + +export const dynamic = 'force-dynamic'; +export const revalidate = 0; +export const fetchCache = 'force-no-store'; diff --git a/app/api/zora/feeRecipients/route.ts b/app/api/zora/feeRecipients/route.ts new file mode 100644 index 00000000..ea940b81 --- /dev/null +++ b/app/api/zora/feeRecipients/route.ts @@ -0,0 +1,16 @@ +import { ZORA_FEE_RECIPIENTS } from '@/lib/consts'; +import trackEndpoint from '@/lib/stack/trackEndpoint'; + +export async function GET() { + try { + await trackEndpoint('zora+feeRecipients'); + return Response.json({ message: 'success', data: ZORA_FEE_RECIPIENTS }); + } catch (error) { + console.error('Error:', error); + return Response.json({ message: 'failed' }, { status: 400 }); + } +} + +export const dynamic = 'force-dynamic'; +export const revalidate = 0; +export const fetchCache = 'force-no-store'; diff --git a/app/api/zora/rewards/route.tsx b/app/api/zora/rewards/route.tsx new file mode 100644 index 00000000..0b59f65d --- /dev/null +++ b/app/api/zora/rewards/route.tsx @@ -0,0 +1,29 @@ +import { NextRequest } from 'next/server'; +import { Address } from 'viem'; +import trackEndpoint from '@/lib/stack/trackEndpoint'; +import { EVENT_ZORA_REWARDS } from '@/lib/consts'; +import getRewardsPoints from '@/lib/stack/getRewardsPoints'; +import indexNewRewards from '@/lib/indexNewRewards'; +import formatBigIntValues from '@/lib/formatBigIntValues'; + +export async function GET(request: NextRequest) { + try { + await trackEndpoint(EVENT_ZORA_REWARDS); + const address = new URL(request.url).searchParams.get('address') as Address; + const rewards = await getRewardsPoints(address); + const newLogs = await indexNewRewards(address); + return Response.json({ + message: 'success', + address, + ...rewards, + newLogs: formatBigIntValues(newLogs), + }); + } catch (error) { + console.error('Error:', error); + return Response.json({ message: 'failed' }, { status: 400 }); + } +} + +export const dynamic = 'force-dynamic'; +export const revalidate = 0; +export const fetchCache = 'force-no-store'; diff --git a/app/api/zora/score/route.tsx b/app/api/zora/score/route.tsx new file mode 100644 index 00000000..1f8de078 --- /dev/null +++ b/app/api/zora/score/route.tsx @@ -0,0 +1,41 @@ +import { NextRequest } from 'next/server'; +import { Address } from 'viem'; +import trackEndpoint from '@/lib/stack/trackEndpoint'; +import getZoraProfileScore from '@/lib/zora/score/getZoraProfileScore'; +import { EVENT_ZORA_SCORE, TOKEN_INDEXER_POINT_ID } from '@/lib/consts'; +import getZoraScore from '@/lib/zora/score/getZoraScore'; +import { createStackClient } from '@/lib/stack/client'; +import { getCreateScore } from '@/lib/zora/score/getCreateScore'; + +const stack = createStackClient(TOKEN_INDEXER_POINT_ID); + +export async function GET(request: NextRequest) { + try { + await trackEndpoint(EVENT_ZORA_SCORE); + const address = new URL(request.url).searchParams.get('address') as Address; + const profile = await getZoraProfileScore(address); + const query: Record<string, any> = { limit: 100 }; + if (address) { + query.address = address; + } + const events = await stack.getEvents(query); + const tokensCreated = events.filter((event) => event.address === address).length; + const createScore = getCreateScore(tokensCreated); + const score = getZoraScore({ profileScore: profile.score as number, createScore }); + + return Response.json({ + message: 'success', + address, + score, + profile, + createScore, + }); + } catch (error) { + console.error('Error:', error); + return Response.json({ message: 'failed', error }, { status: 400 }); + } +} + +export const dynamic = 'force-dynamic'; +export const revalidate = 0; +export const fetchCache = 'force-no-store'; diff --git a/app/api/zora/tokens/route.ts b/app/api/zora/tokens/route.ts new file mode 100644 index 00000000..837fbe24 --- /dev/null +++ b/app/api/zora/tokens/route.ts @@ -0,0 +1,26 @@ +import { EVENT_ZORA_TOKENS, TOKEN_INDEXER_POINT_ID } from '@/lib/consts'; +import { createStackClient } from '@/lib/stack/client'; +import trackEndpoint from '@/lib/stack/trackEndpoint'; +import { NextRequest } from 'next/server'; + +const stack = createStackClient(TOKEN_INDEXER_POINT_ID); + +export async function GET(req: NextRequest) { + try { + await trackEndpoint(EVENT_ZORA_TOKENS); + const query: Record<string, any> = { limit: 100 }; + const creatorAddress = req.nextUrl.searchParams.get('creatorAddress'); + if (creatorAddress) query.address = creatorAddress; + + const tokens = await stack.getEvents(query); + + return Response.json({ tokens }); + } catch (error) { + console.error('Error:', error); + return Response.json({ message: 'failed' }, { status: 400 }); + } +} + +export const dynamic = 'force-dynamic'; +export const revalidate = 0; +export const fetchCache = 'force-no-store'; diff --git a/app/cast/[username]/[hash]/layout.tsx b/app/cast/[username]/[hash]/layout.tsx deleted file mode 100644 index 623ede9b..00000000 --- a/app/cast/[username]/[hash]/layout.tsx +++ /dev/null @@ -1,58 +0,0 @@ -'use client'; - -import { ReactNode } from 'react'; -import Sidebar from '@/components/Sidebar'; -import { Sheet, SheetContent } from '@/components/ui/sheet'; -import { useUi } from '@/providers/UiProvider'; -import { Separator } from '@/components/ui/separator'; -import GlobalPlayer from '@/components/GlobalPlayer'; -import FeedProvider from '@/providers/FeedProvider'; -import { CaretLeftIcon } from '@radix-ui/react-icons'; -import ProfileProvider from '@/providers/ProfileProvider'; - -export default function FeedLayout({ children }: { children: ReactNode }) { - const { menuOpen, setMenuOpen } = useUi(); - - return ( - <ProfileProvider> - <FeedProvider> - <div className="flex grow flex-col"> - <meta property="of:accepts:xmtp" content="2024-02-01" /> - <div className="flex grow"> - <nav className="md:hidden"> - <Sheet open={menuOpen} onOpenChange={setMenuOpen}> - <SheetContent side="left"> - <Sidebar isSingleCast /> - </SheetContent> - </Sheet> - </nav> - - <nav className="shadow-xl max-md:hidden"> - <Sidebar isSingleCast /> - </nav> - - <main className="flex grow flex-col"> - <Separator className="bg-muted" /> - <div className="relative grow"> - <div - className="absolute left-0 top-0 size-full overflow-scroll pt-4" - id="feed-container" - > - <div className="container mx-auto max-w-3xl space-y-6"> - <a href="/" className="flex flex-row items-center font-semibold"> - <CaretLeftIcon /> - <div className="">Home</div> - </a> - {children} - </div> - </div> - </div> - </main> - </div> - - <GlobalPlayer /> - </div> - </FeedProvider> - </ProfileProvider> - ); -} diff --git a/app/cast/[username]/[hash]/page.tsx b/app/cast/[username]/[hash]/page.tsx deleted file mode 100644 index 144d2cf6..00000000 --- a/app/cast/[username]/[hash]/page.tsx +++ /dev/null @@ -1,72 +0,0 @@ -import { getFrameMetadata } from '@coinbase/onchainkit'; -import type { Metadata } from 'next'; -import { DEFAULT_FRAME, DESCRIPTION, TITLE, VERCEL_URL } from '@/lib/consts'; -import getCastHash from '@/lib/neynar/getCastHash'; -import { supabaseClient } from '@/lib/supabase/client'; -import Cast from '@/components/Cast'; -import getUserByUsername from '@/lib/neynar/getNeynarUserByUsername'; -import { getUserLeaderboardRanks } from '@/lib/getUserLeadboardRank'; -import { getHighestRank } from '@/lib/getHighestRank'; - -const frameMetadata = { ...getFrameMetadata(DEFAULT_FRAME), 'of:accepts:xmtp': '2024-02-01' }; - -const metadata: Metadata = { - title: TITLE, - description: DESCRIPTION, - openGraph: { - title: TITLE, - description: DESCRIPTION, - images: `${VERCEL_URL}/images/og.png`, - }, - icons: [`${VERCEL_URL}/images/logo2.png`], - other: { - ...frameMetadata, - }, -}; - -export async function generateMetadata({ params }: any): Promise<Metadata> { - const { username, hash } = params; - - try { - const userProfile = await getUserByUsername(username); - const verifications = userProfile?.verifications || []; - const validRanks = await getUserLeaderboardRanks(verifications); - const rank = getHighestRank(validRanks); - - const ogImageUrl = `/api/og-image/cast/${username}/${hash}/${Number(rank) > 0 ? rank : 0}`; - - return { - title: TITLE, - description: DESCRIPTION, - openGraph: { - title: TITLE, - description: DESCRIPTION, - images: VERCEL_URL + ogImageUrl, - }, - icons: [`${VERCEL_URL}/images/logo2.png`], - other: { - ...frameMetadata, - }, - }; - } catch (error) { - console.error('Failed to generate metadata:', error); - return metadata; - } -} - -export default async function CastHome({ params }: { params: { username: string; hash: string } }) { - const { username, hash } = params; - const fullHash = await getCastHash(`https://warpcast.com/${username}/${hash}`); - - const { data: cast } = await supabaseClient - .from('posts') - .select('*') - .eq('post_hash', fullHash) - .single(); - - return ( - <main className="container flex grow items-center justify-center"> - <Cast cast={cast} /> - </main> - ); -} diff --git a/app/layout.tsx b/app/layout.tsx index 2159fd05..184cf308 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,9 +1,7 @@ -import Providers from '@/providers'; import { Sora } from 'next/font/google'; import '../styles/globals.css'; import { Analytics } from '@vercel/analytics/react'; import { ReactNode } from 'react'; -import { Toaster } from '@/components/ui/toaster'; import { headers } from 'next/headers'; export const viewport = { @@ -29,11 +27,8 @@ export default function RootLayout({ children }: { children: ReactNode }) { <body className={`flex min-h-screen w-screen flex-col overflow-x-hidden font-sora ${backgroundColor}`} > - <Providers> - <div id="player-portal" className="pointer-events-none fixed left-0 top-0 opacity-0" /> - {children} - <Toaster /> - </Providers> + <div id="player-portal" className="pointer-events-none fixed left-0 top-0 opacity-0" /> + {children} <Analytics /> </body> </html> diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 00000000..e29832f8 --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,5 @@ +import ApiPage from '@/components/ApiPage'; + +const Page = () => <ApiPage />; + +export default Page; diff --git a/components/ApiPage/ApiPage.tsx b/components/ApiPage/ApiPage.tsx index 3e75d4a7..755a9a92 100644 --- a/components/ApiPage/ApiPage.tsx +++ b/components/ApiPage/ApiPage.tsx @@ -1,14 +1,20 @@ -import { endpoints } from '@/lib/getEndpointsList'; +'use client'; + import ApiPageHeader from './ApiPageHeader'; import Endpoint from './Endpoint'; +import useEndpointScores from '@/hooks/useEndpointScores'; + +const ApiPage = () => { + const { endpoints } = useEndpointScores(); -const ApiPage = () => ( - <div className="flex min-h-screen flex-col items-center justify-center space-y-4 bg-gray-100"> - <ApiPageHeader /> - {endpoints.map((endpoint, index) => ( - <Endpoint key={index} apiType={endpoint.apiType} route={endpoint.route} /> - ))} - </div> -); + return ( + <div className="flex min-h-screen flex-col items-center justify-center space-y-4 bg-gray-100"> + <ApiPageHeader /> + {endpoints.map((endpoint, index) => ( + <Endpoint key={index} endpoint={endpoint} /> + ))} + </div> + ); +}; export default ApiPage; diff --git a/components/ApiPage/ApiPageHeader.tsx b/components/ApiPage/ApiPageHeader.tsx index 6de9e502..8ed6aa88 100644 --- a/components/ApiPage/ApiPageHeader.tsx +++ b/components/ApiPage/ApiPageHeader.tsx @@ -1,7 +1,7 @@ const ApiPageHeader = () => ( - <div className="w-1/2 rounded-lg bg-gray-200 p-8 shadow"> + <div className="w-3/4 rounded-lg bg-gray-200 p-8 shadow md:w-1/2"> <div className="font-bold">API</div> - <div>Developers wanting to build on top of Sonata can utilize the following public APIs.</div> + <div>Developers wanting to build on top of Myco can utilize the following public APIs.</div> </div> ); diff --git a/components/ApiPage/Endpoint.tsx b/components/ApiPage/Endpoint.tsx index ed1c818e..2a461a82 100644 --- a/components/ApiPage/Endpoint.tsx +++ b/components/ApiPage/Endpoint.tsx @@ -1,7 +1,15 @@ -const Endpoint = ({ apiType, route }: any) => ( - <div className="flex w-1/2 items-center justify-start rounded-lg bg-gray-200 p-8 shadow"> - <div className="font-bold">{apiType}</div> - <div> - {route}</div> +import { Button } from '../ui/button'; + +const Endpoint = ({ endpoint }: any) => ( + <div className="flex w-3/4 flex-col items-start justify-start rounded-lg bg-gray-200 p-8 shadow md:w-1/2"> + <div className="flex flex-col"> + <div className="font-bold">{endpoint.apiType}</div> + <div className="text-xs">{endpoint.route}</div> + </div> + <div className="flex items-center gap-3"> + <Button onClick={() => window.open(endpoint.demo || endpoint.route)}>Try it</Button> + {endpoint.score && <div className="text-xs">{endpoint.score} points</div>} + </div> </div> ); diff --git a/components/BalanceInfo.tsx b/components/BalanceInfo.tsx deleted file mode 100644 index b155ee20..00000000 --- a/components/BalanceInfo.tsx +++ /dev/null @@ -1,34 +0,0 @@ -'use client'; -import Image from 'next/image'; -import { formatBigInt } from '@/lib/utils'; -import { isNil } from 'lodash'; -import { useTipProvider } from '@/providers/TipProvider'; -import ClaimAirdropButton from '@/components/ClaimAirdropButton/ClaimAirdropButton'; - -export default function BalanceInfo() { - const { balance, remainingTipAllocation, dailyTipAllowance, airdropBalance } = useTipProvider(); - - return ( - <div className="flex flex-col gap-3 sm:gap-4"> - <h2 className="font-semibold">NOTES</h2> - - <div className="flex items-center"> - <span className="whitespace-nowrap">{`Daily Allowance: ${!isNil(remainingTipAllocation) ? formatBigInt(BigInt(remainingTipAllocation)) : '-'}${dailyTipAllowance ? ` / ${formatBigInt(BigInt(dailyTipAllowance))}` : ''}`}</span> - <Image src="/images/notes.png" width={20} height={20} alt="" /> - </div> - <div className="flex items-center"> - <span className="whitespace-nowrap">{`Total Balance: ${!isNil(balance) ? formatBigInt(BigInt(balance)) : '-'}`}</span> - <Image src="/images/notes.png" width={20} height={20} alt="" /> - </div> - {airdropBalance > 0 ? ( - <div className="flex items-center"> - <span className="whitespace-nowrap">{`Airdrop: ${!isNil(airdropBalance) ? formatBigInt(BigInt(airdropBalance)) : '-'}`}</span> - <Image src="/images/notes.png" width={20} height={20} alt="" /> - </div> - ) : ( - <></> - )} - {airdropBalance > 0 ? <ClaimAirdropButton /> : <></>} - </div> - ); -} diff --git a/components/Card/Card.tsx b/components/Card/Card.tsx deleted file mode 100644 index bee74711..00000000 --- a/components/Card/Card.tsx +++ /dev/null @@ -1,56 +0,0 @@ -import * as React from 'react'; - -import { cn } from '@/lib/utils'; - -const Card = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( - ({ className, ...props }, ref) => ( - <div - ref={ref} - className={cn('rounded-xl border bg-card text-card-foreground shadow', className)} - {...props} - /> - ), -); -Card.displayName = 'Card'; - -const CardHeader = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( - ({ className, ...props }, ref) => ( - <div ref={ref} className={cn('flex flex-col space-y-1.5 p-6', className)} {...props} /> - ), -); -CardHeader.displayName = 'CardHeader'; - -const CardTitle = React.forwardRef<HTMLParagraphElement, React.HTMLAttributes<HTMLHeadingElement>>( - ({ className, ...props }, ref) => ( - <h3 - ref={ref} - className={cn('font-semibold leading-none tracking-tight', className)} - {...props} - /> - ), -); -CardTitle.displayName = 'CardTitle'; - -const CardDescription = React.forwardRef< - HTMLParagraphElement, - React.HTMLAttributes<HTMLParagraphElement> ->(({ className, ...props }, ref) => ( - <p ref={ref} className={cn('text-sm text-muted-foreground', className)} {...props} /> -)); -CardDescription.displayName = 'CardDescription'; - -const CardContent = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( - ({ className, ...props }, ref) => ( - <div ref={ref} className={cn('p-6 pt-0', className)} {...props} /> - ), -); -CardContent.displayName = 'CardContent'; - -const CardFooter = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( - ({ className, ...props }, ref) => ( - <div ref={ref} className={cn('flex items-center p-6 pt-0', className)} {...props} /> - ), -); -CardFooter.displayName = 'CardFooter'; - -export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }; diff --git a/components/Cast/Cast.tsx b/components/Cast/Cast.tsx deleted file mode 100644 index 04c4d387..00000000 --- a/components/Cast/Cast.tsx +++ /dev/null @@ -1,66 +0,0 @@ -'use client'; -import UserDetails from '@/components/UserDetails'; -import findValidEmbed from '@/lib/findValidEmbed'; -import TipButton from '@/components/TipButton'; -import { SupabasePost } from '@/types/SupabasePost'; -import fetchMetadata from '@/lib/fetchMetadata'; -import MediaPlayer from '../MediaPlayer'; -import { useEffect, useState } from 'react'; -import { TrackMetadata } from '@/types/Track'; -import Like from './Like'; -import Share from './Share'; -import { Separator } from '@/components/ui/separator'; -import { timeFromNow } from '@/lib/utils'; -import UpvoteDownvote from '../UpvoteDownvote'; -import { isNil } from 'lodash'; -import CollectButton from './CollectButton'; -import { EmbedUrl } from '@neynar/nodejs-sdk/build/neynar-api/v2'; - -const Cast = ({ cast = {} as SupabasePost }: { cast: SupabasePost }) => { - const embed = findValidEmbed(cast); - const { url } = embed as EmbedUrl; - const isCollectible = url?.includes('sound.xyz') || url?.includes('zora.co'); - const { author } = cast; - const { verifications } = author; - const [metadata, setMetadata] = useState<TrackMetadata>(); - - useEffect(() => { - const init = async () => { - if (url) { - try { - const metadata = await fetchMetadata(url, cast); - setMetadata(metadata); - } catch (error) { - console.error(error); - } - } - }; - init(); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [url]); - - if (!metadata) return <></>; - return ( - <div className="w-full space-y-4 "> - <div className="flex gap-2"> - <UserDetails user={author} hasHypersub={!isNil(cast.hypersub_subscribed_since)} /> - <span className="text-sm leading-none text-muted-foreground"> - {'• '} - {timeFromNow(cast.created_at)} - </span> - </div> - - <MediaPlayer metadata={metadata} /> - <div className="flex gap-2"> - <UpvoteDownvote verifications={verifications} cast={cast} /> - {isCollectible && <CollectButton collectUrl={url} />} - <TipButton verifications={verifications} cast={cast} currency="DEGEN" className="ml-auto" /> - <Like cast={cast} /> - <Share cast={cast} /> - </div> - <Separator className="bg-muted" /> - </div> - ); -}; - -export default Cast; diff --git a/components/Cast/CollectButton.tsx b/components/Cast/CollectButton.tsx deleted file mode 100644 index ca6091bf..00000000 --- a/components/Cast/CollectButton.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { Button } from '@/components/ui/button'; - -const CollectButton = ({ collectUrl }: { collectUrl: string }) => ( - <div> - <Button - onClick={() => window.open(collectUrl, '_blank')} - className="flex items-center gap-2 rounded-full bg-[#333536] px-4 py-1.5 text-white" - > - Collect - </Button> - </div> -); - -export default CollectButton; diff --git a/components/Cast/Like.tsx b/components/Cast/Like.tsx deleted file mode 100644 index e8bc0a14..00000000 --- a/components/Cast/Like.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import { Button } from '@/components/ui/button'; -import createReaction from '@/lib/neynar/createReaction'; -import hasUserLikedCast from '@/lib/neynar/hasUserLiked'; -import { cn } from '@/lib/utils'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { useUi } from '@/providers/UiProvider'; -import { SupabasePost } from '@/types/SupabasePost'; -import { Signer } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { useEffect, useState } from 'react'; -import { FaHeart, FaRegHeart } from 'react-icons/fa'; - -export default function Like({ cast }: { cast: SupabasePost }) { - const { signer } = useNeynarProvider(); - const [liked, setLiked] = useState(false); - const [likes, setLikes] = useState<number>(cast.likes || 0); - const { checkLoggedIn } = useUi(); - - useEffect(() => { - if (signer?.fid) hasUserLikedCast( - cast.post_hash, - signer.fid - ).then(liked => setLiked(liked)); - - }, [cast.post_hash, signer?.fid]); - - const handleClick = async () => { - if (!checkLoggedIn()) return; - if (liked) return; - setLiked(true); - - const { signer_uuid } = signer as Signer; - const response = await createReaction(signer_uuid, cast.post_hash); - - if (response.success) { - setLikes(response.likes); - } - }; - - return ( - <Button - variant="ghost" - onClick={handleClick} - className={cn( - 'h-auto rounded-full bg-muted px-4 py-1 font-semibold space-x-1 text-base', - liked && 'bg-red-50 text-red-600 hover:text-red-600 hover:bg-red-50', - )} - > - {liked ? <FaHeart /> : <FaRegHeart />} - <span className="leading-none">{likes}</span> - </Button> - ); -} diff --git a/components/Cast/Share.tsx b/components/Cast/Share.tsx deleted file mode 100644 index d1601e23..00000000 --- a/components/Cast/Share.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import findValidEmbed from '@/lib/findValidEmbed'; -import { SupabasePost } from '@/types/SupabasePost'; -import { ShareIcon } from 'lucide-react'; -import { useToast } from '@/components/ui/use-toast'; -import { Button } from '@/components/ui/button'; - -export default function Share({ cast }: { cast: SupabasePost }) { - const { toast } = useToast(); - const handleClick = async () => { - const embed = findValidEmbed(cast); - if (!embed) return; - try { - await navigator.clipboard.writeText( - `${window.location.origin}/cast/${cast.author.username}/${cast.post_hash.slice(0, 10)}`, - ); - toast({ title: 'Copied!', description: 'URL copied to clipboard.' }); - } catch (error) { - console.error('Failed to copy URL to clipboard:', error); - } - }; - - return ( - <Button - variant="ghost" - className="h-auto p-0 text-muted-foreground outline-none hover:bg-transparent" - onClick={handleClick} - > - <ShareIcon /> - </Button> - ); -} diff --git a/components/Cast/index.tsx b/components/Cast/index.tsx deleted file mode 100644 index 6a513871..00000000 --- a/components/Cast/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import Cast from './Cast'; - -export default Cast; diff --git a/components/ClaimAirdropButton/ClaimAirdropButton.tsx b/components/ClaimAirdropButton/ClaimAirdropButton.tsx deleted file mode 100644 index 8a6a3679..00000000 --- a/components/ClaimAirdropButton/ClaimAirdropButton.tsx +++ /dev/null @@ -1,41 +0,0 @@ -'use client'; - -import { Button } from '../ui/button'; -import ClaimAirdropDialog from './ClaimAirdropDialog'; -import useClaimAirdropModal from '@/hooks/useClaimAirdropModal'; -import { useTipProvider } from '@/providers/TipProvider'; -import { useState } from 'react'; - -export default function ClaimAirdropButton() { - const { isPostDialogOpen, setIsPostDialogOpen } = useClaimAirdropModal(); - const { handlePost } = useTipProvider(); - const [isLoading, setIsLoading] = useState(false); - - const handleClick = () => { - setIsPostDialogOpen(true); - }; - - return ( - <div> - <Button - type="button" - className="flex items-center space-x-2 rounded-full p-6" - onClick={handleClick} - > - <img width={24} height={24} className="fill-white" src="images/notes.png" /> - <span className="line-height-[16.8px] text-[14px]">Claim Airdrop</span> - </Button> - - <ClaimAirdropDialog - onPost={async () => { - setIsLoading(true); - await handlePost(); - setIsLoading(false); - }} - isOpen={isPostDialogOpen} - setIsOpen={setIsPostDialogOpen} - isLoading={isLoading} - /> - </div> - ); -} diff --git a/components/ClaimAirdropButton/ClaimAirdropDialog.tsx b/components/ClaimAirdropButton/ClaimAirdropDialog.tsx deleted file mode 100644 index 4c4100c3..00000000 --- a/components/ClaimAirdropButton/ClaimAirdropDialog.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import Loading from '@/app/loading'; -import { - Dialog, - DialogContent, - DialogHeader, - DialogTitle, - DialogDescription, -} from '@/components/ui/dialog'; -import { useTipProvider } from '@/providers/TipProvider'; -import { Button } from '../ui/button'; - -const ClaimAirdropDialog = ({ onPost, isOpen, setIsOpen, isLoading }: any) => { - const { airdropBalance } = useTipProvider(); - - return ( - <Dialog open={isOpen} onOpenChange={setIsOpen}> - <DialogContent className="max-w-[75vw]"> - <DialogHeader className="flex items-center text-center"> - <DialogTitle>Claim Your Airdrop</DialogTitle> - <DialogDescription>You have {airdropBalance} $NOTES waiting for you</DialogDescription> - </DialogHeader> - - <div className="flex flex-col items-center justify-center gap-3 text-center"> - <Button onClick={onPost} disabled={isLoading}> - {isLoading ? <Loading /> : <span>Claim Airdrop</span>} - </Button> - </div> - </DialogContent> - </Dialog> - ); -}; - -export default ClaimAirdropDialog; diff --git a/components/CreatePost/CreatePost.tsx b/components/CreatePost/CreatePost.tsx deleted file mode 100644 index f7246b76..00000000 --- a/components/CreatePost/CreatePost.tsx +++ /dev/null @@ -1,60 +0,0 @@ -import { Button } from '@/components/ui/button'; -import useCreateDialog from '@/hooks/useCreateModal'; -import PostDialog from './PostDialog'; -import { useUi } from '@/providers/UiProvider'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { Avatar } from '@/components/ui/avatar'; -import { AvatarFallback, AvatarImage } from '@radix-ui/react-avatar'; -import { ChevronRight } from 'lucide-react'; -import { Input } from '@/components/ui/input'; - -export default function CreatePost() { - const { user } = useNeynarProvider(); - const { checkLoggedIn } = useUi(); - const { handlePost, isPostDialogOpen, setIsPostDialogOpen, setEmbedUrl, embedUrl } = - useCreateDialog(); - - const handleClick = () => { - if (!checkLoggedIn()) return; - if (embedUrl) { - handlePost(); - - return; - } - setIsPostDialogOpen(true); - }; - - return ( - <div className="flex items-center gap-2"> - <a className="cursor-pointer" href={`/${user?.username}`}> - <Avatar className="size-12 max-md:hidden"> - <AvatarImage src={user?.pfp_url} /> - <AvatarFallback>{user?.display_name?.[0]}</AvatarFallback> - </Avatar> - </a> - - <div className="flex grow items-center justify-between rounded-2xl bg-muted p-3"> - <Input - value={embedUrl} - className="border-none bg-transparent text-muted-foreground focus-visible:ring-0 focus-visible:ring-offset-0" - placeholder="Share SoundCloud, Sound or Spotify links here!" - onChange={(e) => setEmbedUrl(e.target.value)} - /> - <Button - onClick={handleClick} - className="flex h-auto items-center gap-2 rounded-full bg-gray-500 px-4 py-1.5 text-white" - > - Cast - <ChevronRight size={16} /> - </Button> - </div> - - <PostDialog - handleTextChange={(e: any) => setEmbedUrl(e.target.value)} - onPost={handlePost} - isOpen={isPostDialogOpen} - setIsOpen={setIsPostDialogOpen} - /> - </div> - ); -} diff --git a/components/CreatePost/PostDialog.tsx b/components/CreatePost/PostDialog.tsx deleted file mode 100644 index 13b5f7e7..00000000 --- a/components/CreatePost/PostDialog.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import { - Dialog, - DialogContent, - DialogDescription, - DialogHeader, - DialogTitle, -} from '@/components/ui/dialog'; -import { - Drawer, - DrawerContent, - DrawerDescription, - DrawerHeader, - DrawerTitle, -} from '@/components/ui/drawer'; -import { Button } from '@/components/ui/button'; -import { Input } from '@/components/ui/input'; -import { useUi } from '@/providers/UiProvider'; - -export default function PostDialog({ handleTextChange, onPost, isOpen, setIsOpen }: any) { - const { isMobile } = useUi(); - return ( - <> - <Dialog open={!isMobile && isOpen} onOpenChange={setIsOpen}> - <DialogContent className="flex flex-col items-center gap-8 "> - <DialogHeader> - <DialogTitle className="text-center">Share a Song</DialogTitle> - <DialogDescription> - We currently support Spotify, Soundxyz and Soundcloud - </DialogDescription> - </DialogHeader> - - <Input - onChange={handleTextChange} - className="w-full border-none bg-muted outline-none" - placeholder="https://www.sound.xyz/xcelencia/cancun-ft-tarot" - /> - <Button className="h-auto rounded-full px-8" onClick={onPost}> - Cast - </Button> - </DialogContent> - </Dialog> - - <Drawer open={isMobile && isOpen} onOpenChange={setIsOpen}> - <DrawerContent> - <div className="flex flex-col gap-6 p-6"> - <DrawerHeader className="p-0"> - <DrawerTitle className="text-center text-xl">Share a Song</DrawerTitle> - <DrawerDescription> - We currently support Spotify, Soundxyz and Soundcloud - </DrawerDescription> - </DrawerHeader> - <Input - onChange={handleTextChange} - className="w-full border-none bg-muted outline-none" - placeholder="https://www.sound.xyz/xcelencia/cancun-ft-tarot" - /> - <Button className="h-auto rounded-full p-3" onClick={onPost}> - Cast - </Button> - </div> - </DrawerContent> - </Drawer> - </> - ); -} diff --git a/components/CreatePost/index.tsx b/components/CreatePost/index.tsx deleted file mode 100644 index 451a5ee5..00000000 --- a/components/CreatePost/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import CreatePost from './CreatePost'; - -export default CreatePost; diff --git a/components/Feed/ChannelFilter.tsx b/components/Feed/ChannelFilter.tsx deleted file mode 100644 index cb7e9b2a..00000000 --- a/components/Feed/ChannelFilter.tsx +++ /dev/null @@ -1,49 +0,0 @@ -'use client'; -import Link from 'next/link'; -import Image from 'next/image'; -import { cn } from '@/lib/utils'; -import { useFeedProvider } from '@/providers/FeedProvider'; -import { useUi } from '@/providers/UiProvider'; - -export default function ChannelFilter() { - const { filter: currentFilter, updateFilter } = useFeedProvider(); - const { menuItems } = useUi(); - - const handleClick = (value: string) => { - const isActiveFilter = value === currentFilter.channel; - updateFilter({ channel: isActiveFilter ? '' : value }); - }; - - return ( - <div className="flex flex-col sm:gap-2"> - <h2 className="font-semibold sm:mb-2">Channels</h2> - <div> - {menuItems.map((option) => { - const active = currentFilter?.channel === option.value; - return ( - <Link - href={active ? '/' : `/channel${option.label}`} - onClick={() => handleClick(option.value)} - key={option.value} - className={cn( - 'flex px-3 py-2 justify-start items-center space-x-2 w-full font-semibold', - active && 'bg-muted', - )} - > - <div className="relative size-6 overflow-hidden rounded-full"> - <Image - src={option.icon} - fill - alt="" - style={{ objectFit: 'cover', objectPosition: 'center' }} - /> - </div> - - <span>{option.label}</span> - </Link> - ); - })} - </div> - </div> - ); -} diff --git a/components/Feed/Feed.tsx b/components/Feed/Feed.tsx deleted file mode 100644 index 0e3b80c5..00000000 --- a/components/Feed/Feed.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import Cast from '@/components/Cast'; -import { SupabasePost } from '@/types/SupabasePost'; - -export default function Feed({ feed }: { feed: SupabasePost[] }) { - return ( - <div className="max-w-full grow space-y-6"> - {feed.map((cast: SupabasePost) => ( - <Cast key={cast.post_hash} cast={cast} /> - ))} - </div> - ); -} diff --git a/components/Feed/PlatformFilter.tsx b/components/Feed/PlatformFilter.tsx deleted file mode 100644 index 4859e518..00000000 --- a/components/Feed/PlatformFilter.tsx +++ /dev/null @@ -1,43 +0,0 @@ -'use client'; -import { RadioGroup, RadioGroupItem } from '@/components/ui/radio-group'; -import { Label } from '@/components/ui/label'; -import { Button } from '@/components/ui/button'; -import { useFeedProvider } from '@/providers/FeedProvider'; - -const platforms = [ - { label: 'Soundcloud', value: 'soundcloud' }, - { label: 'Spotify', value: 'spotify' }, - { label: 'Sound', value: 'sound' }, -]; - -export default function PlatformFilter() { - const { filter: currentFilter, updateFilter } = useFeedProvider(); - - const handleClear = () => - updateFilter({ - platform: '', - channel: '', - }); - - return ( - <div className="flex flex-col gap-4"> - <h2 className="text-lg font-semibold">Platform</h2> - <RadioGroup - value={currentFilter.platform} - onValueChange={(value) => updateFilter({ platform: value })} - > - {platforms.map((option) => { - return ( - <div key={option.value} className="flex items-center space-x-2"> - <RadioGroupItem value={option.value} id={option.value} /> - <Label htmlFor={option.value}>{option.label}</Label> - </div> - ); - })} - </RadioGroup> - <Button className="self-start" onClick={handleClear}> - Clear - </Button> - </div> - ); -} diff --git a/components/Feed/index.tsx b/components/Feed/index.tsx deleted file mode 100644 index 1b9852f7..00000000 --- a/components/Feed/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import Feed from './Feed'; - -export default Feed; diff --git a/components/FrameFooter/FrameFooter.tsx b/components/FrameFooter/FrameFooter.tsx deleted file mode 100644 index 1bd27f03..00000000 --- a/components/FrameFooter/FrameFooter.tsx +++ /dev/null @@ -1,10 +0,0 @@ -const FrameFooter = () => ( - <div - style={{ display: 'flex' }} - tw="flex justify-center text-5xl py-9 pl-7 my-3 text-black text-center rounded-lg bg-white drop-shadow-2xl" - > - view more on viem-snapshot.vercel.app - </div> -); - -export default FrameFooter; diff --git a/components/FrameFooter/index.tsx b/components/FrameFooter/index.tsx deleted file mode 100644 index 7e864540..00000000 --- a/components/FrameFooter/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import FrameFooter from './FrameFooter'; - -export default FrameFooter; diff --git a/components/GlobalPlayer.tsx b/components/GlobalPlayer.tsx deleted file mode 100644 index 635d070a..00000000 --- a/components/GlobalPlayer.tsx +++ /dev/null @@ -1,46 +0,0 @@ -'use client'; -import { usePlayer } from '@/providers/audio/PlayerProvider'; -import Image from 'next/image'; -import Scrubber from '@/components/Scrubber'; -import PlayerButtons from './PlayerButtons'; - -export default function GlobalPlayer() { - const [player] = usePlayer(); - const { metadata } = player; - - if (!metadata) return <></>; - - return ( - <div - data-type={metadata.type} - className="sticky bottom-0 left-0 mt-auto w-screen space-y-6 bg-white py-3 shadow-2xl shadow-black" - > - <div className="container flex items-center gap-3"> - <div className="relative my-auto size-16 overflow-hidden rounded-lg shadow-md"> - <Image - src={metadata.artworkUrl} - alt="" - fill - style={{ objectFit: 'cover', objectPosition: 'center' }} - unoptimized - /> - </div> - - <div className=" max-w-[33%] space-y-0.5 self-center"> - <div className="line-clamp-2 text-sm font-bold">{metadata.trackName}</div> - <div className="line-clamp-2 text-xs font-extralight text-muted-foreground"> - {metadata.artistName} - </div> - </div> - <div className="absolute left-1/4 w-full"> - <div className="ml-6 flex max-w-2xl grow flex-col items-center gap-1"> - {metadata && <PlayerButtons metadata={metadata} />} - <Scrubber className="w-full max-md:hidden" /> - </div> - </div> - </div> - - <Scrubber className="container md:hidden" /> - </div> - ); -} diff --git a/components/Header/Header.tsx b/components/Header/Header.tsx deleted file mode 100644 index 8ac79bd8..00000000 --- a/components/Header/Header.tsx +++ /dev/null @@ -1,54 +0,0 @@ -'use client'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import UserMenu from './UserMenu'; -import SignInButton from '@/components/SignInButton'; -import Tabs from '@/components/Tabs'; -import { tabs } from '@/lib/consts'; -import { Button } from '@/components/ui/button'; -import { HamburgerMenuIcon } from '@radix-ui/react-icons'; -import { useUi } from '@/providers/UiProvider'; -import { Skeleton } from '@/components/ui/skeleton'; -import { useFeedProvider } from '@/providers/FeedProvider'; -import ClaimAirdropButton from '@/components/ClaimAirdropButton/ClaimAirdropButton'; -import { useTipProvider } from '@/providers/TipProvider'; -import { useParams } from 'next/navigation'; -import Profile from '../Profile'; -import HomeButton from './HomeButton'; - -const Header = () => { - const { user, loading: userLoading } = useNeynarProvider(); - const { feedType } = useFeedProvider(); - const { menuOpen, setMenuOpen } = useUi(); - const { airdropBalance } = useTipProvider(); - const { username, hash } = useParams(); - return ( - <header className="container w-full pt-2 md:pt-6"> - <div className="flex items-center justify-between md:justify-end"> - <Button variant="link" className="p-0 text-5xl md:hidden"> - <HamburgerMenuIcon onClick={() => setMenuOpen(!menuOpen)} className="size-6" /> - </Button> - {username && <HomeButton />} - {userLoading ? ( - <Skeleton className="size-9 rounded-full" /> - ) : user ? ( - <div className="flex items-center gap-2"> - {airdropBalance > 0 && <ClaimAirdropButton />} - <UserMenu /> - </div> - ) : ( - <SignInButton /> - )} - </div> - {username && !hash && <Profile />} - {feedType && ( - <div - className={`container mx-auto flex max-w-3xl ${username ? 'justify-start' : 'justify-center'}`} - > - <Tabs tabs={tabs} /> - </div> - )} - </header> - ); -}; - -export default Header; diff --git a/components/Header/HomeButton.tsx b/components/Header/HomeButton.tsx deleted file mode 100644 index 21bb7c7d..00000000 --- a/components/Header/HomeButton.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import { useFeedProvider } from '@/providers/FeedProvider'; -import { FeedType } from '@/types/Feed'; -import { useRouter } from 'next/navigation'; - -const HomeButton = () => { - const { push } = useRouter(); - const { setFeedType } = useFeedProvider(); - - const onClick = () => { - setFeedType(FeedType.Trending); - push('/'); - }; - - return ( - <button className="flex w-full items-center gap-3" type="button" onClick={onClick}> - <svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path - d="M7 13L1 7L7 1" - stroke="#333536" - strokeWidth="2" - strokeLinecap="round" - strokeLinejoin="round" - /> - </svg> - <p className="font-sora text-[18px] font-semibold">Home</p> - </button> - ); -}; - -export default HomeButton; diff --git a/components/Header/Title.tsx b/components/Header/Title.tsx deleted file mode 100644 index fc72a6f3..00000000 --- a/components/Header/Title.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { TITLE } from '@/lib/consts'; - -const Title = () => ( - <div className="space-y-2 text-center md:space-y-3"> - <a href="/" style={{ textDecoration: 'none' }}> - <p className="text-4xl font-bold tracking-tighter sm:text-5xl">{TITLE}</p> - </a> - </div> -); - -export default Title; diff --git a/components/Header/UserMenu.tsx b/components/Header/UserMenu.tsx deleted file mode 100644 index 243902b9..00000000 --- a/components/Header/UserMenu.tsx +++ /dev/null @@ -1,36 +0,0 @@ -'use client'; -import { - DropdownMenu, - DropdownMenuContent, - DropdownMenuItem, - DropdownMenuSeparator, - DropdownMenuTrigger, -} from '@/components/ui/dropdown-menu'; -import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; - -export default function UserMenu() { - const { user, signOut } = useNeynarProvider(); - - if (!user) return <></>; - - return ( - <DropdownMenu> - <DropdownMenuTrigger asChild> - <Avatar className="size-9 cursor-pointer"> - <AvatarImage className="object-cover object-center" src={user?.pfp_url} /> - <AvatarFallback>{user?.display_name?.[0]}</AvatarFallback> - </Avatar> - </DropdownMenuTrigger> - <DropdownMenuContent className="mr-2 min-w-52" alignOffset={100}> - <a href={`/${user?.username}`}> - <DropdownMenuItem className="cursor-pointer">{user?.display_name} </DropdownMenuItem> - </a> - <DropdownMenuSeparator /> - <DropdownMenuItem onClick={signOut} className="cursor-pointer"> - Logout - </DropdownMenuItem> - </DropdownMenuContent> - </DropdownMenu> - ); -} diff --git a/components/Header/index.ts b/components/Header/index.ts deleted file mode 100644 index a9ce1058..00000000 --- a/components/Header/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import Header from './Header'; - -export default Header; diff --git a/components/MediaPlayer.tsx b/components/MediaPlayer.tsx deleted file mode 100644 index 505c61da..00000000 --- a/components/MediaPlayer.tsx +++ /dev/null @@ -1,90 +0,0 @@ -import { cn } from '@/lib/utils'; -import { usePlayer } from '@/providers/audio/PlayerProvider'; -import { TrackMetadata } from '@/types/Track'; -import Image from 'next/image'; -import { MdPauseCircle, MdPlayCircle } from 'react-icons/md'; -import { Skeleton } from '@/components/ui/skeleton'; -import { Button } from '@/components/ui/button'; -import Scrubber from '@/components/Scrubber'; - -type MediaPlayerProps = { - metadata?: TrackMetadata; -}; - -export default function MediaPlayer({ metadata }: MediaPlayerProps) { - const [player, dispatch] = usePlayer(); - const currentTrack = player?.metadata?.feedId === metadata?.feedId; - - const handlePlay = () => { - if (!metadata) return; - - if (currentTrack) { - dispatch({ type: 'RESUME', payload: { id: metadata.id } }); - return; - } - dispatch({ - type: 'PLAY', - payload: { metadata, feedId: metadata.feedId }, - }); - }; - - const handlePause = () => { - if (!metadata) return; - dispatch({ type: 'PAUSE', payload: { id: metadata.id } }); - }; - - return ( - <div - data-type={metadata?.type} - className={cn( - 'flex w-full gap-4 bg-white py-2', - currentTrack && player.loading && 'animate-pulse', - )} - > - <div className="relative my-auto aspect-square w-16 shrink-0 overflow-hidden rounded-lg shadow-md"> - {metadata?.artworkUrl ? ( - <Image - src={metadata.artworkUrl} - alt="" - fill - style={{ objectFit: 'cover', objectPosition: 'center' }} - unoptimized - /> - ) : ( - <Skeleton className="size-full" /> - )} - </div> - - <div className="flex grow flex-col gap-1 text-left"> - <div className="line-clamp-2 text-lg font-semibold leading-none"> - {metadata?.trackName ? ( - <>{metadata.trackName}</> - ) : ( - <Skeleton className="h-2 w-32 rounded-sm" /> - )} - </div> - <div className="line-clamp-2 text-sm font-extralight"> - {metadata?.artistName ? ( - <>{metadata.artistName}</> - ) : ( - <Skeleton className="h-2 w-12 rounded-sm" /> - )} - </div> - {currentTrack && !player.loading && <Scrubber className="mt-auto max-md:hidden" />} - </div> - <div className="my-auto"> - <Button - onClick={currentTrack && player.playing ? handlePause : handlePlay} - variant="ghost" - className="rounded-full p-0" - > - {currentTrack && player.playing ? ( - <MdPauseCircle className="text-4xl" /> - ) : ( - <MdPlayCircle className="text-4xl" /> - )} - </Button> - </div> - </div> - ); -} diff --git a/components/Og/CastImageLayout.tsx b/components/Og/CastImageLayout.tsx deleted file mode 100644 index f13cf6f8..00000000 --- a/components/Og/CastImageLayout.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import React from 'react'; -import Header from './Header'; -import ChannelInfo from './ChannelInfo'; -import MetadataInfo from './MetadataInfo'; -import UserInfo from './UserInfo'; -import Footer from './Footer'; - -const CastImageLayout = ({ - encodedUsername, - profilePfp, - metadata, - channelLabel, - channelIcon, - points, - rank, -}: any) => ( - <div - style={{ - background: '#fff', - width: '100%', - height: '100%', - display: 'flex', - flexDirection: 'column', - padding: '20px', - border: '1px solid #eaeaea', - }} - > - <div tw="flex flex-col ml-[100px] mt-[50px]"> - <Header /> - <ChannelInfo channelIcon={channelIcon} channelLabel={channelLabel} /> - <MetadataInfo metadata={metadata} points={points} /> - <UserInfo profilePfp={profilePfp} rank={rank} encodedUsername={encodedUsername} /> - </div> - <Footer /> - </div> -); - -export default CastImageLayout; diff --git a/components/Og/ChannelInfo.tsx b/components/Og/ChannelInfo.tsx deleted file mode 100644 index d80417c4..00000000 --- a/components/Og/ChannelInfo.tsx +++ /dev/null @@ -1,18 +0,0 @@ -const ChannelInfo = ({ channelIcon, channelLabel }: any) => ( - <div tw="flex m-0 items-center mt-10"> - <img - src={channelIcon} - alt="channel Icon" - width="40" - height="40" - loading="lazy" - tw="rounded-full w-14 h-14" - style={{ imageRendering: 'pixelated' }} - /> - <p tw="m-0 text-3xl ml-2 text-[#333536]" style={{ fontWeight: 600 }}> - {channelLabel} - </p> - </div> -); - -export default ChannelInfo; diff --git a/components/Og/Footer.tsx b/components/Og/Footer.tsx deleted file mode 100644 index e52b83f3..00000000 --- a/components/Og/Footer.tsx +++ /dev/null @@ -1,9 +0,0 @@ -const Footer = () => ( - <div tw="flex absolute bottom-4 left-[47%] justify-center"> - <p tw="text-[18px]" style={{ fontWeight: 400 }}> - sonata.tips - </p> - </div> -); - -export default Footer; diff --git a/components/Og/Header.tsx b/components/Og/Header.tsx deleted file mode 100644 index bc91d16e..00000000 --- a/components/Og/Header.tsx +++ /dev/null @@ -1,10 +0,0 @@ -const Header = () => ( - <div tw="flex items-center"> - <img src="https://i.imgur.com/BHbqO6X.png" width={32} height={32} /> - <p tw="text-3xl m-0 ml-2 text-[#333536]" style={{ fontWeight: 600 }}> - Sonata - </p> - </div> -); - -export default Header; diff --git a/components/Og/MetadataInfo.tsx b/components/Og/MetadataInfo.tsx deleted file mode 100644 index 102fc3b7..00000000 --- a/components/Og/MetadataInfo.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import { replaceSpecialCharacters } from '@/lib/replaceSpecialCharacters'; -import React from 'react'; - -const MetadataInfo = ({ metadata, points }: any) => ( - <div tw="flex items-center relative mt-3 ml-1"> - <img - src={metadata?.artworkUrl} - alt="" - width={135} - height={135} - loading="lazy" - tw="rounded-3xl" - /> - <div tw="flex flex-col ml-6"> - <p - style={{ - maxWidth: '340px', - whiteSpace: 'nowrap', - overflow: 'hidden', - textOverflow: 'ellipsis', - fontWeight: 600, - }} - tw="text-4xl m-0 text-[#333536]" - > - {metadata?.trackName} - </p> - <p tw="text-[26px] m-0 text-[#949494]">{replaceSpecialCharacters(metadata?.artistName)}</p> - </div> - <div tw="flex flex-col m-0 bg-[#F6F6F6] rounded-2xl min-w-[200px] w-auto min-h-[140px] h-auto items-start pl-8 pr-8 pt-8 pb-10 justify-center ml-[40px] absolute left-[58%] top-5"> - <div tw="flex items-center m-0 min-w-[68%] w-auto gap-2"> - <p tw="m-1 text-4xl text-[#333536] " style={{ fontWeight: 600 }}> - {points} - </p> - <img - src="https://i.imgur.com/Xa4LjYA.jpeg" - alt="" - width={50} - height={50} - loading="lazy" - tw="rounded-full ml-2 w-12 h-12" - style={{ imageRendering: 'pixelated' }} - /> - </div> - <p tw="m-1 text-[26px] text-[#949494]" style={{ fontWeight: 400 }}> - Notes Collected - </p> - </div> - </div> -); - -export default MetadataInfo; diff --git a/components/Og/UserInfo.tsx b/components/Og/UserInfo.tsx deleted file mode 100644 index 9490887f..00000000 --- a/components/Og/UserInfo.tsx +++ /dev/null @@ -1,40 +0,0 @@ -const UserInfo = ({ profilePfp, rank, encodedUsername }: any) => ( - <div tw="flex flex-col mt-10 ml-1"> - <p tw="text-[#949494] text-2xl" style={{ fontWeight: 400 }}> - Posted By - </p> - <div tw="flex"> - <div tw="flex items-center rounded-full"> - <img - tw="rounded-full" - src={profilePfp} - alt="warpcast" - width={50} - height={50} - loading="lazy" - /> - </div> - {rank > 0 && ( - <div tw="flex items-center justify-center bg-[#F6F6F6] rounded-full w-[100px] ml-5"> - <p tw="text-2xl ml-2 m-0 text-[#333536]" style={{ fontWeight: 600 }}> - #{rank} - </p> - </div> - )} - <div tw="flex items-center justify-center bg-[#EEE4FE] rounded-full min-w-[120px] w-auto w-fit px-5 h-12 ml-5"> - <img - src="https://i.imgur.com/JXN6jYv.png" - alt="warpcast" - width={28} - height={24} - loading="lazy" - /> - <p tw="text-[#8b49f7] text-2xl ml-2" style={{ fontWeight: 600 }}> - {encodedUsername} - </p> - </div> - </div> - </div> -); - -export default UserInfo; diff --git a/components/PlayerButtons/PlayerButtons.tsx b/components/PlayerButtons/PlayerButtons.tsx deleted file mode 100644 index 10bef2d8..00000000 --- a/components/PlayerButtons/PlayerButtons.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import { Button } from '@/components/ui/button'; -import { usePlayer } from '@/providers/audio/PlayerProvider'; -import { useFeedProvider } from '@/providers/FeedProvider'; -import { TrackMetadata } from '@/types/Track'; -import Image from 'next/image'; -import { useEffect } from 'react'; -import { MdPauseCircle, MdPlayCircle } from 'react-icons/md'; - -type PlayerButtonProps = { - metadata?: TrackMetadata; -}; - -const PlayerButtons = ({ metadata }: PlayerButtonProps) => { - const [player, dispatch] = usePlayer(); - const { handleNext, handlePrev } = useFeedProvider(); - - useEffect(() => { - if (player.position !== 0 && player.position > player.duration - 1000) { - handleNext(); - } - }, [player.position]); - - const handlePlay = () => { - { - metadata && dispatch({ type: 'RESUME', payload: { id: metadata.id } }); - } - }; - - const handlePause = () => { - { - metadata && dispatch({ type: 'PAUSE', payload: { id: metadata.id } }); - } - }; - - return ( - <div className="flex items-center"> - <Button onClick={handlePrev} className="bg-white"> - <Image src="/images/skip-back.png" width={22} height={22} alt="" /> - </Button> - - <Button - onClick={player.playing ? handlePause : handlePlay} - variant="ghost" - className="rounded-full p-0" - > - {player.playing ? ( - <MdPauseCircle className="text-4xl" /> - ) : ( - <MdPlayCircle className="text-4xl" /> - )} - </Button> - <Button onClick={handleNext} className="bg-white"> - <Image src="/images/skip-forward.png" width={22} height={22} alt="" /> - </Button> - </div> - ); -}; - -export default PlayerButtons; diff --git a/components/PlayerButtons/index.tsx b/components/PlayerButtons/index.tsx deleted file mode 100644 index 94591120..00000000 --- a/components/PlayerButtons/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import PlayerButtons from './PlayerButtons'; - -export default PlayerButtons; diff --git a/components/Profile/BaseInfo.tsx b/components/Profile/BaseInfo.tsx deleted file mode 100644 index 59a63bae..00000000 --- a/components/Profile/BaseInfo.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import { useProfileProvider } from '@/providers/ProfileProvider'; -import { Avatar, AvatarImage } from '../ui/avatar'; -import Image from 'next/image'; -import Link from 'next/link'; -import Rank from './Rank'; - -const BaseInfo = () => { - const { profile } = useProfileProvider(); - const warpcastProfileURL = `https://warpcast.com/${profile?.username}`; - - return ( - <div className="flex items-center gap-2"> - <Avatar className="size-[60px]"> - <AvatarImage className="object-cover" src={profile?.pfp.url} /> - </Avatar> - <div className="space-y-1"> - <p className="font-sora text-[21px] font-semibold">{profile?.displayName}</p> - <div className="flex gap-2"> - <Rank /> - <Link - href={warpcastProfileURL} - target="_blank" - className="flex h-[33px] items-center justify-center gap-1 rounded-full bg-purple-light px-4 font-sora text-[14px] font-semibold" - > - <Image src="/images/neynar.svg" alt="warpcast" width={16} height={14} /> - <p className="text-purple">{profile?.username}</p> - </Link> - </div> - </div> - </div> - ); -}; - -export default BaseInfo; diff --git a/components/Profile/Followers.tsx b/components/Profile/Followers.tsx deleted file mode 100644 index 6f7730bb..00000000 --- a/components/Profile/Followers.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { useProfileProvider } from '@/providers/ProfileProvider'; -import clsx from 'clsx'; -import Image from 'next/image'; - -const Followers = () => { - const { followers, profile } = useProfileProvider(); - - return ( - <div className="flex gap-1"> - <div className="flex"> - {followers.map((follower, i) => ( - <Image - key={follower.fid} - src={follower.pfp_url} - width={24} - height={24} - alt={follower.username} - className={clsx('max-h-6 min-h-6 min-w-6 max-w-6 overflow-hidden rounded-full object-cover', { - 'translate-x-[-8px]': i == 1, - 'translate-x-[-16px]': i == 2, - })} - /> - ))} - </div> - <p className="flex translate-x-[-12px] items-center text-[14px] leading-none text-grey"> - Followed by {followers.map(follower => '@' + follower.username).join(', ')} and {`${(profile?.followerCount ?? 0) - followers.length}`} more friends. - </p> - </div> - ); -}; - -export default Followers; diff --git a/components/Profile/Notes.tsx b/components/Profile/Notes.tsx deleted file mode 100644 index bf6b0c96..00000000 --- a/components/Profile/Notes.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import getProfileNotes from '@/lib/sonata/getProfileNotes'; -import { formatBigInt } from '@/lib/utils'; -import { useProfileProvider } from '@/providers/ProfileProvider'; -import { useEffect, useState } from 'react'; - -const Notes = () => { - const [notes, setNotes] = useState(0); - const { profile } = useProfileProvider(); - - useEffect(() => { - const init = async () => { - if (!profile?.verifications) return; - const cnt = await getProfileNotes(profile?.verifications); - setNotes(cnt); - }; - if (!profile) return; - - init(); - }, [profile]); - - return ( - <div className="flex w-fit flex-col justify-center"> - <p className="font-sora text-[16px] font-semibold">{formatBigInt(BigInt(notes))}</p> - <p className="text-[14px] text-grey">Notes</p> - </div> - ); -}; - -export default Notes; diff --git a/components/Profile/Profile.tsx b/components/Profile/Profile.tsx deleted file mode 100644 index 53a4d028..00000000 --- a/components/Profile/Profile.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import BaseInfo from './BaseInfo'; -import Notes from './Notes'; -import Songs from './Songs'; -import TopSong from './TopSong'; -import Followers from './Followers'; - -const Profile = () => ( - <section className="container mx-auto mb-4 mt-8 max-w-3xl space-y-4"> - <BaseInfo /> - <div className="flex gap-4"> - <Songs /> - <Notes /> - <TopSong /> - </div> - <Followers /> - </section> -); - -export default Profile; diff --git a/components/Profile/Rank.tsx b/components/Profile/Rank.tsx deleted file mode 100644 index a82fe94a..00000000 --- a/components/Profile/Rank.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import useRank from '@/hooks/useRank'; - -const Rank = () => { - const rank = useRank(); - - return ( - <> - {rank && rank > 0 && ( - <div className="flex h-[33px] items-center justify-center rounded-full bg-grey-light px-4 font-sora text-[14px] font-semibold"> - <div className="flex w-fit flex-col justify-center"> - <p className="font-sora text-[16px] font-semibold">#{rank}</p> - </div> - </div> - )} - </> - ); -}; - -export default Rank; diff --git a/components/Profile/Songs.tsx b/components/Profile/Songs.tsx deleted file mode 100644 index fa15c4b1..00000000 --- a/components/Profile/Songs.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import { formatBigInt } from '@/lib/utils'; -import { useProfileProvider } from '@/providers/ProfileProvider'; - -const Songs = () => { - const { songs } = useProfileProvider(); - - return ( - <div className="flex w-fit flex-col justify-center"> - <p className="font-sora text-[16px] font-semibold">{formatBigInt(BigInt(songs.length))}</p> - <p className="text-[14px] text-grey">Songs</p> - </div> - ); -}; - -export default Songs; diff --git a/components/Profile/TopSong.tsx b/components/Profile/TopSong.tsx deleted file mode 100644 index 91da174e..00000000 --- a/components/Profile/TopSong.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { useProfileProvider } from '@/providers/ProfileProvider'; -import { Skeleton } from '../ui/skeleton'; -import Image from 'next/image'; - -const TopSong = () => { - const { topSongMetadata } = useProfileProvider(); - - return ( - <div className="flex w-fit flex-col justify-center"> - <div className="flex items-center gap-1"> - <div className="relative my-auto aspect-square w-[24px] shrink-0 overflow-hidden rounded-sm"> - {topSongMetadata?.artworkUrl ? ( - <Image - src={topSongMetadata.artworkUrl} - alt="" - fill - style={{ objectFit: 'cover', objectPosition: 'center' }} - unoptimized - /> - ) : ( - <Skeleton className="size-full" /> - )} - </div> - <div className="line-clamp-2 text-[14px] font-semibold leading-none"> - {topSongMetadata?.trackName ? ( - <>{topSongMetadata.trackName}</> - ) : ( - <Skeleton className="h-2 w-32 rounded-sm" /> - )} - </div> - </div> - <p className="text-[14px] text-grey">Top Song</p> - </div> - ); -}; - -export default TopSong; diff --git a/components/Profile/index.tsx b/components/Profile/index.tsx deleted file mode 100644 index f271fa81..00000000 --- a/components/Profile/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import Profile from './Profile'; - -export default Profile; diff --git a/components/Scrubber.tsx b/components/Scrubber.tsx deleted file mode 100644 index bb5024af..00000000 --- a/components/Scrubber.tsx +++ /dev/null @@ -1,54 +0,0 @@ -'use client'; - -import { useEffect, useState } from 'react'; -import { Slider } from '@/components/ui/slider'; -import { usePlayer } from '@/providers/audio/PlayerProvider'; -import { cn, formatDuration } from '@/lib/utils'; - -export default function Scrubber({ className }: { className?: string }) { - const [player, dispatch] = usePlayer(); - const [isScrubbing, setIsScrubbing] = useState(false); - const [isSeeking, setIsSeeking] = useState(false); - const [lastSeen, setLastSeen] = useState(0); - const [scrubbingPosition, setScrubbingPosition] = useState(0); - - const handleSeek = (value: number) => { - dispatch({ type: 'SEEK', payload: { position: value } }); - }; - - useEffect(() => { - if (!isSeeking) return; - if (player.position !== lastSeen) { - setIsSeeking(false); - } - }, [isSeeking, lastSeen, player.position]); - - return ( - <div - className={cn('flex items-center gap-2 text-xs font-light text-muted-foreground', className)} - > - <span>{formatDuration(player.position)}</span> - <Slider - defaultValue={[0]} - max={player.duration} - step={1} - value={[isScrubbing || isSeeking ? scrubbingPosition : player.position]} - onPointerDown={() => { - setIsScrubbing(true); - setScrubbingPosition(player.position); - }} - onPointerUp={() => { - setIsScrubbing(false); - setIsSeeking(true); - setLastSeen(player.position); - handleSeek(scrubbingPosition); - }} - onValueChange={([value]) => { - setScrubbingPosition(value); - }} - className="cursor-pointer" - /> - <span>{formatDuration(player.duration)}</span> - </div> - ); -} diff --git a/components/Sidebar.tsx b/components/Sidebar.tsx deleted file mode 100644 index 99abb131..00000000 --- a/components/Sidebar.tsx +++ /dev/null @@ -1,50 +0,0 @@ -import BalanceInfo from '@/components/BalanceInfo'; -import SignInButton from './SignInButton'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { Button } from './ui/button'; -import { Separator } from './ui/separator'; -import ChannelFilter from './Feed/ChannelFilter'; -import Image from 'next/image'; -import UserDetails from './UserDetails'; - -export default function MobileMenu({ isSingleCast = false }: { isSingleCast?: boolean }) { - const { user, signOut } = useNeynarProvider(); - - return ( - <div className="flex h-full flex-col gap-4 md:px-16 md:py-6"> - <a href="/" className="mb-8 flex items-center gap-2 max-md:hidden"> - <Image src="/images/notes.png" width={20} height={20} alt="" /> - <span className="font-semibold">Sonata</span> - </a> - {user && <UserDetails className="mb-8 md:hidden" user={user} />} - <BalanceInfo /> - <a - className="flex items-center gap-2" - href="https://www.stack.so/leaderboard/sonata" - target="_blank" - > - <Image src="/images/notes.png" width={20} height={20} alt="" /> - <span className="font-semibold">View Leaderboard</span> - </a> - <Separator /> - - {!isSingleCast && <ChannelFilter />} - <a - href="https://warpcast.com/~/channel/sonata" - className="mt-auto flex items-center gap-2 self-start" - > - <span>Follow Sonata</span> - <Image src="/images/warpcast.png" alt="warpcast" width={18} height={18} /> - </a> - <div className="md:hidden"> - {user ? ( - <Button onClick={signOut} variant="secondary" className="w-full"> - Logout - </Button> - ) : ( - <SignInButton /> - )} - </div> - </div> - ); -} diff --git a/components/SignInButton.tsx b/components/SignInButton.tsx deleted file mode 100644 index 7f9b57bc..00000000 --- a/components/SignInButton.tsx +++ /dev/null @@ -1,22 +0,0 @@ -'use client'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import Image from 'next/image'; -import { Button } from '@/components/ui/button'; - -const SignInButton = () => { - const { signIn } = useNeynarProvider(); - - return ( - <Button - onClick={signIn} - className="flex h-auto items-center gap-1 rounded-md bg-farcaster px-4 py-2 font-light text-white md:gap-2 " - > - <div className="w-4 md:w-8"> - <Image src="/images/farcaster.svg" width={323} height={297} alt="" /> - </div> - <span className="max-md:text-xs"> Sign In</span> - </Button> - ); -}; - -export default SignInButton; diff --git a/components/SignInDialog.tsx b/components/SignInDialog.tsx deleted file mode 100644 index 58931fe3..00000000 --- a/components/SignInDialog.tsx +++ /dev/null @@ -1,32 +0,0 @@ -'use client'; -import { - Dialog, - DialogContent, - DialogDescription, - DialogFooter, - DialogHeader, - DialogTitle, -} from '@/components/ui/dialog'; -import SignInButton from './SignInButton'; - -export default function SignInDialog({ - open, - setOpen, -}: { - open: boolean; - setOpen: (open: boolean) => void; -}) { - return ( - <Dialog open={open} onOpenChange={setOpen}> - <DialogContent> - <DialogHeader> - <DialogTitle>Please sign in to continue</DialogTitle> - <DialogDescription>Connect with you farcaster account</DialogDescription> - </DialogHeader> - <DialogFooter className="w-full sm:justify-center"> - <SignInButton /> - </DialogFooter> - </DialogContent> - </Dialog> - ); -} diff --git a/components/Tabs.tsx b/components/Tabs.tsx deleted file mode 100644 index 8dde669c..00000000 --- a/components/Tabs.tsx +++ /dev/null @@ -1,46 +0,0 @@ -'use client'; -import { cn } from '@/lib/utils'; -import { useFeedProvider } from '@/providers/FeedProvider'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { FeedType } from '@/types/Feed'; -import { Button } from '@/components/ui/button'; -import { useParams } from 'next/navigation'; - -type tab = { - label: string; - href?: string; - value: string; -}; - -export default function Tabs({ tabs, className = '' }: { tabs: tab[]; className?: string }) { - const { feedType, setFeedType } = useFeedProvider(); - const { user } = useNeynarProvider(); - const { username } = useParams(); - - return ( - <ul className={cn('flex gap-4 md:gap-8', className)}> - {tabs - .filter((tab) => { - if (username) { - return tab.value === FeedType.Posts; - } - const isDisabled = - (tab.value === FeedType.Following && !user) || tab.value === FeedType.Posts; - return !isDisabled; - }) - .map((tab, index) => { - return ( - <li className={cn(feedType === tab.value && 'border-b-2 border-black')} key={index}> - <Button - variant="ghost" - className="p-0 text-sm font-bold hover:bg-transparent md:text-lg" - onClick={() => setFeedType(tab.value)} - > - {tab.label} - </Button> - </li> - ); - })} - </ul> - ); -} diff --git a/components/TipButton.tsx b/components/TipButton.tsx deleted file mode 100644 index 848c487c..00000000 --- a/components/TipButton.tsx +++ /dev/null @@ -1,125 +0,0 @@ -import { useState, useEffect } from 'react'; -import Image from 'next/image'; -import { Button } from '@/components/ui/button'; -import { useTipProvider } from '@/providers/TipProvider'; -import { SupabasePost } from '@/types/SupabasePost'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { Popover, PopoverContent } from '@/components/ui/popover'; -import { cn, isValidNumber } from '@/lib/utils'; -import { PopoverTrigger } from '@radix-ui/react-popover'; -import { useUi } from '@/providers/UiProvider'; -import { Badge } from './ui/badge'; -import { Input } from './ui/input'; - -const defualtTips = { - DEGEN: [10, 50, 100], - NOTES: [100, 1000, 10000], -}; - -const logos = { - DEGEN: '/images/degenchain.png', - NOTES: '/images/notes.png', -}; - -export default function TipButton({ - verifications, - cast = {} as SupabasePost, - currency, - className, -}: { - verifications: string[]; - cast: SupabasePost; - currency: 'DEGEN' | 'NOTES'; - className?: string; -}) { - const { user } = useNeynarProvider(); - const userFid = user?.fid; - const castAuthorFid = cast.author?.fid; - const isSelfPost = userFid === castAuthorFid; - const { tip, tipDegen } = useTipProvider(); - const [showDropdown, setShowDropdown] = useState(false); - const [customTip, setCustomTip] = useState(''); - const [total, setTotal] = useState(0); - const { checkLoggedIn } = useUi(); - - useEffect(() => { - if (currency === 'NOTES') setTotal(cast.points ?? 0); - else if (currency === 'DEGEN') setTotal(cast.degen ?? 0); - }, [cast, currency]); - - const handleTip = async (amount: number) => { - setShowDropdown(false); - if (amount === 0) return; - let response; - if (currency === 'NOTES') { - response = await tip(amount, cast.post_hash, cast.author.fid); - } else if (currency === 'DEGEN') { - response = await tipDegen(amount, cast.post_hash); - } - setTotal(response.totalTipOnPost ?? 0); - setCustomTip(''); - }; - - const handleCustomTip = () => { - isValidNumber(customTip) && handleTip(Number(customTip)); - }; - - const handleClick = () => { - if (!checkLoggedIn()) return; - if (isSelfPost) return; - setShowDropdown(!showDropdown); - }; - - let iconSize = 14; - if (currency === 'NOTES') iconSize = 24; - - if (!(verifications && verifications.length > 0)) return <></>; - return ( - <Popover open={showDropdown} onOpenChange={setShowDropdown}> - <PopoverTrigger asChild className={cn('rounded-full', className)}> - <Button - variant="ghost" - className={cn( - 'rounded-full flex items-center flex-row gap-1 font-semibold px-4 bg-muted h-auto py-1', - currency === 'NOTES' && 'flex-row-reverse px-0 bg-transparent hover:bg-transparent', - )} - onClick={handleClick} - > - <span>{total}</span> - <Image src={logos[currency]} width={iconSize} height={iconSize} alt="" /> - </Button> - </PopoverTrigger> - <PopoverContent className="flex w-48 flex-col gap-2"> - <h3 className="mb-2 text-xs font-semibold">Tip</h3> - - <ul className="flex flex-wrap gap-2"> - {defualtTips[currency].map((amount) => ( - <li key={amount}> - <Badge - variant="secondary" - className="flex cursor-pointer gap-1" - onClick={() => handleTip(amount)} - > - {amount} <Image src={logos[currency]} width={14} height={14} alt="" /> - </Badge> - </li> - ))} - </ul> - - <div className="flex items-center rounded-2xl bg-muted px-4 py-2"> - <Input - type="number" - min={0} - value={customTip} - onChange={(e) => setCustomTip(e.target.value)} - placeholder="Custom Amount" - className="h-auto grow border-none bg-transparent p-0 text-xs outline-none [appearance:textfield] focus-visible:ring-0 focus-visible:ring-offset-0 [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none" - /> - <Button variant="ghost" onClick={handleCustomTip} className="h-auto p-0"> - <Image src={logos[currency]} width={16} height={16} alt="" /> - </Button> - </div> - </PopoverContent> - </Popover> - ); -} diff --git a/components/TipsList.tsx b/components/TipsList.tsx deleted file mode 100644 index 0ac27a2d..00000000 --- a/components/TipsList.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import HorizontalScroller from './scroller/HorizontalScroller'; -import useTipsBanner from '@/hooks/useTipsBanner'; - -const TipsList = () => { - const { tips } = useTipsBanner(); - - return <HorizontalScroller items={tips} />; -}; - -export default TipsList; diff --git a/components/UpvoteDownvote.tsx b/components/UpvoteDownvote.tsx deleted file mode 100644 index e0f792f0..00000000 --- a/components/UpvoteDownvote.tsx +++ /dev/null @@ -1,119 +0,0 @@ -import { useState, useEffect } from 'react'; -import Image from 'next/image'; -import { Button } from '@/components/ui/button'; -import { useTipProvider } from '@/providers/TipProvider'; -import { SupabasePost } from '@/types/SupabasePost'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { Popover, PopoverContent } from '@/components/ui/popover'; -import { cn, formatBigInt, isValidNumber } from '@/lib/utils'; -import { PopoverTrigger } from '@radix-ui/react-popover'; -import { useUi } from '@/providers/UiProvider'; -import { Badge } from './ui/badge'; -import { Input } from './ui/input'; -import { ArrowBigUp } from 'lucide-react'; - -const defaultTips = { - DEGEN: [10, 50, 100], - NOTES: [100, 1000, 10000], -}; - -const logos = { - DEGEN: '/images/degenchain.png', - NOTES: '/images/notes.png', -}; - -export default function UpvoteDownvote({ - verifications, - cast = {} as SupabasePost, - className, -}: { - verifications: string[]; - cast: SupabasePost; - className?: string; -}) { - const { user } = useNeynarProvider(); - const userFid = user?.fid; - const castAuthorFid = cast.author?.fid; - const isSelfPost = userFid === castAuthorFid; - const { tip } = useTipProvider(); - const [showUpvoteDropdown, setShowUpvoteDropdown] = useState(false); - const [customTip, setCustomTip] = useState(''); - const [total, setTotal] = useState(0); - const { checkLoggedIn } = useUi(); - - useEffect(() => { - setTotal(cast.points ?? 0); - }, [cast]); - - const handleUpvoteTip = async (amount: number) => { - setShowUpvoteDropdown(false); - if (amount === 0) return; - const response = await tip(amount, cast.post_hash, cast.author.fid); - setTotal(response.totalTipOnPost ?? 0); - setCustomTip(''); - }; - - const handleCustomUpvoteTip = () => { - isValidNumber(customTip) && handleUpvoteTip(Number(customTip)); - }; - - const handleUpvoteClick = () => { - if (!checkLoggedIn()) return; - if (isSelfPost) return; - setShowUpvoteDropdown(!showUpvoteDropdown); - }; - - if (!(verifications && verifications.length > 0)) return <></>; - return ( - <div className="flex flex-row rounded-full bg-muted px-1"> - <Popover open={showUpvoteDropdown} onOpenChange={setShowUpvoteDropdown}> - <PopoverTrigger asChild className={cn('rounded-full !bg-grey-light', className)}> - <Button - variant="ghost" - className={cn( - 'rounded-full flex items-center flex-row gap-1 font-semibold py-2 px-4 bg-muted h-auto', - 'flex-row-reverse bg-transparent hover:bg-transparent', - )} - onClick={handleUpvoteClick} - > - <span>{formatBigInt(BigInt(total))}</span> - <Image src={logos.NOTES} width={16} height={16} alt="" /> - <ArrowBigUp className="hover:fill-black" /> - </Button> - </PopoverTrigger> - <PopoverContent className="flex w-48 flex-col gap-2"> - <h3 className="mb-2 text-xs font-semibold">Upvote</h3> - - <ul className="flex flex-wrap gap-2"> - {defaultTips.NOTES.map((amount) => ( - <li key={amount}> - <Badge - variant="secondary" - className="flex cursor-pointer gap-1 bg-grey-light px-3 py-2" - onClick={() => handleUpvoteTip(amount)} - > - {amount} - <Image src={logos.NOTES} width={14} height={14} alt="" /> - </Badge> - </li> - ))} - </ul> - - <div className="flex items-center rounded-xl bg-grey-light px-4"> - <Input - type="number" - min={0} - value={customTip} - onChange={(e) => setCustomTip(e.target.value)} - placeholder="Custom Amount" - className="h-auto grow border-none bg-transparent px-0 py-3.5 text-xs outline-none [appearance:textfield] focus-visible:ring-0 focus-visible:ring-offset-0 [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none" - /> - <Button variant="ghost" onClick={handleCustomUpvoteTip} className="size-4 p-0"> - <Image src={logos.NOTES} width={16} height={16} alt="" /> - </Button> - </div> - </PopoverContent> - </Popover> - </div> - ); -} diff --git a/components/UserDetails.tsx b/components/UserDetails.tsx deleted file mode 100644 index 14051b91..00000000 --- a/components/UserDetails.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import { User } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { Avatar, AvatarFallback, AvatarImage } from './ui/avatar'; -import { cn } from '@/lib/utils'; -import Image from 'next/image'; -import Link from 'next/link'; - -export default function UserDetails({ - user, - hasHypersub, - className, -}: { - user: User; - hasHypersub?: boolean; - className?: string; -}) { - return ( - <div className={cn('flex space-x-3', className)}> - <Link href={`/${user.username}`}> - <Avatar className="size-8"> - <AvatarImage src={user.pfp_url} /> - <AvatarFallback>{user.display_name}</AvatarFallback> - </Avatar> - </Link> - <div className="flex flex-col gap-1"> - <div className="flex flex-row items-center align-middle"> - <a - href={`/${user.username}`} - target="_blank" - className="text-sm font-semibold leading-none" - > - {user.display_name} - </a> - {hasHypersub && <Image src="/images/hypersub.png" width={20} height={20} alt="" />} - </div> - <a - href={`/${user.username}`} - target="_blank" - className="text-xs leading-none text-muted-foreground hover:underline" - > - @{user.username} - </a> - </div> - </div> - ); -} diff --git a/components/scroller/HorizontalScroller.tsx b/components/scroller/HorizontalScroller.tsx deleted file mode 100644 index 0dffbf5c..00000000 --- a/components/scroller/HorizontalScroller.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import useHorizontalScroll from '@/hooks/useHorizontalScroll'; -import Link from 'next/link'; - -const HorizontalScroller = ({ items }: any) => { - const { scrollerRef } = useHorizontalScroll(); - - return ( - <div className="flex overflow-hidden bg-purple-light" ref={scrollerRef}> - {items.concat(items).map((item: any, index: any) => ( - <div key={index} className="flex shrink-0 items-center gap-2 p-5"> - {/* eslint-disable-next-line @next/next/no-img-element */} - <img src={item.imgUrl} alt="" className="size-8 rounded-full" /> - <p className="font-sora text-base text-purple"> - <Link className='hover:text-purple-800' href={'/' + item.sender}>@{item.sender}</Link> - {` tipped ${item.amount} NOTES to `} - <Link className='hover:text-purple-800' href={'/' + item.receiver}>@{item.receiver}</Link> - </p> - </div> - ))} - </div> - ); -}; -export default HorizontalScroller; diff --git a/funding.json b/funding.json deleted file mode 100644 index e3abc1b7..00000000 --- a/funding.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "opRetro": { - "projectId": "0x0b06e685eab9c4fee7d93ca54e1c02281e2be560bfc54f43fa738961fa2ce4c1" - } -} diff --git a/hooks/useClaimAirdropModal.tsx b/hooks/useClaimAirdropModal.tsx deleted file mode 100644 index 47c30f46..00000000 --- a/hooks/useClaimAirdropModal.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { useToast } from '@/components/ui/use-toast'; -import claimAirdrop from '@/lib/sonata/claimAirdrop'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { useState } from 'react'; - -const useClaimAirdropModal = () => { - const { signer, user } = useNeynarProvider(); - const [isPostDialogOpen, setIsPostDialogOpen] = useState<boolean>(false); - const [isLoading, setIsLoading] = useState(false); - const { toast } = useToast(); - - const handlePost = async () => { - setIsLoading(true); - if (user?.verifications.length === 0) { - toast({ description: 'Please verify an address on warpcast and try again' }); - } else if (user?.verifications) { - const response = await claimAirdrop(signer?.signer_uuid, user?.verifications[0]); - toast({ description: `${response.message}` }); - setIsPostDialogOpen(false); - } - setIsLoading(false); - }; - - const handleClick = () => { - setIsPostDialogOpen(true); - }; - - return { handleClick, handlePost, isPostDialogOpen, setIsPostDialogOpen, isLoading }; -}; - -export default useClaimAirdropModal; diff --git a/hooks/useCreateModal.tsx b/hooks/useCreateModal.tsx deleted file mode 100644 index bb5dc981..00000000 --- a/hooks/useCreateModal.tsx +++ /dev/null @@ -1,46 +0,0 @@ -'use client' -import { useToast } from '@/components/ui/use-toast'; -import callPostApi from '@/lib/callPostApi'; -import isValidUrl from '@/lib/isValidUrl'; -import { useNeynarProvider } from '@/providers/NeynarProvider'; -import { useRouter } from 'next/navigation'; -import { useState } from 'react'; - -const useCreateDialog = () => { - const { signer } = useNeynarProvider(); - const [embedUrl, setEmbedUrl] = useState<string>(''); - const [isPostDialogOpen, setIsPostDialogOpen] = useState<boolean>(false); - const { toast } = useToast(); - const router = useRouter(); - - const handlePost = () => { - if (!isValidUrl(embedUrl)) { - toast({ description: `Sound / Soundcloud / Spotify only` }); - return; - } - if (!signer?.signer_uuid) return; - - callPostApi(signer.signer_uuid, embedUrl).then( - async res => { - toast({ description: 'Posted!!!' }); - if (res.status == 307) { - const data = await res.json(); - router.push(data.link); - } - } - ).catch( - () => toast({ description: 'Failed' }) - ).finally(() => { - setEmbedUrl(''); - setIsPostDialogOpen(false); - }); - }; - - const handleClick = () => { - setIsPostDialogOpen(true); - }; - - return { handleClick, handlePost, isPostDialogOpen, setIsPostDialogOpen, embedUrl, setEmbedUrl }; -}; - -export default useCreateDialog; diff --git a/hooks/useEndpointScores.tsx b/hooks/useEndpointScores.tsx new file mode 100644 index 00000000..8926faca --- /dev/null +++ b/hooks/useEndpointScores.tsx @@ -0,0 +1,25 @@ +import { endpoints as defaultEndpoints } from '@/lib/getEndpointsList'; +import getEndpointsWithScores from '@/lib/getEndpointsWithScores'; +import { useEffect, useState } from 'react'; + +const useEndpointScores = () => { + const [endpoints, setEndpoints] = useState<any[]>(defaultEndpoints); + + useEffect(() => { + const init = async () => { + try { + const endpointsWithScores = await getEndpointsWithScores(); + const sortedEndpoints = endpointsWithScores.sort((a, b) => b.score - a.score); + setEndpoints(sortedEndpoints); + } catch (error) { + console.error('Error fetching leaderboard data:', error); + } + }; + + init(); + }, []); + + return { endpoints }; +}; + +export default useEndpointScores; diff --git a/hooks/useHorizontalScroll.tsx b/hooks/useHorizontalScroll.tsx deleted file mode 100644 index 37261761..00000000 --- a/hooks/useHorizontalScroll.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { useEffect, useRef } from 'react'; - -const useHorizontalScroll = () => { - const scrollerRef = useRef<HTMLDivElement>(null); - - useEffect(() => { - const scroller = scrollerRef.current; - if(!scroller) return; - - let startOffset = 0; - - const autoScroll = () => { - if (startOffset && startOffset >= scroller.scrollWidth - scroller.clientWidth) { - scroller.scrollTo({ left: 0 }); - startOffset = 0; - } else { - startOffset += 1; - } - scroller.scrollTo({ - left: startOffset, - }); - }; - - let interval = setInterval(autoScroll, 16); - - const playScroll = ()=> interval = setInterval(autoScroll, 16); - const pauseScroll = ()=> clearInterval(interval); - - scroller.addEventListener('mouseenter',pauseScroll); - scroller.addEventListener('mouseleave', playScroll); - - return () => { - clearInterval(interval); - scroller.removeEventListener('mouseenter', pauseScroll); - scroller.removeEventListener('mouseleave', playScroll); - }; - }, []); - - return { scrollerRef }; -}; - -export default useHorizontalScroll; diff --git a/hooks/useNewCasts.tsx b/hooks/useNewCasts.tsx deleted file mode 100644 index d24f6822..00000000 --- a/hooks/useNewCasts.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { useEffect, useState } from 'react'; - -const useNewCasts = () => { - const [newCasts, setNewCasts] = useState<Cast[]>([]); - - useEffect(() => { - const init = async () => { - const newCastResponse = await fetch('/api/getNewCasts'); - const data = await newCastResponse.json(); - setNewCasts(data.allEntries); - }; - init(); - }, []); - - return { newCasts }; -}; - -export default useNewCasts; diff --git a/hooks/useRank.tsx b/hooks/useRank.tsx deleted file mode 100644 index 3ab128bd..00000000 --- a/hooks/useRank.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import getProfileRank from '@/lib/sonata/getProfileRank'; -import { useProfileProvider } from '@/providers/ProfileProvider'; -import { useEffect, useState } from 'react'; - -const useRank = () => { - const [rank, setRank] = useState(null); - const { profile } = useProfileProvider(); - - useEffect(() => { - const init = async () => { - if (!profile?.verifications) return; - const leaderBoardRank: any = await getProfileRank(profile?.verifications); - setRank(leaderBoardRank); - }; - if (!profile) return; - - init(); - }, [profile]); - - return rank; -}; - -export default useRank; diff --git a/hooks/useTipsBanner.tsx b/hooks/useTipsBanner.tsx deleted file mode 100644 index a01e929c..00000000 --- a/hooks/useTipsBanner.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import { useEffect, useState } from 'react'; -import getFormattedTips from '@/lib/getFormattedTips'; - -const useTipsBanner = () => { - const [tips, setTips] = useState([]); - - useEffect(() => { - const fetchTips = async () => { - try { - const response = await fetch('/api/tips'); - const result = await response.json(); - if (response.ok) { - const formattedTips: any = await getFormattedTips(result.tips); - setTips(formattedTips); - } - } catch (error: any) { - console.error(error); - } - }; - - fetchTips(); - }, []); - - return { tips }; -}; - -export default useTipsBanner; diff --git a/lib/abi/farcaster-id-registry.json b/lib/abi/farcaster-id-registry.json deleted file mode 100644 index 4494e2d9..00000000 --- a/lib/abi/farcaster-id-registry.json +++ /dev/null @@ -1,1254 +0,0 @@ -[ - { - "inputs": [ - { - "internalType": "address", - "name": "_migrator", - "type": "address" - }, - { - "internalType": "address", - "name": "_initialOwner", - "type": "address" - } - ], - "stateMutability": "nonpayable", - "type": "constructor" - }, - { - "inputs": [], - "name": "AlreadyMigrated", - "type": "error" - }, - { - "inputs": [], - "name": "GatewayFrozen", - "type": "error" - }, - { - "inputs": [], - "name": "HasId", - "type": "error" - }, - { - "inputs": [], - "name": "HasNoId", - "type": "error" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - }, - { - "internalType": "uint256", - "name": "currentNonce", - "type": "uint256" - } - ], - "name": "InvalidAccountNonce", - "type": "error" - }, - { - "inputs": [], - "name": "InvalidShortString", - "type": "error" - }, - { - "inputs": [], - "name": "InvalidSignature", - "type": "error" - }, - { - "inputs": [], - "name": "OnlyGuardian", - "type": "error" - }, - { - "inputs": [], - "name": "OnlyMigrator", - "type": "error" - }, - { - "inputs": [], - "name": "PermissionRevoked", - "type": "error" - }, - { - "inputs": [], - "name": "SignatureExpired", - "type": "error" - }, - { - "inputs": [ - { - "internalType": "string", - "name": "str", - "type": "string" - } - ], - "name": "StringTooLong", - "type": "error" - }, - { - "inputs": [], - "name": "Unauthorized", - "type": "error" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "guardian", - "type": "address" - } - ], - "name": "Add", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "uint256", - "name": "fid", - "type": "uint256" - } - ], - "name": "AdminReset", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "uint256", - "name": "id", - "type": "uint256" - }, - { - "indexed": true, - "internalType": "address", - "name": "recovery", - "type": "address" - } - ], - "name": "ChangeRecoveryAddress", - "type": "event" - }, - { - "anonymous": false, - "inputs": [], - "name": "EIP712DomainChanged", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "idGateway", - "type": "address" - } - ], - "name": "FreezeIdGateway", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "uint256", - "name": "migratedAt", - "type": "uint256" - } - ], - "name": "Migrated", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "previousOwner", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "newOwner", - "type": "address" - } - ], - "name": "OwnershipTransferStarted", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "previousOwner", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "newOwner", - "type": "address" - } - ], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "Paused", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "indexed": true, - "internalType": "uint256", - "name": "id", - "type": "uint256" - } - ], - "name": "Recover", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "indexed": true, - "internalType": "uint256", - "name": "id", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "address", - "name": "recovery", - "type": "address" - } - ], - "name": "Register", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "guardian", - "type": "address" - } - ], - "name": "Remove", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "oldCounter", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "newCounter", - "type": "uint256" - } - ], - "name": "SetIdCounter", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "oldIdGateway", - "type": "address" - }, - { - "indexed": false, - "internalType": "address", - "name": "newIdGateway", - "type": "address" - } - ], - "name": "SetIdGateway", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "oldMigrator", - "type": "address" - }, - { - "indexed": false, - "internalType": "address", - "name": "newMigrator", - "type": "address" - } - ], - "name": "SetMigrator", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "indexed": true, - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "indexed": true, - "internalType": "uint256", - "name": "id", - "type": "uint256" - } - ], - "name": "Transfer", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "Unpaused", - "type": "event" - }, - { - "inputs": [], - "name": "CHANGE_RECOVERY_ADDRESS_TYPEHASH", - "outputs": [ - { - "internalType": "bytes32", - "name": "", - "type": "bytes32" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "TRANSFER_AND_CHANGE_RECOVERY_TYPEHASH", - "outputs": [ - { - "internalType": "bytes32", - "name": "", - "type": "bytes32" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "TRANSFER_TYPEHASH", - "outputs": [ - { - "internalType": "bytes32", - "name": "", - "type": "bytes32" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "VERSION", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "acceptOwnership", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "guardian", - "type": "address" - } - ], - "name": "addGuardian", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "components": [ - { - "internalType": "uint24", - "name": "fid", - "type": "uint24" - }, - { - "internalType": "address", - "name": "custody", - "type": "address" - }, - { - "internalType": "address", - "name": "recovery", - "type": "address" - } - ], - "internalType": "struct IIdRegistry.BulkRegisterData[]", - "name": "ids", - "type": "tuple[]" - } - ], - "name": "bulkRegisterIds", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "components": [ - { - "internalType": "uint24", - "name": "fid", - "type": "uint24" - }, - { - "internalType": "address", - "name": "custody", - "type": "address" - } - ], - "internalType": "struct IIdRegistry.BulkRegisterDefaultRecoveryData[]", - "name": "ids", - "type": "tuple[]" - }, - { - "internalType": "address", - "name": "recovery", - "type": "address" - } - ], - "name": "bulkRegisterIdsWithDefaultRecovery", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint24[]", - "name": "ids", - "type": "uint24[]" - } - ], - "name": "bulkResetIds", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "recovery", - "type": "address" - } - ], - "name": "changeRecoveryAddress", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "owner", - "type": "address" - }, - { - "internalType": "address", - "name": "recovery", - "type": "address" - }, - { - "internalType": "uint256", - "name": "deadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "sig", - "type": "bytes" - } - ], - "name": "changeRecoveryAddressFor", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "fid", - "type": "uint256" - } - ], - "name": "custodyOf", - "outputs": [ - { - "internalType": "address", - "name": "custody", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "domainSeparatorV4", - "outputs": [ - { - "internalType": "bytes32", - "name": "", - "type": "bytes32" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "eip712Domain", - "outputs": [ - { - "internalType": "bytes1", - "name": "fields", - "type": "bytes1" - }, - { - "internalType": "string", - "name": "name", - "type": "string" - }, - { - "internalType": "string", - "name": "version", - "type": "string" - }, - { - "internalType": "uint256", - "name": "chainId", - "type": "uint256" - }, - { - "internalType": "address", - "name": "verifyingContract", - "type": "address" - }, - { - "internalType": "bytes32", - "name": "salt", - "type": "bytes32" - }, - { - "internalType": "uint256[]", - "name": "extensions", - "type": "uint256[]" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "freezeIdGateway", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "gatewayFrozen", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "gracePeriod", - "outputs": [ - { - "internalType": "uint24", - "name": "", - "type": "uint24" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "guardian", - "type": "address" - } - ], - "name": "guardians", - "outputs": [ - { - "internalType": "bool", - "name": "isGuardian", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "bytes32", - "name": "structHash", - "type": "bytes32" - } - ], - "name": "hashTypedDataV4", - "outputs": [ - { - "internalType": "bytes32", - "name": "", - "type": "bytes32" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "idCounter", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "idGateway", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "owner", - "type": "address" - } - ], - "name": "idOf", - "outputs": [ - { - "internalType": "uint256", - "name": "fid", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "isMigrated", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "migrate", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "migratedAt", - "outputs": [ - { - "internalType": "uint40", - "name": "", - "type": "uint40" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "migrator", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "name", - "outputs": [ - { - "internalType": "string", - "name": "", - "type": "string" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "owner", - "type": "address" - } - ], - "name": "nonces", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "owner", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "pause", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "paused", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "pendingOwner", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "uint256", - "name": "deadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "sig", - "type": "bytes" - } - ], - "name": "recover", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "uint256", - "name": "recoveryDeadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "recoverySig", - "type": "bytes" - }, - { - "internalType": "uint256", - "name": "toDeadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "toSig", - "type": "bytes" - } - ], - "name": "recoverFor", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "fid", - "type": "uint256" - } - ], - "name": "recoveryOf", - "outputs": [ - { - "internalType": "address", - "name": "recovery", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "address", - "name": "recovery", - "type": "address" - } - ], - "name": "register", - "outputs": [ - { - "internalType": "uint256", - "name": "fid", - "type": "uint256" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "guardian", - "type": "address" - } - ], - "name": "removeGuardian", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "renounceOwnership", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "_counter", - "type": "uint256" - } - ], - "name": "setIdCounter", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_idGateway", - "type": "address" - } - ], - "name": "setIdGateway", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "_migrator", - "type": "address" - } - ], - "name": "setMigrator", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "uint256", - "name": "deadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "sig", - "type": "bytes" - } - ], - "name": "transfer", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "address", - "name": "recovery", - "type": "address" - }, - { - "internalType": "uint256", - "name": "deadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "sig", - "type": "bytes" - } - ], - "name": "transferAndChangeRecovery", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "address", - "name": "recovery", - "type": "address" - }, - { - "internalType": "uint256", - "name": "fromDeadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "fromSig", - "type": "bytes" - }, - { - "internalType": "uint256", - "name": "toDeadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "toSig", - "type": "bytes" - } - ], - "name": "transferAndChangeRecoveryFor", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "from", - "type": "address" - }, - { - "internalType": "address", - "name": "to", - "type": "address" - }, - { - "internalType": "uint256", - "name": "fromDeadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "fromSig", - "type": "bytes" - }, - { - "internalType": "uint256", - "name": "toDeadline", - "type": "uint256" - }, - { - "internalType": "bytes", - "name": "toSig", - "type": "bytes" - } - ], - "name": "transferFor", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "newOwner", - "type": "address" - } - ], - "name": "transferOwnership", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "unpause", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "useNonce", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "custodyAddress", - "type": "address" - }, - { - "internalType": "uint256", - "name": "fid", - "type": "uint256" - }, - { - "internalType": "bytes32", - "name": "digest", - "type": "bytes32" - }, - { - "internalType": "bytes", - "name": "sig", - "type": "bytes" - } - ], - "name": "verifyFidSignature", - "outputs": [ - { - "internalType": "bool", - "name": "isValid", - "type": "bool" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/lib/abi/soundCreators-abi.json b/lib/abi/soundCreators-abi.json deleted file mode 100644 index 448c4283..00000000 --- a/lib/abi/soundCreators-abi.json +++ /dev/null @@ -1,637 +0,0 @@ -[ - { - "type": "error", - "name": "ArrayLengthsMismatch", - "inputs": [], - "outputs": [] - }, - { - "type": "error", - "name": "ImplementationAddressCantBeZero", - "inputs": [], - "outputs": [] - }, - { - "type": "error", - "name": "InvalidSignature", - "inputs": [], - "outputs": [] - }, - { - "type": "error", - "name": "Unauthorized", - "inputs": [], - "outputs": [] - }, - { - "type": "event", - "name": "Created", - "inputs": [ - { - "type": "address", - "name": "implementation", - "indexed": true, - "internalType": "address" - }, - { - "type": "address", - "name": "edition", - "indexed": true, - "internalType": "address" - }, - { - "type": "address", - "name": "owner", - "indexed": true, - "internalType": "address" - }, - { - "type": "bytes", - "name": "initData", - "indexed": false, - "internalType": "bytes" - }, - { - "type": "address[]", - "name": "contracts", - "indexed": false, - "internalType": "address[]" - }, - { - "type": "bytes[]", - "name": "data", - "indexed": false, - "internalType": "bytes[]" - }, - { - "type": "bytes[]", - "name": "results", - "indexed": false, - "internalType": "bytes[]" - } - ], - "outputs": [], - "anonymous": false - }, - { - "type": "event", - "name": "NoncesInvalidated", - "inputs": [ - { - "type": "address", - "name": "signer", - "indexed": true, - "internalType": "address" - }, - { - "type": "uint256[]", - "name": "nonces", - "indexed": false, - "internalType": "uint256[]" - } - ], - "outputs": [], - "anonymous": false - }, - { - "type": "fallback", - "name": "", - "inputs": [], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "DOMAIN_TYPEHASH", - "inputs": [], - "outputs": [ - { - "type": "bytes32", - "name": "", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "SOUND_CREATION_TYPEHASH", - "inputs": [], - "outputs": [ - { - "type": "bytes32", - "name": "", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "computeDigest", - "inputs": [ - { - "type": "tuple", - "name": "c", - "components": [ - { - "type": "address", - "name": "implementation", - "internalType": "address" - }, - { - "type": "address", - "name": "owner", - "internalType": "address" - }, - { - "type": "bytes32", - "name": "salt", - "internalType": "bytes32" - }, - { - "type": "bytes", - "name": "initData", - "internalType": "bytes" - }, - { - "type": "address[]", - "name": "contracts", - "internalType": "address[]" - }, - { - "type": "bytes[]", - "name": "data", - "internalType": "bytes[]" - }, - { - "type": "uint256", - "name": "nonce", - "internalType": "uint256" - } - ], - "internalType": "struct ISoundCreatorV2.SoundCreation" - } - ], - "outputs": [ - { - "type": "bytes32", - "name": "", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "create", - "inputs": [ - { - "type": "tuple", - "name": "c", - "components": [ - { - "type": "address", - "name": "implementation", - "internalType": "address" - }, - { - "type": "address", - "name": "owner", - "internalType": "address" - }, - { - "type": "bytes32", - "name": "salt", - "internalType": "bytes32" - }, - { - "type": "bytes", - "name": "initData", - "internalType": "bytes" - }, - { - "type": "address[]", - "name": "contracts", - "internalType": "address[]" - }, - { - "type": "bytes[]", - "name": "data", - "internalType": "bytes[]" - }, - { - "type": "uint256", - "name": "nonce", - "internalType": "uint256" - } - ], - "internalType": "struct ISoundCreatorV2.SoundCreation" - } - ], - "outputs": [ - { - "type": "address", - "name": "edition", - "internalType": "address" - }, - { - "type": "bytes[]", - "name": "results", - "internalType": "bytes[]" - } - ], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "createWithSignature", - "inputs": [ - { - "type": "tuple", - "name": "creation", - "components": [ - { - "type": "address", - "name": "implementation", - "internalType": "address" - }, - { - "type": "address", - "name": "owner", - "internalType": "address" - }, - { - "type": "bytes32", - "name": "salt", - "internalType": "bytes32" - }, - { - "type": "bytes", - "name": "initData", - "internalType": "bytes" - }, - { - "type": "address[]", - "name": "contracts", - "internalType": "address[]" - }, - { - "type": "bytes[]", - "name": "data", - "internalType": "bytes[]" - }, - { - "type": "uint256", - "name": "nonce", - "internalType": "uint256" - } - ], - "internalType": "struct ISoundCreatorV2.SoundCreation" - }, - { - "type": "bytes", - "name": "signature", - "internalType": "bytes" - } - ], - "outputs": [ - { - "type": "address", - "name": "soundEdition", - "internalType": "address" - }, - { - "type": "bytes[]", - "name": "results", - "internalType": "bytes[]" - } - ], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "createWithSignatureAndMint", - "inputs": [ - { - "type": "tuple", - "name": "c", - "components": [ - { - "type": "address", - "name": "implementation", - "internalType": "address" - }, - { - "type": "address", - "name": "owner", - "internalType": "address" - }, - { - "type": "bytes32", - "name": "salt", - "internalType": "bytes32" - }, - { - "type": "bytes", - "name": "initData", - "internalType": "bytes" - }, - { - "type": "address[]", - "name": "contracts", - "internalType": "address[]" - }, - { - "type": "bytes[]", - "name": "data", - "internalType": "bytes[]" - }, - { - "type": "uint256", - "name": "nonce", - "internalType": "uint256" - } - ], - "internalType": "struct ISoundCreatorV2.SoundCreation" - }, - { - "type": "bytes", - "name": "signature", - "internalType": "bytes" - }, - { - "type": "address", - "name": "minter", - "internalType": "address" - }, - { - "type": "bytes", - "name": "mintData", - "internalType": "bytes" - }, - { - "type": "address", - "name": "refundTo", - "internalType": "address" - } - ], - "outputs": [ - { - "type": "address", - "name": "edition", - "internalType": "address" - }, - { - "type": "bytes[]", - "name": "results", - "internalType": "bytes[]" - } - ], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "domainSeparator", - "inputs": [], - "outputs": [ - { - "type": "bytes32", - "name": "separator", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "eip712Domain", - "inputs": [], - "outputs": [ - { - "type": "bytes1", - "name": "fields", - "internalType": "bytes1" - }, - { - "type": "string", - "name": "name", - "internalType": "string" - }, - { - "type": "string", - "name": "version", - "internalType": "string" - }, - { - "type": "uint256", - "name": "chainId", - "internalType": "uint256" - }, - { - "type": "address", - "name": "verifyingContract", - "internalType": "address" - }, - { - "type": "bytes32", - "name": "salt", - "internalType": "bytes32" - }, - { - "type": "uint256[]", - "name": "extensions", - "internalType": "uint256[]" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "invalidateNonces", - "inputs": [ - { - "type": "uint256[]", - "name": "nonces", - "internalType": "uint256[]" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "isValidSignature", - "inputs": [ - { - "type": "tuple", - "name": "c", - "components": [ - { - "type": "address", - "name": "implementation", - "internalType": "address" - }, - { - "type": "address", - "name": "owner", - "internalType": "address" - }, - { - "type": "bytes32", - "name": "salt", - "internalType": "bytes32" - }, - { - "type": "bytes", - "name": "initData", - "internalType": "bytes" - }, - { - "type": "address[]", - "name": "contracts", - "internalType": "address[]" - }, - { - "type": "bytes[]", - "name": "data", - "internalType": "bytes[]" - }, - { - "type": "uint256", - "name": "nonce", - "internalType": "uint256" - } - ], - "internalType": "struct ISoundCreatorV2.SoundCreation" - }, - { - "type": "bytes", - "name": "signature", - "internalType": "bytes" - } - ], - "outputs": [ - { - "type": "bool", - "name": "", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "mint", - "inputs": [ - { - "type": "address", - "name": "minter", - "internalType": "address" - }, - { - "type": "bytes", - "name": "mintData", - "internalType": "bytes" - }, - { - "type": "address", - "name": "refundTo", - "internalType": "address" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "name", - "inputs": [], - "outputs": [ - { - "type": "string", - "name": "name_", - "internalType": "string" - } - ], - "stateMutability": "pure" - }, - { - "type": "function", - "name": "noncesInvalidated", - "inputs": [ - { - "type": "address", - "name": "signer", - "internalType": "address" - }, - { - "type": "uint256[]", - "name": "nonces", - "internalType": "uint256[]" - } - ], - "outputs": [ - { - "type": "bool[]", - "name": "result", - "internalType": "bool[]" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "soundEditionAddress", - "inputs": [ - { - "type": "address", - "name": "implementation", - "internalType": "address" - }, - { - "type": "address", - "name": "owner", - "internalType": "address" - }, - { - "type": "bytes32", - "name": "salt", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "type": "address", - "name": "addr", - "internalType": "address" - }, - { - "type": "bool", - "name": "exists", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "version", - "inputs": [], - "outputs": [ - { - "type": "string", - "name": "version_", - "internalType": "string" - } - ], - "stateMutability": "pure" - }, - { - "type": "receive", - "name": "", - "inputs": [], - "outputs": [], - "stateMutability": "payable" - } -] diff --git a/lib/airstack/getFarcasterConnectedAccount.tsx b/lib/airstack/getFarcasterConnectedAccount.tsx deleted file mode 100644 index 814ac9c5..00000000 --- a/lib/airstack/getFarcasterConnectedAccount.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { AIRSTACK_API_URL } from '../consts'; - -export const getFarcasterConnectedAccount = async (fid: string) => { - const query = ` query MyQuery($fid: String!){ - Socials( - input: {filter: {userId: {_eq: $fid}, dappName: {_eq: farcaster}}, blockchain: ethereum} - ) { - Social { - dappName - userId - userAddress - connectedAddresses { - address - blockchain - } - } - } - }`; - const variables = { - fid, - }; - const res = await fetch(AIRSTACK_API_URL, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - Authorization: `${process.env.NEXT_PUBLIC_AIRSTACK_API_KEY}`, - }, - body: JSON.stringify({ query, variables }), - }); - const data = await res.json(); - return data; -}; diff --git a/lib/airstack/getProfileInfo.tsx b/lib/airstack/getProfileInfo.tsx deleted file mode 100644 index 4994fe16..00000000 --- a/lib/airstack/getProfileInfo.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import { AIRSTACK_API_URL } from '../consts'; - -export const getProfileInfo = async (buyers: string[]) => { - const query = ` query MyQuery($buyers: [Address!]!, $identities:[Identity!]!){ - Socials( - input: {filter: {identity: {_in: $identities}}, blockchain: ethereum, limit:200} - ) { - Social { - userAssociatedAddresses - dappName - profileName - coverImageURI - fnames - profileImage - profileUrl - followerCount - } - } - Domains( - input: {filter: {resolvedAddress: {_in: $buyers},isPrimary: {_eq: true}}, blockchain: ethereum, limit:200} - ) { - Domain { - resolvedAddress - name - isPrimary - avatar - } - } - }`; - const variables = { - buyers, - identities: buyers, - }; - const res = await fetch(AIRSTACK_API_URL, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - Authorization: `${process.env.NEXT_PUBLIC_AIRSTACK_API_KEY}`, - }, - body: JSON.stringify({ query, variables }), - }); - const data = await res.json(); - return data; -}; diff --git a/lib/callPostApi.tsx b/lib/callPostApi.tsx deleted file mode 100644 index cd8ef852..00000000 --- a/lib/callPostApi.tsx +++ /dev/null @@ -1,18 +0,0 @@ - -const callPostApi = (signer_uuid: string, url: string) => { - const body = { - signer_uuid, - url, - }; - const stringifiedBody = JSON.stringify(body); - - return fetch('/api/postMusicEmbed', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: stringifiedBody, - }); -}; - -export default callPostApi; diff --git a/lib/consts.tsx b/lib/consts.tsx index b1e45348..dc1d8c5f 100644 --- a/lib/consts.tsx +++ b/lib/consts.tsx @@ -1,120 +1,44 @@ -import { FeedType } from '@/types/Feed'; -import { FrameMetadataType } from '@coinbase/onchainkit'; -import { zeroAddress } from 'viem'; +import { Address } from 'viem'; +import { zora } from 'viem/chains'; -export const TITLE = 'Sonata'; -export const DESCRIPTION = 'Discover music on Farcaster'; -export const FARCASTER_ID_REGISTRY = '0x00000000fc6c5f01fc30151999387bb99a9f489b'; -export const VERCEL_URL = process.env.NEXT_PUBLIC_FRAME_URL || 'http://localhost:3000'; -export const DEFAULT_FRAME = { - image: { - src: `https://framerusercontent.com/images/UjSwC7tz1DFYsxiMeKvEI6K7eo.png`, - }, - postUrl: `${VERCEL_URL}/api/frame`, -} as FrameMetadataType; -export const FRAME_INPUT_PLACEHOLDER = '0x... or .eth'; +export const CHAIN = zora; +export const CHAIN_ID = zora.id; +export const ZORA_FEE_RECIPIENTS = [ + '0xdfc04f55ad3bd652a63f1a26e68d24cdf16a663d', + '0xf9fcd1fa7a5a3f2cf6fe3a33e1262b74c04feeda', + '0xeb7223fe47fd4132aa1f534a5db9153370d34b1a', + '0xecfc2ee50409e459c554a2b0376f882ce916d853', + '0x7bf90111ad7c22bec9e9dff8a01a44713cc1b1b6', +] as Address[]; +export const DEMO_ADDRESS = '0x33912a0d6bEFf5Fb8e5B70688CE858D5e7E8104E' as Address; -export const SOUND_FACTORY = '0x0000000000aec84F5BFc2af15EAfb943bf4e3522'; -export const REFERRAL = process.env.NEXT_PUBLIC_REFERRAL || zeroAddress; -export const AIRSTACK_API_URL = 'https://api.airstack.xyz/graphql'; -export const tabs = [ - { label: 'Following', href: '/following', value: FeedType.Following }, - { label: 'Trending', href: '/', value: FeedType.Trending }, - { label: 'Recent', href: '/recent', value: FeedType.Recent }, - { label: 'Posts', href: '#', value: FeedType.Posts }, -]; +// hypersub +export const HYPERSUB_SUBSCRIPTION_ADDRESS = '0xb5a4ca234730dfb411ec16513ed2cff9b16a85d9'; -export const CHANNELS = [ - { - label: '/sonata', - value: 'sonata', - icon: 'https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4e85acaa-4f1d-444b-1e35-dd06d43d0800/rectcrop3', - }, - { - label: '/music', - value: 'music', - icon: 'https://i.imgur.com/Mjyb3Y8.png', - parentUrl: 'chain://eip155:7777777/erc721:0xe96c21b136a477a6a97332694f0caae9fbb05634', - }, - { label: '/louder', value: 'louder', icon: 'https://i.imgur.com/r4GIRLL.png' }, - { label: '/rock', value: 'rock', icon: 'https://i.imgur.com/Ffj1Opg.png' }, - { label: '/techno', value: 'techno', icon: 'https://i.imgur.com/omLkrpT.png' }, - { label: '/albumoftheday', value: 'albumoftheday', icon: 'https://i.imgur.com/RZQbasU.gif' }, - { label: '/soundscapes', value: 'soundscapes', icon: 'https://i.imgur.com/TUtJ82Q.jpg' }, - { label: '/djs', value: 'djs', icon: 'https://i.imgur.com/EQ7kMoE.jpg' }, - { label: '/soundxyz', value: 'soundxyz', icon: 'https://i.imgur.com/BbvrNR2.jpg' }, - { label: '/bangers', value: 'bangers', icon: 'https://i.imgur.com/URBvewb.png' }, - { label: '/spotify', value: 'spotify', icon: 'https://i.imgur.com/3Z8YjMT.jpg' }, - { label: '/coop-recs', value: 'coop-recs', icon: 'https://i.imgur.com/eecb7AP.gif' }, - { label: '/housemusic', value: 'housemusic', icon: 'https://i.imgur.com/rt1dcOI.jpg' }, - { - label: '/classical', - value: 'classical', - icon: 'https://i.imgur.com/7ng6bHS.png', - parentUrl: 'https://en.wikipedia.org/wiki/Johann_Sebastian_Bach', - }, - { - label: '/rap', - value: 'rap', - icon: 'https://i.imgur.com/2wrkiVY.png', - }, - { - label: '/latinmusic', - value: 'latinmusic', - icon: 'https://i.imgur.com/SJPfK0B.jpg', - }, - { - label: '/electronic', - value: 'electronic', - icon: 'https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/802dff8d-78d2-47cb-9a78-c4fc3accac00/rectcrop3', - parentUrl: 'chain://eip155:1/erc721:0x05acde54e82e7e38ec12c5b5b4b1fd1c8d32658d', - }, - { - label: '/musicaW3', - value: 'musicaw3', - icon: 'https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/691b5ce9-7811-4308-5fab-d647adfe1200/original', - parentUrl: 'https://warpcast.com/~/channel/musicaw3', - }, - { - label: '/japanese-music', - value: 'japanese-music', - icon: 'https://i.imgur.com/kF2MbEf.jpg', - parentUrl: 'https://warpcast.com/~/channel/japanese-music', - }, - { - label: '/speedymusic', - value: 'speedymusic', - icon: 'https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/736727ec-69cd-450e-0bf1-d01ab51c7600/original', - parentUrl: 'https://warpcast.com/~/channel/speedymusic', - }, - { - label: '/videogamemusic', - value: 'videogamemusic', - icon: 'https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ff7ab8e-3679-4f40-f190-9cdd2541eb00/original', - parentUrl: 'https://warpcast.com/~/channel/videogamemusic', - }, -]; +// viem +export const INITIAL_BLOCK_RANGE = 1_000_000n; +export const MAX_RETRIES = 5; +export const MIN_BLOCK_RANGE = 1000n; +export const MAX_RECORDS_THRESHOLD = 5000; -export const fetchPostsLimit = 20; +// stack event names +export const EVENT_UPDATED_PERMISSIONS = 'UpdatedPermissions'; +export const EVENT_ZORA_TOKENS = 'zora+tokens'; +export const EVENT_ZORA_COLLECTIONS = 'zora+collections'; +export const EVENT_ZORA_REWARDS = 'zora+rewards'; +export const EVENT_ZORA_SCORE = 'zora+score'; +export const EVENT_ZORA_REWARDS_CREATOR = 'zora+rewards+creator'; +export const EVENT_ZORA_REWARDS_MINT_REFERRAL = 'zora+rewards+mint'; +export const EVENT_ZORA_REWARDS_CREATE_REFERRAL = 'zora+rewards+create'; +export const EVENT_ZORA_REWARDS_FIRST_MINTER = 'zora+rewards+first'; +export const EVENT_ZORA_PROFILE = 'zora+profile'; -export const CONTENT_PLATFORMS = [ - { url: 'spotify.com/track', title: 'spotify' }, - { url: 'spotify.com/intl-es/track', title: 'spotify' }, - { url: 'soundcloud.com', title: 'soundcloud' }, - { url: 'sound.xyz', title: 'soundxyz' }, - { url: 'youtube.com/watch', title: 'youtube' }, - { url: 'youtu.be', title: 'youtube' }, - { url: 'zora.co/collect', title: 'zora' }, -] as const; +// zora score +export const FOLLOWERS_PERFECT = 55555; +export const MAX_CREATE_SCORE = 111; +export const SCORE_FACTOR = 0.5; -export const ZORA_TO_VIEM = { - arb: 'arbitrum', - base: 'base', - blast: 'blast', - eth: 'mainnet', - oeth: 'optimism', - pgn: 'pgn', - zora: 'zora', -} as const; - -export type ZoraChains = keyof typeof ZORA_TO_VIEM; +// stack point systems +export const TOKEN_INDEXER_POINT_ID = 3500; +export const REWARDS_DEPOSIT_POINT_SYSTEM_ID = 3078; +export const SETTINGS_STACK_ID = 3067; diff --git a/lib/degen/executeDegenTip.tsx b/lib/degen/executeDegenTip.tsx deleted file mode 100644 index b58ff9d4..00000000 --- a/lib/degen/executeDegenTip.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { TipResponse } from '@/types/TipResponse'; -import { isNil } from 'lodash'; - -const executeDegenTip = async ( - walletAddress: string, - signer_uuid: string | undefined, - amount: bigint, - postHash: string, -): Promise<TipResponse> => { - try { - if (isNil(signer_uuid)) throw Error('Invalid Signer'); - const res = await fetch('/api/degenTip', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({ - signer_uuid, - tipAmount: amount, - postHash, - walletAddress, - }), - }); - const data = (await res.json()) as TipResponse; - return data; - } catch (error) { - console.error(error); - return { message: 'Tip Failed', usedTip: 0, tipRemaining: 0, totalTipOnPost: 0 }; - } -}; - -export default executeDegenTip; diff --git a/lib/degen/getDegenTipsData.ts b/lib/degen/getDegenTipsData.ts deleted file mode 100644 index 2136a573..00000000 --- a/lib/degen/getDegenTipsData.ts +++ /dev/null @@ -1,26 +0,0 @@ -export default async function getDegenTipsData(address: string) { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - } as any; - - try { - const queryParams = new URLSearchParams({ - address, - }); - - const response = await fetch( - `https://www.degen.tips/api/airdrop2/tip-allowance?${queryParams}`, - options, - ); - - const data = await response.json(); - if (data.length > 0) { - return data[0]; - } - return undefined; - } catch (error) { - console.error(error); - return undefined; - } -} diff --git a/lib/feed/getFeed.ts b/lib/feed/getFeed.ts deleted file mode 100644 index ce16a054..00000000 --- a/lib/feed/getFeed.ts +++ /dev/null @@ -1,28 +0,0 @@ -import fetchPosts from '@/lib/supabase/fetchPosts'; -import { supabaseClient } from '@/lib/supabase/client'; -import findValidEmbed from '@/lib/findValidEmbed'; -import { FeedType, FeedFilter } from '@/types/Feed'; - -export async function getFeed( - channelId?: string | null, - feedType: FeedType = FeedType.Trending, - viewerFid?: number, -) { - const filter: FeedFilter = {}; - if (channelId) { - filter.channel = channelId; - } - - const { posts } = await fetchPosts(supabaseClient, filter, feedType, 0, viewerFid, 0, false); - - const filteredPosts = posts.filter((post: any) => { - if (channelId && !(post.channelId && post.channelId.includes(channelId))) { - return false; - } - - const validEmbed = findValidEmbed(post); - return !!validEmbed; - }); - - return filteredPosts; -} diff --git a/lib/fetchLeaderboard.tsx b/lib/fetchLeaderboard.tsx new file mode 100644 index 00000000..173f1da0 --- /dev/null +++ b/lib/fetchLeaderboard.tsx @@ -0,0 +1,22 @@ +const fetchLeaderboard = async () => { + try { + const response = await fetch('/api/stack/leaderboard', { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + }, + }); + + if (!response.ok) { + throw new Error('Failed to fetch leaderboard'); + } + + const result = await response.json(); + return result; + } catch (error) { + console.error('Error fetching leaderboard:', error); + throw error; + } +}; + +export default fetchLeaderboard; diff --git a/lib/fetchMetadata.tsx b/lib/fetchMetadata.tsx deleted file mode 100644 index 38783c3e..00000000 --- a/lib/fetchMetadata.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import { SupabasePost } from '@/types/SupabasePost'; -import getSpotifyTrackMetadata from './spotify/getSpotifyTrackMetadata'; -import getSoundcloudTrackMetadata from './soundcloud/getSoundcloudTrackMetadata'; -import getSoundTrackMetadata from './sound/getSoundTrackMetadata'; -import getYoutubeTrackMetadata from './youtube/getYoutubeTrackMetadata'; -import getZoraTrackMetadata from './zora/getZoraTrackMetadata'; - -export default async function fetchMetadata(url: string, cast: SupabasePost) { - if (url?.includes('spotify')) return await getSpotifyTrackMetadata(url, cast); - if (url.includes('soundcloud')) return await getSoundcloudTrackMetadata(url, cast); - if (url.includes('sound.xyz')) return await getSoundTrackMetadata(url, cast); - if (url.includes('youtube.com')) return await getYoutubeTrackMetadata(url, cast); - if (url.includes('youtu.be')) return await getYoutubeTrackMetadata(url, cast); - if (url.includes('ipfs://')) return await getZoraTrackMetadata(url, cast); -} diff --git a/lib/filterCastsByChannels.ts b/lib/filterCastsByChannels.ts deleted file mode 100644 index 95991f4f..00000000 --- a/lib/filterCastsByChannels.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { CHANNELS } from './consts'; -import getChannelIdFromCast from './neynar/getChannelIdFromCast'; - -const filterCastsByChannels = (casts: Cast[]) => - casts.filter((entry) => { - const channelId = getChannelIdFromCast(entry); - return channelId && CHANNELS.find((channel) => channel.value === channelId); - }); - -export default filterCastsByChannels; diff --git a/lib/findValidEmbed.ts b/lib/findValidEmbed.ts deleted file mode 100644 index 3e9c3249..00000000 --- a/lib/findValidEmbed.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { SupabasePost } from '@/types/SupabasePost'; -import { FeedFilter } from '@/types/Feed'; -import { EmbedUrl } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import isValidUrl from './isValidUrl'; - -export default function findValidEmbed(cast: SupabasePost, filter: FeedFilter = {}) { - if (!cast || !cast.embeds) return null; - - const embeds = cast.embeds - .map((embed) => { - try { - return JSON.parse(embed); - } catch (error) { - console.error('Invalid JSON in embed:', embed, error); - return null; - } - }) - .filter((embed) => embed !== null); - - const validEmbed = embeds.find((embed) => { - if (!embed || !('url' in embed)) return false; - const url = embed.url; - if (filter?.platform && !url.includes(filter.platform)) return false; - - return isValidUrl(url) || url?.includes('ipfs://'); - }); - - return validEmbed as EmbedUrl; -} diff --git a/lib/formatBigIntValues.tsx b/lib/formatBigIntValues.tsx new file mode 100644 index 00000000..6bd3bda9 --- /dev/null +++ b/lib/formatBigIntValues.tsx @@ -0,0 +1,22 @@ +type ConvertBigInt<T> = T extends bigint + ? string + : T extends Array<infer U> + ? Array<ConvertBigInt<U>> + : T extends object + ? { [K in keyof T]: ConvertBigInt<T[K]> } + : T; + +function formatBigIntValues<T>(input: T): ConvertBigInt<T> { + if (typeof input === 'bigint') { + return input.toString() as ConvertBigInt<T>; + } else if (Array.isArray(input)) { + return input.map(formatBigIntValues) as ConvertBigInt<T>; + } else if (typeof input === 'object' && input !== null) { + return Object.fromEntries( + Object.entries(input).map(([key, value]) => [key, formatBigIntValues(value)]), + ) as ConvertBigInt<T>; + } + return input as ConvertBigInt<T>; +} + +export default formatBigIntValues; diff --git a/lib/formatNumber.ts b/lib/formatNumber.ts deleted file mode 100644 index 619247b0..00000000 --- a/lib/formatNumber.ts +++ /dev/null @@ -1,9 +0,0 @@ -export default function formatNumber(num: number | string) { - const formatter = new Intl.NumberFormat('en-US', { - notation: 'compact', - compactDisplay: 'short', - maximumFractionDigits: 1 - }); - - return formatter.format(typeof num == 'string' ? Number(num) : num); -} diff --git a/lib/formatPoints.tsx b/lib/formatPoints.tsx deleted file mode 100644 index d0802b60..00000000 --- a/lib/formatPoints.tsx +++ /dev/null @@ -1,3 +0,0 @@ -export function formatPoints(points: any) { - return `${(points / 1000).toFixed(1)}K`; -} diff --git a/lib/getButtons.tsx b/lib/getButtons.tsx deleted file mode 100644 index bbde85be..00000000 --- a/lib/getButtons.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import { VERCEL_URL } from './consts'; - -const getButtons = (collectorId: string) => { - return [ - { - label: 'see results', - }, - { - action: 'link', - label: 'share results', - target: `https://warpcast.com/~/compose?text=${VERCEL_URL}/collector/${collectorId}`, - }, - ] as any; -}; - -export default getButtons; diff --git a/lib/getChainId.tsx b/lib/getChainId.tsx new file mode 100644 index 00000000..71317896 --- /dev/null +++ b/lib/getChainId.tsx @@ -0,0 +1,18 @@ +import { base, baseSepolia, zora, zoraSepolia } from 'viem/chains'; + +const getChainId = (chain: string) => { + switch (chain) { + case 'base': + return base.id; + case 'baseSepolia': + return baseSepolia.id; + case 'zora': + return zora.id; + case 'zoraSepolia': + return zoraSepolia.id; + default: + return base.id; + } +}; + +export default getChainId; diff --git a/lib/getChannelData.tsx b/lib/getChannelData.tsx deleted file mode 100644 index b627d974..00000000 --- a/lib/getChannelData.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { CHANNELS } from './consts'; - -export function getChannelData(channelId: any) { - return CHANNELS.find((channel) => channel.value === channelId); -} diff --git a/lib/getConnectedZoraProfile.tsx b/lib/getConnectedZoraProfile.tsx new file mode 100644 index 00000000..0874d3cb --- /dev/null +++ b/lib/getConnectedZoraProfile.tsx @@ -0,0 +1,15 @@ +import { Address } from 'viem'; +import getIdentity from './stack/getIdentity'; +import getZoraProfile from './zora/getZoraProfile'; + +const getConnectedZoraProfile = async (zoraAddress: Address) => { + const identity = await getIdentity(zoraAddress); + if (!identity?.tagData) return null; + + const connectedAddress = new URL(identity?.tagData?.externalUrl).pathname.split('@')[1]; + const connectedZoraProfile = await getZoraProfile(connectedAddress); + + return connectedZoraProfile; +}; + +export default getConnectedZoraProfile; diff --git a/lib/getDataForCastOg.tsx b/lib/getDataForCastOg.tsx deleted file mode 100644 index 2ab88b41..00000000 --- a/lib/getDataForCastOg.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { getFullHash } from './getFullHash'; -import getUserByUsername from './neynar/getNeynarUserByUsername'; -import { getChannelData } from './getChannelData'; -import { getEmbedAndMetadata } from './getEmbedAndMetadata'; -import { replaceSpecialCharacters } from './replaceSpecialCharacters'; -import { formatPoints } from './formatPoints'; - -export async function getDataForCastOg(username: string, hash: any) { - const fullHash: any = await getFullHash(username, hash); - - const encodedUsername = replaceSpecialCharacters(username); - - const userProfile = await getUserByUsername(username); - const profilePfp = userProfile?.pfp?.url; - - const { cast, metadata } = await getEmbedAndMetadata(fullHash); - const channelData = getChannelData(cast?.channelId); - - const channelLabel = channelData?.label || '/sonata'; - const channelIcon = channelData?.icon || 'https://i.imgur.com/Xa4LjYA.jpeg'; - - const points = formatPoints(cast?.points); - - const soraSemiBold = fetch(new URL('/public/Sora-SemiBold.ttf', import.meta.url)).then((res) => - res.arrayBuffer(), - ); - - const soraNormal = fetch(new URL('/public/Sora-Regular.ttf', import.meta.url)).then((res) => - res.arrayBuffer(), - ); - - return { - encodedUsername, - profilePfp, - metadata, - channelLabel, - channelIcon, - points, - soraSemiBold, - soraNormal, - }; -} diff --git a/lib/getEmbedAndMetadata.tsx b/lib/getEmbedAndMetadata.tsx deleted file mode 100644 index 6f26e6d5..00000000 --- a/lib/getEmbedAndMetadata.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import fetchMetadata from './fetchMetadata'; -import findValidEmbed from './findValidEmbed'; -import { supabaseClient } from './supabase/client'; - -export async function getEmbedAndMetadata(fullHash: string) { - const { data: cast } = await supabaseClient - .from('posts') - .select('*') - .eq('post_hash', fullHash) - .single(); - - const embed = findValidEmbed(cast); - const url: any = embed?.url; - const metadata = await fetchMetadata(url, cast); - return { cast, metadata }; -} diff --git a/lib/getEndpointsList.tsx b/lib/getEndpointsList.tsx index 9934d64e..d3a7910f 100644 --- a/lib/getEndpointsList.tsx +++ b/lib/getEndpointsList.tsx @@ -1,10 +1,42 @@ +import { + DEMO_ADDRESS, + EVENT_ZORA_PROFILE, + EVENT_ZORA_REWARDS, + EVENT_ZORA_SCORE, + EVENT_ZORA_TOKENS, +} from './consts'; + export const endpoints = [ - { apiType: 'GET', route: '/api/feed' }, - { apiType: 'GET', route: '/api/feed?feedType=Recent' }, - { apiType: 'GET', route: '/api/feed?feedType=Trending' }, - { apiType: 'GET', route: '/api/feed?feedType=Following&viewerFid=<Farcaster ID>' }, - { apiType: 'GET', route: '/api/feed?viewerFid=<Farcaster ID>' }, - { apiType: 'GET', route: '/api/feed?channelId=<Farcaster Channel ID>' }, - { apiType: 'GET', route: '/api/channel/stats' }, - { apiType: 'GET', route: '/api/tips' }, + { + apiType: 'GET', + route: '/api/profile?address={ADDRESS}', + stack: EVENT_ZORA_PROFILE, + demo: `/api/profile?address=${DEMO_ADDRESS}`, + }, + { + apiType: 'GET', + route: '/api/zora/tokens?creatorAddress={ADDRESS}', + stack: EVENT_ZORA_TOKENS, + demo: `/api/zora/tokens?creatorAddress=${DEMO_ADDRESS}`, + }, + { + apiType: 'GET', + route: '/api/zora/collections?creator={ADDRESS}', + stack: 'zora+collections', + demo: `/api/zora/collections?creator=${DEMO_ADDRESS}`, + }, + { + apiType: 'GET', + route: '/api/zora/rewards?address={ADDRESS}', + stack: EVENT_ZORA_REWARDS, + demo: `/api/zora/rewards?address=${DEMO_ADDRESS}`, + }, + { apiType: 'GET', route: '/api/zora/feeRecipients', stack: 'zora+feerecipients' }, + { apiType: 'GET', route: '/api/stack/leaderboard', stack: 'stack+leaderboard' }, + { + apiType: 'GET', + route: '/api/zora/score?address={ADDRESS}', + stack: EVENT_ZORA_SCORE, + demo: `/api/zora/score?address=${DEMO_ADDRESS}`, + }, ]; diff --git a/lib/getEndpointsWithScores.tsx b/lib/getEndpointsWithScores.tsx new file mode 100644 index 00000000..7ab9059d --- /dev/null +++ b/lib/getEndpointsWithScores.tsx @@ -0,0 +1,20 @@ +import fetchLeaderboard from './fetchLeaderboard'; +import { endpoints } from './getEndpointsList'; + +const getEndpointsWithScores = async () => { + const response = await fetchLeaderboard(); + const { data } = response; + const stackToScoreMap = data.leaderboard.reduce((acc: any, entry: any) => { + const key = entry?.walletDetails?.linked_accounts?.[0]?.address?.split?.('@')?.[0]; + const value = entry.points; + acc[key] = value; + return acc; + }, {}); + const endpointsWithScores = endpoints.map((endpoint) => ({ + ...endpoint, + score: stackToScoreMap[endpoint.stack] || 0, + })); + return endpointsWithScores; +}; + +export default getEndpointsWithScores; diff --git a/lib/getFormattedTips.tsx b/lib/getFormattedTips.tsx deleted file mode 100644 index 01b6e8e8..00000000 --- a/lib/getFormattedTips.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import formatNumber from './formatNumber'; -import getUsers from './sonata/getUsers'; - -const getFormattedTips = async (rawTips: any[]) => { - const uniqueFids = new Set(rawTips.flatMap(tip => [tip.sender, tip.receiver])); - const users:any[] = await getUsers(Array.from(uniqueFids)); - - return rawTips.map((tip: any) => { - const senderUser = users.find(user => user.fid == tip.sender); - const receiverUser = users.find(user => user.fid == tip.receiver); - return { - sender: senderUser.username, - receiver: receiverUser.username, - amount: formatNumber(tip.amount), - imgUrl: senderUser.pfp_url, - }; - }); -} -export default getFormattedTips; diff --git a/lib/getFullHash.tsx b/lib/getFullHash.tsx deleted file mode 100644 index 414d977c..00000000 --- a/lib/getFullHash.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import getCastHash from "./neynar/getCastHash"; - -export async function getFullHash(username: string, hash: string) { - return await getCastHash(`https://warpcast.com/${username}/${hash}`); -} diff --git a/lib/getHighestRank.tsx b/lib/getHighestRank.tsx deleted file mode 100644 index 2a04bd4a..00000000 --- a/lib/getHighestRank.tsx +++ /dev/null @@ -1,3 +0,0 @@ -export function getHighestRank(validRanks: any[]) { - return validRanks.length === 0 ? 0 : Math.min(...validRanks); -} diff --git a/lib/getIpfsLink.ts b/lib/getIpfsLink.ts deleted file mode 100644 index 6c6badd4..00000000 --- a/lib/getIpfsLink.ts +++ /dev/null @@ -1,8 +0,0 @@ -const thirdwebId = process.env.NEXT_PUBLIC_THIRDWEB_CLIENT_ID!; - -const getIpfsLink = (hash: string) => - hash?.indexOf?.("ipfs://") > -1 - ? hash.replace("ipfs://", `https://${thirdwebId}.ipfscdn.io/ipfs/`) - : hash - -export default getIpfsLink; diff --git a/lib/getLatestTips.ts b/lib/getLatestTips.ts deleted file mode 100644 index 376e01bc..00000000 --- a/lib/getLatestTips.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { NextResponse } from 'next/server'; -import { createClient } from '@supabase/supabase-js'; - -const SUPABASE_URL = process.env.SUPABASE_URL as string; -const SUPABASE_KEY = process.env.SUPABASE_KEY as string; - -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); - -export const getLatestTips = async (): Promise<NextResponse> => { - const { data, error } = await supabase - .from('tips_activity_log') - .select('*') - .order('created_at', { ascending: false }) - .limit(11); - - if (error) { - return NextResponse.json( - { message: 'Error fetching latest tips', error: error.message }, - { status: 500 }, - ); - } - - return NextResponse.json( - { message: 'Latest tips retrieved successfully', tips: data }, - { status: 200 }, - ); -}; diff --git a/lib/getSortedFeed.tsx b/lib/getSortedFeed.tsx deleted file mode 100644 index 425a4c2f..00000000 --- a/lib/getSortedFeed.tsx +++ /dev/null @@ -1,10 +0,0 @@ -const getSortedFeed = (feed: any[], type: string) => { - if (type === 'Trending') { - return feed.sort((a, b) => b.likes - a.likes); - } else if (type === 'Recent') { - return feed.sort((a, b) => new Date(b.created_at).getTime() - new Date(a.created_at).getTime()); - } - return feed; -}; - -export default getSortedFeed; diff --git a/lib/getUserLeadboardRank.tsx b/lib/getUserLeadboardRank.tsx deleted file mode 100644 index a19e7769..00000000 --- a/lib/getUserLeadboardRank.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { stack } from './stack/client'; - -export async function getUserLeaderboardRanks(verifications: any[]) { - const leaderboardRanks = await Promise.all( - verifications.map(async (verification: any) => { - const leaderboardData = await stack.getLeaderboardRank(verification); - if (leaderboardData) { - return leaderboardData.rank; - } - }), - ); - return leaderboardRanks.filter((rank) => rank !== null && rank !== undefined); -} diff --git a/lib/getYoutubeVideoData.ts b/lib/getYoutubeVideoData.ts deleted file mode 100644 index 0568de90..00000000 --- a/lib/getYoutubeVideoData.ts +++ /dev/null @@ -1,13 +0,0 @@ -'use server'; -export default async function getYoutubeVideoData(videoId: string) { - const reqUrl = `https://www.googleapis.com/youtube/v3/videos?part=snippet&id=${videoId}&key=${process.env.YOUTUBE_API_KEY}`; - const response = await fetch(reqUrl); - const data = await response.json(); - - if (data && data.items && data.items.length > 0) { - const video = data.items[0]; - return video; - } else { - console.error('No video data found'); - } -} diff --git a/lib/indexNewRewards.tsx b/lib/indexNewRewards.tsx new file mode 100644 index 00000000..8cf8d29a --- /dev/null +++ b/lib/indexNewRewards.tsx @@ -0,0 +1,20 @@ +import { INITIAL_BLOCK_RANGE } from '@/lib/consts'; +import getBlock from '@/lib/viem/getBlock'; +import getRewardsDepositLogs from '@/lib/zora/getRewardsDepositLogs'; +import logsToStack from './logsToStack'; +import formatBigIntValues from '@/lib/formatBigIntValues'; +import { bulkTrack } from '@/lib/stack/bulkTrack'; +import { Address } from 'viem'; + +const indexNewRewards = async (address: Address) => { + const toBlock = (await getBlock({ blockTag: 'latest' })).number; + const startBlock = toBlock - INITIAL_BLOCK_RANGE; + const logs = await getRewardsDepositLogs(address, startBlock, toBlock); + if (logs?.length > 0) { + const trackingEvents = logsToStack(logs); + await bulkTrack(formatBigIntValues(trackingEvents)); + } + return logs; +}; + +export default indexNewRewards; diff --git a/lib/isValidUrl.tsx b/lib/isValidUrl.tsx deleted file mode 100644 index f7549a92..00000000 --- a/lib/isValidUrl.tsx +++ /dev/null @@ -1,12 +0,0 @@ -const isValidUrl = (url: string) => { - let valid = false; - if (url.match(/^https:\/\/open.spotify.com(?:\/[a-zA-Z-]+)*\/track\/[a-zA-Z0-9]+(\?.*)?$/)) valid = true - else if (url.includes('soundcloud')) valid = true; - else if (url.includes('sound.xyz') && !url.match(/(\/post\/)|(\/playlist\/)/)) valid = true; - else if (url.match(/^https:\/\/www.youtube.com\/watch\?v=(.+)$/)) valid = true; - else if (url.match(/^https:\/\/youtu\.be\/(.+)$/)) valid = true; - - return valid; -}; - -export default isValidUrl; diff --git a/lib/logsToStack.tsx b/lib/logsToStack.tsx new file mode 100644 index 00000000..ae2bc1a1 --- /dev/null +++ b/lib/logsToStack.tsx @@ -0,0 +1,56 @@ +import { + CHAIN_ID, + EVENT_ZORA_REWARDS_CREATE_REFERRAL, + EVENT_ZORA_REWARDS_CREATOR, + EVENT_ZORA_REWARDS_FIRST_MINTER, + EVENT_ZORA_REWARDS_MINT_REFERRAL, + REWARDS_DEPOSIT_POINT_SYSTEM_ID, +} from '@/lib/consts'; +import weiToSparks from '@/lib/zora/toSparks'; + +const logsToStack = (logs: any[]) => { + const trackingEvents = logs.map((log: any) => [ + { + name: EVENT_ZORA_REWARDS_CREATOR, + account: log.args.creator, + pointSystemId: REWARDS_DEPOSIT_POINT_SYSTEM_ID, + points: weiToSparks(log.args.creatorReward), + metadata: { ...log.args, blockNumber: log.blockNumber }, + uniqueId: `${CHAIN_ID}-${log.transactionHash}-${EVENT_ZORA_REWARDS_CREATOR}`, + }, + { + name: EVENT_ZORA_REWARDS_CREATE_REFERRAL, + account: log.args.createReferral, + pointSystemId: REWARDS_DEPOSIT_POINT_SYSTEM_ID, + points: weiToSparks(log.args.createReferralReward), + metadata: { ...log.args, blockNumber: log.blockNumber }, + uniqueId: `${CHAIN_ID}-${log.transactionHash}-${EVENT_ZORA_REWARDS_CREATE_REFERRAL}`, + }, + { + name: EVENT_ZORA_REWARDS_MINT_REFERRAL, + account: log.args.mintReferral, + pointSystemId: REWARDS_DEPOSIT_POINT_SYSTEM_ID, + points: weiToSparks(log.args.mintReferralReward), + metadata: { ...log.args, blockNumber: log.blockNumber }, + uniqueId: `${CHAIN_ID}-${log.transactionHash}-${EVENT_ZORA_REWARDS_MINT_REFERRAL}`, + }, + { + name: EVENT_ZORA_REWARDS_FIRST_MINTER, + account: log.args.firstMinter, + pointSystemId: REWARDS_DEPOSIT_POINT_SYSTEM_ID, + points: weiToSparks(log.args.firstMinterReward), + metadata: { ...log.args, blockNumber: log.blockNumber }, + uniqueId: `${CHAIN_ID}-${log.transactionHash}-${EVENT_ZORA_REWARDS_FIRST_MINTER}`, + }, + ]); + + const flatTrackingEvents = trackingEvents.flat(); + flatTrackingEvents.sort((a, b) => { + if (a.metadata.blockNumber > b.metadata.blockNumber) return -1; + if (a.metadata.blockNumber < b.metadata.blockNumber) return 1; + return 0; + }); + return flatTrackingEvents; +}; + +export default logsToStack; diff --git a/lib/mergeArraysUniqueByPostHash.tsx b/lib/mergeArraysUniqueByPostHash.tsx deleted file mode 100644 index e2df2499..00000000 --- a/lib/mergeArraysUniqueByPostHash.tsx +++ /dev/null @@ -1,15 +0,0 @@ -const mergeArraysUniqueByPostHash = (prev: any, posts: any) => { - const map = new Map(); - const addItems = (items: any) => { - for (const item of items) { - if (!map.has(item.post_hash)) { - map.set(item.post_hash, item); - } - } - }; - addItems(prev); - addItems(posts); - return Array.from(map.values()); -}; - -export default mergeArraysUniqueByPostHash; diff --git a/lib/neynar/createPost.tsx b/lib/neynar/createPost.tsx deleted file mode 100644 index fcc14019..00000000 --- a/lib/neynar/createPost.tsx +++ /dev/null @@ -1,20 +0,0 @@ -export default async function createPost(body: any) { - const options = { - method: 'POST', - headers: { - accept: 'application/json', - api_key: process.env.NEYNAR_API_KEY, - 'content-type': 'application/json', - }, - body, - } as any; - - try { - const response = await fetch(`https://api.neynar.com/v2/farcaster/cast?`, options); - const data = await response.json(); - return data; - } catch (error) { - console.error(error); - return { error }; - } -} diff --git a/lib/neynar/createPostReply.tsx b/lib/neynar/createPostReply.tsx deleted file mode 100644 index d36cba1b..00000000 --- a/lib/neynar/createPostReply.tsx +++ /dev/null @@ -1,29 +0,0 @@ -export default async function createPostReply( - signer_uuid: string, - parent_hash: string, - message: string, -) { - const body = JSON.stringify({ - signer_uuid, - text: message, - parent: parent_hash, - }); - const options = { - method: 'POST', - headers: { - accept: 'application/json', - api_key: process.env.NEYNAR_API_KEY, - 'content-type': 'application/json', - }, - body, - } as any; - - try { - const response = await fetch(`https://api.neynar.com/v2/farcaster/cast?`, options); - const data = await response.json(); - return data; - } catch (error) { - console.error(error); - return { error }; - } -} diff --git a/lib/neynar/createReaction.tsx b/lib/neynar/createReaction.tsx deleted file mode 100644 index 01a009ca..00000000 --- a/lib/neynar/createReaction.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import { Address } from 'viem'; - -const createReaction = async (signer: string, target: Address) => { - const options = { - method: 'POST', - headers: { - accept: 'application/json', - 'content-type': 'application/json', - }, - body: JSON.stringify({ - signer_uuid: signer, - reaction_type: 'like', - target: target, - }), - } as any; - - try { - const response = await fetch(`/api/neynar/createReaction`, options); - const data = await response.json(); - return data; - } catch (error) { - console.error(error); - return { error }; - } -}; - -export default createReaction; diff --git a/lib/neynar/getCastHash.tsx b/lib/neynar/getCastHash.tsx deleted file mode 100644 index c407ece1..00000000 --- a/lib/neynar/getCastHash.tsx +++ /dev/null @@ -1,26 +0,0 @@ -'use server'; -const getCastHash = async (url: string) => { - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - } as any; - - try { - const queryParams = new URLSearchParams({ - identifier: url, - type: 'url', - }); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/cast?${queryParams}`, - options, - ); - const data = await response.json(); - return data.cast.hash; - } catch (error) { - console.error(error); - return { error }; - } -}; - -export default getCastHash; diff --git a/lib/neynar/getCastLikesCount.ts b/lib/neynar/getCastLikesCount.ts deleted file mode 100644 index 853d9f72..00000000 --- a/lib/neynar/getCastLikesCount.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { CastResponse } from "@/types/Cast"; - -async function getCastLikesCount(hash: string) { - const queryParams = new URLSearchParams({ - identifier: hash, - type: 'hash', - }); - - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - } as any; - - const castResponse = await fetch( - `https://api.neynar.com/v2/farcaster/cast?${queryParams}`, - options, - ); - const data: CastResponse = await castResponse.json(); - - return data.cast.reactions.likes_count; -} - -export default getCastLikesCount; diff --git a/lib/neynar/getChannelIdFromCast.ts b/lib/neynar/getChannelIdFromCast.ts deleted file mode 100644 index 914cae98..00000000 --- a/lib/neynar/getChannelIdFromCast.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { CHANNELS } from '../consts'; - -export default function getChannelIdFromCast(cast: Cast) { - const parentUrl = cast.parent_url; - const rootParentUrl = (cast as any)?.root_parent_url; - - if (parentUrl) { - const match = /\/channel\/([^/]+)$/.exec(parentUrl); - if (match) return match[1]; - - return CHANNELS.find((val) => val.parentUrl == parentUrl)?.value ?? null; - } - if (rootParentUrl) { - return CHANNELS.find((val) => val.parentUrl == rootParentUrl)?.value ?? null; - } - return null; -} diff --git a/lib/neynar/getFeed.tsx b/lib/neynar/getFeed.tsx deleted file mode 100644 index d87db836..00000000 --- a/lib/neynar/getFeed.tsx +++ /dev/null @@ -1,24 +0,0 @@ -const getFeed = async (embedUrl: string) => { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - next: { - revalidate: 60, - }, - } as any; - - try { - const queryParams = new URLSearchParams({ - embedUrl, - }); - - const response = await fetch(`/api/neynar/getFeed?${queryParams}`, options); - const data = await response.json(); - return data; - } catch (error) { - console.error(error); - return []; - } -}; - -export default getFeed; diff --git a/lib/neynar/getFeedFromTime.tsx b/lib/neynar/getFeedFromTime.tsx deleted file mode 100644 index 72c31e72..00000000 --- a/lib/neynar/getFeedFromTime.tsx +++ /dev/null @@ -1,43 +0,0 @@ -import 'server-only'; - -import { - ErrorRes, - FeedType, - FilterType, - NeynarV2APIClient as NeynarAPIClient, -} from '@neynar/nodejs-sdk/build/neynar-api/v2'; - -const client = new NeynarAPIClient(process.env.NEYNAR_API_KEY!); - -const getFeedFromTime = async (embedUrl: string, date: Date) => { - const entries = []; - let cursor: undefined | string; - let error: ErrorRes | undefined; - - mainLoop: do { - try { - const data = await client.fetchFeed(FeedType.Filter, { - filterType: FilterType.EmbedUrl, - embedUrl, - withRecasts: false, - limit: 100, - cursor, - }); - - for (const entry of data.casts) { - if (new Date(entry.timestamp) > date) entries.push(entry); - else break mainLoop; - } - - cursor = data.next.cursor!; - } catch (err: any) { - error = err; - break; - } - } while (cursor); - - if (error) throw error; - return entries; -}; - -export default getFeedFromTime; diff --git a/lib/neynar/getFollowers.tsx b/lib/neynar/getFollowers.tsx deleted file mode 100644 index f3ae4cd5..00000000 --- a/lib/neynar/getFollowers.tsx +++ /dev/null @@ -1,13 +0,0 @@ -const getFollowers = async (fid: number = 2) => { - const followers = await fetch(`/api/neynar/getFollowers?fid=${fid}`).then((response) => - response.json(), - ); - - if (followers.error) { - return { users: [] }; - } - - return followers; -}; - -export default getFollowers; diff --git a/lib/neynar/getFollowing.tsx b/lib/neynar/getFollowing.tsx deleted file mode 100644 index ea9bb4ae..00000000 --- a/lib/neynar/getFollowing.tsx +++ /dev/null @@ -1,13 +0,0 @@ -const getFollowing = async (fid: number = 2) => { - const following = await fetch(`/api/neynar/getFollowing?fid=${fid}`).then((response) => - response.json(), - ); - - if (following.error) { - return { users: [] }; - } - - return following; -}; - -export default getFollowing; diff --git a/lib/neynar/getNeynarProfile.tsx b/lib/neynar/getNeynarProfile.tsx deleted file mode 100644 index 4939ca28..00000000 --- a/lib/neynar/getNeynarProfile.tsx +++ /dev/null @@ -1,24 +0,0 @@ -const getNeynarProfile = async (username: string) => { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - next: { - revalidate: 60, - }, - } as any; - - try { - const queryParams = new URLSearchParams({ - username, - }); - - const response = await fetch(`/api/neynar/getProfile?${queryParams}`, options); - const data = await response.json(); - return data; - } catch (error) { - console.error(error); - return []; - } -}; - -export default getNeynarProfile; diff --git a/lib/neynar/getNeynarUser.tsx b/lib/neynar/getNeynarUser.tsx deleted file mode 100644 index 69e0deee..00000000 --- a/lib/neynar/getNeynarUser.tsx +++ /dev/null @@ -1,17 +0,0 @@ -export default async function getUser(fid: number) { - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - } as any; - - const queryParams = new URLSearchParams({ - fids: String(fid), - }); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/user/bulk?${queryParams}`, - options, - ); - const { users } = await response.json(); - return users[0]; -} diff --git a/lib/neynar/getNeynarUserByUsername.tsx b/lib/neynar/getNeynarUserByUsername.tsx deleted file mode 100644 index 8e34ef9b..00000000 --- a/lib/neynar/getNeynarUserByUsername.tsx +++ /dev/null @@ -1,17 +0,0 @@ -export default async function getUserByUsername(username: string) { - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - } as any; - - const queryParams = new URLSearchParams({ - username, - }); - - const response = await fetch( - `https://api.neynar.com/v1/farcaster/user-by-username?${queryParams}`, - options, - ); - const { result } = await response.json(); - return result.user; -} diff --git a/lib/neynar/getPlatformFeedFromTime.ts b/lib/neynar/getPlatformFeedFromTime.ts deleted file mode 100644 index 7e5282ba..00000000 --- a/lib/neynar/getPlatformFeedFromTime.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { CONTENT_PLATFORMS } from '../consts'; -import getFeedFromTime from './getFeedFromTime'; - -type Platforms = (typeof CONTENT_PLATFORMS)[number]['title']; - -const getPlatformFeedFromTime = async (lastChecked: Date) => { - return ( - await Promise.all( - CONTENT_PLATFORMS.map((ptfm) => - getFeedFromTime(ptfm.url, lastChecked).then((val) => ({ title: ptfm.title, data: val })), - ), - ) - ).reduce( - (prev, { title, data }) => { - if (prev[title]) prev[title] = prev[title].concat(data); - else prev[title] = data; - - return prev; - }, - {} as Record<Platforms, Cast[]>, - ); -}; - -export default getPlatformFeedFromTime; diff --git a/lib/neynar/getTipAllocationFeedFromTime.tsx b/lib/neynar/getTipAllocationFeedFromTime.tsx deleted file mode 100644 index eff8cffb..00000000 --- a/lib/neynar/getTipAllocationFeedFromTime.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import { isNil } from 'lodash'; - -const getTipAllocationFeedFromTime = async (embedUrl: string, date: Date) => { - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - } as any; - - const entries = []; - let hitEndDate = false; - try { - const queryParams = new URLSearchParams({ - feed_type: 'filter', - filter_type: 'embed_url', - embed_url: embedUrl, - with_recasts: 'false', - limit: '100', - }); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/feed?${queryParams.toString()}`, - options, - ); - let data = await response.json(); - - for (const entry of data.casts) { - if (new Date(entry.timestamp) > date) { - entries.push(entry); - } else { - hitEndDate = true; - break; - } - } - - while (!hitEndDate && !isNil(data.next) && !isNil(data.next.cursor)) { - queryParams.set('cursor', data.next.cursor); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/feed?${queryParams}`, - options, - ); - data = await response.json(); - for (const entry of data.casts) { - console.log( - 'neynar::getFeedFromTime', - embedUrl, - `post timestamp: ${new Date(entry.timestamp)} compared to ${date}`, - ); - if (new Date(entry.timestamp) > date) { - entries.push(entry); - } else { - hitEndDate = true; - break; - } - } - } - - return entries; - } catch (error) { - console.error(error); - return []; - } -}; - -export default getTipAllocationFeedFromTime; diff --git a/lib/neynar/hasUserLiked.ts b/lib/neynar/hasUserLiked.ts deleted file mode 100644 index 472b0d11..00000000 --- a/lib/neynar/hasUserLiked.ts +++ /dev/null @@ -1,42 +0,0 @@ -'use server'; - -import { ReactionsResponse } from "@neynar/nodejs-sdk/build/neynar-api/v2"; - -async function hasUserLikedCast(hash: string, fid: number) { - const options = { - method: 'GET', - headers: { - accept: 'application/json', - api_key: process.env.NEYNAR_API_KEY! - }, - } as any; - - const queryParams = new URLSearchParams({ - hash, - types: 'likes', - limit: '100', - }); - - let cursor: string | undefined; - - do { - const response = await fetch( - `https://api.neynar.com/v2/farcaster/reactions/cast?${queryParams}`, - options, - ); - const data: { - cursor?: string; - } & ReactionsResponse = await response.json(); - - for (const { user } of data.reactions) { - if (user.fid === fid) return true; - } - - cursor = data.cursor; - queryParams.set('cursor', String(cursor)); - } while (cursor); - - return false; -} - -export default hasUserLikedCast; diff --git a/lib/neynar/postDegenTipComment.tsx b/lib/neynar/postDegenTipComment.tsx deleted file mode 100644 index 4af72104..00000000 --- a/lib/neynar/postDegenTipComment.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import createPost from './createPost'; - -export default async function postDegenTipComment( - signer_uuid: string, - degen_amount: number, - post_hash: string, -) { - try { - const body = JSON.stringify({ - signer_uuid, - text: `${degen_amount} $DEGEN`, - parent: post_hash, - }); - const response = await createPost(body); - return response; - } catch (error) { - console.error(error); - return { error }; - } -} diff --git a/lib/neynar/postMusicEmbed.tsx b/lib/neynar/postMusicEmbed.tsx deleted file mode 100644 index 2f838492..00000000 --- a/lib/neynar/postMusicEmbed.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import createPost from './createPost'; - -export default async function postMusicEmbed(signer_uuid: string, url: string) { - try { - const body = JSON.stringify({ - signer_uuid, - embeds: [{ url }], - }); - const response = await createPost(body); - return response; - } catch (error) { - console.error(error); - return { error }; - } -} diff --git a/lib/neynar/verifySigner.tsx b/lib/neynar/verifySigner.tsx deleted file mode 100644 index 37f4763d..00000000 --- a/lib/neynar/verifySigner.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { VerifiedSigner } from '@/types/VerifiedSigner'; - -export default async function verifySignerUUID(signer_uuid: string): Promise<VerifiedSigner> { - const options = { - method: 'GET', - headers: { accept: 'application/json', api_key: process.env.NEYNAR_API_KEY }, - } as any; - - try { - const queryParams = new URLSearchParams({ - signer_uuid, - }); - - const response = await fetch( - `https://api.neynar.com/v2/farcaster/signer?${queryParams}`, - options, - ); - const { status, fid } = await response.json(); - return { status, fid }; - } catch (error) { - console.error(error); - return { status: false, fid: 0 }; - } -} diff --git a/lib/privy/combineAccountsWithStats.ts b/lib/privy/combineAccountsWithStats.ts deleted file mode 100644 index 929f204e..00000000 --- a/lib/privy/combineAccountsWithStats.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { ChannelStats } from "@/types/ChannelStats"; -import { PrivyUser } from "@/types/Privy"; -import extractAddresses from "./extractAddresses"; -import getAllChannels from "./getAllChannels"; -import getPrivyIdentifier from "./getIdentifier"; -import pregenerateChannelWallet from "./pregenerateChannelWallet"; - -type ChannelStatsWithAddresses = (ChannelStats & { addresses: string[] })[]; - -async function combinePrivyAccountWithChannelStats(channelStats: ChannelStats[]) { - let wallets: PrivyUser[] = await getAllChannels(); - console.log('getAllChannels count', wallets.length); - - const channels = wallets.reduce((accumulator, wallet) => { - const index = channelStats.findIndex( - stat => wallet.linked_accounts?.some( - account => account.address == getPrivyIdentifier(stat.channelId) - ) - ); - if (index >= 0) { - accumulator.push({ - ...channelStats[index], - addresses: extractAddresses(wallet.linked_accounts) - }); - channelStats.splice(index, 1); - } - return accumulator; - }, [] as ChannelStatsWithAddresses); - console.log('foundWalletChannels count', channels.length); - - if (channelStats.length == 0) return channels; - - const results = await Promise.all( - channelStats.map(stat => pregenerateChannelWallet(stat.channelId)) - ); - wallets = await Promise.all(results.map(res => res.json())); - console.log('pregenerateChannelWallet count', wallets.length); - - return channels.concat( - wallets.map(wallet => { - const index = channelStats.findIndex( - stat => wallet.linked_accounts?.some( - account => account.address == getPrivyIdentifier(stat.channelId) - ) - ); - - return { - ...(channelStats[index] ?? []), - addresses: extractAddresses(wallet.linked_accounts) - }; - }) - ); -} - -export default combinePrivyAccountWithChannelStats; diff --git a/lib/privy/extractAddress.ts b/lib/privy/extractAddress.ts new file mode 100644 index 00000000..346c4cbc --- /dev/null +++ b/lib/privy/extractAddress.ts @@ -0,0 +1,8 @@ +const extractAddress = (linkedAccounts: any[]) => { + return linkedAccounts.reduce((previous, account) => { + if (account.type === 'wallet') previous.push(account.address); + return previous; + }, [] as string[]); +}; + +export default extractAddress; diff --git a/lib/privy/extractAddresses.ts b/lib/privy/extractAddresses.ts deleted file mode 100644 index 83825a69..00000000 --- a/lib/privy/extractAddresses.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { PrivyLinkedAccount } from "@/types/Privy"; - -const extractAddresses = (linkedAccounts: PrivyLinkedAccount[]) => { - return linkedAccounts.reduce( - (previous, account) => { - if (account.type === 'wallet') previous.push(account.address); - return previous; - }, [] as string[] - ); -}; - -export default extractAddresses; diff --git a/lib/privy/getAllChannels.ts b/lib/privy/getAllChannels.ts deleted file mode 100644 index 5ffdc66f..00000000 --- a/lib/privy/getAllChannels.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { PrivyBatchUserResponse } from "@/types/Privy"; -import privyClient from "./privyClient"; - -async function getAllChannels() { - let cursor = null; - const channels = []; - const query = new URLSearchParams({ limit: '100' }); - - do { - const response = await privyClient('/users?' + query.toString(), { method: 'GET' }); - const json: PrivyBatchUserResponse = await response.json(); - if (!json?.data?.length) break; - - channels.push(...json.data); - - cursor = json.next_cursor; - query.set('cursor', cursor ?? ''); - } while (cursor); - - return channels; -}; - -export default getAllChannels; diff --git a/lib/privy/getAllEndpointWallets.tsx b/lib/privy/getAllEndpointWallets.tsx new file mode 100644 index 00000000..e289ef86 --- /dev/null +++ b/lib/privy/getAllEndpointWallets.tsx @@ -0,0 +1,12 @@ +import { endpoints } from '../getEndpointsList'; +import pregenerateEndpointWallet from './pregenerateEndpointWallet'; + +const getAllEndpointWallets = async () => { + const results = await Promise.all( + endpoints.map((endpoint) => pregenerateEndpointWallet(endpoint.stack)), + ); + const wallets = await Promise.all(results.map((res) => res.json())); + return wallets; +}; + +export default getAllEndpointWallets; diff --git a/lib/privy/getEndpointWallet.ts b/lib/privy/getEndpointWallet.ts new file mode 100644 index 00000000..5bea113b --- /dev/null +++ b/lib/privy/getEndpointWallet.ts @@ -0,0 +1,11 @@ +import extractAddress from './extractAddress'; +import pregenerateEndpointWallet from './pregenerateEndpointWallet'; + +const getEndpointWallet = async (endpoint: string) => { + const response = await pregenerateEndpointWallet(endpoint); + const data = await response.json(); + const wallet = extractAddress(data.linked_accounts); + return wallet[0]; +}; + +export default getEndpointWallet; diff --git a/lib/privy/getIdentifier.ts b/lib/privy/getIdentifier.ts index 3253ec85..3f1db73f 100644 --- a/lib/privy/getIdentifier.ts +++ b/lib/privy/getIdentifier.ts @@ -1,3 +1,3 @@ -const getPrivyIdentifier = (channelId: string) => `${channelId}@sonata.tips`; +const getIdentifier = (endpoint: string) => `${endpoint}@onchainmagic.xyz`; -export default getPrivyIdentifier; +export default getIdentifier; diff --git a/lib/privy/pregenerateChannelWallet.ts b/lib/privy/pregenerateChannelWallet.ts deleted file mode 100644 index 461ce79f..00000000 --- a/lib/privy/pregenerateChannelWallet.ts +++ /dev/null @@ -1,18 +0,0 @@ -import getPrivyIdentifier from "./getIdentifier"; -import privyClient from "./privyClient"; - -function pregenerateChannelWallet(channelId: string) { - const body = { - create_embedded_wallet: true, - linked_accounts: [ - { - address: getPrivyIdentifier(channelId), - type: "email" - } - ], - }; - - return privyClient('/users', { body }); -}; - -export default pregenerateChannelWallet; diff --git a/lib/privy/pregenerateEndpointWallet.ts b/lib/privy/pregenerateEndpointWallet.ts new file mode 100644 index 00000000..51eb5025 --- /dev/null +++ b/lib/privy/pregenerateEndpointWallet.ts @@ -0,0 +1,18 @@ +import getIdentifier from './getIdentifier'; +import privyClient from './privyClient'; + +function pregenerateEndpointWallet(endpoint: string) { + const body = { + create_embedded_wallet: true, + linked_accounts: [ + { + address: getIdentifier(endpoint), + type: 'email', + }, + ], + }; + + return privyClient('/users', { body }); +} + +export default pregenerateEndpointWallet; diff --git a/lib/privy/privyClient.ts b/lib/privy/privyClient.ts index 72620b23..4f6c9d3a 100644 --- a/lib/privy/privyClient.ts +++ b/lib/privy/privyClient.ts @@ -1,24 +1,17 @@ -import { PrivyClientOptions } from "@/types/Privy"; - const APP_ID = process.env.PRIVY_APP_ID!; const APP_SECRET = process.env.PRIVY_APP_SECRET!; const headers = { 'Content-Type': 'application/json', - 'Authorization': `Basic ${btoa(APP_ID + ':' + APP_SECRET)}`, + Authorization: `Basic ${btoa(APP_ID + ':' + APP_SECRET)}`, 'privy-app-id': APP_ID, }; -const privyClient = ( - endpoint: string, - options: PrivyClientOptions = {} -) => fetch( - 'https://auth.privy.io/api/v1' + endpoint, - { +const privyClient = (endpoint: string, options: any) => + fetch('https://auth.privy.io/api/v1' + endpoint, { method: options.method ?? 'POST', headers, body: options.body ? JSON.stringify(options.body) : undefined, - } -); + }); export default privyClient; diff --git a/lib/privy/searchChannels.ts b/lib/privy/searchChannels.ts deleted file mode 100644 index 4298c61e..00000000 --- a/lib/privy/searchChannels.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { PrivyBatchUserResponse } from "@/types/Privy"; -import getPrivyIdentifier from "./getIdentifier"; -import privyClient from "./privyClient"; - -async function searchChannels(channelIds: string[]) { - let cursor = null; - const channels = []; - const query = new URLSearchParams({ limit: '100' }); - - do { - const response = await privyClient( - '/users/search' + query.toString(), - { - body: { emails: channelIds.map(id => getPrivyIdentifier(id)) } - } - ); - const json: PrivyBatchUserResponse = await response.json(); - if (!json?.data?.length) break; - - channels.push(...json.data); - - cursor = json.next_cursor; - query.set('cursor', cursor ?? ''); - } while (cursor); - - return channels; -}; - -export default searchChannels; diff --git a/lib/replaceSpecialCharacters.tsx b/lib/replaceSpecialCharacters.tsx deleted file mode 100644 index 9358cf06..00000000 --- a/lib/replaceSpecialCharacters.tsx +++ /dev/null @@ -1,4 +0,0 @@ -export function replaceSpecialCharacters(str: any) { - const specialChars = /[^a-zA-Z0-9]/g; - return str.replace(specialChars, '_'); -} diff --git a/lib/sonata/claimAirdrop.tsx b/lib/sonata/claimAirdrop.tsx deleted file mode 100644 index 72a6b783..00000000 --- a/lib/sonata/claimAirdrop.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { isNil } from 'lodash'; - -const claimAirdrop = async ( - signer_uuid: string | undefined, - wallet_address: string, -): Promise<any> => { - try { - if (isNil(signer_uuid)) throw Error('Invalid Signer'); - const body = { - signer_uuid, - wallet_address, - }; - const stringifiedBody = JSON.stringify(body); - const res = await fetch('/api/claimAirdrop', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: stringifiedBody, - }); - const data = await res.json(); - return data; - } catch (error) { - console.error(error); - return { message: 'Airdrop Failed' }; - } -}; - -export default claimAirdrop; diff --git a/lib/sonata/executeTip.tsx b/lib/sonata/executeTip.tsx deleted file mode 100644 index 72d041fa..00000000 --- a/lib/sonata/executeTip.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { TipResponse } from '@/types/TipResponse'; -import { isNil } from 'lodash'; - -const executeTip = async ( - signer_uuid: string | undefined, - amount: bigint, - postHash: string, - recipientFid: number, -): Promise<TipResponse> => { - try { - if (isNil(signer_uuid)) throw Error('Invalid Signer'); - const res = await fetch('/api/tip', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({ - signer_uuid, - tipAmount: amount, - postHash, - recipientFid, - }), - }); - const data = (await res.json()) as TipResponse; - return data; - } catch (error) { - console.error(error); - return { message: 'Tip Failed', usedTip: 0, tipRemaining: 0, totalTipOnPost: 0 }; - } -}; - -export default executeTip; diff --git a/lib/sonata/getCurrentNotes.tsx b/lib/sonata/getCurrentNotes.tsx deleted file mode 100644 index 1e6989c2..00000000 --- a/lib/sonata/getCurrentNotes.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { Address } from 'viem'; - -const getCurrentNotes = async (wallet_address: Address) => { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - } as any; - - try { - const queryParams = new URLSearchParams({ - wallet_address, - }); - - const response = await fetch(`/api/getPoints?${queryParams}`, options); - const data = await response.json(); - return data.notes; - } catch (error) { - console.error(error); - return { error }; - } -}; - -export default getCurrentNotes; diff --git a/lib/sonata/getProfileNotes.tsx b/lib/sonata/getProfileNotes.tsx deleted file mode 100644 index 3fc9b25a..00000000 --- a/lib/sonata/getProfileNotes.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { Address } from 'viem'; - -const getProfileNotes = async (wallets: Address[]) => { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - } as any; - - try { - const notesPromise = wallets.map(async (wallet) => { - const queryParams = new URLSearchParams({ - wallet_address: wallet, - }); - - const response = await fetch(`/api/getPoints?${queryParams}`, options); - const data = await response.json(); - return data.notes; - }); - - const notes = await Promise.all(notesPromise); - const notesCount = notes.reduce((acc, cur) => acc + cur, 0); - return notesCount; - } catch (error) { - console.error(error); - return { error }; - } -}; - -export default getProfileNotes; diff --git a/lib/sonata/getProfileRank.tsx b/lib/sonata/getProfileRank.tsx deleted file mode 100644 index 9bc941e5..00000000 --- a/lib/sonata/getProfileRank.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import { Address } from 'viem'; - -const getProfileRank = async (wallets: Address[]) => { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - } as any; - - try { - const ranksPromise = wallets.map(async (wallet) => { - const queryParams = new URLSearchParams({ - wallet_address: wallet, - }); - - const response = await fetch(`/api/getLeaderboardRank?${queryParams}`, options); - const data = await response.json(); - return data.leaderBoard.rank; - }); - - const ranks = await Promise.all(ranksPromise); - - const validRanks = ranks.filter((rank) => rank !== null && rank !== undefined); - - if (validRanks.length === 0) { - return null; - } - - const highestRank = Math.min(...validRanks); - return highestRank; - } catch (error) { - console.error(error); - return { error }; - } -}; - -export default getProfileRank; diff --git a/lib/sonata/getUser.ts b/lib/sonata/getUser.ts deleted file mode 100644 index eef3ca84..00000000 --- a/lib/sonata/getUser.ts +++ /dev/null @@ -1,19 +0,0 @@ -export default async function getUser(fid: number) { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - } as any; - - try { - const queryParams = new URLSearchParams({ - fids: String(fid), - }); - - const response = await fetch(`/api/neynar/getUser?${queryParams}`, options); - const { users } = await response.json(); - return users[0]; - } catch (error) { - console.error(error); - return { error }; - } -} diff --git a/lib/sonata/getUserSongs.tsx b/lib/sonata/getUserSongs.tsx deleted file mode 100644 index c7a026de..00000000 --- a/lib/sonata/getUserSongs.tsx +++ /dev/null @@ -1,21 +0,0 @@ -const getUserSongs = async (profileFid: string) => { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - } as any; - - try { - const queryParams = new URLSearchParams({ - profile_fid: profileFid, - }); - - const response = await fetch(`/api/user/getSongs?${queryParams}`, options); - const data = await response.json(); - return data; - } catch (error) { - console.error(error); - return { error }; - } -}; - -export default getUserSongs; diff --git a/lib/sonata/getUsers.ts b/lib/sonata/getUsers.ts deleted file mode 100644 index e09709cf..00000000 --- a/lib/sonata/getUsers.ts +++ /dev/null @@ -1,19 +0,0 @@ -export default async function getUsers(fids: number[]) { - const options = { - method: 'GET', - headers: { accept: 'application/json' }, - } as any; - - try { - const queryParams = new URLSearchParams({ - fids: fids as any, - }); - - const response = await fetch(`/api/neynar/getUser?${queryParams}`, options); - const { users } = await response.json(); - return users; - } catch (error) { - console.error(error); - return { error }; - } -} diff --git a/lib/sonata/sendBotCast.ts b/lib/sonata/sendBotCast.ts deleted file mode 100644 index e7e867d8..00000000 --- a/lib/sonata/sendBotCast.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Cast } from "@neynar/nodejs-sdk/build/neynar-api/v2"; -import createPostReply from "../neynar/createPostReply"; - -const BOT_SIGNER_UUID = process.env.BOT_SIGNER_UUID!; - -async function sendBotCast(cast: Cast) { - await createPostReply( - BOT_SIGNER_UUID, - cast.hash, - `This song is now available on @sonatatips where you earn NOTES when people tip you.\n\nSee you over there!\n\nhttps://sonata.tips/cast/${cast.author.username}/${cast.hash.substring(0, 8)}`, - ); - - return { success: true }; -} - -export default sendBotCast \ No newline at end of file diff --git a/lib/sortChannels.ts b/lib/sortChannels.ts deleted file mode 100644 index b1e50dab..00000000 --- a/lib/sortChannels.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { ChannelStats } from "@/types/ChannelStats"; - -function sortChannels(channelStats: ChannelStats[]) { - return channelStats.sort((a, b) => { - return ( - (b.numberOfNotes! - a.numberOfNotes!) || - (b.numberOfSongs - a.numberOfSongs) || - (b.numberOfCurators - a.numberOfCurators) - ); - }); -} - -export default sortChannels; diff --git a/lib/sound/extractSoundArtistAndTrack.tsx b/lib/sound/extractSoundArtistAndTrack.tsx deleted file mode 100644 index 8dedd049..00000000 --- a/lib/sound/extractSoundArtistAndTrack.tsx +++ /dev/null @@ -1,15 +0,0 @@ -const extractSoundArtistAndTrack = (soundUrl: string) => { - const parts = soundUrl.split('/').filter((part) => part !== ''); - let artist = parts[3]; - let track = parts[4]?.split('?')[0]; - - if (!track) { - artist = parts[2]; - track = parts[3]; - } - track = track?.split?.('?')?.[0]; - - return { artist, trackName: track }; -}; - -export default extractSoundArtistAndTrack; diff --git a/lib/sound/fetchSoundGraphQL.tsx b/lib/sound/fetchSoundGraphQL.tsx deleted file mode 100644 index 60899403..00000000 --- a/lib/sound/fetchSoundGraphQL.tsx +++ /dev/null @@ -1,36 +0,0 @@ -const fetchSoundGraphQL = async (query: any, variables = {}) => { - const headers = { - 'Content-Type': 'application/json', - Accept: 'application/json', - } as any; - - try { - const response = await fetch('/api/sound/fetchSoundGraphQL', { - method: 'POST', - headers: headers, - body: JSON.stringify({ - query: query, - variables: variables, - }), - }); - - const data = await response.json(); - - if (response.ok) { - if (data.errors) { - console.error('GraphQL Errors:', data.errors); - return null; - } - - return data.data; - } else { - console.error(response.status, response.statusText); - return null; - } - } catch (error: any) { - console.error(error?.message); - return null; - } -}; - -export default fetchSoundGraphQL; diff --git a/lib/sound/getReleaseInfo.tsx b/lib/sound/getReleaseInfo.tsx deleted file mode 100644 index e6ba0ecd..00000000 --- a/lib/sound/getReleaseInfo.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import { MINTED_RELEASE_QUERY } from './queries'; - -const getReleaseInfo = async ( - soundHandle: string = 'xcelencia', - releaseSlug: string = 'chimbita', -) => { - const VARIABLES = { - releaseSlug, - soundHandle, - }; - const response = await fetch('/api/sound/fetchSoundGraphQL', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({ - query: MINTED_RELEASE_QUERY, - variables: VARIABLES, - }), - }); - const { data } = await response.json(); - return data.mintedRelease; -}; - -export default getReleaseInfo; diff --git a/lib/sound/getSoundTrackMetadata.tsx b/lib/sound/getSoundTrackMetadata.tsx deleted file mode 100644 index 11ce8517..00000000 --- a/lib/sound/getSoundTrackMetadata.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { TrackMetadata } from '@/types/Track'; -import { SupabasePost } from '@/types/SupabasePost'; -import extractSoundArtistAndTrack from './extractSoundArtistAndTrack'; -import getReleaseInfo from './getReleaseInfo'; - -const getSoundTrackMetadata = async (url: string, cast: SupabasePost) => { - const { artist, trackName } = extractSoundArtistAndTrack(url); - const releaseInfo = await getReleaseInfo(artist, trackName); - - return { - id: releaseInfo.id, - type: 'soundxyz', - artistName: releaseInfo.artist.name, - trackName: releaseInfo.title, - artworkUrl: releaseInfo.coverImage.url, - url: releaseInfo?.track?.audio?.audio128k?.url, - feedId: cast.id, - } as TrackMetadata; -}; - -export default getSoundTrackMetadata; diff --git a/lib/sound/queries.tsx b/lib/sound/queries.tsx deleted file mode 100644 index 88889fef..00000000 --- a/lib/sound/queries.tsx +++ /dev/null @@ -1,26 +0,0 @@ -export const MINTED_RELEASE_QUERY = ` - query ApiExplorer($releaseSlug: String!, $soundHandle: String!) { - mintedRelease(releaseSlug: $releaseSlug, soundHandle: $soundHandle) { - id - title - artist{ - name - } - track { - id - duration - audio { - audioOriginal { - url - } - audio128k{ - url - } - } - } - coverImage{ - url - } - } - } -`; diff --git a/lib/soundcloud/getSoundcloudTrackMetadata.tsx b/lib/soundcloud/getSoundcloudTrackMetadata.tsx deleted file mode 100644 index b6fdd800..00000000 --- a/lib/soundcloud/getSoundcloudTrackMetadata.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import { TrackMetadata } from '@/types/Track'; -import { SupabasePost } from '@/types/SupabasePost'; - -const getSoundcloudTrackMetadata = async (url: string, cast: SupabasePost) => { - const oEmbedUrl = `https://soundcloud.com/oembed?format=json&url=${encodeURIComponent(url)}`; - const response = await fetch(oEmbedUrl); - const embedData = await response.json(); - const iframeSrc = embedData.html.match(/src="([^"]+)"/)[1]; - const iframeUrl = new URL(iframeSrc).searchParams.get('url'); - - if (!iframeUrl) { - throw new Error('Could not find iframe url'); - } - const soundId = String(iframeUrl.split('/').pop()); - - return { - id: soundId, - type: 'soundcloud', - artistName: embedData.author_name || '', - trackName: embedData.title.split(' - ')[0].split(' by ')[0], - artworkUrl: embedData.thumbnail_url, - url: iframeUrl, - feedId: cast.id, - } as TrackMetadata; -}; - -export default getSoundcloudTrackMetadata; diff --git a/lib/spotify/getSongLinksFromCasts.tsx b/lib/spotify/getSongLinksFromCasts.tsx deleted file mode 100644 index 531eb348..00000000 --- a/lib/spotify/getSongLinksFromCasts.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { VERCEL_URL } from '../consts'; - -const getSongLinksFromCasts = async (casts: Cast[]) => { - try { - const spotifyLinks = casts.map((cast) => { - const match = cast.text.match(/https:\/\/open\.spotify\.com\/track\/[a-zA-Z0-9?=._-]+/); - - return match ? match[0] : null; - }); - - const songLinks: (null | Record<string, any>)[] = await Promise.all( - spotifyLinks.map(async (trackUrl) => { - if (!trackUrl) return null; - - const response = await fetch( - `${VERCEL_URL}/api/songLink/fetchLink?trackUrl=${encodeURIComponent(trackUrl)}`, - ); - const data = await response.json(); - return data; - }), - ); - - return songLinks; - } catch (error) { - console.error('Error fetching Soundcloud URLs:', error); - return null; - } -}; - -export default getSongLinksFromCasts; diff --git a/lib/spotify/getSpotifyAccessToken.ts b/lib/spotify/getSpotifyAccessToken.ts deleted file mode 100644 index 09080e28..00000000 --- a/lib/spotify/getSpotifyAccessToken.ts +++ /dev/null @@ -1,18 +0,0 @@ -'use server'; - -export default async function getSpotifyAccessToken() { - const response = await fetch('https://accounts.spotify.com/api/token', { - method: 'POST', - headers: { - Authorization: - 'Basic ' + - Buffer.from( - `${process.env.NEXT_PUBLIC_SPOTIFY_CLIENT_ID}:${process.env.SPOTIFY_CLIENT_SECRET}`, - ).toString('base64'), - 'Content-Type': 'application/x-www-form-urlencoded', - }, - body: 'grant_type=client_credentials', - }); - const { access_token } = await response.json(); - return access_token; -} diff --git a/lib/spotify/getSpotifyTrack.ts b/lib/spotify/getSpotifyTrack.ts deleted file mode 100644 index 5664e13f..00000000 --- a/lib/spotify/getSpotifyTrack.ts +++ /dev/null @@ -1,18 +0,0 @@ -'use server'; - -import getSpotifyAccessToken from './getSpotifyAccessToken'; - -export default async function getSpotifyTrack(trackId: string) { - try { - const accessToken = await getSpotifyAccessToken(); - const response = await fetch(`https://api.spotify.com/v1/tracks/${trackId}`, { - headers: { - Authorization: 'Bearer ' + accessToken, - }, - }); - const track = await response.json(); - return track; - } catch (error) { - return { error }; - } -} diff --git a/lib/spotify/getSpotifyTrackId.tsx b/lib/spotify/getSpotifyTrackId.tsx deleted file mode 100644 index d367e152..00000000 --- a/lib/spotify/getSpotifyTrackId.tsx +++ /dev/null @@ -1,7 +0,0 @@ -const getSpotifyTrackId = (url: string) => { - // This assumes the URL follows the pattern ".../track/{trackId}?..." - const match = url.match(/track\/([^?]+)/); - return match ? match[1] : ''; -}; - -export default getSpotifyTrackId; diff --git a/lib/spotify/getSpotifyTrackMetadata.tsx b/lib/spotify/getSpotifyTrackMetadata.tsx deleted file mode 100644 index 19d24f04..00000000 --- a/lib/spotify/getSpotifyTrackMetadata.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { TrackMetadata } from '@/types/Track'; -import getSpotifyTrackId from './getSpotifyTrackId'; -import { SupabasePost } from '@/types/SupabasePost'; -import getSoundcloudTrackMetadata from '../soundcloud/getSoundcloudTrackMetadata'; -import getYoutubeTrackMetadata from '@/lib/youtube/getYoutubeTrackMetadata'; - -const getSpotifyTrackMetadata = async (url: string, cast: SupabasePost): Promise<TrackMetadata> => { - const youtubeLink = cast.alternativeEmbeds?.find((link) => link.includes('youtube.com')); - const soundcloudLink = cast.alternativeEmbeds?.find((link) => link.includes('soundcloud.com')); - - if (youtubeLink) { - return await getYoutubeTrackMetadata(youtubeLink, cast); - } - - if (soundcloudLink) { - return await getSoundcloudTrackMetadata(soundcloudLink, cast); - } - - const oEmbedUrl = `https://open.spotify.com/oembed?url=${encodeURIComponent(url)}`; - const response = await fetch(oEmbedUrl); - const embedData = await response.json(); - const trackId = getSpotifyTrackId(embedData.iframe_url); - - return { - type: 'spotify', - id: trackId, - artistName: '', - trackName: embedData.title, - artworkUrl: embedData.thumbnail_url, - url: `spotify:track:${trackId}`, - feedId: cast.id, - } as TrackMetadata; -}; - -export default getSpotifyTrackMetadata; diff --git a/lib/spotify/getSpotifyWithAlternatives.tsx b/lib/spotify/getSpotifyWithAlternatives.tsx deleted file mode 100644 index 466a06a7..00000000 --- a/lib/spotify/getSpotifyWithAlternatives.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import getSongLinksFromCasts from './getSongLinksFromCasts'; - -const getSpotifyWithAlternatives = async (spotify: Cast[]) => { - try { - const spotifySongLinks = await getSongLinksFromCasts(spotify); - if (!spotifySongLinks) return spotify; - - return spotify.map((cast, index) => { - const data = spotifySongLinks[index]; - if (!data) return cast; - - const alternativeEmbeds = Object.values<any>(data.linksByPlatform).map(({ url }) => url); - - return { ...cast, alternativeEmbeds }; - }); - } catch (err) { - console.error('Error fetching Spotify URLs:', err); - return spotify; - } -}; - -export default getSpotifyWithAlternatives; diff --git a/lib/stack/bulkTrack.tsx b/lib/stack/bulkTrack.tsx new file mode 100644 index 00000000..5d244c33 --- /dev/null +++ b/lib/stack/bulkTrack.tsx @@ -0,0 +1,25 @@ +const API_URL = 'https://track.stack.so/event'; +const API_KEY = process.env.STACK_API_KEY as string; + +export async function bulkTrack(events: any[]) { + if (!Array.isArray(events) || events.length === 0) { + throw new Error('Events array is required and must not be empty.'); + } + + const headers = new Headers(); + headers.append('Content-Type', 'application/json'); + headers.append('x-api-key', API_KEY); + + const response = await fetch(API_URL, { + method: 'POST', + headers: headers, + body: JSON.stringify(events.slice(0, 99)), + }); + + if (!response.ok) { + console.error(response); + throw new Error(`Failed to track events: ${response.statusText}`); + } + + return response.json(); +} diff --git a/lib/stack/client.ts b/lib/stack/client.ts index 7b13ac47..a56795e4 100644 --- a/lib/stack/client.ts +++ b/lib/stack/client.ts @@ -1,6 +1,12 @@ import { StackClient } from '@stackso/js-core'; +import { REWARDS_DEPOSIT_POINT_SYSTEM_ID, SETTINGS_STACK_ID } from '../consts'; -export const stack = new StackClient({ - apiKey: process.env.STACK_API_KEY as string, - pointSystemId: Number(process.env.STACK_SYSTEM_ID), -}); +export const createStackClient = (pointSystemId: number) => + new StackClient({ + apiKey: process.env.STACK_API_KEY as string, + pointSystemId, + }); + +export const stack = createStackClient(parseInt(process.env.STACK_POINT_SYSTEM_ID as string, 10)); +export const rewardStack = createStackClient(REWARDS_DEPOSIT_POINT_SYSTEM_ID); +export const settingsStack = createStackClient(SETTINGS_STACK_ID); diff --git a/lib/stack/getEvents.tsx b/lib/stack/getEvents.tsx new file mode 100644 index 00000000..2d710cdc --- /dev/null +++ b/lib/stack/getEvents.tsx @@ -0,0 +1,12 @@ +import { stack } from '@/lib/stack/client'; +import { Address } from 'viem'; + +const getEvents = async (address: Address, event: string) => { + const response = await stack.getEvents({ + address, + event, + }); + return response; +}; + +export default getEvents; diff --git a/lib/stack/getIdentity.tsx b/lib/stack/getIdentity.tsx new file mode 100644 index 00000000..d2b15a19 --- /dev/null +++ b/lib/stack/getIdentity.tsx @@ -0,0 +1,9 @@ +import { Address } from 'viem'; +import { settingsStack } from './client'; + +const getIdentity = async (address: Address) => { + const identify = await settingsStack.getTags(address, 'custom identity'); + return identify; +}; + +export default getIdentity; diff --git a/lib/stack/getRewardsPoints.tsx b/lib/stack/getRewardsPoints.tsx new file mode 100644 index 00000000..1ddbbed0 --- /dev/null +++ b/lib/stack/getRewardsPoints.tsx @@ -0,0 +1,39 @@ +import { + EVENT_ZORA_REWARDS_CREATE_REFERRAL, + EVENT_ZORA_REWARDS_CREATOR, + EVENT_ZORA_REWARDS_FIRST_MINTER, + EVENT_ZORA_REWARDS_MINT_REFERRAL, +} from '@/lib/consts'; +import { rewardStack } from '@/lib/stack/client'; +import { Address } from 'viem'; + +const getRewardsPoints = async (address: Address) => { + const [ + creatorRewards, + createReferralRewards, + mintReferralRewards, + firstMinterRewards, + totalRewards, + events, + ] = await Promise.all([ + rewardStack.getPoints(address, { event: EVENT_ZORA_REWARDS_CREATOR }), + rewardStack.getPoints(address, { event: EVENT_ZORA_REWARDS_CREATE_REFERRAL }), + rewardStack.getPoints(address, { event: EVENT_ZORA_REWARDS_MINT_REFERRAL }), + rewardStack.getPoints(address, { event: EVENT_ZORA_REWARDS_FIRST_MINTER }), + rewardStack.getPoints(address), + rewardStack.getEvents({ + address, + }), + ]); + + return { + creatorRewards, + createReferralRewards, + mintReferralRewards, + firstMinterRewards, + totalRewards, + events, + }; +}; + +export default getRewardsPoints; diff --git a/lib/stack/track.tsx b/lib/stack/track.tsx new file mode 100644 index 00000000..9575e926 --- /dev/null +++ b/lib/stack/track.tsx @@ -0,0 +1,5 @@ +import { stack } from '@/lib/stack/client'; + +const track = async (endpoint: string, options: any) => stack.track(endpoint, options); + +export default track; diff --git a/lib/stack/trackEndpoint.ts b/lib/stack/trackEndpoint.ts new file mode 100644 index 00000000..d4bdb865 --- /dev/null +++ b/lib/stack/trackEndpoint.ts @@ -0,0 +1,13 @@ +import getEndpointWallet from '@/lib/privy/getEndpointWallet'; +import track from './track'; + +const trackEndpoint = async (endpoint: string) => { + const wallet = await getEndpointWallet(endpoint); + await track(endpoint, { + points: 1, + account: wallet, + }); + return wallet; +}; + +export default trackEndpoint; diff --git a/lib/supabase/client.ts b/lib/supabase/client.ts deleted file mode 100644 index 0332c0c7..00000000 --- a/lib/supabase/client.ts +++ /dev/null @@ -1,5 +0,0 @@ -const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL as string; -const supabaseKey = process.env.NEXT_PUBLIC_ANON_KEY as string; - -import { createClient } from '@supabase/supabase-js'; -export const supabaseClient = createClient(supabaseUrl, supabaseKey); diff --git a/lib/supabase/fetchPosts.ts b/lib/supabase/fetchPosts.ts deleted file mode 100644 index e86076e4..00000000 --- a/lib/supabase/fetchPosts.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { SupabasePost } from '@/types/SupabasePost'; -import { SupabaseClient } from '@supabase/supabase-js'; -import { fetchPostsLimit } from '../consts'; -import { FeedType } from '@/types/Feed'; -import getBaseQuery from './getBaseQuery'; - -const fetchPosts = async ( - supabaseClient: SupabaseClient, - filter: any, - feedType: string, - start: number, - fid?: number, - profileFid?: number, - limit: boolean = true, -) => { - const followingFids = []; - if (feedType === FeedType.Following) { - const response = await fetch(`/api/neynar/getFollowing?fid=${fid}`); - const following = await response.json(); - followingFids.push(...following.users.map((user: { fid: number }) => user.fid), fid); - } - - const query = getBaseQuery(supabaseClient, feedType, followingFids); - - if (!query) { - return { posts: [] }; - } - - if (feedType !== FeedType.Following) { - query.filter('author', 'cs', '{"power_badge": true}'); - } - - if (filter?.platform) { - query.eq('platform', filter.platform); - } - if (filter?.channel) { - query.eq('channelId', filter.channel); - } - if (profileFid) { - query.eq('authorFid', profileFid); - } - if (limit) query.range(start, start + fetchPostsLimit - 1); - - const { data: posts } = await query.returns<SupabasePost[]>(); - return { posts: posts || [] }; -}; - -export default fetchPosts; diff --git a/lib/supabase/getBaseQuery.ts b/lib/supabase/getBaseQuery.ts deleted file mode 100644 index d05ac852..00000000 --- a/lib/supabase/getBaseQuery.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { FeedType } from '@/types/Feed'; -import { SupabaseClient } from '@supabase/supabase-js'; - -export default function getBaseQuery( - supabaseClient: SupabaseClient, - feedType: string, - followingFids: number[], -) { - if (feedType === FeedType.Recent) { - const query = supabaseClient.from('posts_with_hypersub').select('*').not('likes', 'is', null); - query.order('created_at', { ascending: false }); - return query; - } - - if (feedType === FeedType.Trending) { - const query = supabaseClient.from('trending_posts').select('*'); - query.order('score', { ascending: false }); - return query; - } - - if (feedType === FeedType.Following) { - const query = supabaseClient.from('posts_with_hypersub').select('*').not('likes', 'is', null); - query.in('author->fid', followingFids); - query.order('created_at', { ascending: false }); - return query; - } - - if (feedType === FeedType.Posts) { - const query = supabaseClient.from('posts').select('*'); - query.order('created_at', { ascending: false }); - return query; - } -} diff --git a/lib/supabase/getChannelStats.ts b/lib/supabase/getChannelStats.ts deleted file mode 100644 index 066e9a28..00000000 --- a/lib/supabase/getChannelStats.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { ChannelAccumulator, ChannelStats } from "@/types/ChannelStats"; -import { CHANNELS } from "../consts"; -import { supabaseClient } from "./client"; - -async function getChannelStats(filterChannels = false) { - const limit = 1000; - let offset = 0; - const entries = {} as ChannelAccumulator; - - do { - const query = supabaseClient - .from('posts') - .select('channelId, post_hash, authorFid, points') - .range(offset, offset + limit - 1); - - if (filterChannels) { - query.in('channelId', CHANNELS.map(channel => channel.value)); - } else { - query.neq('channelId', null); - } - - const { data: posts, error } = await query; - - if (error) throw error; - - posts.forEach(({ channelId, ...post }) => { - if (!entries[channelId]) entries[channelId] = { - uniquePosts: new Set, - uniqueAuthors: new Set, - notes: 0 - }; - - entries[channelId].uniqueAuthors.add(post.authorFid); - entries[channelId].uniquePosts.add(post.post_hash); - entries[channelId].notes += post.points; - }); - - if (posts.length < limit) break; - offset += limit; - - } while (offset); - - const channels = Object.keys(entries).map(channelId => { - const channel: ChannelStats = { - channelId, - numberOfCurators: entries[channelId].uniqueAuthors.size, - numberOfSongs: entries[channelId].uniquePosts.size, - }; - channel.numberOfNotes = entries[channelId].notes; - - return channel; - }); - - return channels; -} - -export default getChannelStats; \ No newline at end of file diff --git a/lib/supabase/upsertCast.ts b/lib/supabase/upsertCast.ts deleted file mode 100644 index 4532e018..00000000 --- a/lib/supabase/upsertCast.ts +++ /dev/null @@ -1,40 +0,0 @@ -import 'server-only'; - -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import getChannelIdFromCast from '../neynar/getChannelIdFromCast'; -import { createClient } from '@supabase/supabase-js'; - -const SUPABASE_URL = process.env.SUPABASE_URL!; -const SUPABASE_KEY = process.env.SUPABASE_KEY!; - -export const supabaseClient = createClient(SUPABASE_URL, SUPABASE_KEY); - -async function upsertCast(cast: Cast) { - const likes = (cast as any).reactions.likes_count; - const alternativeEmbeds = (cast as any).alternativeEmbeds; - const channelId = getChannelIdFromCast(cast); - - const { error, statusText } = await supabaseClient.from('posts').upsert( - { - post_hash: cast.hash, - likes, - created_at: new Date(cast.timestamp), - embeds: cast.embeds, - author: cast.author, - channelId, - alternativeEmbeds, - authorFid: cast.author.fid, - }, - { - onConflict: 'post_hash', - }, - ); - if (error) { - console.error('Error upserting cast:', error); - return { success: false, statusText }; - } - console.log(statusText, 'cast(hash):', cast.hash); - return { success: true, statusText }; -} - -export default upsertCast; diff --git a/lib/utils.ts b/lib/utils.ts index cc12ae8c..9ad0df42 100644 --- a/lib/utils.ts +++ b/lib/utils.ts @@ -1,37 +1,6 @@ import { type ClassValue, clsx } from 'clsx'; import { twMerge } from 'tailwind-merge'; -import dayjs from 'dayjs'; -import relativeTime from 'dayjs/plugin/relativeTime'; - -dayjs.extend(relativeTime); export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } - -export function formatDuration(duration: number) { - const durationSeconds = Math.floor(duration / 1000); - const hours = Math.floor(durationSeconds / 3600); - const minutes = Math.floor((durationSeconds % 3600) / 60); - const seconds = Math.floor(durationSeconds % 60); - - if (hours > 0) { - return `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`; - } - return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`; -} -export const formatBigInt = (balance: bigint | string): string => { - const formatter = new Intl.NumberFormat('en-US', { - maximumFractionDigits: 1, - notation: 'compact', - }); - return formatter.format(BigInt(balance)); -}; - -export const isValidNumber = (value: string) => { - return /^\d+$/.test(value); -}; - -export function timeFromNow(date: Date | string) { - return dayjs(date).fromNow(); -} diff --git a/lib/verifySubscription.ts b/lib/verifySubscription.ts new file mode 100644 index 00000000..ecfdd551 --- /dev/null +++ b/lib/verifySubscription.ts @@ -0,0 +1,39 @@ +import { Address } from 'viem'; +import { HYPERSUB_SUBSCRIPTION_ADDRESS } from './consts'; +import { getPublicClient } from './viem'; +import { base } from 'viem/chains'; + +async function verifySubscription(address: Address) { + const client = getPublicClient(base.id); + + const result = await client.readContract({ + functionName: 'balanceOf', + address: HYPERSUB_SUBSCRIPTION_ADDRESS, + args: [address], + abi: [ + { + inputs: [ + { + internalType: 'address', + name: 'account', + type: 'address', + }, + ], + name: 'balanceOf', + outputs: [ + { + internalType: 'uint256', + name: 'numSeconds', + type: 'uint256', + }, + ], + stateMutability: 'view', + type: 'function', + }, + ], + }); + + return result > 0; +} + +export default verifySubscription; diff --git a/lib/viem/getBlock.tsx b/lib/viem/getBlock.tsx new file mode 100644 index 00000000..28958b58 --- /dev/null +++ b/lib/viem/getBlock.tsx @@ -0,0 +1,10 @@ +import { CHAIN_ID } from '../consts'; +import { getPublicClient } from './viem'; + +const getBlock = async (params: any) => { + const publicClient = getPublicClient(CHAIN_ID); + const block = await publicClient.getBlock(params); + return block; +}; + +export default getBlock; diff --git a/lib/viem/getViemNetwork.tsx b/lib/viem/getViemNetwork.tsx new file mode 100644 index 00000000..0bcc4985 --- /dev/null +++ b/lib/viem/getViemNetwork.tsx @@ -0,0 +1,38 @@ +import { + goerli, + mainnet, + optimism, + polygon, + polygonMumbai, + sepolia, + baseSepolia, + optimismSepolia, + base, +} from 'viem/chains'; + +const getViemNetwork = (chainId: number) => { + switch (chainId) { + case mainnet.id: + return mainnet; + case polygon.id: + return polygon; + case base.id: + return base; + case optimism.id: + return optimism; + case goerli.id: + return goerli; + case polygonMumbai.id: + return polygonMumbai; + case sepolia.id: + return sepolia; + case baseSepolia.id: + return baseSepolia; + case optimismSepolia.id: + return optimismSepolia; + default: + return mainnet; + } +}; + +export default getViemNetwork; diff --git a/lib/viem/index.tsx b/lib/viem/index.tsx new file mode 100644 index 00000000..58a7ab72 --- /dev/null +++ b/lib/viem/index.tsx @@ -0,0 +1 @@ +export * from './viem'; diff --git a/lib/viem/viem.tsx b/lib/viem/viem.tsx new file mode 100644 index 00000000..1cb3bc3e --- /dev/null +++ b/lib/viem/viem.tsx @@ -0,0 +1,12 @@ +import { PublicClient, createPublicClient, http } from 'viem'; +import getViemNetwork from './getViemNetwork'; +import { zora } from 'viem/chains'; + +export const getPublicClient = (chainId: number) => { + const chain = getViemNetwork(chainId); + const publicClient = createPublicClient({ + chain, + transport: http(chainId === zora.id ? 'https://rpc.zora.energy' : undefined), + }) as any; + return publicClient as PublicClient; +}; diff --git a/lib/youtube/getYoutubeTrackMetadata.tsx b/lib/youtube/getYoutubeTrackMetadata.tsx deleted file mode 100644 index 90e703dd..00000000 --- a/lib/youtube/getYoutubeTrackMetadata.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import { TrackMetadata } from '@/types/Track'; -import { SupabasePost } from '@/types/SupabasePost'; -import getYoutubeVideoData from '../getYoutubeVideoData'; - -const getYoutubeTrackMetadata = async (url: string, cast: SupabasePost) => { - const urlData = new URL(url); - let videoId = urlData.searchParams.get('v'); - if (!videoId) videoId = urlData.pathname.replace('/', ''); - - if (!videoId) { - throw new Error('Could not find video id in url'); - } - const youtubeData = await getYoutubeVideoData(videoId); - return { - id: youtubeData.id, - type: 'youtube', - artistName: youtubeData.snippet.channelTitle, - trackName: youtubeData.snippet.title, - artworkUrl: youtubeData.snippet.thumbnails.default.url, - url: youtubeData.id, - feedId: cast.id, - } as TrackMetadata; -}; - -export default getYoutubeTrackMetadata; diff --git a/lib/zora/filterCasts.ts b/lib/zora/filterCasts.ts deleted file mode 100644 index 7fb73c1d..00000000 --- a/lib/zora/filterCasts.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import filterCastsByChannels from '../filterCastsByChannels'; -import getIpfsLink from '../getIpfsLink'; -import getCastsMetadataLink from './getCastsMetadataLink'; -import getCastContractMapping from './mapCastToContract'; - -async function filterZoraFeed(casts: Cast[]) { - const batchSize = 99; - const castsMetadata: Response[] = []; - const response: Cast[] = []; - const filteredCasts = filterCastsByChannels(casts); - - try { - const data = await getCastsMetadataLink(getCastContractMapping(filteredCasts)); - - for (let i = 0; i < data.length; i += batchSize) { - const batch = data.slice(i, i + batchSize); - - castsMetadata.push(...await Promise.all( - batch.map(cast => fetch(getIpfsLink(cast.ipfs))) - )); - } - - for (let i = 0; i < data.length; i++) { - const cast = data[i]; - - const metadata: { - content?: { - mime?: string; - uri?: string - } - } = await castsMetadata[i].json(); - - if ( - metadata && - metadata?.content && - metadata.content?.mime && - metadata.content?.uri && - metadata.content?.mime.includes('audio') - ) { - cast.embeds.unshift({ url: cast.ipfs }); - delete (cast as any).ipfs; - response.push(cast as Cast); - } - } - return response; - } catch (error) { - console.error('filterZoraFeed', 'ERROR', error); - return []; - } -} - -export default filterZoraFeed; \ No newline at end of file diff --git a/lib/zora/getCastsMetadataLink.ts b/lib/zora/getCastsMetadataLink.ts deleted file mode 100644 index ef475531..00000000 --- a/lib/zora/getCastsMetadataLink.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { forEach } from 'lodash'; -import { createPublicClient, http } from "viem"; -import * as chains from 'viem/chains'; -import { ZORA_TO_VIEM, ZoraChains } from '../consts'; -import getCastContractMapping from "./mapCastToContract"; - -async function getCastsMetadataLink( - input: ReturnType<typeof getCastContractMapping> -) { - const data: (Cast & { ipfs: string })[] = []; - - for (const [key, { contracts, casts }] of Object.entries(input)) { - const chain = ZORA_TO_VIEM[key as ZoraChains]; - - const responses = await createPublicClient({ - chain: chains[chain], - transport: http() - }).multicall({ contracts }); - - forEach(responses, ({ result, status }, index) => { - if (status === 'success' && typeof result === 'string') - data.push({ ...casts[index], ipfs: result }); - }); - } - return data; -} - -export default getCastsMetadataLink; diff --git a/lib/zora/getRewardsDepositLogs.tsx b/lib/zora/getRewardsDepositLogs.tsx new file mode 100644 index 00000000..7ae241ae --- /dev/null +++ b/lib/zora/getRewardsDepositLogs.tsx @@ -0,0 +1,64 @@ +import { + CHAIN_ID, + INITIAL_BLOCK_RANGE, + MAX_RECORDS_THRESHOLD, + MAX_RETRIES, + MIN_BLOCK_RANGE, +} from '../consts'; +import { protocolRewardsAddress, protocolRewardsABI } from '@zoralabs/protocol-deployments'; +import { getPublicClient } from '../viem'; +import { Address } from 'viem'; + +const getRewardsDepositLogs = async (address: Address, fromBlock: bigint, toBlock: bigint) => { + try { + const publicClient = getPublicClient(CHAIN_ID); + const argOptions = ['creator', 'mintReferral', 'createReferral']; + + let logs = [] as any; + let retries = 0; + let currentBlockRange = INITIAL_BLOCK_RANGE; + + while (logs.length === 0 && retries < MAX_RETRIES) { + const logPromises = argOptions.map((argOption) => + publicClient.getContractEvents({ + address: protocolRewardsAddress[CHAIN_ID], + abi: protocolRewardsABI, + eventName: 'RewardsDeposit', + args: { + [argOption]: address, + }, + fromBlock, + toBlock, + strict: true, + }), + ); + + const logsArray = await Promise.all(logPromises); + logs = logsArray.flat(); + + if (logs.length === 0) { + currentBlockRange *= 2n; + fromBlock = toBlock + 1n; + toBlock = fromBlock + currentBlockRange; + } else if (logs.length > MAX_RECORDS_THRESHOLD) { + currentBlockRange = currentBlockRange / 2n; + if (currentBlockRange < MIN_BLOCK_RANGE) { + currentBlockRange = MIN_BLOCK_RANGE; + } + fromBlock = toBlock - currentBlockRange + 1n; + toBlock = fromBlock + currentBlockRange; + logs = []; + } else { + break; + } + + retries++; + } + + return logs; + } catch (error) { + console.error(error); + } +}; + +export default getRewardsDepositLogs; diff --git a/lib/zora/getSetupNewContractLogs.tsx b/lib/zora/getSetupNewContractLogs.tsx new file mode 100644 index 00000000..bf3693e1 --- /dev/null +++ b/lib/zora/getSetupNewContractLogs.tsx @@ -0,0 +1,23 @@ +import { CHAIN_ID } from '../consts'; +import { + zoraCreator1155FactoryImplAddress, + zoraCreator1155FactoryImplABI, +} from '@zoralabs/protocol-deployments'; +import { getPublicClient } from '../viem'; +import { Address } from 'viem'; + +const getSetupNewContractLogs = async (creator?: Address) => { + const publicClient = getPublicClient(CHAIN_ID); + const args = {} as any; + if (creator) args.creator = creator; + const contractEvents = await publicClient.getContractEvents({ + address: zoraCreator1155FactoryImplAddress[CHAIN_ID], + abi: zoraCreator1155FactoryImplABI, + eventName: 'SetupNewContract', + args, + fromBlock: 'earliest', + }); + return contractEvents; +}; + +export default getSetupNewContractLogs; diff --git a/lib/zora/getZoraProfile.ts b/lib/zora/getZoraProfile.ts new file mode 100644 index 00000000..b0fb256e --- /dev/null +++ b/lib/zora/getZoraProfile.ts @@ -0,0 +1,8 @@ +async function getZoraProfile(address: string) { + if (!address) return; + const res = await fetch(`https://zora.co/api/profiles/${address}?expandedData=true`); + if (!res.ok) throw Error(res.statusText); + return await res.json(); +} + +export default getZoraProfile; diff --git a/lib/zora/getZoraTrackMetadata.ts b/lib/zora/getZoraTrackMetadata.ts deleted file mode 100644 index 15869ef7..00000000 --- a/lib/zora/getZoraTrackMetadata.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { SupabasePost } from '@/types/SupabasePost'; -import getIpfsLink from '../getIpfsLink'; -import { TrackMetadata } from '@/types/Track'; - -interface ZoraMetadata { - name: string; - description: string; - image: string; - animation_url: string; - content: { - mime: string; - uri: string; - }; -} - -async function getZoraTrackMetadata(url: string, cast: SupabasePost) { - const response = await fetch(getIpfsLink(url)); - const metadata: ZoraMetadata = await response.json(); - - return { - id: url, - type: 'zora', - artistName: '', - trackName: metadata.name, - artworkUrl: getIpfsLink(metadata.image), - url: getIpfsLink(metadata.content.uri), - feedId: cast.id, - } as TrackMetadata; -} - -export default getZoraTrackMetadata; diff --git a/lib/zora/mapCastToContract.ts b/lib/zora/mapCastToContract.ts deleted file mode 100644 index 281fd33c..00000000 --- a/lib/zora/mapCastToContract.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { ICastsAndContracts } from '@/types/ContractCastMap'; -import { Cast } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { zoraCreator1155ImplABI } from '@zoralabs/protocol-deployments'; -import { ZoraChains } from '../consts'; -import parseCollectionUrl, { pattern as collectionUrlPattern } from './parseCollectionUrl'; - -function getCastContractMapping(casts: Cast[]) { - const castContractMappings: { [Key in ZoraChains]?: ICastsAndContracts } = {} as any; - - for (const cast of casts) { - const embed = cast.embeds.find((embed: any) => collectionUrlPattern.test(embed?.url)); - if (!embed) continue; - - const collectionData = parseCollectionUrl((embed as any).url); - if (!collectionData) continue; - - const { chain } = collectionData; - - const contract = { - address: collectionData.collectionAddress, - abi: zoraCreator1155ImplABI, - functionName: 'uri', - args: [collectionData.tokenId], - }; - - const placeholder = castContractMappings[chain] ?? { casts: [], contracts: [] }; - - placeholder.casts.push(cast); - placeholder.contracts.push(contract); - - castContractMappings[chain] = placeholder; - } - - return castContractMappings; -} - -export default getCastContractMapping; diff --git a/lib/zora/parseCollectionUrl.ts b/lib/zora/parseCollectionUrl.ts deleted file mode 100644 index d1afd152..00000000 --- a/lib/zora/parseCollectionUrl.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Address } from 'viem'; -import { ZoraChains } from '../consts'; - -export const pattern = /collect\/([^:]+):([^/]+)\/(\d+)/; - -function parseCollectionUrl(input: string) { - const match = input.match(pattern); - - if (!match) return null; - - return { - chain: match[1] as ZoraChains, - collectionAddress: match[2] as Address, - tokenId: match[3] - }; -} - -export default parseCollectionUrl; \ No newline at end of file diff --git a/lib/zora/score/getCompletenessScore.tsx b/lib/zora/score/getCompletenessScore.tsx new file mode 100644 index 00000000..74996423 --- /dev/null +++ b/lib/zora/score/getCompletenessScore.tsx @@ -0,0 +1,18 @@ +function getCompletenessScore(profile: any): number { + if (!profile) return 0; + let score = 0; + const totalFields = 8; + + if (profile.avatar) score += 1; + if (profile.displayName) score += 1; + if (profile.description) score += 1; + if (profile.extension?.links?.twitter) score += 1; + if (profile.extension?.links?.instagram) score += 1; + if (profile.extension?.links?.farcaster) score += 1; + if (profile.extension?.links?.website) score += 1; + if (profile.ensName) score += 1; + + return Math.round((score / totalFields) * 100); +} + +export default getCompletenessScore; diff --git a/lib/zora/score/getCreateScore.tsx b/lib/zora/score/getCreateScore.tsx new file mode 100644 index 00000000..57d9913d --- /dev/null +++ b/lib/zora/score/getCreateScore.tsx @@ -0,0 +1,7 @@ +import { MAX_CREATE_SCORE } from '@/lib/consts'; + +export function getCreateScore(tokensCreated: number) { + const maxCreateScore = MAX_CREATE_SCORE; + const score = Math.min(tokensCreated / maxCreateScore, 1); + return score * 100; +} diff --git a/lib/zora/score/getFollowersScore.tsx b/lib/zora/score/getFollowersScore.tsx new file mode 100644 index 00000000..4765d3b9 --- /dev/null +++ b/lib/zora/score/getFollowersScore.tsx @@ -0,0 +1,8 @@ +import { FOLLOWERS_PERFECT } from '@/lib/consts'; + +function getFollowersScore(followers: number): number { + const perfectFollowers = FOLLOWERS_PERFECT; + return Math.min(Math.round((followers / perfectFollowers) * 100), 100); +} + +export default getFollowersScore; diff --git a/lib/zora/score/getFollowingScore.tsx b/lib/zora/score/getFollowingScore.tsx new file mode 100644 index 00000000..8aa6158a --- /dev/null +++ b/lib/zora/score/getFollowingScore.tsx @@ -0,0 +1,8 @@ +import { FOLLOWERS_PERFECT } from '@/lib/consts'; + +function getFollowingScore(following: number): number { + const perfectFollowing = FOLLOWERS_PERFECT / 5; + return Math.min(Math.round((following / perfectFollowing) * 100), 100); +} + +export default getFollowingScore; diff --git a/lib/zora/score/getZoraProfileScore.tsx b/lib/zora/score/getZoraProfileScore.tsx new file mode 100644 index 00000000..f8560ba7 --- /dev/null +++ b/lib/zora/score/getZoraProfileScore.tsx @@ -0,0 +1,31 @@ +import { Address } from 'viem'; +import getZoraProfile from '../getZoraProfile'; +import getCompletenessScore from './getCompletenessScore'; +import getFollowersScore from './getFollowersScore'; +import getFollowingScore from './getFollowingScore'; + +async function getZoraProfileScore(address: Address) { + const profile = await getZoraProfile(address); + if (!profile) { + return { + username: '', + completeness: 0, + followers: 0, + following: 0, + }; + } + + const completenessScore = getCompletenessScore(profile); + const followersScore = getFollowersScore(profile.totalFollowers); + const followingScore = getFollowingScore(profile.totalFollowing); + const profileComponentScore = (completenessScore + followersScore + followingScore) / 3; + return { + username: profile.username || profile.handle || profile.ensName || address, + completeness: completenessScore, + followers: followersScore, + following: followingScore, + score: profileComponentScore, + }; +} + +export default getZoraProfileScore; diff --git a/lib/zora/score/getZoraScore.tsx b/lib/zora/score/getZoraScore.tsx new file mode 100644 index 00000000..2505eb1f --- /dev/null +++ b/lib/zora/score/getZoraScore.tsx @@ -0,0 +1,12 @@ +import { SCORE_FACTOR } from '@/lib/consts'; + +interface getZoraScoreProps { + profileScore: number; + createScore: number; +} + +function getZoraScore({ profileScore, createScore }: getZoraScoreProps): number { + return SCORE_FACTOR * (profileScore + createScore); +} + +export default getZoraScore; diff --git a/lib/zora/toSparks.tsx b/lib/zora/toSparks.tsx new file mode 100644 index 00000000..276e5ef8 --- /dev/null +++ b/lib/zora/toSparks.tsx @@ -0,0 +1,3 @@ +const weiToSparks = (wei: bigint) => wei / 1000000000000n; + +export default weiToSparks; diff --git a/middleware.ts b/middleware.ts index 3a2ef086..171a96fa 100644 --- a/middleware.ts +++ b/middleware.ts @@ -4,9 +4,21 @@ export function middleware(request: Request) { const requestHeaders = new Headers(request.headers); requestHeaders.set('x-url', request.url); - return NextResponse.next({ + const response = NextResponse.next({ request: { headers: requestHeaders, }, }); + + if (request.url.includes('/api')) { + response.headers.set('Cache-Control', 'no-store, max-age=0, must-revalidate'); + response.headers.set('Pragma', 'no-cache'); + response.headers.set('Expires', '0'); + } + + return response; } + +export const config = { + matcher: ['/((?!_next/static|_next/image|favicon.ico).*)'], +}; diff --git a/package.json b/package.json index b88cc8dc..52ac1466 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "sonata", - "version": "0.9.4", + "name": "myco-api", + "version": "0.0.1", "scripts": { "build": "rm -rf .next && next build", "dev": "next dev", @@ -13,8 +13,6 @@ "author": "https://warpcast.com/sweetman-eth", "license": "MIT", "dependencies": { - "@coinbase/onchainkit": "^0.9.5", - "@neynar/nodejs-sdk": "^1.14.0", "@radix-ui/react-avatar": "^1.0.4", "@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-dropdown-menu": "^2.0.6", @@ -26,37 +24,26 @@ "@radix-ui/react-slider": "^1.1.2", "@radix-ui/react-slot": "^1.0.2", "@radix-ui/react-toast": "^1.1.5", - "@stackso/js-core": "^0.2.30", - "@supabase/supabase-js": "^2.42.4", + "@stackso/js-core": "^0.4.16", "@types/react-slider": "^1.3.6", "@vercel/analytics": "^1.2.2", - "@vercel/og": "^0.6.2", - "@xmtp/frames-validator": "^0.5.2", "@zoralabs/protocol-deployments": "^0.1.13", - "bufferutil": "^4.0.8", "class-variance-authority": "^0.7.0", "clsx": "^2.1.0", - "dayjs": "^1.11.11", "eslint-plugin-tailwindcss": "^3.15.1", - "lodash": "^4.17.21", "lucide-react": "^0.341.0", "next": "^14.2.2", "react": "^18.3.1", "react-dom": "^18.3.1", "react-icons": "^5.1.0", - "react-infinite-scroll-component": "^6.1.0", - "react-spring": "^9.7.3", "tailwind-merge": "^2.3.0", "tailwindcss": "^3.4.1", "tailwindcss-animate": "^1.0.7", - "usehooks-ts": "^3.1.0", - "utf-8-validate": "^6.0.3", "vaul": "^0.9.1", "viem": "^2.9.17", "ws": "^8.16.0" }, "devDependencies": { - "@types/lodash": "^4.17.0", "@types/node": "^20.11.8", "@types/react": "18.2.48", "@types/react-dom": "^18.3.0", @@ -70,7 +57,6 @@ "eslint-plugin-import": "^2.29.1", "postcss": "^8.4.35", "prettier": "^3.2.4", - "supabase": "^1.167.4", "typescript": "^5.3.3" } } diff --git a/providers/FeedProvider.tsx b/providers/FeedProvider.tsx deleted file mode 100644 index d47c7e51..00000000 --- a/providers/FeedProvider.tsx +++ /dev/null @@ -1,170 +0,0 @@ -'use client'; -import { FeedFilter, FeedType } from '@/types/Feed'; -import { - ReactNode, - createContext, - useCallback, - useContext, - useEffect, - useMemo, - useState, -} from 'react'; -import { SupabasePost } from '@/types/SupabasePost'; -import findValidEmbed from '@/lib/findValidEmbed'; -import fetchPosts from '@/lib/supabase/fetchPosts'; -import mergeArraysUniqueByPostHash from '@/lib/mergeArraysUniqueByPostHash'; -import { useNeynarProvider } from './NeynarProvider'; -import { fetchPostsLimit } from '@/lib/consts'; -import { supabaseClient } from '@/lib/supabase/client'; -import fetchMetadata from '@/lib/fetchMetadata'; -import { usePlayer } from '@/providers/audio/PlayerProvider'; -import { useProfileProvider } from './ProfileProvider'; - -type FeedProviderType = { - filter: FeedFilter; - updateFilter: (change: FeedFilter) => void; - feed: SupabasePost[]; - feedType?: string; - setFeedType: (feedType: string) => void; - fetchMore: (start: number) => void; - hasMore: boolean; - handleNext: () => void; - handlePrev: () => void; -}; - -const FeedContext = createContext<FeedProviderType>({} as any); - -const FeedProvider = ({ children }: { children: ReactNode }) => { - const [filter, setFilter] = useState<FeedFilter>({}); - const [feed, setFeed] = useState<SupabasePost[]>([]); - const [feedType, setFeedType] = useState<string>(); - const [hasMore, setHasMore] = useState(true); - const { user, loading: userLoading } = useNeynarProvider(); - const [player, dispatch] = usePlayer(); - const { profile } = useProfileProvider(); - - const fid = user?.fid; - const profileFid = profile?.fid; - - useEffect(() => { - if (userLoading) return; - if (profileFid) { - setFeedType(FeedType.Posts); - return; - } - if (user) { - setFeedType(FeedType.Following); - } else { - setFeedType(FeedType.Trending); - } - }, [userLoading, user, profileFid]); - - const updateFilter = (change: FeedFilter) => { - setFilter((prev) => ({ ...prev, ...change })); - }; - - const fetchMore = useCallback( - async (start: number) => { - if (!feedType) return; - setHasMore(true); - const { posts } = await fetchPosts(supabaseClient, filter, feedType, start, fid, profileFid); - if (!(posts && posts.length === fetchPostsLimit)) { - setHasMore(false); - } - setFeed((prev) => { - const mergedUnique = mergeArraysUniqueByPostHash(prev, posts); - if (profileFid) return mergedUnique.filter((feed) => feed.authorFid === profileFid); - return mergedUnique; - }); - }, - [feedType, filter, supabaseClient, fid, profileFid], - ); - - useEffect(() => { - const init = async () => { - setFeed([]); - await fetchMore(0); - }; - init(); - }, [fetchMore]); - - const filteredFeed = useMemo( - () => - feed.filter((cast) => { - const channelId = cast.channelId; - - if (filter.channel) { - if (!(channelId && channelId.includes(filter.channel))) return false; - } - - if (profileFid && cast.authorFid !== profileFid) return false; - - const validEmbed = findValidEmbed(cast, { platform: filter.platform }); - if (!validEmbed) return false; - - return true; - }), - [feed, filter, profileFid], - ); - - const playFeedId = async (feedIndex: number) => { - const embed = findValidEmbed(feed[feedIndex]); - const feedObj = feed[feedIndex]; - const url = embed?.url; - if (url) { - const metadata = await fetchMetadata(url, feedObj); - if (metadata) - dispatch({ - type: 'PLAY', - payload: { metadata, feedId: feedObj.id }, - }); - } - }; - - const handleNext = async () => { - const feedIndex = feed.findIndex((feedObj: SupabasePost) => feedObj.id === player.feedId); - - if (feedIndex > -1) { - if (feedIndex + 1 < feed.length) { - playFeedId(feedIndex + 1); - } - return; - } - playFeedId(0); - }; - - const handlePrev = async () => { - const feedIndex = feed.findIndex((feedObj: SupabasePost) => feedObj.id === player.feedId); - if (feedIndex > -1) { - if (feedIndex && feedIndex > 0) { - playFeedId(feedIndex - 1); - } - return; - } - playFeedId(0); - }; - - const value = { - filter, - updateFilter, - feed: filteredFeed, - feedType, - setFeedType, - fetchMore, - hasMore, - handleNext, - handlePrev, - }; - - return <FeedContext.Provider value={value}>{children}</FeedContext.Provider>; -}; - -export const useFeedProvider = () => { - const context = useContext(FeedContext); - if (!context) { - throw new Error('useFeedProvider must be used within a FeedProvider'); - } - return context; -}; - -export default FeedProvider; diff --git a/providers/NeynarProvider.tsx b/providers/NeynarProvider.tsx deleted file mode 100644 index ff3b5dfb..00000000 --- a/providers/NeynarProvider.tsx +++ /dev/null @@ -1,96 +0,0 @@ -import { createContext, useContext, useCallback, useState, useEffect } from 'react'; -import { Signer, User } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import getUser from '@/lib/sonata/getUser'; - -const clientId = process.env.NEXT_PUBLIC_NEYNAR_CLIENT_ID; -const loginUrl = 'https://app.neynar.com/login'; - -const isClient = typeof window !== 'undefined'; - -type NeynarContextType = { - signer: Signer | null; - signIn: () => void; - signOut: () => void; - user?: User; - loading: boolean; -}; - -const NeynarContext = createContext<NeynarContextType>({ - signer: null, - signIn() {}, - signOut() {}, - loading: true, -}); - -const NeynarProvider = ({ children }: any) => { - if (!clientId) { - throw new Error('NEXT_PUBLIC_NEYNAR_CLIENT_ID is not defined in .env'); - } - - const [signer, setSigner] = useState<Signer | null>(() => { - if (isClient) { - const savedSigner = localStorage.getItem('signer'); - return savedSigner ? JSON.parse(savedSigner) : null; - } - return null; - }); - - const [user, setUser] = useState<User>(); - const [loading, setLoading] = useState(true); - - const signIn = useCallback(() => { - const authUrl = new URL(loginUrl); - const authOrigin = new URL(loginUrl).origin; - authUrl.searchParams.append('client_id', clientId); - const authWindow = window.open(authUrl.toString()); - - const messageHandler = (event: any) => { - if (event.origin === authOrigin && event.data.is_authenticated) { - if (authWindow) { - authWindow.close(); - } - window.removeEventListener('message', messageHandler); - const signerData = event.data as Signer; - setSigner(signerData); - localStorage.setItem('signer', JSON.stringify(signerData)); - } - }; - - window.addEventListener('message', messageHandler, false); - }, []); - - const signOut = useCallback(() => { - setSigner(null); - localStorage.removeItem('signer'); - }, []); - - useEffect(() => { - const updateUser = async () => { - setLoading(true); - if (!signer?.fid) { - setUser(undefined); - } else { - const user = await getUser(signer.fid); - setUser(user); - } - setLoading(false); - }; - updateUser(); - }, [signer?.fid]); - - return ( - <NeynarContext.Provider value={{ signer, signIn, signOut, user, loading }}> - {children} - </NeynarContext.Provider> - ); -}; - -export const useNeynarProvider = () => { - const context = useContext(NeynarContext); - if (!context) { - throw new Error('useNeynarProvider must be used within a NeynarProvider'); - } - return context; -}; - -export default NeynarProvider; diff --git a/providers/ProfileProvider.tsx b/providers/ProfileProvider.tsx deleted file mode 100644 index ec362cbf..00000000 --- a/providers/ProfileProvider.tsx +++ /dev/null @@ -1,79 +0,0 @@ -'use client'; -import fetchMetadata from '@/lib/fetchMetadata'; -import findValidEmbed from '@/lib/findValidEmbed'; -import getFollowers from '@/lib/neynar/getFollowers'; -import getNeynarProfile from '@/lib/neynar/getNeynarProfile'; -import getUserSongs from '@/lib/sonata/getUserSongs'; -import { NeynarUserData } from '@/types/NeynarUserData'; -import { SupabasePost } from '@/types/SupabasePost'; -import { TrackMetadata } from '@/types/Track'; -import { useParams } from 'next/navigation'; -import { ReactNode, createContext, useContext, useEffect, useState } from 'react'; - -type ProfileProviderType = { - profile: NeynarUserData | null; - songs: SupabasePost[]; - topSongMetadata: TrackMetadata | null; - followers: NeynarUserData[]; -}; - -const ProfileContext = createContext<ProfileProviderType>({} as any); - -const ProfileProvider = ({ children }: { children: ReactNode }) => { - const { username } = useParams(); - const [profile, setProfile] = useState<NeynarUserData | null>(null); - const [songs, setSongs] = useState<SupabasePost[]>([]); - const [topSongMetadata, setTopSongMetadata] = useState<TrackMetadata | null>(null); - const [followers, setFollowers] = useState<NeynarUserData[]>([]); - - useEffect(() => { - const init = async () => { - const data = await getNeynarProfile(username as string); - setProfile(data); - const response = await getFollowers(data.fid); - setFollowers(response.users); - const posts = await getUserSongs(data.fid); - setSongs(posts.songs); - if (posts.length <= 0) return; - const topPost = posts.songs[0]; - const embed = findValidEmbed(topPost); - const url = embed?.url; - if (!url) return; - try { - const metadata = await fetchMetadata(url, topPost); - if (!metadata) return; - setTopSongMetadata(metadata); - } catch (error) { - console.log(error); - } - }; - - if (!username) { - setProfile(null); - setFollowers([]); - setSongs([]); - setTopSongMetadata(null); - return; - } - init(); - }, [username]); - - const value = { - profile, - songs, - topSongMetadata, - followers, - }; - - return <ProfileContext.Provider value={value}>{children}</ProfileContext.Provider>; -}; - -export const useProfileProvider = () => { - const context = useContext(ProfileContext); - if (!context) { - throw new Error('useProfileProvider must be used within a ProfileProvider'); - } - return context; -}; - -export default ProfileProvider; diff --git a/providers/TipProvider.tsx b/providers/TipProvider.tsx deleted file mode 100644 index e7160353..00000000 --- a/providers/TipProvider.tsx +++ /dev/null @@ -1,176 +0,0 @@ -import executeDegenTip from '@/lib/degen/executeDegenTip'; -import executeTip from '@/lib/sonata/executeTip'; -import getCurrentNotes from '@/lib/sonata/getCurrentNotes'; -import { TipResponse } from '@/types/TipResponse'; -import { isEmpty, isNil } from 'lodash'; -import { createContext, useContext, useEffect, useState } from 'react'; -import { Address } from 'viem'; -import { useNeynarProvider } from './NeynarProvider'; -import { useToast } from '@/components/ui/use-toast'; -import claimAirdrop from '@/lib/sonata/claimAirdrop'; -import { supabaseClient } from '@/lib/supabase/client'; - -const TipContext = createContext<any>(null); - -const TipProvider = ({ children }: any) => { - const { toast } = useToast(); - const [airdropBalance, setAirdropBalance] = useState<bigint | undefined>(undefined); - const [balance, setBalance] = useState<bigint | undefined>(undefined); - const [dailyTipAllowance, setDailyTipAllowance] = useState<bigint | undefined>(undefined); - const { user, signer } = useNeynarProvider(); - - const [remainingTipAllocation, setRemainingTipAllocation] = useState<bigint | undefined>( - undefined, - ); - - useEffect(() => { - if (isNil(user)) return; - const fetchTipAllocation = async () => { - // Assuming 'fid' is the primary key, adjust if it's not - const { data, error } = await supabaseClient - .from('tips') - .select('remaining_tip_allocation,daily_tip_allocation') - .eq('fid', user.fid) - .single(); - - if (error) { - console.error('Error fetching data:', error); - return; - } - - if (data) { - setRemainingTipAllocation(BigInt(data.remaining_tip_allocation)); - setDailyTipAllowance(BigInt(data.daily_tip_allocation)); - } - }; - - fetchTipAllocation(); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [user]); // Refetch if fid changes - - useEffect(() => { - if (isNil(user)) return; - syncPoints(); - getAirdropBalance(); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [user]); - - const syncPoints = async () => { - if (isNil(user) || user.verifications.length === 0) return; - - let totalBalance = BigInt(0); - - for (const verification of user.verifications) { - const currentBalance = await getCurrentNotes(verification as Address); - totalBalance += BigInt(currentBalance); - } - - setBalance(totalBalance); - }; - - const getAirdropBalance = async () => { - if (isNil(user) || user.verifications.length === 0) return; - - const { data } = await supabaseClient - .from('airdrop') - .select('notes') - .ilike('wallet_address', user.verifications[0]) - .single(); - - const currentBalance = data?.notes; - setAirdropBalance(currentBalance); - }; - - const tipDegen = async (amount: bigint, postHash: string) => { - if (isNil(user) || isEmpty(user.verifications) || isNil(signer?.signer_uuid)) { - toast({ - title: 'Unable to Tip', - description: 'Something went wrong', - variant: 'destructive', - }); - return; - } - - const data = await executeDegenTip( - user.verifications[0], - signer?.signer_uuid, - amount, - postHash, - ); - const message = data.message; - toast({ description: message }); - - return data; - }; - - const tip = async ( - amount: bigint, - postHash: string, - recipientFid: number, - ): Promise<TipResponse | undefined> => { - if ( - isNil(user) || - isNil(remainingTipAllocation) || - isEmpty(user.verifications) || - isNil(signer) || - isNil(signer?.signer_uuid) - ) { - toast({ - title: 'Unable to Tip', - description: 'Something went wrong', - variant: 'destructive', - }); - return; - } - - const data = await executeTip(signer?.signer_uuid, amount, postHash, recipientFid); - const message = data.message; - const tipRemaining = data.tipRemaining; - - setRemainingTipAllocation(BigInt(tipRemaining)); - toast({ description: message }); - - return data; - }; - - const refreshBalances = async () => { - getAirdropBalance(); - syncPoints(); - }; - - const handlePost = async () => { - if (user?.verifications.length === 0) { - toast({ description: 'Please verify an address on warpcast and try again' }); - } else if (user?.verifications) { - const response = await claimAirdrop(signer?.signer_uuid, user?.verifications[0]); - toast({ description: `${response.message}` }); - await refreshBalances(); - } - }; - - return ( - <TipContext.Provider - value={{ - balance, - tip, - tipDegen, - remainingTipAllocation, - dailyTipAllowance, - airdropBalance, - handlePost, - }} - > - {children} - </TipContext.Provider> - ); -}; - -export const useTipProvider = () => { - const context = useContext(TipContext); - if (!context) { - throw new Error('useTipProvider must be used within a FeedProvider'); - } - return context; -}; - -export default TipProvider; diff --git a/providers/UiProvider.tsx b/providers/UiProvider.tsx deleted file mode 100644 index 79d218f6..00000000 --- a/providers/UiProvider.tsx +++ /dev/null @@ -1,61 +0,0 @@ -import SignInDialog from '@/components/SignInDialog'; -import { CHANNELS } from '@/lib/consts'; -import { createContext, useContext, useEffect, useState } from 'react'; -import { useMediaQuery } from 'usehooks-ts'; -import { useNeynarProvider } from './NeynarProvider'; - -type UiContextType = { - menuOpen: boolean; - setMenuOpen: React.Dispatch<React.SetStateAction<boolean>>; - checkLoggedIn: () => boolean; - isMobile: boolean; - menuItems: typeof CHANNELS; -}; -const UiContext = createContext<UiContextType>({} as any); - -export default function UiProvider({ children }: any) { - const [menuOpen, setMenuOpen] = useState(false); - const [isSignInDialogOpen, setIsSignInDialogOpen] = useState(false); - const [menuItems, setMenuItems] = useState(CHANNELS); - const { signer } = useNeynarProvider(); - const isMobile = useMediaQuery('(max-width: 768px)'); - - const checkLoggedIn = () => { - if (!signer) { - setIsSignInDialogOpen(true); - return false; - } - return true; - }; - - useEffect(() => { if (signer) setIsSignInDialogOpen(false) }, [signer]); - - useEffect(() => { - fetch( - '/api/channel/stats?apply_channel_filter=true&only_channel_ids=true', - { cache: 'force-cache' } - ) - .then(res => res.json()) - .then(data => { - const items = data?.channels?.map( - (channelId: string) => CHANNELS.find(channel => channel.value == channelId)! - ); - if (items) setMenuItems(items); - }); - }, []); - - return ( - <UiContext.Provider value={{ menuOpen, setMenuOpen, checkLoggedIn, isMobile, menuItems }}> - {children} - <SignInDialog open={isSignInDialogOpen} setOpen={setIsSignInDialogOpen} /> - </UiContext.Provider> - ); -} - -export const useUi = () => { - const context = useContext(UiContext); - if (!context) { - throw new Error('useUi must be used within a UiProvider'); - } - return context; -}; diff --git a/providers/audio/PlayerProvider.tsx b/providers/audio/PlayerProvider.tsx deleted file mode 100644 index 86e82d81..00000000 --- a/providers/audio/PlayerProvider.tsx +++ /dev/null @@ -1,178 +0,0 @@ -import { - Dispatch, - ReactNode, - createContext, - useContext, - useEffect, - useMemo, - useReducer, -} from 'react'; -import { useSoundcloud } from './SoundcloudProvider'; -import { useSpotify } from './SpotifyProvider'; -import { TrackMetadata } from '@/types/Track'; -import { useSound } from './SoundProvider'; -import { useYoutube } from './YoutubeProvider'; -import { useZoraProvider } from './ZoraProvider'; - -type Player = { - playing: boolean; - position: number; - duration: number; - metadata?: TrackMetadata; - loading: boolean; - seekTo: number | null; - feedId: number; -}; - -export type PlayerAction = - | { - type: 'PLAY'; - payload: { - metadata: TrackMetadata; - feedId: number; - }; - } - | { - type: 'RESUME'; - payload: { - id: string; - }; - } - | { - type: 'PAUSE'; - payload: { - id: string; - }; - } - | { - type: 'SEEK'; - payload: { - position: number; - }; - } - | { - type: 'SEEKED'; - } - | { - type: 'PROGRESS'; - payload: { - position: number; - }; - } - | { - type: 'SET_DURATION'; - payload: { - duration: number; - }; - } - | { - type: 'LOADED'; - }; - -const initialState: Player = { - playing: false, - position: 0, - duration: 0, - loading: false, - seekTo: null, - feedId: -1, -}; - -const PlayerContext = createContext<[Player, Dispatch<PlayerAction>]>([initialState, () => {}]); - -const playerReducer = (state: Player, action: PlayerAction) => { - switch (action.type) { - case 'PLAY': { - const { metadata, feedId } = action.payload; - return { - ...state, - playing: true, - metadata, - position: 0, - loading: true, - feedId, - }; - } - case 'RESUME': { - const { id } = action.payload; - if (state.metadata?.id !== id) return state; - return { ...state, playing: true }; - } - case 'PAUSE': { - const { id } = action.payload; - if (state.metadata?.id !== id) return state; - return { ...state, playing: false }; - } - case 'SEEK': - return { ...state, seekTo: action.payload.position }; - case 'SEEKED': - return { ...state, seekTo: null }; - case 'PROGRESS': { - if (state.loading) return state; - return { ...state, position: action.payload.position }; - } - case 'SET_DURATION': - return { ...state, duration: action.payload.duration }; - case 'LOADED': - return { ...state, loading: false }; - default: - return state; - } -}; - -export default function PlayerProvider({ children }: { children: ReactNode }) { - const [player, dispatch] = useReducer(playerReducer, initialState); - const { metadata } = player; - const scController = useSoundcloud(dispatch); - const soundController = useSound(dispatch); - const spotifyController = useSpotify(dispatch); - const youtubeController = useYoutube(dispatch); - const zoraController = useZoraProvider(dispatch); - - const currentController = useMemo(() => { - if (metadata?.type === 'soundcloud') return scController; - if (metadata?.type === 'soundxyz') return soundController; - if (metadata?.type === 'spotify') return spotifyController; - if (metadata?.type === 'youtube') return youtubeController; - if (metadata?.type === 'zora') return zoraController; - return null; - }, [ - metadata?.type, - scController, - soundController, - spotifyController, - youtubeController, - zoraController - ]); - - useEffect(() => { - if (!metadata?.url || !currentController) return; - currentController.load(metadata.url); - return () => currentController.pause(); - }, [metadata?.url, metadata?.feedId, currentController]); - - useEffect(() => { - if (player.loading || !currentController) return; - if (player.playing) { - currentController.play(); - } else { - currentController.pause(); - } - }, [player.loading, player.playing, currentController]); - - useEffect(() => { - if (player.seekTo === null || !currentController) return; - currentController.seek(player.seekTo); - dispatch({ type: 'SEEKED' }); - }, [player.seekTo, currentController]); - - return <PlayerContext.Provider value={[player, dispatch]}>{children}</PlayerContext.Provider>; -} - -export const usePlayer = () => { - const context = useContext(PlayerContext); - if (!context) { - throw new Error('usePlayer must be used within a PlayerProvider'); - } - return context; -}; diff --git a/providers/audio/SoundProvider.tsx b/providers/audio/SoundProvider.tsx deleted file mode 100644 index b57f2ed0..00000000 --- a/providers/audio/SoundProvider.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import { AudioController } from '@/types/AudioController'; -import { PlayerAction } from './PlayerProvider'; -import { - Dispatch, - useContext, - createContext, - useEffect, - useState, - useCallback, - useMemo, -} from 'react'; - -type SoundContext = { - audio: HTMLAudioElement | undefined; -}; - -const soundContext = createContext<SoundContext>({ audio: undefined }); - -export function SoundProvider({ children }: { children: React.ReactNode }) { - const [audio, setAudio] = useState<HTMLAudioElement>(); - - useEffect(() => { - setAudio(new Audio()); - }, []); - - return <soundContext.Provider value={{ audio }}>{children}</soundContext.Provider>; -} - -export const useSound = (dispatch: Dispatch<PlayerAction>) => { - const { audio } = useContext(soundContext); - - useEffect(() => { - if (!audio) return; - audio.ontimeupdate = () => { - dispatch({ type: 'PROGRESS', payload: { position: audio.currentTime * 1000 } }); - }; - audio.oncanplay = () => { - dispatch({ type: 'LOADED' }); - dispatch({ type: 'SET_DURATION', payload: { duration: audio.duration * 1000 } }); - }; - }, [audio, dispatch]); - - const play = useCallback(() => audio && audio.play(), [audio]); - const pause = useCallback(() => audio && audio.pause(), [audio]); - const load = useCallback( - (url: string) => { - if (!audio) return; - audio.src = url; - audio.load(); - }, - [audio], - ); - const seek = useCallback( - (time: number) => { - if (!audio) return; - audio.currentTime = time / 1000; - }, - [audio], - ); - - const controller: AudioController = useMemo( - () => ({ play, pause, load, seek }), - [play, pause, load, seek], - ); - return controller; -}; diff --git a/providers/audio/SoundcloudProvider.tsx b/providers/audio/SoundcloudProvider.tsx deleted file mode 100644 index 6e323266..00000000 --- a/providers/audio/SoundcloudProvider.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import Script from 'next/script'; -import { - Dispatch, - createContext, - useCallback, - useContext, - useEffect, - useMemo, - useState, -} from 'react'; -import { PlayerAction } from './PlayerProvider'; -import { AudioController } from '@/types/AudioController'; - -const dummySrc = 'https://w.soundcloud.com/player/?url=https://api.soundcloud.com/tracks/293'; -const soundcloudContext = createContext<any>(null); - -export function SoundcloudProvider({ children }: { children: React.ReactNode }) { - const [api, setApi] = useState<any>(null); - const [widget, setWidget] = useState<any>(null); - - useEffect(() => { - if (!api) return; - - let iframe: any = document.getElementById('sc-iframe'); - if (!iframe) { - const playerPortal = document.getElementById('player-portal'); - if (!playerPortal) return; - - iframe = document.createElement('iframe'); - iframe.id = 'sc-iframe'; - iframe.allow = 'autoplay'; - iframe.src = dummySrc; - playerPortal.appendChild(iframe); - } - const widget = api.Widget('sc-iframe'); - setWidget(widget); - }, [api]); - - return ( - <soundcloudContext.Provider value={{ widget, api }}> - <Script - src="https://w.soundcloud.com/player/api.js" - async - onLoad={() => { - setApi((window as any).SC); - }} - /> - {children} - </soundcloudContext.Provider> - ); -} - -export const useSoundcloud = (dispatch: Dispatch<PlayerAction>) => { - const { api, widget }: any = useContext(soundcloudContext); - - useEffect(() => { - if (!widget) return; - widget.bind(api.Widget.Events.READY, () => { - widget.bind(api.Widget.Events.PLAY_PROGRESS, (position: any) => { - dispatch({ type: 'PROGRESS', payload: { position: position.currentPosition } }); - }); - - widget.bind(api.Widget.Events.ERROR, (e: any) => { - console.error('error', e); - }); - - widget.bind(api.Widget.Events.PAUSE, (e: any) => { - dispatch({ type: 'PAUSE', payload: { id: String(e.soundId) } }); - }); - }); - }, [widget, api, dispatch]); - - const load = useCallback( - (src: string) => { - widget.load(src, { - callback() { - widget.getDuration((duration: number) => { - dispatch({ type: 'SET_DURATION', payload: { duration } }); - }); - dispatch({ type: 'LOADED' }); - }, - }); - }, - [dispatch, widget], - ); - - const play = useCallback(() => widget.play(), [widget]); - const pause = useCallback(() => widget.pause(), [widget]); - const seek = useCallback((time: number) => widget.seekTo(time), [widget]); - const controller: AudioController = useMemo( - () => ({ play, pause, load, seek }), - [play, pause, load, seek], - ); - return controller; -}; diff --git a/providers/audio/SpotifyProvider.tsx b/providers/audio/SpotifyProvider.tsx deleted file mode 100644 index 13f73b84..00000000 --- a/providers/audio/SpotifyProvider.tsx +++ /dev/null @@ -1,91 +0,0 @@ -import Script from 'next/script'; -import { - Dispatch, - createContext, - useCallback, - useContext, - useEffect, - useMemo, - useState, -} from 'react'; -import { PlayerAction } from './PlayerProvider'; -import { AudioController } from '@/types/AudioController'; - -const spotifyContext = createContext<any>(null); - -export function SpotifyProvider({ children }: { children: React.ReactNode }) { - const [api, setApi] = useState<any>(null); - const [embedController, setEmbedController] = useState<any>(null); - - useEffect(() => { - (window as any).onSpotifyIframeApiReady = setApi; - }, []); - - useEffect(() => { - if (!api || embedController) return; - const playerPortal = document.getElementById('player-portal'); - if (!playerPortal) return; - const playerContainer = document.createElement('div'); - playerContainer.id = 'spotify-placeholder'; - playerPortal.appendChild(playerContainer); - api.createController( - playerContainer, - { height: '100px', width: '300px', uri: 'spotify:track:51H2y6YrNNXcy3dfc3qSbA' }, - setEmbedController, - ); - - return () => { - embedController?.destroy(); - }; - }, [api, embedController]); - - return ( - <spotifyContext.Provider value={{ embedController }}> - <Script src="https://open.spotify.com/embed/iframe-api/v1" async /> - {children} - </spotifyContext.Provider> - ); -} - -export const useSpotify = (dispatch: Dispatch<PlayerAction>) => { - const { embedController }: any = useContext(spotifyContext); - - useEffect(() => { - if (!embedController) return; - embedController.addListener('playback_update', (e: any) => { - const { - data: { isPaused, isBuffering, position }, - } = e; - const loading = embedController.loading; - const currentSrc = embedController.iframeElement.src; - const trackId = currentSrc.split('?')[0].split('/').pop(); - - if (!isBuffering && !loading) { - if (isPaused) { - dispatch({ type: 'PAUSE', payload: { id: trackId } }); - } else { - dispatch({ type: 'RESUME', payload: { id: trackId } }); - } - } - dispatch({ type: 'PROGRESS', payload: { position } }); - if (position === 0) { - dispatch({ type: 'SET_DURATION', payload: { duration: 30 * 1000 } }); - } - }); - - embedController.addListener('ready', () => { - dispatch({ type: 'LOADED' }); - }); - }, [embedController, dispatch]); - - const play = useCallback(() => embedController.resume(), [embedController]); - const pause = useCallback(() => embedController.pause(), [embedController]); - const load = useCallback((url: string) => embedController.loadUri(url), [embedController]); - const seek = useCallback((time: number) => embedController.seek(time / 1000), [embedController]); - - const controller: AudioController = useMemo( - () => ({ play, pause, load, seek }), - [play, pause, load, seek], - ); - return controller; -}; diff --git a/providers/audio/YoutubeProvider.tsx b/providers/audio/YoutubeProvider.tsx deleted file mode 100644 index 4510d6a9..00000000 --- a/providers/audio/YoutubeProvider.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import Script from 'next/script'; -import { - Dispatch, - createContext, - useContext, - useEffect, - useState, - useCallback, - useMemo, -} from 'react'; -import { PlayerAction } from './PlayerProvider'; -import { AudioController } from '@/types/AudioController'; - -const youtubeContext = createContext<any>(null); - -export function YoutubeProvider({ children }: { children: React.ReactNode }) { - const [player, setPlayer] = useState<any>(null); - const [api, setApi] = useState<any>(null); - - useEffect(() => { - (window as any).onYouTubeIframeAPIReady = () => { - const anyWin = window as any; - setApi(anyWin.YT); - }; - }, []); - - useEffect(() => { - if (!api) return; - const playerPortal = document.getElementById('player-portal'); - if (!playerPortal) return; - - const playerContainer = document.createElement('div'); - playerContainer.id = 'yt-placeholder'; - playerPortal.appendChild(playerContainer); - const player = new api.Player('yt-placeholder', { - height: '300', - width: '300', - }); - setPlayer(player); - - return () => { - player.destroy(); - }; - }, [api]); - - return ( - <youtubeContext.Provider value={{ player, api }}> - <Script src="https://www.youtube.com/iframe_api" /> - {children} - </youtubeContext.Provider> - ); -} - -export const useYoutube = (dispatch: Dispatch<PlayerAction>) => { - const { player, api }: any = useContext(youtubeContext); - - useEffect(() => { - if (!(player && api)) return; - - let progressPoll: ReturnType<typeof setInterval>; - - player.addEventListener('onStateChange', (event: any) => { - if (event.data === api.PlayerState.PLAYING) { - progressPoll = setInterval(() => { - const position = player.getCurrentTime() * 1000; - dispatch({ type: 'PROGRESS', payload: { position } }); - }, 1000); - return; - } - clearInterval(progressPoll); - if (event.data === api.PlayerState.CUED) { - dispatch({ type: 'LOADED' }); - dispatch({ type: 'SET_DURATION', payload: { duration: player.getDuration() * 1000 } }); - } - }); - }, [player, dispatch, api]); - - const load = useCallback( - (videoId: string) => { - if (!player) return; - player.cueVideoById(videoId); - }, - [player], - ); - const play = useCallback(() => player.playVideo(), [player]); - const pause = useCallback(() => player.pauseVideo(), [player]); - const seek = useCallback((time: number) => player.seekTo(time / 1000, true), [player]); - - const controller: AudioController = useMemo( - () => ({ play, pause, load, seek }), - [play, pause, load, seek], - ); - - return controller; -}; diff --git a/providers/audio/ZoraProvider.tsx b/providers/audio/ZoraProvider.tsx deleted file mode 100644 index e1de9883..00000000 --- a/providers/audio/ZoraProvider.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { AudioController } from '@/types/AudioController'; -import { - Dispatch, - createContext, - useContext, - useEffect, - useMemo, - useState -} from 'react'; -import { PlayerAction } from './PlayerProvider'; - -const ZoraContext = createContext<HTMLAudioElement | null>(null); - -export function ZoraProvider({ children }: { children: React.ReactNode }) { - const [audio] = useState(typeof Audio !== "undefined" ? new Audio : null); - - return <ZoraContext.Provider value={audio}>{children}</ZoraContext.Provider>; -} - -export const useZoraProvider = (dispatch: Dispatch<PlayerAction>): AudioController => { - const audio = useContext(ZoraContext)!; - - useEffect(() => { - const ontimeupdate = () => { - dispatch({ type: 'PROGRESS', payload: { position: audio.currentTime * 1000 } }); - }; - const oncanplay = () => { - dispatch({ type: 'LOADED' }); - dispatch({ type: 'SET_DURATION', payload: { duration: audio.duration * 1000 } }); - }; - - audio.addEventListener('timeupdate', ontimeupdate); - audio.addEventListener('canplay', oncanplay); - - return () => { - audio.removeEventListener('timeupdate', ontimeupdate); - audio.removeEventListener('canplay', oncanplay); - } - }, [audio, dispatch]); - - return useMemo(() => ({ - play: () => audio.play(), - pause: () => audio.pause(), - load: (url: string) => { audio.src = url; audio.load() }, - seek: (time: number) => audio.currentTime = time / 1000, - }), [audio]); -}; diff --git a/providers/audio/index.tsx b/providers/audio/index.tsx deleted file mode 100644 index 0732ee0c..00000000 --- a/providers/audio/index.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { ReactNode } from 'react'; -import PlayerProvider from './PlayerProvider'; -import { SoundProvider } from './SoundProvider'; -import { SoundcloudProvider } from './SoundcloudProvider'; -import { SpotifyProvider } from './SpotifyProvider'; -import { YoutubeProvider } from './YoutubeProvider'; -import { ZoraProvider } from './ZoraProvider'; - -export default function AudioProvider({ children }: { children: ReactNode }) { - return ( - <SpotifyProvider> - <SoundcloudProvider> - <SoundProvider> - <YoutubeProvider> - <ZoraProvider> - <PlayerProvider>{children}</PlayerProvider> - </ZoraProvider> - </YoutubeProvider> - </SoundProvider> - </SoundcloudProvider> - </SpotifyProvider> - ); -} diff --git a/providers/index.tsx b/providers/index.tsx deleted file mode 100644 index 4c613739..00000000 --- a/providers/index.tsx +++ /dev/null @@ -1,18 +0,0 @@ -'use client'; - -import NeynarProvider from '@/providers/NeynarProvider'; -import TipProvider from './TipProvider'; -import UiProvider from './UiProvider'; -import AudioProvider from './audio'; - -export default function Providers({ children }: { children: React.ReactNode }) { - return ( - <NeynarProvider> - <TipProvider> - <UiProvider> - <AudioProvider>{children}</AudioProvider> - </UiProvider> - </TipProvider> - </NeynarProvider> - ); -} diff --git a/public/Sora-Regular.ttf b/public/Sora-Regular.ttf deleted file mode 100644 index 768f0986..00000000 Binary files a/public/Sora-Regular.ttf and /dev/null differ diff --git a/public/Sora-SemiBold.ttf b/public/Sora-SemiBold.ttf deleted file mode 100644 index ea117e8b..00000000 Binary files a/public/Sora-SemiBold.ttf and /dev/null differ diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index a7c41c2d..00000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/images/background.png b/public/images/background.png deleted file mode 100644 index 8941642d..00000000 Binary files a/public/images/background.png and /dev/null differ diff --git a/public/images/degenchain.png b/public/images/degenchain.png deleted file mode 100644 index 251764dd..00000000 Binary files a/public/images/degenchain.png and /dev/null differ diff --git a/public/images/farcaster.svg b/public/images/farcaster.svg deleted file mode 100644 index f2502a66..00000000 --- a/public/images/farcaster.svg +++ /dev/null @@ -1,5 +0,0 @@ -<svg width="323" height="297" viewBox="0 0 323 297" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M55.5867 0.733337H263.413V296.267H232.907V160.893H232.607C229.236 123.479 197.792 94.16 159.5 94.16C121.208 94.16 89.7642 123.479 86.3926 160.893H86.0933V296.267H55.5867V0.733337Z" fill="white"/> -<path d="M0.293335 42.68L12.6867 84.6267H23.1733V254.32C17.9082 254.32 13.64 258.588 13.64 263.853V275.293H11.7333C6.46822 275.293 2.2 279.562 2.2 284.827V296.267H108.973V284.827C108.973 279.562 104.705 275.293 99.44 275.293H97.5333V263.853C97.5333 258.588 93.2651 254.32 88 254.32H76.56V42.68H0.293335Z" fill="white"/> -<path d="M234.813 254.32C229.548 254.32 225.28 258.588 225.28 263.853V275.293H223.373C218.108 275.293 213.84 279.562 213.84 284.827V296.267H320.613V284.827C320.613 279.562 316.345 275.293 311.08 275.293H309.173V263.853C309.173 258.588 304.905 254.32 299.64 254.32V84.6267H310.127L322.52 42.68H246.253V254.32H234.813Z" fill="white"/> -</svg> diff --git a/public/images/hypersub.png b/public/images/hypersub.png deleted file mode 100644 index 8767d1df..00000000 Binary files a/public/images/hypersub.png and /dev/null differ diff --git a/public/images/logo2.png b/public/images/logo2.png deleted file mode 100644 index 61d106c0..00000000 Binary files a/public/images/logo2.png and /dev/null differ diff --git a/public/images/neynar.svg b/public/images/neynar.svg deleted file mode 100644 index fe035efa..00000000 --- a/public/images/neynar.svg +++ /dev/null @@ -1,5 +0,0 @@ -<svg width="17" height="15" viewBox="0 0 17 15" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M2.76278 0.117188H13.147V14.8838H11.6227V8.11973H11.6078C11.4393 6.25031 9.8682 4.78534 7.95491 4.78534C6.04162 4.78534 4.47049 6.25031 4.30203 8.11973H4.28708V14.8838H2.76278V0.117188Z" fill="#8B49F7"/> -<path d="M0 2.21309L0.619245 4.309H1.14322V12.7879C0.880144 12.7879 0.666879 13.0012 0.666879 13.2642V13.8358H0.57161C0.308534 13.8358 0.0952683 14.0491 0.0952683 14.3122V14.8838H5.4303V14.3122C5.4303 14.0491 5.21703 13.8358 4.95396 13.8358H4.85869V13.2642C4.85869 13.0012 4.64542 12.7879 4.38235 12.7879H3.81074V2.21309H0Z" fill="#8B49F7"/> -<path d="M11.718 12.7879C11.4549 12.7879 11.2417 13.0012 11.2417 13.2642V13.8358H11.1464C10.8833 13.8358 10.6701 14.0491 10.6701 14.3122V14.8838H16.0051V14.3122C16.0051 14.0491 15.7918 13.8358 15.5288 13.8358H15.4335V13.2642C15.4335 13.0012 15.2202 12.7879 14.9571 12.7879V4.309H15.4811L16.1004 2.21309H12.2896V12.7879H11.718Z" fill="#8B49F7"/> -</svg> diff --git a/public/images/notes.jpg b/public/images/notes.jpg deleted file mode 100644 index bae4073e..00000000 Binary files a/public/images/notes.jpg and /dev/null differ diff --git a/public/images/notes.png b/public/images/notes.png deleted file mode 100644 index 3b062cc4..00000000 Binary files a/public/images/notes.png and /dev/null differ diff --git a/public/images/og.png b/public/images/og.png deleted file mode 100644 index db2c499c..00000000 Binary files a/public/images/og.png and /dev/null differ diff --git a/public/images/og.webp b/public/images/og.webp deleted file mode 100644 index 6994e072..00000000 Binary files a/public/images/og.webp and /dev/null differ diff --git a/public/images/placeholder.png b/public/images/placeholder.png deleted file mode 100644 index 46009ad1..00000000 Binary files a/public/images/placeholder.png and /dev/null differ diff --git a/public/images/search.png b/public/images/search.png deleted file mode 100644 index 6ad4032a..00000000 Binary files a/public/images/search.png and /dev/null differ diff --git a/public/images/share.png b/public/images/share.png deleted file mode 100644 index 669b6934..00000000 Binary files a/public/images/share.png and /dev/null differ diff --git a/public/images/skip-back.png b/public/images/skip-back.png deleted file mode 100644 index 490c1e02..00000000 Binary files a/public/images/skip-back.png and /dev/null differ diff --git a/public/images/skip-forward.png b/public/images/skip-forward.png deleted file mode 100644 index 11076dd0..00000000 Binary files a/public/images/skip-forward.png and /dev/null differ diff --git a/public/images/warpcast.png b/public/images/warpcast.png deleted file mode 100644 index b239173b..00000000 Binary files a/public/images/warpcast.png and /dev/null differ diff --git a/public/images/x-logo.png b/public/images/x-logo.png deleted file mode 100644 index 49701b4b..00000000 Binary files a/public/images/x-logo.png and /dev/null differ diff --git a/public/images/xmtp.png b/public/images/xmtp.png deleted file mode 100644 index 032f396a..00000000 Binary files a/public/images/xmtp.png and /dev/null differ diff --git a/public/images/zorb.png b/public/images/zorb.png deleted file mode 100644 index 1647e075..00000000 Binary files a/public/images/zorb.png and /dev/null differ diff --git a/supabase/.gitignore b/supabase/.gitignore deleted file mode 100644 index a3ad8805..00000000 --- a/supabase/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Supabase -.branches -.temp -.env diff --git a/supabase/config.toml b/supabase/config.toml deleted file mode 100644 index 60ef503b..00000000 --- a/supabase/config.toml +++ /dev/null @@ -1,171 +0,0 @@ -# A string used to distinguish different Supabase projects on the same host. Defaults to the -# working directory name when running `supabase init`. -project_id = "sonata" - -[api] -enabled = true -# Port to use for the API URL. -port = 54321 -# Schemas to expose in your API. Tables, views and stored procedures in this schema will get API -# endpoints. `public` is always included. -schemas = ["public", "graphql_public"] -# Extra schemas to add to the search_path of every request. `public` is always included. -extra_search_path = ["public", "extensions"] -# The maximum number of rows returns from a view, table, or stored procedure. Limits payload size -# for accidental or malicious requests. -max_rows = 1000 - -[db] -# Port to use for the local database URL. -port = 54322 -# Port used by db diff command to initialize the shadow database. -shadow_port = 54320 -# The database major version to use. This has to be the same as your remote database's. Run `SHOW -# server_version;` on the remote database to check. -major_version = 15 - -[db.pooler] -enabled = false -# Port to use for the local connection pooler. -port = 54329 -# Specifies when a server connection can be reused by other clients. -# Configure one of the supported pooler modes: `transaction`, `session`. -pool_mode = "transaction" -# How many server connections to allow per user/database pair. -default_pool_size = 20 -# Maximum number of client connections allowed. -max_client_conn = 100 - -[realtime] -enabled = true -# Bind realtime via either IPv4 or IPv6. (default: IPv4) -# ip_version = "IPv6" -# The maximum length in bytes of HTTP request headers. (default: 4096) -# max_header_length = 4096 - -[studio] -enabled = true -# Port to use for Supabase Studio. -port = 54323 -# External URL of the API server that frontend connects to. -api_url = "http://127.0.0.1" -# OpenAI API Key to use for Supabase AI in the Supabase Studio. -openai_api_key = "env(OPENAI_API_KEY)" - -# Email testing server. Emails sent with the local dev setup are not actually sent - rather, they -# are monitored, and you can view the emails that would have been sent from the web interface. -[inbucket] -enabled = true -# Port to use for the email testing server web interface. -port = 54324 -# Uncomment to expose additional ports for testing user applications that send emails. -# smtp_port = 54325 -# pop3_port = 54326 - -[storage] -enabled = true -# The maximum file size allowed (e.g. "5MB", "500KB"). -file_size_limit = "50MiB" - -[storage.image_transformation] -enabled = true - -[auth] -enabled = true -# The base URL of your website. Used as an allow-list for redirects and for constructing URLs used -# in emails. -site_url = "http://127.0.0.1:3000" -# A list of *exact* URLs that auth providers are permitted to redirect to post authentication. -additional_redirect_urls = ["https://127.0.0.1:3000"] -# How long tokens are valid for, in seconds. Defaults to 3600 (1 hour), maximum 604,800 (1 week). -jwt_expiry = 3600 -# If disabled, the refresh token will never expire. -enable_refresh_token_rotation = true -# Allows refresh tokens to be reused after expiry, up to the specified interval in seconds. -# Requires enable_refresh_token_rotation = true. -refresh_token_reuse_interval = 10 -# Allow/disallow new user signups to your project. -enable_signup = true -# Allow/disallow anonymous sign-ins to your project. -enable_anonymous_sign_ins = false -# Allow/disallow testing manual linking of accounts -enable_manual_linking = false - -[auth.email] -# Allow/disallow new user signups via email to your project. -enable_signup = true -# If enabled, a user will be required to confirm any email change on both the old, and new email -# addresses. If disabled, only the new email is required to confirm. -double_confirm_changes = true -# If enabled, users need to confirm their email address before signing in. -enable_confirmations = false -# Controls the minimum amount of time that must pass before sending another signup confirmation or password reset email. -max_frequency = "1s" - -# Uncomment to customize email template -# [auth.email.template.invite] -# subject = "You have been invited" -# content_path = "./supabase/templates/invite.html" - -[auth.sms] -# Allow/disallow new user signups via SMS to your project. -enable_signup = true -# If enabled, users need to confirm their phone number before signing in. -enable_confirmations = false -# Template for sending OTP to users -template = "Your code is {{ .Code }} ." -# Controls the minimum amount of time that must pass before sending another sms otp. -max_frequency = "5s" - -# Use pre-defined map of phone number to OTP for testing. -# [auth.sms.test_otp] -# 4152127777 = "123456" - -# This hook runs before a token is issued and allows you to add additional claims based on the authentication method used. -# [auth.hook.custom_access_token] -# enabled = true -# uri = "pg-functions://<database>/<schema>/<hook_name>" - -# Configure one of the supported SMS providers: `twilio`, `twilio_verify`, `messagebird`, `textlocal`, `vonage`. -[auth.sms.twilio] -enabled = false -account_sid = "" -message_service_sid = "" -# DO NOT commit your Twilio auth token to git. Use environment variable substitution instead: -auth_token = "env(SUPABASE_AUTH_SMS_TWILIO_AUTH_TOKEN)" - -# Use an external OAuth provider. The full list of providers are: `apple`, `azure`, `bitbucket`, -# `discord`, `facebook`, `github`, `gitlab`, `google`, `keycloak`, `linkedin_oidc`, `notion`, `twitch`, -# `twitter`, `slack`, `spotify`, `workos`, `zoom`. -[auth.external.apple] -enabled = false -client_id = "" -# DO NOT commit your OAuth provider secret to git. Use environment variable substitution instead: -secret = "env(SUPABASE_AUTH_EXTERNAL_APPLE_SECRET)" -# Overrides the default auth redirectUrl. -redirect_uri = "" -# Overrides the default auth provider URL. Used to support self-hosted gitlab, single-tenant Azure, -# or any other third-party OIDC providers. -url = "" -# If enabled, the nonce check will be skipped. Required for local sign in with Google auth. -skip_nonce_check = false - -[analytics] -enabled = false -port = 54327 -vector_port = 54328 -# Configure one of the supported backends: `postgres`, `bigquery`. -backend = "postgres" - -# Experimental features may be deprecated any time -[experimental] -# Configures Postgres storage engine to use OrioleDB (S3) -orioledb_version = "" -# Configures S3 bucket URL, eg. <bucket_name>.s3-<region>.amazonaws.com -s3_host = "env(S3_HOST)" -# Configures S3 bucket region, eg. us-east-1 -s3_region = "env(S3_REGION)" -# Configures AWS_ACCESS_KEY_ID for S3 bucket -s3_access_key = "env(S3_ACCESS_KEY)" -# Configures AWS_SECRET_ACCESS_KEY for S3 bucket -s3_secret_key = "env(S3_SECRET_KEY)" \ No newline at end of file diff --git a/supabase/migrations/20240517182715_remote_schema.sql b/supabase/migrations/20240517182715_remote_schema.sql deleted file mode 100644 index 4e7351e0..00000000 --- a/supabase/migrations/20240517182715_remote_schema.sql +++ /dev/null @@ -1,663 +0,0 @@ - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - -CREATE EXTENSION IF NOT EXISTS "pgsodium" WITH SCHEMA "pgsodium"; - -COMMENT ON SCHEMA "public" IS 'standard public schema'; - -CREATE EXTENSION IF NOT EXISTS "pg_graphql" WITH SCHEMA "graphql"; - -CREATE EXTENSION IF NOT EXISTS "pg_stat_statements" WITH SCHEMA "extensions"; - -CREATE EXTENSION IF NOT EXISTS "pgcrypto" WITH SCHEMA "extensions"; - -CREATE EXTENSION IF NOT EXISTS "pgjwt" WITH SCHEMA "extensions"; - -CREATE EXTENSION IF NOT EXISTS "supabase_vault" WITH SCHEMA "vault"; - -CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA "extensions"; - -CREATE TYPE "public"."tip_result" AS ( - "used_tip" numeric, - "total_points" numeric -); - -ALTER TYPE "public"."tip_result" OWNER TO "postgres"; - -CREATE TYPE "public"."tip_update_result" AS ( - "remaining_tip_allocation" numeric, - "total_tip_on_post" numeric, - "used_tip" numeric -); - -ALTER TYPE "public"."tip_update_result" OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."allocate_tip"("wallet_address_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) RETURNS "public"."tip_update_result" - LANGUAGE "plpgsql" - AS $$ -DECLARE - used_tip NUMERIC; - new_remaining_tip_allocation NUMERIC; - total_tip_on_post NUMERIC; -BEGIN - -- Select the current remaining tip allocation for locking and update it in the transaction - SELECT remaining_tip_allocation INTO new_remaining_tip_allocation FROM tips WHERE wallet_address = wallet_address_input FOR UPDATE; - - -- Determine the actual tip amount to use - IF tip_amount <= new_remaining_tip_allocation THEN - used_tip := tip_amount; - ELSE - used_tip := new_remaining_tip_allocation; - END IF; - - -- Update the remaining_tip_allocation in the tips table - UPDATE tips SET remaining_tip_allocation = new_remaining_tip_allocation - used_tip WHERE wallet_address = wallet_address_input; - - -- Upsert the tip amount into the posts table - INSERT INTO posts (post_hash, points) - VALUES (post_hash_input, used_tip) - ON CONFLICT (post_hash) DO UPDATE - SET points = posts.points + EXCLUDED.points - RETURNING points INTO total_tip_on_post; - - -- Return the remaining tip allocation, total tip on post, and used tip - RETURN ROW(new_remaining_tip_allocation - used_tip, total_tip_on_post, used_tip)::tip_update_result; -END; -$$; - -ALTER FUNCTION "public"."allocate_tip"("wallet_address_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."allocate_tip_with_fid"("tip_amount" numeric, "post_hash_input" character varying) RETURNS "public"."tip_update_result" - LANGUAGE "plpgsql" - AS $$ -DECLARE - used_tip NUMERIC; - new_remaining_tip_allocation NUMERIC; - total_tip_on_post NUMERIC; -BEGIN - -- Select the current remaining tip allocation for locking and update it in the transaction - SELECT remaining_tip_allocation INTO new_remaining_tip_allocation FROM tips WHERE fid = fid_input FOR UPDATE; - - -- Determine the actual tip amount to use - IF tip_amount <= new_remaining_tip_allocation THEN - used_tip := tip_amount; - ELSE - used_tip := new_remaining_tip_allocation; - END IF; - - -- Update the remaining_tip_allocation in the tips table - UPDATE tips SET remaining_tip_allocation = new_remaining_tip_allocation - used_tip WHERE fid = fid_input; - - -- Upsert the tip amount into the posts table - INSERT INTO posts (post_hash, points) - VALUES (post_hash_input, used_tip) - ON CONFLICT (post_hash) DO UPDATE - SET points = posts.points + EXCLUDED.points - RETURNING points INTO total_tip_on_post; - - -- Return the remaining tip allocation, total tip on post, and used tip - RETURN ROW(new_remaining_tip_allocation - used_tip, total_tip_on_post, used_tip)::tip_update_result; -END; -$$; - -ALTER FUNCTION "public"."allocate_tip_with_fid"("tip_amount" numeric, "post_hash_input" character varying) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) RETURNS "public"."tip_update_result" - LANGUAGE "plpgsql" - AS $$ -DECLARE - used_tip NUMERIC; - new_remaining_tip_allocation NUMERIC; - total_tip_on_post NUMERIC; -BEGIN - -- Select the current remaining tip allocation for locking and update it in the transaction - SELECT remaining_tip_allocation INTO new_remaining_tip_allocation FROM tips WHERE fid = fid_input FOR UPDATE; - - -- Determine the actual tip amount to use - IF tip_amount <= new_remaining_tip_allocation THEN - used_tip := tip_amount; - ELSE - used_tip := new_remaining_tip_allocation; - END IF; - - -- Update the remaining_tip_allocation in the tips table - UPDATE tips SET remaining_tip_allocation = new_remaining_tip_allocation - used_tip WHERE fid = fid_input; - - -- Upsert the tip amount into the posts table - INSERT INTO posts (post_hash, points) - VALUES (post_hash_input, used_tip) - ON CONFLICT (post_hash) DO UPDATE - SET points = posts.points + EXCLUDED.points - RETURNING points INTO total_tip_on_post; - - -- Return the remaining tip allocation, total tip on post, and used tip - RETURN ROW(new_remaining_tip_allocation - used_tip, total_tip_on_post, used_tip)::tip_update_result; -END; -$$; - -ALTER FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "reciever_fid" character varying) RETURNS "public"."tip_update_result" - LANGUAGE "plpgsql" - AS $$ -DECLARE - used_tip NUMERIC; - new_remaining_tip_allocation NUMERIC; - total_tip_on_post NUMERIC; -BEGIN - -- Select the current remaining tip allocation for locking and update it in the transaction - SELECT remaining_tip_allocation INTO new_remaining_tip_allocation FROM tips WHERE fid = fid_input FOR UPDATE; - - -- Determine the actual tip amount to use - IF tip_amount <= new_remaining_tip_allocation THEN - used_tip := tip_amount; - ELSE - used_tip := new_remaining_tip_allocation; - END IF; - - -- Update the remaining_tip_allocation in the tips table - UPDATE tips SET remaining_tip_allocation = new_remaining_tip_allocation - used_tip WHERE fid = fid_input; - - INSERT INTO tips_activity_log (sender, receiver, amount) - VALUES (fid_input, receiver_fid, used_tip); - - -- Upsert the tip amount into the posts table - INSERT INTO posts (post_hash, points) - VALUES (post_hash_input, used_tip) - ON CONFLICT (post_hash) DO UPDATE - SET points = posts.points + EXCLUDED.points - RETURNING points INTO total_tip_on_post; - - -- Return the remaining tip allocation, total tip on post, and used tip - RETURN ROW(new_remaining_tip_allocation - used_tip, total_tip_on_post, used_tip)::tip_update_result; -END; -$$; - -ALTER FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "reciever_fid" character varying) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."allocate_tip_with_fid_recipient"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "receiver_fid" character varying) RETURNS "public"."tip_update_result" - LANGUAGE "plpgsql" - AS $$ -DECLARE - used_tip NUMERIC; - new_remaining_tip_allocation NUMERIC; - total_tip_on_post NUMERIC; -BEGIN - -- Select the current remaining tip allocation for locking and update it in the transaction - SELECT remaining_tip_allocation INTO new_remaining_tip_allocation FROM tips WHERE fid = fid_input FOR UPDATE; - - -- Determine the actual tip amount to use - IF tip_amount <= new_remaining_tip_allocation THEN - used_tip := tip_amount; - ELSE - used_tip := new_remaining_tip_allocation; - END IF; - - -- Update the remaining_tip_allocation in the tips table - UPDATE tips SET remaining_tip_allocation = new_remaining_tip_allocation - used_tip WHERE fid = fid_input; - - INSERT INTO tips_activity_log (sender, receiver, amount, post_hash) - VALUES (fid_input, receiver_fid, used_tip, post_hash_input); - - -- Upsert the tip amount into the posts table - INSERT INTO posts (post_hash, points) - VALUES (post_hash_input, used_tip) - ON CONFLICT (post_hash) DO UPDATE - SET points = posts.points + EXCLUDED.points - RETURNING points INTO total_tip_on_post; - - -- Return the remaining tip allocation, total tip on post, and used tip - RETURN ROW(new_remaining_tip_allocation - used_tip, total_tip_on_post, used_tip)::tip_update_result; -END; -$$; - -ALTER FUNCTION "public"."allocate_tip_with_fid_recipient"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "receiver_fid" character varying) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."degen_tip_post"("tip_amount" numeric, "post_hash_input" character varying) RETURNS numeric - LANGUAGE "plpgsql" - AS $$ -DECLARE - new_degen_amount NUMERIC; -- Variable to hold the new degen amount -BEGIN - - INSERT INTO posts (post_hash, degen) - VALUES (post_hash_input, tip_amount) - ON CONFLICT (post_hash) DO UPDATE - SET degen = posts.degen + tip_amount - RETURNING degen INTO new_degen_amount; -- Capture the updated degen amount - - -- Return the remaining tip allocation, total tip on post, and used tip - RETURN new_degen_amount; -END; -$$; - -ALTER FUNCTION "public"."degen_tip_post"("tip_amount" numeric, "post_hash_input" character varying) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."redeem_airdrop"("wallet_address_input" character varying) RETURNS numeric - LANGUAGE "plpgsql" - AS $$ -DECLARE - previous_notes NUMERIC; -BEGIN - -- Select the current notes for the given wallet_address - SELECT notes INTO previous_notes FROM airdrop - WHERE wallet_address ILIKE wallet_address_input; - - -- Check if a record was found - IF FOUND THEN - -- Update the notes to 0 where the wallet_address matches - UPDATE airdrop SET notes = 0 - WHERE wallet_address ILIKE wallet_address_input; - END IF; - - -- Return the previous notes value - RETURN previous_notes; -END; -$$; - -ALTER FUNCTION "public"."redeem_airdrop"("wallet_address_input" character varying) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."update_daily_tip_allocation"() RETURNS "void" - LANGUAGE "plpgsql" - AS $$ -DECLARE - user_stats RECORD; -BEGIN - -- Update all rows in the 'tips' table - UPDATE tips - SET daily_tip_allocation = ROUND(LOG(10, GREATEST(EXTRACT(EPOCH FROM (NOW() - first_post_date)) / 86400, 1)) * EXP(LOG(3.3, 1000 * ((num_posts * 3) + (total_likes / num_posts))))), - remaining_tip_allocation= ROUND(LOG(10, GREATEST(EXTRACT(EPOCH FROM (NOW() - first_post_date)) / 86400, 1)) * EXP(LOG(3.3, 1000 * ((num_posts * 3) + (total_likes / num_posts))))) - WHERE num_posts > 0; - UPDATE tips - SET daily_tip_allocation = 0, remaining_tip_allocation = 0 - WHERE num_posts = 0 OR daily_tip_allocation IS NULL or power_badge = false; -- Adding IS NULL check to catch any missed updates -END; -$$; - -ALTER FUNCTION "public"."update_daily_tip_allocation"() OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."update_daily_tip_allocation"("wallet_address" "text") RETURNS "void" - LANGUAGE "plpgsql" - AS $$ -DECLARE - user_stats RECORD; -BEGIN - -- Update all rows in the 'tips' table - UPDATE tips - SET daily_tip_allocation = LOG(10, EXTRACT(EPOCH FROM (NOW() - first_post_date)) / 86400) * EXP(LOG(3.3, 1000 * ((num_posts * 3) + (total_likes / num_posts)))) - WHERE num_posts > 0; -- To avoid division by zero -END; -$$; - -ALTER FUNCTION "public"."update_daily_tip_allocation"("wallet_address" "text") OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) RETURNS "void" - LANGUAGE "plpgsql" - AS $$ -BEGIN - INSERT INTO tips (wallet_address, total_likes, num_posts, first_post_date) - VALUES (p_wallet_address, p_total_likes, p_num_posts, p_first_post_date) - ON CONFLICT (wallet_address) DO UPDATE - SET total_likes = tips.total_likes + EXCLUDED.total_likes, - num_posts = tips.num_posts + EXCLUDED.num_posts, - first_post_date = EXCLUDED.first_post_date; -END; -$$; - -ALTER FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) RETURNS "void" - LANGUAGE "plpgsql" - AS $$ -BEGIN - INSERT INTO tips (wallet_address, fid, total_likes, num_posts, first_post_date) - VALUES (p_wallet_address, p_fid, p_total_likes, p_num_posts, p_first_post_date) - ON CONFLICT (wallet_address) DO UPDATE - SET total_likes = tips.total_likes + EXCLUDED.total_likes, - num_posts = tips.num_posts + EXCLUDED.num_posts, - first_post_date = EXCLUDED.first_post_date; -END; -$$; - -ALTER FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) OWNER TO "postgres"; - -CREATE OR REPLACE FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone, "p_power_badge" boolean) RETURNS "void" - LANGUAGE "plpgsql" - AS $$ -BEGIN - INSERT INTO tips (wallet_address, fid, total_likes, num_posts, first_post_date, power_badge) - VALUES (p_wallet_address, p_fid, p_total_likes, p_num_posts, p_first_post_date, p_power_badge) - ON CONFLICT (wallet_address) DO UPDATE - SET total_likes = tips.total_likes + EXCLUDED.total_likes, - num_posts = tips.num_posts + EXCLUDED.num_posts, - first_post_date = LEAST(tips.first_post_date, EXCLUDED.first_post_date), - power_badge = p_power_badge; -END; -$$; - -ALTER FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone, "p_power_badge" boolean) OWNER TO "postgres"; - -SET default_tablespace = ''; - -SET default_table_access_method = "heap"; - -CREATE TABLE IF NOT EXISTS "public"."tips_activity_log" ( - "id" bigint NOT NULL, - "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, - "sender" "text", - "receiver" "text", - "amount" numeric, - "post_hash" "text" -); - -ALTER TABLE "public"."tips_activity_log" OWNER TO "postgres"; - -ALTER TABLE "public"."tips_activity_log" ALTER COLUMN "id" ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME "public"."activity_log_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - -CREATE TABLE IF NOT EXISTS "public"."airdrop" ( - "id" bigint NOT NULL, - "wallet_address" "text" NOT NULL, - "notes" numeric DEFAULT '0'::numeric -); - -ALTER TABLE "public"."airdrop" OWNER TO "postgres"; - -ALTER TABLE "public"."airdrop" ALTER COLUMN "id" ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME "public"."airdrop_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - -CREATE TABLE IF NOT EXISTS "public"."cast_query_date" ( - "id" bigint NOT NULL, - "last_checked" "text" NOT NULL, - "lastcheck" "text" -); - -ALTER TABLE "public"."cast_query_date" OWNER TO "postgres"; - -COMMENT ON TABLE "public"."cast_query_date" IS 'This is a duplicate of tip_query_date'; - -ALTER TABLE "public"."cast_query_date" ALTER COLUMN "id" ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME "public"."cast_query_date_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - -CREATE TABLE IF NOT EXISTS "public"."posts" ( - "id" bigint NOT NULL, - "post_hash" "text" NOT NULL, - "points" numeric DEFAULT '0'::numeric, - "version" numeric DEFAULT '1'::numeric, - "created_at" timestamp with time zone DEFAULT "now"(), - "degen" numeric DEFAULT '0'::numeric, - "likes" numeric DEFAULT '0'::numeric, - "author" "jsonb", - "embeds" "text"[], - "channelId" "text" -); - -ALTER TABLE "public"."posts" OWNER TO "postgres"; - -ALTER TABLE "public"."posts" ALTER COLUMN "id" ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME "public"."posts_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - -CREATE TABLE IF NOT EXISTS "public"."tip_query_date" ( - "id" bigint NOT NULL, - "last_checked" "text" NOT NULL -); - -ALTER TABLE "public"."tip_query_date" OWNER TO "postgres"; - -ALTER TABLE "public"."tip_query_date" ALTER COLUMN "id" ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME "public"."tip_query_date_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - -CREATE TABLE IF NOT EXISTS "public"."tips" ( - "id" bigint NOT NULL, - "created_at" timestamp with time zone DEFAULT "now"() NOT NULL, - "wallet_address" "text" NOT NULL, - "daily_tip_allocation" bigint, - "remaining_tip_allocation" bigint, - "version" numeric DEFAULT '1'::numeric, - "first_post_date" "date", - "num_posts" numeric, - "total_likes" numeric, - "fid" "text" NOT NULL, - "power_badge" boolean DEFAULT false -); - -ALTER TABLE "public"."tips" OWNER TO "postgres"; - -ALTER TABLE "public"."tips" ALTER COLUMN "id" ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME "public"."tips_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - -CREATE OR REPLACE VIEW "public"."trending_posts" AS - SELECT "posts"."id", - "posts"."post_hash", - "posts"."points", - "posts"."version", - "posts"."created_at", - "posts"."degen", - "posts"."likes", - "posts"."author", - "posts"."embeds", - "posts"."channelId", - ("posts"."points" / ((1)::numeric + (((EXTRACT(epoch FROM ("now"() - "posts"."created_at")) / (3600)::numeric) / (24)::numeric) ^ (2)::numeric))) AS "score" - FROM "public"."posts" - WHERE ("posts"."points" IS NOT NULL); - -ALTER TABLE "public"."trending_posts" OWNER TO "postgres"; - -ALTER TABLE ONLY "public"."tips_activity_log" - ADD CONSTRAINT "activity_log_pkey" PRIMARY KEY ("id"); - -ALTER TABLE ONLY "public"."airdrop" - ADD CONSTRAINT "airdrop_pkey" PRIMARY KEY ("id", "wallet_address"); - -ALTER TABLE ONLY "public"."airdrop" - ADD CONSTRAINT "airdrop_wallet_address_key" UNIQUE ("wallet_address"); - -ALTER TABLE ONLY "public"."cast_query_date" - ADD CONSTRAINT "cast_query_date_pkey" PRIMARY KEY ("id"); - -ALTER TABLE ONLY "public"."posts" - ADD CONSTRAINT "posts_pkey" PRIMARY KEY ("id", "post_hash"); - -ALTER TABLE ONLY "public"."posts" - ADD CONSTRAINT "posts_post_hash_key" UNIQUE ("post_hash"); - -ALTER TABLE ONLY "public"."tip_query_date" - ADD CONSTRAINT "tip_query_date_pkey" PRIMARY KEY ("id"); - -ALTER TABLE ONLY "public"."tips" - ADD CONSTRAINT "tips_fid_key" UNIQUE ("fid"); - -ALTER TABLE ONLY "public"."tips" - ADD CONSTRAINT "tips_pkey" PRIMARY KEY ("id", "wallet_address", "fid"); - -ALTER TABLE ONLY "public"."tips" - ADD CONSTRAINT "tips_wallet_address_key" UNIQUE ("wallet_address"); - -CREATE POLICY "Enable read access for all users" ON "public"."airdrop" FOR SELECT USING (true); - -CREATE POLICY "Enable read access for all users" ON "public"."cast_query_date" FOR SELECT USING (true); - -CREATE POLICY "Enable read access for all users" ON "public"."posts" FOR SELECT USING (true); - -CREATE POLICY "Enable read access for all users" ON "public"."tips" FOR SELECT USING (true); - -ALTER TABLE "public"."airdrop" ENABLE ROW LEVEL SECURITY; - -ALTER TABLE "public"."cast_query_date" ENABLE ROW LEVEL SECURITY; - -ALTER TABLE "public"."posts" ENABLE ROW LEVEL SECURITY; - -ALTER TABLE "public"."tip_query_date" ENABLE ROW LEVEL SECURITY; - -ALTER TABLE "public"."tips" ENABLE ROW LEVEL SECURITY; - -ALTER TABLE "public"."tips_activity_log" ENABLE ROW LEVEL SECURITY; - -ALTER PUBLICATION "supabase_realtime" OWNER TO "postgres"; - -GRANT USAGE ON SCHEMA "public" TO "postgres"; -GRANT USAGE ON SCHEMA "public" TO "anon"; -GRANT USAGE ON SCHEMA "public" TO "authenticated"; -GRANT USAGE ON SCHEMA "public" TO "service_role"; - -GRANT ALL ON FUNCTION "public"."allocate_tip"("wallet_address_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) TO "anon"; -GRANT ALL ON FUNCTION "public"."allocate_tip"("wallet_address_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."allocate_tip"("wallet_address_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("tip_amount" numeric, "post_hash_input" character varying) TO "anon"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("tip_amount" numeric, "post_hash_input" character varying) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("tip_amount" numeric, "post_hash_input" character varying) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) TO "anon"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "reciever_fid" character varying) TO "anon"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "reciever_fid" character varying) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "reciever_fid" character varying) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid_recipient"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "receiver_fid" character varying) TO "anon"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid_recipient"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "receiver_fid" character varying) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."allocate_tip_with_fid_recipient"("fid_input" character varying, "tip_amount" numeric, "post_hash_input" character varying, "receiver_fid" character varying) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."degen_tip_post"("tip_amount" numeric, "post_hash_input" character varying) TO "anon"; -GRANT ALL ON FUNCTION "public"."degen_tip_post"("tip_amount" numeric, "post_hash_input" character varying) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."degen_tip_post"("tip_amount" numeric, "post_hash_input" character varying) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."redeem_airdrop"("wallet_address_input" character varying) TO "anon"; -GRANT ALL ON FUNCTION "public"."redeem_airdrop"("wallet_address_input" character varying) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."redeem_airdrop"("wallet_address_input" character varying) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."update_daily_tip_allocation"() TO "anon"; -GRANT ALL ON FUNCTION "public"."update_daily_tip_allocation"() TO "authenticated"; -GRANT ALL ON FUNCTION "public"."update_daily_tip_allocation"() TO "service_role"; - -GRANT ALL ON FUNCTION "public"."update_daily_tip_allocation"("wallet_address" "text") TO "anon"; -GRANT ALL ON FUNCTION "public"."update_daily_tip_allocation"("wallet_address" "text") TO "authenticated"; -GRANT ALL ON FUNCTION "public"."update_daily_tip_allocation"("wallet_address" "text") TO "service_role"; - -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) TO "anon"; -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) TO "anon"; -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone) TO "service_role"; - -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone, "p_power_badge" boolean) TO "anon"; -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone, "p_power_badge" boolean) TO "authenticated"; -GRANT ALL ON FUNCTION "public"."update_tips"("p_wallet_address" "text", "p_fid" "text", "p_total_likes" integer, "p_num_posts" integer, "p_first_post_date" timestamp with time zone, "p_power_badge" boolean) TO "service_role"; - -GRANT ALL ON TABLE "public"."tips_activity_log" TO "anon"; -GRANT ALL ON TABLE "public"."tips_activity_log" TO "authenticated"; -GRANT ALL ON TABLE "public"."tips_activity_log" TO "service_role"; - -GRANT ALL ON SEQUENCE "public"."activity_log_id_seq" TO "anon"; -GRANT ALL ON SEQUENCE "public"."activity_log_id_seq" TO "authenticated"; -GRANT ALL ON SEQUENCE "public"."activity_log_id_seq" TO "service_role"; - -GRANT ALL ON TABLE "public"."airdrop" TO "anon"; -GRANT ALL ON TABLE "public"."airdrop" TO "authenticated"; -GRANT ALL ON TABLE "public"."airdrop" TO "service_role"; - -GRANT ALL ON SEQUENCE "public"."airdrop_id_seq" TO "anon"; -GRANT ALL ON SEQUENCE "public"."airdrop_id_seq" TO "authenticated"; -GRANT ALL ON SEQUENCE "public"."airdrop_id_seq" TO "service_role"; - -GRANT ALL ON TABLE "public"."cast_query_date" TO "anon"; -GRANT ALL ON TABLE "public"."cast_query_date" TO "authenticated"; -GRANT ALL ON TABLE "public"."cast_query_date" TO "service_role"; - -GRANT ALL ON SEQUENCE "public"."cast_query_date_id_seq" TO "anon"; -GRANT ALL ON SEQUENCE "public"."cast_query_date_id_seq" TO "authenticated"; -GRANT ALL ON SEQUENCE "public"."cast_query_date_id_seq" TO "service_role"; - -GRANT ALL ON TABLE "public"."posts" TO "anon"; -GRANT ALL ON TABLE "public"."posts" TO "authenticated"; -GRANT ALL ON TABLE "public"."posts" TO "service_role"; - -GRANT ALL ON SEQUENCE "public"."posts_id_seq" TO "anon"; -GRANT ALL ON SEQUENCE "public"."posts_id_seq" TO "authenticated"; -GRANT ALL ON SEQUENCE "public"."posts_id_seq" TO "service_role"; - -GRANT ALL ON TABLE "public"."tip_query_date" TO "anon"; -GRANT ALL ON TABLE "public"."tip_query_date" TO "authenticated"; -GRANT ALL ON TABLE "public"."tip_query_date" TO "service_role"; - -GRANT ALL ON SEQUENCE "public"."tip_query_date_id_seq" TO "anon"; -GRANT ALL ON SEQUENCE "public"."tip_query_date_id_seq" TO "authenticated"; -GRANT ALL ON SEQUENCE "public"."tip_query_date_id_seq" TO "service_role"; - -GRANT ALL ON TABLE "public"."tips" TO "anon"; -GRANT ALL ON TABLE "public"."tips" TO "authenticated"; -GRANT ALL ON TABLE "public"."tips" TO "service_role"; - -GRANT ALL ON SEQUENCE "public"."tips_id_seq" TO "anon"; -GRANT ALL ON SEQUENCE "public"."tips_id_seq" TO "authenticated"; -GRANT ALL ON SEQUENCE "public"."tips_id_seq" TO "service_role"; - -GRANT ALL ON TABLE "public"."trending_posts" TO "anon"; -GRANT ALL ON TABLE "public"."trending_posts" TO "authenticated"; -GRANT ALL ON TABLE "public"."trending_posts" TO "service_role"; - -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON SEQUENCES TO "postgres"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON SEQUENCES TO "anon"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON SEQUENCES TO "authenticated"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON SEQUENCES TO "service_role"; - -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON FUNCTIONS TO "postgres"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON FUNCTIONS TO "anon"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON FUNCTIONS TO "authenticated"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON FUNCTIONS TO "service_role"; - -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON TABLES TO "postgres"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON TABLES TO "anon"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON TABLES TO "authenticated"; -ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON TABLES TO "service_role"; - -RESET ALL; diff --git a/supabase/seed.sql b/supabase/seed.sql deleted file mode 100644 index 1cfbb84f..00000000 --- a/supabase/seed.sql +++ /dev/null @@ -1,17832 +0,0 @@ -SET session_replication_role = replica; - --- --- PostgreSQL database dump --- - --- Dumped from database version 15.1 (Ubuntu 15.1-1.pgdg20.04+1) --- Dumped by pg_dump version 15.6 (Ubuntu 15.6-1.pgdg20.04+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Data for Name: audit_log_entries; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: flow_state; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: users; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: identities; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: instances; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: sessions; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: mfa_amr_claims; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: mfa_factors; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: mfa_challenges; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: one_time_tokens; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: refresh_tokens; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: sso_providers; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: saml_providers; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: saml_relay_states; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: sso_domains; Type: TABLE DATA; Schema: auth; Owner: supabase_auth_admin --- - - - --- --- Data for Name: key; Type: TABLE DATA; Schema: pgsodium; Owner: supabase_admin --- - - - --- --- Data for Name: airdrop; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO "public"."airdrop" ("id", "wallet_address", "notes") VALUES - (8035, '0x8469b7b08d30c63fea3a248a198de9d634b63d70', 64590), - (8036, '0x4b764659c758928aa6b8b09e703618d46d2136b5', 141480), - (8037, '0xd118f7b97031188df014974fd2c88b91ca85abe1', 122290), - (8038, '0x832d0d5f60bfb954d48d3675f72adcbca545ca55', 0), - (8039, '0x3ce1a71383c7651d4770d5f4fdd5606dc2e4dd1a', 114540), - (8042, '0x76d018a493e9795d6a6331b0bb6472977319638b', 123150), - (8043, '0x19c5bf5fbf17d8c47d8795a194c03e4061e36761', 213860), - (8045, '0x049569adb8a1e8a9349e9f1111c7b7993a4612eb', 218590), - (8046, '0x9a70d89db9a7ae5c04d2bea3049d136098e32e22', 329300), - (8047, '0x19f265aebc2def35832202279e10942d34c2ba8a', 0), - (8048, '0x69116c07f69ae31d6fba77b43f9fe6844cdc466e', 568130), - (8049, '0x624516c0b381e643962ee9a1ce0f6eda022e6fb3', 299520), - (8051, '0x12f294883638784a75215897fb141c5ff53fca73', 0), - (8052, '0x5849734d2e3ada23b64e12311adfa6bcd6fe687c', 851520), - (8053, '0xb7e57a44b1b63374e8f6ad7fb85be840709114a7', 45940), - (8054, '0x361aba78ae91ddcbf72b7618c88427834dde5f09', 0), - (8056, '0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2', 1481700), - (8057, '0x8ba5908a107ed29c898b00b498fcce0d88299175', 147940), - (8058, '0x9440c6dace67b3e62a481b5241daf30c36cd8c9c', 74840), - (8059, '0x779851d2d320cdf8ed094e51ccda17f1920b0ae7', 0), - (8060, '0x555e888a040a183ff0e0a7b2586798184d7f8a43', 4420), - (8063, '0x934f5fb4fae01bae3fc26d155a21b037821e7e72', 69750), - (8064, '0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917', 17500), - (8065, '0xa19b4fd4383a6b80e26578a604c36d60d1007e41', 0), - (8066, '0xbfd6e2e66a42f9f768ca4b865ec00bab5d5fa90b', 0), - (8068, '0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2', 172810), - (8069, '0xd59712dca7127a91ab99ca5136fee56b4cb832f7', 0), - (8070, '0xa63475fbb41a3f179f8d72deb0161648ec1d2d95', 0), - (11672, '0x250dd957f3e050c38a7865713d2e8151ab91aee8', 6376), - (8072, '0x0d10721a50434ec2bfb2aeed8cfea9d9f171a5f3', 25470), - (8073, '0xab0ef57700d3061ba0f2d3d2323e99eaaa642b5b', 0), - (8075, '0x64c90f8a492cdf2e1126b0bc1a82d40edd20497e', 77850), - (8076, '0x73cc0bec7a4d54853adb418ed3149baa88912752', 0), - (8077, '0xf49cc2079fa1280fbb535ac8f5ab31f12541e660', 22800), - (8078, '0x62239c6bd68fc55478c2fa0e1edd626e5810ca07', 52270), - (8079, '0xdbee1cfa10d706ef868dd2dff97246cb6d73b530', 362110), - (8081, '0x8b80755c441d355405ca7571443bb9247b77ec16', 197350), - (8082, '0x56fd33c56d184d72558df85b8b4a186a0280b56a', 31140), - (8083, '0xd41726f322e3ff43f3c8edceda1412dd2f20560b', 34280), - (8085, '0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce', 250260), - (8086, '0x004fe340d0d71c244b629cc4a5399d915f4f7fef', 0), - (8088, '0xfb36c377a2e0b9853281c2239dfb791d375f9b8b', 100190), - (8090, '0x37a6156e4a6e8b60b2415af040546cf5e91699bd', 11870), - (8091, '0x67820573587cde95e639066e4ef845d10fe66a00', 65990), - (8092, '0x98eea5a13ac5110fd7d37244465a10b07b280cb7', 18650), - (8093, '0xe51c3ac4bd40486aeebf55a9b9336a70f0a25b34', 69150), - (8094, '0x00806e94e9d7fe715ea0ab12e8b1c96e8f827e63', 680), - (8095, '0x9fca2c3634208458a2c214c36da601a371e9caa3', 10380), - (8096, '0x02ac33835070d0c90bef87c273514e67aea36ef8', 266210), - (8097, '0x4348b57916e6674bc2c9efd3ab84cede61e1dd46', 640), - (8098, '0xc1033ebdbf17e1a350d18196035c26090eaac708', 116490), - (8099, '0x27d84f12158b39cc59a79367fce397014ce12c8a', 38990), - (8101, '0x9d819695056bb1a372f9e715af5ec4c79595b67c', 11750), - (8102, '0x4a825d95ee45db286ae3694b7bc7f7090c9f8bf3', 1260), - (8103, '0x610dce6c9cb8e035ca7ebb3f7e3df1674c1572ad', 262110), - (8104, '0xc863dfee737c803c93af4b6b27029294f6a56eb5', 27320), - (8105, '0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33', 576100), - (8106, '0x5438a58fccf464be36917947b552a6cf9d9b242b', 20680), - (8107, '0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8', 179300), - (8110, '0x62e71520deb1aaa28097569f5e823b9156d4a481', 39690), - (8111, '0x9746c2bbbbc13cf92d78e7818e9ffa4fef1f1e6e', 24850), - (8112, '0x843953c8133e12ac7c6eca155a94758ede30a202', 26940), - (8113, '0x565f036a2f5a9c4d23194bf1439298bbc06e2af0', 186980), - (8114, '0xa7625e30eb5356a0b777e9617b55a92dddff2975', 20290), - (9853, '0x7574620276de65d76a5ef8609a0f6c37480e8b8e', 9130), - (8116, '0x9c928c1b01339ebfaf45d400f793989b60b6331e', 261290), - (8117, '0xa3bfe0bd34332dc4ef586e34fb853720d778ade6', 2720), - (8118, '0xc2c9aa77ff0ced181aa454c6e68b6b72dd9d2dce', 2780), - (8121, '0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5', 47780), - (8122, '0x32dc25454b4b2797a504f4e14f5151471498d36e', 73460), - (8123, '0xaae9fd3fe55f77aebf0a94acde40c2a388e400b8', 55370), - (8124, '0x9904ceddba825a18bdf7e1984a886d23394ccbcc', 37360), - (8087, '0x3702205145fac0fb99a9b8bc61e33486c126f155', 169651), - (8120, '0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5', 0), - (8040, '0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5', 0), - (8044, '0xb642b7b23c84ddc446dc364b1f714cee6bfd0908', 0), - (8067, '0x4a6d41513783b0023c4de563de751e698e5f962a', 0), - (8080, '0x8284fdb345236d8285fecd91855c16ca22a1033f', 0), - (8108, '0x5b23c893ab99fa6d9ff3532d10a9019cae06383e', 0), - (8074, '0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0', 0), - (8062, '0xfb12ae037c51fa0026ab54678c0111c77ce4057c', 0), - (8041, '0x10c163364fe153cadf6532a5b34481eefb99d96d', 0), - (8061, '0x79579b2032565133a53f876e80179d0066d293f0', 0), - (8050, '0x95d394f35705033008ccdaf0bce3d07e4be090f4', 0), - (8084, '0x1a94b37f5d8634a18483c027d145532fccf6b1b9', 0), - (8055, '0x3fe462b175fafa954ae387b6c9f8cf4699682e09', 0), - (8119, '0x46dac7412752e7567c941e8233f9bd647a0e46be', 0), - (8109, '0x907fc75de849646eb8faba840219bd2953902782', 0), - (8100, '0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df', 0), - (8125, '0xd76ff76ac8019c99237bde08d7c39dab5481bed2', 49400), - (8129, '0xa656beba855e80383e4502549ada7adf2e99d441', 70370), - (8133, '0xfa6b3df826636eb76e23c1ee38180db3b8f60a86', 489830), - (8137, '0xe7ef0b91e78f670b51c39da983849df2585c5a34', 117580), - (8141, '0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec', 77030), - (8149, '0x91137bf8d5e95ce028235f38dbd7274a50d0f258', 70660), - (8153, '0x5ee2006e03e0bfe49e0b75b573b608eb2b3aa800', 14840), - (8157, '0x36741e664ad6dc02253ab08a437f84d4a48879c0', 33580), - (8167, '0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359', 84670), - (8176, '0x14fc0be8e90ab768226cccf952506ce00bde5029', 7740), - (8178, '0x636e2ce8ededd4a0cadd638d3d14664332fa56a0', 63880), - (8182, '0xd277938edcb283c080a22c1832fe1de40898735f', 128430), - (8186, '0x67e20ab529cc1dd8d389fadf8cee13042b9fed54', 4770), - (8198, '0xa312a2a835bdcda893020ce23871470ffd26b990', 267960), - (8202, '0xc14d0c616b01a80e026fe74869c6efd8a100b951', 6590), - (8206, '0x199554ccb0c7e11a8c5275a41f3e61a92c235846', 47930), - (8210, '0x653d6d7da3c856fd5ddec464a4b11d7831899cd1', 132580), - (8214, '0x6d9e53347296b19450aa85378cf6acee137a25be', 10060), - (8218, '0x89ba0cb315a40f39220584f6b92beab0cc860d6c', 7350), - (8222, '0x2469b75537bfeaa25f9497c7fb0c0afadb0c07b7', 37910), - (8226, '0x9f714d8882fdf99f14eba000ae583ea4ddcf0b7a', 7510), - (8234, '0x17f12c150dd561f9932f42485be40711e1afd4b5', 47400), - (8236, '0xea79aace874e1203d4ff08f4cc7f713acc608236', 122780), - (8240, '0xecee5497b9dbb82e1804e3224f67d00d8d891c69', 34100), - (8243, '0x571877b13259b95221da35fb4ee29685375fd96a', 52410), - (8247, '0x4dcaa43263f903befbdb2f7d1a50dd0aebebd8e0', 16360), - (8251, '0xda47a6b9ec624f9d8cfe1db6423a26cbebc1246d', 74290), - (8255, '0x01c9ea664b6d06bc4609cec8e75dd600221e1c36', 45640), - (8259, '0xf0956319b8026bd7ff8db68803c8fd81974b6b54', 39870), - (8263, '0x56876f3f31582d65a9b99f22a7c2c84f0ccca723', 6830), - (11673, '0xd8bbbd09dd35ac9a2f1d8c5dfbdb3ee2c0d93d12', 6376), - (9854, '0xc1e5e3c0f3d6cb3aafd5b34c4ba93d235bbd5fd6', 7200), - (9863, '0xdb1538d47bc28fe6735f0d6d48afa1f13c63aa40', 11390), - (9890, '0x4485bd3e984b77b8d580312ef11b15fa64ba4890', 61390), - (9899, '0x2405404d434c42056802ebcabdfa1d6991c7d17f', 12130), - (9908, '0xfb074aba249f6a75eda10996c3efa6d66465b8b3', 12750), - (9917, '0x1012511e4ca7ea402e300a3b77db7e19e3035d7d', 38860), - (9935, '0xccf06e6d13577acb0cc37f7b21a2da964d06b583', 96600), - (9944, '0x9d4cae1f31c887d7e24df5154e047de2cb6ad1a1', 16890), - (9953, '0x505d688a38b8cb9190b4f671d98a37a784e92c1f', 11150), - (9962, '0xd01d744ae46b1b80ed908479b8e704ebd8a53ad7', 24280), - (9971, '0xb8debd39f03a80f182657a47b24d40982d9fec4c', 28860), - (9987, '0x15e1619021084ec72ace12815953d54da2b2074e', 14810), - (9996, '0x94b3709c3744fe3741d5a4ab242952e7e77bebce', 37490), - (10013, '0x7af44c5b5a56bb20face8a15429fa4b475a0f452', 15120), - (10022, '0xfd7e6c923ef60c663adffcbe4e2cded29e7cffd0', 43420), - (10038, '0x7ec9932e7de1ca2dc93a4edf382ddf2e5d50a1e3', 12260), - (10068, '0xadfb2776eb40e5218784386aa576ca9e08450127', 12550), - (10077, '0xf7937f825a2aecdcb962925f12b64943d0b2496a', 25660), - (10086, '0x1f59f78a84c03f61b3d3c29ba3cd7137909e6257', 49280), - (10095, '0x05d7127162916707474ec8ba300723728534c64b', 12870), - (10104, '0xb0e6e532643be421f9aabb750b2573b28440a069', 12970), - (10113, '0x6047f8052d8fcf8e38be56692360e47c646915ba', 13020), - (10120, '0xad987861f38c384272dafb6d952fbf97cdac5e18', 59170), - (10141, '0x27853c1d975b11a0424b297615b30c434559c22b', 24460), - (10150, '0xe265575036df0ea693b68ce6eafec2e0cd22907a', 17470), - (10174, '0x65dcd9068fcc7da2e9d4c05257ddbfb9d3d755bd', 13770), - (10183, '0x73389e81773bcfa5cc22fe09de7a296c96063811', 13800), - (10201, '0x580e6f8c4adf7c597acadac3edcf9e1f04da810a', 25200), - (10210, '0x465c63680f2a0b4277d9b4cecc3f3310e531a77f', 38820), - (10219, '0x150bfd1952b4622e12c79ce80f84694a167e1921', 52520), - (10228, '0x789cf302793b3b1c2602fb821a4d01ed9c9019c8', 14350), - (10237, '0x512729eb12dfebbfa67b6d23dc44605bb1dfd5a7', 14360), - (10246, '0x23f99be94bc125a0a5d259502a04476ca338a3ce', 26490), - (10282, '0x5cac4a6ff0c0c90053f0204e8caf1b707bc307e6', 19850), - (10291, '0x2e6ba5de691d92a36c880d8c101ceb07bafbe6a4', 39370), - (10300, '0x51545dee0671b910b8f12de6760a83f781922030', 53930), - (10309, '0xca590551c68a1a67d54770efe8d89c0276df956f', 15860), - (10327, '0x30b8eab7d560840a78bcb22e58b1a47b82aecf99', 51770), - (10336, '0x91cb655d9b80022116c01dcbf5abca3f1bd056db', 15880), - (10345, '0x0e386c1d4e310713758a885d8f5d7d15868c1215', 15880), - (8194, '0xf9b39beabc953787c4689836fe01f2bd0dd8d28f', 0), - (10192, '0x086ce37549fee88e10a217e3c2478163177a8273', 30361), - (10318, '0xdc35a5792db09b8c8571f1a3c718dd60b16ae690', 32951), - (10273, '0x79bdda65c706cbda69c0ad4c8da1d3e91724f48d', 54216), - (8161, '0x198109b0d2c786a230d18b622d3b7a1946131e09', 280536), - (8230, '0x0f23189b256939996dec01766f6b2e581afb5bb3', 0), - (10255, '0x8934d55bbc1577348510c6d999f8cb44b7fa5e66', 0), - (8190, '0x14fc3aded5f88a486c1ba41b751e3b7e9e92bfd4', 0), - (8165, '0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f', 0), - (10264, '0x354d4d759c49094f60d537bfd7177c05b70c20cc', 0), - (9881, '0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254', 0), - (8145, '0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11', 0), - (8180, '0x27bbe645730ad333a35837f4bfb2b28fee3ce753', 0), - (9926, '0x4662b891269e2196e67cca73e4b7812dd91c7ae3', 0), - (10059, '0xdee934372b7eece41d2cb0ee23a69345c250ed40', 0), - (10029, '0x9a604173def05868d20a8e150c322598d5d92c4e', 0), - (9872, '0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0', 0), - (8130, '0x097f71d2abaf370e686fb3f3d773592d9b0031ed', 122340), - (8134, '0xa30aebe21c244293811659661714147975d50d74', 83320), - (8138, '0x2d536cb13f360b2747cc235d55ea6c32f66f05a3', 110860), - (8154, '0x808faacb4a502060a73de1f0f4b094eedbc60c08', 21410), - (8162, '0xf7533ea276a478b7c90441da06ccf8706f52923d', 7230), - (8166, '0x6acdf2954ceeecdf9e938cab389c942cad6fbd66', 6330), - (8168, '0x854e84eb6857e8cfb68c7ae1cb1368260a4fc581', 44430), - (8171, '0xc90f44cbc3a8eeb198c564245eb2b853090039f3', 69060), - (8173, '0xfa922ce609fed47950e3f48662c9651d42ada194', 132650), - (8175, '0xde6ac348a0cfd7497109b06577ccf21710e8ad89', 84120), - (8179, '0x8a183976686c15797b86aee156e6b6c451da3ace', 39490), - (8184, '0xae1a641d4c0270b7a85959d6f6495a721deb1be7', 53430), - (8188, '0x68abc0679a9ddaf7569255ca71993ab759f4e8e1', 121380), - (8192, '0x20da700ea03e9fe8bf3409d6f66105184aefb2fc', 101770), - (8196, '0xafca747b067c40ae0dda3f170ae971a2cbf4d05c', 157180), - (8200, '0x785f26f6557b9229cddc5f1c4660216c5c02fd67', 84070), - (8204, '0x5c7aa6c9ca8219a9887a9e16ab9a5bc283a928ff', 43140), - (8208, '0xb3b6952a8cd1460c58b809f0f6d3cac768fe0f2d', 108420), - (8212, '0xc1cbfd0f49450878c074e3935554002201db3235', 209650), - (8216, '0xca4ecd4a99a09525bf34e06eda7d8b1e9c902958', 7280), - (8220, '0xbcfca495966a3132ec76d1b0cf8ffe1d4ad95e0a', 30390), - (8224, '0xeea0471cfcaed2f83117a2660b3d21738d478990', 440820), - (8232, '0x849a27048de274c084f42551f395823f8fa18f2e', 17380), - (8238, '0x19deaa4a250f87215e125a0eb93ad71138f3ed9b', 36850), - (8241, '0x70f0f0e6d7c656bfc0bb3cbfe3c82f123c9b7512', 67280), - (8245, '0x01ee98341878319eccc146aba2494a63a19db468', 58670), - (8249, '0x13a45e1199776a0960b375f11a03d505cffdcd43', 47970), - (8253, '0x603eda0701b03babc5e00b7f61b524103eb9e5d9', 46260), - (8257, '0x6c25e8243fccc7a46a19ded768d98cb7340e7fb3', 76110), - (8261, '0x4c77de78970bdda2ff9100210d21ff8562efcd0e', 77360), - (8265, '0xc35bc219db73ab6b9578f48152dfb86ac0585c35', 59750), - (9855, '0x39cc170a6c6052647a592b8f75b9a66bba0ea1a6', 24600), - (9864, '0x0d08ec62b556d3dec321a6097ab43c8488f9dfaf', 35090), - (9882, '0x368f593244f04c599b3328a23493680b23818fa6', 13010), - (9891, '0xbcc72b0aad31a4bb7ca351178cd649eeb8bfc418', 204100), - (9900, '0xae61d2b1f2c4ff647618ee0295ca3a6771a08184', 9610), - (9909, '0xd2e4236425e64c5bff090defb14d1cfe93e2c016', 10030), - (9927, '0xd0cd56b2342336ee9ef2592a677be4409bcbe038', 16210), - (9936, '0xfc66451db0d18ebe8c4d50b7470c5b3ec602962d', 10860), - (9954, '0xdf4a612ebc3a4135d55b576bbb6b78543c8be261', 14240), - (9963, '0xe2a26a4df24f65e790b108e4f62322333000bbef', 11300), - (9972, '0x0dbb9d306ddcd839f698adad757c95d30538603a', 127490), - (9979, '0x56463d50e1d58b2036b0dad19784df57d1aa6e9b', 20700), - (9988, '0x3b78637e124f302ca73257ea6babc705ac0208dc', 11640), - (9997, '0x5bc3911beac22f1903fa8ea1d9126eb014e73cc8', 11740), - (10014, '0xae6b19b637fdcb9c5c05238e5279754c39de76a9', 52520), - (10023, '0x9628be77fb3dcd890fd93a5d039092fca855d3cc', 11960), - (10030, '0x1f35e74d2bb0a43fe79ca376ead63da7c926e455', 21590), - (10039, '0x79880f40088871ab65d52d2a3ddb559559e5c48b', 29340), - (10045, '0x7fb242e221424ed59e20e9cd698431d7be8c4dbd', 91810), - (10054, '0x326fb0eab3645763bc7cc027864ce89269838575', 33980), - (10062, '0xcd0b67a61e5e8f4616c19e421e929813b6d947df', 12510), - (10071, '0x56154612bcaa7ad754ab2e342570d5a0fa8333ce', 12560), - (10089, '0x4cb75146e98562c9d79b31649c6c739e4dcb7cd5', 30750), - (10098, '0xf80f32cda81817869be9f5f8169db05332d02b05', 12960), - (10107, '0xa377855c38b1a5bc6fa513c6bffa29ad2450789e', 52860), - (10123, '0x20f2c7a1c518807ad5b0e9160d885b845a607c35', 348220), - (10135, '0x609ce22461d09f408bbaeee3d3609da7a3841f89', 17130), - (10144, '0x8347c3f0ae9205d2450406617d457f6f96e51138', 21010), - (10153, '0x120c258d1ea4b69371e36dc7cdf61b9ea2f14802', 27930), - (10162, '0x2f93566b411ad8437db8cee893053b6dfc42c7f6', 27990), - (10168, '0xbeadc48b319aa4349fa29afa5e9e88f44470349c', 54410), - (10177, '0x42b3fc1e3e9766f719344a79349b1aec05cc129d', 159800), - (10186, '0x5183e0203858aa3e3bc3a7d9cb41875a4c0a6216', 42600), - (10195, '0x7d8c68f50c8797b4bd69579fc19952f223ef50c0', 27050), - (8158, '0xdf58c34414b0812b38c362e8423380a0f27eda8c', 0), - (10213, '0x0c3dfae6e284fa1bde86ae8214acdff4765ae570', 18030), - (10222, '0xeebdbb903c38d8a3996b86457bf470b69756a723', 14330), - (10231, '0x83f56dcec278bf08b56ec2753ca05c886f82c22d', 14360), - (10240, '0xa92e8d7667faf4527476d12e042399607b974637', 14520), - (10249, '0xcc64cde5f401404063066a8d63857b2354cb3d9c', 14870), - (10258, '0xc7a0d765c3af6e2710ba05a56c5e2ca190c2e11e', 35520), - (10267, '0xbaa7ad8c875d67e93261bea6f7bd3a2fd2b1c864', 19430), - (10276, '0x0a2c44f8ccd4e13817894f266f6753777f3d44a2', 35280), - (10285, '0xb07feb3904c23b45b684de3c075fbee20542834b', 15620), - (10294, '0xbf7c0a640d21d6c81022a083047ddc0ad52cbf1e', 28160), - (8146, '0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa', 0), - (10080, '0x9235e63508e8d27e0cc858d059c752f8de4733c2', 43231), - (10303, '0xc3b52d51b493b5da4d51627929f4fc38fd51eaba', 34636), - (10005, '0x5f8b9b4541ecef965424f1db923806aad626add2', 0), - (9945, '0x86646054f1d16749b7832d0f111df44cf4a0d33f', 0), - (9873, '0xd6c09962e907428112069273d5c0dc861e7b1c57', 0), - (8150, '0x366ddda42f9c965c765fa6d8e98d84f224e81f46', 0), - (8142, '0xc1b83388b7e095617a4ef4ddb38db92ec2df03aa', 0), - (8126, '0xee0b53ac9578cbc6e0cee0ac6e18cfb7118b5cb3', 0), - (10116, '0xb9c18a66a45ee459ecffb7feb44b32665230d677', 0), - (8228, '0x2b5606fb05188e248373a028ae70a896ed0747a1', 0), - (9918, '0x0c9a9e3ba3d1243f675ab237fe8fdf438b70a98f', 0), - (8127, '0x0a61e9065219a1b84a9fa1b67482c485c39c51de', 278930), - (8131, '0x5063bb431cb9f2745cc03680d931588add964bcb', 6190), - (8135, '0xeb261ca61e0186210522b4ef13e7b0a3374475ab', 3700), - (8139, '0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7', 49200), - (8147, '0xb17b3e7910af9d232cb683c083ef73c34521fc8a', 3120), - (8151, '0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f', 190620), - (8155, '0x756d53c524a845a5d593c40fac355964ebbf9bda', 39700), - (8159, '0x9299d0b39158dd684d559ed55074cc6ea0975de8', 42420), - (8163, '0x20846c7fd7f757d193ee692a8391b9c85d87d908', 50860), - (8172, '0x7fa77093e83c9292c2357ea799ac2c57ec138203', 94670), - (8177, '0x8715dcbf7394a4e6ad98ac5d112e7fb6c3ea9f70', 78060), - (8185, '0x3566d823b7196fd56a834530b7f0a11d8de7bdf9', 18100), - (8189, '0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07', 36130), - (8193, '0xf1ebd55ecdf7fed994885ae66a92c27f8d363bdf', 40350), - (8197, '0xd84b5bfdf3b352a4814704e7205bcb866ebb3e17', 96320), - (8201, '0xda0ce6613e37bf848047607d7604664f5d554aba', 27950), - (8205, '0x7d18c8fee53b394297f4545261343bd5eb847b88', 141750), - (8209, '0x99a754897d0b0ff5ef187ea6388265bc0d4f5c20', 32180), - (8213, '0xbdf82513b977e1bd329d20dac10dbd1a9d86fd4c', 58100), - (8217, '0xe97022e3e50ac76d20f5138141d79f65acf3bc82', 105000), - (8221, '0x0260d1d864e9a8864ae0d0e42245729a1b232ae6', 226130), - (8225, '0x4a6737da9668d09ace702c3ff5e0da33a84d28f7', 74290), - (8229, '0x7f49f36d42d7652f78bc91fd84ed2fb6efc8bf03', 47400), - (8233, '0x453a437a3a8825f2bf5b41b5090956e3a73dd670', 96950), - (8242, '0x657c1f8421ae93e88fb3171f019779e87b0263ca', 66240), - (8246, '0x18b7511938fbe2ee08adf3d4a24edb00a5c9b783', 129840), - (8250, '0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113', 43300), - (8254, '0xcc2860b3e735f4a65fbbc4dd402f8eab79525642', 8340), - (8258, '0xb5648bfa0fe2eaa57a95562a8d236727afd78c80', 10210), - (8262, '0xe6ba45a8af3c4f307f96ba29146835566547a388', 31180), - (8266, '0x68cc611de0eae804bcfcdccb4b267ebfe77359b4', 92280), - (9856, '0xccc63b317efbd8228c2363fa9872ddec20769866', 18360), - (9865, '0xf7eefb82425f1d84f9583de382a583192c2749c3', 9480), - (9883, '0xa3cbe2f0f98f124c8bcee4133631bed416669bd7', 13060), - (9892, '0x9e53cb0731fde971e431d01ec9061dbe6b0da81e', 234140), - (9901, '0xad299c255506232c640828da764e408f890f85e5', 12300), - (9910, '0xe32058676c3a5f192e07fb14955508b9cc4349a3', 25200), - (9919, '0x58ef110454a2fda0677a52b7da6463b940e53585', 15920), - (9937, '0x2439ee8e567c2ade0b481cad403ff1f3ae65a73a', 10910), - (9946, '0x9cd6ecca20919c1cdec545cc4521e3b8b23c8783', 26970), - (9955, '0xa50b2ac8d26e4ad1e976a5e73eba8a2600b3b32c', 93870), - (11674, '0x9af9530d25fca8f7a553924575eb8f44746e0e1f', 6376), - (9973, '0x4c06f18d3427cc90165d98d01de04c7e5732c1cd', 11540), - (9980, '0xed55793bda1aec0a3a98cc5f092e071e5785106c', 44600), - (9989, '0x2cbc6f23dca3117f4674a944d2e0726f2768d2c9', 30520), - (9998, '0x41fcc1e9d01185d37c59294945b18715f2a8ab42', 22420), - (10006, '0x229af9b664aa02b108c2fae74718a174f1595b71', 11810), - (10015, '0x1b6907828b602a92c5596e125f4c46c3465a44ca', 18240), - (10024, '0x55ba9c90c37e3206570ac9dc872c0f053d155f77', 18360), - (10031, '0x9a84d7cd1ce11f2f52ee7417b43c6dbc1f7ac4f1', 23400), - (10040, '0x31e3d4e6b7962e363ec0c0aa0c859358c7879157', 80780), - (10047, '0x03bb17f8776881b185c4ee03eba372ba2b1320fd', 87520), - (10063, '0x9f4e281202d019a8ab8a444713c9571a62474da4', 188150), - (10072, '0x730e580e5ab43b5ecae7dc0f8e6926366d82d46b', 12570), - (10081, '0x8d106c747cd21272d4c9ff0af8d53a9c9aca25d2', 19450), - (10090, '0x52f34571e24c68524426d339faf1001ed3a3dbd5', 16330), - (10099, '0xf013b1a74931703d42a39576554b1b1577e0c75c', 12960), - (10124, '0x59103865aec6ff37dd2af8002fd8a53a26bf64f7', 16860), - (10128, '0xa51fab99348b58082154a96fd2a7d92600a0e930', 39620), - (10136, '0x2102202e25c69f14e0e1a2915cfd5b74db30594a', 27390), - (10145, '0x5cd28d52f36f8fb749d492ca22955c7357c314de', 13710), - (10154, '0x2042c5e7fb1123fe38fa1f37d341decb78b970e6', 13750), - (10169, '0x8f5511f9c204dee881167c0da490fa9018251d2d', 50760), - (10178, '0x9a608d9f416518b5f11acf3dc5594c90d6998e2c', 13780), - (10187, '0x06bb496c6fb6d934a2acd014f5d22647a228142f', 13810), - (10196, '0x69ce8d79dfa9d025000e589af0331fec12048111', 13990), - (10205, '0x8511be971f2e767a3232dbea4183f345b65b0ef2', 28730), - (10214, '0x48037bf163cd1a01a596229e8a78f4fe80b4c22c', 27490), - (10223, '0x999ecf55bf3b5dc0f1b76359b0456ccdedce4522', 32600), - (10241, '0xd090b8168fa3355626504bf61230109c0c7b41c2', 54900), - (10250, '0x12789c79ad0499cd9b93ae56d402c4ce4840b270', 14880), - (10259, '0x4f61e6812577d658e629460e000c7ab2e85e0cd6', 19190), - (10268, '0x1d12c9fec45746823861176ce05bdecda06f2115', 23440), - (10277, '0x644ab62146ac6f7f2bde26909b4d71ea214f45d7', 40220), - (10286, '0x0161d1cc10116bb2a073a0c293d5e4f1a97a00b6', 39270), - (10295, '0x53d63286426a8051a707d5b7d17e28aaad10a411', 20050), - (10304, '0x41584626231439363ee9ee274b0d0c245c0f08dd', 15820), - (10313, '0x03ba5b7394b1b1ba49a2c58ea63b08babe58ae2f', 15860), - (10322, '0x2e1275c801e9ce2e998ab13207978c58086d2b0c', 28370), - (10331, '0x76e9a895466855167431d89620dca893ef3eb076', 15880), - (10340, '0xd1778917b731eff735333bd9dd8487ef36e8d4c1', 20210), - (10232, '0xa5e0b891d5f7daa83ab1b760e56099bb23f7ab85', 27111), - (10108, '0x4005470902ba4113d8d92e6ab4413c6142dc7150', 0), - (8169, '0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336', 0), - (9874, '0x68375427c29995b277ad343aa89be591926c6088', 0), - (8181, '0xb31faa5c1d581c70f4b6ed095c944936cbd2a357', 0), - (8143, '0x4b09a379d88450bce02dba991dfcff787d7b7ba6', 0), - (9928, '0x6db294920a6f87f32806d0615800f631d1949ab3', 0), - (8132, '0xb85d31b6f1f44c0d113bdca6b550e773b24d345d', 39420), - (8136, '0x6f8e39673e598e2b701a7f70d9e18e769f915fef', 35210), - (8140, '0xd20ce27f650598c2d790714b4f6a7222b8ddce22', 8610), - (8144, '0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee', 4750), - (8148, '0xd8fe942c2bd17c3b73892eee55934308e9463e62', 105910), - (8164, '0x2ff496c136b581d2231f9edd93ac3429acf3628e', 200130), - (8170, '0xcf472a57a79d4bba49755091e6a4c3acf8a43ff0', 246660), - (8174, '0x18df3818e91e7704b77493187bb4a3466aafd5dd', 104100), - (8183, '0x503f9fe2429489bfe0ce730ea2b221f470f4936d', 28190), - (8187, '0x8a958db686c100436610b7042d2c8eed343fac48', 2456450), - (8191, '0x8daa60e0ff964bb4d1f30fae8791626229c3f63b', 6180), - (8199, '0x635de30486d44277080b5c823656f3116c0ceefd', 73010), - (8203, '0x8bc140bc0bad95229c71f8db308a9f04289694f5', 191610), - (8207, '0x365c231a37e1de128e62cf173923a7fbae785860', 52450), - (8215, '0x7621e3d3780355a5fcacdd39ff8d0659a5b8bea9', 7190), - (8219, '0x91f626b833cf1da926174f30c8dc8962747f5ad8', 53470), - (8227, '0xcaf3f5aa5bf120407f9156cbd54c78bd440bfbc3', 9090), - (8231, '0xa2c75e8736e446149d5f368db640dd46771b4c2f', 23140), - (8235, '0x88ced047bf75de5d03f3fa4ff0d7224e4eb455b2', 65200), - (8237, '0x3f1c0ea76342cc3427962452891f8de8649a301b', 6090), - (8244, '0x8e7bfde3aa9041f15aebbca37cd7da993dc08560', 8050), - (8248, '0xdf83d5f341f72767bef69ce605f0df55a4f8d158', 27000), - (8252, '0xbe40dcadb6bf4de1c7810eca3504e5f3bea9cf35', 57280), - (8256, '0xfb0b1d35f0aad12d4462b9e62a1aeed8856aab6a', 135860), - (8260, '0x5edd077dc1d219ff80af1588ca5eb5ccdadf3575', 58950), - (8264, '0xb9e61a5ecae5c026b601681d95fe39b01454d1c4', 13900), - (8268, '0xb979d8ddc4cfd3a4eb271401e448a1fbd4c076a5', 15740), - (8269, '0xbc7636322b9abdba1bac9c6b7e119282b17517fb', 12390), - (8270, '0xa86882277e69fbf0a51805cdc8b0a3a113079e63', 10640), - (8271, '0xfcf1cd40fc0e73819cd486a7cb270cc31641d8b6', 19170), - (8272, '0x8379bd16381620914d8fa3d535f6ca9ef23ece53', 165740), - (8273, '0xc98f8aa1a406fdefeec6c30e7d187171f75a2741', 26350), - (8274, '0xacd3c8ff7c564d4a24ad8cdeb828445a75b21697', 10750), - (8275, '0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3', 30520), - (8276, '0x711ac685d32ef2c694298e453e9595389eb4b567', 19330), - (8278, '0x97f2f11fc9ee30e9fa92a9ebe1547e25f18cce34', 7060), - (8280, '0xb12da7c53bca57522d2d6dcc5d4b5397c70f9564', 65100), - (8282, '0xe48819eade2db95941a3d7f6230f195e880fc0c4', 45570), - (8283, '0xab3627317c43d394eb171170f818153b976d28a3', 66650), - (8285, '0xc53548a2cd877fa1cc4e836c1e8bad5a72067aa1', 14940), - (8286, '0x5176c0dd454b6a15fba23d7bbd7152114632ad94', 9080), - (8288, '0x693a7ee2deab47babae43fd9226012a7045d9eb4', 9080), - (8289, '0x55857aada1a01b939d8b1ee41300aa3cb5885ed6', 9080), - (8290, '0x1b1f6a57e04d3c19ed15f77ed8217199f4e5cc9a', 22860), - (8291, '0x7e799c969ea204a8b5f4d938407d9dc64dcc09e5', 62580), - (8292, '0x7334d854ab4973e9f3f2f80fbfc1758a300d7953', 128740), - (8293, '0x1012270925a4f629b2f6e006a2416d855c6a2444', 100600), - (8295, '0xbf222ca2ef5126affe94ea72903764d52cd12642', 68540), - (8296, '0x76963ee4c482fa4f9e125ea3c9cc2ea81fe8e8c6', 11160), - (8297, '0xf2088fbddd6d470962673e4e2883d4401abcd41a', 39820), - (8298, '0xee22b2cad0598df173099581ddec2c8b393152c3', 13760), - (8299, '0x58c5b881fb2794d04f0dc0ec65f94a119cd43aa0', 74610), - (8302, '0x2b2894d4d1e0233fdda02246371b9e37bb18e10d', 639350), - (8303, '0x308112d06027cd838627b94ddfc16ea6b4d90004', 88290), - (8304, '0xd98110a7bfc40d60d3711104f05098fd45461c7e', 23550), - (8305, '0x9315753ef081dfb2db63bd51e1c48c83dd2680b0', 11390), - (8306, '0x0a559aed5ca0ca4f07e2bfea109518800a8bd12c', 17470), - (8307, '0xc3b067848bd828a3b164932a8a04015c2b161f98', 73270), - (8308, '0x0571d9c2350b2743acc34e8b95d5527abad70908', 7460), - (8310, '0x28b4de9c45af6cb1a5a46c19909108f2bb74a2be', 109910), - (8311, '0x557c60995797fa7b47be105227a2e46148d85750', 7480), - (8312, '0x523c95b1a42427a222452b5cdfad48a608779996', 7520), - (8313, '0x2f8beba6312509c5f2859021ed20eb5b787a5495', 18140), - (8314, '0x907ed289f363dbdb2ab1230dfbd2f77a05cda82d', 110990), - (11675, '0x73d1aa788c87cb2ef0843a8d638d7399b1608a65', 6376), - (8316, '0xeacece9ac95be020f535845106c202d2bf7d32fb', 9610), - (8318, '0xbd8468446e7122686b16e185e68f764b66413493', 81860), - (8319, '0xfaa806320ca25e7621690152fc83b4257aa197ff', 7670), - (8320, '0x658884c6be7a46cc14229c7646a57c9e049f4a6a', 36130), - (8321, '0x77e8001a83e5175e36b0d80c11fe8b5a65ab5ca3', 29110), - (8322, '0x2943e07ca68febc79533d321f5d427136995ecb6', 117280), - (8323, '0x2300c67365e8d0db283cd3772237183beabf41bc', 9880), - (8324, '0xa6e5411a621a00d5195bb55d736505f4a5e7c289', 21350), - (8195, '0xf43b2be4aa887f426f05f78604b364af667c608d', 168316), - (8284, '0x5baf07c13df692185c02ea08e19a82fa066b75d9', 0), - (8128, '0xc6729c943584fe18345b5551599a8fa3e14d432a', 0), - (8309, '0x55ac518007a3767c2e1bfb728319b4abc64c3d87', 0), - (8152, '0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3', 0), - (8277, '0xd48ba19c4d8ae08fc189273b52b696931b271e53', 0), - (8287, '0x8bcb6e436eb92a2c6459ad64aa3c4c049ffb44ed', 0), - (8211, '0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252', 0), - (8279, '0xe307e9682dcb002e8af4543b071c36aa02c8e850', 0), - (8160, '0xe7925d190aea9279400cd9a005e33ceb9389cc2b', 0), - (8281, '0x33f858b3a2ef0b1d725e841e4993d396fef94ecf', 0), - (8300, '0x3b073a8d0ce0589eef40dd5015a27526260b2c38', 0), - (8317, '0x60702925f9966df283d10509ef36ffbaae1f4ca5', 0), - (8223, '0xb39f0d7a2e76df206e864863ff7197d1caa75205', 0), - (8301, '0x2d6fdee7cff50805cb11062860f9f64e6b859242', 0), - (8294, '0x50763add868fd7361178342fc055eaa2b95f6846', 0), - (8329, '0x98f5f9d4252118398ff1db3c02b1c0586fb141b7', 48730), - (8333, '0xc324429ac3f275d02cb4134114b55c0682dfc027', 16060), - (8337, '0x150f498a6b5a926f2c01b557033d321e24833e1c', 170860), - (8345, '0x1d3356c7c1bf57136e80f340975a6bc493fc0e6b', 56560), - (8349, '0x6689b9d1642bb413c74c35eeba13165f755f26fe', 91310), - (8356, '0x4a42c5633bd9ff0dbf95a5987d3270e1f20b1553', 18750), - (8358, '0xad66810a7358ad499c611d50108d0e0a8733e913', 102820), - (8362, '0xcfbfc924e3eecf119230f79c6545c2cbd4da6b0a', 248810), - (8366, '0x82882206f416e97c9a6717649935d9808c311675', 39640), - (8370, '0x683f1f19d2b5518c1bbe58be027e6702102f9a42', 19670), - (8374, '0x1438fe2670272d30cdc0ce1ef657c82b8dbf271f', 55650), - (8378, '0x6ba3ef70f5a52501ba37df23dc8a047db65295b7', 14940), - (8382, '0xaa7fab01446dc9c985e0624c8c3046ac3ef5285a', 65710), - (8390, '0xc4a6bb8dc04da482c00df877042ff17aadf8fb38', 21820), - (8394, '0x701d0ecb3ba780de7b2b36789aec4493a426010a', 15420), - (8398, '0xa2c5c29fb3a579ed46aa05aef138d093a5ffd855', 86720), - (8401, '0xd64ad0e8f8283f607c89de0367902682cdcc0a7d', 19740), - (8404, '0xe6918d49a7f215a437bad94ec29043e339bf574c', 79550), - (8411, '0x3ee6cb4bc7a755e13d8f255e18c3d55b06e68f3d', 26230), - (8417, '0x0964256674e42d61f0ff84097e28f65311786ccb', 130410), - (8421, '0x504c6d044810d750f810349c6af2a17dabc393be', 8950), - (8425, '0xa66fd186bb39c15ec8830948c9cad52b83d8f84c', 16040), - (8429, '0x5241051084a45a62ba9dff2f553e70cc0a7de9fe', 11580), - (8433, '0x098c02d4323d10592693f073897c7a782d97ab56', 11600), - (8441, '0x3602302b946044bccede79f689aa2ca505852841', 29430), - (8445, '0x95f45afde79613c10634d82e94b2a0da5bd2d0c6', 42020), - (8453, '0xe5ea585a76d0bcaf6c4d7396b27b06fea9aca528', 9380), - (8455, '0xd0f224d8248c9cb4b28d2bafd20cb6298ad7634c', 14430), - (8460, '0x140a2ce1f458b2fb07950dce32e367ce26685b54', 12050), - (8463, '0xb334e7197cf33cf2bdbb5555ae10188072bec620', 17420), - (8471, '0x435172c1b669839de487c8a26bee3124e2f06d78', 9490), - (8475, '0x61b41947d9105c174dad4548537c58a2cef6c8fa', 18130), - (8479, '0x90fd357446ee067b7a69a8c042e5648554d5d063', 111540), - (8483, '0xc2d732167395cc3e1ed63ffedb31d51335a05144', 22460), - (11676, '0x6b957e7ff49d6e5bda73a187c26964907bf490a5', 6376), - (8491, '0xe05149b1f3fc90b1832106233616abf1eed1a127', 33050), - (8495, '0xebfe1ab93d1122e065adcafd8c3174261e8e726f', 29170), - (8497, '0x8a0c391ed12dfbb23d4a926a7c7353dcfcca8a47', 12310), - (8505, '0x7dc22b78583e670001f4b75f21ab7ec19d822b3c', 9710), - (8509, '0xf32c74ca26465dce91df6eed7021d6dc110e3ba5', 19850), - (8513, '0x51e6f5560c7ac0ab63fa4e0f77375172d6775ab5', 80290), - (8521, '0x0160fe82ea10457f16a1dca34e305be770869d98', 27910), - (8525, '0x1aeb0f2883488bfc09ebe8e9dbcb29e5515f24b6', 17630), - (8533, '0xd2bc5cb641ae6f7a880c3dd5aee0450b5210be23', 12630), - (8537, '0x85df020866f4b94f96c855c2c28498c128679f2e', 12670), - (8541, '0x8cf84e6069fa1bdfb6db0be667e762de2984c817', 27370), - (8545, '0x5dd5eafe84357a8bd7a1ac69f425e11ab1e59bb8', 74570), - (8553, '0x68235b42562ad5040948932c2942a6c589b2ab06', 15400), - (8557, '0x33b3b31461f5d3ad9aae54205774fb7db77f1bf3', 207940), - (8559, '0xcca549e788df73fdc69de96f057ae153dfce7420', 36290), - (8563, '0x04333a1788a47068b9102d2d35695c312a0b312f', 68720), - (8567, '0x8c2538fd519109cfbb1db7e240ad9df94fd05971', 39400), - (8571, '0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3', 49200), - (8575, '0x56788f7b66060c2bdb816e0c424f84088ac01fbb', 10210), - (8579, '0x137331ed7e7c9ffffb24f738c6d0fb52bedd97f9', 158740), - (8583, '0x4960b5248ea4416d6f1574344825afd6f5228487', 39220), - (8591, '0x7fdca0a469ea8b50b92322afc0215b67d56a5e9a', 117690), - (8595, '0x7ea1694c2f2a34374b0248397a6172af69c1f501', 26040), - (8599, '0xbf1b61cb577b9370371a551c4f3def0526193718', 13180), - (8603, '0xd43a380bc2ac4b537a98e2be1e2bb61ea0ebfeb5', 43720), - (8613, '0x08d8604a1c24fd74b85366aeafb01186d49708af', 28100), - (8617, '0x4e5225095100032a3217f403b1fc7fadf9185112', 53020), - (8621, '0x77350e1152efd5f2d807a6124015c629a907155e', 10520), - (8625, '0x5d1234fde915e2e5989e91ad6c9184dbaf01015b', 96190), - (8629, '0x1aac4cbff120e1ac659a0ff2645ad63ac096bf3a', 24590), - (8633, '0x8f9deac37fa8a378da09ed89a889dae8e39ac509', 44730), - (8637, '0x9b8906e2bb3abe81a93ea59c8b1bf6106d81bd9f', 10660), - (8639, '0x465fb065adf0fd25811bf867b5068583c8fc4e64', 75010), - (8642, '0x1ce3d7ff0cc17c5c4b543b3b2bf433960aded33d', 10710), - (8649, '0x822ec855cc9f41b592622108e6f3565e976430c6', 151690), - (8652, '0x5989e670c16a4d9fa4ec87d25e7a320d46b3e869', 28010), - (8659, '0xe9042a56565fed328bc5634c834569b753d42f12', 13840), - (8661, '0x64c3eecc8b27c5c342706ca327e5a54235610683', 34490), - (8665, '0x8fb041cedf8ea3a1dd5821a96c6c4b5ceb48a6b6', 19550), - (8670, '0xd9f2d8da9c8ff285080fe0df6285f3551bf1397b', 19600), - (8529, '0x1160e5e2d9d301a81cf5e9280174bb93ddccd606', 24076), - (8461, '0xf56e55e35d2cca5a34f5ba568454974424aea0f4', 137126), - (8549, '0xbaba775a0400a5e442335ceaa4820edb1ded8f73', 0), - (8609, '0x8270e5cccb7e4cd47a49ce29ade9d39a5960d408', 0), - (8501, '0x88eb76fe6a0c439394cab8956cdfc7f84922f73b', 0), - (8587, '0x605e05bf092ebd18e06d1b0f699df5b9dd85d452', 0), - (8449, '0x224e69025a2f705c8f31efb6694398f8fd09ac5c', 0), - (8386, '0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7', 0), - (8341, '0x32ec773ed7b5a54d1f0ac77944caf76ed30e6b86', 0), - (8668, '0x4ca791f11e53323d2907257d6dcab9ea888b65aa', 0), - (8457, '0x95cb62d2c2da19612c3a287637a33bed083b3743', 0), - (8437, '0x83132e8f93920b2dee5c4297513c6b0ec09279de', 0), - (8325, '0x24ca9423d66595596ea05b2c8a49e94ee79f1fb0', 0), - (8326, '0x4a0833202f399e27d8e6af4388ac36af07f043d8', 9930), - (8330, '0x45f9a2351486dcf2f8b0f73541b93c4de6d4920e', 23730), - (8334, '0xc3ed5d2a44c66191e38211649cf99c6b2bc2bcd8', 7900), - (8338, '0x2b84280c76877b341b9f8f627cb56cf7f38bb0b4', 7920), - (8342, '0x4e935b522d7a4674a91945db6898cd5c313fa72a', 29280), - (8346, '0xc181ff30f22f85bc42c4287be492d69c184c3867', 10200), - (8350, '0xf24a4ba4c3c87f3e097bc06e7625aa02d5db8d0f', 10330), - (11677, '0x0ce6a19992cd1cca54e83173bd0b5137f89b0f67', 6376), - (8359, '0x0658bdff8fa7128e41c3f46feac8d0c3893f5671', 12570), - (8364, '0x00a77c3b3e9a51b8ec42cfe5844d066696eedead', 137540), - (8368, '0x2fe65c45b5b9b54164427884f014af85acd09a22', 71960), - (8372, '0x5561974f0d35d8c355241a5568894df7b691bb28', 14830), - (8376, '0x98566fb212871c7b51a09b30d7320e564b9d0504', 98500), - (8384, '0x3164623c29c8d60c7d84b7c3544c596c02167e72', 30440), - (8388, '0xedac3381eca8487a723d80a882430f1fed8caf0f', 40520), - (8392, '0xbafb15bf152365bd344639b6ede5dec09d5ba64e', 25240), - (8396, '0xee70df3fe3877bcbc7de592a5557b89ce46d7be9', 130400), - (8400, '0x39716fe8534b630156ec768532fe367306285799', 8660), - (8402, '0x7fc53dfff734d7cb9f533154344e4d569a34f8e8', 8700), - (8410, '0xe401ccf9671a2e0331177a7ac5568c10e89aae4f', 16260), - (8416, '0x695f89e00288f6c8280f21a63b89b27b53a68f8a', 11270), - (8420, '0x5fa05c69dc06cad49fb77e9b356c9f0bfa3ebd00', 18140), - (8424, '0x09df9bdedf10ca9ba636a209bb5bbea3f4227153', 11410), - (8428, '0x81374f000b448c01dd109f920d731ddd66bf0638', 38100), - (8436, '0x6bab973001ec05f4935766e29f09045fae184f73', 60810), - (8440, '0xce6fb9f93084629394261e83371dfe2b224b71f0', 18720), - (8448, '0x58a599f71f4ee4d22fdb546aa3a50e55b94e8e99', 18400), - (8452, '0xd08da3621a547d7d7cb07425e6aa6679c566e40f', 67430), - (8456, '0x41f727fa294e50400ac27317832a9f78659476b9', 9410), - (8459, '0xbd1676b6f9db967e351d3dd1ef614ee46d0f1f24', 9460), - (8462, '0x8a6ca0f498ee45b5bcc2e60eaa68f92f93bedfaf', 9480), - (8466, '0x5a787f8d4f867496a47ff221e39aac23d7d47bd1', 9490), - (8468, '0x28aba2dfcf42eadfee60cebfa650ac7184652424', 9490), - (8485, '0xd5b472ffaf39476f83b8975667169ab6f9216dcd', 413070), - (8489, '0x0cf68416279c2a9bcdd0fa6cc4e0347ac3d55d7d', 43210), - (8493, '0xa34fbc6bb017cd320833d74547fc639ecf39c12b', 9660), - (8499, '0x25fec6e8875120dd496e05cb474373be35f2432b', 42240), - (8503, '0x817771a4952bad1db380aebfdc2717116b8ea758', 21880), - (8507, '0x9620f5fc93aafa58173053c7065bcb0db56f2159', 89340), - (8511, '0xa2746b2a56f9886925c03af1d1e10b8b3dfbbe29', 96770), - (8517, '0x7c8db435f2980a555394c21919628490be494b5b', 12500), - (8523, '0x012c213e4fa5144ed956066499eb5e9e0fe2f57b', 20040), - (8527, '0xc43e98042c74d1785280ad792ab4d97d56aca07e', 25980), - (8531, '0x83d6ad420b89589cb7d7d95148d87eb29a03e80e', 12610), - (8535, '0x03356d3c695162ba452951074089dcf14d6ec0af', 23630), - (8539, '0x0ce98350b9dea81fe0b47dbc4787a1e9f8f1d7ff', 93070), - (8543, '0x3a3297881e9904d0463fec7acd9d6d34b915dcb7', 9990), - (8547, '0x6c167ae3f9247ccfbe9b9bf3c1b014612ca680a5', 36560), - (8551, '0x6e58fa4eecd76e95d4f40ed2bb9a297e0e2ae99d', 34290), - (8555, '0x8fc5d6afe572fefc4ec153587b63ce543f6fa2ea', 199580), - (8561, '0xc61ecc09913be00f9872ef5ae9f411dadb90519c', 29040), - (8565, '0x28679a1a632125fbbf7a68d850e50623194a709e', 125850), - (8569, '0x1f0b9135a4cd2169177cf12341ebe002ca94788f', 31040), - (8573, '0x74fa211f68b0e6120392ef713babf347d62d0ccd', 12970), - (8577, '0x212a9315016e47e6a3a25e959c1d8d0c2ec3c8f3', 31250), - (8581, '0xaacd601c5377ddf3f1f41eb1758ba0d2fa2b39bd', 464790), - (8585, '0xd40d1bfc948c358e121ebc3341ab06ffa5b5078c', 13080), - (8589, '0xc6bf97b9543361cfb0abb6cecd3e15f6d82f96a8', 64630), - (8593, '0xd5b82f1efef871c931128faaa4484d4861d1cdd9', 53400), - (8597, '0x43fc0e5a3ed641c96740402abb119f35490c2a92', 13160), - (8601, '0xd2779012e62c8a40437a84e3a2102d6aea2b94b6', 13180), - (8605, '0x6ee31f6954bec68f5d0b72b9532b63d315c52014', 18570), - (8607, '0x8b80b850c579aace8fb562fd9a6cea8869b246d2', 30910), - (8611, '0x6aa884da2797c14e9f61c31700b8702860f69377', 16070), - (8615, '0x4303ddc9943d862f2b205af468a4a786c5137e76', 374150), - (8619, '0x2f21f94e1e57543f4663b722b6b1bed97c576bd4', 33570), - (8623, '0x49c4688912b50fb7b775fba7fe668e785b006049', 82200), - (8627, '0x906edabb3adb8bcab69062a94f030493b65883d7', 24490), - (8631, '0x4ea2a2b47286d31302dc21faacbac97f98a79dd9', 10590), - (8635, '0xc3260d96a7745fe24ba7c53d8b05fcf1f397bd27', 13530), - (8641, '0xec903903f51d11b24dcf9d5161ed889168e31572', 69440), - (8644, '0xe19753f803790d5a524d1fd710d8a6d821a8bb55', 51700), - (8647, '0xc0e13ad655fb96569dacfd79c5f65f6f4c42b023', 10770), - (8654, '0x54a80e0417008db88036f4fb2c4646264717f7a6', 10840), - (8663, '0xefd6777e2fd6a65a245156bdb81d0139fbba3cd8', 13900), - (8671, '0x7769d00c491293d5491108311a69c9496eb14caf', 63280), - (8672, '0x2120c9a63f1d1d09b73eac514fcea779ed1e5d39', 39740), - (8673, '0xd0e8060e52d8c23984f22ac899d18fc53aa8bcbd', 10990), - (8675, '0x81ddca7cd2f7d924dd095d6ae3b1d814d1059164', 54620), - (8676, '0xb6712e0e348b0b7ec1cda3d72264d82db9b361ab', 27610), - (8679, '0xfd83ec36e824631d186701907209bac485ea5bd9', 25470), - (8657, '0x79c2d72552df1c5d551b812eca906a90ce9d840a', 0), - (8477, '0xb70399fc376c1b3cf3493556d2f14942323ef44f', 115266), - (8432, '0xd5ae5b9c02413cf22cd49d009c4344f71776f4a8', 32546), - (8481, '0x6db11a284803898b0bd4efb09ee8749fee36d00b', 0), - (8380, '0x42e32f13df7250784824a9826c30d724346381af', 0), - (8473, '0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e', 0), - (8354, '0x714b831eb02fe854283219b2b9f1c6951f46dcb9', 0), - (8327, '0x9bcd78ae10965c28ed1d60f1963ad55f245bd353', 22210), - (8335, '0x0f488236185607138ea494cf48cc923c1039cb26', 15890), - (8339, '0x6fbb0b11292a3c7fc82f8b922b63a5fd28e510c5', 21760), - (8355, '0x84697ce7ff7782bdfab734a36a5d665b75fd1c36', 20470), - (8360, '0xf9e6de3e51f4090c87ed91551bd0413ae4cb0b3e', 53670), - (8361, '0xa1ce40d373815cd18013601184991da2daa05e8d', 16700), - (8365, '0x09ca6926f0a1fa30ddc04710db2d89ec0d73b608', 21930), - (8369, '0x09b2f0988b6d24336b348c84c2764d2b4f85142f', 197890), - (8373, '0x14af1e216f51704f5bbec7a30b37a9fb65f794c3', 22750), - (8381, '0x58c7f158b78e896c94c0c9787c8703612e6c496f', 44680), - (8389, '0x1d4adf47b7a4584967a6f5ccc625684732e0efa1', 8600), - (8393, '0xd25ad8d836bf95e2876e34d6e46635a90c38bb86', 120640), - (8397, '0x486fb530c103b750f82074f95a441d307670009b', 8650), - (8403, '0xf641e2800a94b49b8b428353ea71aae85865dece', 115900), - (8405, '0x285d3a530035fc5260b411f1a908dcac7bd34f80', 77060), - (8407, '0x7e2f9dd040cf7b41a1af9e4a24a0edb04093dda1', 26910), - (8409, '0x060233eb6867f329c57586d9be5bd918ad06adf2', 8810), - (8415, '0xb3792cc9d596a717e8f7234e49a2222ecd011edd', 11270), - (8419, '0xbd1adf73228fca70f4430894cdf117644d0d0dc9', 8890), - (8423, '0x39a371e7c38ce31640470ac53e24093d2fd25e56', 11400), - (8427, '0x3bb3256c141fdd8138c8a1457fb1c1d6c157a6fb', 11540), - (8431, '0xa8cc6dc1d07282dd5e614b08ca7e02153e4c517e', 9110), - (8435, '0x84d00054939b0eeb0c1779e83419250ba44802f5', 59480), - (8439, '0xa2afadbe1126f01cf2c6479eec3a0610607f1ba2', 22420), - (8443, '0xf67cdd951c3951c57db14ed0c261f2d6a282e3d3', 60060), - (8451, '0x9c628b41ae8a73c4c1a607d3793ad2854fc354d6', 11870), - (8464, '0x6008292b9637f069a716cbe6ccb92d19eef13a4f', 9490), - (8467, '0x3d6b2cec224643267b2e4f8f81bb0b18f62f3c1e', 9490), - (8469, '0xa31b33373c20944a9865ac665a897b41ada59a9c', 9490), - (8472, '0x6d3c0c5723a5e8b6c33e5edfb8018af80bcb61b8', 9490), - (8476, '0x81df54bd9f9449153927e20d10046d59bd3aca95', 12080), - (8480, '0x6ef90fa7a9d396451b758539e249ecc2f5b8c7a8', 23700), - (8484, '0x1b5f4b3cbff53245ae516b5475be336622dd5dc4', 138830), - (11678, '0x585d2e075e614dff0e5b34f217559081ba75428e', 6376), - (8492, '0x70ece45cdc64a768f936ccb8ac851578251363e3', 79590), - (8498, '0xc340930ed26153c690350a0c1765773a016f8bfb', 19680), - (8502, '0xf04fd8595b52f530a775c5aefca7a7c7afd00aa8', 23280), - (8506, '0x3c465de32bbaca3a6cda285b93417dd0ed60c7e7', 12360), - (8510, '0x50c206cbd44fe4f8ffd316094a5ea02e5f105ee8', 34860), - (8516, '0x09fc1031d03a78ed4f60463fa9749870d33439bc', 12480), - (8519, '0x5bbddf0b6bc7ec065a55d8fa0fcdf9582dc10835', 206930), - (8522, '0xfbf7e572a63ca6a4e21a83720c0f23dd644e32e0', 17600), - (8530, '0x2eec6f87a2727af2de1e6049187b0072d90d18c3', 20550), - (8538, '0x547e74307af43a1bc633761e36477899299a6a75', 20250), - (8542, '0xf9e545f86d545d4515426f90ed34dda1289a53dd', 128970), - (8546, '0x96a77560146501eaeb5e6d5b7d8dd1ed23defa23', 198340), - (8550, '0xf5a57dae2ef473926ce7cc2b12c46de5178f5cf7', 10040), - (8554, '0xc8e6379c2c61cfde1d65ac28c65656f50e61cd19', 10040), - (8558, '0x0551eb17f2ac1db089eaa6690ef37ad1fe835b19', 10060), - (8560, '0x92c03c0788d4eb4164620fd51624d0d42b1ecbd7', 54120), - (8564, '0x12cba59f5a74db81a12ff63c349bd82cbf6007c2', 124890), - (8568, '0xfbdff2a13930b6035dcb4541bce99f857f64ff76', 10150), - (8572, '0x85b8c953146e0017dc071d8cba36faa8928a2b67', 15630), - (8576, '0x6654810e60e9182feb1ca4fdd9b68f38a7d132fd', 18250), - (8584, '0x173a55e664c25986f7a2495998751a255793d1ab', 20900), - (8588, '0x9dfaa44b42750fdae3c1c8689934b00148dc0680', 31810), - (8592, '0x2a23c62ef82930c4b4fa1a6bb1ac497776e66285', 15830), - (8596, '0x3f5e01ee8439e8c0ba87025960bda715626b79a9', 15860), - (8600, '0xfc372c222faa3f88aac417f1b7037bab619a6902', 26410), - (8604, '0x308c3601525200a9e2173b467f82c22e20e949f4', 13210), - (8610, '0xc682131e3b82d2ba073f33f0889c36e52b4ba402', 32620), - (8614, '0xa70d92ee1001c6cab121b8a27926339b1f6d2131', 21330), - (8618, '0xf7746948e695a4a53cd2e53d278e81e6108554d6', 80900), - (8622, '0xaac0ed37b405cc13e7c9167a77dee510688dcafe', 10520), - (8626, '0xd0f0c47cb07bed3f5a7f7f28b0b63e1a814874c1', 75980), - (8630, '0x5a492d1e15f2ae4b418e424ba9a1d112d6e9706a', 321780), - (8634, '0x18190f18098fa97f36e398a26be613cb2c1c2eb0', 153390), - (8640, '0xd62e2caf16c25fb4d99a4c5ef78476569a075043', 23920), - (8643, '0xbbba14a63a97d30d4b1e2fd221ee97bb068fad40', 21820), - (8646, '0x6f46d90553141d464c000d76e41d0d5380fc0b23', 54150), - (8650, '0x43b7ea3ebcdd8133be85bee435b06a3a2db6cbcc', 397370), - (8653, '0xd3ac6140221f383357b6eef7ca199ea346819460', 44510), - (8660, '0x7e09428efcb471ba304b0723679502c01161f50e', 16700), - (8662, '0xfd3ce021cad80cac4a8c1aab9d8095863d63ba96', 13900), - (8666, '0x5904096158981102302a5bf06e6cd97c61a274cc', 10950), - (8677, '0x4b6a9533036fb63675f957db3d01cbe741390d5c', 29690), - (8514, '0xed21735dc192dc4eeafd71b4dc023bc53fe4df15', 628856), - (8347, '0x226a1dc08c24e217ddbbdf4298d41af4b4d47ca6', 59526), - (8385, '0xe4848bab98fc72bea42977d957abeda4c2fce35f', 0), - (8580, '0x05ff7cc8b490b38898744037f951f3247673c2ed', 0), - (8534, '0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4', 0), - (8343, '0x48a2f743483dac0bb8973a22a3a7e55ad35022f3', 0), - (8526, '0xe06ce2ca5418f0763e9091f5bb348707a1b65bde', 0), - (8656, '0xd00226b73bab097e97c6df416dc031df7c4b5af1', 0), - (8669, '0x5090c4fead5be112b643bc75d61bf42339675448', 0), - (8331, '0xad5c39984149aa60663bbac47676f84192c04ca8', 0), - (8377, '0x4e3c897b14dabf7396f102965a70de40e1aac299', 0), - (8414, '0xd27967a81a397b544a166a6bcfa5cd0738cd84be', 0), - (8328, '0x70d04384b5c3a466ec4d8cfb8213efc31c6a9d15', 422140), - (8332, '0x97f1290f14cf27bc53fd9905a389a14ac0993b84', 77710), - (8336, '0x00caa5fc4f0c1ef8936c576e830eb0799fab00d5', 10060), - (8340, '0xfa205120907585d2c46214beb2f27bc496e4235d', 40740), - (8344, '0x5e756a3cb21c5fd471156d5229f09676dad78500', 86000), - (8348, '0xad73eafcac4f4c6755dfc61770875fb8b6bc8a25', 85720), - (8353, '0xd06790e35b6e722f30082ea2c23417db3b2244dc', 10380), - (8357, '0x86325e4684fec94e4e77bffd4aa6e665c933ce87', 16720), - (8363, '0xcccee5f5b1fe6678ce511c66307da1d278ff1ead', 33160), - (8367, '0x70a9c537c1cae986a84df0f9bace1feba0ed8e14', 10500), - (8371, '0x1083e32f8938d35abb64afa2a7cda4c7a2b0ba57', 24620), - (8375, '0x5629857b9ee0833f8e413b9eeb518f9c2f82dee7', 21920), - (8379, '0xe372cf77187e27b15805803cf331f6b7330f223b', 52550), - (8383, '0x3a4fbcf9c0f0d781712c81a6f782e7d31091d93a', 12960), - (8387, '0x351201a7d6bbd30a89bd09d681d1ddb657ea4a02', 125580), - (8391, '0x746def24be0c1b85e82d37f35eb444cc635b04f4', 21580), - (8395, '0xe7e3884efd3955789c4baec29c081bb61ded8015', 18340), - (8399, '0xed49162911774f5561fab00b0cbd827710c20ddc', 64560), - (8406, '0xe588a2b38f24c72e30535885d645ceba44480d1b', 13500), - (8408, '0x18fc3c60a80ba26a076cf633c239df0e2e80a797', 109330), - (8412, '0x84a48792d42f8b037ce518502a24c9b2052cf316', 55010), - (8413, '0x7593c9b3f6213552ff0393b059fc77a2b0acc832', 11260), - (8418, '0x056d8e22759a9ae9359a21749c6d7d6c12d97177', 8880), - (8422, '0xdfe467f610f6707169523a3b24369732d339c2e6', 15990), - (8426, '0x65f1671ae44c263aaa74552779569b9a368120e2', 11430), - (8430, '0x0d6434e16a906ec5cfadd6b73d25d6c033b3587d', 18900), - (8438, '0x7a1d5b6d777cfc257d10707bba4e94a0bb2ffa54', 86650), - (8442, '0x9eb3feaedccd9b364d5c316888b47ed21c9b48b3', 98870), - (8446, '0x60da6adb09e45f24d694d560b04e194184519b80', 11830), - (8465, '0x5fc0d98edcc48a0d3b4d974c6af607a4b9f5e054', 19400), - (8470, '0x4b07b6f0998735ecb2269694dd961e5f2c805d73', 9490), - (8474, '0x6b431ce59bf4e10778903c8769ad398f2f7e35e0', 9490), - (8478, '0x009ae2d1a7240cfc89095fab06ed24f1641d9169', 41590), - (8482, '0xdcfc1df3e82a669354fae73a2a10f3c0c7c0e156', 42670), - (8486, '0x9f456dfe4bb4d1a8450e16ad3d8738c117892e8e', 61130), - (8490, '0xb3a5cb6b38bc62d398ea15a5e63174aa6691e8be', 17240), - (8494, '0x712f482cd8e94b71a0aeff984abe2c294dcb2d28', 77690), - (8500, '0x10676738db9601c5af144a17c3a48c8ebda7e353', 388940), - (8504, '0x9740f094f02ccf0e7389e9232b470b068befab4c', 45560), - (8508, '0x44d9ec4cbd88556b706be3079e3762a2e5a3315f', 285600), - (8512, '0xb8237dc5d28065d28f818fea8e2220b556c56cae', 113370), - (8520, '0x000000087f00ae6e6b0da6d4125096cbe2138f25', 9840), - (8528, '0x244306053c673b93bc9885fdacfc352032725c87', 29000), - (8532, '0x470a20d2d07ed062c21c9f67bfc20750611610b5', 24880), - (8536, '0xf94c8a915acae6b2272fbbf78c26f860da188e1e', 24990), - (8540, '0xb020928356dea062667599d035c49b60fc3422ce', 71340), - (8544, '0xb796f2847b022c91bf80cdab05c3f0c0c948963c', 19130), - (8562, '0xf07fea54203087390d8821c6c6be67321d083064', 19260), - (8566, '0xa9ce598b9286acecf2e495d663faa611256910f1', 51230), - (8570, '0x6e2da038f09cde468ebe8cf3211149ff80cc34c9', 10170), - (8574, '0xa1aafb06268f3396c4683e3f635a4aff0e040e46', 45770), - (8578, '0x7f99acc18a490163a6184d89fe2a2fc80b8fe2ba', 10220), - (8582, '0x4826b308ecd84ca214248509fede5881a264b0a2', 28700), - (8586, '0xd3d70afe29beced2eb2ac1e407a2007150e2312e', 227960), - (8590, '0x90a27636185791da13e786a4a9dafcf2e2490f2e', 15820), - (8594, '0x9d356f4f49ce1ec8094a55f918d6e5c1cb07d47d', 15840), - (8598, '0x9e58f3070d1e1a1e704f50c0eff241a655e9bfc5', 21050), - (8602, '0x158f05fdf8f8557d211d7748b0afd32439a21926', 13180), - (8606, '0xb82764654369ace610fea04e2fe9f1942ff53ae0', 23670), - (8608, '0x8060c684c03eb9e9065f3799d18cb365d153abff', 42320), - (8612, '0x7c9728736f4299e43545c7df677026d0b3d909fe', 32860), - (8616, '0xae10415dcbcc2a7f13e9b302bb8585fdb60a66c9', 21140), - (8620, '0x0598594388e184b4a24bfae62f29cf2267f1b536', 24860), - (8624, '0xe4784e4c0af675b48d7c2b2dafed8a27686d3682', 62770), - (8628, '0x1471966abfe75cf87fdad8b76d657eab8400f0b0', 31790), - (8632, '0x8a95d5f9ac0eebd5880199ea8fcd0fae845bbbf2', 110460), - (8636, '0xfcdd256267ade068babfb94f526a47aadf143a55', 104210), - (8638, '0x839784644c8c3c005d5bb17735968fc06f93abde', 86790), - (8645, '0xd206bad487e3d6a6d94de601396275065def594c', 10740), - (11679, '0x4784659186ec7fa0e19800f67156b2cd69af3f5a', 6376), - (8651, '0xee0c0d565b483aaa02581841d071986e7dc00c82', 31900), - (8655, '0xd4c124fffb12d33207e76ec2b5eee7978a50fb44', 223060), - (8658, '0xe1b0345423886840c0b004454b8a125990464446', 34430), - (8674, '0x1c172bad049283ab4f763c61fc04f2d3eaf261c5', 41060), - (8684, '0xe1149ba1477d81de13af598efff1daea364f452a', 14040), - (8518, '0xca39063539e71e572f1d2762ebaa61c8dd6d07bc', 0), - (8458, '0xcd3173b09c603f273b33508cbb90f2f1da47cea7', 0), - (8552, '0xf34196597df209a04fc92b97071dcaabbc63f0e8', 0), - (8496, '0x1db6ad3344f1ae0a495b28b031b80cddd99f2fd0', 0), - (8667, '0xed727248627fda303a1794f5da747215b6314330', 0), - (8450, '0x688f1d8b0c59e9716d3512a0cbf32cda837544dc', 0), - (8454, '0xd765a67d91a7d186b372e0bc5e6382296e6b216d', 0), - (8524, '0x6d15dffbcb274e423c51c197777eb43665018533', 0), - (8681, '0xaa06f32f1a934b2a843922443c12bce904ce39cd', 0), - (8664, '0xbf46d2161045251cb97d0b41929bc1d36044e1a0', 0), - (8556, '0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712', 0), - (8548, '0x92b964b8b4b640e7fd3b51f5fb300aa036acf047', 0), - (8434, '0x0b8b3648060b97447c023e9ee227bb92e35b30fe', 0), - (8678, '0x235f32bb3920bf99e9fa813a37fcebadaf9cdf39', 11010), - (8682, '0x02304bcfb1b7a1b1afb38f6dfd11a49c6fb0edf5', 29170), - (8688, '0xf1cdbdaf9849959de3b6ede5012a52aa4aef2db7', 32580), - (8694, '0x49c08159de1ae3a8b2d5cc7baa9a23ba9e96910c', 38960), - (8702, '0x1ada9ca30a31d5dd3e14c7f0974a77b92c953f41', 30350), - (8706, '0xfd067a330af3e78468c36cced4ea8877b3fec7d3', 17170), - (8709, '0x1cb1acfc2da19e35602a695d4005192c1a5c4361', 14300), - (8711, '0xbedcce028f470d29a3140c4173321286cb88b5e7', 266280), - (8715, '0x2a08325ad00da971cb66a5e9e04ad3529b8f59ab', 40920), - (8719, '0x38fcffcd0cd989978dc4f0232d45e7cec0cbcd1d', 14390), - (8723, '0x27c98b1b1a67495cf42c99da293bf7ecc0bab246', 20380), - (8727, '0x5b936a94459e1a0d7f3d26e0a739efff11851a5d', 14550), - (8731, '0xa96cbc4c3651b25aebf9ec28d478781bc366bac7', 30210), - (8735, '0x4b6c4bb261d6f4b4630e7afd2a93f090df0719f9', 11490), - (8739, '0x7237462736c21cc333977c20a93bdf32511ff086', 50720), - (8743, '0xd4027b154e579d984778964b608134b80f606921', 26260), - (8747, '0x55b554efaddb6a229a3785cc535779e54be5308c', 118270), - (8751, '0xb386c139442a81a482424f11214e70625a2c7109', 591780), - (8755, '0xe7879a2d05dba966fcca34ee9c3f99eee7edefd1', 14780), - (8759, '0xf3361be287cf7163f0cbe56b507bedc9c0a8e0ae', 14820), - (8763, '0x0d1de3147e182a6ccd101d98ca76dce540f31657', 14860), - (8767, '0x9240427c5b286e47728b80fb746f1c8b564d5567', 20920), - (8771, '0x62f6ca6594049a5510c1eed5efe5bd667ee61013', 14930), - (8773, '0x60eaaa669c70166dc7504a860353161cf525da0b', 31900), - (8777, '0xd36aab03676f519ed49c1863cc6003e9bbb1e1f4', 14930), - (8781, '0xdac8fc039f633969116d412522b3338e3f1eba44', 31410), - (8784, '0x097041aa57e3462351c2ee7c90cc43c3eed8cce1', 11780), - (8787, '0x0ed1f91769d6add12f3aca1229f96eea198ac0ed', 42290), - (8791, '0x9f9addcb035b8ba1a19289333d5c35d623461a42', 41820), - (8797, '0xf54f4815f62ccc360963329789d62d3497a121ae', 23030), - (8801, '0x18b93ebb7fc1b9f3a8f08fd3190ea3efcb124b58', 33750), - (8803, '0x9226bf4554c4b4dd6040fa0357356e47195d7205', 11870), - (8807, '0xeb1ef6c1103494a39b6df52738ddc93fcb10740c', 34990), - (8811, '0x28179240a7798abe7e72dae9861fad3529959e96', 23470), - (8815, '0xe288a00df4b697606078876788e4d64633cd2e01', 11990), - (8823, '0x0b81418147df37155d643b5cb65ba6c8cb7aba76', 15270), - (8829, '0x7aeee42683e7cb6202eee0b6480c48616cf9fac9', 64340), - (8833, '0xa871ded972f7b8466b79f0c355352b29608f1830', 18530), - (8841, '0x711df55d3663c04b2cbced323ce4ece2cbab92b9', 12100), - (8843, '0xb9447ca592c68d56ee481d5d12adf11db1008a72', 53840), - (8847, '0x384973ce79c352ad766f56672babec85e897f234', 34080), - (8851, '0xee8e952926d7a2413f1f563bc9595bcf45af57ee', 33430), - (8858, '0x87bf447ac29ba9498e5c0859513c39a0931f303a', 15560), - (8862, '0x93f3697bd5489c3ca6791fcea6606c153dc5f4d1', 56600), - (8866, '0x1a72451e54ea87d2552d2d75217001721bef3a10', 174130), - (8870, '0xb900b2059e7ea4136b42815f429302e1b7001a80', 12320), - (8874, '0x93205bff8d090578e14fba9b97bd1505ec030670', 44800), - (8876, '0x8214143cf60d19856806c91ecbca957739c91004', 22090), - (8880, '0x14d9c5035a3f62b63d32edaec6de6bd7134a2ac7', 12380), - (8888, '0x10581fa7522f7fec08fc070fd77233aedb10a1eb', 12420), - (8894, '0xbdbe82206e469882e312939de961778a4b6ab3c6', 12440), - (8898, '0x226f13576f8cc36de54c56adc618db4822205e3a', 15910), - (11680, '0x06ca3eac43301460c3028db8ba4e167e66d7f071', 6376), - (8904, '0x0351daf1c529980895d57be8b2c641be979b468b', 19240), - (8911, '0x9d4e038941104a4f80c8dfc39a4c604a4eabf161', 25650), - (8917, '0x259b9c4cfeadaef8a5b842710a777364988415b3', 12630), - (8925, '0xc672f0fa5ebdc8bc4877f53f232a98e87fcd6416', 46240), - (8928, '0xcca768585e1fa2871ddfb789ffa95c6288162fc7', 70750), - (8932, '0x7f5be0c65e05d5567c0ec8e8f84d2310e784fb5e', 42930), - (8935, '0x4991823598287059e469cd7523538b204760280e', 25060), - (8938, '0x522b9c4dbbcc2a70946da16126c565e2dad40d19', 16300), - (8941, '0x2a0609a88b2e2a4b4bec22a67e816814722a1a84', 70750), - (8945, '0xd19bf5f0b785c6f1f6228c72a8a31c9f383a49c4', 246990), - (8960, '0x2d66a6a43c83b179d68afc4f0d93c72b689438a6', 27040), - (8964, '0xf1338c4afc97322b71dd9b0708847ba988d8d8f0', 43480), - (8968, '0x53d2c7765bf77e8e2c41a9461fdc1c0f37d09894', 13090), - (8971, '0x5f7134664844b4aae298fbfa3aecb2e2aa9c99c1', 29670), - (8975, '0x172d0e144af134d8c77012f2468a2928781b35c8', 13210), - (8982, '0xedb40e5fb53587c2b5dde4d9c62f4e5309b82622', 30820), - (8986, '0x6e1b330095496e6cabc703853357ca03202e9758', 16930), - (8989, '0x83420c847d19423bc96a2df0f9813214a56c6000', 92170), - (8993, '0xd1a89d68b963b8dbaa6eb143a60baefbaede6b60', 52120), - (8997, '0x2cb8636240693b445ac98f2091b58a898e35e60b', 67310), - (9000, '0xc322e8ec33e9b0a34c7cd185c616087d9842ad50', 44420), - (9004, '0xa1afd8df52687a1362ec606428aee8d97bc3269b', 67780), - (9008, '0x72d710abfa9ee10d53d9fad5c6e9eac35d3c09c7', 30210), - (9011, '0x78b2de47fe499e0a6f7a67dbf965b8ec765d2d9d', 17320), - (9015, '0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a', 35730), - (8884, '0x01a29134723ef72a968838cb1df498bc4f910bec', 131396), - (8915, '0x2423e325bf785096516d88355a5e3854f9d59d1a', 0), - (8953, '0x28a69640810fcdcf6adb7119edd64eed4612fa49', 95596), - (8819, '0xec93285cadbafaea1df58af2e46c201fe4bfb9df', 0), - (8837, '0x96df10a852b1528f6b7972ccd83b755f71210b5c', 0), - (8907, '0x497a7dee2f13db161eb2fec060fa783cb041419f', 0), - (8696, '0x98397a068d413d3c92a506f98c5f25d33a9dac14', 0), - (8921, '0x399e62557a267b0abd6e99bf22e5af5a21ead53b', 0), - (8891, '0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e', 0), - (8680, '0x1c4420dea13bb5e6c2dd3c14fd9e507bedd44ee9', 19700), - (8692, '0x904e1aa3248b6a8eddf379110694eabf8c24b3f2', 14130), - (8703, '0xb875badbd67c7d5fa2c845ddce8fe112fe383309', 11180), - (8707, '0x867b36beb955bf27018a952a376cff13bbaf4da1', 22780), - (8713, '0xbafc68e4bd06c3f0f53d0603e2a85fc0ba2549b3', 96910), - (8717, '0x21c6553a199a9c794aa77ae8a8d80751dfcdc0d1', 59270), - (8721, '0x75c88d2149e00a36dddb997faf674ec9b57aeb73', 14450), - (8725, '0x07a235857ae8845831a25c73a8ba56c63c859a8f', 20910), - (8729, '0x7b9c8936a989b72613069386ce66b678ec44b6b6', 14560), - (8737, '0x9c99bf82fc38713c471d4415f66c8336d361501a', 53750), - (8741, '0x0e45464d8300000427ccbaa7cefd91bfcba48bd8', 20630), - (8745, '0x1a5d3c0f9f9b7f291878c287417d2074b8c8856f', 14700), - (8749, '0x08d4b30cbd21623641b433fdf230db0133a83e3a', 14720), - (8753, '0xf4069295d9e8f8161ab4db80cabb4d103e67bdad', 100400), - (8757, '0x4780829b7c0e8643872d4777334ee2580975a178', 52130), - (8761, '0xf7ea196c0f44179b8d60a37a8707d42c0ea767d7', 11660), - (8765, '0xefbabdee59968641dc6e892e30c470c2b40157cd', 31140), - (8769, '0x6074291de36a037e452aff5d0ef334648a3fd7a2', 14920), - (8775, '0x96f2dca78b6717836ccd34498efb9167197e8459', 11730), - (8779, '0xcdb39f4cca9edae727f12d7784bf84fe23dcd0d8', 11740), - (8785, '0x6c1f31a8721c82341a1d7bc00ff6103693bfa32d', 154570), - (8789, '0xd8dd5bc18f18fec325ebfe3b04cd86b7fb2a421b', 15070), - (8793, '0x3f18b8b7ea6a6f6715de3b75434d45051b495b44', 11860), - (8795, '0x787db9b5e3ef08d24c1ccc0943935e93fe9efe0a', 11860), - (8805, '0x0ae242bd36d7fcbfaa1b7c980b3cdfeb55df6238', 32580), - (8809, '0x5d85e0403f815ce6b88fa7653ee84e46e5f59b95', 32140), - (8813, '0x26f35e0f8f3030907044ac0a43e72c1a17284137', 158750), - (8821, '0x008ed56e56944280c9abaa90ccf9217f37117819', 18410), - (11682, '0xd78e96fe052d26f45841e921c13fa15857e004dd', 6376), - (8827, '0x868612a4e2ef875f69987c07b1e8134dac6b2c7f', 15340), - (8831, '0x3fd625084daf4b6dfef1bd8469253783c62942d2', 15350), - (8835, '0x78b037b39704e88a82dd23cfbe1f57f6aef8ebc5', 98540), - (8839, '0x1a9a4932f36b3641f5f63e98f77f8a1f28d85dad', 34330), - (8845, '0x2bef4d96a329fd30d87faf6970ea8d697d9cc788', 156130), - (8849, '0x94edf2efbc71123fadd9d8ae4ec471419be43376', 23710), - (8853, '0x0298fdafcab4527580b18e8234b3a1bec96eba51', 15530), - (8856, '0x75a323846a730d292d0f5eb152cdd0692dea5fc8', 54790), - (8860, '0xcf9b4c108cd0dacfe77d6b25d0e4d643debb1daf', 36380), - (8864, '0x753f8dab2ce1e6ec33e2967bcdd4974f60025319', 12280), - (8868, '0x10ac0e67d5022a16153fbb4b2d813e15ce442eee', 22010), - (8872, '0x85a5c18b9ef09c5796a6ea68ca1322e145bbafa4', 38040), - (8878, '0x1556b5cff14136d21c45a374e50fcf460ced59e2', 12370), - (8882, '0x71c199c366625329064df3d08191cdc0e85ac2ea', 98910), - (8886, '0x44407d543e0de530a222d2643392162cb1ebe69f', 12410), - (8893, '0x6456c11151f4ada09dadb1ebc729d3ef5f38ad41', 19070), - (8896, '0x9033b283f07e9ab12285f12d4001332bbfe06dc1', 19160), - (8899, '0xf16bf1c992e8ff1011d87f7d48a55746f0966bca', 25430), - (8903, '0xec9df21e35582a6f368a82b4b1cd37431f1653b0', 12540), - (8906, '0xa89042850d95dedf6b7268d4911206ee8dd98196', 51420), - (8909, '0x5f98736a54e68104d5e4f272484840094712d66e', 19320), - (8918, '0xb149a58ca42459184c9e3a06df1e260a3cf32a72', 16090), - (8922, '0x84f0d6809ce23c5751285c9319c13858a8c914c5', 34810), - (8929, '0xc8686783ffc680006e7f6e1da123e7ce32273146', 83890), - (8936, '0x16fac093fa96be33a7757241a45b5a86354fb4ad', 49430), - (8939, '0x95f7157c4f92719d1d03898df226c1c6dfed6c0b', 22920), - (8942, '0xabf1f6a7cf0071c7af4a3c9b4dcc1f0601413c99', 12830), - (8946, '0xf1a06ebabb728773f48ee48be7049bb441faef84', 12860), - (8950, '0x7e0512f8089886003798cdeb60c898b145634bd3', 132450), - (8954, '0xa8f0048a0d1a04663ca5010d0beac5bcaeea0eef', 23130), - (8957, '0xfe1b8c1fd718a2ab2fae2450dc0f2bff6db4a365', 16570), - (8961, '0x4cb72456e82aedd8b1ef0f08d03cc6bff96c6291', 13040), - (8965, '0x4cbc2e1c86c5ea7c5ea742a4e77696e4852840b5', 29520), - (8969, '0xef9638169f5987059c2f8e195a34ba82bf482122', 13100), - (8972, '0xaa1b01270a5bf5b981bf07a28c9def8d39625997', 125560), - (8976, '0x7ad252facf5f1115b22ea0a4d63e8770573d78a2', 134490), - (8983, '0x41fd6111b3a62cf126b57aacc620eac7c7ba3c5c', 147880), - (8987, '0x8db916fadb1c973d610346f0a1a8e4c81acf0390', 27170), - (8990, '0x262456d9a98537f4706324666b28bfa4e9d23446', 27190), - (8994, '0xc8fbaa47882b86b8f4c58ccf1c47002ead7d9668', 34960), - (9005, '0x7c621d5954a4ac21a0fd741ab6f302398f29d644', 113070), - (9012, '0x820094b7942f39a635609c6268f7311e4c661d71', 17380), - (9023, '0x61da82d341141dbafc8b536eedb23e7d83496c7c', 186860), - (9027, '0x8e2fd8df3fa9454e390887a86919bb7b86cc1141', 17880), - (9034, '0xe3f952fc4e698c1d0c89ac754b903f101a9b0a14', 35550), - (9042, '0x37f8514c4503ad66cab4d469de521dfe14f8d939', 18060), - (8916, '0xab7f88c97287208b6c73e0aaadcd3a556fe84ace', 90626), - (8686, '0x7e37c3a9349227b60503ddb1574a76d10c6bc48e', 0), - (8817, '0xe6922d3ca96e64b48ed9bfecc5b961de8c58be54', 161936), - (8979, '0xf143db60a0b1cbb8076b786eb6635b93f18db744', 53956), - (9038, '0x891b6c7ecbc314b5934ddd8b5ad76d098642761b', 20546), - (8913, '0x90873acc11d3e0e3ebca98efd477bf7a79eabc41', 47966), - (8690, '0xdbd8c21abbaa205c0e87465f9d4695137727741c', 0), - (8799, '0x00387e098254cd3673faaa82a5c2de297112529e', 0), - (8733, '0xec2dd18e6d6d814fbb3e7a48ced0e3352344e5a0', 0), - (8926, '0x333d0ebc54707c0a9d92cac749b3094c28a0e111', 0), - (9019, '0xcf70041f229fd3092d0630406444d89ebe96928a', 0), - (9016, '0xe9d387b9ed1327e59589da2b82fb491817703bc1', 0), - (8683, '0x1847a58d11903ecd73ee8bf71ad801d7ed82ca97', 11030), - (8685, '0x08a6c5774ee60fc737b91f9de1274acdb638b337', 25110), - (8689, '0x1779b8777b7c411428ccdfadc1ceae18f3ab4187', 17030), - (8695, '0x08e0a3e752d1338c0f02b986b9504f1009a962ca', 85530), - (8697, '0x63edf1f0451db5e365ccf9ee068a5bb52fc14be4', 14200), - (8698, '0x606b91a19fd4d1e950f817706436bb898e2d4c55', 47350), - (8699, '0x3eefaa9d6e2ab7972c1001d41c82bb4881389257', 33210), - (8701, '0xdc6d368ede51c658f7c04dc2c93f80c049cb826e', 14220), - (8704, '0xd3ed81842534e5492ec31a3c1f55972f9c756c52', 26450), - (8708, '0x573bc03f18f41b200b949a973d67b453a7ef11a4', 17200), - (8710, '0x26ef03a20aaeda8aafcee4e146dc6b328195947c', 69500), - (8714, '0xba7e9bb153f9c4c32903b721eb53b751e2c0bf12', 11250), - (8718, '0x31f21bf48b95117fd32cc32ff65f88d5633796ed', 39160), - (8722, '0x1e51333dd2f7ae432d9adede23d4ecb5088bded7', 25860), - (8726, '0x04c4e054f7116e55647fbef26e6743ed437a6bae', 14540), - (8730, '0xacb02d3663ca27e9c85d7598964269e41c8b9885', 140160), - (8734, '0xda37f741428d346c1383328b67890952d2843538', 33650), - (8738, '0xd7b7a3ab29b3282dc76419bd57776e0e90de8a41', 41530), - (8746, '0x7cef3a76e5c873432fce51da0ae5b2167e13ffa6', 11550), - (8750, '0xacfbc87d4ff16bc6d2df6d383c25ffe7efa56da8', 14730), - (8758, '0xda3c325ab45b30aeb476b026fe6a777443ca04f3', 29180), - (8762, '0xe86174ea7e5f8065708e8b50c62780a938011389', 151470), - (8770, '0xa5855f4f40a409ffde3a171eb616926aec5d7b9c', 30670), - (8772, '0xef7f2e81ea14538858d962df34eb1bfda83da395', 11730), - (8776, '0xfedeb3992cb5a8beb62d6503996825962a863e00', 11730), - (8780, '0x21ab4c9d010dbf3bff3ab6afb55c1db11191c892', 30080), - (8783, '0xb462b7d285c34c8ca0d91edfa51bc147dcbf9526', 21040), - (8786, '0xc11c78f8909d64d0264a8581ab2df1bff26a0730', 54510), - (8790, '0xa5340ac7d467d9325a91ae5e199c5de1ecd6b706', 15070), - (8796, '0x38a89b2c38df86de1dcadec1642b6d27c4610508', 11860), - (8800, '0x2f3a259799f32ded9a06f58f11def8f960478c72', 11870), - (8806, '0x97944b9adddd9bf0ee3d633163f7150cef82a332', 86280), - (8810, '0x6c1cbe8cfc32a74188a9d3bf364945ea53b01b04', 25730), - (8814, '0x2bc8f53fd6b59bf0e62df7d2ac92cfe5b4dbad62', 15230), - (8822, '0xae52b37699c108dd347af73e956782df99336a22', 35630), - (8826, '0x538527f3602acad78596f17b422fcf5613af1409', 133020), - (8828, '0x6aac6a4c94eda16f47d66f71ab50709d431cc18c', 15340), - (8832, '0xc8d7f5e1cfee2deac53eafa5e7e95be968b1a629', 131580), - (8836, '0x6ca011aae6d551a3efa533c40c24a810321c0384', 57590), - (8840, '0x810657d67c68cf7299f7ecbc321b293ee064c5df', 93820), - (8842, '0x6c8e2c5235c9eed70f7009ba7686310379e96cda', 77350), - (8846, '0x85dc60ff628fc7df75403d32aebaa560d5c65b1e', 18620), - (8850, '0xa79af4e5823e5e7768506dfc1ad9cd088017846e', 15490), - (8854, '0x9a5b39473a28764dd4abc19705b45bc1f567cbcd', 12210), - (8857, '0xdb15cb61483bdf64989a1c8dba84f3428bcada80', 15550), - (8861, '0xd5fb864acfd6bb2f72939f122e89ff7f475924f5', 47730), - (8865, '0xa5c646eaeac145f2070f99ea6f7e88ed60c5180e', 82450), - (8869, '0x9b7c18a71a98acd2f1271e2d1fe63750a70bc52b', 22020), - (8873, '0x99dc0e0e23ed468d3fe6dac0f71d67c1059b3920', 189560), - (8879, '0x10a381cfdd62c21c4ab1f91bee2ac3faf6ddf2fc', 319430), - (8883, '0x6f48d7361bf9334dbfacfb6a73f46e22df871497', 37460), - (8887, '0x196ab3e637219ea9d2efdec0523006af0c1fc8f1', 12420), - (8890, '0x8ecc7752208ac688772715eec22152af3df939c1', 12420), - (8897, '0x5f99cf9e3e4ed9014b4319bdf3182073d59c2ab3', 15900), - (8900, '0xf809d45f026c2f00f083440fb06ff21ebbd9c1ad', 31620), - (8910, '0x035032655b5b3784d359b56eb82c803bd971c582', 16030), - (8914, '0x0b9b76c6cdcb5614f5002d8fd5b50d7b71b5c7f1', 16070), - (8920, '0x1351d2cf237dc34eeec11f0e3740f0245f61a54e', 12670), - (8924, '0x684106aa2d599b3723555e6f1551e81033907989', 28910), - (11683, '0xc995166c8c057c6cb7fc37cd0314597a606d0cbe', 6376), - (8934, '0x8a08b17ab7f547ec3082f2c57b121893edb0a49c', 12760), - (8944, '0x65b1383bcbe0c156aede436e47930dab472a6946', 31760), - (8948, '0xae163919b6a6677b1d82c06beabbb6876108bdaf', 24500), - (8952, '0x719e5abf94279c7b18d791683e75d7ea2c3f5c28', 28060), - (8956, '0xa903c06bf35286f6d1cdad25396748353979a44c', 39000), - (8959, '0x77b1b4d3a056013ccf0bfed140be6081a782a6a0', 16570), - (8963, '0x79ef469a9c2ebfa8aa326fa4f80bc8d0e361e09c', 49560), - (8967, '0x0f57dd84c5b55f29f012c7c6c34c444e78806ed9', 96870), - (8978, '0x40596edc2e449ef48cdefc5a787f653f768369bd', 13220), - (8981, '0xa7c3b6c27e782e18b01c1a1a577548add6d9bec9', 13260), - (8985, '0xf08f12498e115cd7bd5c848656c125985e711d56', 36660), - (8988, '0x620f3dee003a6dc5635d590588f95e027db7fb37', 17010), - (8996, '0xc0f84935d631095fdff65ceec1fd88c96b444c4c', 102910), - (8999, '0xb481eb4b8ba16ca88488de279d76332afca6a0e4', 28850), - (9003, '0xc912e55e813753f91f96054eacf4e342a6061f1a', 30220), - (9007, '0xaa629c0d2e8ce957e4db992130faf2a010c3921b', 66140), - (9010, '0x632e7e4716394db3da527f4f0d979e3d60e5f9a7', 50350), - (9014, '0x1575c75c115928e040336dd7d96ad77c29c90600', 17530), - (9021, '0x7bc300b2f50435476f3c7972007f6f60bed960f0', 13930), - (9025, '0xdd99d97bff9b1064a0fa81840725a3ae3c3d7525', 14040), - (9029, '0xde49ad8f3ac69dc29610e28418adc947ae13f0ed', 14100), - (9032, '0x794cec5ee2659859050d29d858cf46191649e1fa', 31210), - (8992, '0x55a5705453ee82c742274154136fce8149597058', 0), - (8974, '0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b', 0), - (8742, '0x31938f42358b993b815cce8e533004eed2146bb6', 0), - (8818, '0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38', 0), - (8754, '0xdb14e2a225a5b341985d5d4dc2a8c7df70b508fd', 0), - (8687, '0x4f96e16c10a0bcb004d5b9f5e6198d27dc74c711', 47160), - (8691, '0xd3396c0d621ab4fed82bdff0659bdd96b6de5f0f', 40360), - (8693, '0x2ab0475881fe1ae4ce17d484507d96e3240e0260', 30910), - (8700, '0x68862aa32db3ee03312d32a3f7f2724a296e9b0f', 64600), - (8705, '0xe099f24beadf91240ea9bf3e8ecbdf6ff16a2ad2', 39070), - (8712, '0xa1e4f7dc1983fefe37e2175524ebad87f1c78c3c', 60140), - (8716, '0x3d29c1482c224c0fe4b058a3d930a9264dd0a22e', 14350), - (8720, '0xbe67de0c3f7650b958aabdfff3bbd8d55d5c2ccd', 31030), - (8724, '0xdec7778a7e416b0f4988bb1faff70ce9fad6c233', 14520), - (8728, '0x6a850e6693c41dc33eac2a7a1a9bafa6f0f71a85', 101160), - (8732, '0x67dba667e312bc7870478307004f30ab72f92ca8', 27530), - (8736, '0x2d62b7b4ab2aea16f53f78af3544088300040126', 14640), - (8740, '0xe06383ece7b8bbb6c3f65a95fc2b6450e9077a6c', 33630), - (8748, '0x5a654583d41b84c30b569a9b8029d54fffd76769', 158990), - (8756, '0x86e332c6d8597be0d2ab4a032ef4aa86ac86e973', 11620), - (8764, '0x720d3a3aa7c6bec98be27a64b9f4f42eb79badc4', 42340), - (8768, '0xb749a586080436e616f097f193ba9cb6a25e7ea6', 17960), - (8774, '0xd9459ceb0aeda7082fe87a9f7228c679df858d44', 11730), - (8778, '0x323596422e7d65a73c6396bce5b1809e178e1f8e', 11730), - (8788, '0xe60ead0c469e9801c886ed1080524fe9ab76bdff', 15070), - (8792, '0x32205e5b982902978413a4c9f2cf53db2512c0ee', 11850), - (8794, '0x5dcbc73493a55024d951e887b4e3c7dd79c1e457', 15090), - (8798, '0x475b261ad8e1dd8fdfdc957dd861dd450b02d2a4', 15100), - (8804, '0xa29ad7cc2fe7ccd79805914c1a983aa3a0176d09', 15120), - (8808, '0xe19bacafd2b0e2e81031ce925e5475be51c635eb', 11910), - (8812, '0xddf7103b5aba7c64f0fe22cf6c668eacaab39ea5', 11940), - (8816, '0x4836a8c7a9a45165383c482818dd34645b7fd9a0', 31220), - (8824, '0x4cca3f44208bee3c363868471956af0c1e2fff05', 12030), - (8830, '0x73deb2cf82f241922294e50944d2d3830c5ca650', 18500), - (8834, '0xef6be5381dce24626dfa59a370f5658270307dda', 15370), - (8838, '0x8c8e5aa1fb134544a5de0134a95195fe8939b6da', 21600), - (8844, '0x5371d2e73edf765752121426b842063fbd84f713', 61580), - (8848, '0xc01e2298830a412b03d461d255b0360b6edfd165', 15450), - (8852, '0x1ce217c1fa87fcccfcea7c640974f19fac989e40', 12190), - (8855, '0x650d32dcfd3d33edb4f0ec5eb0169269d52eef64', 41440), - (8859, '0x9b5e32f4f620187f6209e5342a3926e7c26bd172', 15580), - (8863, '0x7adb542be9cc526ea1ce172b4d19baddf7eddb32', 12280), - (8867, '0xe85691f53fe10a7f79200aa571c27bb4bf6cf0ec', 18880), - (8871, '0xbc7d8949f3bef710e2c51c4f77076e2952db271c', 12320), - (8877, '0xcea2f4e6c5400aaa515d27fa3fe8a5132a3c016b', 12360), - (8885, '0x7a67dc10ddefe4bfcd4d40b974405c7edda407db', 12410), - (8889, '0xf762c3993403d170adee1f58974215905887128c', 22550), - (8892, '0xe8b0016130a38f26c116576a7b13267c9fb11b59', 47840), - (8895, '0x002748db885d4ccfe3c7c92143f0805f4ebeec01', 12450), - (8902, '0x9fcbcf7ba93ca69c2e5c0e5ee730cf53de134dfa', 40740), - (8905, '0x1cdd2f7329c6c17426bac386e5aab1f76d8919ef', 15960), - (8908, '0xd7b77b0a69308392ef13db63a412df391146d434', 12570), - (8912, '0xde89bac8b4d9ce31d678303bc0fcd14f09b1f5ee', 12610), - (8919, '0x7ad6810d7b502db492da18c8aac930b38f6448b8', 41880), - (8923, '0x3d92b8dfd192354a36720bc57941bb006fc9ad3b', 78850), - (8927, '0xc8140898c69c396a946a878b49b856b6d0be38c2', 16190), - (8930, '0x0cb9d25ddd81f8ba363465d30213d027fa68fff9', 87370), - (8933, '0x628d4c61d81ac4f286b1778a063ed2f8810bc367', 22780), - (8937, '0x2f4044be0302c73f511619c223e6fd3e32d09a11', 12810), - (8940, '0x9938b6b6a6c005e752c0366be98fa5ca346052d8', 12830), - (8947, '0x675d882d6cdcdd8b2eaea95f21fbfc6916af89f8', 37610), - (8951, '0x6327052ceba0824517cefd515ae70c41f401887e', 19810), - (8958, '0xf668cc6cde8ae8670d90400c32efd78c8d6e243a', 84480), - (8962, '0x9cb707b9a2de651d8a6960d59ccb6b11e7431c06', 16600), - (8966, '0x4fa59b01e759b3916bfc3222cac053db3d17997b', 26270), - (8970, '0x1a4b0923b0f150b5fa8cdfb2138d0d78b1ec85fc', 42270), - (8973, '0xa41cd41474f7b59736da76b7fe12b9b8d9afb94f', 89070), - (8977, '0x2a46173d85680d307bbb600044e0856878490cef', 28460), - (8980, '0x2066a357231a084e3e883a70afe292bf46ae243c', 20340), - (8991, '0x7dd7b12bbd948a52a319a3bfe51bacf7a5af7f75', 30400), - (8995, '0x186e8bb0ad80f8f303416d83863684d158071cdd', 13420), - (8998, '0x2e496f6001b04dbdbf6cf59dd78ea764edf4dbf2', 50020), - (9002, '0xf159dc86d3989f76e3ee343bb30e672bc081bb88', 91790), - (9006, '0x32bea430631db4e416900db332f5431d265a954a', 27450), - (9009, '0x42e3b2b9969308c2fa6c4b71f6a13762e3136a1a', 13600), - (9013, '0x56fda56dd6bd84783b509cdea6560c57041f0523', 60950), - (9017, '0x5f47e54006b79f179e20de7cd7692136688b5e96', 13820), - (9020, '0xda46696c9de358a9f17f5d8ad5bea9ac12eef348', 116440), - (9024, '0xdfe8beee223412f316baf2968b17527d6eba29f1', 272900), - (9028, '0x4bf907a4c97c239061ebb642ae9c305373ae4791', 17890), - (9031, '0x9c26583abdad7a5551fc1e85097a161b76e16450', 37940), - (9035, '0xf343c1cd170ede73ae86e04db24d37043969e218', 14170), - (8752, '0xe1e8590b110a5ec1c44247f026269b2e66aa7b47', 0), - (8984, '0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0', 0), - (8881, '0xc485712b3d7873d39928719b15d9bbdb92288d1c', 0), - (8802, '0x892ff98a46e5bd141e2d12618f4b2fe6284debac', 0), - (8820, '0x89213f11e4a356d450ab89a876f4c1cb5b8996da', 0), - (8744, '0x62d36767473db61a39d7e5e71fa378cfa3317362', 0), - (8955, '0xee8f047761228cea75712241c7b8338fa81ed5c5', 0), - (8760, '0x589ffbbda0eacd5a9c2ba208b379c886b2630503', 0), - (8875, '0x003276c5c24cdaff1d804170ab5cbb914f51f78a', 0), - (8782, '0x01ec46eaa73e6c2ab9bd83078884f6e0638158ee', 0), - (9018, '0xa136c52c7065f0fa87284b823701befc1c5d9daf', 13830), - (9022, '0x76cf6f0663bb530c7573b1cd67c6688addd94bbf', 36140), - (9026, '0xf34f1c938d08817118e4405da510bea8cd72c67e', 52220), - (9030, '0x7a2a69a8ecc121cd6af9968d486bc30bf9da5438', 28710), - (9033, '0x2ae5f36c77a736f76d61f3eec06f12caf2963fd6', 75980), - (11684, '0x1148eb22dd9e7501c70e825d0ac8eef2401c3eeb', 6376), - (9045, '0xea53d61ceaabb194bd3dffbd39356345f2d8018a', 30620), - (9049, '0x4c9ed69bdd33bf3dad8b5b54c0812dff54fd032a', 18280), - (9053, '0x88adfc5eba1195d163e8d5c90fddee4b0d436af4', 57480), - (9056, '0xf7c0d5e897666ce6590a749ff1bd9edaf7eab2a5', 373880), - (9060, '0xfaab77343690ea38e9eb4a39950395406e1a1d7c', 31910), - (9064, '0x35b9571ef5eaa24ec626acddde3b02b595a5eb0b', 29820), - (9857, '0xb4e876a98c1655aef3e2a368bd7b22b24a9792cb', 86080), - (9884, '0x625307de45bd25ad6bf6cc7391a308fc84067cf7', 21570), - (9893, '0xc52ae131ecc3a8110b784a4e412080fc80cfcb16', 20540), - (9911, '0xbdb1a08d311c7fa2a43a930579233d3ae2c9154a', 28130), - (9920, '0x30dcca068f593cbffb5affe8a89f35ae49614972', 127690), - (9929, '0x2563931a8008535897396f330c4979f3b116be90', 13470), - (9938, '0x1b35fcb58f5e1e2a42ff8e66ddf5646966abf08c', 25320), - (9947, '0xa0fdf306384b3a2e61c1bba4cd98ba0bed9d960b', 47280), - (9956, '0x25c1d4606cd25e5e9890bc637c203b93cf310e43', 11200), - (9965, '0xe5f4674e2a7a0e3ec4074545be7bd8237e927d26', 14420), - (9981, '0x4a5b75e346951ffbeb263455510df8fc5811fe79', 21840), - (9990, '0x377aacf0420fb9b132e95b64a43232ba054eafac', 11670), - (9999, '0x52986b1cf87e95e280253d367587b4c5ef3e3b0f', 18030), - (10007, '0xce5edb4a2a6d44e366819505e8981c1fa833ee99', 11820), - (10016, '0x01f8ce3658953dcdfcf9989db3668425a2dd6eeb', 24180), - (10025, '0x369712da60e11a3e05cead9cdc10ecb6fac4d2f6', 24340), - (10032, '0xdee376bcafe22896c2fe01740925a2366a30eecf', 12190), - (10041, '0x9882954d15f500ea7a63a33479cbe0132b584eb0', 15620), - (10046, '0x8a71ff60cdea561bb55cf3db269c58c338a07445', 127690), - (10051, '0x2eeaa7534aa31545e98319ed72827da53264775f', 15790), - (10069, '0xc38ee99b7a3a9df97601be32de37afef7d4b18bf', 22440), - (10078, '0x6e2a497a065674ab8b129fd7ddb301c6243c6362', 33280), - (10096, '0x51dd1223f2668e3cf5317907ef2a0115a3d67972', 12880), - (10105, '0xbb65c84f03c80dbcc3e98f91fd12a4b743d90d14', 12970), - (10121, '0x7bcdffc9adf07f9b69bd34b8fa7c3f94c8dc3b6c', 16850), - (10133, '0x39b49acb34d450924559c807e8d7ea5668ff1673', 41120), - (10142, '0x7a55aae410ff412f39b023e9b5e2e5dbc9a58f68', 563710), - (10151, '0x9602e14add18adef7fa319203f0c7126065d13f5', 56020), - (10160, '0x46e2319e1a0fcae23fe92202eea29879de5b3284', 21120), - (10175, '0xf0a68cd0e9ac293ae4e9a5730852c9cd0eaa56a0', 17520), - (10184, '0x82a37593514485dc2a0add90b858db01902849a8', 28070), - (10193, '0xa28a89c9d6a52f2f5a64e3f3b764ed686fbd76eb', 28240), - (10202, '0x5eb3e6c1819d188db2462f5a9b4561dbfddac5c1', 57340), - (10211, '0x6091a224ec0e8bae16125603d179d9fce7aad641', 18020), - (10229, '0x33f1b76dfed61372bc29de2612d85be54ec795e8', 14360), - (10238, '0x895b7f7af1c10d1ff0cdcef8dd10dd165ea10a28', 14370), - (10247, '0x71d0106d6e85029434515dfec2fe86f3d10bea7c', 49360), - (10256, '0x930e27efcf6dffc01c4026acd38f57465dd9a583', 15030), - (10265, '0x3fc4b1240abfec14110f60a38e1f5ee784d85171', 15190), - (10274, '0xb5f1fed7e87af7544c565ecdc3db40faf43fdc78', 15510), - (10283, '0x1a4cb32562a729c846f032953add04c34e70b534', 27910), - (10292, '0xb5307d841abb0cb646b9ccf0c39fee79c0e80a9d', 20020), - (10301, '0xea4feb8e55a17eed317b2804e1f49040d1b43299', 15800), - (10310, '0xefaf9e493ae648045b8b0205230b307a9a5b42bd', 24320), - (10319, '0x7b55b0b671f2952b092bebc75dfcfb9b86cdd032', 39830), - (10328, '0x4a533b740190160c09ecb5caa5fc83a44f34b44b', 39860), - (10337, '0x0fa6c69f455973600804979f476e321b2ac58ab7', 36120), - (10346, '0xfe541eed0b64e93060eeca1499052635b5b75fd0', 32320), - (10355, '0xcedf2ed657e3310de414e76585e6eab089761fff', 38010), - (10364, '0x1f5d295778796a8b9f29600a585ab73d452acb1c', 47180), - (10373, '0x16895f6b12b94044fc2590c790ed2afbf4f6289d', 30370), - (10382, '0x25c8e67261fc3ee0549296767ae48fbe01850c38', 57740), - (10400, '0xf9aea837f19f82d9b359897dac1b8b1f7cfea536', 144920), - (10409, '0x6870b862cf18dea220aa1756af27140f119af919', 32310), - (10427, '0x4cacedf98b195a41af7e3661fd187145aeebd0a2', 39880), - (10436, '0xb6c8b64919be79863b052448f42050de4aa0a0b1', 276940), - (10445, '0x889474e058dd25e42b4c8e0c4e39c59625485c61', 20220), - (10454, '0x9787791a60f2edc75711f7ca174d3c63e5cfa685', 20220), - (10463, '0x364e6f1044de74100dcb353114cb0d363601fb67', 39890), - (10488, '0x5db9e26d5035c124a9b7dddd545fd60c23cf26d0', 24380), - (10497, '0x4a4c78a57e407e35ffd9ac947cb567e38ded46b4', 24380), - (9037, '0x80cef8f224deb7cbbfbb6b1afb6d89652e933d0f', 26921), - (10167, '0x7de937b260515f2985748e2c6ee9c20a747badc4', 40741), - (10114, '0x380336041fed6d3de0c0a1f5079668760cd64779', 22946), - (10470, '0xf980bb10341b80b11e5f774a8e2495f38783b75a', 168466), - (10418, '0x71b0f3a66b12b47f2cbee6cd6ff4ffbe71a1c5e6', 97066), - (10220, '0xaa2bde330a0ba6e1a7d5f954b6bedae64ce5f7f4', 35516), - (10479, '0xe5d04269e38dd6aaba32ca0a8970fb31185c64a7', 265386), - (9875, '0xc26c7a496eabd0049d95971c2219307119534544', 0), - (10391, '0x3dccaa5fd08c599d95eff1bc4de3a2f6e8203232', 22266), - (9866, '0xc3af8efe3c865b8363a79b13b27db530eb5d24af', 0), - (10087, '0xb0ccf43ada6cbaa26dcf4907117b496d49f74242', 0), - (10504, '0x1aff38fe8e706d682dda746cce9e6470fd864d3c', 0), - (9974, '0x86479bf2509d72a1cb21d15f411e23735bae4381', 0), - (10060, '0xc1490ace8c1805f98b309971dad72503167a6fa9', 0), - (9036, '0x5a4df723e23026889d1286c20bc6f2e36e7fe798', 14170), - (9040, '0x8b7ebeb60d73d91e4ba7f07a31efc35272a43946', 14170), - (9044, '0x40cdfb49852253422e934faee86a739bdb01c828', 28860), - (9048, '0xda822d50f0d49c91147b27ed59f75b9ee627f4a7', 60390), - (9052, '0x333983eb213d132cf4f71751dd38802d0362e3fa', 44310), - (9055, '0x9eddfe3a95aa77e4f6509927de67bb1eaae3b382', 36360), - (9059, '0x9e1d939faa0ec4f2327f5cd0c9663c0aebf9b5c7', 62300), - (9063, '0xdfeddc98ae6edcb5f63178a8589f41b6477f6c42', 37800), - (9858, '0xb72dc1e80a501256ed235a32a815b78fddfbf811', 9310), - (9867, '0x74d6f2d61671f8ddaaa4d6c1f584d84ab8765599', 76970), - (9876, '0x042bf7d845b34e4a3286d3e36ca90ff692f8f558', 64260), - (9885, '0x5d2795d1a98f5a652173d8b3e48ca94a2283336a', 67530), - (9894, '0xc4104bb94eac7e7bb1998b06f83d0159dfa82e5d', 29510), - (9903, '0xb62c0fd71d304074923e035a85f03fbe42d617a5', 12320), - (9912, '0xc006850bf52d262ffca508d2a7479c6e2119b898', 35350), - (9921, '0x3b1df4f6067505e445e7b48b4c09593196865b68', 10470), - (9930, '0x126902db5abf36f809ffe14b6f1b8065b53a4f42', 20470), - (9939, '0xc47f2266b6076b79c0a6a9906c6592b34c03c914', 61190), - (9948, '0x96dcb51be273b408e8d728447c4d581c9d46be0d', 11110), - (9957, '0x5ae0103817f40fbe24778658e73aeb85055f8807', 14260), - (9966, '0xaa3892f98d5c6388165489d2216178e86828c04b', 11410), - (9975, '0x422858c32411a747a319383c6e95a8111ec9bed7', 11570), - (9982, '0xc194765f438294595eb4a620ca6d403f7c7e64c7', 34510), - (9991, '0x06471448ecabe745ee64b0d55246662f99b1626b', 11710), - (10000, '0xebdd026780184e2fcb3201f4d355d277495ca33d', 26730), - (10008, '0x48ab00c037ddf21b43df2e8f2288a793ac9c6e2f', 29660), - (10017, '0xeae326eabc4ba98c196c9a8efec46278f2818332', 11890), - (10033, '0x099d0b31f9fa5e4e474a65b410b2a24fe97e3131', 24950), - (10048, '0xeb7c5dfeb10ca00e08a580844a47559b9d15d4ac', 26210), - (10053, '0x6e9fd384cb13ff073cd3b2ae0d40b5b010ede04e', 28240), - (10061, '0x777188647d19a3d4002476ebfba4a3b576af7aac', 12470), - (10070, '0x61b0602dcf6ff9c748bc0288e5020ec789d4cb54', 15980), - (10079, '0x595b1d9965121570374c8588804a17012917c423', 12650), - (10088, '0x4ca2a670bd5505b870b21331a53d9bb4ae6e2084', 12810), - (10097, '0xd521a39ab3035beb80ae0afe865f17ed686307d6', 23130), - (10106, '0x6e7326ea8746f57c1c1d4e5862ca46c835174c68', 12970), - (10115, '0x2e004b20330dd2b6925d94070a989e045f33b953', 32810), - (10122, '0xd683c0c013e1382143b364d7fb7b64c3097087af', 13240), - (10134, '0x0b30f09abc1a325b04ee47b259f42b70d0fcf0d4', 29740), - (10143, '0x5debe624417ad237e97b1f0a5bd0021b09a58b7b', 17420), - (10152, '0xf318b635dc8a0fc5a2e263b944abfaafec17d36a', 57760), - (10176, '0xf1e7dbedd9e06447e2f99b1310c09287b734addc', 561600), - (10185, '0xc4a9107f16c0d427238eafaa7be50d47281f9a72', 17570), - (10194, '0x07deef8ad7d095b45de4a2b39ca7d9f8aa7d4022', 13960), - (10203, '0x409bd82cf7071daa870540495cfa21ae49e69f00', 14110), - (10212, '0x7b24ddcf028539941eeeaf747f9b38f37016a715', 14170), - (10230, '0x096e08bbdb3bb08ea7fe27c4e1e9012ab600940c', 14360), - (10239, '0xbaca88029d2b4c3e7e06af8e5d7df2e3ac8c46c9', 83680), - (10248, '0xdfcad51ffe0e1786a46dde716931b89074d8fe67', 27270), - (10257, '0x6a767cc8e91366db9617d10bc53d773739a07f89', 26870), - (10275, '0xb1620c0547744dedd30f40a863c09d1964532f8c', 15510), - (10284, '0xa49caa841768ec5098eaf43d5ff4b5e918a5e5ec', 23960), - (10293, '0x6aa3cab7e7afb3a4c17a7a66ba8b83a8b8870515', 30370), - (10302, '0x548d284fa71b6fbfa89b914672b20a4b64112d33', 15800), - (10311, '0x0ef7a9948357c432f86b727b207e3a09f0248c9b', 15860), - (10320, '0x5ae019f7ee28612b058381f4fea213cc90ee88a4', 39840), - (10329, '0x7f730efd6bf10c3a6aec489665ad4dde978c9175', 41120), - (10338, '0x2267e2be3d601c5b84abd5cf949467a1e7371658', 20210), - (10347, '0xfc4f3809e02b02b204f859d38d7acab737169eb4', 15890), - (10356, '0xf9d3b41486c175623ba67f8f51125e50328bd011', 24370), - (10365, '0x82f6e93f079d74b5cb910f9a5a8f6d72300e9b50', 32310), - (10374, '0x5b6202cd286af5f6085a9dcfd75401bfcae43852', 28400), - (10383, '0xbcda7f2885bea673583ad45138ee1db3c1c7dc8a', 15890), - (10392, '0xa8717e6d569f2a3f3954f7638bac20fd4f321d7f', 28400), - (10401, '0x5708a3a4d21f40dcdd75ea3cd93ade93daf678b7', 20220), - (10410, '0x643c7de32ea74f2493494be5fc57f4aa60f2004d', 24380), - (10419, '0x4fbc1c49b4966f57a4a8dae47cdd32c8ad57301d', 20220), - (10428, '0x14195ac9ee87014a9fb9335fe51a60b82050d2a8', 45390), - (10437, '0x0498d1065db331f28076816dce498319cf0d115b', 39880), - (10446, '0x901e29bd31152f1a7b086fe9ef51311f32bf6b9b', 20220), - (10464, '0xf68be8079a90dc6434935a9a312b3ed07a2f3a4c', 32320), - (10471, '0x00ba15cf5dc64148f550f6002a472eef08ee0dbd', 20220), - (10480, '0x1e7cc9a55a9b9645e083d23c3a2742b2df41f773', 15890), - (10489, '0xc856f9e28eaf155889e06ea44e8221b472fe9abc', 15890), - (10498, '0x618cf7d23fc0eb858815cb7c90f4370f1acf8650', 24380), - (10505, '0x8895dbce59e2fb341561e313ca16eb6cce41cf5c', 15890), - (10513, '0xde8b9d5bde9a0493cc58b20ebc00b627e45d3151', 15890), - (10514, '0x1bf405a0eb1edf3a904e679f8ef9d12f369a4441', 20220), - (10522, '0x67af8e149a02c34b8c3b00926eaebe4d28159d5e', 24380), - (10523, '0x9a7aec9fee56e448a52277afe3e8237f89522f3b', 20220), - (10531, '0x4aa1f613e40272266dc1c376518a8a17a5fffc5f', 24380), - (10532, '0x57695440be82ce3053493e01362f9202f8b9e2b0', 48980), - (10221, '0xbc0a05fa7fbdc5ba44d49223011066236d5ef79d', 53566), - (10161, '0x4e5fa8291556059c414ea39fd8dbb57d6b33ae5b', 0), - (10266, '0x19250b770efd981c855195d0ce674f811f350f42', 0), - (10042, '0x3bc0098ce34adcddb2decb9dab2db237e82b3349', 0), - (10131, '0xe0bb3bfb8750b45fdaf8df7976c296722af370a7', 0), - (9039, '0xcb10777525c25465901b54edfa59671a5ab2bfa7', 14170), - (9043, '0x40ff52e1848660327f16ed96a307259ec1d757eb', 54020), - (9047, '0xaf21b968bb8aeac1c9d02ae972bf7f73b2256f68', 27920), - (9051, '0xe86146c379fbb481f85ef63aa3d851c1c98af2dc', 14410), - (9054, '0xeaa68d85e2c0ea3bb0a7028c45ae04943fb14819', 55700), - (9058, '0x137effbb0b405cd6a3c549e53dd6244a439c514d', 14520), - (9062, '0x3224ce9ae2e049b98fa34fc1112ddde73c3c821d', 14530), - (9859, '0x1b08663761705a4e5f56bc9fb8ad7ab9537902b0', 16690), - (9868, '0x542c13ddb4a630c212e1ea15c54b8177b8569acd', 20820), - (9877, '0x6b1c85ab6d78ac11b72d810910b762605e458217', 33340), - (9904, '0xbdcc47f2689591975d0e02c208e8fbae607c451d', 17930), - (9913, '0xe4d24a5636db147d2e112eda1de166462a8ec5f2', 65040), - (9922, '0xc9ddb5e37165827bbbff15b582e232c06862c4e8', 58760), - (9931, '0x6195088f4aaae1f8c0a03fe0cd18bb84a57aa11b', 10730), - (9940, '0x4f668b008d3ab616ca463137e03dffc34c1552ee', 35930), - (9949, '0x01cd67cfc920761785d24e697b60587cc89e85c3', 11110), - (9967, '0xa68f7f5c135c1aec5da50e1dd1d7213a7dbcddf4', 14540), - (9976, '0xdd429fa01379e8ed94fea5cc7e6b858c8ad0bde5', 150160), - (9983, '0xdb2135dfde06a81f47c27f70f004aaaa858cb7d6', 80890), - (9992, '0x021584e57b2219957784951639385027607266e6', 20940), - (10001, '0xd508c555c8349ae273c1da1fad738e9b66950d4b', 33960), - (10009, '0xbc7601297d818ca5355f861f4588d5948b2c59d8', 32460), - (10034, '0xf059bc01f150f7d2382c8f83c1ae17a8a803fa7f', 12210), - (10044, '0x5828ff37ff6932c614a50b2784dce352dd882308', 12290), - (10049, '0x6281ca9e8e4a5bf41575afb5bca68f4c75b27a2f', 15730), - (10055, '0xdead927a72afcb56d643f4caf395074c7a2612eb', 68420), - (10064, '0xca13bfcf1b435ce9208f8e87fc55ae1310b13a9f', 12520), - (10073, '0x3f134398b2758777694bb13ceb24b28f1700a9e3', 12570), - (11685, '0xc42e691303e4814a09e90af5311e6be05b5bdc85', 6376), - (10091, '0x3e882b64b26a9351e7312e40649a43947b38091f', 126320), - (10100, '0xfc6384d477754adcb526543411fa01b10482b02a', 12960), - (10132, '0xcb46bfb7315eca9ecd42d02c1ae174da4bbff291', 17080), - (10137, '0xd4c8a26c83411c78110cc54c810fe12d11f33704', 20710), - (10146, '0x86f51034a0f1f6f7a5c18a0025d0667239ebc4dc', 117560), - (10155, '0x4f478cbeb659e30bd33e63b7880a2c50fc13c4a3', 43570), - (10170, '0x4adc2c01991f4e69b5b2ab67330933a51ce475ec', 41910), - (10179, '0xe2be887916afb9a33015d7f9316b00b4b205c650', 21140), - (10197, '0xab50ce0cc16b3c4b55eb0507a268793f05ac50be', 101970), - (10206, '0xb7fe403f505999612cd7ad8579e563a9e9ee4e50', 17990), - (10215, '0xfe3bc1eb469c70bfb462a9e208826e990bb078c0', 182110), - (10224, '0xb201563c400ec5c55eca9add0c484b212f31f463', 18250), - (10242, '0x089fce8be711cabc806d69b1d0d5aebd52a06455', 66450), - (10251, '0xf70fa1b8443c620ca7d43a9d17f4bde8b09031cc', 148800), - (10260, '0x6e635abf79020c8b83975b2a4c4cdc9e714b5b73', 15090), - (10269, '0xf1f53980c49824098b78ca4c3eabd4e85b536b82', 49980), - (10278, '0xad93602657dca36570118f88af69f4706b283476', 40810), - (10287, '0x43a527914b38fd027f1da638c27dd4a6d609aa9e', 19880), - (10296, '0x9134fc7112b478e97ee6f0e6a7bf81ecafef19ed', 34350), - (10305, '0x41689e81a059c6615e3b538c40f5e5493969dce7', 15830), - (10314, '0x44eaa35bf5e0bdcdd3d9acb9679c2f08aed5cd2a', 15860), - (10323, '0x6f4f16c724b05599945d69569bca4a7d4674ca6c', 20200), - (10332, '0xa9d1a5ba39e3182775d6f68db7467f926bbaec29', 15880), - (10350, '0xd315faa27d29f7eed5f14d9a313a667f3dd7d87e', 20220), - (10359, '0xfead248385dde60c556e6865859df2de858c203d', 20220), - (10368, '0xc73d81e9112ea01cc2eec4191e8a53eab974cbc4', 24370), - (10377, '0x9763771312dfed5bd8f14c224626be2af6c4102a', 32310), - (10395, '0xa6b8dab8ef5aea25ea89583558da2dd718a8aae3', 15890), - (10404, '0x9fa426645bd71d466468f4e6dfc0e14b0a21a7d3', 28400), - (10413, '0xd571895ecb9267a6f6c2986de8ef1027b21da864', 47190), - (10422, '0x69558c911f63fcc3342d43c4cc93245f58eef269', 118420), - (10431, '0x00a56fda2b3fec55e1e532da3f5a1e775551943a', 15890), - (10440, '0x06a9b6eb42ea22b1fe8f88d6d8c204ff97aa8fba', 15890), - (10449, '0x8312a651d1be0c3eba75a5547b9c052b7433574a', 15890), - (10458, '0x64ce45bae22ee05c8c8c0077363c492bb0448172', 15890), - (10467, '0x2e15430ebbc70a4d32bcd8d9f1861c68a68888f6', 20220), - (10474, '0x0b4313b8cd6843e861c2348a3b4d19a23a412651', 24380), - (10483, '0xe99000b8904c5ebd5c9df55e7ae56dc472ba1c37', 43570), - (10492, '0xacdcb42df38bc3c89525a2b9ff39004e8ca8f0b9', 15890), - (10508, '0x7cdaa69b7c18bbd62e7a1dbcc6017c2c8e7dc11a', 20220), - (10517, '0x9008e2a8c9f6e4fe77ccf98b58652176e4451ec0', 15890), - (10526, '0x24abfa8844bb07d4d256e26ae46acb99a3708f9d', 15890), - (10535, '0xabc8274f1ce8e5c68cc032472805d583c6adb4c5', 39890), - (10540, '0xcbd06622e798c000d9f5f606ff2794d52eacf078', 24380), - (10547, '0x61eb07291cd96eb55b86e5311904e6f8d06bbb00', 20220), - (10551, '0x74d10bfc2a3dbd5803bcce047f3f9aa3070ad557', 15890), - (10568, '0x39111516af86eda9174cefd3057257668ec41dae', 28400), - (10188, '0xb87f0856a16033ef36298a5f2f8d0649c0802fd4', 33941), - (10233, '0xb38fd5ef32c3eadfabcc7633ed344e604aef91a9', 43681), - (10109, '0x8b518133f9a68883b4078d33083a36b9728a9ced', 45016), - (10386, '0xf4bda00b258d40436ef9cbefeb57d54789fed084', 26596), - (9958, '0xb970df834f589b269af9be54386e42ea890f0bfe', 0), - (9886, '0x56ebd346d5013a531105aaeeb574b31f003e11dd', 0), - (10163, '0x8091651d8562e720c588639f858457aeb454f613', 0), - (10341, '0xbabd212f4435562569ada6765e274c099ffdaee8', 0), - (10018, '0x29185eb8cfd22aa719529217bfbade61677e0ad2', 0), - (9895, '0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4', 0), - (10130, '0x414531e74c58b4a5c5c998b18fbe819a70d78f30', 0), - (9046, '0x9b776f682c03ca462cee8607a2ad7471df015e13', 32350), - (9050, '0xc9eae131858bb939e5117b283dc2ca70b0589fc0', 22050), - (9057, '0xe3185fd2e5010271a0e866be070addc073713734', 14500), - (9061, '0xabb485fdc925dc375b5d095a30fcae7f136fd007', 18490), - (9065, '0x18f3bad24415c16802d24f9a980637075d7d3226', 14550), - (9066, '0x85ad32efe960939ff817f4f9169e99c6bd2f3ad7', 14560), - (9067, '0xe2030a7528f06f3f8d5b82f9852ff4f74455c01e', 14560), - (9068, '0x86a12c61ce635823487903c302a3dc2824d1b0bf', 18530), - (9069, '0x1db4af513424731b8114a713604295fafb0882af', 14560), - (9070, '0xc5bbcc8e8881180ea5a5b3f8fa195e1bfc3e9537', 14570), - (9071, '0x50eb5249b9114ec5cce3a88d3404ab11f8c10a1d', 46540), - (9073, '0x97d0e6c2917eed185ae2ccd31968c8082aa98db4', 18550), - (9074, '0x55403d7315668639fe6cb5dcfd0288817171c6f9', 14580), - (9075, '0xc971c4e2c7c2eac9a8358f6b9c3b923a93009f8f', 14580), - (9076, '0xdc41ef1a9472afa2dbdc181de54ff7379bcefb31', 31530), - (9077, '0x0df5ba52e8c055950aaaf5fcfe829020e898ee60', 74330), - (9078, '0xe8f20c9e359b7711eaecede253692b2d25885d07', 29680), - (9079, '0x568dc476b4af661248caea5f43ba861aee1a03fe', 61130), - (9080, '0x19ce57b670121e73e43be6c2fea5c254bb4c8760', 83830), - (9081, '0x1439b4d5a72343b68f12398c649df99d76b2af53', 22400), - (9083, '0x86aa399a62b6d89f4d6306c82656be29cb2e728a', 191230), - (9084, '0x0c8b7cb28169a5d9914a8e6925eca0de3d0814da', 44390), - (9085, '0x277c74f45724945b2066f305fcb5a609312390e2', 22460), - (9086, '0xf7cad584a4d56959b5ee6b66d28bb1feac29c68d', 14640), - (9087, '0xd24a2f1feae9d9af52fd7e0f85f20190e85a1fc1', 51820), - (9088, '0xb7ee95f928954669554f7fcb70e1dfc2ec313c99', 14650), - (9089, '0x753025a228fd20e17134325f9e10e78eced835df', 22500), - (9090, '0x4a321d9ad33d7a48d6900229372e878f0ed74dc7', 18690), - (9091, '0x8695afa559b1ef3cef0cbc511e8bda4d5f91aad0', 18710), - (9092, '0x7d6436dcea657ad0265f03f1818e77d021ffaf15', 29940), - (9093, '0x2612b77e5ee1b5feeddd5ec08731749bc2217f54', 14770), - (9094, '0xdf463ca6dd18422fd41d183f1b1bbf133b8e0884', 30150), - (8115, '0x34dfc08eb3b7ed60d00e5b2cb611ac27c152b45c', 0), - (9095, '0xd4bf6958538f26266ef2a32db47d296323734b5a', 28330), - (9096, '0x57e191878efdeefd9ccca823c487b36b09719e94', 18870), - (9097, '0x24f33c5d552ddd8d9ba085fc1ad2e28c40989599', 22750), - (11686, '0xb0937b05b74cfaab8bb006368958f2fbd48262a6', 6376), - (9099, '0x8bf824d7e8a2dbbe6f47bd09721a8a3fdce09d63', 22770), - (9101, '0x34db35639eafe2712ae1f69dfa298b06a5c25053', 70610), - (9102, '0x735854c506cceb0b95c949d1acb705b31136d487', 22810), - (9104, '0x8f98ccdbf03c46bf769fe993f6b284b2fcc45f6e', 28340), - (9105, '0xca063b7eac9940109ab0b230470fa103b8090892', 14890), - (9106, '0xbf78efc16c278ac1394ed802ce39cacd3c88dca9', 14900), - (9107, '0x141851ca7ffbead76491b365c3515bf5bfd9efed', 26630), - (9108, '0x0a215cf3859bbeecb5531273adce8c30c2bc95a7', 46970), - (9109, '0x4f7d469a5237bd5feae5a3d852eea4b65e06aad1', 30440), - (9110, '0x4f764a08c66251e13bdd85b4bb0652b739736328', 19050), - (9111, '0x4efeb781b50ebcac590bc26f7484b56eff7eefa2', 14980), - (9112, '0x1b739d4cf035d71c52a41cc9bd259eb00e80b1ad', 23040), - (9113, '0x6e71ea384655db9914afb7eee3e9f80b62a51587', 15040), - (9114, '0x206b0526f4866e7580780015cbacbb4a8dbb8c80', 19140), - (9115, '0xa84ca2f5f7786d97c36d83e4ca2d119da7b3180b', 23110), - (9116, '0x3d95d4a6dbae0cd0643a82b13a13b08921d6adf7', 19180), - (9117, '0x9606509b456f052084aa5bd807e984213f49a2cd', 15080), - (9118, '0x8a1e3425aa53aaa5f1174bd08dbc99c7e9baa5c8', 19190), - (9119, '0x499250ce0fc3a5e36119c42f6394b405cbe0d416', 50300), - (9120, '0x1e23125a63312e6a85c9faa12dd804ba113919dc', 15080), - (9121, '0x5a60f7b95a8b120d8733b5720fda5f83554c0afd', 35610), - (9123, '0xc471e427fba14c04ae22fdb6c4e85fee8c181190', 29280), - (9124, '0x5e4b41f603fa53ccd2da5431839fb4464cd659cd', 30120), - (9125, '0x9bcdc7db2f57b0f960a737ccc29373a9bc760134', 35870), - (9126, '0xfe819920199392cdd911acdaed84b38f30e27562', 58600), - (9127, '0x423240bab9457f4ae3a69de5d6ad10f07dca1623', 23250), - (9128, '0x2f786f2e6750886a96d9a1170bcd9b1038fbdd7d', 15160), - (9129, '0xa5d224b43eab837aa2ee9c6ed727f1613f301a5e', 48980), - (9130, '0xeec9fedcf90e7a8c4d538490ed255ffc1f262f0d', 54130), - (9131, '0x550d1e3993cbbb5c7b9b964fdf87064447bfacb2', 15180), - (9132, '0xe1c7b3dbbc5ebe0492550d01b46d68de36ab8cb8', 38350), - (9133, '0x70694fc9f8fa162a5c44da98a9b6f729d4c72c6b', 15180), - (9134, '0xc75dc651f947b77c03fa4ecffc710776964bbfb6', 19320), - (9135, '0x39b65f3083ba5b6ae565dedfa030f9b16253a86f', 92870), - (9136, '0xf033618c0eeeb9342641a227c17d76c799866f52', 110950), - (9137, '0x469f7fab9343857e0ace8be9a5169ac24b24e396', 30880), - (9138, '0x9ff820a0ba1e7b87c6656e6dd50f967cc684b15c', 125720), - (9140, '0xfe1aa5275dda4b333b1fb0ccbd7a5f14edc4a5de', 89810), - (9141, '0x8d3ff4cf6ac8053b99bc90bb03023732b65740c5', 100250), - (9142, '0xa42fc5acff39ee880218724038e18c984fa78253', 71860), - (9143, '0xe61955fc5533c71fcee52de61bd60af21d60e7c7', 28350), - (9144, '0x35f33c28a8cfab51c23e2147f8cd4bce065f7f70', 19380), - (9145, '0x1c17ff957de70e8a8a257cb1632cf5258dcf0b54', 38890), - (9146, '0xef6a9164652ad2580c16d61b78bade3ca5e3df24', 31610), - (9147, '0x00063ddb30be7bc2292583d5f143e9d6e6228440', 69390), - (9072, '0x99b9bb23d300dda4a1dc9eb8d2333704b235c165', 20946), - (9103, '0x2bab603a63d1fbd6ff7e67b6e0ef7c8ddb63e8c0', 138216), - (9100, '0xeda5d99dce69824b44ad9a5eb6d7919d6496a176', 0), - (9139, '0x3bf0f2caac44d853be372cb0286b00ddbad98767', 0), - (9082, '0x9897d2d8b4ba8fdff077c511fe0ed0e946e91f1a', 0), - (9152, '0xaed58605cf7d6a9396f7c0539d51df6763808208', 34860), - (9156, '0x12e702d5e68c2f15e7ae1010333caa45198d03f6', 27470), - (9163, '0xf249cdde7020193d2c836a81b58dd2c1993005fb', 15450), - (9170, '0x126d2cebd1ff6da07ccbc905fd6e0ee97ca265ad', 23740), - (9177, '0xb6c9c98a7de6250e880b0cde1cec78fc6bd07092', 31610), - (9184, '0xfaa38054dca989a74fc8894f0a11a3223b613e96', 19810), - (9192, '0x3dbf55729abcf55f3b4f7cebfe88b7d59be3f23f', 23960), - (9195, '0xd6d24f55fc552c7f001d302138a7547b5b089aa0', 30630), - (9199, '0xbc94a75e8f89af94af553a41432c44700f0d381e', 15640), - (9202, '0x3c2c6fc98afb9d7d8f3d384d4ecda2769f29ac66', 19920), - (9210, '0xfd37f4625ca5816157d55a5b3f7dd8dd5f8a0c2f', 28100), - (9217, '0x7adbbea375f5e6ecaf28631bed702c4422f10d03', 20020), - (9221, '0xba00d84ddbc8cae67c5800a52496e47a8cafcd27', 103050), - (9225, '0xae0768e5ee2d5f140802f998c7293e2ff00297b2', 65290), - (9229, '0x8a194ceef3154d5ee3616f97f347f8681edd6189', 20060), - (9233, '0x9079be3072c0ce9eb2e33249bb976af4a9e068ac', 32110), - (9237, '0x314fd946d8c911dfe5fa97011bf31cfceb71d78a', 15800), - (11687, '0x800e13da9f6ed5f2fb8cc9cd8e52ccb9570356c1', 6376), - (9245, '0x4a0f12a33719a6444405261845a897f33243c750', 34320), - (9249, '0x827d2f5ecd0b2674e80d8aa4786fa3600af60b74', 32250), - (9253, '0x60dbf50076206f60bcc2edf9295f5734561b8d77', 119390), - (9257, '0x99b42e75b525f143947e5c1a31fcc0032b8c452e', 15870), - (9261, '0x14b85b1c40056312fde55e1fa1827a92f12b966a', 82240), - (9265, '0xfb53efa900f1b8b3b5822cc9eb9aa64bd63a8629', 15890), - (9269, '0x18ab0108817dcbf8f7b371aac5f7b87d7d4427e1', 51070), - (9273, '0x82e939ce51a5510b183ac0b5922127613c3709ec', 15920), - (9277, '0x98db764d115badcde1a035df94b8118016c53057', 48650), - (9281, '0xd527c56dc2ac6a71f04242548039d07006e9103e', 20280), - (9285, '0x7a2377c82a514cc6e33ac6ab12b2e16aa7446280', 15940), - (9289, '0xc2f6d0f6ab3446b8a673f9ff26a382127bc3d26e', 32480), - (9293, '0x5d9603e36dc07d475451da8084fc75f7235f6b0e', 34430), - (9297, '0x855ce48527c31304a0c94f04070ac124f815c389', 20350), - (9305, '0x8f7a294bbf1a856480cb7bf46001b1c370130a1b', 16040), - (9309, '0xc98120ba89692bfdc3de97a8a7b8bac71bbddd6b', 16090), - (9313, '0x0674ab75cbf5f3165fe70be116bed13df134664a', 41310), - (9317, '0xf738dcafc6363c52a12f6ca4555ce0635b151e4e', 20750), - (9321, '0x16d47b5d3eb6f0dccf067aac3bba8129fa0bc147', 65750), - (9329, '0xc3d0cadc46f29064b494a224c6381ad58dcefc04', 25680), - (9333, '0xdd044684cfa651c491b844ae0e8646ad7c56205b', 46730), - (9337, '0x400420095c6f26272b24b95e4bdd9d6bd51f4ea9', 26130), - (9341, '0xf6fe08ea0250ff49b0b479bc0dbac528b30d5fc4', 17110), - (9345, '0xdd25f5d57e1ac3c7988543293f6babeba3df96d3', 22080), - (9349, '0xf6591c74c46762d94765a6ad27368ceaf5cea475', 22250), - (9353, '0x0c950942054dd414f964155145da68ab208f73e0', 31380), - (9361, '0xcb52187359e709ef501e7c207f2dffc360f7feab', 56170), - (9365, '0xb40bd6b07635cf752d6e3976c9a1a1f5c8f4b2db', 27470), - (9369, '0xa69530e88096c6221042394f9fcd5d9e419cde54', 18200), - (9373, '0x6f1490e04121dfaf6f62811325dfc05be19d1039', 89290), - (9377, '0x6cb4890d712c91020df2e62fb7bb869ce6ca3e8a', 37360), - (9381, '0x5bb3e1774923b75ecb804e2559149bbd2a39a414', 35250), - (9385, '0x5802bc0fee2e236d1f8f1396c27a171fc5accc4f', 33210), - (9389, '0xdc40cbf86727093c52582405703e5b97d5c64b66', 54680), - (9393, '0x9e1e2bc60e0fdc756704d18346d511bba7543e9a', 79430), - (9397, '0x3fdd45957421fa9b58d2686cadaa7d25fcc7c4c4', 34360), - (9401, '0x8f73b59e2bf46fd615ae76599affe388b6989242', 24800), - (9405, '0xc3902d565bbcb20e6e947b9657df3b0a56875585', 39680), - (9408, '0xc7ab003d4cd336b467664fc904d8cc64cb201c18', 80180), - (9411, '0xd3074a836277b0edd45c4c8693afacd97ef76646', 30060), - (9415, '0x0aa34eb615ab330b64060ff9fa994e72a7a95b59', 92640), - (9419, '0x219fc230dbe627dbeccf49b9584022fff678dd05', 52890), - (9426, '0x5d9356cbc88d1b8cb1073d489daf1c7e3001bc0f', 25370), - (9431, '0xc8aeb4c273583befce25cbc2a6d4a5c33e67d308', 38120), - (9443, '0xf7356eac86640c188eb5116b593e089f3e1f2131', 62600), - (9452, '0xb6f6dce6000ca88cc936b450cedb16a5c15f157f', 20710), - (9461, '0x138811332293f081d24e63d40ab18b4af520378a', 21020), - (9470, '0xb0477a50cafe4ce6d3f8f64a81cde4f42963755a', 0), - (9479, '0x4a25f6bcf11dc1a98f706aedb47c42b9f299c400', 5680), - (9488, '0x5db00ad0da2a08547961dd9e5a5ca2ba56558f4c', 9020), - (9497, '0x7ec37a15327eb3207038470876714f373809ee63', 9960), - (9515, '0x9f36a6bb398118bdcd5b1bc3343d8feb6d7d02b9', 10110), - (9523, '0xbf966e6d886a1f7910d3bc9777709cc37a400b63', 25550), - (9532, '0x29d295656e1ddb69c1caa5451812c1395b4772f6', 9470), - (9541, '0x4bffc4a44b793a58564d154e49054576b9cd83a3', 27080), - (9550, '0xc7b44dff84b313600e5bbd4d1aa9a0c1211fd1a1', 36990), - (9559, '0x60576db4ac5176d7dd76e7f33a65f936c74e21c7', 20580), - (9577, '0x762b89823df69b711c35b737acb0660456720921', 16870), - (9586, '0x1efadf6083d9aac344d29cb8287c37af16c86e45', 11330), - (9595, '0xf2308fc3767678dd6581a909ffd2855716115f7b', 61450), - (9325, '0x716e317accde42304050cc5753e0207cdcc57528', 31976), - (9357, '0x25788fd5e65a94f1f02604c8d72d05e0bf4cac5f', 24096), - (9301, '0xb6d197b72756395a4a8f8d48a54750d5b8ea51ee', 58156), - (9159, '0xa62649da86cce4b2e350fa314d7f226a083cab46', 71406), - (9206, '0x56176778b638e7ccff5053e40f3935b5e354d2f2', 61956), - (9167, '0xcdcdc174901b12e87cc82471a2a2bd6181c89392', 0), - (9506, '0x486292647751e8390ba531a3db9899918a99abb6', 0), - (9568, '0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426', 0), - (9174, '0x309471398adfa2b136970583ad0db66294f035e3', 0), - (9148, '0x103ac82daf13da683f6251dc0c5008198fb2a402', 0), - (9153, '0x15a62f8aa28d45f726453c5fdfdce242135efb76', 71650), - (9157, '0x069da1bad547d67abf26c42358d3a6a8a78deca0', 15390), - (9160, '0x575c8a992ec082f3650432de77c1cbbccf568200', 72630), - (9164, '0xb48e8da63c2afc5633702b7acf4bde830c1de48b', 19660), - (9168, '0x0d74d273a4d2971e7cb8e7acb25ccfe149e37465', 41340), - (9171, '0x9c0710a878f21e921c45e43f73ec15de5ae24bfb', 40060), - (9178, '0x81064c1a10b0a3d2a1d716a54281ee73318524f0', 15550), - (9181, '0xda70761a63d5d0dde3bde3b179126127cccb44b3', 23870), - (9185, '0x6586a7dd1f4fda4755a7a821549e492e3e766bb3', 15580), - (9189, '0xa372b5d50c3b647900b68be61e9eefce8b85d540', 40950), - (9196, '0x2f5dd0571efaaf7f101a36f3626a3eb10de65a3b', 15630), - (9200, '0x0f516afaf53ad3a970ef06f97142094d1c0f3f81', 15650), - (9203, '0x48c290b4e0273c57a30d9ce41cf4ff27fcf79317', 19920), - (9207, '0xc07a4c908790741f570867699f09a9368623bf75', 24110), - (9211, '0xfbea1b97406c6945d07f50f588e54144ea8b684f', 43100), - (9214, '0xca7612a96cfc6fdeb93d5723f90fa3f0e1b6d008', 15730), - (9218, '0x2f70684fc63efd20734a226c3347d751e84014cb', 20020), - (9222, '0x742a48de135660349b89a77121741e171e4fa26b', 55480), - (9226, '0x0e6cc53526ca63a7a5d164c28e6cb9cf07620be6', 15760), - (9230, '0xc008a83beb75cb32e1ac6a7aadcdf71b57f5fdcd', 24190), - (9234, '0xbdd144423794914afc4ad10c35af1848b9ce288e', 28220), - (9238, '0xf9a3bb070c1f9b3186a547ded991bed04a289c5b', 24240), - (9242, '0x10f5d45854e038071485ac9e402308cf80d2d2fe', 41170), - (9246, '0xee5e44139d5e16fbf0fe63d5c9a67a95d445afb5', 20130), - (9250, '0x34a124b036c3963b15948b8e8be0dfae05e914ae', 43640), - (9254, '0x1dc41c09aa72992284e76032499882a7cbd79890', 20160), - (9258, '0x48d470ca98e7374bff10d8dc51f25ccf68bd1b57', 24340), - (9262, '0x7dcb39fe010a205f16ee3249f04b24d74c4f44f1', 20220), - (9266, '0x6dac6ef6008eb2ed7e8c6b20bc89663a8114f3d8', 20230), - (9270, '0x67a2ea72b7e82f5387a87565580da70656e9ac18', 15910), - (9274, '0x3cd9b835f1f072e31c0d4a16c3c03e3e054565da', 15920), - (9278, '0x20cf382866869968735c77627902ea74c7de8268', 20270), - (9282, '0x21c94aba9184da7340f78b94a00b4d5f9724a65f', 28480), - (9286, '0x295dc4c0dd4ef28ec429fd78f91e12cf67bca787', 36290), - (9290, '0xc734abc7a7737de1ca7bf81c4dc8612bf1887b54', 15970), - (9294, '0xa44f500bdd82e2e783ef292e2bce6ab5124a6394', 15990), - (9298, '0xdc27d9c0376110495b33fbe0713b0284a5b40b59', 40150), - (9302, '0x69c905a98afdb904626f796e3e7f9a863c92e86f', 20370), - (9306, '0x85f094eb375d99f9034c55add766aea7d68935fa', 24640), - (9310, '0x72c2924f387aec3784d815a993af1c02db6ba3e5', 34950), - (9314, '0x26e3a9c84fdb9b7fe33dfd5e8d273d016e4e4fb6', 123360), - (9318, '0x4b2ed0d7757dc8ef0ce65b0454f53866471849f8', 53190), - (9322, '0x140a8219678c254332f12b2d16442b6512ddea9e', 45570), - (9326, '0x1a883a2392fc538ca3c9ce8adcb14f48e1d14a9d', 21250), - (9330, '0xe5640b09eaad75a49782de1a50ecee1a0f803f8c', 187390), - (9334, '0x94643cacf35d6f478ba36e7c38bffe9eb6e531fc', 138570), - (9338, '0xcf26fe037743f56dab8f9ca509e9fb7f59071bf1', 50660), - (9342, '0xb2dde7601a83cf17d14fa8ad15b27b60656579c0', 26570), - (9346, '0xda22919e01e249ba4c96dba46bee29e4981835fc', 17420), - (9354, '0xb789adbb6143038c5048fbf4f410c7e69c6fced6', 31480), - (9358, '0xbd629ccb15d8f7dea107a1006b0bc5316d666150', 196420), - (9360, '0xdaa83039aca9a33b2e54bb2acc9f9c3a99357618', 208480), - (9362, '0xef9e56012a4f1cfade136f878672d08b6429b71e', 17830), - (9366, '0x4946ad657acd9735a5c7b47e46056dea852481dc', 35410), - (9374, '0xa58b4a80de82b889ff40e487c58208a429c77f88', 161850), - (9378, '0x3bbded7132c61a703f9138a10fd177f0796b6696', 41970), - (9382, '0xff51cc1519c7a61144d3ff6f883122f150752445', 50130), - (9386, '0xab769309ebceeda984e666ab727b36211ba02a8a', 23690), - (9390, '0x9293a7699a30cf64f8593e689ecd1b931753b627', 42620), - (9394, '0x77ac30452890e5210cb334f601a0a6e8f0a5201b', 19090), - (9398, '0x516cafd745ec780d20f61c0d71fe258ea765222d', 24620), - (9402, '0x2a937a6acd819631bfc79553ae7ccc5ca05e23ac', 140310), - (9412, '0x571f7567b4b6440af78b043e657c9d5013be250d', 19600), - (9416, '0x0e03d94c2a33ac6d7c0f1b2d3381803723838e1a', 19690), - (9420, '0xf3236c9d0b623cc261009484db5cfed2079a007f', 19790), - (9422, '0xb0cc7d23aa7f7a93fb08ef72d655b7b20cf02d08', 19860), - (9423, '0xb5dec9f249c9f485e65be7427ffd4799471e9ae8', 79470), - (9425, '0x0584d422aef1b751b52be71023a4427be4559755', 35550), - (9441, '0x38b5ac88cda8d22423f98f54c1fa48d79e27e15f', 20250), - (9450, '0xb1066863cfe18d1fb20bb64487eb2f06aef4ae49', 20670), - (9459, '0x10d2e3d5d76154c985ed15241bc885e284c88829', 68240), - (9468, '0xcb7484799fc0beba36340640ce5f2171b7960088', 0), - (9477, '0xc65ebcf5ce433f7e7dbfdbc98aa948dd5bd381b8', 82430), - (10455, '0xf4127de780eec854c56c91c5064591db724d57f2', 22266), - (9495, '0x95aa6cf80aa61c3433215c7b8330c065ed29ce97', 156050), - (9513, '0xe9650ab1e08b2bc749eba05e00651a3ff854071f', 25270), - (9521, '0x3c8c5d2738d364b2a5c0fcc0e2b7329d27b0ae36', 28780), - (9530, '0x2ced66da942577e4557ca831da25bb4b7781d736', 127710), - (9539, '0xc6d14b4c2db572b018560618e68c6b216582c5a6', 36130), - (9548, '0xe3f3bc22382e0edfdedacb5e4a89a5418432fd07', 22880), - (9557, '0xeec38c32ff337a4fe70a51d03648d5f00e044c18', 31090), - (9566, '0xdf8b030dc43d83df7c6ccfff8ec04a2a9322cb98', 16340), - (9575, '0xffe5722ece6404d5811061bb6643c8e659df0416', 13940), - (9584, '0x8d6479421b4d76ee38a947360e8418851e8cc72c', 64720), - (9370, '0x3c9d92a145b17b7df69d22eff292499b2849ee83', 0), - (9149, '0x0880cc27a345b5400fb5942f58f4e573e64f2f50', 0), - (9350, '0x9fc3b33884e1d056a8ca979833d686abd267f9f8', 0), - (9150, '0xeb550a32822812b114383adb6ea5455963f31e5f', 19450), - (9154, '0x5ac6709c90dbdaa33caf8aa81b6d21cd42592c1d', 37490), - (9158, '0xb3aa925835c7047a165bab827e8d83484937e0c5', 27540), - (9161, '0xfda746f4c3f9f5a02b3e63ed6d0ebbc002d1f788', 69320), - (9165, '0x6434c6d6761767c68f6c46f6eadde4f9388e2643', 19660), - (9172, '0x47d25240311c444e4534a968c9f0f82d262ae0b4', 190160), - (9175, '0x4b1de248cfa395a24f32a4f60da42ea511a098b4', 31660), - (9179, '0xf180f7c066c9af638b73ceef139d5adde0d4265f', 15550), - (9182, '0x703fbd74399f71103604e3c7ea9f54cbb43f718a', 15560), - (9186, '0x2eacbb89d9844759bdca7ea293536ca4a328474b', 23910), - (9190, '0x9600e2ee6377dadad7299b120026661c336a5e6d', 41790), - (9193, '0x661722ddfb0e38b5394832812cfd9ef0388c904e', 15620), - (9197, '0xe3ca872f83c14853f43193df9bc0092559ea21be', 103400), - (9204, '0xc98b07fb077d0f2759bd8e82e03913b952b348d8', 594520), - (9208, '0x84e1056ed1b76fb03b43e924ef98833dba394b2b', 46230), - (9212, '0xe5a71a3696d4edb65f07b6f9a3f000f826367305', 40050), - (9215, '0x2666f0c8fb58d182f2dd79475dca4a07b3724607', 47670), - (9219, '0xfb15339d187a76af62698f73d700e1f8536f03bd', 15740), - (9223, '0xd82b943a93b2896cf5c7965d3ec25a30202b378c', 28270), - (9227, '0x46797eab11aae32e2aa4c5058f71b072cde48dfa', 15760), - (9231, '0xc6cb690be10c3df004883565498075e67c344e01', 20080), - (9235, '0xfbd234f73a3cfa398f36f396ba527c85006c3f9e', 30350), - (9239, '0x543c433afbf9e8bb5c621b61fa30f8b88cca85a3', 40180), - (9243, '0x60ec4fd8069513f738f3a0f41b9e00c294e74bf3', 776540), - (9247, '0xf7b7dd2cc91cdc39799e8aa9bada6bb6c99bbe5f', 32580), - (9251, '0xb3f9db09cd32cad33b1559f3d6e1a9435fb46834', 15840), - (9255, '0xc5f59709974262c4afacc5386287820bdbc7eb3a', 24330), - (9259, '0x953448062cbc361c4a49144bd1d43a294e4b61eb', 20200), - (9263, '0x2055149768d71910aa4125ccbb9fdc46edeb2436', 174000), - (9267, '0xc4d36bbdff27f0eb757339336add38d5842b8226', 15900), - (9271, '0x6fa6602734fd61a08512bc2179b19b982e731ed5', 15910), - (9275, '0xcb0ec9837e7b0121ecd3b0704397e1d31dba4f0c', 20260), - (9279, '0xebda75c5e193bbb82377b77e3c62c0b323240307', 15930), - (9283, '0x82e0c33334c997b7e33bb6a1a8659cf3b2f3b854', 32410), - (9287, '0x1670db0afa7b78f3c462ce4a5f463af056e4ecd4', 24480), - (9291, '0x6cd85f5e8294803b7a60efd0528f03f21848ba41', 31430), - (9299, '0xbba1cdd6e94aca527637ef3dc4354d203e16c146', 20360), - (9303, '0xfd2862e0f562c99c911d3502a101d35f0bb4f579', 20380), - (9307, '0xaf090d3e78530b3c9a4ed035bbe09978b560d7ee', 16070), - (9311, '0xefca263734100602bd85d300d6b32b7ccec188b1', 38700), - (9315, '0x96e1877e833a3297326178625028eab7fd57ff71', 20620), - (9319, '0x43b3a88e27fa33c59567ef3dd52f002c78f49233', 16520), - (9323, '0x380604e85e772f51014636aa72b107f163609dde', 46940), - (9327, '0x8aaef3c365f90318d15944587d1d3d842e16565a', 31920), - (9331, '0x557441dc91a0563b8ef8dbdc8a626d2bc765f373', 21310), - (9335, '0x38e27a59d3cffb945ac8d41b7c398618354c08f6', 32900), - (9339, '0x36de990133d36d7e3df9a820aa3ede5a2320de71', 83820), - (9343, '0x512ff58a791b69f5935990369338683932b469d1', 30970), - (9347, '0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b', 1538190), - (9351, '0xceb78abfad166c11e350156fd671b385265a6c87', 37010), - (9359, '0x795050decc0322567c4f0098209d4edc5a69b9d0', 154510), - (9363, '0xea310c966d3ff5e09c65487f1763b21361eb71ef', 38560), - (9367, '0x69220592ac4b00784d3c0af497e261b4cd722aaf', 18120), - (9375, '0x7ecdf3fd56d3b9f512fa70a68734ce871e36be96', 55070), - (9379, '0x660ba471aeef6dd8054f9e012e0b32d026a96d73', 18400), - (9383, '0x14a0c203826ab076bbd0f386baa3421e3ca4836a', 23520), - (9387, '0x9f281c5b04c091096ac468a9388f0ee6b0b8b1f5', 23700), - (9391, '0xa1e2421a68f0208b75acb0014a69e89b1f7492ea', 18750), - (9395, '0x0d8005dc289094030b9c5f0d942e0ff6372f590f', 19110), - (9399, '0x5bb96c35a68cba037d0f261c67477416db137f03', 19380), - (9403, '0xeb2b6802332c2a86be4479b1993ba05afd91d300', 53470), - (9406, '0x3b60e31cfc48a9074cd5bebb26c9eaa77650a43f', 104360), - (9409, '0xf23f9c10d1559885dabee67c59c4554e6152697b', 19560), - (9413, '0xea3246957e3548fadf56301af6e020fa288af8ba', 35200), - (9417, '0x2ae9b5d66d83419dbc33696c9f126ff11de75b99', 38890), - (9421, '0xee324c588cef1bf1c1360883e4318834af66366d', 67240), - (9424, '0x41725b4996de108d9c3146ff83c7ee4e2633c60f', 25290), - (9428, '0x744c28e52dbe6af8e68937d006323ee2b514ad4a', 54660), - (9433, '0x4fe4f54474fd3b1196bf865ae59021bf8b6eb1c9', 25400), - (9442, '0x6a46d7a8a5d34aeb166bbbdeb496ff1c14e445ce', 31070), - (9451, '0x8f165204093872eca99887f3295678ebc4058fda', 26310), - (9460, '0x42069af35aed1dc3b6f803ba3c336ebe0e96f098', 62360), - (9469, '0x33d8b6ba1ff7665ca84d002b15eec8f73c0b0ea6', 0), - (9478, '0x84897786256eb494263ea38469c401243d0abe03', 102990), - (9487, '0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765', 25230), - (9496, '0x83cfbf713e60b0dbb093eff8659284c23c20ff27', 8220), - (9514, '0xf1708bccf4ce044699ea2ecafc2ff0c5139bdbc3', 182130), - (9522, '0x794ded5a4ef88cb3a9d296c48ab0df9e4b2d8bef', 228290), - (9531, '0xce177cf98518996767abb3c79118572816828ba6', 130910), - (9549, '0x19a23d463b4be0945c05ba4e5aa869adcaa55b08', 51650), - (9558, '0x09b0f27549dcaf5d31355628f1f0ea6e1c0c4dae', 18700), - (9567, '0x0055354f80275a5fc29d43feed8ce64701579cad', 48930), - (9576, '0xc09d3402515676b81a2f768c365146ea3faa5605', 29620), - (9295, '0x338050301df259ab1aee79026e6e1bff7b10c899', 0), - (9540, '0x2b1487c4f061879ec8776bc9bec806a744f44b95', 0), - (9505, '0xcd7e89f8adc80aaada5899312a1132209650ed0e', 0), - (9355, '0x1bccc3dc32d6977ca14beff7a2130f578620cdb3', 0), - (9371, '0xe9eba220d1b041f839704ba748a0e1c74f5d9c75', 0), - (9151, '0xc0f5758a1f72ef6d0c6249df258a3e9d419fc065', 19490), - (9155, '0x73ca335719ee9caa510beb94414e766947752ba2', 15360), - (9162, '0x93c0a0393277af267270fe2acf4a3b5473db3c0f', 67690), - (9166, '0x5a11d298cb270ea25b87de44f7ee781b5f0b0475', 23720), - (9169, '0x50f17063acdb1924866fbe8e31e72a32a5209d73', 27660), - (9173, '0xc8fbe3bbadcd1829e153f1837fc5f7c53f280686', 23820), - (9176, '0x0fc5df1a76dac8a19d11d2ddcc5bbe4b79bba910', 27820), - (9183, '0xb78196b3e667841047d1bb1365ab8fb3d46ab1a8', 19810), - (9187, '0x5d5d1c3179addf4a598818421047ffa622052ef6', 41030), - (9191, '0x9f382e671d76de9e0085983b5fc90e6a9b414573', 19870), - (9194, '0x62776c4859585b82e1c2be84500e30c3e511f331', 23970), - (9198, '0x52574297ff7dadf3bdfb3e5e3bec5c08331f0424', 23990), - (9205, '0xb4bb21f96a5f8ba3feb0dde8495a4e312dcc356d', 19960), - (9209, '0x9bc66deb421faf05041ee69f8db194f6a34bdc37', 15720), - (9216, '0xb432ca713b50c72049493edfde314abefd23bed9', 35780), - (9220, '0x679fa2b7f80bc50b0dfc0f7c9ead299b4db0d728', 15740), - (9224, '0x8bf2ffc89c70efbe245aa81cc597c7e359925d61', 15760), - (9228, '0x837b62988107d80c66e4dad561347341cf231805', 15760), - (9232, '0xe80354f49644e7f59152177b26ac93b8f658f3dd', 32080), - (11689, '0xee164248a25f7976ad87987c6be641f6e902e830', 6376), - (9240, '0x71a07ebb65242d098c0a6992b525501f4981311d', 20120), - (9244, '0x44db0002349036164dd46a04327201eb7698a53e', 20130), - (9248, '0xf24137b4886a44d93d846337fc7810243d4ec38a', 83020), - (9252, '0x6025beb3b7012fd932b005a4dda7a0b786fda0db', 20160), - (9256, '0x8441fa93a8f2e372aba8a9f94f9dd78e9fb7ea36', 35290), - (9260, '0xe2bf39e89497e217f80ac97cc76e9c229569ff21', 15890), - (9264, '0x3339726b077b08ca88ca2262108beba4e7236882', 48380), - (9268, '0xea9839f68c5146f7c09d1b525aaf639f9af733a7', 15910), - (9272, '0x71caece9d2f4244ce5780c7bd42e423b56c2a180', 32360), - (9276, '0xebdb4f871fff3add1afee782077b9359a8ce8060', 15920), - (9284, '0x68b44ea0b78aff90e328406768bedcd387000d31', 142020), - (9288, '0xff8fa9737169903feb053d6320d7088cf6ec861b', 24500), - (9292, '0x1aa3096e2bbacae10c316e7282947f635d461e3c', 59650), - (9296, '0xa9aeea5a7680441d0e273149b09c1937684259ff', 20350), - (9300, '0x0a263623d75eaaae19c82a29f00ae97b9ad6e390', 20370), - (9304, '0xf451a2e70421283838f253da1784ba9f3c51aa90', 20390), - (9308, '0x4fafa767c9cb71394875c139d43aee7799748908', 20460), - (9312, '0x05dd71b9b95f5002a85fb5187e87234ac1073329', 74060), - (9316, '0x9e9fbeb970383a43d6fba10af4bc0a96e567f83a', 103830), - (9320, '0x1e34a0daeedd3aaaee515c92791e860591b04f0c', 279300), - (9324, '0x6de0368f14aefd0ae1323a70ef47cdf2afad6421', 43380), - (9332, '0x268884fd17c3f13c85053648a9f95dcb0bb8af2e', 16810), - (9336, '0xb968b8fc624281de9aa41f0e9e1ac9a7443c4a97', 21660), - (9348, '0x540c5f1c2a550047423a81deb20467fcab11b116', 54910), - (9352, '0xec4061eff0032aecc4b3d1187166bd3ae06bf056', 40570), - (9356, '0x182a414a433b0129ea639c2d24d21d4cf6a6c0ae', 17720), - (9364, '0xea32f2de0faf3a6926a9762a48a1fb27a4c95541', 17900), - (9368, '0xcc36145d65c0335249e4abe93a60130bd0e07f49', 248060), - (9372, '0x9300cf111fe80ccbb09fa1bce08d985603a3e3d6', 18270), - (9376, '0x5881d9bfff787c8655a9b7f3484ae1a6f7a966e8', 104830), - (9380, '0xf4b4fb691c637f70bed44c81455cf4bdbc236e78', 18440), - (9384, '0x58d205f9d265399f5e68b783162d9508c0469bdf', 220840), - (9388, '0xe2eb4e5418e8d1f90b474318b83034a15fae409f', 28600), - (9392, '0xe7279b858193df08bffaf10cae8fa5166941a444', 66840), - (9396, '0x371107cc397a1fd11fd5a7ac8421a3e43f886444', 199910), - (9400, '0xe1eedbd1e08478707c794e7e8b1ee623f5fa6d64', 19380), - (9404, '0x7ccc961d071e4e892c559076242df9b27da11785', 40660), - (9407, '0x64e8b17a8c5c439156584112c66cf5619c4c6d70', 53510), - (9410, '0xfe78bda0241fc22b064b1f918ac1c1bc2cffed45', 19590), - (9414, '0xf323a62963515da65256ba797c2dfbd727841211', 19660), - (9418, '0x82d746d7d53515b22ad058937ee4d139ba09ff07', 35270), - (9427, '0x3e6c23cdaa52b1b6621dbb30c367d16ace21f760', 25370), - (9429, '0xc3048079040c993818021e955b62102094cd4d03', 47020), - (9430, '0x6d34927441c4a238a84f9f54a47d67cc3d55f575', 56200), - (9432, '0x19f8a76474ebf9effb269ec5c2b935a3611d6779', 40570), - (9434, '0x21eaf5f0e90d06a1700a8952860d2b170381ecce', 30630), - (9435, '0x5a084aaef5eddd9195f28f6fe056785e01f210eb', 19980), - (9436, '0xb3d1a413968f7133ef644e720f74e216090c51a8', 20010), - (9437, '0x18d2cd29c1a738911c80421f4464cee39af20f03', 38260), - (9438, '0xde4cdef683d19b117df94ecaec76caeb13cfc144', 25470), - (9439, '0x1c08da0decdbd4b58d325bc97ab1ae96b896e950', 82000), - (9440, '0x10d6d2e343281d388291a3e02f3293aaeda67178', 25740), - (9444, '0x9eab9d856a3a667dc4cd10001d59c679c64756e7', 58990), - (9445, '0x6d9ffaede2c6cd9bb48bece230ad589e0e0d981c', 26030), - (9446, '0xa5741729c4eefee1c299676786b6d52beca8c66f', 26100), - (9447, '0xe638cb3fa853622b2824cbdab3c27b06e8049651', 20640), - (9448, '0xb5031a7f86b962dec21218e6ea55c586d878d260', 26280), - (9449, '0x98bdb26c77ea0259caf5700e653e485c288c7a2b', 222000), - (9454, '0x4884eb76842f734e0de54d79ad45266072eb68e2', 20760), - (9455, '0x1500cfc7d2819442f1f5d7e2281554472c275075', 67880), - (9456, '0xef2abe8d4307fc8afaa6c13aca7a359a706d6bee', 37290), - (9340, '0x74667801993b457b8ccf19d03bbbaa52b7fff43b', 0), - (9280, '0x19d8da2674e8a025154153297ea3ab918debf96d', 34846), - (9344, '0x5a927ac639636e534b678e81768ca19e2c6280b7', 0), - (9180, '0x5dd1b4c6132c175944c226fc89a8739b8bd9904e', 0), - (9328, '0x88ed3861d35e33dc8da7789da0b9efcf2299bb1c', 0), - (9213, '0x3585ca22df80d70f6d1cc0867d8387c360181349', 0), - (9457, '0xb26af90041b13a3b795c45dc2f2b7e6b6ac6b593', 20880), - (9466, '0x647eb74a5135a0f24beee3c2d8432adcbb32c2a8', 0), - (9475, '0x12ac0d5d5397471776ea096c6bbbcd60dd91173b', 19310), - (9484, '0x74e98f9f7180ce6b76d6fb3844edcd6feb7e8089', 4590), - (9502, '0x9469d51f31e13fcb119bdf155bc20b4c5f69e35b', 6890), - (9511, '0xe7ef67878eca70726a608eb37156e2d4b72e01ff', 86400), - (9528, '0x6e672528f7abc31bcec8bcf16c31aba3abebdad3', 11620), - (9537, '0xe3bfdff87a32482ec14617abb4982dd5ab8cacb5', 33610), - (9546, '0xa32ac6f43458c40369385e60f704912b33312919', 32070), - (9555, '0x6816d223f6def076918f42c1a637cbbbb8c2ee63', 13120), - (9573, '0x846ada7377d586ec7a55599deee5fdd716138348', 40600), - (9582, '0x1a1c37c145a1eab58c43f003ebb55c18083b5987', 252280), - (9591, '0x2276ad51328af70aeb0c42487f8a8ce7617d0017', 44030), - (9600, '0x037ac478992e23340fbd4114f218943037916300', 11860), - (9609, '0x897fed9144674e36e49a73c5d4b714183ff5a70e', 33330), - (9618, '0x0fe680c0d6dc5aa483771763cdfb6d1b69f175a8', 22140), - (9627, '0x61eaef4876d6531378726f8b3300dbf440d97f69', 15810), - (9636, '0xb398447e51c621ed7f87c322bf1caa5f27e48feb', 67880), - (9645, '0x0de290f9717764641b9694c246338a477cff9543', 23180), - (9654, '0x91d4ebb05d3273bdb74af69c20b826f9e76ae542', 24590), - (9663, '0x2d240c5d58a8445e99dadf3fd41a492dfeaf7e4c', 25090), - (9672, '0xf753a515caf621ea9af5213984704ab56f915e08', 18370), - (9681, '0xa3d0233b9433162ea28e633a3adec194fa5a9f90', 30500), - (9690, '0xa60138df756ffb107c4d910f36b60ad1b4de2198', 23350), - (9699, '0x2806926727d4f93bf6491bcfdd5308c17d752c63', 19840), - (9708, '0xa55112af5e427bd44d4542627180bb493b338a9b', 53280), - (9717, '0x5c78ddef65d55a4db1f8063f7ba8c52167429693', 28460), - (9722, '0xb8c46acc66a02c52353e760384c7dbd921c4adcc', 34850), - (9739, '0xb97a251df2672b0e252b28a96857a8ace9929ccc', 18220), - (9749, '0x58fa3ca223412cb53937ce0ba32d329adb46447c', 18970), - (9758, '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20', 25710), - (9767, '0xc60a0a0e8bbc32dac2e03030989ad6bee45a874d', 21050), - (9776, '0x2759583d1a8ed59f695ac74020a7170f6c672087', 43710), - (9785, '0x95045076fc93a14a4e9b576599479cb4f58a1b11', 435270), - (9812, '0x00bdf8a5e236dd8cbdad9cb1e46a7cff27ef294a', 5750), - (9821, '0x7df4e62ce78d4b32b8d7d4a3b5ef2964579d1c53', 6110), - (9830, '0x27767e627098dcc312cb041d1fb7922877243658', 19020), - (9839, '0x515bee382ea1043b699863c06f319a8267d58431', 11530), - (9848, '0xbf16dfaee9fbbbcff66467964dea940ed229bf62', 15780), - (9869, '0xefcd769a7936bd18fc8ebf98e79484cff4a8d7d9', 153890), - (9878, '0x40ad478fd10e1eedd07c8d686e5632ebe98735fd', 98350), - (9887, '0xdde7b1103d7bb19982ef9c6d9a348a0c0ea7e132', 25130), - (9905, '0xa315c96c0903b6a5f0c997fdc6b257851017590b', 9750), - (9914, '0x6e0b0e19c7a26024d3c34ccd9d02019c029df244', 10100), - (9923, '0x0aadaa54b39cb6762184ea2c57b3cf03ceba6d64', 16100), - (9932, '0xc2ebdeb30f7ec840cec0e4f4272a51c9d7f7128c', 29620), - (9941, '0x2b9218d929c4f7dee9ea565d3c63769c238e4c99', 53590), - (9959, '0x6b38662f976216268865affb38b844b958a7379e', 11240), - (9968, '0xa7061a5873ec5cf7dbb11b61a15f6fbed789d391', 14570), - (9977, '0xf1a9b9a5521f69f4b925202ae0300ea72e63b3f0', 20680), - (9984, '0xe0b5e2ceb8bc6cb0c6a4a35ffc36711306acd5fc', 26290), - (9993, '0x0c9e725902f2eeec063c16d253f38684e3192001', 32150), - (10010, '0xbc0920c838ae3d76d33c93db260ea8be56413128', 11850), - (10019, '0x34cbdba195141f1bfcb4ba184de6c1a2bca18b5c', 97220), - (10026, '0x1936b4edf08c011362417c2a2b9cb30e473ad7f3', 11970), - (10035, '0x906b4568d82b194ca9190f7bb0473f094c89f29f', 12220), - (10050, '0xf6ee7b0f6a574d9d48cfcaa2b6f1972696b185fa', 34770), - (10056, '0xbeec75a2025b34767cb60f0bea5c4c8be489ba6d', 218670), - (10065, '0x582ca15836d5542d22b23102af5a4d02f5eb0bf4', 12530), - (10074, '0xfe4eedcfdeeab4f26a5319c952f81c3cd2dd4859', 19290), - (11690, '0xdd879040f1dd0990de8448034efbdf61d232f42a', 6376), - (10092, '0x1a3fcac25b69015f4110fddc689d11a8b3133975', 16340), - (10101, '0x7187ac6205cdcb978ee029dc658b97435977ff95', 12960), - (10110, '0x8494be207c49071064f04ee29b23233ed4cbdfae', 16560), - (10117, '0xa7f053d0a4df46577428b84fb3a59e98775ee698', 152000), - (10125, '0xb13a55d8512aec4bf7b15067d733c4c3c68f2439', 20350), - (10129, '0x627731584e3b1f0d731bee6b5acd090372cba5a1', 16980), - (10147, '0xd7ed9764dabadaa5a89ebb855a3acc6e33b9265e', 17470), - (10156, '0xa36033d329426e4af70cff4cd177979690c432fa', 17500), - (10164, '0x661c54a9da5c289f60c1a19ad95049dce2169e6b', 21120), - (10171, '0x5487fbb38af908185f01e43b8b0703ace2317314', 36160), - (10189, '0xfd4520753366d35e5dc2f76d52dc58a5261ed263', 13820), - (10198, '0xdd4b0803d8cea3095b8d4dfc0c753a1fdee945b1', 14070), - (10207, '0x1dbf8d3a34725a31774de9119d54c1094edee3f9', 25270), - (10216, '0x3bd4c721c1b547ea42f728b5a19eb6233803963e', 42420), - (10234, '0x175a8f0f6c09400b610e623b4fea30574f1270a4', 18270), - (10243, '0x8feafd5e0fcefdd2624906c0f913d563306aae17', 18600), - (9794, '0x1e341aa44c293d95d13d778492d417d1be4e63d5', 73945), - (9860, '0xa93f1fcd73939fb93423f5c3765a81f98bef6b04', 32852), - (9950, '0x35353e0ddd63fb8911a2136c80772c6f4cabe7bf', 29276), - (10138, '0xa623bc4550409c8af3773278604ff92940f50292', 70216), - (10180, '0xa10d058252ddc859c67558a36932eace1e9d4cdd', 0), - (9519, '0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e', 0), - (9564, '0xad6ea928fdd73a4766fbe6a07098038ba8c37bcf', 0), - (9896, '0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e', 0), - (9493, '0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03', 0), - (9803, '0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9', 0), - (10002, '0xeb2cedc37504e4e5f51a23675367e5e9b7e34129', 0), - (9458, '0x8c14eceddf6690ac34850383de2c88a9a6215488', 20880), - (9467, '0x4d5c7ef8ec16be15c601673a2f8583441a15b03d', 95200), - (9476, '0xaa247c5b4f6c25de5cf4f33d924d738a128dd246', 24960), - (9485, '0x91acadda620cb46bb55e55c4bcadf21f1723ad7a', 31600), - (9494, '0x3fe465902811769e3e8738cd162632e85dcbaa86', 169750), - (9520, '0x2e307ceab1b4c5f4cac508e3b13c3dbfe86a3c81', 20690), - (9529, '0x33e8320ef0be660855837620b3215d1f46c02df2', 55170), - (9547, '0x819cd272404761fcba43304e3e1ed3d84a4f5624', 10040), - (9556, '0x141e74a8b4ca2fb5aecac8827e4e7797f68d8692', 138790), - (9565, '0x47671c44c5acd02148f19a0c5a7440ee0b3b7bb3', 10650), - (9574, '0x91fff25a1f477dd7aa66be8b3531a656790cdfed', 10880), - (9583, '0x7f2c7a2dcd6ca1125a5565d686a4b0108585732b', 24320), - (9592, '0x10d90df273e8ff324c9551b72cdf389b02c205ee', 11450), - (9601, '0x64bf915d290bb2b19656becfc23b4acffbb70147', 30850), - (9610, '0x3d23866176207b18f176cbb7019ade2ef9f72d38', 33140), - (9619, '0xb9c29c4b549b6cdeb6079726c4ceca8309fcfa9f', 121170), - (9628, '0x1c2ca85254ee1a6ae3d85b9be010c2bbe8600a45', 22200), - (9637, '0x50379ddb64b77e990bc4a433c9337618c70d2c2a', 12810), - (9646, '0xe62d071ea99a63798fec7222c483c53e87f2a32e', 44560), - (9655, '0xcc9ecc161b29c82269cd92a5dc2d6ad88c7ff30b', 13750), - (9664, '0x7c5ad4bdf3c3fc735c823492d46228a8c0a0f81f', 17920), - (9673, '0x32802f989b4348a51dd0e61d23b78be1a0543469', 63110), - (9682, '0xf3c5cde46324867aa0a6d95765e83f829132d1b3', 15070), - (9691, '0x27a0024981bb6b2029e4192e6e7d5177fa74b809', 15230), - (9718, '0xe5d2f68665a8f8d21b6188d1e455f4e14db6a469', 15940), - (9723, '0xfec0ad833fb7d20a83e373279f37c88159bad99e', 41920), - (9729, '0xfb4eecef04f1d45ead80a7a471d60b38b14eaa9a', 21580), - (9733, '0xeb95ff72eab9e8d8fdb545fe15587accf410b42e', 46800), - (9741, '0xaa848e2e0074c468b1062d8551123243405b5f74', 18480), - (9750, '0x0e467a0288a439ba2678eb7d3b0b64b01e2bbbfc', 19080), - (9759, '0xc30caeab7e8dd28442e1f0812def5cc8a2a67215', 31020), - (9777, '0xa6bee3f99ee2b70672a34a983af0bbf79c028cd9', 2170), - (9795, '0x6904bfb4522e10038fc675552176b866027be939', 63540), - (11691, '0x9807ade3502ac84aa63e1629418ee4b72e8f75c0', 6376), - (9822, '0xd0cf40da82ecb3b2b2588cd90d3382b8b865256d', 6120), - (9840, '0xd10324ae1d56f87b6f1ae3b9e758fd17501c7237', 6530), - (9849, '0x9dab43bc15bd29cfe3030ca1b7edb3eeb9f3b6c1', 15790), - (9861, '0xca82a1eb5267547f3328f475eb555ff375d2f97e', 60700), - (9870, '0x35b0c686c6977e765e8eb15a6c5fc76bfef6ab9f', 11780), - (9879, '0x707c85d353f5b17669b99dd996a304c33540b2f3', 8200), - (9888, '0x5d7f5ca8e26c44e009ff378f9608c6e332b0239f', 8800), - (9897, '0x70400e1b9cf40151e5c76df8b7c95c87001f51fb', 14310), - (9906, '0xb243cf8523398da020b441b3ae67a0943bbc000b', 40600), - (9915, '0xe1859a4728f188f1166cf28d4f033fa61260cbba', 34560), - (9924, '0xb0f154bd171fe8bc01f8a0a4d004c702164741fb', 10530), - (9933, '0xa40361b0a09f6936182ad0d29ec827bb66bbf8bc', 10820), - (9942, '0x4cfd681d4d4652e4ee083bb638fdb49fe818a6cb', 13920), - (9951, '0xc7f2be6f8890d98277c848c8904ec2a4879dfc25', 14170), - (9969, '0x0f8d3248a3df3a6ffd486f79e5c283e37a75a6b5', 11480), - (9978, '0xf46d36a35eca074dac347bab4f70d969e8cbce59', 49790), - (9985, '0xea7498973aa783875b719415b664c2eec54c8926', 185820), - (9994, '0xd002e731b302286009abaafd5e05a9853f5f3002', 11730), - (10011, '0x59e915d482b20aa57c07bd682046eaef745621a1', 11870), - (10020, '0x694f19e114e9d9cfa7b5173dd26b52b9524fc6e4', 28700), - (10027, '0xd05de9ed8f8403af4d84679f1593114e1213d790', 58050), - (10066, '0x74c86ea3deb1b1ffe22a337eb61011039cf691e7', 15960), - (10075, '0x65fd21584232b1d5064301e20fa447937261781f', 93920), - (10093, '0x7f2049f69eabc4bd865fe8edf21cb8019cc7ec8f', 12860), - (10102, '0x5de82531a549397abb13eab55ad5602788a0d21c', 12970), - (10111, '0x8064d8e5bcf0e9986cc0febb25601a0c2a8524a4', 49020), - (10118, '0x6aa33d1f92f2b64db7be6d8190390091dc69c8ff', 13120), - (10126, '0x2e4851911aec9674f54616d92e856d8f8b725490', 73350), - (10139, '0x489d69939b4aca357f630055e351a81f1fbb7fb6', 75470), - (10148, '0xd57ba6ea927a041d2cd59d7cb751c13b15a3f94b', 13730), - (10157, '0x54cd3d4f63b263b5cdc8cadfee0f81539a6d1507', 43930), - (10165, '0x700e2cdeb777be3886ba58bd9aae619c53693844', 24600), - (10172, '0xee11a59fa705ae0a1d22fecdfa78a61f6a4bf9f3', 21120), - (10181, '0x5b3cec6a5e219674d4485be572cd3faae338bfc6', 28040), - (10190, '0xd4938ab7c2157331a2237040c26a683bf783181b', 17580), - (10208, '0x79ca223f6d58910a6ca96fd55156f9771c635af5', 18010), - (10217, '0x83cbb71271457d450e70d61a1f12b5e39618db0f', 76230), - (10226, '0xbe3c2967098cb72ba828a52540a120c2cd1c5248', 14350), - (10235, '0x50a34f434455f06bb1933beb2766a127f27a7b97', 18270), - (9813, '0x4e16c6d4ab2648b18f921ecf5ee2a8c2eba78f31', 75488), - (9786, '0xc0007d6dcd1e5d8517409a4c61f278c6798807c8', 383657), - (9512, '0xe0215f79e1d1097e20cc06c776fcc0ef4f164239', 0), - (9503, '0xe3b4cc230ee89ed895e3f07c5518ea027dff7a5b', 35556), - (10057, '0xe7eddaa6bd37849a8a39cd963b1da137032c9146', 18826), - (9700, '0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2', 0), - (9709, '0xaac60c858895befaf42378467bc9f3bd69c5efae', 0), - (9960, '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 0), - (10084, '0x01bdd23448f53594bcb8163055155194177c0fe2', 0), - (9831, '0xb2ffa393f0b4072081eb2738eb8340bf877bae38', 0), - (9538, '0x04c8bec8a375e33e9a0f8b0050e7c0eb3f2ab887', 0), - (10036, '0xb68a6a83cfca2e7fde2aa5749b85e753f55d58cd', 0), - (10003, '0x90a7989ef0369e9a57c599e88338878335cda715', 0), - (10199, '0x0e3e543eb22461c28c92c8987b0d23d79e24a2f3', 0), - (10052, '0x8f8202209fcc3ef9cf697ddd0b8fa06b06d844ea', 0), - (9462, '0xac379456191ec7a658337c278b13d22b3ee2062e', 0), - (9471, '0xf16055e5e0a9f2c07215f8a6931dc1bd1d6ccad8', 36220), - (9498, '0xb107fb1a8504d6a2b6fc2385dd701eee7d56c3fe', 6540), - (9507, '0x806907bb4cfa34fe290b2fb3e84bcd6a9c21f068', 17850), - (9516, '0xc799cc1e009ac2beb510a8d685f385ac4d693fed', 30790), - (9524, '0xf460c596f231b928e67be3cf5c6d06795346d047', 11070), - (9533, '0xaeb2707eda1e201cb13aa80b915bc3979d7e33a0', 12160), - (9551, '0xe59038e8345c2b801ae7d5ffe7c320ff6030f6e2', 58390), - (9569, '0x3a9f6078b016e4bba717471f1329304743c2d286', 10680), - (9578, '0x0f320368104adc3cb64b2a7be83bf0a549e12b03', 16910), - (9587, '0x8b6be0435a9c364332abe7f3eb0043098b32fca0', 20300), - (9596, '0x882cf5711d1062c3439b52e7cb532e15ccdcae92', 39990), - (9605, '0x923dee1d701eb1cac2d122824d1272241a642ffc', 56940), - (9614, '0xbbf0c5f9e1c8385fba7894a54bed4a9363d28b8b', 12100), - (9623, '0xdbc2dc13707e93e9c6453b3ad92bdb3cc9541599', 15680), - (9650, '0xb71b50ed3cd27588888ab40062d11be71f19088e', 13360), - (9659, '0xfee22e2ce7808ba88e5dbee52388e6f4a2eb0f42', 95160), - (9668, '0xa3268edfd84415472d9c30ecdeba487f865ee063', 530190), - (9686, '0x4e1cfa8c6e0d4a681cdb362027c61e650d2aaac0', 34450), - (9695, '0x83266a9d89bf57897e9f66253d415028b1751c00', 40590), - (9704, '0x73ccca7296dfedb88bfd68ceda833d8d79abb35f', 39410), - (9713, '0x656e08efe4fb1433781ffdca8411458ffd8575c1', 28400), - (9727, '0x3c0dc362a2724bc576d66dd1ad150dc107a274f1', 25900), - (9732, '0x961aa96febee5465149a0787b03bfa14d8e9033f', 17330), - (9734, '0x7ce0448b0fafab6cace981fffa967cf380a2cc33', 31160), - (9743, '0x79d31bfca5fda7a4f15b36763d2e44c99d811a6c', 23770), - (9752, '0x1b8c37f2ec2619a22a701063de9accc2378e0a6f', 62780), - (9761, '0xae66ecab11d3678ec09bb1a2c560cb609bae50a4', 20270), - (9770, '0x12ed17d0061c89362a1fd0ba9aa960d68b97bd79', 0), - (9797, '0x81d6ad16457a01f6e69224392d962bf959187daa', 18140), - (11692, '0xcee0556c4846b8c49b63d822b8731127860f5d68', 6376), - (9815, '0xed4a59031e82296ed0ce0e3e1bf0020a5570150d', 4560), - (9842, '0x380ff90d682856787d4cc6edabe9308731bb036b', 78070), - (9851, '0x9096c8f6a748e068e7a7895f6ef01c793327b8e9', 46190), - (9862, '0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683', 57130), - (9871, '0xca543e72e8b2e01fcb82931a0c973ded33bebb4d', 33260), - (9889, '0x135c21b2da426760718e39da954974c4572ae9f6', 54730), - (9898, '0xa420f0cf45f674bf8b5aff244acf6aa4d8b8fa8a', 39320), - (9907, '0x3d88a50757c7a424a82bf2e387a0cd94266e2a82', 189560), - (9925, '0x5a1f80a41430f23954cb3e34b4b92a2121cf0e71', 10560), - (9934, '0xbb2d154ccb7f720d786b63ff03cd188b881e809c', 19350), - (9943, '0x2a9ccf2ef3b42216c1aa6b78154561c84b6dd8bb', 30540), - (9961, '0x2270a4ca23614ece42905045b1ff2cb2a396c4ff', 14330), - (9970, '0x6854fffa71a4ae49df700d087d377a297c595386', 86440), - (9986, '0xef13b0272700ca22c57e055f0d2ad40d6c78155e', 17850), - (9995, '0xf4cc8a6a89cefdbdb515eab3ac7d76c7f32bd61b', 11730), - (10004, '0x80ffe32c46d21203bbca11f2c1e4ae842c760793', 23960), - (10012, '0x1a4850eb7e1b7cb28a4f42d44c26ef2b64333d13', 11880), - (10021, '0xee2c2018ea41b7bf2f95e4cc4ccd65d98f6945e0', 35430), - (10028, '0x5aaefad7e30e262aff4588f1996c4f921c6fcecf', 15270), - (10037, '0xc5d2d45605e22bd7946128af919284a8bc8d8e34', 15560), - (10058, '0xc49402372fb38f88c101a5b7dcfcd75c86c156e0', 12460), - (10067, '0x68929570ee8a4da4fc7634340d0d92585b2aa313', 12550), - (10076, '0x2bdaf977f02001cadeed3479f946cf1d13b09a60', 12620), - (10085, '0xe908c2d5613d24d49e376f19715c795db8e04f81', 23160), - (10094, '0xbef65bf144bdea1667a74f14ad552c751ad4c056', 57020), - (10103, '0x67cb3c3795d44684501bfd37b1940ceb925029c9', 12970), - (10112, '0x216222ec646e764da7995ed3c02848568072cb58', 13020), - (10140, '0xbadf9239aa521c19b633d0ca27ea3ed6728452b8', 35110), - (10149, '0xd4ef5f0c4ab9e703f83e5e123c77b4f6ce649ce4', 40770), - (10158, '0xe679d21696f2d833e1d92cf44f88a78e796756a3', 36730), - (10166, '0x5c23ed6da75a583b579459e744f05a65cb51d8fd', 13770), - (10173, '0x09e2d1187cb076649af1652eed9b68035dd601d4', 21120), - (10182, '0x42bc42766e797183e12112c835779a289cd1a1fd', 41170), - (10191, '0xdcaa3ba2bfde048f2fef2354a37786dd4d836a40', 37890), - (10200, '0x3c9b4a00e162a62e97a8610455490966a4eaacf5', 71940), - (10209, '0x389014ba96e054c86a22b94b03ce66584841c9e0', 40190), - (10218, '0xfc8b28dad42a6b2a51e33f770baf332ebe9866e6', 42550), - (10227, '0x9869fdc1f1893967847f5177faf242e3a90361f6', 29180), - (10236, '0x785c458bc4de86fa2c8e4eeb82ffe03884b23fee', 14360), - (10245, '0xba3c811f60004e8d2338a3cfbe45a3537eaea098', 14790), - (10254, '0xdf24bf4366f053ae1bb4d1a1200051e590d3b328', 26690), - (9542, '0x2cb5ae51861a4a6e8568b527cafc3891317ac94d', 0), - (9632, '0xc17547cac2e3275b95730c3ca385ac47a6698c02', 0), - (10127, '0xa331a2847bc04dc6bd60793c1c76d2324fb5a30b', 59816), - (9788, '0xca4768de9504cf8a0efa103122a8b26e921e91d6', 8396), - (9677, '0xe9dadd9ded105d67e6cb7aadc48be0c2d45df652', 21206), - (9641, '0xef6ed906193f25023df03e8e32591ee119418b19', 0), - (9833, '0xab14023979a34b4abb17abd099a1de1dc452011a', 0), - (9952, '0x04a5e8c4a44780d115adda776b04bcf1c4f3254e', 0), - (10119, '0xca9a3c13994699a4efc928a030a3e2326d4c5909', 0), - (9824, '0xb408a9ee6332477b143c8cfe6c2c8899849a2edf', 0), - (9916, '0x7e8608f5893a6a57602a014ab190f7af8069d1e1', 0), - (9880, '0xd35d60b1746caec2289c892eac7351d66d63455b', 0), - (9480, '0x54de7bed1ea5fb7f48a82f4983f19c7a01927569', 0), - (9560, '0xf6910d47fbb1f5518d60c721d4189936ecd5a1b6', 0), - (9489, '0x3af09cf05d346a0945c05ff8baa8ce474e2f044d', 0), - (9779, '0xda469a6c78d12996895721fceba62e510b38faf3', 0), - (9463, '0x0e35b828026f010a291c1dc0939427b2963d8d5a', 0), - (9472, '0xd75fc168677e3947a699daf2dc16b13d85b08194', 2290), - (9481, '0x0912d9701109f8ee3f948c60d6ad491c351227dd', 6430), - (9490, '0xec7d159eec6eb5d555ce985af99cb939ded2609e', 9480), - (9499, '0xd3c85ff58467a970fc3a3b9996343f3f4ddad4c5', 16210), - (9508, '0x2e52ec36463819d79f74ec0311fa65ba7a5138ef', 44580), - (9517, '0xe30c3ba6f2575c30878608aafbcb7eae107f7d99', 32930), - (9525, '0xa4754f9746bb74dbcf1f811e038af5e11802ede9', 19270), - (9543, '0x90c6577fb57edf1921ae3f7f45df7a31e46b9155', 9920), - (9552, '0xcc9b3f50d1befda707ff0b1a808e4e1f1aa15eb4', 29730), - (9561, '0xbda96bf910fd8b3731ce567a78ad3eb439efe54c', 33540), - (9570, '0x176ca8c7f0d201674f7e2ffa34bd8e4af7e3b880', 16420), - (9579, '0x9387b5a08d050427f74cc9949d811eb6eaee1090', 17070), - (9588, '0x848b5746188a884381c9c76bbf6f620155c1f1a3', 11370), - (9597, '0x75dc757da6c46fe5514c210f354b849cad6018b9', 11740), - (9606, '0xb387175b8b9ec0534407cafc2919e17ad89260ce', 26100), - (9615, '0x3dbe365ad85a82bbc27570799fe1612e6a55de1f', 21630), - (9624, '0x229c6967ad9e600db2ac26cbab6462889561aac8', 32240), - (9633, '0x73954a7081ae0be4a0b1d3bdea98666ea8aa0ba8', 12630), - (9642, '0xc9706e271241d24dcb1b41119b4096b8116c662a', 79860), - (9651, '0x518201899e316bf98c957c73e1326b77672fe52b', 47580), - (9660, '0xd7ea5a42b69e7f955c5236841827260d8ad81567', 17710), - (9669, '0x4ebee6ba2771c19adf9af348985bcf06d3270d42', 50830), - (9678, '0xf5819cc26f0481c9b86294b4c24027518a04bd5b', 28970), - (9687, '0x538133dfb879083eb576c3941fbce4661a562b31', 27150), - (9696, '0x1ba289312956e4925dd70a756a0e9c379576c21e', 28170), - (9705, '0x14076efc88ca7d53594500261ada8185033e6d5b', 40720), - (9714, '0xa49dcfd59f39dfada7eb11f60f173187b5401a06', 20240), - (9721, '0xe28f1895b2c820b3b7b23c95b234dd99f17e815d', 24470), - (9728, '0xd7892946e755d5acf074895d89a351269844ba89', 21510), - (9740, '0x9e0e9d25a5ed9bc773f91691f0b45599255257b1', 34930), - (9751, '0xe41f56122d44f63c4492096d54d8be96d600bb06', 19390), - (9760, '0x82ab5c63a074f4e0b3777610ed32d99e24466832', 58820), - (9769, '0x550273c395e4914e38f131ebeb0cb49da44a6257', 0), - (11693, '0x8c0ff32f585506101e16aa788aaae45b8de67e2c', 6376), - (9787, '0xad8f8d9a0738ef1103e7e05f7f5a61c05b51345c', 11310), - (9796, '0x0717604b3b44b661408e187cb11f3dc313480621', 117030), - (9805, '0x83de53dec1ba4c9a3d3d9ed723c55dd2f9356c06', 5250), - (9814, '0xe14ca0632c5430abddd40ba077da5fba8821a950', 11420), - (9832, '0xa7e6cc1b23dcb615f7abf18cbaa4e0e74a0f1784', 19280), - (9841, '0x543853fa91439f0ac1b746beaa1a12c780fd31f0', 8550), - (9850, '0x64ab7581a68036ccfe0e8fb800d3da79f4660e9a', 77490), - (10253, '0x7fdd26b919b651054f475e2c995720808b4cb6d7', 26690), - (10262, '0x9fc43848fafa3b4aeb386434d008552f1c06f9cb', 15140), - (10280, '0xe3293a736d2bbe183f5c0a90cdb0fe0518f8834e', 19830), - (10289, '0x3e4ebcf6bce774f89aba83fc03593d083cb2daa4', 15630), - (10298, '0x9da6b5ad2fc347d4bf0a6e21bc69b7f5987a9153', 83760), - (10307, '0x1d2e44dede73dcf080104ec0839a70da14641762', 43490), - (10316, '0xfc0f8f25433d16bf368fc6bc5b57c7a999969176', 15870), - (10325, '0x97298c5fed03ac58a36b9ba66883827a24d19328', 15880), - (10334, '0x049c35342229879c8ddcc54c7ad743b1d823ae74', 15880), - (10343, '0xae61c013669b332b418e6ed1d6879e42f526a8e1', 15880), - (10352, '0x8850b50a08001cc05766632bcb71c67b676b965e', 15890), - (10361, '0x67d98757ccbdb90dfa78e695e761b48f1e3f01e4', 20220), - (10388, '0x41aabe72f28ba6d01165325231765468f52a4b23', 28400), - (10397, '0x81b6c6684795dfc86415a31a0e9c19a53ea5b270', 43560), - (10406, '0x882d233522ee77024f24782e7ca9a249fdb5371e', 39880), - (10415, '0x8f6667f108fb2c1ced63db71e9d6b5d1cb46f782', 50750), - (10424, '0xbb7f4698090eefbdee7b5c31d70ce1860408fcee', 20220), - (10442, '0x68dbfb911bd63934df57ad615804711ec2bbdafe', 28400), - (10451, '0x11d4da564a92569a44a70b50fc281171d00cb7f8', 28400), - (10460, '0xab1ab409cd23880c4999fa5f4f24925540a58926', 15890), - (10469, '0x117e95408ed74042e07d8f80852eed450d67fb58', 24380), - (10476, '0xb927ea4693cbe9d2d2a8418072efccf387bfaded', 15890), - (10485, '0xe455946a95c1f6d03a6f9dbadded915e81539e5d', 24380), - (10494, '0xcda25edcee831746c3198525242ff8978c936715', 28400), - (10501, '0xa02549cd0b2ed268dab4b1d8e98bb6f4a076262b', 24380), - (10510, '0x46e03381c571fe29b58b11e5d0ca2ae6b6a5ca1e', 15890), - (10519, '0x09facac21784a59a76a0f44ba650214191d8873a', 32320), - (10528, '0xa2f2624c1592fb3542351d34413ebcea679ed744', 20220), - (10541, '0x05d89702ad4b1c8b816e658ec40b148342c614d4', 20220), - (10548, '0xcb7b3e6998ee23f038836d846350e26e7b82c4e0', 32320), - (10553, '0xbdb72ebda57b0c955046b848079780c50d0ac663', 30370), - (10556, '0x015956dddf8ad52bfa9bbecb6ff6a2b55fe0c8df', 24380), - (10565, '0x41ad6401f95b1e4b7785f51118eb24ef23da71d9', 50760), - (10569, '0x89b4f3698a3998ce367358388d2d64d72eb351f1', 43570), - (10574, '0xf6eca0fc9fa885e125e8c708b3be2296f029c78e', 20220), - (10578, '0xef94d7a7606aeda08477eb87b6ef0e3d19d68d9b', 15890), - (10583, '0x1f9ae500d4b91fe4eaada6e2610a8f416235379c', 15890), - (10587, '0xf6bacfa5bb84429aeddacf6860f69274e3c11832', 24380), - (9823, '0x0040daac32d83c78546ae36da42a496b28ab09e1', 61856), - (10271, '0x83bbe9cfcc205bb8e53cba0b51d6db9386ce58b5', 54206), - (10370, '0x789fdf1b59958f877686ab409eeec601a47ba96d', 26596), - (10433, '0xdb90edc1373a7168c596bf86b662d361cec1a148', 40616), - (10379, '0xaaa8450a8fb296b21f4ebe27598b40a750fe3ad5', 42506), - (9534, '0x33fc2be5563e3c02a3e127f01bbd71db472aa613', 398916), - (10244, '0xf5709071a0ae5c03d03e90ca9da5b82956354cbc', 0), - (10544, '0x0eeca95c58919b1b96bb1cde61a99f9d7571def6', 0), - (9464, '0x909957dcc1b114fe262f4779e6aed4d034d96b0f', 0), - (9482, '0x9593d27a94238403e347a290d95c4f4afedf6170', 4130), - (9491, '0x264db049d0cfa73fb334cb605dc8c2843c1edf95', 45960), - (9500, '0x6ae5107e26548d58c321f4bf2f77740d53f797fc', 14690), - (9509, '0xbcdd963490164b70e5dbda7dca8d6e96077878b8', 33610), - (9518, '0x0c55e7d45f53b6999732a75917df6eb711e58674', 8320), - (9526, '0x738f268aa2d339787ccc403d2b8ce3ae3bcad09e', 41380), - (9535, '0xf1c1c9970ce969d679372341cf6a08d743c35ae4', 25880), - (9544, '0xb5d20ebec6f9e4bbf091d490687b354ae3509731', 9950), - (9553, '0x40306af1b8ca18bae88b0c35c8f0b2d06e62d742', 10240), - (9562, '0x1e3d70175ab98d4d5ca172e32073ede4705d5f73', 16220), - (9571, '0xdd45b8f345768db3342d17d267fb18e76fae1e32', 83830), - (9580, '0xa1f6e10205bd31c4d8ea4f2c036cd8d7a732385f', 11160), - (9589, '0x7fc1ef595295deb66763097ffa6e7240cdf8573f', 23210), - (9598, '0x6ca8721a2e4a1570b13e0ff150e16fc507f2f8ac', 29710), - (9607, '0x5af1dce6867f6d421e0ea3639d1a88ed9622adc7', 18370), - (9616, '0xeae3406c682d35cda8c3c817f51d17f32a0de8fd', 12140), - (9625, '0x5c21829e27132a66eedc93d4dbb2a7dfdfd87ef4', 15740), - (9634, '0x98ca6baf2eb6715f00c8f7453da8c81757311dd4', 16180), - (9643, '0x889a586bc7e6756c0a1273fbe47425043a73cdab', 16480), - (9652, '0x34ed10ce017342c1d0401ee6b59a187634b7993d', 26190), - (9661, '0x524ce8d03ebdaa4877fcf6451f79b23cdada314e', 21380), - (9670, '0x57338a8b97766e785fbbf5c85c1f56ef7d3ea525', 28360), - (9679, '0x8f09cab21e32219618ce302fc60abb9f4dfbb86d', 31270), - (9688, '0x8b6512b87644cb68a94c7bcaaf4d62331be6cc47', 52360), - (9697, '0xb8b31cbcee619583045c0b80f76f9610d7d67f6b', 28560), - (9706, '0xdd1256d5c133f21be2a7c981fc83c8cb0f66e286', 15740), - (9715, '0xb584fdd98496fa7c49e57de700829d1035d4cda8', 20240), - (9735, '0xe1efd0284b2e12d261466d51f421f2d1e930e121', 22330), - (9742, '0x99fba19112f221d0b44c9c22241f5e6b2db715f6', 18550), - (9753, '0x830ba1078a698c0e318bdff86d1c6a2ffa7c3b0e', 24700), - (9762, '0xee96703614ea707b0b99ecb55da74c04ff70f2ed', 20300), - (9771, '0xd609871aca0e3e41fbe69dc2dbac66b0b0b5c3fc', 22920), - (9780, '0x512b55b00d744fc2edb8474f223a7498c3e5a7ce', 546300), - (9798, '0x2bbcac12706b47428664d553af33caf33684ef31', 25620), - (9816, '0x27146cd533760e0867db2647dad531fde92d80ef', 4570), - (9825, '0x622694e8a7b9d2d3f12d2614f151a500b8de49f9', 77620), - (9834, '0x90866dd1e733af642d56938dc6998670d8cbf183', 24710), - (9843, '0x36c7b7f5a4896684fad6fc71e08746952a369405', 47560), - (9852, '0x91d708962d843011d580163894553d4fe7415890', 24300), - (10252, '0x767a60f295aedd958932088f9cd6a4951d8739b6', 14900), - (10270, '0x8aff4b03df234b1c95f4798e6b382eb3fa63a85a', 23540), - (10279, '0xe8bbe391340e0a3bf1ac13166c41266b65598ce9', 15560), - (10288, '0x4b44f85d6bb71482995105962fd073742c94107e', 29890), - (10297, '0x66dc472b5befadc076688618fc22159be31fc946', 20080), - (10306, '0xd35e9c9e947db6820d4b198987b52aa13fe5d49e', 15840), - (10315, '0x9fcb9053cc81848698405a4e4f679395ada4d1c2', 15860), - (10324, '0x55fac0c661bae80e2c4e40f2edba1f83160adf2a', 28370), - (10333, '0x6f98983f93bc84159cd4f1cc3a44768c6ff257f7', 20210), - (10342, '0x376b8f6a3c30e44c071e6e4630e8d46fbc0fd039', 15880), - (10351, '0xbbf61308d129ee97578dce421a60f49354f0f4dd', 58970), - (10360, '0x1f2dad880e69c21b0ae17a6c33865e747aa7361e', 20220), - (10369, '0x182900d3b723064c496c2738e0a3d3f15e685356', 32310), - (10378, '0x9bc4fce57605bcd9ffcf5a4e21c0daca23f556b6', 20220), - (10387, '0x47d2b6d9c730a36e25b412d206ac696b02c60ea7', 28400), - (10396, '0x6ee87e8e4028b9f6c82f0e0be03101a94a70da17', 15890), - (10405, '0xb240dbae79aef8001e547c265097141ff82cfd7e', 28400), - (10414, '0xac703e0f9b4cf7dbd3f8dbf8218893d1b78c8716', 24380), - (10423, '0x5646f836f8d58cc056b5488f64dce9e8743ee1d1', 36140), - (10432, '0xca677b6f4213b53c7bc4303799441268b1b1d8ab', 79490), - (10441, '0x3d9456ad6463a77bd77123cb4836e463030bfab4', 15890), - (10450, '0x38e12ba7d646b402a2f966c6f8f74bdae648b3d3', 15890), - (10459, '0x1a488a9c4282a05e6d7594e598fb879aa8013690', 20220), - (10468, '0x54677b8743048fcd56e6d472cbb6945ddd5c639e', 15890), - (10484, '0x1671241d7d07df64beaf5c5c1261d58261321b6f', 20220), - (10493, '0xd9079476ef0ef06da14c1bf37b52a717163f09ce', 15890), - (10509, '0x10d69e040469ae4a64954b6634876eecffbf2861', 20220), - (10518, '0x973ce57f39dc086f976f83f2b2291af5590ec848', 24380), - (10527, '0x995088830ea572c64781547a4bb74d746ee3f631', 24380), - (11694, '0x4fde283b56af86e07d7a0c5d764864784116c7d3', 6376), - (10552, '0xb34247a2ff891caec36375d0e58f95f8d9bf38d6', 24380), - (10572, '0xdbe78dec8de11aa9b12c05996bdd1f6d0db39e3f', 15890), - (10573, '0x6e6e3ac4aba720ab576d0f16042a16d6d9b78886', 93860), - (10581, '0x98aca77579258b505e5a86ac036cc6e2253d6a26', 24380), - (10582, '0x3f672edc467eb0062d3c3923abe1a599e53795f6', 15890), - (10590, '0xee6cbc6e1843484acf219649e5e5ce56730565ba', 15890), - (10591, '0x1d5ca1ebc28411db02b8a28eed57615122c2331b', 20230), - (10598, '0x78c73d193600218e15ae4abf66b21482455244f9', 32320), - (10606, '0x183c4659f696f7165180aa982fc61d1d5cd5e49c', 61870), - (10607, '0xeaed347bb78bc731c13c6ba4c134f4d84ce24e4a', 15890), - (9473, '0x15878850971770adb4d13aaa6ac5f8e7d5927a09', 0), - (10475, '0xbaabc5d42a3cccae1aa34306a28861d55593c78b', 38696), - (10500, '0x2eb9130badc954bdd50a246f432ea228f16450bd', 26596), - (10261, '0x2592e904f21ce308249a8ffb25e82e35c69de163', 0), - (9730, '0xd4c1f5f3d12373dcd9fd52dea6aba0d8461a3245', 0), - (10559, '0x0c1d47312bb5212cb8b946ec30660d1fa98ab6cf', 0), - (9789, '0xbb1c043ceb7745b286987b4cc8359c5b508f0307', 0), - (9807, '0x342a3002fe7b0424a1559f8ef0f0c29788cecdb2', 0), - (9465, '0x87af71ffa2051dc58bbc2da8fdacbc036b701788', 0), - (9474, '0xc0d8b12f63e032e66693593549f571dec6f21267', 14780), - (9483, '0x5247299421a3ff724c41582e5a44c6551d135fd3', 411760), - (9492, '0xaa466103793319fc3d6c7420d77e6e7cf586c877', 239930), - (9510, '0x36deec2038dbe61944d9f69724cf882a7f6817fb', 9550), - (9527, '0x0135f337ab4b35b3006eaec61fe7779f270f5b3b', 16280), - (9545, '0xb6efe8d82450a56270a4fc18093d4a5aa8e502db', 44190), - (9554, '0x2744f7e9a65c870355770751ece07923bf2f7254', 15790), - (9563, '0x3e7158b55e68186b044d6960d9a56d99296aa8a1', 18960), - (9590, '0xc2dce531ffa333304ed3e092accbe78aa00f76ee', 39030), - (9599, '0xd611f785a6f78e2f648a6de44c24cec19f47265d', 35110), - (9608, '0x1fe3b49614326c8880f309e236039003849db801', 18430), - (9617, '0x6ba69f60f3ba8191adce6a031ac83e59f05d1637', 15480), - (9626, '0x712a03ae051841074bd3bbd906b736548569ff6f', 58210), - (9635, '0x8ebe8b747cab6d473483aa3889870cf31c05d1c6', 25870), - (9653, '0xd91c8fe4ce51e400cee8a4ad49b774e7f2668200', 17450), - (9662, '0x11142e97271d26febef714a117fea7d279f77378', 17750), - (9671, '0xf02ff9828480d93b79cf5018efd1419cef4a2780', 76600), - (9680, '0x17d70162a85dfde9b48921054b242e452f09a667', 22960), - (9689, '0xbf0d78ebe5e2c5a8ed9dbe42d539f5e8ea115d61', 38100), - (9698, '0x5b0d89d609780a7890de1a300ba1184edf58929d', 23900), - (9707, '0x8760e565273b47195f76a22455ce0b68a11af5b5', 15740), - (9716, '0x1b73dc0bfa7e095a9bcb71bc6f3e95242c76c0e1', 28460), - (9736, '0x91031dcfdea024b4d51e775486111d2b2a715871', 98450), - (9746, '0x3dedb545e9b89f63fa71ab75497735d802c9d26f', 62710), - (9755, '0x47b48e52627910761b93181f3441251b90382338', 19880), - (9764, '0xaa451dcc2b100d9bc1d6bd0b482b0904f679a3cf', 26220), - (9773, '0xd75337cc91170415a8f51600eab50609c7fc3baa', 97620), - (9791, '0xdc7e36f806012252c7a88e7c8f00802be46453df', 2450), - (9809, '0x0c1ed0f872d8e3aee104ade99b21d301df03aa17', 4370), - (9827, '0xf005bc919b57dc1a95070a614c0d51a2897d11ff', 121770), - (9836, '0xbf88e9e0f0bd3e0f1a76d02a573512e63b26299c', 32610), - (10263, '0x3c0afeb79614097f45d699c7a5458ecf722cbc1a', 15160), - (10272, '0x81ba93b26bce8ca5d649b6607df15e6d45462d8f', 27510), - (10281, '0xea990ae72939b8751cb680919c6b64a05b8e1451', 32690), - (10290, '0x30c28d7f9d5747dedee39eccb9e3376457daa3b1', 34430), - (10317, '0xb3727bda528870d20ceda89e6ba903ce9ed1da1d', 36090), - (10326, '0xa858ea02845071dbe09b4b5c3bbea49529beaadb', 39850), - (10335, '0xc9f3e89d4336ee2eb8003ab156127e28e442e9e6', 28380), - (10344, '0xda896b4f6fa4e39b771971328ef485e427b30168', 15880), - (10353, '0x8aa282d80cbba3f36a8fea665bcf9d23a7284656', 47170), - (10362, '0x864e798a47c97ef1513b79c2f5b5af9427130390', 15890), - (10371, '0x2957243e9fef66b5d6f713d2194568183b6f1440', 20220), - (10380, '0x1bf2f0ddba5a361d6a95de86ecddfc49515f70cc', 51640), - (10389, '0x096040399da28f20ec5d9dab083b0641f89a603b', 47180), - (10398, '0x760206bea1605394eecc2488952ca09e10ac3bc1', 20220), - (10407, '0x6ba6105176ef8861138b12aba61cdc16f0277f4b', 43560), - (10416, '0xcc82847315e39d179d339fc68b448d05812ccaad', 15890), - (10425, '0x49b2ee0e961b64b185ff0c9c0f9f70eaa8df9366', 20220), - (10434, '0xeb2e886d6f5c8fe3241fa1abdb2167fa0afdb659', 28400), - (10443, '0x92f71207bb94d0d69d8bcf9d31755112a734be0a', 15890), - (10452, '0x798111bb6ac7ca09d20dd108bf8abad37c6683a5', 24380), - (10461, '0xcf588e1b8ecd960c015cb19f0a5a3a81e3dd1f92', 15890), - (10486, '0x7ce276ae41430214cae9cf1ed363c8750ec3ff37', 24380), - (10495, '0x9d68e88aaf9ee8b9d18335e8b29b0b45decfe34d', 54280), - (10502, '0x3119ad3fbfd5f645117ba718e55f6cc9eefc363f', 24380), - (10511, '0xccf5f5c388c546f25580e47e3365286f0bc5d65d', 20220), - (10520, '0x88ab2a073a5b90839347161ebd4396d9e23cebfb', 28400), - (10529, '0x801e408c7928c02a340a143766fbef92576fd720', 20220), - (10538, '0x70ca07279dd9d26b5768ef92b55e652fc9e9e7a7', 28400), - (10545, '0xf29369b21ca2f5f9b8183b93d18b7aaa78966bb1', 36140), - (10554, '0xbc943f7a2d8a397edbb29cc0615699c38d30c9b0', 15890), - (10566, '0x100458d8c8c943a11b84689ea885a97d8ea9fe2c', 15890), - (10575, '0xcff81aa6f77be0e0dc154dc409707534f11524ac', 66140), - (10577, '0x1668da8d5401c3741b1bc8b6d4b0dbe29d4421a3', 20220), - (10584, '0x625bb93a5a4d0873738a0de27d6405360fde2554', 20230), - (10586, '0x16034ea10d6b5e6ab9ef966e3eb7d1fc90b923e8', 15890), - (10593, '0x671b55da86e55845b3ea6698ed97eb5875c63646', 20230), - (10600, '0x03a069e2b11e4094a068498bd06c9cd94a61ada7', 15890), - (10602, '0x3cc56ba84ffbca5c89442d172739c666b3a8fdb4', 20230), - (10609, '0xede0c4c760413481aee9d4e016f216a5f682b252', 15890), - (10611, '0x69aa2524a2e36900fa41f705a7ae350bfa3edfb2', 77860), - (10616, '0xf008de03a1a6647b53c9ec0c71376da5bca687c9', 32320), - (10618, '0x9a2d9ccb17d404ab78fc3fac3ba85e42db518213', 15890), - (10620, '0x34081c0fb0560787e8dd886a7203fda9ce6459d0', 24380), - (10625, '0xb42b0b1d0f3946b96ed9c741f7ef71dae767541b', 24380), - (10477, '0x0f01506e404cf76140a1ce092442834e6294327d', 46266), - (9818, '0xeb0b24f85675204b8f33cf022ef2664f0df5a519', 52366), - (10595, '0xaa7f9ca22dd4072599699fcfe98d3f998be33643', 22266), - (9782, '0x94734e11b78680a35b0a86ba3ce634d334d6d2a7', 0), - (9644, '0xcd879d4bc804ade51f73b5fd16b5005487c4fdc2', 0), - (10308, '0x49a176d46c6b87292008ab9eb6f033e791552b73', 0), - (9572, '0x4e9875febf00122ce929b36c6698fcf850512a02', 0), - (9800, '0x921fc6cf9334a6248d6b9f460aa32c5914778f82', 0), - (9845, '0xae948f39dce7c0ccfcfba21bfb07ed4f8f943cdc', 0), - (9501, '0xa90f4ad35bfa1de7bc5de1cc91b33b9efb7df6e0', 0), - (9581, '0xd5844c4157a8c4f3c113328c5e24d510b4b31be6', 0), - (9536, '0xc7a3f400cdde42cf52f240e46ae83d59f3df1303', 0), - (9585, '0x1dcb5d8c40af2aebc484b994f36b7af9a53196f9', 31420), - (9594, '0x0ca782145d3c16d31b20c3e6e46dcb42256df282', 26320), - (9603, '0x9c94aaff71e4a58cd9fb5be2005b8dc952c4c2e3', 32300), - (9612, '0x10780583999f7562df3c115266f48a699f0559ee', 12100), - (9621, '0x3626d9b3ae91a199262556e37aa30b79865fe03d', 12250), - (9630, '0x86452386e423ea60953931121d8833db0ce09974', 12490), - (9639, '0xeac369f0502a5fbde7e3580001040be795386692', 12840), - (9648, '0x143ba89f42f0db0e2bb7f97dcfcc793049828d7c', 13260), - (9657, '0xc8e86483958bc056f10f7d9fe41b1f6d8c79aede', 17590), - (9666, '0xce4eb76664210426e900c20d4a3741a6b0f64855', 325660), - (9684, '0x9d62f5bbb3b3d138a7acc666108cfbbd67dbda2a', 19250), - (11695, '0x786b3de42315067058ed7c6a57c765e3482bea77', 6376), - (9711, '0x2ac7ef06bf76b4d027274e683445393f386c05d5', 63630), - (9737, '0x72e1638bd8cd371bfb04cf665b749a0e4ae38324', 17680), - (9738, '0xebcaac47e92207cda75dd53c234815279ded5f5c', 27350), - (9745, '0xe34d5df6425d5a9fdff463a91eeeb4172d672c76', 35940), - (9754, '0x9a68f7d67275e0feffb4a714c2db8ba248f53595', 19420), - (9763, '0xdb8803703d4d2abf4328011b551a27adc0cc5dde', 36850), - (9772, '0xe8d0492bdca82bb0b4104e04affb709536c85e87', 59580), - (9781, '0x161526454b5fd61a99bdfc4cf05fd4b2cddeaa68', 430), - (9790, '0xb65277f81378438109f6606e174c033d27b1dc33', 2240), - (9799, '0xae5985ec1dbe9e4b51424dfca30c031396faa175', 4600), - (9808, '0x2ae7ac4d95e1bfe1172fae1c8efe9097119216cf', 19560), - (9817, '0x0cba4451837a60dddde3823b46be746fb9842d64', 10750), - (9835, '0xd15ad24623fecef20832c58c162740756790c615', 54530), - (9844, '0xb10073db0f792f37d56b4eebf80480dbd957b872', 109930), - (10312, '0x388a10ddac18cdd49d5016e3e15daa3e4199107e', 28380), - (10321, '0xd34b87e3b1bfc828f2f9639a9bdc9ea218348845', 15870), - (10348, '0x8934289ab2dc5c934350a39d874bbb0eaa340019', 15890), - (10357, '0x807be4dc1f6308d962cc13d7a0b834aeaeb0b8a6', 47170), - (10366, '0x07218767dbbc42ddda9193c44f25713e4b4550a4', 15890), - (10375, '0xea190fd3b642e24ec290050c548e222f407ee28d', 15890), - (10384, '0x435c45cd8fd9a02692df7bff253cc5604497503e', 15890), - (10393, '0x9cab2ba88f244b1cb1c67138b9ef79f921fcd262', 20220), - (10402, '0x7e3b4b2c6b78c88b08fd0d93b2e40cdc53cd5617', 20220), - (10411, '0xb754074f031cd08820e19f778befe219f5950681', 15890), - (10429, '0x87a8eaf122d8ca8d5612ae522a0460bceae09989', 227610), - (10438, '0x2c38c4241ccc33ae16043f21559479f2d836abbf', 20220), - (10447, '0x858b1d657b7e21c2d023d3e1b25795dc4963d1f8', 45070), - (10456, '0xe8ab0b64f32a7b5d0e7d76c35f16fab916144863', 28400), - (10465, '0xa73f34a5e654dc8e786756003ff84ddb200ccc9f', 15890), - (10472, '0xfacaae2aa7506105e9926505deee9c62361af92e', 15890), - (10481, '0xc95156073ad922ce5a705f5e08e53ee2ecb31407', 20220), - (10490, '0x44c0551deb02f75189c7c4075b58212cfb108f2d', 28400), - (10499, '0x323bfe9f384e88111e83f37ed7a854d0cc5f99d7', 24380), - (10506, '0x56b8a0f575424a4e10da4b8d9dd7d70b8848db3d', 28400), - (10515, '0x7597a500be81d983f51a81651a86403c5ab413ce', 20220), - (10524, '0x359842cd28b2cb58ee2f35a6abaf188367763eda', 15890), - (10533, '0x25f5b2be313f6cab7a8de72a3cce247bc077fc12', 15890), - (10542, '0x4fb28d78fe6c4000e1a08019cea4e1142bfc5d61', 20220), - (10549, '0x1b6b5a66c38f1a64ba5a7a646a8f2da6d3d5f1de', 24380), - (10558, '0x4944ba6d3ff9e7e20c9615efe23a71a1e3bd0a21', 20220), - (10570, '0xab99da4232c2d78d7a5b4a6946827f3fb8ac3f39', 20220), - (10579, '0x1f64d02ed888b376173a4f4c531c62dca85c6394', 15890), - (10588, '0x03cee6d27d8a6c3975f96f50f9e854278ab6cdae', 20230), - (10592, '0x20dfb65e933a664c1e7d87d4a3672fcd76752575', 20230), - (10597, '0xbbff757fd0c2506d8c7cab172bdd0990773cc858', 53110), - (10599, '0xff12da39308dc2cf0b89a2ec4516372d74580d39', 20230), - (10604, '0x5f3989a8d9b016fbb4efb39bb6cb47c45b82b0e1', 43570), - (10608, '0x7c1f76c4c99220da4183b9e896533a38eb7ab247', 15890), - (11697, '0x359ea5f2f9d74503f88843ff869d8531ee42401e', 6376), - (10617, '0x0cde86778379796609a69e39c63140fc26efd82c', 49890), - (10622, '0xecfbaf3893ca954b15b5d8eb22e4217fe7b2dddf', 39890), - (10627, '0x8238d87da1e7b0f54c4ab62ed082f63d24320048', 20230), - (10631, '0x4be6638a4547c7fdc978e82c1da97ea19c31ad1a', 47190), - (10634, '0x05a660191ea9b2940139e5ad090a972706db2d5c', 15890), - (10637, '0xce9e9a6fc66ad2e705f5b98d02e99387d12761b1', 57760), - (10640, '0x2ebd5817147aca120f8a261b92e3957af93afb9b', 36140), - (10646, '0x656aeb34d6641335a444bfbe028878986a6cd886', 15890), - (10649, '0x7521f691f3fc5c385c80ab2ed75c6b548ef10f93', 164930), - (10651, '0xda01a038bf715bfa4aaa119371a768f3972b5a99', 20230), - (10659, '0xced8de8c585dadc119c78bf301651041182f6cdb', 32320), - (10663, '0x9aff83ee7b8c253f92b1ca0cc53bba27837c4714', 20230), - (10666, '0x836de8a9324501a03e1c0600222b7decd1afd15e', 20230), - (10668, '0x0e5b9027974fc105a1c4653076b61a5330bbe908', 20230), - (10672, '0xa6e1a7dd841d7f1afbff86c682a91defbfdab2b7', 32320), - (10675, '0x1c716e311b3c94dd3ff1a5460c1e4838d04f2b9a', 20230), - (10677, '0xbf53e29372dab9ba05c42a9400bdbfd0e46d107b', 24380), - (9675, '0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2', 0), - (9725, '0x978f664433abf02b7460f5ed138f8eb46dac2547', 49646), - (10339, '0xbbdbc5ea0a605c72d8b20cf544e25fb4b742c8fc', 22256), - (10642, '0x657604627622a5dfa2d4603a69c4b673ba7986cb', 40616), - (9720, '0x59ebff2be1e53691e819b953fe215d61135dd05f', 0), - (10420, '0x4850eae55a6ef549955826b8a86e756c2fbbef77', 42516), - (9693, '0x7b753919b953b1021a33f55671716dc13c1eae08', 0), - (10330, '0x0bebe2165de412e7925ab8352e36f3b0493dd3b9', 0), - (9826, '0xe7ebfc2b900b5faa879f334cab748f85cc1904d9', 0), - (9593, '0xf2a539fd5d19a7450da182240e005de16b169b75', 25030), - (9602, '0x7ba9dfe6ad924b4b3f11b17fe8d2bfb011511c23', 11910), - (9611, '0x01498c62cc94e5552a5c516db43da40ac6e1ae6f', 15390), - (9620, '0x7049871039097e61b1ae827e77abb1c9a0b14061', 109680), - (9638, '0x0544dd5edbc9ee8a565accb57a0d75a7fa8fe9fe', 115500), - (9647, '0x5100ab1ecfe9aa31ebef732375acfca422b82327', 63880), - (9656, '0x1d671d1b191323a38490972d58354971e5c1cd2a', 207000), - (9665, '0x1d862756d01cbc60dfb0ecaabbca454c1002c6c7', 28660), - (9674, '0xba9f77bb2efdf3f4ee377f46d20926c6a82ba4c3', 53290), - (9683, '0x6da0a1784de1abdde1734ba37eca3d560bf044c0', 107640), - (9701, '0x462526226e1e0171c79c0e8cfdd138c01f8184ba', 31680), - (9710, '0xd0c3218303591c7ea68560509be2ef7b9e6d2191', 15810), - (9719, '0xea61010f627d1555b37eb22073ce6206a3f24f32', 15950), - (9724, '0x6837047f46da1d5d9a79846b25810b92adf456f6', 63950), - (9731, '0x64298a72f4e3e23387efc409fc424a3f17356fc4', 44420), - (9757, '0x40a7b8b49dd21e96707d6d38b1f60447afcff6c3', 30850), - (9766, '0xdbb5b14e31560fea965a1709b71e5c6b8f04fbcf', 95930), - (9775, '0x5b8b87331e484afb35138da956aa30be26c1f22f', 26890), - (9784, '0x08ebcadbd7b88e8e7104bdffa6a92a6ed7622d24', 23400), - (9793, '0xba8d6600f02cd4abd93ec63eb99463a18ac75004', 2950), - (9802, '0x8425ccd02cc69ff71fc288e2a8ed56c81b6080c5', 6130), - (9811, '0xc627fd4bec977b2845057e64153bbdbc88ef9333', 224470), - (9829, '0x85399d0f51a78e7cc66330f3b9eb83c5e5762513', 73970), - (9847, '0x328c194f700cf621798f2d0c85b541f97fb8400a', 19630), - (10349, '0x08f522a8e9d6ddb434171299e8ab6c6aa2a0e935', 15890), - (10358, '0xc0b4841e4a09c4462570ffecd32b22f48c47fa47', 24370), - (10367, '0x0b6983834f515ce8e989586355704ccf76cc4821', 15890), - (10376, '0x859d778bfb034d82ed9d6e1366da5bcf5870b416', 20220), - (10385, '0xddb1f99b69a49b7e3b25bfb7bf95b1d070f35358', 96970), - (10394, '0x47f31127628bf5257897d86b080c7ca2d3ff0e61', 24380), - (10403, '0xece4d400df7a76797b6e88fc8e0bea8896903377', 20220), - (10412, '0xaafcc8a1d72861e2aa257e2f0b1de41410bf5f96', 39890), - (10421, '0xc8abf679e14add9a6d6b6881cbdb4bca748cd2d0', 43570), - (10430, '0x6a66593fa2cd128deda27bc6c43ba927ade21dd8', 24380), - (10439, '0xb6de2f25d47f7246573ee50737f8962f2d34af76', 319670), - (10448, '0x51e149807bb595d9813c4f3fb3c47062d15a55ba', 30370), - (10457, '0x1b70aff5a8202a8cae3eb99eb996586557e8cb10', 15890), - (10466, '0x237263686adeeacdc2532e683eeaa720b65a21a7', 20220), - (10473, '0x3172baa7ee9f32e09014f89e3e090c8d5fb15e62', 15890), - (10491, '0xdefae50ad2b9921a01e53d3fd9fc5ad3a2a6cb04', 15890), - (10507, '0x7c42396c00d00935380fb6a55081f998e714997f', 24380), - (10516, '0x47b553a095040e6b5b03f4fe059308db12530545', 20220), - (10525, '0x0db5cbe2e1ad7b566297382c0649415c6dad09a0', 28400), - (10543, '0xf49fad3dd582a2d1648269092292233ccd58d56b', 15890), - (10550, '0x9516e80ba79b97d5085ea4553df9e35022b1a656', 15890), - (10555, '0x8c5b10de49dc9876273bdb814ee67f753d6efa81', 15890), - (10557, '0x2e75917bf9cff93a4d9aa4f0bb00ffb52bb78cee', 41120), - (10561, '0x139dc8595d3c55bf0cf9a769fb0adb1cbc232cb5', 15890), - (10571, '0x8cf985712f92ff1e901c86c194b21e43a4ddc639', 15890), - (10580, '0x4b5fc8a60998a17345cb4733d4e120b1591560ea', 39890), - (10589, '0x6850d96c81355ac02b6069e7bf8fcd1a272e2cd5', 20230), - (10603, '0x5617f0bb03233fb4862ba82bc83b00a8bb63e2ce', 34240), - (9748, '0x463470955c61a54210b5ddcc20847cc325a2ff38', 30406), - (10612, '0xe111eebfb53b29db375c19c9c2c163c3db1a4b5a', 20230), - (10614, '0x8ded2ab01ea7965cc0bfde74d03fea49cf77ebe9', 15890), - (10621, '0xf4563b31e74a4c02485e765c8cce909d6835388b', 15890), - (10623, '0x32dff34396f4b98b497b7a9df517ac5a879ce3d8', 24380), - (10629, '0x3fabbc9cf512a5d57b6130497dd0ac3e005f9615', 28400), - (10630, '0x291ffba32db59d4995415056bed2a5d35123eeed', 20230), - (10632, '0x36f341b88d969fd56e8383a99dd13aae96d9b66b', 32320), - (10635, '0x13133448af4f67cd8c4a47d7971d9d856447eb07', 15890), - (10638, '0x59fb71e42ddce3d9d5e5abe54b86698bc7493987', 15890), - (10643, '0x163aae5754e098cc3ae328efa1bd9615c0ae16d2', 34240), - (10644, '0xf40933ab7f7e931438d64a6e519022e8503c934c', 15890), - (10647, '0x621431bc7f7ae2910cba00a0e9baa687f9e2783d', 28470), - (10652, '0x3947ff51db7796208d24037929015bc8b75e922b', 103210), - (10653, '0x0a251df99a88a20a93876205fb7f5faf2e85a481', 15890), - (10656, '0x82c9bae2a869f60bbab7bec71609f9ae9b7127dc', 20230), - (10660, '0x163f71d7fd1fa09db8d16c6a2f415977b469d7bc', 15890), - (10661, '0x061ca8633f1effb0d07d0311474adf1175e4b3af', 20230), - (10664, '0x8b8e5a143e34774f55f189dc944951fafd517e72', 20230), - (10670, '0x5ca9a17f6e975b7068b30028cac44bb100ab70ef', 28400), - (10673, '0x5486c84e9cd8923b7352216db896fb928f353541', 30370), - (10678, '0x4fb9748746ffc5716f33b0a62f32b9d5009264d8', 20230), - (10679, '0xbaa0aef48f131a9e68fd3d8d9cc1fa7f8e8d52a4', 20230), - (10684, '0xc2a540158a43019e4f4ee01e34151df9ce4998b0', 15890), - (10687, '0x861d55bc901445902c4e749170fe63d1ef321460', 20230), - (10562, '0xb06437c630b57598a6c177513f2f4ab04b95744b', 154801), - (10682, '0xedbf72f88e72133b10cddded385d2b0f7b27f588', 41151), - (10669, '0x596540ca66b5b2bbbf9fa35d67fbf336754eb780', 22266), - (10596, '0x9046c3016db9c64a97b5e4df5a680a9bd56af1ae', 49946), - (9820, '0xb1607e8fcead1e10317bda673691cbb274d653f4', 17826), - (10534, '0x975a4bdd7e4a1af03d8c3e88142957a7fc63cd3e', 22266), - (9692, '0x6f4e3617db82be3aa2f470de50051f7b3f95be9b', 51096), - (10482, '0x0f792e55668ad78476d4b563e6eb1228d636a71e', 38696), - (9629, '0x742b97dc68bcc3475feb734c2df2c76f25664532', 0), - (9838, '0xc678a7af0e40ba1e99390b31dbdb7099c563c935', 0), - (9604, '0x8610f2d0e04b9926396a99f464c46fabcde942fc', 238780), - (9613, '0x1df6e2636e29f50e29f4fb1ff7a9b1899108b0c5', 21620), - (9622, '0x60db49be7bb79683d6515a2bad2640634cd08030', 24300), - (9631, '0x7a09083c848a3637aff552093ec6cc3d9f0254dd', 149820), - (9649, '0xd70804463bb2760c3384fc87bbe779e3d91bab3a', 66450), - (9658, '0xb683a2056526162c4771d363204af41ea8c1ec52', 31510), - (9667, '0xceed9585854f12f81a0103861b83b995a64ad915', 89840), - (9676, '0xde80f39233e19bc358499457b7e78af9b2fdb37b', 34660), - (9685, '0xb9581d8311cc3b9e677af6b0c55f1b93b69ad6f6', 15140), - (9694, '0x67831cf55a76e57164b7cc638012f5b5e2657d28', 15390), - (9703, '0x2f60d2bb84eb8df6951f7215ef035ef052ba2725', 15640), - (9712, '0xed3b72613da289c454601dc9a3a24fcc30edc5b7', 15860), - (9726, '0x3eaef0fcf432cffd12c5b8e2c328d2856fa49ef9', 41440), - (9747, '0x6be2676dddaeb63d4dab83e341d3abaef752a1a4', 36800), - (9756, '0x141edb16c70307cf2f0f04af2dda75423a0e1bea', 19970), - (9765, '0xb03f5438f9a243de5c3b830b7841ec315034cd5f', 37100), - (9774, '0x0445d4537e01838734167752cab5faa9d07d26ac', 0), - (9792, '0x545425f9686b56078da3bfac5f9f25bb287b1291', 84820), - (9801, '0xbe5db9e33a2309898d44d9f7a6ee9229eb4d5415', 6990), - (10662, '0x9f0f5a13591b8eaacafc1fbe26d27beb79241e9a', 22266), - (9828, '0x6af6d6b3fba247129c32544b53106ab3bb772902', 79550), - (9846, '0x85857d4d408af5acd08ce33c68fc93ccce396201', 6850), - (10354, '0x5ee5b07ba735e7ce7ce29079651259232c104eb1', 28390), - (10363, '0x035dd5668d8a718af300a93ca72ac5fd63a4e5bb', 15890), - (10372, '0xf6ee42e650e28eced96d97dd1f953118fbed5633', 28390), - (10381, '0xc9584f7a2e35d069e8b02d3c8f3cb235da21b0c9', 20220), - (10390, '0xa5f48a86c6ec93750fbf3a4105d0fbf6aa5a1cdd', 39890), - (10399, '0x7db956d70be8be8ba3ba77e032067ed4ea622ab4', 15890), - (10408, '0xb71ae16816cc31ed5cfaee5216f297681fb52257', 15890), - (10426, '0xeab6e4c1b896b1af80e66e36b9e5b1d752ac8d01', 15890), - (10435, '0xe598632f5cf61cf530079fec4939622ec8595842', 56890), - (10444, '0xa0542d91b0e7461a8de0ecf7dc14ba099c3be173', 20220), - (10453, '0xd10cf7e23b4ee25a00a17f0e60ba633552461474', 24380), - (10462, '0xd3d415cbf39ecb1c071b6b66cc15aaf269852b10', 15890), - (10487, '0x52ba6f18caf0c95f2475cc15e15a0b2a7c33d449', 15890), - (10496, '0x5810cc09c92e5c98238a18ef1f7feeaab6d088b6', 118430), - (10503, '0xdf10fef16f260490393ef955f6436b3e9b89c96b', 20220), - (10512, '0x05e6e03f55b16e4e6ed2502acb3dd2b919dab43b', 41120), - (10521, '0xcf51740b13156b8c16c1728e0abf064bd1d1e088', 20220), - (10530, '0x0bbd3d2db9b6dc258e2f421b43160625d08c8114', 28400), - (10539, '0x8fd30b959b5c0a19b598cf91f69218a7b3b43e28', 38020), - (10546, '0x76b74337d93dbcb811fcf2dab4a57db2b7058389', 24380), - (10560, '0x4bbf9ece2ed6451abe9ea495a917b1f3cdc2d173', 20220), - (10564, '0xead8d125308cbe40abaec967366f9d41301253e0', 15890), - (10567, '0x047961933e59b5dabaf3f66ef95ed05e49b4594c', 15890), - (10576, '0xbc9a201cf79ccded23f888cc8375c6ab6e0fa9ef', 24380), - (10585, '0x2b49a18d6c0e7c88dc9e8900c89cec55bf585c07', 20230), - (10594, '0xa030785c5ef4502158f34370c56696e2357f0657', 20230), - (10610, '0xebc1336b4ffd5beff67f84176d8ef45f7d7ef1ef', 28400), - (10615, '0x74ac894c6469b6872b4e9fb6bfecb23452041ebc', 28400), - (10619, '0xd38f91394179246264c2229786302e57b9307cbd', 28400), - (10624, '0x97de3f8c1ed20554f4ab726c831c943254f1b5ee', 36140), - (10628, '0x0504e50f5aad7017d509e53974d0d9bb1a89a4cb', 34240), - (10636, '0xd943ccc1a3e4cbcebe18311acf8dae8236f024c0', 24380), - (10639, '0xca30cc6e914d473f79534104beb7ef181d8da846', 28400), - (10641, '0xad6f59149ee5e2362b6fc614e4754e2c42b43f49', 20230), - (10645, '0x9e4907b269e9c3721a9ff466e1865229734f15e4', 15890), - (10648, '0x81e0c8f299a1a8bb076501f581d76fb715235546', 30370), - (10650, '0xe43c85ca13aca2d5f297fc8f35d8256332c1eab3', 79490), - (10654, '0xe9bd1d46f6a6453a9a4d16b99eecd88d733a3bf8', 20230), - (10657, '0xf3d10a534e2429ebdedcd216baae99104ce0e82b', 28400), - (10665, '0xd039f670f057d14f143ecb92fac3a533b5e54f2f', 15890), - (10667, '0x8527481777656f9faec9ca0087dc8ac25d33e308', 15890), - (10681, '0xb37a44eaeb3f9d3e6a9d6a7dc6309cc9b8d144bb', 20230), - (10685, '0x13ecee9b4215b23f705ae48cbc3fddd4988942d8', 15890), - (10688, '0x535a6da7c54d45cf57d240f4d65a6acccee58f6f', 50760), - (10689, '0xde5b1050f18b48d04623a74c28dfdc71c8bd5d46', 34240), - (10690, '0xcdf21c7a85bfe3c74586bfcfcaeeb57793754415', 20230), - (10691, '0xe3b9c4b3d23fce4fc32ae90b3b728f996e3dc076', 15890), - (10692, '0x7054c451207f7a84d3ca17827da68985f2c0e7f1', 24380), - (10693, '0xfb0c6d576dfe70018940b7578ad52224cab2a226', 24380), - (10694, '0xd57f95254a2f11812129f3ccac8d25b9f25e0ac9', 15890), - (10695, '0x2bf22b645f54a3cf104da719b62e66aad8b72043', 36140), - (10658, '0xccee868b4cd2decf0ba0bcb1d679b346d1b9e23a', 30756), - (10417, '0x9057e7dfc7f00be66e368afde533d0d923e15f48', 48116), - (10676, '0x5f22a11a9027d82c0fee731df067641738ecabb6', 72656), - (10671, '0x3ccea8215e95444af38dd0ae0203f5d3802170b2', 26606), - (10680, '0x1622cc01ac7ae0307c87f47bed1f75b42126daab', 26606), - (10686, '0x6c9449a3b7bd604e12e9407460643f1dfbd9fff7', 22266), - (10478, '0xff9cc883893ad608420df30ab48a651b998ad5f8', 34776), - (10601, '0xb525911150a9a30f78b963564e10ada994690d5a', 30756), - (10674, '0xe8a6b43f5392964217ef9a96093eaf8d4896c886', 22266), - (10683, '0x2020d25530cf90f48f176da7cd3d3c1cd282d400', 34776), - (9810, '0x679744463c49670803c73f6698c79a1851640484', 90416), - (9837, '0x53cd119ae0bf1fdde5e778d29e873392fee07cca', 0), - (9640, '0xb3d1e41f84acd0e77f83473aa62fc8560c2a3c0c', 0), - (9783, '0xa6d713d765fc5405869e040db1b1cd83208fc30b', 0), - (10696, '0x5bface33343c354d4f577f4ebe29e20b1c691ba9', 15890), - (10705, '0x7f102a66a4829868bfa883ee98bc4b3e37bb16ba', 39890), - (10714, '0x015f5453b1bd84c6955560e90a453dc9f634370e', 54280), - (10723, '0x54d2017eef805237b807d654192b7e1d86f2a3c4', 15890), - (10732, '0xfabd652993c871bd27b850ce3c50a7a5814f275d', 20230), - (10741, '0x844460231bf3feb38969f616f488cd89fc48887d', 15890), - (10759, '0xe773147d27d42a34419075c5508d4b289c2971bd', 28410), - (10768, '0xcc6f98aa9ea6a5c08bb97ac2e0df27e9310a8ecf', 15900), - (10777, '0x7c11cb9b39fc876c46f03b4084b6e5688ccca993', 15900), - (10786, '0xf763bd12218821b12bce1a169ffb9e0010dc9fb2', 24380), - (10795, '0x6702100ada4da5244644ef87a2d5e35f3deae11d', 32320), - (10804, '0x104315b15b02ca7f5de90137046ca0754011e70b', 24380), - (10813, '0x460786e28a624c39a98b5382950684169cf7f4c4', 20230), - (10822, '0x57124a06c5bfd2f0abd67e0ff4906d5f84c22f0b', 36150), - (10831, '0xa639ba847ed56a8f7a461b83f10ea674decd7b73', 43570), - (10840, '0x0247471fa198dd9b829b299de2414f568034adf1', 81120), - (10849, '0x15265c9989a97f84c01cdba9da4461ae518083fc', 20230), - (10867, '0x7d71ef04fea841a832d22ac1308cf9dd3ee52ec2', 16000), - (10876, '0xcfc84404bb688117c3970842152e68863d388e83', 16000), - (10894, '0x32a6f3de4d2610ec943b6c20ac3341b30dc18d23', 24670), - (10903, '0xdbde8e347118a9c45c5a7752131623be81d2a4f5', 56640), - (10912, '0x035ebd096afa6b98372494c7f08f3402324117d3', 21550), - (10921, '0x241cab326be5314c264417ef1b229ca84e7d0c81', 21880), - (10930, '0x9e55958688a76229e4fd2d58d8987708693c2b47', 35250), - (10939, '0x303715a9da8043bfb2ec65c4d5daf3eb63c7a9dd', 17390), - (10948, '0x3a43e3abdce877ea7db72f5ba8cdc8520e830e4e', 26740), - (10957, '0xa9811f9f6b8bca7f9f91f850a98310e63fbb7326', 22200), - (10966, '0x7258b89c7a3937bf9d2b66d0ab3e492cf006b861', 27210), - (10984, '0x529f786b6cc026ce88ee866a0de859283c216e50', 55850), - (10993, '0x952580d41f10db41d97fcd6b1984bc2538eefc2c', 30820), - (10975, '0x62cc4edfe738701297f06ce979de18229b69b49a', 87529), - (10750, '0xfbf29b8976bdef1a1e17b19a9a23dd41c68fb650', 28641), - (10885, '0x234f204445ed2eafd4ace5f14b8decf3435d221e', 26836), - (11696, '0x90d6c39fc204a72bbfc94cd9733618fc945babcd', 6376), - (11698, '0xc600e545503159075cb008daed772bdcc39b6f4f', 6376), - (11700, '0x87178a00009b129ac6e7097a89cafb9398191fa7', 6376), - (11702, '0xc920158ed2d84b311f11963485207c12d18f02cf', 6376), - (11704, '0x3a68e7285857030c7bac691e18cb3dcfb7ab5031', 6376), - (11706, '0x3930808a10e510270848ea908011a9c518667990', 6376), - (11708, '0x72656cdf1c5bc08f7d95919e1b31ca8a88de62c6', 6376), - (11710, '0xfd3bdcd81aa30ebecb05b8dc83f634df4a303a74', 6376), - (11712, '0x184b5458d73ccd0c36efc98d36b17129fa79e267', 6376), - (11714, '0xff4d568621d0092cc224bcc81622e93068cf454d', 6376), - (11716, '0xf99f909d075476b507d0e0355c24dbcbb1a04950', 6376), - (11718, '0x8ebf56f580e9f78abf9484b19af27f11fd9ba317', 6376), - (11720, '0x14cc2bece630d9e1876f573a7e64968daee034ba', 6376), - (9001, '0x5dc5a7a7f39471a21b977cdfbe796b039ae3df56', 56876), - (11726, '0x18b27f5c283c1006775bea9cc0c914399864d349', 6376), - (11728, '0x6d4e8920e5579c6041a882e8697fb1a4a92fb04f', 6376), - (10858, '0x7a72e2f61634381779fc06d4850251fbc0112bfc', 42676), - (12135, '0x8f9d42539528c53f0ced5f56e9672f9e2292d4c3', 6376), - (12138, '0x29744bd7b37bde14f74d281d3badbe68b299be5f', 6376), - (12149, '0xb0b8c00030d089d11bc337033ce2bc6e42ee62d8', 6376), - (12158, '0x62b8a7e81ed858256a038019c4f4786afd1fff12', 6376), - (12160, '0x7c4db9abc19e8f2ffa823fdec3fcf6f362fbf19f', 6376), - (12162, '0x4c63bbdddc31e05794bcda50db5e4026a391be74', 6376), - (12164, '0x5d43976e457399be5c5c3e662eafd6735e5c850d', 6376), - (12166, '0xd18d54fb768f1d5c4bd2a26c339dca2f2cff7cf5', 6376), - (12168, '0x250627da7bbede699f7518558ccbb8e3ef825183', 6376), - (12170, '0xd76f84194375253b1331ad125db2aebbb434ad5f', 6376), - (12174, '0xe2e5eff8a746855428c3d44979b2cd12564ba9aa', 6376), - (12176, '0xd035f7d138265334bcb6f36b845dc32514360cce', 6376), - (12178, '0xb491ce849a4ee0e1624714fdec3952774bfd0021', 6376), - (12180, '0x77da3a8e2445102eb98fab42dd1253af5a64e727', 6376), - (12181, '0x84d417895d1521a029045164341eced205247a1f', 6376), - (12183, '0x4280877069d48aaf41dc10353cbf908447086784', 6376), - (12184, '0xecf4a18469f032175020084c04b4288eeac7e039', 6376), - (12185, '0xc844e8585520c96fa3767a725cfe93eff7097e7f', 6376), - (12189, '0xd263e21f3666f0e0e2775a742582a3689f167167', 6376), - (12191, '0xbe14b9950dc61642a084eab491fa516d8fe557e6', 6376), - (12193, '0xf0ee30aed5476abe111e2219146a7f8ea47ecf0e', 6376), - (12195, '0x5bcc9d887562d459d4598cb51b0e1f0414322a96', 6376), - (12197, '0x0469e69dae168426111dfb9ee232ba4f64f67706', 6376), - (12199, '0x93782309e0c9b3da452b87a42327c6a55cf56412', 6376), - (12201, '0x11a928cbeb8b9a1bea9b728de8a3af719eecb61a', 6376), - (12203, '0xe19727717f5113d2b68e8457b784cad39d74a76f', 6376), - (12205, '0x3bb59c4ec95655b3b1f93cf43e8c8f6da7e50655', 6376), - (12207, '0x493177b0bfc00a72a003d8eb88564555cedfa8f5', 6376), - (12209, '0x20c6e6b5a13164a5983f426df24c33d3de21163e', 6376), - (12211, '0xcb6aaa77569ab0c51efecc76f4e90e479d90320a', 6376), - (12213, '0xd581b532356cc54325c0b6d9c0cd269b2780ef34', 6376), - (12215, '0x3a509025e2e9bdbce636f470c7f29d6994df6fc0', 6376), - (12228, '0x90490cf8582fcd2c0df98e7ed209cd911351a4a4', 6376), - (12230, '0x74c78ad3397245b1f1b9b61ce9b7fe8d9ec7d6d3', 6376), - (12232, '0xa13ca02d1525d6f5db03f3fc9b96a88ab2146506', 6376), - (12234, '0x0191b4a64263a1ccee6def16f19843455ccb1050', 6376), - (12236, '0xa89ef1f22abaa996347d68782428ecceff78515a', 6376), - (12238, '0x3eb1e4be126b631338e5c45f844f5ae7c83e7cdb', 6376), - (12240, '0x54284ab0131b15afa5361280f8be1aeb4c2d209d', 6376), - (12154, '0xbc1e0021f9d22582b34b584b8516dff417e7ab71', 0), - (9768, '0xfcbaacad53def4df17fd8eb1e1b10291ca09b85e', 0), - (12220, '0x4b9e02d58e33b03b696715a24bcdd77cf5b2703e', 0), - (10697, '0x98574343ff67c85a61280339eb546f2bc93615a1', 71290), - (10706, '0x5b83211edba7ccf101b42ef33c1cb9283a0621dd', 20230), - (10715, '0xaacc748b509e2ee00e60dcba4ebe5d500567719c', 20230), - (10724, '0x0768403991b3994ea32960942f396e1740918045', 20230), - (10733, '0x55926750aef2ba76655c1b6428cc79b435ece352', 20230), - (10742, '0xab7d8b061721611f6f5826f35c640aba60967e11', 15890), - (10751, '0xe9c1b53b988f791cefe70c9bf57c5866f4e13f56', 28410), - (10760, '0xa06970f029684d8810d6b0b2e74bff5849506fee', 20230), - (10769, '0xa8500c256da4890cb3461820810c0e233a4b4d2e', 20230), - (10778, '0xbcdf059b250bf7d38ae958c362b1cef5ac0e67ee', 56020), - (10787, '0x194c417d48c4471c94ba789718f9de306d2df331', 139150), - (10796, '0x92ae60fdfcc6b119f0bdd1095d6526b9ad971b18', 15900), - (10805, '0x6052943193f5cac28ad4239e4aecb7cc5a4346b0', 15900), - (10814, '0xc6cdebd26384f703fffee48be23478690a6a0464', 15900), - (10823, '0xb497b5955353614334cda5cfd8ca982c1a93dc55', 24380), - (10832, '0x9cc7fea5b565a8d5e946d594ac7ff3a90bd34db4', 20230), - (10841, '0x32ff26818532a09cac1f69b0d3d332177e11ee92', 112400), - (10868, '0xfab61bc810051f3c15f1fd1172e25fc634b25555', 16000), - (10877, '0xdfbd7d042be7c7d0fc16b40d0e160999f16d0078', 20360), - (10886, '0xe6d99344dcf0ed398462f463d171ee28dc05e1b1', 16080), - (10895, '0xec2c09e20f325bd8609e584902ecf5399fba31de', 54910), - (10904, '0x59659e3270e7e143f8f1bba1af3d237d8c9f9354', 42620), - (10922, '0x517750948ad729fc150631ee52dc1219c8492d2e', 26420), - (10940, '0xa5b643db9766c1804e19dc4c491465e581f7e914', 17390), - (10958, '0x13b3ff6f1d996eaf36022ea2a92669e1371e46d7', 17450), - (10967, '0x13cd903edaccb3af2408779ec58ca6294ebbdebf', 17740), - (10976, '0x78d262ee17922bfb29476e25df20eec17e252902', 18170), - (10985, '0x7dd44cd59d0320a8a2a0a6f521bfe767108dd2e3', 49580), - (10994, '0xaee2b2414f6ddd7e19697de40d828cbcddabf27f', 20120), - (10931, '0xdc8cf1935dc61899370c8d64ef059d332235ec1d', 50307), - (10913, '0x0634f86d3e8902f69fef5b72c73609b01ea3dad8', 29691), - (11699, '0xfc52e4289bb89079ba84a5e4ac83accbc2bd50a7', 6376), - (11701, '0x81d2ba76e7728dd4de6a9f52047d35933659b9ee', 6376), - (11703, '0x3ed708ca9845cf72dbdcaefd977272695396c71e', 6376), - (11705, '0xca09ab201a4857bebef4d44a40f35cc93eae2080', 6376), - (11707, '0xaea719ba658cf08032ae3947de6bfa3bfbe414f0', 6376), - (11709, '0x543f7ccf5166ba9c8afb5e768accf9f401155370', 6376), - (10563, '0xd597f4f55721fe317490905dd3f7b61091a6768d', 26596), - (9188, '0xb3c64c744f0a1d518f5df65a5d3d04d6b49273a3', 91676), - (11715, '0x2271fe6d76ab94352ef826d97445048bd8c4d45f', 6376), - (11717, '0xeb2df45b7d4e66d5c1f2abc904621c2ae29847cd', 6376), - (11723, '0x623dc9acf737dbf01c3f95ee1afc357d4a758ffe', 6376), - (11725, '0x47cdb3606d179f3b4a7ef990575cfcca454e31e9', 6376), - (11727, '0xe3564a3eb945beffeb75eb416ab88135fcb36180', 6376), - (10850, '0x042273183818ff50cae2cd5883ab2c7ffd421b8b', 49946), - (12140, '0xf9644737dc87c494d68287b73536d0b4942947c4', 6376), - (12142, '0x8209c66f8609107463b01e840b405c2ae2d9882e', 6376), - (12146, '0x587eb2322197c209fc91fb66c881006a8f92c059', 6376), - (12224, '0x803a6f832ca1dcf35b72c44c0186dd9036b532c4', 6376), - (12225, '0xb39035eb795fe81b9596b785a5c27d230d3cd55e', 6376), - (12268, '0xacf7dbeb06e7e44cf5ab9e9eec109c0f692a03c8', 6376), - (12270, '0xbe9604fbd1eb3bbc729d45b7ed5a2848998ed94b', 6376), - (12272, '0xda73a1e5f79669890cfda649945a05ef70e44924', 6376), - (12274, '0x6ccbc94dc8ac42cdc977bc600fb94ca19f4fe5e6', 6376), - (12276, '0x41a0800b294c1c1f29820eb8e25782559292a882', 6376), - (12278, '0x678823b4191cf38b35c5b61a42d98132ec6a7662', 6376), - (12280, '0xc480c179b51cdb142779bf16f713742250f35664', 6376), - (12282, '0x983033fcfaa8ae9282fa5b32a51be2d9ba6bf392', 6376), - (12284, '0x4c3487c13b33899644c017f11eca9a2b784a0885', 6376), - (12286, '0xbab26f7bf91017f95f93dcba800838d9663f41d4', 6376), - (12288, '0x7d3c347c6780aa2edeadafcd1e8176bca8c10c10', 6376), - (12290, '0xce04c1d127247d5499a83ed008ffda570f107ae6', 6376), - (12292, '0xcd8dafdf2659f5a11dca3f54c5b05850fc0831ec', 6376), - (12296, '0x172fb7c32602ff059faaa77e05b677cb32ff65eb', 6376), - (12298, '0x5ac84816037dd021f06df7aab19b5cf837578696', 6376), - (12300, '0x7fa768044c7bc61f6f489a7f4e2e254d3c30cad8', 6376), - (12301, '0xc4a0fb75b1aa8de0547663577c49c0e162db2804', 6376), - (12302, '0x415cd2983b007acc087b159da4f2ae182aeb6abb', 6376), - (12303, '0x08f7fd04e76dac7e4d9e343e0b5510379f5bba48', 6376), - (12304, '0x8c7497bfcd8657d7f4eeb03b124e2c721259ae91', 6376), - (12305, '0x1a1614ad4d0d874d92e6a646d8407f481ee3abde', 6376), - (12306, '0x1ea60dfb711b1bd3155da986637d38060ec750bd', 6376), - (10626, '0xc5de52d75b001394aba6e83ef40cf4c95a2312d4', 36746), - (12310, '0x40f66a94ec8b355a73746b63d280eeb3f58f4666', 6376), - (12311, '0x4050763a78575754fac3a2683541755bc0ebbcea', 6376), - (12314, '0x06b7bcf12e76947ef2de5fb1e061b5596ebef3bd', 6376), - (12315, '0x626bfbac7135b235669f8dbe8bd9ce2b40991073', 6376), - (12316, '0x80f76ed725f25bb6424037aefa07cfc250980e08', 6376), - (12317, '0x5430f5b58b3b50fc0465e7c90f2679d58f131b7b', 6376), - (12318, '0xbff40a7d5c151fe10c629cc3af6c7a2971b317a4', 6376), - (12319, '0x8d231cacd6e7962b956b4e34ed583328f6e0f0bc', 6376), - (12320, '0x37bc769c78cdaa3d04d67f874107d64fc6c20276', 6376), - (12321, '0x7819b42698b3eee0ef307838be284a931d65f656', 6376), - (12322, '0x91c904f1faa65983a1073f268c7e02c362cd13cc', 6376), - (12323, '0xcb18fdd7df4559fd1dfb25177a72f7217412eb39', 6376), - (12324, '0xb0081b37bb1aa4ea25fd9e663da825e9ecf56971', 6376), - (12325, '0x6be3854f8a4c0c85a4e741ba682b397016f838c8', 6376), - (12326, '0x498d1320703f0361e043f4fe213d2971827caaff', 6376), - (12327, '0x572d47ecbfafb03c4dfe5163a2aff7cc73dcd51a', 6376), - (10859, '0xaa9cf70d0cc373a8f846eae946213af87f5f2353', 22336), - (10949, '0x89e22e1912d840bb61e315f0dd6c7610801dfe58', 0), - (8949, '0x01a719a37c75f63968c0e597318914fb3210608f', 0), - (10698, '0xeb00735c6ba45f656a7b3d145eea4d373ff4fdeb', 20230), - (10707, '0x25357bf21b9542a696178577d3e78083b92a6ea4', 15890), - (10716, '0x7e27aa5729fac3d522f4fac1810899e14d8fb5fd', 15890), - (10725, '0x6d279bec4d0a56357c24d2db5f8ce4240e59a1f3', 32320), - (10734, '0xea383de9bb78ac39830c66857dfe76abecbf85b6', 20230), - (10743, '0xb14c8bbf0f589253c2fd05d5e14f57e7fd7a26d1', 15890), - (10752, '0xfa36ba99d1aa753683482f8a6effa8468e8aee67', 32320), - (10761, '0xc074ec7ba655d4ddc7db1fb7a1933c31b2901a95', 36140), - (10770, '0xf0904311782cbb5c718c890da568f76189f31585', 20230), - (10797, '0x3e6204771c4760257b092dcbdd8a4c1ef6bfac36', 38030), - (10806, '0xc38fb9326c623101d9ff16b5470156b722fa6e8f', 32320), - (10815, '0x1b04beb50c40df7e5efdbf91c5d876e94666603d', 28410), - (10824, '0x1f070514de1ff807223e8f21255da9f5ed7c0ecf', 39890), - (10833, '0x77a3463bf15ce17af5722c2d948a85ce58987152', 36150), - (10842, '0xebd1b80a73a4d748d467de2ab4a17ba460a810d1', 39890), - (10860, '0x1b77c678da81527cff8af74657c75140244202dd', 20340), - (10869, '0xe487b66f878fa3d8e4a681db522127a92022aa2b', 16000), - (10887, '0xd07c2579a777ab27aa401b5a6adbaa18266533d3', 20460), - (10896, '0xd37adbb6ca0054b78eb5c7a40799b13b7f83ced2', 24670), - (10914, '0xefbc53e0afdc9f649bc1ab692461df57e70a560f', 30290), - (10923, '0x140ceb9fe3cfeb79788ad9f2c76be0d4c8e22ad1', 21940), - (10932, '0x4b70b870182f65e43e7413ec33878015eab7e7ff', 17350), - (10941, '0xdadee9295243b9c456107434f35fa07c39f9024c', 22150), - (10950, '0xa9cb88b77a2f0dc3f6e34f24ae6cea5ac871788b', 36700), - (10959, '0xa689100c8febcbdc92137b6a6bbbfda305a6d319', 26770), - (10968, '0x71df93ae5a9a2ba5064ae90b9690b4fa9c413387', 36370), - (10977, '0x98de8db421c0822393dc9197dca5aba7efae0814', 77010), - (10986, '0x364056980867d1655897299889bca4e7d465b395', 29190), - (10995, '0xdc0046b52e2e38aee2271b6171ebb65ccd337518', 25720), - (9902, '0x089036a0835c6cf82e7fc42e9e95dfe05e110c81', 133436), - (11731, '0xe7d64b4508ed3a8d32f3d329857e6564e6ed6091', 6376), - (11733, '0x595877dbcb8ad6fa9faf19858ab1f3b527f38a51', 6376), - (11735, '0x321797bb274b5a1df134090845a84fc1faef13fd', 6376), - (11737, '0x27d63d73716b958c6ca6c0566470a89789a507a8', 6376), - (11739, '0x8a993fe98532420feca6681d2ddc736ab077eafc', 6376), - (11741, '0xead010c2d0f789883f8bea2e2298d7186d0a2030', 6376), - (11743, '0x63c10bc528a295376a79d7dc2efe40a0b9716906', 6376), - (11745, '0xa428f09402104133f1060d372b43c38e197f0e90', 6376), - (11747, '0x52836f469be6e91a7eee88c8bc3178dc2a069170', 6376), - (11749, '0xb4e4b1abe50cc1d2cd776158063a060164598669', 6376), - (11751, '0x9b399d329a3cdfb635817ec73d4117bf3cc27a39', 6376), - (11753, '0x211b364cb44c25e7b21b43fdf6044c7490fe8fe4', 6376), - (11755, '0xf020ad3f6eee42effa22cfc1576fb90096444d0f', 6376), - (11759, '0xe406ecd81d10db51a4265622367f2df7500899ab', 6376), - (11761, '0x7ebf9276619a9c5bbe74c04d661db3d95dd4f696', 6376), - (11763, '0xf13d63c10e9ee31f2e26101b95fa44af072cb8a1', 6376), - (11765, '0x1430fec13e4bd2d7c6f7f160b523389d90e43ea9', 6376), - (11767, '0x626f5f5eaeeb84f3ebe9e3fe9f72cf779d8110b9', 6376), - (11769, '0xaa9930ccbaa6de70eef022dddc73ae5497d4c2cb', 6376), - (11771, '0x83ef16468775c9c2bb3c27bc7d16925ec8b92550', 6376), - (10537, '0x98a1956f39c5f34018a49305ee2e2b152743bd7f', 58016), - (10788, '0xb19c90c15f124775011a3fb20be1168d30a02d46', 84246), - (11777, '0xd830a12f4edfe1b2227d0e33c366c9ab89125bd3', 6376), - (10299, '0xc4de7ef69ace4019995add47162e42e5737581dc', 22166), - (11781, '0xa69b899f5d0736b5f1f662bcee3b67195421438d', 6376), - (11783, '0x7dfcc71716486e7ea66f67141fbeb91cbb6a5c8b', 6376), - (11785, '0xafa32d1d7df7937b6b2a12b16febae4b84a15cda', 6376), - (11789, '0x11ff8e41567602226562aef4e7b5ffd05aa52788', 6376), - (11791, '0x25a04bc7379faabc0be0421da74191ea51713c8c', 6376), - (11793, '0x26d63d6e4644700653df283089bf38f02769fce5', 6376), - (11795, '0x5c76246981e230d82291b13616f281d489d769cd', 6376), - (11797, '0x15a09d00282a8b4ea1b9f7e282befe4e060802ed', 6376), - (11799, '0xb2d4724a17cd7ceb5150ca82a724b6de9452fe3b', 6376), - (11801, '0xd55b9d453b2c9e34aa0e3f4d952978fc559b67f6', 6376), - (11803, '0x89b120ce8504e57bd32968564c1727a3f5f499f6', 6376), - (11805, '0xbda5c53e7537031a0b078e829fd7c4ccf6b0e2b1', 6376), - (11807, '0x4bb353d90a20627bbd1eb5f6ef70e4d582dba134', 6376), - (11809, '0x445c038ee4c3791f1cb336171f88ba3ee7f69baa', 6376), - (11811, '0x40175b4d851625ceb3926191c42bbdfd5e8cd161', 6376), - (11813, '0x1cc92d705e5d002d9641d49c545fd5fe13742802', 6376), - (11815, '0x7822cf688fcbdde115af3ef79fe1e1a31432424d', 6376), - (11817, '0xd5dad022eaa7776ce27babc9844acc07ecbbe3a3', 6376), - (11819, '0xd4042c28cae04d56c925c02c85b1a01c46cebc24', 6376), - (11821, '0xf613e1e50ac3ec632fc7478a27823f4ad9a4ba76', 6376), - (11823, '0xe6a5f1690fcda05d9ba0a663b6e7ddf3c97eb7b1', 6376), - (11825, '0x17bbb5f5454c4374f3b60cfa557b3199fdfe0c4d', 6376), - (11827, '0x39a6ae5bf95aa47f74a0de33f4e0346203e410d6', 6376), - (11829, '0x9cb364eb9209b6325f5bda4577604c10f92985fb', 6376), - (11833, '0x9e7fb762961a6f7f9c3f6b945c17108fd884d5f9', 6376), - (11835, '0xcf43ce493eefa2a23915236afa704bef01525b0f', 6376), - (11837, '0x9f85100331cea84957c1dab4db856c9c351021fa', 6376), - (11839, '0x20abc659446b035754750e0337bc3a5132a83d49', 6376), - (11841, '0xf123327946f83d83dacbfc85db03c0f2416ed813', 6376), - (11845, '0xb4bcee1c040fb55efbaff8d3dc5fbb3e7a645cc6', 6376), - (11847, '0xbd02e310860ba8bf6ecde925ef25290830af2869', 6376), - (11849, '0xbab16b2a7f8cdbd6748beaeb5b69a31e07875fcc', 6376), - (11855, '0xc0fd6e6aadc89b791555dfb44380c2d883e6a71a', 6376), - (10779, '0x6c7561adf7486742fb13d0a93fe589cb3991c224', 34786), - (10851, '0xb5fc54be89ad1dd2e56c685f80cdaa77ffca4f60', 38696), - (10878, '0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38', 0), - (10905, '0xeec7689e935a0d8c440f9b1d403f0b6305935788', 0), - (8444, '0xf98b7e44efe4c60264564554b885ab884d0dd904', 0), - (10699, '0xa987839e550553fa2030e53748f6a715a0d1642a', 28400), - (10708, '0x32acde73f7d84cbde9c78b722a717c5bd11ea47b', 15890), - (10717, '0xcc1d22b6fc3040dba9a7d3f98f14245726042c5f', 20230), - (10726, '0x126b23cc985bc89cafc2cc94c21da4b3b1ef408a', 20230), - (10735, '0x64be6426cb07428d2e3ceb1ffceba6e167345ab4', 20230), - (10744, '0x3e213371c23e9767167b2160b9ac807e9161fdb6', 32320), - (10753, '0x7a812962ae05a6f60aa2654570f32ec158bdd237', 15890), - (10762, '0x3de65e375d4cba59fa7de01110f579906582f44e', 20230), - (10771, '0x414314eb06abc624130afcec1c2d6cc19c5ebe71', 20230), - (10780, '0xaf5b4c3daefe8f77331cc4fc0691eed9c45dd865', 20230), - (10789, '0x59179da8cd48d361523650e3af476174f2064202', 15900), - (10798, '0x947f9c852c14ae2edfb7e3495f35a6d63282fc72', 39890), - (10807, '0x03d52299bd0075426597983d2d3726ee19b543d3', 15900), - (10816, '0x9565db1306ce736c8f309d987934050f8f043381', 90710), - (10825, '0x0cad1295a11243edfabc2b16f09409cb883d4eb8', 39890), - (10834, '0x194e81338facc445cc36690925eb1e11a687dc50', 24380), - (10843, '0x46319a872fba4bf5b4cc3210b054e1a71fd76ef2', 20230), - (10852, '0x6b9abf2871c287261da5b12611498e8d534a7d9f', 15900), - (10861, '0x3d27340eded7bb9c705b694288bba78927f04a89', 24520), - (10870, '0x3333942da1395f5f93d2f5532cd18e92b24db5e5', 20350), - (10879, '0x6e89216b6d5c8fbed5cdb21b7838b801b9a9ca52', 24590), - (10888, '0x7c3004bd16f8c6e116ea8331b5520d1593ce2bc4', 34630), - (10897, '0xcabc1a1ed5c93f06e1e72d3758022ab1053259b4', 44110), - (10906, '0x87690be28b65f13394741c2c2be5a6bdb0505039', 51430), - (10915, '0x4a3e6e66f8c32bc05a50879f872b1177a1573cdf', 34500), - (10924, '0x03276f24921df2a96330b8d107a9c289e6c669da', 35120), - (10933, '0x8685daf001e53c859d5720a66e61dd774353b950', 22090), - (10942, '0x7eaec254f78613d9d57e1fdb8d9964ea36e7523d', 17420), - (10951, '0x120112677618f6e6286454de485c02ddd830d970', 17430), - (10960, '0x22e2f326fe5a1d07e1214eb1c08346fd816e8375', 22210), - (10969, '0xce0b64da1b353545dc7427dbb4ce03838ea8677e', 40680), - (10978, '0x896c20da40c2a4df9b7c98b16a8d5a95129161a5', 50120), - (10987, '0x080b62ceaedd748329222e3bb823bf75cfafaa89', 19210), - (10996, '0x13489a7f09ea0dfe9fdc41390cfbb57f4b6ff0b3', 26000), - (11732, '0x305bec3bbf6cbac839d8cd3966edd2f8549fef3b', 6376), - (11734, '0x6a7cbb5f41c972aa1664b0e1e391db9eecf543c4', 6376), - (11736, '0xeac66d94e304fb1806c620932c0daa02fe4f90c7', 6376), - (11738, '0x26d87baea54dd0ef1d44d63eb83eb3451c478998', 6376), - (11740, '0x43909485fcf07959ebf49b34c42ed6297409c093', 6376), - (11742, '0x4076980d842c9835f85932b15df0649538c52351', 6376), - (11744, '0xc7c23aacc459770cfa3ae434cf8824d9c8fdfe47', 6376), - (11746, '0xe525b8186b03f02fc350b82f1efa8ce6ee456515', 6376), - (11748, '0x31befa6c10487d35ca9d0b6e163d14e3635cebb8', 6376), - (11750, '0xcc1344d6f4d097262f958a09b79698d1ff267682', 6376), - (11752, '0x6ce740a66acb3be3d3e233261f67d33222d7c8aa', 6376), - (11754, '0x01224df35472e2e56058d716676ffd8a21876b1b', 6376), - (11756, '0xa4ca1b15fe81f57cb2d3f686c7b13309906cd37b', 6376), - (11758, '0x18a185536b1bfc1f207bedb8e294c466afe0e8ff', 6376), - (11760, '0xc0ffe41e1273cc21c15303191f3c60a2890ed7e0', 6376), - (11762, '0x6f5c226650c1945737b0537a0ea5f07627c9a461', 6376), - (11764, '0xcf60f332096e079d8ed548e0e493397d3d23a0df', 6376), - (11766, '0x374482eea8c14670fecb12976286b39236e5eac9', 6376), - (11768, '0xdc1456fd7d2e50875463b50d42c6dda73720b19b', 6376), - (11770, '0x7168c9827631f02b51676822143d895367ff7012', 6376), - (11772, '0x08a2804e1f9af9965cc789a30896b7a228fec057', 6376), - (11774, '0xb5f39d7ddbf6d2a1a2427c222a34f8f13a598bb9', 6376), - (11776, '0x4a841c19b7698276547f7a6fa170986d3c69af68', 6376), - (11778, '0x900de37193018435f48e836a0042a8a4e13e976f', 6376), - (11780, '0xc9d093b7d1fc698ce1b7816a5a7f9f2a1fc8cf74', 6376), - (11782, '0xe23ef4b2a733bc7a07b9f94dd1603582f29694c8', 6376), - (11784, '0xa2a6ce14165e6e952335c9ab4f608c47c1690d63', 6376), - (11786, '0xe33190f67af066cea6213f18a4d9bbe2264bb9dc', 6376), - (11788, '0x368e6f58915f183a2d480c4dd0e2abc180958110', 6376), - (11790, '0x9f9ebce72c0715cdbad4d589986eb22f6782a1ce', 6376), - (11792, '0x1e27c17432abff8e314b421be50c63a42d3e95e0', 6376), - (11794, '0xd024c93588fb2fc5da321eba704d2302d2c9443a', 6376), - (11796, '0xdd0aa6907b1ef4b658a9c6a915f0130f500db969', 6376), - (11798, '0x34e893cc57b913314bb6ca70c9ed3356f3306510', 6376), - (11800, '0xa8eb650d195b8c271d16bdd80dfa0dc54a0fc27a', 6376), - (11802, '0x07008ce163f4242d335fc9242ef43a4172a9a714', 6376), - (11804, '0xb88e66613a1614b29443521b0a3a02e4590c7922', 6376), - (11806, '0xca8b8823bfc87f16c511a1bc89df3c2afb6f31ed', 6376), - (11808, '0x3da2b5a4838ea10b9870a65a1571da989a519079', 6376), - (11810, '0xfea62cea1174d1d3c70c48884949091878f001e8', 6376), - (11812, '0xb35e57aa406569aca4013986d142c1cded82c818', 6376), - (11814, '0x6f11deb3cfc3956c787b635961f4c860cd7d7344', 6376), - (11816, '0xc2e8de11f86973d7db3bf57ccc65684bc878ba42', 6376), - (11818, '0xac8bab52004c2dee7ea9981736e318559c1c4813', 6376), - (9744, '0x17a059b6b0c8af433032d554b0392995155452e6', 39786), - (10159, '0x751e85e5bb1df1d345a23d65defd5b8b0ef57b37', 129386), - (11824, '0xfb932f6fb13a5bbf6507260ac82b89162e265b32', 6376), - (11826, '0x2720004c7b722a857e94fb9d175fddb566ea335a', 6376), - (11828, '0xcf4e26a7e7eae4b3840dd31c527096e1265ab990', 6376), - (11830, '0x079b364e1688573776b2cdfb22638b8c1c1aa967', 6376), - (11834, '0xa802eedba8c8c9959cc7cb47ca536a06d485dcfb', 6376), - (11836, '0x8abbf1cfab304e08fe03c85243f49a70f10de849', 6376), - (11838, '0x1d550a5c36f866779c2944f47a02d49c7a89a48d', 6376), - (11840, '0xd897d8d6c19a4f981bcad5c96ba5311513e349d0', 6376), - (11842, '0x327d79f6f3bc2be79233895d889ebc6025282f49', 6376), - (11844, '0x69aaf03cefbd90b627034bab7453a462e27aa336', 6376), - (11832, '0x11c1503ba0a3a42773dc1a9a76edfe54b30bcc38', 0), - (11846, '0x1115e7bed26542bf247a7f800a9f48d530c3f955', 0), - (10709, '0x8194a62e85d4d277339a56c2c812bdca15b3cd87', 15890), - (10718, '0xe60ee66bd4db2e6da0f0c76275cb318add31fbf1', 20230), - (10727, '0xd572a74eb36f427f2d9dc0207fee18ba1aaf7412', 28400), - (10736, '0x8a4350f2cfe5c8378ad211f03b7b8bd1e5f93166', 24380), - (10745, '0xe6d377858d46b9b02260294335c8568a3ee85606', 20230), - (10754, '0x9827e110ca6a8a4dc32e3bc371947f877f5f1c08', 50760), - (10763, '0x4049ef5ac0b876f3c3fe7e69916f2d10a25db890', 15900), - (10772, '0x9fddd2024553edd19a43964b6e37d369f70089c3', 28410), - (10781, '0xde4805cd27dbbefe1aec5acf7682dc02d136cce4', 164930), - (10790, '0xc4e1c6f8065ac9f387fe31b945e842b4c1c41135', 30370), - (10799, '0x3b04f5fc1a7fe1deeeea8881a8dfb79dd25c617b', 15900), - (10817, '0x58aaf02752f72204d246a07a650247055755c3dc', 15900), - (10826, '0xc64e217d28672923ac2c4d6aa34f3ff96977c340', 20230), - (10835, '0x09987bb8a46c7d71171c0a68e221a31b46818b8e', 32320), - (10844, '0x94ef5e61fa3de11cbb3ff09837b23099733dd60f', 20230), - (10862, '0x506903a4f594c9b7a5075d8bc78696ba9865f4e5', 20350), - (10871, '0x1021cefcc7288b19af3bf38d277590ceb6b5904c', 28590), - (10880, '0x6dba42b06bf0f851d7ff37eeaec681f2f8c5aa5d', 20430), - (10889, '0x9d1ace163328da30ac26435f44dec6f7652e9c40', 20460), - (10925, '0x427a1c6dcaad92f886020a61e0b85be8e1c5ead5', 17290), - (10934, '0x98488c8a8005e8cae743d571d2a0f87db288ea99', 17360), - (10943, '0x3e7d5ef4c7f4593f1f726c75b1b089520a82edd8', 22160), - (10961, '0x8f791c0592db171d84167d10baa70fd6dd26705c', 39690), - (10970, '0x45475d7f1d18938ca5ff232216e9179d7826aadb', 49040), - (10979, '0x5047d41b57a38c43c2bd04fe0ea83fbdcfc8ffca', 35180), - (10988, '0x7f0f7504e5f2e237e41c15d78ec6ab6391d7261a', 48540), - (10997, '0xd12b78df063fc4bc7bb12cf1f060b55a15dd759d', 20910), - (10916, '0xeb40a065854bd90126a4e697aea0976ba51b2ee7', 78009), - (11884, '0x1ad4e5802aa0172d46ecadd97fab8470c5bd4524', 0), - (10808, '0x8152c059df7b9c24f459cf597382b0910a4629bd', 32981), - (10952, '0xe8560fa7b864d69a4d5a81e58116088773ff8767', 23806), - (10853, '0xe17be3fe72b3a9f3825b9be9c9e2e6aeb37fbd28', 34806), - (11848, '0x150eb6451795bdb5e1f7f29a59957a8b11b1fff7', 6376), - (11850, '0x627e71dea5e2d8183595510d19cba2525c90857d', 6376), - (11852, '0x173fec60ba710ff089f18d809319a5dbd1d62512', 6376), - (11854, '0xb8458e2c63895d416177cb9922f1217a767415bf', 6376), - (11856, '0xe8501032e7a50d767dc9b677905e0ce6534a8ef6', 6376), - (11858, '0x3dc79b11d31ccf8e8b41dd24eb39e4adf6680b86', 6376), - (11860, '0x39f0784c34eaf2a5a0e12baa1bc23dc140a87e95', 6376), - (11862, '0x9328d21ac16d746eda8aba3c7f0cfca91064ed96', 6376), - (11864, '0xe9ed1cedac3183ffc68ab5577738723a8b82e683', 6376), - (11866, '0x7cf9fd0c9fbac04ddc4659171b0a31c021b3e802', 6376), - (11868, '0xf7101ca96682e89b5592c537b47c1a36611c72d1', 6376), - (11870, '0xa4511be8f71beb64756fbd1c8acdedb6f9d2e6f8', 6376), - (11872, '0xbbcc6560d6b2407ff0a8247775b11f1c106ca092', 6376), - (11874, '0xdbdaa06d0070f5ffcea0f23f71138debbbcfc1a5', 6376), - (11876, '0x0000001089167600c25258da29d2e2c857ec1689', 6376), - (11878, '0x9227ba430a471e6509f17edfce7d2cecf8e2ff2a', 6376), - (11880, '0x76c2eded50424d060098b8bff60ec996827ffab1', 6376), - (11882, '0xce8d9c600a539bc577c68f82b1f2c05942492395', 6376), - (11886, '0x47fbefae757b07603024dc003f38b67c28b27095', 6376), - (11888, '0x66e8164ccd7cb81f574ed45332619968b6c719c7', 6376), - (11890, '0x869748793f089da607a09608e36cbac0e85860c3', 6376), - (11892, '0xedf296182faf8949f4bbb7c971a1cd1629bbf936', 6376), - (11894, '0xd8bf174ff04907ba1611e4ca63e63201c21e28f3', 6376), - (11896, '0x90f421ccd223a96218b6dbd32e464ab8cbfbbe8f', 6376), - (11898, '0xac0d61e3cca4f8ddf8467d2c23c3d52890c7c51f', 6376), - (11900, '0x1954094c1895ab7646cbf1eee89c51ad17302ba5', 6376), - (11902, '0x00a8d7158983dc4693a684b023cb3333082fceb4', 6376), - (11904, '0x71d288aa30f91e010befbc22a13ccccdc0037b79', 6376), - (11906, '0x5b7e8653079b1d7b92f6316a68acf10dd065741d', 6376), - (11908, '0x59d2bfbe59324b17f39569ca8eb5c9ca15437777', 6376), - (11910, '0xbae3c83f02673707f5f8d810c728a6fc9f091071', 6376), - (11912, '0xfe3bee940f57e2ad63bc76438957d46954e2df09', 6376), - (11914, '0x0d0ee47cd0dbdf143bc3d3201f00db53fb399d4b', 6376), - (11916, '0x5e36619379a69671045f3b66fa89f563980e13fd', 6376), - (11918, '0xe2c45806607018bc9611cf67db3249320565d841', 6376), - (11920, '0x6e210fe37a9c4e59029a00a7b9c6048c2a314f27', 6376), - (11922, '0x9f78cbde6e9b1921f5f88c945bfb43f4a9d7f3e1', 6376), - (11924, '0xbc9c3d9f10f2cb053f6fb7b32acb36af9a90ed3d', 6376), - (11926, '0x327b5a03aa0f9682896e4049cf8fa304be67d13b', 6376), - (11928, '0xf2e2dea3f9c647546cb49392c43b146bdc897c62', 6376), - (11930, '0x879de2a21aaacfb8bdff45ae939417682fa68463', 6376), - (11932, '0x4e23dcd11c17ac64ea074c3897d32742cf80dea9', 6376), - (11934, '0x1acc03793c9c70fb469d340eef4de0a70b6863e5', 6376), - (11936, '0xfd93216853d1cda1843b29b755918c484c6c73e0', 6376), - (11938, '0xa004250e64fe6c917a2c53b8801cdf7519d1b2d7', 6376), - (11940, '0x64e854e874b3a1f8c798252afac62faf16de2fc9', 6376), - (11942, '0xbc22bfee64142862c56b3274cef4beabf274d819', 6376), - (11944, '0xf216f79552cffef9c9b320bf28163d6e61d9ddff', 6376), - (11948, '0xd29f70d5cc81ddb6aabf6e8a1bdcb8124d06a92c', 6376), - (11950, '0xc4fd8e59157fd15331dd6ece2a313262095ba7a4', 6376), - (11952, '0xe78066f3991267fdb75cffa171ba5466c60692f2', 6376), - (11954, '0xcf31bf0a862637a632b7282bc3533978d9923e50', 6376), - (11956, '0x98360dca0ab157737e880edfaf2d21496081487a', 6376), - (11958, '0xbca3f737df920c753183de9551a81b950ee68d4c', 6376), - (11960, '0x6deb09581234449c854ed0bad679660612ff5ce0', 6376), - (11962, '0x33cb6108b7c97e348cf430c288cf4ca12b379666', 6376), - (11964, '0x3b3a826641f09a91f7e8830870052ec3be5cd237', 6376), - (11966, '0xce9e0cb140abf50ff1c732a4f4f7646597a476e3', 6376), - (10700, '0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2', 0), - (10898, '0xfbeb914c3c9b7a193c92de130a18716097478332', 0), - (10701, '0x5db92c4a7fdae009ea763b26d74d33da3b1a7ccc', 32320), - (10719, '0xad21b59f622751c03b3a7490b0ceada3b9e199a5', 20230), - (10728, '0x15f6cd177aa8fe97e7d00edb3beed4bea0cd96e3', 74590), - (10737, '0x43b15c7c74f7b5cdee3aaaca0feb868d04f37d46', 15890), - (10755, '0xb5ed0c31f5f590262879f73fdfccb170681e028a', 24380), - (10791, '0x00779b79bb1ec71ce36340c1128687c61cfb0feb', 20230), - (10800, '0x990189a4e4d6bf1165efc2aa9b4334ffbbde384b', 24380), - (10809, '0x6110197614faa24e37cc79c76e4f0ad6eb27ce0d', 32320), - (10818, '0x2db2e3a064402a4e73efb0da5ed43d93e8ead982', 15900), - (10827, '0x37c9de43d09106deb57e0db5a3eb427388807ab1', 15900), - (10836, '0x800f86e125503e8b0d813b3429dff1fe78a67c78', 36150), - (10845, '0xe75918343cf6b74adf0beca7bedcfffc67ba4458', 97010), - (10854, '0x6f5ccd3e078ba48291dfb491cce18f348f6f5c00', 301870), - (10863, '0xf378bc06e8a1cc7c26bb27e6f81b84802198f4ac', 24530), - (10872, '0xe24be815d490264a641951d39e8bb0742116df7b', 94470), - (10899, '0x1e843e199fa59a5a7faca89ebd8e69ba3c9cef22', 24840), - (10908, '0x6dda6e7ed0a718a0a88e78adf049f200f102560e', 16810), - (10917, '0xf67825d3bde95a0bbb1a063e06d51b79e7061c05', 50120), - (10926, '0x8330a84d3c16a55302f921c36979b1067418053a', 39310), - (10935, '0xac4abdff74270d9eae99e31f2dafefbdf78cdfd3', 17380), - (10944, '0xf42c2b956bcab51abb6555f5a06ee582e4581c71', 22170), - (10953, '0x3db103d67b5c555926b933a68faa963e08cab829', 17440), - (10962, '0x8a4a50b13fd2cb36feb96c408cb98b4c9f2b8f25', 63510), - (10971, '0x0d6e94d085a597f316be1833649e05a45103e873', 44900), - (10980, '0x2920a3192613d8c42f21b64873dc0ddfcbf018d4', 28060), - (10989, '0x0150c608a25176c08d9bc8b43d0dc64e4c9f4a58', 34950), - (10998, '0xcddf6531cd48936fc850e51b95a3d3d966beb43d', 21030), - (10881, '0x873ec853a4545ddc1d8568988b72782798b22db2', 33201), - (10710, '0xdb1f7bbd4f81dabdf80a85d73ac721d62309b510', 1846946), - (10773, '0x45a70d5a68cd055a47a83456758849cc774132c1', 34786), - (10782, '0xb6dd92fd48cf708ce1aa6d70332e9163a0686e3d', 26606), - (11857, '0xb1e43929d89eb1711429fac95ceb55ae32aaad50', 6376), - (11859, '0x4fc0bb93ee37b0ef0f03f6d8f17e0ddc977a9614', 6376), - (11861, '0x3d933f0b614d1b39f49fc9b2cffc6b3f050bb5d7', 6376), - (11863, '0x4f35fa72bd434928c1d5e0fae6b18b1b15de9653', 6376), - (11865, '0x9029d787c32a15796cdaa2a3b0f1d4750ba46f1f', 6376), - (11869, '0x7b4e186a36f014b38455c3a271726bd2f48d93b3', 6376), - (11871, '0xddd8e889e1fa1f6acf7f5bc76cef10e4dd965d49', 6376), - (11873, '0x4c7b3fc43ff42ee5dfcecb82576725b703498ea4', 6376), - (11875, '0x7efa566c0af199846d47d12f4d0689dc8a05428a', 6376), - (11877, '0x849a1a6b896b9d31008b0dcd1db68ce4ac71ddcb', 6376), - (11879, '0xd165c821858fbcec5b4f8c1bf73780a6c730d7b9', 6376), - (11881, '0x1c3570b08ed6d37bad55ae530e0126b55eb2f2c2', 6376), - (11883, '0x5c58cc649c0035fda934bd6e6a10629d91da390e', 6376), - (11885, '0x6d5c7dd84b16f4e02b012146fcbb90e9537b9cce', 6376), - (11887, '0xc5255bc2cb384c67a62b91670b000bdf23b6f176', 6376), - (11889, '0xaacc166576a1e767af788f1dc28b4a995c0df621', 6376), - (11891, '0x8d71ef142589a851b383d6d0129e61f95a2eba72', 6376), - (11893, '0xd5c045f7bd2465d3973efc6c1ba3a8099ca27ea2', 6376), - (11895, '0x89790dbece2a973d4a19bf381bfadadbfb1072fe', 6376), - (11897, '0x5f4611fa00e3036b98292f8ccb13b6bcb03fbb3b', 6376), - (11901, '0x9871b8d1fd839016d8fb4f6beebd2e0791dcf9f0', 6376), - (11903, '0x74815d9160160ac4c8aa185600dbcbbc688d5a05', 6376), - (11905, '0x4ce1852a78f2c30e67ba9f62fdabed7bb31dec1c', 6376), - (11907, '0xe6cbb07b245f99ec1166e71b0d9b1ef132f9452d', 6376), - (11909, '0xa235054eea31b2a303fe64a27772c42325451271', 6376), - (11911, '0x37b51ead004cc6fd376cf6da8e54f1e7c737898a', 6376), - (11913, '0x5083079c12d8f0f84b8da6f8c1eb0655d4be0f22', 6376), - (11915, '0xc542d0cc017d95fd27abf507aeaf9502fcb62eeb', 6376), - (11917, '0xa4bc3a0c5ef8373c08fc3cfe45712116e10ffd10', 6376), - (11919, '0xeb45586d8df4180e4b5e159e6c15b874185b157b', 6376), - (11921, '0xcae09df0efa9684eb2a32d7205867c230b31a10b', 6376), - (11923, '0xa51ee44988124588dd2eb02e7e0c6b8b53282d8c', 6376), - (11925, '0xdbd18c98b4062f0af4a00ebb7a810d3d406ea829', 6376), - (11927, '0x8bb9dfbc8c11724eb10aea95dcffe6c6a43b0ec5', 6376), - (11929, '0x2c324c90fb1f439ed4eca3f2deb087d8aaf3a848', 6376), - (11931, '0x419fc6804ee29de52228f95d1df35e91ad1284b8', 6376), - (11933, '0x6810e406204f87e167f8ae547db4c45fc3cde6d1', 6376), - (11937, '0xd8f30b88ce3b018a52e0b82931e34b1d05906ef7', 6376), - (11939, '0x723c17ec11357077ff881c581c66ad683a43e2cc', 6376), - (11941, '0x1a11a02a51653b838703338f53fe2defaca2e1c2', 6376), - (11943, '0x9043c82ab9cdd45b3404183fca9ac0a2a3cc5c44', 6376), - (11945, '0x55971aa2395b24e4c69123e56084b36a47fb06b7', 6376), - (11947, '0x6b4bad9e1aaf17279b7956f7af47092e316fcc29', 6376), - (11949, '0xe7de8136a0af3cd5b732937fda45265ad0e42627', 6376), - (11951, '0x33578e27d9eb1802be21df89c2df0200f7943cf2', 6376), - (11953, '0x04e933f31093bf077770d3e6a616cdbaaafa96c0', 6376), - (11955, '0xc230c9e1e0d1e91b98d877a6d70d512b5b1e60dd', 6376), - (11957, '0xfedf6ac3022bba3ab4fcdc973eaae88e9c757657', 6376), - (11959, '0x21ac79fb997a4062e3b08ae8c1028adddc02960c', 6376), - (11961, '0x6cc40417cc389035de57bdd3eba0b919c334cf23', 6376), - (11963, '0x8138e7fb05181260541a6afb4ace3b3ef1429b8e', 6376), - (11965, '0xee99784b7532e09468dcaa0a7e9e98477f7e323a', 6376), - (11967, '0x87b8e17f82d487de46468a31aea601e3f3283b5e', 6376), - (11969, '0x4b50c795a35c2425bb9bed0de92a20a2734084dd', 6376), - (11971, '0x3f4f4158f1c23c4c51c6ed7b92b6bd26a1d6fda0', 6376), - (11975, '0x3186df09235ac2095b354794884c7897f8652b50', 6376), - (10764, '0xa086c0487531b45431b2397d24609c6d0e09d089', 34786), - (10746, '0x555449d6e2ec6c72735a8c8341e1e039552407f0', 26606), - (10890, '0x140424f1096a594c6336e0030163e289719a5a74', 26836), - (11899, '0x7f70be4cee161dc5273eacd5e1db5da3d5c60567', 0), - (11973, '0x2c2926b92782e30150ff779220a1ece076f2a827', 0), - (10702, '0x5d367e19406f4ede875017c267cecbca0bac782c', 28400), - (10720, '0x2c586635b636d1bd69a169466a2d67a95575bb94', 20230), - (10729, '0x4d2f3a0ab4b478f27d3d788f5ebd3813908b7fb4', 15890), - (10738, '0x992e969b80fc9986a2c201c3ceeae9f6aa02bd52', 20230), - (10747, '0x3d9fefe6135a532565fe39e7dcc91d7407ff3615', 28410), - (10756, '0x2f29d2321c61d47d87ade1d434f2d6c9274b3de8', 15900), - (10765, '0x11fa210ea51acc460b8da8c1370a08ea31b64a55', 20230), - (10774, '0x69ab37852d06bb0c20a484b0fab46b1169a4011e', 15900), - (10783, '0x000009209e16ddf2e0abe52fc2301f0f3c9a7d50', 20230), - (10792, '0x0ff624126463de908bddfd294ac4a44f397799e0', 20230), - (10801, '0x9e2bd55c17547acaccc183bafe9e74749d675195', 32320), - (10810, '0xaa6f3d9e5ce9d1451bd73a21a7983d27a96c1fcd', 20230), - (10819, '0x7c426a5b23541769ceb8f9e3fec6e7bd8ced311a', 15900), - (10828, '0x5e29771c89511788f112fe12e591eecbfa62ece7', 15900), - (10837, '0x39e94a7cc47398f667552f6fed8f24507eeda818', 24380), - (10846, '0xb91b845bb5ef0e107c97fe2dacac8748f312be6e', 222360), - (10855, '0x6350922658ea7d425f9abe00d3d5aac93871754f', 20270), - (10864, '0xce508db1519e862d6cff44b4865e654b9cc5bf8e', 15990), - (10873, '0x9291ea9c52e9ceab1cbaf30903ba12685b1f918e', 16000), - (10882, '0x1d1b531c856be9cf93ce93d8914597dd8e2564ad', 16070), - (10891, '0xe6da7d05061724486edcb59732e595a7bb979e77', 128860), - (10909, '0xd26b76e50f6510cdd4bf45d59279705f36946d23', 30110), - (10918, '0xd892a5aa9ded7d9dce8355e86dc2b8d9dd788b73', 30440), - (10927, '0xcaa30374bd717cca5e4528c26cf5845229160ad4', 17290), - (10936, '0x07b910299e7e74096d7091af11fa5faa68dad888', 43650), - (10945, '0x89b7e599630f11fef1a03d5b99500e0c42c617ca', 31140), - (10954, '0x48227dae207ea7d684d677de201d63cacfc4a567', 31170), - (10963, '0xca5ce67a4cc81875f9e687c24ac81d1a6a2ee841', 22220), - (10972, '0xc4f14b238bcd25822b4639ff94b1b2025aca5e08', 32520), - (10981, '0x1435cde114ddc888ea8411ba9878282672e432f5', 35090), - (10990, '0x411d209e4874e00dd550de43190224515b28fafe', 30350), - (10711, '0x864d9678b5613c4459ecde40fc5f76d292faaab2', 22266), - (11968, '0xdd7ef5cf82ccb87de569c8dd041976899a1f4fc9', 6376), - (11970, '0xce2a8e9dcebfd6aed17faac7fe9a00ff7bd1a826', 6376), - (11972, '0x327c86611e3a262acaa0bd5468ffeb5fa0cd3108', 6376), - (11974, '0x675bbe59a7aeb09af04cd0db2c759a1275bcf438', 6376), - (11976, '0xc0e89289d179151768748297395294fbf3cb8d0a', 6376), - (11978, '0xdaa1ff47fa69fb3eb86388c14d849c0e9b43ecfd', 6376), - (11980, '0xd44f982c62037fcc3d486ee5c0e51bb8e92cd19c', 6376), - (11982, '0x0dfe227fd474ba80fa32ea59ec9570a66e9ae167', 6376), - (11984, '0x989ebf65b8ad3945248a87fca2c99cc14bf41b0e', 6376), - (11986, '0x2845c81cd19e784edeb30307fe031135abbe3ae1', 6376), - (11988, '0xaab44930443da73e817b6f72a1cdfd6bebeb6214', 6376), - (11990, '0xdd825bbc81a9330abc2ad9e5fc8527007b3f2609', 6376), - (10225, '0x3a913c373169883d778f14195cbe827cc5ac2da5', 20726), - (11994, '0x710ce330e997aebdf895381d5b069d2ea3b2b301', 6376), - (11996, '0x672435e805d7786ffb8f0efb7b5f44f2c6cf4653', 6376), - (11998, '0x07854877f8a6ea542a29a963bf040ccf63d3a893', 6376), - (12000, '0x260d5301b7f06bf7c44d72345721b621be4eda05', 6376), - (12002, '0xbd7d95a836f8a790c6565d44c1984c55ceaa56dc', 6376), - (12004, '0xa27106c24179d9e5459d3618de7797e61cac8b82', 6376), - (12008, '0x0ecf5262e5b864e1612875f8fc18f151315b5e91', 6376), - (12010, '0x1543047e1502fb470df70ceac429c34bde07cabb', 6376), - (12012, '0xa3a5fec19eed6a68b57d6d79bed0572434d70476', 6376), - (12014, '0x371d91ed47d2f84fbd0126b8228e5cbc070e2bbe', 6376), - (12016, '0xe93824137e1ea4965dc5b5156917779a70606155', 6376), - (12018, '0x444fc21b6d6997e73b97ba87dba26ec9c93e2b2f', 6376), - (12020, '0x2a1021e7796a54e702f26f2f59e5ae833f4a7b04', 6376), - (12022, '0x142c408af7c814cc84d6f8b17890d09aaed3dd1c', 6376), - (12024, '0x41da985b880835d77ca3e927ec241fb4627028e2', 6376), - (12026, '0xa635a137bbddc01a7a8a09680a91dd72cb71c100', 6376), - (12028, '0x43e3aaaf5c222762b27eb1bb4d237acb28a1925c', 6376), - (12030, '0x9f6cd20b41fdd6ee0ddca5c0de78342cca7e800f', 6376), - (12032, '0x4ccc0316259f49c06fc47289d21e63635c5a5028', 6376), - (12038, '0xe3f1a9201d84aad668b669d3949bb5640b4476ae', 6376), - (12040, '0xae2a86410d39f3924fd634c958ef3e9ed89668bc', 6376), - (12042, '0x64615ca03127c6d13ad0263df68076e8493fe21c', 6376), - (12048, '0x217107c6157b487fc55d99535141d9514c308f3b', 6376), - (12050, '0x886a75bbc6865a7cf4cad4f5f737a0478bb090c7', 6376), - (12052, '0xa14dc69ece7266f9d915842acdc2bbf52335f126', 6376), - (12054, '0xaf1f22068b810495fe0ea1109fad9493d7ce92b5', 6376), - (12056, '0x83554d6c06cf813b15396ed18bde844bb6465382', 6376), - (12058, '0xfab707659395ebe5c2b8d6d48467503d39521e4e', 6376), - (12060, '0xdad3fd6c9fb0c2b56228e58ae191b62bfb1bec83', 6376), - (12062, '0x33cc3f16be5090b9268d62a22bc4a21cb39ca8cc', 6376), - (12064, '0xfce20962a57470ca7f15f6e160854d9e444866a5', 6376), - (12066, '0x85c4ad2a8d063a54d2d43674f70efb7d353fe582', 6376), - (12068, '0x8bf432c5244de0df0ccac447f55dff8bc0c29e3b', 6376), - (12070, '0xbee58eb5245cfefaa72a8e3a55da95d434a203e7', 6376), - (12074, '0xd053cf37b041c653e278425394a842482a856e6e', 6376), - (12076, '0x9656fcd6223299da8055283110113ba3cc9d88c3', 6376), - (12078, '0x5176f4e4817e93f618af7c905ec421eb4aad4786', 6376), - (12080, '0x92b7d51b8979a710f07dcf26402f5cfda3d42e65', 6376), - (12082, '0x909c9ba178f0312c717d99167b3a09c7248ac50b', 6376), - (12084, '0x587f6ca447fe18b2612e0c398734f495ade9d972', 6376), - (12086, '0x99976d14ddf43f399209344d0fb1fd773eb5097a', 6376), - (12088, '0x4f38f4c7f0c9e806c69b1cddae1b1eca0f84cd02', 6376), - (12090, '0x7c736b735683d37308667603a9922b5f87038cc1', 6376), - (12092, '0x84139fe1b70f23c48d0e3dfd976abb0124f4a29a', 6376), - (12094, '0x2369408c6eb0276a161a5286c7eedadaef952afc', 6376), - (12096, '0x7f2b0f1fbb152ce49f526465d54f4c5678cde706', 6376), - (10900, '0xf723d05f10e8503feaba5cfbb9a5513eb8ecbfd6', 0), - (10703, '0xe0b536a468496f9e9590f62e3b97f4a085b30283', 15890), - (10712, '0xb8410c4b10cb3ec99eca5521bf0189cfd171fe5e', 47190), - (10721, '0x3bc109da04a69322e426fa7a4f6fc369a55cdb52', 20230), - (10730, '0x57c1d0f3dae69d24a47237c8a57b5b5395c15ed1', 20230), - (10748, '0xf0ea9ce6d0464592a938835bc53b6d4e54a4b59d', 20230), - (10757, '0xd6d05b3e98f8337a6b8a0128a0d817f35f5e32c1', 20230), - (10766, '0x520be8f2fd27226499716d18ec70812b28582d66', 28410), - (10775, '0xe853ad4d11fa0f9da7ef8f620b397c72f5cde37a', 28410), - (10784, '0xc4ce9988708f1f447609b38560e8afcb540b5f56', 15900), - (10793, '0x700fb8c4447784b6381d482b16000828f6a60fe5', 74590), - (10802, '0xd87ac5b91ca6202d72edbdfa084b24f0f429dc4e', 20230), - (10811, '0x69167e79c15223f4a254d8b9b43365bdf15f6b24', 20230), - (10820, '0xfb7c71bcc5c594b12431f0d06d230ccad2b55d95', 39890), - (10829, '0x0caffcdc2d71e4c51267e867bd8dd90aeed84383', 39890), - (10838, '0x1e808728a9ee1027809d2e4cb276d452cee74bd4', 24380), - (10847, '0x14d1a955e2467ee8d04d747eed647c7966e6ac06', 43570), - (10856, '0xdc06d8eaa3dc6c68a447849edf0897e469386e67', 20280), - (10865, '0x7251c7c5ce642a9a7c81ff48463948cf13016906', 20350), - (10874, '0x1a5e1ecdb654214c197a2e2be140fa79fd963d97', 20360), - (10883, '0xc9aeefaa9609dbeaef8b7b9d606b9049e9fae5ac', 16080), - (10892, '0x8587b002643cd4e58e5b2fc97c7e7f8e65c21763', 36560), - (10901, '0xa8f30bd1165057f81c7b6629e2501e428f4691f2', 114410), - (10910, '0xd60df7f960c20dc06acd9a3844349242071d4d57', 30130), - (10919, '0x37e1118e1f4e1b1223fe9495c10ed3505950eba9', 30470), - (10928, '0x89637e840429edd9902209efc1f3a58350de0e13', 43510), - (10937, '0xa39e07467b1f349530a3aa3d5b6ff0a89ddf8e23', 41780), - (10946, '0xf85d965e9fd4607b000110253214f49231f0031a', 22180), - (10955, '0xfe08945f392cf1873f2c5b1bd7c7401e452153a8', 17440), - (10964, '0xe57caba8b8d3bf68ce2f8c8a5b6f297d0f6d1253', 33750), - (10973, '0x89d2bf03c96d40c9af3a3359a93922fef697b1d0', 32030), - (10982, '0xb2e30a6f950225f2b089798480f1e5b97a3d4df1', 18380), - (10991, '0xcc7842f66fa9a8ab6920854ec3db9517aad9bbce', 54730), - (11977, '0x2021e6b2954a7896d28fc93a2fd3855990183aee', 6376), - (11979, '0xf571a3629859764bc15e884aa8751675df7adf52', 6376), - (11981, '0x1820da45dfe38f936b3d6155b27cc5ed21ccf1cb', 6376), - (11983, '0x044e8ae534363d11e660a17ad0356da1e54256e1', 6376), - (11985, '0xf5a9112d28704ea9168db9195f994bfd8dbff574', 6376), - (11987, '0xdb4fadd4aa56848e5d1e076ef6fea5edc5d4eadf', 6376), - (11989, '0x6789d70b541a6e7b443d0857ba9743d314de5565', 6376), - (10633, '0xd8c70fa1c7c997e172a124bf808bda3ce15c03e8', 34776), - (11997, '0x40eef6eb917b220d4f65b6dd7f237af6239cf822', 6376), - (10655, '0xda3930fff973016aa0406638faa42e77bfd25f0f', 22266), - (12001, '0xbaf94ae78f82bfe1917a1736e5184ff4059959d6', 6376), - (12003, '0xb24534c49b66e4b3d1da29cbf58e4ad76f414e81', 6376), - (12011, '0x4f4c9650b8a12d9ba9e69aec9c62cc5c03fec9d6', 6376), - (12013, '0x1a3b7d0c1bb485a8b367051b006d0f18e4e2863c', 6376), - (12015, '0x9175298177b3fe1708d803d75416f55173fadeda', 6376), - (12017, '0xdd2505d6479d63dd8126e05c5cbf1b647d3716b3', 6376), - (12019, '0x39a1382da384ef9e87975080d6e4bf658bfc8363', 6376), - (12021, '0x3622450d624014e15e4fa2a396a0216d298eeffe', 6376), - (12025, '0xeb7122beb895f31aa83871ccd1219306d9e302be', 6376), - (12027, '0x347133a727f034e1b5797935d7b83183c53988b7', 6376), - (12029, '0x60d676a5fad212f737134e5b1720ffca55b40845', 6376), - (12031, '0xe07da592d8b3108e01b54025be260a51992e846d', 6376), - (12033, '0x0fb371e350144a0a67410512947612f260c0f592', 6376), - (12035, '0xb721c340ac23b010fad27f96a69b2f6e9d518d6a', 6376), - (12037, '0x8589bda82e63761f8fef907408306b7f4a865e68', 6376), - (12039, '0x05695d4ef2b1c942c418a32fa38c5a9eba61b09e', 6376), - (12041, '0x5b0bc42954853abe398f0869ca455b1bb9fd4680', 6376), - (12043, '0xabde88d1ab637225e0d91b70dedf3ba1778e79c3', 6376), - (12045, '0x5513e029e20dd39ca7415782372410f3fb1c889d', 6376), - (12047, '0x7e9375ba40ecbada999530ea6b359337002c72e2', 6376), - (12049, '0x0ee9187d7f736dd7099d088f8a5d15b1511712a8', 6376), - (12051, '0x96563c1f18eff08d8cd92aa0ed106fe68f506e98', 6376), - (12053, '0xe9c815d9234d1b1701c7498701b4efd641bfc86f', 6376), - (12055, '0xed9b3aeb0097b74219da84316dba58b5d7762b21', 6376), - (12057, '0xf0c56251ce95e39882cc58f3cc14272771ae2f44', 6376), - (12059, '0x34202f199ef058302dcced326a0105fe2db53e12', 6376), - (12063, '0x308407e37caaf80af02637e39f54b031f7fb010e', 6376), - (12065, '0x6a888657ef157d2e55ff54edfa9ee93647a8e118', 6376), - (12067, '0x5f5df74b3073bdc886c60e6f14d15ac397e26ea6', 6376), - (12069, '0x7a1d0ca0eebbb4029fb70f96f6ffd5d74e9d3d9d', 6376), - (12071, '0x41af0d7fb412d07d2e4ae1cd1ea8e9e05bbf1b7a', 6376), - (12073, '0xab0ae5fcb0dc1cfcf3f0a3c0393ba2d1afd7f02e', 6376), - (12075, '0xa509583c560e92c2f668af9b1f74eb43f4b91653', 6376), - (12077, '0x959b9cbd175269a502bc93937d8a5c8aeaf9f8c5', 6376), - (12079, '0x3c8b5e72bcc18d167dfe071906549ccb94f06a19', 6376), - (12081, '0x4a73a8627727f09e0e25518df6a64f58bca4cb99', 6376), - (12083, '0x480fdac187f65a80d2559f2bdf7f5db9b8e36d2a', 6376), - (12085, '0x4deadbe362fbe9897becbdb42dca45415c438f9e', 6376), - (12087, '0x59029651d3d7697b4f0edb26940fd89fe2fd42d3', 6376), - (12089, '0x4f01bf31b8d654af651c0c10e165fa6c390fea46', 6376), - (12091, '0xd816069ceb9d1ad7d2b2d42349e024762821564b', 6376), - (12093, '0xc55eba3224a99249ea0b59d7a092eaf04e38caf7', 6376), - (12095, '0xcc9772e321bb9c63de0890a9618613baecf01eab', 6376), - (12097, '0x6c809be128c5aed185e2a30c5a31c5cb2084579e', 6376), - (12099, '0x2f1fe83bb5fd90297d0ceffac6d94e3e6964c4f5', 6376), - (12101, '0xc9750d1dd51c4ab30a53558d6d0ce466ce59142e', 6376), - (12103, '0x713880383855b5890777386a386e58fa24a87b61', 6376), - (12105, '0x3d44e6465c426eaefe7b7c3445473e4035b67af5', 6376), - (11995, '0xed08e483557bd0955fe5fdebe464293a961edaae', 0), - (12009, '0x61b4ba51c934b5c503e4efb110eefe10fe364476', 0), - (10704, '0x2fedc3e20230c228c922e561197c5ea81dd8003b', 32320), - (10713, '0x2b2d0c0621dbfa33371f3fe7bc45683b97840928', 38030), - (10722, '0x6179d6cd67c265e7f7cddc6ea354e133e37def32', 20230), - (10731, '0x024813b4972428003c725ea756348dcd79b826e6', 34240), - (10749, '0xea2b66fa5e2239802adeaccd5326154c928129ef', 28410), - (10758, '0x2d1fc47c4d6abb030014f68fad23249257f73ed0', 20230), - (10767, '0x156803b87433656634666b433a1aee442dbb9acc', 24380), - (10776, '0x35811637d7da4292a8cc47af2cc6dc0d69c6bc69', 34240), - (10785, '0xb22f9bab1010075aefc319a69ee2f66ec8a1cea4', 47190), - (10803, '0x0230f604a7697607fa07376e15f6a46ef1aff513', 39890), - (10812, '0xbe7ded7e6d4ce89cc68ee8fc579c7a28b60e182d', 15900), - (10821, '0x02892867cd0dc07d4ddf193c23e25d4228aa002e', 61190), - (10830, '0x5bcec71723bebca19ab1d91ed816950994f41f5d', 64590), - (10839, '0x46dc9f18d5d6eccc08184196d858979a585f632e', 15900), - (10857, '0x54319e41affd0211fe22c34c2c7fe3905f87cf75', 28490), - (10866, '0xe994924091a7034ce33fbcdb082836165f5596d4', 47490), - (10875, '0x894c933c4113fa86a84262f12610d4e8266e9194', 28590), - (10884, '0x672c3b982325be86e221fe5d0eb5391ffa9cc8fc', 40350), - (10893, '0xd03ee5f22c5d46f502fbc42d39354d46540627b0', 16080), - (10902, '0xf8ce3248ea5917bb13011d516d2f3c0e0774af8c', 29330), - (10911, '0x1fde40a4046eda0ca0539dd6c77abf8933b94260', 16900), - (10920, '0xf9c1b47e7b37fb243252b958e23cbc7608ef996f', 30830), - (10929, '0xdccf29fa0f10922f6284441193b0192d361101d4', 17320), - (10938, '0xfbf0736eb2ac1c4bb0193ae54c53e182b18037fc', 26680), - (10947, '0x0e10c415e2a7d652276a3ded645a33f2c9a4e163', 22180), - (10956, '0x458676bd480bc8de1ccc07094e34c00f47dcc04c', 31170), - (10965, '0x2b1733518a3cfa27929b49f5598e979837a519fc', 17740), - (10974, '0x7c45fb10a18f834a47cc3f470e97140a399b6af8', 32630), - (10983, '0x984886312107a9ae23b8290d6c1d519a737283a2', 23430), - (10848, '0x3e10afc4b347dfcfef62dc16c1f34b87b66f8632', 46266), - (12098, '0xa456af2c9f5c37e1c04289eccfb92cebc4e9e9ce', 6376), - (8071, '0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453', 0), - (11002, '0xdf518c6e0d12a7db0ff93d2b164d13cf7a2d17f7', 318776), - (11011, '0xbd19a3f0a9cace18513a1e2863d648d13975cb30', 102008), - (10083, '0x0cb27e883e207905ad2a94f9b6ef0c7a99223c37', 128903), - (11014, '0xd72cb55fd6e7d94808b27b15f6132cdfcf5a0461', 76506), - (11015, '0x7843cd3d61bee45530b1e6957cdd4aa5fe539207', 70131), - (9041, '0xa41a9630b65e4ea1216211ef99c5b2b1db069c85', 0), - (9778, '0xcb9c7ac0f635618421e6692f573511f9fa002a15', 64195), - (11018, '0xd3e9d60e4e4de615124d5239219f32946d10151d', 63755), - (11019, '0xa7a3a06e9a649939f60be309831b5e0ea6cc2513', 63755), - (9804, '0x86958a1219ab83c92779285efeb0d9dc186e24c0', 401285), - (11022, '0x8b2e10bfd9f0c2813905a73ae2acd0468c623082', 63755), - (8267, '0x547a2e8d97dc99be21e509fa93c4fa5dd76b8ed0', 179655), - (11024, '0x38eed3cceed88f380e436eb21811250797c453c5', 57380), - (11025, '0xe04885c3f1419c6e8495c33bdcf5f8387cd88846', 51004), - (11026, '0x4c55c41bd839b3552fb2abecacfdf4a5d2879cb9', 51004), - (11027, '0xcf8e7573894cb97d2589efdaf04cf65b8ad94cd9', 44629), - (11029, '0xcb42ac441fcade3935243ea118701f39aa004486', 44629), - (11030, '0x1350f912f00f09b8fbbfd71ac73a286c0cd814c6', 44629), - (9241, '0x808a2adbd0a3fc679e3f7cd18d4f579bfcaaec9c', 99133), - (11035, '0xe4cbda373d6a445f83fc9125c6230ba58bc08320', 38253), - (11036, '0xb393a72280b962e6949f98df02f4f209d4a65991', 31878), - (11037, '0xfc4b70c62cfc5c9f5f6ce73c9f77ec71be3fc7c0', 31878), - (11038, '0x17bfae728d96a722e3272fec234a90a92b956f4b', 31878), - (11039, '0x12fb165cdd16a8983ca27d6cf6b8ab89eaa34f4a', 31878), - (11040, '0xea806a9aceac4463e9ab8bedea6750c533bce573', 31878), - (11041, '0xf9216b5c93b095ec28615742c83428fefa989e01', 31878), - (11042, '0x1d23f16cbca5acb6798b4fb28fc5c061897c8d0a', 31878), - (11043, '0x543b556c1b16804d2a39f054f06df4cecf2f167e', 31878), - (11044, '0x64fa771a4569eb6452902af9489665fd1b712feb', 31878), - (11045, '0x75ddf1a42656a247f94d28c03cfd5e8187e62e27', 31878), - (11046, '0x4ac65d471dff719a0cbbb09f73d5b939cc635d61', 31878), - (11049, '0x7c1555a3cae07da85488e941949dfea2122c727f', 25502), - (11052, '0x481775a1a694c31da312cd1b166e353151fe0579', 25502), - (11053, '0x36fcc39081773d8f8783dda9dfa0c1bff24d76f1', 25502), - (11054, '0x2ee16d52ba82b338e5c19bcb4a12ab7bb74ee401', 25502), - (11055, '0xe437bc0fe994a491d01ea651ed63c0892d85ce45', 25502), - (11057, '0x911b54451403b08fbf74f7fab18bd4944ff9b586', 25502), - (11058, '0x51a795f29cab4e757d0d017c44b260ef9160b1d7', 25502), - (10794, '0xd3bc9161eabf73b1695452ca0e1706f86b196721', 45071), - (12100, '0x5be93e835f684988b8416628052dd5540be20341', 6376), - (12104, '0xe38a2623b6ecabd6a49ee8484fa6ba9c79868b4e', 6376), - (12106, '0x00e7a1181a32d03bb17f34f2903fd86a4370027b', 6376), - (11009, '0x11b4e83bc3e9605f03e2a4c34bd09567be5aebbe', 0), - (8648, '0x892e7d0d45171c97f2f1c73815c1cebef3d1f812', 0), - (10992, '0x5f57c686bdbc03242c8fa723b80f0a6cdea79546', 0), - (10740, '0xdfd9ece04dba2b28ead6a3c85c7474306f0b2ff9', 0), - (8901, '0x5b93ff82faaf241c15997ea3975419dddd8362c5', 0), - (10082, '0xc9737651e2a88e2e3e8395ac98b4e3a360733369', 0), - (9806, '0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050', 0), - (9236, '0x0f9b1b68f848cb65f532bc12825357201726d3d2', 0), - (11051, '0x68d36dcbdd7bbf206e27134f28103abe7cf972df', 0), - (11004, '0x27629b5d175e899a19ed6b3a96016377d5ee4768', 0), - (9486, '0xf6f92a1e3eee58e3717cf3c074185c9101e86b47', 0), - (10204, '0x25a25e1c48d64abeceb705a69c1673384dd3cedf', 0), - (11056, '0x6dc43be93a8b5fd37dc16f24872babc6da5e5e3e', 0), - (11003, '0x3839acf1ee7699d1f46b1be840d8ad8317fdf757', 0), - (11059, '0x9fbf06ef704fa5aa3b5da008ce8f115c8726e545', 25502), - (11062, '0xbda061b4c5f3d96ddbc47b25b1ecce68d71212b3', 25502), - (10605, '0x964cdbc6746aa167b82e733f30325a0cad19ab99', 134852), - (11071, '0xf79d39169d18c3024b3c2f75a3d6c95806e6e32d', 25502), - (11074, '0x3b8ef2bc9c975ead87fe2708e38acca7be98df7f', 19127), - (11077, '0x57b02589d6e24203fc43e442ce9a4803e290293b', 19127), - (11080, '0x2210b011a2faead040ea42a34303a1f9fee976b3', 19127), - (11083, '0x79864b719729599a4695f62ad22ad488ab290e58', 19127), - (11086, '0xa1164a52a6f98722be4505ccf7a8148758345b72', 19127), - (11089, '0x49b917689a9de1b1ae89d013e5de6d35df0289c1', 19127), - (11092, '0x5aaabf7be9539316d719b61e053a86a632af6fe5', 19127), - (11095, '0x3ebbae5d22ac2629750b184ffbdcefa9e73bf83a', 19127), - (11098, '0x01a7cd990253915391454a111d704c22a62a1e4d', 19127), - (11101, '0xac3eb6cd738ea06a48db00b3ee0a9f5e006af851', 19127), - (11104, '0x3845d42215d2267dad977c287782f5e880369dd0', 19127), - (11112, '0xf4de7aba8b1997df8a873e77aeef4f166c9d839c', 19127), - (11115, '0xa817e8134dc53d0bbf9b5d15de38b151885b5581', 19127), - (11121, '0x62a535b2b3b6a9e462f7c882973d6f64b5197a6c', 19127), - (11126, '0x86c803a605926453bd5df6e086c086226cd3aada', 19127), - (11129, '0xf55888c4010d3401f5a6a17471a2ffc4ae812728', 19127), - (11130, '0x033441cd8061544e1a013723c57a4afd2e7baa14', 19127), - (11134, '0xf8f8fe8e3e420368cb1fc79ed783d3961e53dcb7', 12751), - (11137, '0xcd7dad56e05c0b4fee558fd0e3c39426a2ea3609', 12751), - (11140, '0x29afaa0c141eece2d49f969578f7204bd27e1797', 12751), - (11146, '0xfd8a2e1c018fa109fcb151a645d416d1d364595b', 12751), - (11149, '0xa5c8a62f221adeaf8a7c0bef60044861d9c4b400', 12751), - (11152, '0x802a9a8c9b4391556a0a58e67131fc65c2cc6e82', 12751), - (11155, '0x66b9b59b2d744502ab2e25c9132f5a2c4b72f716', 12751), - (11158, '0xd187f18889689ba8c687d38e5359c0aadcd639ac', 12751), - (11161, '0xf822c136dffb7724f60e9f32a0d375aacaced151', 12751), - (11167, '0xa9be8884ebe73aa12e1cb46d7eb53375a6e668c8', 12751), - (11170, '0x5e8198ec90fd8c8005a2e9dc1140979cc590683a', 12751), - (11173, '0xda35bd8f80489deb972866fe4d6f6d5d3fa30130', 12751), - (11179, '0xfa5f43627c6b672ff34e61d6058a460a2f920525', 12751), - (11182, '0x26cabaccd16784b3cf042e3213e73767a349d6f9', 12751), - (11185, '0xdfac997d3584bc1daf1aecd6baab502ad647ffb7', 12751), - (11188, '0x1522bfc72eb076b9f48e13de925757a5ac48d47f', 12751), - (11191, '0x19f5aa723866c5c784a712de2d8847243cb72505', 12751), - (11194, '0xc213de2771bb57049d2793e1af23dcef2e740a8d', 12751), - (11197, '0xd38a290833371903be9bdf4ff0ee8e36ad1f1459', 12751), - (11200, '0x09aa807010155f1274cdf9c7b4b34609429d715e', 12751), - (11203, '0xab1d39e901801ef070745dea9bb56855880ffd91', 12751), - (11206, '0xfdb7018a83f7cbf5811752289e4f534177e59780', 12751), - (11209, '0x5c18ec120ecc2bfaccc7c09cc1a41860fd163f54', 12751), - (11212, '0x12625bf3023fe06ec960e9e31124cd49c0990a37', 12751), - (11215, '0xed2d8e9d77d2207c1d7b6c9113cbbd72c894f7e7', 12751), - (11218, '0xc2e1ba918e7b0ff3f89c37992702b1bf7ce30546', 12751), - (11224, '0xe51dedc9c884a9169faad63bc560b5bbd2c1c490', 12751), - (11227, '0x72c3db6f7bd291f61c7f886404c2fee3852ebbc1', 12751), - (11230, '0x733dcc542ecb3b20db68a8321d7a95f95425a457', 12751), - (11233, '0x8083a889763d3dcad1898c2e62d11b9b25e005a1', 12751), - (11236, '0xded214192212c73c6e56f7a52a50e3dba6b2747a', 12751), - (11239, '0xa8bc26a203b1df6dc0f63fac816fea543a8fc3b9', 12751), - (11242, '0xcdbb943f9f1a764c3648bf136689e97e14ee3b50', 12751), - (11245, '0xe34c296b3a9e8caa7f72f73b2f13d9ddce4e2427', 12751), - (11248, '0xcd5fcaec4a49053856767c39de30fee48122443f', 12751), - (11251, '0x1d2757e7b628981ec185e31bf419c61294e0660a', 12751), - (11254, '0xa97ca732232cd2acab9038a1943fe2a79fa1ccc8', 12751), - (11260, '0xdf3aee4f1802a65ae895ff7c016d82e3ce2640ad', 12751), - (11263, '0x559a808b2c033f8c16e91f64e601d580aa0f63d4', 12751), - (11266, '0xcb542c41e57873271bb997fa92f707931bd21450', 12751), - (11269, '0xf6b4a27c41eedf977964ee1391ea641d455baa27', 12751), - (11272, '0x2183e46c8ee120b1acd4985f0a482bef6bf23cad', 12751), - (11278, '0x6b10f96410337420672347f5e2afb399060131cb', 12751), - (11284, '0x55984bb4bca66cd341cf0b17df051366505b8af0', 12751), - (11287, '0x37b8b77a6856d93b7d3a6a52d9e3756f900e4607', 12751), - (11290, '0x1fa54bc70b7f543e518256b2a666a5f123ad9ad4', 12751), - (11293, '0x5a5325a050cfa0cd2ce905a54019d86278f7fad5', 12751), - (11296, '0x605143a6b94cc334cc6c04300fa8a9dd06a9dded', 12751), - (11299, '0xd6a11a700a96bcc99cd0026562b11b03383043c0', 12751), - (11302, '0x2a93fc793a9bae72b5a08121e7ae4d09d247e0a8', 12751), - (11305, '0xacce8d66978fe9903d9778dea4341411e7c1a6d9', 12751), - (11314, '0xb2b9300475af157676c44ee64d39a5eb3c294dbd', 12751), - (11317, '0x4bf88042de0220647acb314af3c5f310aec3bcc0', 12751), - (11320, '0xcd7f1f5470d11ea032422cda6fff014694185b95', 12751), - (11323, '0x607e26467533ae3ed1065f1f3a58ff647fdb43be', 12751), - (11326, '0xd06c308d4546e58243e47ec959ca65f6a70be752', 12751), - (11329, '0x3d31e43127ed3cb975a99a577f78f20cd35ae7e3', 12751), - (11332, '0xc999efc754cfc2dcdbbb8d236265b26e4d70e1f7', 12751), - (11335, '0x5eb9929092358592044a76391defaa016e9ab0b2', 12751), - (11341, '0x12cc2450257e83d6b2cc5d598f8b6dbec2d8f94c', 12751), - (11344, '0xb49c74a92fc7366e91381692894d0a82e01395b3', 12751), - (11350, '0x67e4d019e6f303bf4f6394d698ec5cc44ae9d3fd', 12751), - (11353, '0xb8cdca64d1f7ed64e1b25cd2c3a02fae994850f6', 12751), - (11356, '0x2b420c7901d5ee86be62abba4c9a4897a0483d10', 12751), - (11281, '0xb23ced6f29ae6785190b9860a80c94313774d989', 0), - (11338, '0x93c0ea360d931b36c9025026c9f8493a1bb7a7b9', 0), - (11060, '0xd9a365edf62eba3afa6ddc06b3bc4ec84e3b2b5b', 25502), - (11063, '0x21c92c08c878a1cda3a8610307d3dd9392b8a9b9', 25502), - (10536, '0xc9e086343a15ff2fb8a6078777fc49f31e3d48bf', 41392), - (11069, '0x927bb9c83896880bcf778cb6e816a5982705797c', 25502), - (11075, '0x6c65fb326e7734ba5508b5d043718288b43b9ed9', 19127), - (11078, '0xbe34fd2800b94429f7e9ae3f0b08b43a450ac80a', 19127), - (11081, '0xe24b1a73d2f08d612cb4d72f872caff8f0514050', 19127), - (11084, '0x0989c77f8289feeddc8c3e3967b850e41443c371', 19127), - (11087, '0x4b91475af6ec45997794b513349aadf7772de95a', 19127), - (11093, '0x70fcdac8822f59574d4a4d36fe54f1775d5b982a', 19127), - (11096, '0x9d00a2288c721f694db712c31acee56aa3ca251e', 19127), - (11099, '0x98c254e9714bd8ce3d217b96f7a048e9dcf8f9cc', 19127), - (11102, '0x02cfd6682b5dc354b451bfc4c5b60d6aca4e85cf', 19127), - (11105, '0x7bebd86f790f2d7689ae13a0f7922858577850cd', 19127), - (11108, '0x3ca02e7969841d1552035720f94610310c79163e', 19127), - (11109, '0x4da61e6335b7fa6716ceb43b9fbca0b9f9331ac9', 19127), - (11110, '0xcefe74b99230feaad28db3a278c72f3d7033a550', 19127), - (11113, '0xaf9dd81c5caf67cfed15e15e5fb590d5bb08aed4', 19127), - (11114, '0xa162749dfc0b160acb88351c1490c4122c149987', 19127), - (11117, '0x4cf90b2b6872a99aa234f39befa458cfc815ce1e', 19127), - (11118, '0xca2a103d970c0b727812cd67c95cb22f391e7cd1', 19127), - (11119, '0x38da8388a912533a3ea901631360fc8376cb0893', 19127), - (11120, '0x7827b0c8e315a23e407e54bb903ea9ca37039e55', 19127), - (11127, '0xcff2ae6eb9fc8cca762055073cfc004f436219b0', 19127), - (11131, '0x4148428d9512e8cb81e973a97e519de9c2dd0cfe', 19127), - (11135, '0x1d266998da65e25de8e1770d48e0e55ddee39d24', 12751), - (11138, '0xf4844a06d4f995c4c03195afcb5aa59dcbb5b4fc', 12751), - (11141, '0x99bc28091b0db7c7b7efba35f141b1b2ec06fdc2', 12751), - (11144, '0x5507dbd48a5a5bace8a6030e878cc4e0af147c33', 12751), - (11147, '0x29f0f760691859946da8b11cbfd233f42bbaddc0', 12751), - (11156, '0xe778839d611d042f5d0a325ea980ead7bd232291', 12751), - (11162, '0x7df35231cab77b5c12a6392faa4746674b257a2b', 12751), - (11165, '0x0bff2342cea541817120802b09b2d2f634b20521', 12751), - (11168, '0x419eeb5434216518e8411fabfbe9c959cf1c2519', 12751), - (11171, '0x6c70c35d1745554b9b3925ce4897355f9140b4c6', 12751), - (11174, '0xd31900bd6086d8dfec4df6ecb3391653fbb2f0ca', 12751), - (11177, '0xe745a46055ddcd3f437fa975bd1056c2794e4b0e', 12751), - (11180, '0x5008b9006cbf3f5a1d13698ac45c2b989df0c704', 12751), - (11183, '0xa2463a502966e4266ac5b9c6778b5d9d39aafa20', 12751), - (11186, '0x5d1b02fe820abe80ab5f63f7de12775374ee41f3', 12751), - (11189, '0x796fdbc0bfd78eb970e874a7a241190f952cbb0f', 12751), - (11192, '0x3aebb3665f80f4521a22512310c34fe448abc75a', 12751), - (11195, '0x789b058b27168b1c68d74ff641150da6ea48f29a', 12751), - (11198, '0x67abf116503c03dc20476738cd0cd031732f3ad6', 12751), - (11201, '0xc1c9f2b06cd7499fca888fc97c21722ccb902056', 12751), - (11204, '0x9c7e166f12faf838254e4bfde1e5ff9511b8ff42', 12751), - (11207, '0x2303a2395d91eb32a269652abc2ab310ee51ec74', 12751), - (11210, '0xe436fff763fbf20250be94e4af363f26d9e6ce61', 12751), - (11213, '0xcad13ac7e1dc3f17c2dbb0dc8d3e04a01f6438a0', 12751), - (11216, '0xeb780d41c42c1a59b8120db06c78e6f8cb2a4683', 12751), - (11219, '0x60d00a824ac46a3d7520bc1cfac383cb3c14496a', 12751), - (11222, '0x9cfcbb37ba2ca67b5a639fc080b45d8c1de90688', 12751), - (11225, '0x64b8a0ad49f1b9e2ed4e0041ba4b04081c2954a2', 12751), - (11228, '0x862a0cd90d504dc44751d799a38c43586bdf2ba4', 12751), - (11231, '0xd79086faf37d48903aa8297a49aecd5d3ae5d21a', 12751), - (11234, '0x14a202fb4f4ff73d542a189030d3e112234a830b', 12751), - (11237, '0xbcc44cc9675cde45e5d60da2eb721588bb39b4f9', 12751), - (11240, '0x4bd9a4c48114929649c3d2c523d3b0a94de318b4', 12751), - (11243, '0x7099fea6504f0ca7611333d3dee1114e477e9321', 12751), - (11249, '0xdc7cdfbb1b4fc53acb46d8a833ca412427364197', 12751), - (11252, '0x3b2ae8239ff57ca4cdc1c585fcacdefb08d13b55', 12751), - (11255, '0x2e5ade6cbb0a595bfb2911cb57f98abdc3d95397', 12751), - (11258, '0x76f5d8aa307224dc222bad6bd65215d88db6907f', 12751), - (11261, '0x4eed656008b8d24f62a6e2f928d7d16f7bc57a9d', 12751), - (11267, '0x56f031aab1bdbc7f4de9b1be04c86119361cd0fc', 12751), - (11270, '0xd97425d98531394aa3c4ecd9ff538c0224dd2b5c', 12751), - (11273, '0x6ca4b878740d4b40b43857f180fe0c3f07a3a44f', 12751), - (11279, '0xfbd7bf0261d18f9ffa048aea0fc7ff0a00a9c70f', 12751), - (11282, '0x6972e222ed2610cf03a1d19ae4f0f7ee12c3fe7d', 12751), - (11288, '0x1faf41588e4da19a44bf7ed90f9592096dfd2bc3', 12751), - (11291, '0x35161d7c52f1395b794fa830041cd30eb147e64e', 12751), - (11294, '0x2cccb42ab7bb2669736db5e3e6afd800bb5dca56', 12751), - (11297, '0xd3ab09900a1d15d2e4fe0a29c19de6e5a83ea900', 12751), - (11300, '0xe42fe1e54f9e40cfb949886089598e5eee15b862', 12751), - (11303, '0x8323b85c4ec59bd9638fc71997c0496019b07183', 12751), - (11306, '0x9c96160dd686c796f96adc089f9bf53ce353ff0f', 12751), - (11309, '0x15acb7efb5675c62ca4f60bdde7c8f5dcca201e2', 12751), - (11312, '0x296e391471a0619e36e3eb1e608f2676365b1c94', 12751), - (11318, '0x4ae59f5d9040317a144de4267beec5d71d867dc2', 12751), - (9702, '0xeb54d707252ee9e26e6a4073680bf71154ce7ab5', 0), - (11072, '0xa74c18edd17316bc05f2e1b2c2666c9312f44e9d', 0), - (11321, '0xa31110b7ade3c61f067f2614f7da6d65a58ae744', 0), - (11124, '0x33ff3c111de5f4b89cd4bdcc0ed99c46ca1e9541', 0), - (11090, '0xc8bf177d6f4d13090f6593953633a604e69076ef', 0), - (11264, '0x1464728dc12e635e15c250981c047eb888e44dd6', 0), - (11315, '0x2654ddf31e5d8dda52fe8c1d759be186d316d8a6', 0), - (8351, '0xa7226e53f3100c093a0a5bcb6e3d0976eb3db1d6', 0), - (11061, '0xf05abab203216009f6e41920845ed940c947acc1', 25502), - (11070, '0x8d85d3edea57b09fee39c94e5e0ca2757ebb6be7', 25502), - (11073, '0xb662aa4c8a0a728d6e2212e1f4406917ab3cb84a', 19127), - (11076, '0xa3eac0016f6581ac34768c0d4b99ddcd88071c3c', 19127), - (11079, '0xe7e7b0f53f15d3452e6ef8698b52e967af110762', 19127), - (11082, '0x7baa35903e27bb818e9a4c40b20110b710c86acb', 19127), - (11085, '0x4dd002594a6f85757d78c99c0f0c0122a94fe226', 19127), - (11091, '0xf233694d7d7398312ab76bdd05a1037e54ed257d', 19127), - (11094, '0x56a290aa5bcadd231758930ef6671257be752087', 19127), - (11097, '0x6f2f338b61f4786af4119e7226a6296550860fcd', 19127), - (11100, '0x58f6e5e38c1197d8bceb528885ca249ab4297a3f', 19127), - (11103, '0xe9ad242e1286fe5123aeb5365689827341590db7', 19127), - (11106, '0x118108b3964489e138db95212c462f7f572351a8', 19127), - (11111, '0x37a8e154e5500fdec0054b9c0af7ca79b09300c2', 19127), - (11116, '0x82ce09a5532937be075c48c81bf2518fbf56de40', 19127), - (11122, '0xcca9a24c13b3c84e84643cb2cfa6b2402ff870e8', 19127), - (11125, '0xf3c981f15212878332810c12f7e6533bb3092baf', 19127), - (11128, '0xa57a27175e54db16ddeb2cd096be25916698a911', 19127), - (9098, '0x7e07064e5a921a57eb29c22f179b20513e8a3485', 86421), - (11136, '0x0d08f22b1b9affa76a4fa05c5532a9b12f39effa', 12751), - (11139, '0x41af57291e32e33e51dbf3ea872041a5939348c7', 12751), - (11142, '0xfed59f5760e4cb16cd37d129c54a0d2557d167d3', 12751), - (11145, '0x03e81230edb43a393d33b4e6724f31b955327f0c', 12751), - (11148, '0x3a00b3c58e45f2d5ce8e6929f6d12d792b0c3323', 12751), - (11151, '0xaa0af9504673d39ac32921bd732a44b7b8bd4bb2', 12751), - (11154, '0x016d933cf92434f2a2a4f6ae973adec154ad2d69', 12751), - (11160, '0x03accc05b02c7df6f36064e016fc5cf650260ab3', 12751), - (11163, '0xd838362e00cabb26fe3891d8acac5275531d9d98', 12751), - (11166, '0x9ec32573f287bfc9959024e823cf718a7da87095', 12751), - (11172, '0x882822cc597fa5b09ceffcd39e82051d0cd521e9', 12751), - (11175, '0x88ee223d0a4d34aecd890a8fa89121a1ac3292e2', 12751), - (11178, '0xbd1d238f9b4cea305c45045db9bbca617fa72322', 12751), - (11181, '0xa8116375764badd81f2c6dd253127ea42b02f48d', 12751), - (11184, '0x10474c4fe433ca633f686a2f776b7363f6233e17', 12751), - (11187, '0x8a96dbc8faa42b67a1be83bd9a30160527e953bc', 12751), - (11190, '0xa435a8e30e4c37a9d4480a42dda3955c22a76ed5', 12751), - (11193, '0x753ad9da71889cbe04aed7c37fd4bf772ce26c58', 12751), - (11196, '0x45e5b40117776fb95110d662c463e3b07339fce1', 12751), - (11199, '0x13dc8fd4ac85be47e643ba782e6753d45fc34c33', 12751), - (11202, '0x33e8688805ecbedf2150e6eac320af7213c29b83', 12751), - (11205, '0x36b59582da434ccf1c5be9410b17ddcd6c78d967', 12751), - (11208, '0x2cbd423af8e64863a617d27e691b4f6fb59db220', 12751), - (11211, '0xa610ccd8c1b746ad7b6acae545c8137c5da1fcdb', 12751), - (11214, '0x55c52b36d6b96ee8965c5350adace203c26b0ebb', 12751), - (11217, '0xc8349bc6a5c0008b7f14e2de3a26b787d4a32431', 12751), - (11220, '0x224ae25f9bb2cb9d9f503a5fbfc010d483269a0a', 12751), - (11226, '0xcabceec8749593cb0d1adfcf4f138570f62e858f', 12751), - (11229, '0x47dd2dd6c8c7d0cba6dfaf0f86d2719640fc8bb3', 12751), - (11232, '0xeb5be04f61ea01cb17341c07980ac19280f29b11', 12751), - (11235, '0xf5e1d980bd0b982902a34ac8b0d8658ed566cb03', 12751), - (11238, '0x27d6d8b5e28f58ea2ba31bca477d78e24c8cc1ff', 12751), - (11241, '0xf7e0a37372af227c9c7f5242d530c95e0188649c', 12751), - (11244, '0x1e54eb7879653403cf990f8746a16a7701917952', 12751), - (11247, '0xbf6656e720be8fd2c6f53b611eea9cf0d4201c51', 12751), - (11250, '0xcf1f14daf7d84a1e74c488e4ea269350ff5cc810', 12751), - (11253, '0x411b1bd093ce8a99655ef358db02568f0989470e', 12751), - (11256, '0xf0e5e56b6a727d8ebd88a582985ff2bee74b6723', 12751), - (11259, '0x127e59efcc06e8b39c540d7ae1ab9d2f7e0edb7c', 12751), - (11262, '0x9c8f0fc84905b3381e64dfad4cce77fb0f92d5ba', 12751), - (11265, '0x41146e046551e6f722babe06b09ba12268c29348', 12751), - (11271, '0x11b39ff3d14ac720fe06740fd2af396bc3f337ad', 12751), - (11274, '0x4bd900f29b1aa6b4742ca43086eb7d8d9ce6d47d', 12751), - (11280, '0xf5208d0e44e1b84a4f310aeb3a9f41c6d001dafd', 12751), - (11289, '0x3f10b9a596873db120633169c0701ee3d396ca90', 12751), - (11292, '0xe3b89733b880c6006935f582978efd9774f3bb4f', 12751), - (11295, '0xd752b313e23cba7d98080ca57fc2d5c84a525652', 12751), - (11298, '0x201b2e505f769ce7a15b6a9d6605354ab1b046b8', 12751), - (11301, '0xbdec25b9b7e4fbd0e6cde1a8547630e511379710', 12751), - (11304, '0xe733d43c098fab4531fe05f056b6cefe83780d86', 12751), - (11307, '0x062a68264916ada5ff073107f795a6768912d60d', 12751), - (11313, '0xcccabcc6bf3f4687c4f7231aa5d799eda1409f5b', 12751), - (11316, '0x8acf292bad6a7bd4d308429f5740459bf2a5d8a5', 12751), - (11319, '0x3d56735b5e1ec7ff40ddd6afa44d10174305e422', 12751), - (11325, '0xf98a3c73ed66bd38500de61cd97370c76fc44f7a', 12751), - (11328, '0x254bd5fb03e2d387293721d989fb3e6dff5dcf71', 12751), - (11331, '0xf1caf8cbcec5d193aef9dedf8cfd80b58f156146', 12751), - (11334, '0x2797b1fc5020cb352a05891614f4f2dcc6f3720c', 12751), - (11337, '0xb5889fe847504ca55aa110d1aa7cfef8b359ef04', 12751), - (11340, '0x74df2ee1ed4791122032ab6cd42ff56fa70fcab8', 12751), - (11343, '0xb9b8991d4123c7d48e4524d1b0d4b739830aa429', 12751), - (11346, '0x337a12317985ca12d4270888d2f50141c8852a1c', 12751), - (11349, '0x2aa6b06d4f23d92f7e1c35102ec6a3e5855a5e79', 12751), - (11352, '0x9bffbb3ab7183ebe915357bbc443440caeab0042', 12751), - (11355, '0x9fc3fe3592dc5eef280d6de0159ce0e98d9bf392', 12751), - (9964, '0x12f8026072fa10a5796deffe7d54b9ea42ff9ccd', 0), - (11223, '0x0045cb2b22bc2615a09a90bda866ff272c893906', 0), - (11310, '0x376e74f8a2b2b4821694350ced61cb48c1e9c198', 0), - (11327, '0xbeb1af7925f52e1116d01212c8067a52ddf0aa14', 12751), - (11330, '0x558c164fb387a55aee137e0493b95fffa1c16144', 12751), - (11339, '0x8f2227c8322210e27494167789ca3d5e377fc362', 12751), - (11342, '0x5370ab5dbc5c9138476dfc240c422d0fd54b3765', 12751), - (11345, '0x384d0a4c75e5f11caebcc8e379e756b72b437b7a', 12751), - (11348, '0x574998328f16832043ce2a91ea24fa84d2869cc8', 12751), - (11351, '0xc737aadb070f02c93bdb0943f5030eeea1be79c3', 12751), - (11357, '0x09a18c26fae7964ee9ce8592049cfc74ba1dceb1', 12751), - (11363, '0x6cdd8ac8fa6a9276c5465fdbfac29c205fb28183', 12751), - (11366, '0x3d432027c11f17bfd03428ebe0351cb68125226d', 12751), - (11369, '0x0001e1ee4756e1cce127a545851ea3864b533027', 12751), - (11376, '0xf3a2fe476fa020d7ef0ecbfd325075e2a77302eb', 12751), - (11379, '0xd960c8f30d7523f0898c57fe66a80b9f8322d566', 12751), - (11387, '0x817a70b945ddaafd58d71adf66fe9a82fccaa049', 6376), - (11392, '0xdb13a3aba5bbda665b5c6edf1e9af836a5f4e00b', 6376), - (11395, '0x3638c3d9032ae00e1c4185c370a4c9eaab53f353', 6376), - (11400, '0xd92693c39d3231b96379b636c3bbc9bb73969343', 6376), - (11402, '0xdfbe7a3bc6a188068405387a56414ba0be2c9dd4', 6376), - (11404, '0x7831acfe02c1a36afb5a0a9524dd51e4210176c6', 6376), - (11409, '0x9281f4d044a1c67e7647148ed5ace6d63221315a', 6376), - (11411, '0x7e36c0afa568c014a3c0d88a8cb0b83219a3a13a', 6376), - (11414, '0x35c6243b17bee3f841d6f615cbfa3792fc14845a', 6376), - (11419, '0x2487fc7e019860afbfc7fb16689e421843c777e2', 6376), - (11420, '0x447d3e4ea3742732a892f6ce66d8a0920cec2c3e', 6376), - (11426, '0x28ff8e457fef9870b9d1529fe68fbb95c3181f64', 6376), - (11429, '0xbaa32387bd55553ec806622d524b12bbb8242a19', 6376), - (11435, '0x5cfe516a8dd53d9cdd2e97d83922bff86af58ec0', 6376), - (11437, '0x74eca6b366964f5f1e9ab3132bdfa58c05bcb78a', 6376), - (11440, '0xea8d9591a78963c97901e7e1c68d228ba56dd3c2', 6376), - (11442, '0x54e0f6b227b10d9e202d881e91a8679765148e58', 6376), - (11445, '0x959593113f566086f1d66a88ce82e4479ebadede', 6376), - (11450, '0x248fb14775605f45c22be0b7586caddb6978258b', 6376), - (11452, '0xffdff1c67375eff5007a304bce4ca9f0c8e9084d', 6376), - (11453, '0x26c8c53cab80f5beb8241b182ead6886306b6bcc', 6376), - (11456, '0x83da61c7445e9be8a2fb8ea75551ddf4e945c093', 6376), - (11458, '0x849911e3ca8a8778018867e4a41f53b32c3b8140', 6376), - (11461, '0x1ad789220860b3242b4429be201d06a0569fbb5b', 6376), - (11464, '0xc3e0928fc64aad59c1d44748accbd94d791674e3', 6376), - (11469, '0x1a9b3f6a0a3e6a715e047635a9b0f3775e82aa8f', 6376), - (11471, '0x6ad6ce71f459a9c66195d68ee783b3ffa5ee4f2d', 6376), - (11473, '0xae2c47038ca0754c52074ebd1c8ce6f924edc929', 6376), - (11476, '0x8bfae28463c7029c57f0baefb98b29e564dc2e02', 6376), - (11477, '0x627bf4dc66dfd180479e01b9e9ba844732d7f2a4', 6376), - (11484, '0xa100efbc46349e9fda434a79418d927cd6071c8a', 6376), - (11486, '0x1992f759814739a910e9aa758a9e8438fcde59e2', 6376), - (11489, '0x21bdb91661a4472ff0d3871c300d4120a886ad9b', 6376), - (11491, '0xfd1804ef264220c26cc7d09162d7c2614f48bb23', 6376), - (11493, '0x3cff58bb441b505e5fcc83a45c9e6bb58a841a6d', 6376), - (11495, '0x0fc9a38de382961c0221bb9a49a30d59b5d40720', 6376), - (11497, '0x988f0a7b1cf427ab08e7aa661844b109dff74ea1', 6376), - (11499, '0xd9e1d61d51b4d1ef7da8f09cabddcc59030bf872', 6376), - (12109, '0x684264c1e364a308c372c500dc9451a208e14d57', 6376), - (12111, '0x84823b634cc46e2fae8b8d8b5a2c0f2c59742bde', 6376), - (12113, '0x7b1cc71e3043002b1271dc8c0ff862448387895d', 6376), - (12115, '0x82307a8755e4e69cd75761de83dce448984ab5c2', 6376), - (12117, '0x2b691a981e4d1cd37d5f4b84aaabd0798155eb27', 6376), - (12119, '0xc5e8433fb30aad62ed545c701ad881ff2467eb3e', 6376), - (12121, '0xa2cc50a683b657e1e2cbc86e26623d79e8e386fc', 6376), - (12123, '0x468df6e2ef50df9a43819c11d74a1b8819b1a912', 6376), - (12125, '0xaf5fce46c0742309222994f5431eaef2e1cbe444', 6376), - (12127, '0xa16bceb153c0e33589db556bd76d68ceab645dee', 6376), - (12129, '0x51181b0388daf0df94d831e1e033a080b4a65492', 6376), - (12131, '0xe7859d1bc00f1b0e487e6034a308e754f2322e08', 6376), - (12133, '0xa0582456bd1ead7a1a693f7a2626c79ca97babbf', 6376), - (12136, '0x1e184bfb48d03a86ca1bcd49944a75ec8fd05ec5', 6376), - (12137, '0x1f2e0be503746aa5daeb3914cd9a88fbdbd82a64', 6376), - (12139, '0xbc5340391e68f2f50ef31d655d542ff7fb3ef024', 6376), - (12147, '0xcf92df395d57e03dd502c283acbb83c470267902', 6376), - (12150, '0xb5cfb001cdf1b1929d5028d54246349671ea0fa8', 6376), - (12151, '0x243a12d14be62483e5ddac94cf5dfe69862d397f', 6376), - (12186, '0xdf34e91fcb9608609d086bd52491916aeac105eb', 6376), - (12221, '0x0f15426b3cc12bf69772a60cee03fa2da051bf6d', 6376), - (12223, '0xa7efbb4a06a680f3b65c5861ec387408ceafbec8', 6376), - (12226, '0x1e275341e66d59f854ea3fd14cb622657da84998', 6376), - (12269, '0xb4f2c22b10fb6ad78da61b07825058707c7a708b', 6376), - (12271, '0x04573ee7f488e411eff8ddad07e0e32770b2d968', 6376), - (12273, '0x07ea271aac0e10ba3fced09c3a5520463e35b8c9', 6376), - (12275, '0xf000f83271d801df4bb667581b7f2177901f8fdf', 6376), - (12277, '0x38ca440191cec1c0eaccd7932738a2203011acc8', 6376), - (12279, '0xbd1ab5a9537734b963ac4138991302e73a23b84e', 6376), - (12281, '0xc2e6b265cb965ded721566f0f9eb5ab1a6162a21', 6376), - (12283, '0x625510ef5516f26e83024af797005b5a63e9c324', 6376), - (12285, '0x1341df844780b66af4ccc98ae0f34be87eabe1d5', 6376), - (12287, '0x7049ca5fb32e15bf9bcc7062c1c8496fb4e748ee', 6376), - (12289, '0xd6a4bc667b6bfe00c6b5a387ebddcb6e7b3a64eb', 6376), - (12291, '0x35eead564ca47edbbf76665690fe3a11ec983354', 6376), - (12293, '0x5f6b472558e997aa693e7eae6fbcfa18bdc0fe8e', 6376), - (12295, '0xf1888b3042ed062a03c2d3ca567628bd7e63977c', 6376), - (12297, '0x5df8afd616a527ad58bc6d6b4010cb4c73c1eec4', 6376), - (12299, '0x9dd4874a0b258845858e03f9ded48cfa6b319498', 6376), - (11372, '0xe746fcd5fea4d00d8652681a76c25a29f7d32a12', 0), - (11324, '0xe8c0840acc6e4f4627a28cac8071c27262f7202a', 0), - (12107, '0x440872d2a03b546c6b2534860b9ce8eed8ce960a', 0), - (11385, '0xa251520154ca342f0b1d702bf5a56f78c982405b', 0), - (11358, '0x2e59716b15429f8c261cd75e29291ed31784d1db', 12751), - (11361, '0x87807a8942d74ae848346821b04d7d20252fec92', 12751), - (11364, '0x9f32e3a8746c1d9b185e0f83f6ed7d8fbb22f2c4', 12751), - (11367, '0xf8508946af6fe18134eb227c6fefa48dc526eb67', 12751), - (11370, '0x5e4e151189bcee33355dab8f6c47885f5a92df84', 12751), - (11374, '0x933244064de61c58c67f109909d4063309d1358b', 12751), - (11377, '0x3bb1a621d07f170a939c9a823a68c485dd819999', 12751), - (11380, '0x55045da52be49461af91a235e4303d4a9b2312ae', 12751), - (11383, '0x942cbea64876ff0b2e23c0712b37dc0091804e9c', 6376), - (11386, '0x02e001515c0811b34981b667a042aeb822c17d0e', 6376), - (11388, '0xe8e02aa8abc86535b5d168e52e6e137f19a7c3d7', 6376), - (11390, '0x9e979fa66ee39095a875a87736b30f5f2b23edd7', 6376), - (11393, '0xae426830caa8e06915e4f36be51b76c04e22f25b', 6376), - (11396, '0x71eba42ff9cc3f655d49bf8c2ac61a437f8e9f96', 6376), - (11398, '0xca9452f22d1bce2520433a1e183b659e6bf72fe6', 6376), - (11405, '0x8c2f9e6686c6245c80ca948fd196226b900db99e', 6376), - (11407, '0xa81725fae8bb3930a95debb0adeaa184b5e9cc10', 6376), - (11412, '0xd2e44e40b5fb960a8a74dd7b9d6b7f14b805b50d', 6376), - (11417, '0x187089b33e5812310ed32a57f53b3fad0383a19d', 6376), - (11421, '0xfe35e15be885750d9b2363cbb6abdd57ac9c4c40', 6376), - (11424, '0x60dad8350bba2b4f2c8fbe5d1c2a25d79a1fc8d5', 6376), - (11427, '0x219c12318aff3d1319c63657d0f38afa331cccef', 6376), - (11433, '0xb2f3b1ec05fceaba073c01e379ac33b939551d54', 6376), - (11438, '0x3803e8b525ae9fa18977f964f483598090d5084c', 6376), - (11441, '0x5c9bf45157304cca914a8f45cfeb36d1a4d98c13', 6376), - (11443, '0x594b6e28caa955be0dac64c4d211bdbd6640d8a9', 6376), - (11446, '0xfc6f32663d1851aa1dfa4dd4835ccd90e810114c', 6376), - (11451, '0x5866426aa377737b9561de76723b1093e7371c6b', 6376), - (11454, '0xa0230423ac8ff3f6da3691466054cd9be9e31292', 6376), - (11459, '0xb567d433d16fb90ad5645c741d1f304439498243', 6376), - (11462, '0xa8988b4b29f130ae07143745e095b64269ff1688', 6376), - (11465, '0xd0eacf9f9fcfdc7ad182267c6f99f9e9c8d93cea', 6376), - (11467, '0x35d1f6c24b53212603a55feedb91fc31fc7a7816', 6376), - (11470, '0xb467646f6cbbd41e9cad139e626dec1cdd7dc043', 6376), - (11475, '0xe221199497ecf48efa70f1303dfa96c6a7076b40', 6376), - (11479, '0xeb411f3257be96536bbd17fbaa1b16f6b7d063e4', 6376), - (11481, '0x414fda192dc94e8087d19c609dcba84ec6c99ad3', 6376), - (11483, '0x18282c1a6766c3080d28862501eafaa526f2e707', 6376), - (11485, '0x28f6b2b8a3f589e22bacd70d712e6507ce0e87cb', 6376), - (11487, '0x89d01452ea101f55b2e830e1fb49ea7adf18d7e9', 6376), - (11488, '0x590cdbbc894ccd532706b28e3922715a21d0fca1', 6376), - (11490, '0x56f1879653662fe8cacdbb759bb8f42507d75d49', 6376), - (11492, '0xac50debe83f7dbf2144239bcb946a2506b2782da', 6376), - (11494, '0x391a0ed70d054cabf754b1a59fba25ea9ce9666d', 6376), - (11496, '0x07ec5263e3da1467939ded7910c7c5dd33163a14', 6376), - (11498, '0xf1aa4609b44a887b30193fbaa518bca0aef1e03b', 6376), - (11500, '0x3ffc477e96c98a22218497667ebf776489caad89', 6376), - (11503, '0x8cce8eef33e74ea5e52d8c3d2af3376fb55da34f', 6376), - (11621, '0xd8d9c310581c0275aad171169c6077c91277dbd9', 6376), - (11623, '0x887146c6f87413629521a064fa8c5590ebefa17b', 6376), - (11627, '0x4004b6d7204b4572e903770c787cf527f2bed408', 6376), - (11629, '0x4a74228bcac7cc2e6fa52eeb644005edbcb7ed9a', 6376), - (11633, '0x9589c1807a66086930044eefc9001369d25d6b66', 6376), - (11634, '0x54372fd91473e0f6f8507a955cd45de9b9d740d5', 6376), - (11636, '0x058534b307f97bd2657bf92aab09ed7f6be22695', 6376), - (11638, '0x3cbd57da2f08b3268da07e5c9038c11861828637', 6376), - (11640, '0x2816ee717bf1b3ebeec4910a251ee03dc1091f89', 6376), - (11642, '0x771e9e3a2c53ad29608e69cdc583645418d9401b', 6376), - (11644, '0x02d1743f12206629d13228d17859d4270358b257', 6376), - (11646, '0x76f259eabef23dde2287b31a1a96087c5888f023', 6376), - (11648, '0xe56117507273a5971dcf88970c7d99f995dcdd8e', 6376), - (11650, '0xa95415134a88b18ad7a26a57b49e2e2575d63faa', 6376), - (11656, '0xe2cfaa1fa7d3693a3a3b83913e526f2712b63b06', 6376), - (11658, '0x12f199a13f7e026f1a88d2edd91abe1ed805ca09', 6376), - (11660, '0xfa8eb0d391c1ba61c19343388961bc76ebd8e998', 6376), - (11664, '0xb30cfcf3935147d87eecd143344050d8e0f4186d', 6376), - (11666, '0x217a8dafdc28b0bc256cc44aeaa75aeb593faae5', 6376), - (11668, '0xa3cc90986666fa39cbde8fbb800feb9467e7b087', 6376), - (11670, '0xdd5200a6547068156badbe4e667261f1440b3f44', 6376), - (12108, '0x00000b9bfd535723c4cca0dc18093e01d3d93081', 6376), - (12110, '0x2d6ab1fda325e011c87b23e0c90e71c0269c07d4', 6376), - (12112, '0x2ca6e7fb5fabf1b6418b78f237eb6069f9d3aafe', 6376), - (12114, '0x37d1dba2f476ff8ad08f64ba577f8594849b47f0', 6376), - (12116, '0x5e05946968a6ad1f59c67362ff0f9f6ae4d6fad0', 6376), - (12118, '0x8a0aca2f93511f7b65a11d5ba595b17f80d3a375', 6376), - (12122, '0x4a959ef25ece4a75fa134dd871de6e8807cb2e1e', 6376), - (12124, '0xa9ef8834cbc709d5b09352bf73b1889958c1eaff', 6376), - (12126, '0x3764685289cad6effad3cc318b8422a7c4e7ea5c', 6376), - (12128, '0xd0b62c9855d123de6420ba14d483c6cc9c4070c3', 6376), - (12130, '0x8cd48c84ffc642653f34df82dd7ac9541a4dead9', 6376), - (12132, '0xb8155e270d52766afdf5e1b14b5a7b37fd6610bb', 6376), - (12134, '0x00030f4b6e66c1e83d36d35be888534dad275bd0', 6376), - (12141, '0x2152785323a6559f880baddefb45546ae6740809', 6376), - (12143, '0x33bc88979f2eebe437c4bc1e3c7aa6cbc97b64e8', 6376), - (12144, '0x2fe070c3e1067969c8c2134060e84f7415e70b82', 6376), - (12145, '0x9812a8416464bc3cb02ad74dd2893331bad54f33', 6376), - (12152, '0x77c0e6334bc30e546076cfb65c8a5328799a6e68', 6376), - (12155, '0x0f5c53688c523ab8ba009720b57f1994f4ac62cb', 6376), - (12157, '0x4967779ae5d83799f1fee6e2f9071156401b07fc', 6376), - (12159, '0xeea8557f1a287a37c27516ec7aed14cde7af0f89', 6376), - (12163, '0x8091f92da328a6df0000b8c4cc72d0aedaf91ccd', 6376), - (12165, '0x974b65a4a485b8a7d8188a753db80627bc69d1e2', 6376), - (12167, '0xe5936ef1db914439fe366e953dfe9e665e7732a8', 6376), - (11415, '0xe0c695803a7caeaf66d71cb76ea40f815ae465f2', 0), - (8089, '0x9143aa81feddda4e7528863ae062908c3add016b', 0), - (11359, '0xad5a05cbe167a4715bb70d4df50295edb6d89013', 12751), - (11362, '0x6bb6e297da268283d6b9bb5b1b213a9d9720c8a8', 12751), - (11365, '0x3d46dce7773b7ea980455e0bdc0d9478ce6509e3', 12751), - (11368, '0xf416894990bbb5ae7d76129f1d6050377db32bc0', 12751), - (11371, '0xce7964efdabd35e7b5a4b582913df7b445a42a02', 12751), - (11373, '0x9b6cb5ee13014110211304de0c5cee1d9410a67f', 12751), - (11375, '0xbb2b484c66ad3ba5f3e1887937930ee3dfc30e39', 12751), - (11378, '0xe79a49ccd1adf6ce2fb215f46f4b050412436c0b', 12751), - (11381, '0x66e75e94eeccacb8708fa9c2fdf93750d770b0fb', 12751), - (11384, '0xc43cc75131443865dc84a000a38baba53fe00e69', 6376), - (11389, '0xced09ccfc82b091195bde04e6cd65374518e7b95', 6376), - (11391, '0x9782c5c6ad4215860d38ed30ef8f6c1a9da81c04', 6376), - (11394, '0x97f6dd965adce498b1dbabbfc0bd115c8d2b9812', 6376), - (11401, '0x25f89c7874a0bb3473afee0fa1d822f37aabc098', 6376), - (11403, '0x50f8c08b0124092e1001b355f4b8ae2df85f715c', 6376), - (11406, '0x22c48e3c0ebd634d86197e2e0764c3785c0d933c', 6376), - (11408, '0xa38445311ccd04a54183cdd347e793f4d548df3f', 6376), - (11410, '0xe5523e84b303dba1195258aacfe8bd11fd669441', 6376), - (11413, '0x700b2cc3a15120240b89b7269a0da33ca3bed0c7', 6376), - (11416, '0x877b37d3e5467b4aae7687dd3480a46c8d3e16be', 6376), - (11418, '0xc17a778f599e80d0e0bdd98638ca0880b745b924', 6376), - (11422, '0x98a581c72d4b5b47bd6348ea52d17963f68af33e', 6376), - (11425, '0xdc4471ee9dfca619ac5465fde7cf2634253a9dc6', 6376), - (11431, '0x06040158f9dd01fb6cc71ad99ec854c1a5a69ee9', 6376), - (11434, '0x7f1c1907bbeb8fd7a926834546d1f056dde01b32', 6376), - (11436, '0x70924482fd908923c8a7bc3e4c24df76561ea1ea', 6376), - (11439, '0x5d5a267897794bc1276b91e97ace4f7ef5c60f68', 6376), - (11444, '0xe04ce2247a91b289f0094b9adfb614959a716304', 6376), - (11447, '0xfcfa70bf5d9e7a34b2d30a5ede269dbd2e15b96c', 6376), - (11448, '0x96231425d446c24680dee5bb2d514791c140db76', 6376), - (11449, '0x835ca37010f7fa6feba77c037c6f198ad0a0b3c9', 6376), - (11455, '0x5073fea64aa5f47e7059b69ab877b298e5e6ea86', 6376), - (11457, '0x73ab49592f66080f305b92571ccde55108ca82da', 6376), - (11460, '0xdfd37c7de9dbec40b93d539b5fd59531a83d8844', 6376), - (11463, '0x0b38b276c6ccd51c2c75c5dc4d1e06a908fe237a', 6376), - (11466, '0x7682aef518cbeb24ab618643b834fec5a8fa9965', 6376), - (11468, '0x3a71a4dd9692fcd553d188626971a9374db12896', 6376), - (11472, '0xef4d823f50420a21f21fad4020d787601abe87e2', 6376), - (11474, '0x9e7a23c7f51b64b72b5828cd46f8576d35ae9d42', 6376), - (11478, '0x0a27caaead54cc6976175f6f4888beb1f871706b', 6376), - (11480, '0xa3f866e2aef7a1e2f08c93c594f41a3e358b408b', 6376), - (11482, '0xf7e2bd9cba282781932d5bbc74152e1664b3f515', 6376), - (11504, '0x55ba34d4f0283d1ad0d09502a5b8c1b8886ee724', 6376), - (11505, '0x17ae58ab79444ad5b8ee2e232caf13c65c32af75', 6376), - (11506, '0x9fbdd6437840641b5dede244b084d31e109a0f23', 6376), - (11507, '0x0d801699678375e43d14f67453e24f17ebbaef8a', 6376), - (11508, '0xc91a5bc46be45ab8db7a76d69a8d5c8c15cffff6', 6376), - (11510, '0x1d608491ca3042fb1f7c3144fa25d59e4a0e7e1a', 6376), - (11511, '0x99fa48ccea8a38cde6b437450ff9bbddafaa4fc8', 6376), - (11512, '0x9311d45341b284900711f9bc155ce2e381248c29', 6376), - (11513, '0x03e0039d6c104431f8e4841599dc95647d9fd9fc', 6376), - (11514, '0x0943cf836b5175b10e170fa56266d6197019c06f', 6376), - (11515, '0xc2f394f1a07586e27bfaf50f279bf4de8c370369', 6376), - (11516, '0x4a5a47fc4888dad25759c2794a80b65659eac097', 6376), - (11517, '0xd174ad0d1e36c7a60cd922e966354095233f8f23', 6376), - (11518, '0xfb44496ef7ce7dc94da1ec9f45115c80bba1778d', 6376), - (11519, '0x2c9e70dfeb48aa32b9ad7da92e79db921819dfc5', 6376), - (11520, '0x006254729ad977042210071b2e118c82739a191b', 6376), - (11521, '0x553222b267bc978aca3c28493aef72d924b264bd', 6376), - (11524, '0x288a4e70eba5d4f92e28f8ccc561e9fc947304a1', 6376), - (11525, '0x028eab0555129c79ce54fa3d3fbf27eaa8315262', 6376), - (11526, '0xd9beaacf78d31bb225a568015aaab459c8172782', 6376), - (11527, '0x3b8ce093bae0ebeb766a4a0c638521189e1fe1d9', 6376), - (11528, '0xb1e302b3a3b0de2173c1a1c2de19d2868b7c446d', 6376), - (11529, '0xf1653323d095392caa4f8787943d84b4690c5e41', 6376), - (11530, '0x1200eb4fa3df9903fc6eff1d7a4a5d17502329b2', 6376), - (11532, '0x2afaedc505e34eed506041c5a5c51ccf771e6392', 6376), - (11533, '0x1ff391da6962a74207cae71b80ea90d81c2354a2', 6376), - (11534, '0x1adc09fa9a173a13dc5b4e0f85d1edf7a8c10f50', 6376), - (11535, '0x50c7aaee4840afbdfbf15eb6e6b8d5617e88374c', 6376), - (11536, '0x6975fd35ce7a538995de67a95357c6dc6ce6d919', 6376), - (11537, '0x5b236d19f680ff47e7bf2a9eb88fc5cc03d443a8', 6376), - (11538, '0x877bcf27e3a0a517aa5522e574a79dff36727b37', 6376), - (11539, '0x32accaefa35620b51c061901aff1b74991e7322b', 6376), - (11542, '0xe0fb822af0c8a40b6466c67dfec951e9ce26f72d', 6376), - (11543, '0xa0c36169aa641783dcf9b5754634abd9a63c29a5', 6376), - (11544, '0x446313cc09b631f4e7600df6cf9a2078fc4f8201', 6376), - (11545, '0x8d089863b47231daccf3d3ec2aa610bf432ebce3', 6376), - (11546, '0x4868599c88f67c53f71822379378713867f5a038', 6376), - (11547, '0xbde4aa4dd5d3d54c6189bac2433bc11698e500ea', 6376), - (11548, '0x9ca4758a0586415529f636402e40279ba534cb52', 6376), - (11549, '0xe32812f976f2547389e7d957084b8112417cbe55', 6376), - (11551, '0xfab075ce731d201134d59996567366b126f5d366', 6376), - (11553, '0x662d5d79849113a5403af776210307a7c82a5267', 6376), - (11554, '0xe3daee5874fb91f57ff5985bb1c678a0038435da', 6376), - (11555, '0xf4488efcb87fe238dd1a204502c5c8a3b368eab4', 6376), - (11556, '0xc4798b79d22630cee83b4ecb0fd98cd5ff0fbb62', 6376), - (11557, '0x6f6b63b4ab3ca7f193feff0ced5317fdf81e977c', 6376), - (11558, '0x676c4f2c77f2ed2cf046f92747af654a1b40aabe', 6376), - (11559, '0x5610bc64c143f0f104f7e65d9105863e5addd50d', 6376), - (11562, '0xefbe650341207e2e33c27100eea337d359804e40', 6376), - (11563, '0x25d89ad88ea0eb0d70727827d50a3f202dfcd5f8', 6376), - (11567, '0x3079f63df53bb3443636a92eb1768efe37e21221', 6376), - (11568, '0x7f64c6e6908de72221a06a06b4a02a6546a4d6d2', 6376), - (11569, '0x29cf75f4622dbedbc63354e28f6e734635690f4b', 6376), - (11570, '0x54ad0f349495ab6f28ed06a05b306978f92b2b1b', 6376), - (11572, '0x60ffd13b8a8cb8ebf9dafd0f6f2729571106bee3', 6376), - (11574, '0x3739eb43661dbcf7428638463c03431b866ac102', 6376), - (11576, '0xa260cf1726a6a5e0b7079f708823fc8e884611cb', 6376), - (11578, '0x487c6480c33f32435f99cfa4b1e09c0d4e4165f7', 6376), - (8487, '0x38b2bac6431604dffec17a1e6adc649a9ea0efba', 394426), - (11582, '0x43e63fbfa2dc05eebf2d07d20f6b5a13cf1f1316', 6376), - (11584, '0x641cbc1375fb0e504bdb3583740d74485d5d2372', 6376), - (11586, '0x85492699435fe7ccc2b6a6bb3ad88276aa939ecf', 6376), - (11588, '0x1253d34b489061a028cf59edf726f63031eefa00', 6376), - (11590, '0x281e6843cc18c8d58ee131309f788879f6c18d10', 6376), - (11592, '0x95ce7782026059989f3e5a772ef23ff8c4eae3f7', 6376), - (11594, '0xc075c4ae02bbb94dbc31e2efbe05067569e2029c', 6376), - (11596, '0x98f9f2f4bb920c06e1260fb72ec1ccd05309411a', 6376), - (11601, '0xcb9348783f15c583f1aa5dad281847996dfd5e94', 6376), - (11603, '0x1a5f6f16b81627ff22c36614d7ba59a4efc2e206', 6376), - (11605, '0x585afd5ac4cbc9259660c40e639d580a348bd654', 6376), - (11607, '0x1f146b9131d52e8e7e3fad40f3f238a873da3dd6', 6376), - (11609, '0xb6295c6bbec8966cb5be71b0471fd2de8948e8ec', 6376), - (11611, '0x25da7de6924d85299af569a4075659918f63c446', 6376), - (11615, '0xae0ac4842ec648fa32ad5523551934b4dd597750', 6376), - (11617, '0x80d9dd9f8592f98163ff271b70aca6e0b6bdb6bc', 6376), - (8315, '0xf8875523cbd4226369cc7022f208f2609adc1d0e', 33666), - (12169, '0x102dfa977c6d37a14b5600328e94c3c47e6c53be', 6376), - (12171, '0xa7707d34ccd34b96d03d522c390ff62813910dc2', 6376), - (12173, '0x4249309a871a511321b7317aabfd24cdf62f45c7', 6376), - (12175, '0x35282d65df0d7419001e44b9df85330da553b605', 6376), - (12177, '0xccb239191d31decb6e966232d157e51544bbf5b1', 6376), - (12179, '0x084d0389540f6bd5f92e0fb5a97cb152cd69e7c3', 6376), - (12182, '0x9b8c57806782d4f995f8cd4dd493ebe99c5e1459', 6376), - (12187, '0x0fb81f41e250c8b463a025efd61363d827aa6537', 6376), - (12188, '0x5f16bb5783f92a21aeced70dec04358d5c35c3c6', 6376), - (12190, '0x31f22dee09a1558ecde3238a2a7d1cc8b8aade69', 6376), - (12192, '0x47d5b6eef8bd093a0a24783e518d59b1d66b2961', 6376), - (12194, '0x18a6f239e133b04a7089a280bf48cc84ccca0622', 6376), - (12196, '0xe632c7a77bb5c96bbd5256c8a56493acf96c4cec', 6376), - (12198, '0x1230ce84e9480da831ca1271ed755b196897aa20', 6376), - (12200, '0x21de6d631ff3d15ec4af3deb5430138b4ccd673e', 6376), - (12202, '0x15897664b6303c820a3ea7eff4e04f4a724e7d9c', 6376), - (12204, '0x47ed2a8183e7fad304d0089d9cb5fdfb759c0abb', 6376), - (12208, '0x46b20690b746f5d8b16b515a29637b9220cf3ae4', 6376), - (12210, '0xbf5288ca06d08b19885b107d51b81462f3af4d84', 6376), - (12212, '0x851f5a2ae1113c287f8483b22934bc144357ed9a', 6376), - (12214, '0xf8a95e3ddbe6b3d31ef773378f101bcbf9fd511a', 6376), - (12216, '0x731817bb2d233b7b8b10f560f154bbc065167a0f', 6376), - (12217, '0xad3ee1b0a63e3442571e0a3fb47200c81fee2bf0', 6376), - (12219, '0xc3f5f0c67497c75b612ef0a79f43faf6166a8e7a', 6376), - (12227, '0x37c2eed735368ba994914abeaba735c7339bd4b1', 6376), - (12229, '0xf30234e02b5c89f5a1cf0602a89858847f876268', 6376), - (12231, '0x59fba7acdef785e788cc948d08c34058f190c639', 6376), - (12233, '0x28e1bddc18aa171bf9fee8442e786b9dce8cfdad', 6376), - (12237, '0xbf1b1d11cbf750b10e0587e83c1c336b196fafc2', 6376), - (12239, '0x42ab1d15f14713f2089807b4899166507b2613da', 6376), - (12241, '0x3dd5c95a928e52666165805bf30ddff9936208a9', 6376), - (12243, '0xaa83a444a1b5eaf8eb8d000262fafd020fb83dbc', 6376), - (12245, '0xa656970460a8911d1758c6be19367bb4a032f061', 6376), - (12247, '0x485cc79b2ac5533c2238fded05a3eabf04c2deb0', 6376), - (12249, '0x8a6afd5ada756ffef17af6d4446a4dd5ec4db5d3', 6376), - (12251, '0xefd22d2660f61b0fdff7cb9879201292513d97ba', 6376), - (12253, '0x7ce62adf1e8d328f2309c5a61932faadd3897d59', 6376), - (12255, '0x8c7540023a7f80ef6a063922db08c9755b5650e6', 6376), - (12257, '0x7686039c98a4932c5eaa14f93744938930b9586d', 6376), - (12259, '0x4f4875eed1878730b6cb24d9dcc1f3f6c9dd7be4', 6376), - (12261, '0x9c0c178929e180023152cc016a9cb30e4c30ce3c', 6376), - (12263, '0x3b02a063fbe9c96e5aad2972c4fefb05cea0a5c4', 6376), - (12265, '0xab4f661b7cbd41691887300c2bda82568938cb82', 6376), - (12267, '0x65987f2c8b392a9150fc62dcbdc4a7c70d999272', 6376), - (12328, '0xdcab8d2373087f055c0e29770c2e661844577e63', 6376), - (12330, '0x5cdbc60f0c693b78775e0023fafa5668c2ccd66e', 6376), - (12332, '0x9af40489c5f4c66d0760a781c8b2b3ec009cfe9e', 6376), - (12334, '0xe6002fbfd8bd99a76b0d654a01e23be765a2b843', 6376), - (12336, '0x7d4dd7c2280404e06ec2b07002c4e5fef3da8bf8', 6376), - (12338, '0x5894fc5d4225afe25f2e04a77c8cd04fd57ddfcf', 6376), - (12340, '0x54ce9a4040ff91fb670c4636b6dee0ad236d4dbf', 6376), - (12342, '0xf117d107c67e9ccd690cf7a2fa203e40d904e01f', 6376), - (12344, '0x1fb24a976eab22dfd55ad9d886ef82783399cf81', 6376), - (12348, '0xf6d3069037ec92309900fec91d11e9ddf8b70499', 6376), - (12352, '0x9f18d3725ee0170e260781c39bf03520e5c57f25', 6376), - (12354, '0x919a2133b06e0068634c0e8027edf7ada75f2b65', 6376), - (12356, '0xe62e2290198751ea90e080fb811bb50deedb5ddb', 6376), - (12358, '0x42e228161721bc8cebe883552c083088758b0f8c', 6376), - (12362, '0xbd4f7509b24b6fcef9c84ef2450d8a41d8708308', 6376), - (12364, '0x4cf239430018956c343d46ea985836df11d490b0', 6376), - (12366, '0xa1306cce3b18ea627fd22fdc9470b88708f8383c', 6376), - (12368, '0x33d29ceab11333488667e1e79bacb6ed6f08d392', 6376), - (12370, '0x98a2c885073d08295666eb08191dd2fc573e8f56', 6376), - (12372, '0x95155c25bee6e3658faa813070cfcbfc6bd987e1', 6376), - (12374, '0xf97df627bafe69dfa21972b8c62fe3b57185bd08', 6376), - (12376, '0x65aaaa84b3e05d498533b3d6d10b41bd338bd838', 6376), - (12378, '0x6ddba02652267092b6d2ef17cf9282c65cdeae94', 6376), - (12380, '0xb433bd93077174ea03a0cef00fb6df804864f3e5', 6376), - (12384, '0x167aacc6162efb7c37cb743907a179cd49cf272c', 6376), - (12386, '0x22ec897edf080f7b0611426de3f15685a514d5eb', 6376), - (12350, '0x7edd0d7532ad40bb85d891c2e7201d656029060f', 0), - (12382, '0x08f38b09777486bac18df882f2b9e9a181e36bc2', 0), - (11571, '0x9438951a23a5ba12f949e29eff5bb02f5c9af0cd', 6376), - (11575, '0xba625bb4b560c8ed72a2b085b3fcf7b008cffeb0', 6376), - (11577, '0x2e5e1d7d74d17c5ab0376ca1d99cbc5619607672', 6376), - (11579, '0x3040ee44bf06667e115347b536aa4f1c19ae5448', 6376), - (11583, '0x9b6e209e2f9a10da931d4de8be17f8b329cd5208', 6376), - (11585, '0x62b2a933a73b4454d4bbeab63aacf3d9476230f9', 6376), - (11587, '0xafbc3f98eedb5f9a25a4ab2232d1346612efe77c', 6376), - (11589, '0x3931790517c1fcb2b7f72087e9c8db30621ee043', 6376), - (11591, '0xa9369d576cd73ec101f6fc3130693516a1b01974', 6376), - (11593, '0x7dd7fd8acd39e557a6c570965eea2b4008c4dd1c', 6376), - (11595, '0x430d00d7b63715ff5f19c825b750aa20ce627c8b', 6376), - (11598, '0x7bc9f604f0d63bb655d059736024774499c5b62c', 6376), - (11600, '0x8ac5b2b38dba16134248ce88a66488f6e88553be', 6376), - (11604, '0xaf3d5ce631cb1cdc88087bb692901eb30bc53386', 6376), - (11606, '0xfbdf556eded78c467f58be91d6d56f6eafb16dc1', 6376), - (11608, '0x47872bd6884e60bf641ea58ce11939106fec1be6', 6376), - (11610, '0xeed172c72bb44076a481d18736b76bdafb494bcf', 6376), - (11612, '0x46f3cc6a1c00a5cd8864d2b92f128196cae07d15', 6376), - (10613, '0xff86b59f479f2956e33067ed8b8ff0e9ed788172', 30756), - (11616, '0x67734390b4cc161fc48467df1280d0c2786ffa1f', 6376), - (11619, '0xe8839c5ee72026d3bee8f3d6c54af08c2289c786', 6376), - (11620, '0x2dccdb81706b8f079b14331e8c6941e2f4965cc2', 6376), - (11622, '0xb2d5e9cfceb8ad4844381c184496cf6d4ea25dcc', 6376), - (11624, '0x594176c99c8f080a7e5af5d62f8465f5bed17fe0', 6376), - (11626, '0x16571a6e792066762a5924f822aadb1fe6802d33', 6376), - (11628, '0x4352426b6c15b89219812c92d6114de7b04aeb55', 6376), - (11630, '0xd105fe3d0602c91142749e1b4a3124ab4d1d5436', 6376), - (11632, '0x0a89dfddacfec39fb4218a7cf7d47893dc68a324', 6376), - (11635, '0x491d5c091c496716061cdaf1c40247f056f3c0ae', 6376), - (11637, '0x2d162f99c5e2d5e782eae46a6199fb6df1da1478', 6376), - (11639, '0xfe1f341fdb81afd7743ac4b22b016f92a7e92b4c', 6376), - (11641, '0x686e1d2b21ec1809d3d1385224982325cd819c9e', 6376), - (11643, '0x86024aa7fbc443ad018d9cdbf1c5c6650dbd399c', 6376), - (11645, '0xaa58d9dcea557fc5b7180467421b22e60c4a5ede', 6376), - (11647, '0xf73bd3be776b07e3b73fa3f35e5aef4e46fe8083', 6376), - (11649, '0x407df19995bba21e71ec6e6b72feba70318031be', 6376), - (11653, '0x2ca733987f0045a18b968a300b54348c5f76e170', 6376), - (11655, '0xc0d8d6d1bb9e07988c936048e9fa4aa895b06bf8', 6376), - (11657, '0x19f0fbaa02306b58b69eea89b44ea718948d9d62', 6376), - (11659, '0x7f156d2596cd0366f77efb92fba29877adcb7cb3', 6376), - (11661, '0x9a7ae337d6e593406cb21dc606d7b145ded42fb6', 6376), - (11663, '0x21021638fcc2d847f63a6da5371c923880093b0c', 6376), - (11665, '0xe7c3b11f94ff1a1531baa540e397a5dace423645', 6376), - (11667, '0x1bffbad09122490062e41604e8b62929cee05804', 6376), - (11671, '0xce6a5dd489bcbaadc4b21612a9405f6225be37a0', 6376), - (12242, '0x28ae5ff04bf17a62eaea162882c3cfa00502c730', 6376), - (12244, '0xf6384b678a06ff44ae301e197fe20ee0ba5d30fd', 6376), - (12246, '0xaccab536dc4d26ced27f2733519a2fdd418402b5', 6376), - (12248, '0x7563aaf1338fc160daf8227e7f751865c955cdd4', 6376), - (12250, '0xf9d75ad5c70418753e03075efd4ba2f38dc373d3', 6376), - (12252, '0xd451225445d246d32542a394fdf44ba72a3b992a', 6376), - (12254, '0x29a1750f5afe54990b51eadffd94bc38a077b929', 6376), - (12256, '0xf363a0603c0bf05a047e1b14e1d74f20c65a67ea', 6376), - (12258, '0x06f5d8a4549ff5a19791a88a920f8c3fccd9879a', 6376), - (12260, '0x6e393f0d0d3c997c8b3715ab77c48fad6b9472d1', 6376), - (12262, '0x063a163c0d7154159c566011c76abbebddcb229e', 6376), - (12264, '0xdd3601a27997a21e31bf13a9a4af8a17d5e747ef', 6376), - (12266, '0x05a97a63c660de4250ef5232a465ba308938906c', 6376), - (12329, '0xddd4e31899ddec2894b46f4ec4ebc2a49340c39f', 6376), - (12331, '0xd113a6a043c7c284de9a570171859d12c43a4f83', 6376), - (12333, '0x75e9a4e119a4ae234dc1feda3bf06ba6f3c42b7a', 6376), - (12335, '0x2486dc20a3022f04c0fd0d0c57031e583783d791', 6376), - (12337, '0xf994a21703bc4f4ba1beaf0733b1946b99c2350b', 6376), - (12339, '0xa1966fea37c7c7ed3b3fccbd189c5363b8a8969a', 6376), - (12341, '0x01678932f693234da444d25b86f48af7cce4b941', 6376), - (12343, '0x787d9abe3f814b749675b87bcd8afbeb20f4d970', 6376), - (12345, '0xe9553cd4012603584ba252891e49448fe2013fa4', 6376), - (12349, '0x1b6e209873b8ae2c94e61a9aceeb14e6443a74f4', 6376), - (12351, '0x71663086dc94f7daa4416cd2abd78d26dacc7e17', 6376), - (12353, '0xf63c814789d8708b61ff4678c10db3b472404ecc', 6376), - (12355, '0x0955ba1abeab62e234273099951c4f8008ffec71', 6376), - (12361, '0xdbb2b4d1a06a2084000b10f6508434389ea666be', 6376), - (12363, '0xbbb0fddaae4c30ef8e1520a1c73b5acd570f1f3e', 6376), - (12365, '0x000025b47899b3fc97383a65510c8e84389b1490', 6376), - (12369, '0x3be14cd8524468c40801fbefa3b3d7c83cf3f354', 6376), - (12371, '0x88abdcd2ab0bea25e27775379f254204b9486c25', 6376), - (12373, '0xd44a2d237c3b54e2fe7f3d362bde024b3001ac37', 6376), - (12375, '0xcea7ce680c026c7ed136cf32d9dc520815079388', 6376), - (12377, '0x6110dfca53554486489e07dffde2e384afe99827', 6376), - (12379, '0xdc11ca422d5b30726a0e0b88df060dcdd2524f09', 6376), - (12381, '0x579c7e178f116c7ad4388be6a143afdce300cbfc', 6376), - (12383, '0xe01f230bec5aa805f08f63632cdc370975cbf907', 6376), - (12385, '0x8ab7acd5b8a6b4d1a134620b1c23dc710a83121c', 6376), - (12387, '0x17f5f067958e7e24f94853b40e3abe968943edb2', 6376), - (12389, '0xf458228b4c1de61c3bb6f52474efd0525875dc0c', 6376), - (12390, '0x543948999989294cfb74cba5a7d9f501a84a12d7', 6376), - (12391, '0x5dad5b8c4b640305585bf4586713bad0fe992dd6', 6376), - (12394, '0x19746fb5c157b7f6e680e67f6ee526b0a2ed612c', 6376), - (12395, '0xd32d9367abc05743738b6efa07e0aa62581d9fea', 6376), - (12396, '0x144884d6888d0947031728ced46149d778f31791', 6376), - (12397, '0x84207c1e5127a02770b868509fe9ffe7895c3b21', 6376), - (12398, '0xbcabdcc1d022e363197491836e3d9c908fda8b50', 6376), - (8931, '0xcfdb2bb393b0d6523359a808cd66723efca52e6a', 0), - (12392, '0x0b6e71ebe70b21127d9a3ffbaac023ba9058a4e4', 0), - (12367, '0x964686a6cb1efd9ecd7b53086c24d0aac53e0c69', 0), - (12399, '0x5fcec9fa0de7c48edce4fbb7916be110753e56f3', 6376), - (12401, '0xc3fac1e2d80fa7524731697b03f319104e0d3831', 6376), - (12403, '0x108a8796a9716d4cd68342fefb8abc9de17a295e', 6376), - (12405, '0x38104c507ff520d5dc6c5464948dd223776bcaa9', 6376), - (12407, '0xa34a2dc2d646346af1c88af8c6712ca4ecd23225', 6376), - (12409, '0xe6819b2ff3ce24cbeeffe09c5baf7084e07a0750', 6376), - (12411, '0xb05d11c4f41f3e301a82776fa5a637f327d63838', 6376), - (12413, '0x5f8c446d3a7150740a99041ea2feb7ce49fdc5cf', 6376), - (12415, '0x3a9c9af19eb08dbee2b1212fb8e70294005e3bea', 6376), - (12417, '0xc6cbe3d018d4b37a806d3a47240cb1280f127c8c', 6376), - (12419, '0xf2ad1b05aadfacce323a7ba1310ee8dd8e06fd3d', 6376), - (12421, '0x2d23f9a2505a4710acc3d869c9946be2e4a52f09', 6376), - (12423, '0xf0e98d8562fa85a6bec326c3fef618fece38b80a', 6376), - (12427, '0xb6ed7ffa3e2b7f5a4baa66afd182d7d35a5259a6', 6376), - (12425, '0xd345388fedac9f242ca073b5357738bb753c66c0', 0), - (12400, '0x66041948f76a7d95a2c0932af9caec45cad8e2bb', 6376), - (12402, '0xf0551e5919fc452644ece43ab2f819000603899b', 6376), - (12404, '0x87291556d4db5848cbc5790db4e87cce4e59c585', 6376), - (12406, '0x606e592bd43001b67070fb7926d894a5913a6406', 6376), - (12408, '0x5afe70bbcc49e3034b1d76ae6f28874471710ae4', 6376), - (12410, '0xd95c9acefff00d57b0a7b2f441872d446ce911fa', 6376), - (12412, '0x38f8579137672b5e336bb18d113804d7e55c35fd', 6376), - (12414, '0xf454c82549a24397a1ddb6c5efa1e96da58cdf95', 6376), - (12416, '0xa09d6a3071645b7aafc6afcad3d163e48d0c0428', 6376), - (12418, '0xd5d4b8a629086a52345491a4e8164af88154c1ee', 6376), - (12420, '0xc8623a81ce1f6e796de89035d8af8770c7892942', 6376), - (12422, '0xbe9dcd05728566525ff4cb56ed1fb15bea73c024', 6376), - (12424, '0x6f99cfcd97a86b5dac4542ab5b2a2af8a9cbf567', 6376), - (12426, '0x21dc0cfb577609e38b131feba041a31769cc7320', 6376), - (12428, '0x4c72734070b7a46626c3f6d19cc3dc6a4b433d9e', 6376), - (12429, '0x70df77cf4d84f2c6502768cb4614343718b1ccb6', 6376), - (12430, '0x1ca949d2c2b3a79b0973eab00bb7a7f0604c4058', 6376), - (12431, '0xdbf86890ec5c07224c123c95acf0ac04551a53ab', 6376), - (12432, '0x3e2e9fb6161d14a30f95ac409bfd7a05a5459e00', 6376), - (12433, '0xc7864bece3f7d6d2e73eeae8aac204b07856f3df', 6376), - (12435, '0xa1c6c1dbbdd50998474e2c8c527dc23be1c0c296', 6376), - (12436, '0x67664d5efa9db9bfff4e52487086fd50a7f306b2', 6376), - (12437, '0x30001f41b61f319391c0feb46115d1f0a2795661', 6376), - (12438, '0xc7708f30203f18f7d93387a17a35b135a29bccfe', 6376), - (12439, '0x4d7187940ab47d1e5a0b1a66a9d1b2268d0e4865', 6376), - (12440, '0xaea0e241f528b81dcadbc4dd58cd16a534b524bc', 6376), - (12441, '0x35049ebf82ef8ac3426bbeb23a607507c6eada30', 6376), - (12442, '0xff8fe2af8a98ac50449a6fde46466a9ef7df7359', 6376), - (12443, '0xa5279fc228f466edf7d80609ddcdb2f651b5af42', 6376), - (12444, '0x48e163ecaa7c605eb4f8c7f120d27d8506a70648', 6376), - (12445, '0x9745466973a7f26d12ba1fc3670c8d322c03172f', 6376), - (12446, '0x2d83b521ac56c29389bf7c46608a9692a323daf9', 6376), - (12447, '0x9405224c0d029ab0ce472b988f747bf4d52d26b3', 6376), - (12448, '0xfb41c8db3d7f1744ef2c50db2f9ecf6ecc932b2d', 6376), - (12450, '0x4d393a8c2dd969d6bda1cd2974543e2ed7bbaa35', 6376), - (12451, '0x8f3be56af974a74826c1fa009c6c5c3a4d9c546f', 6376), - (12452, '0x3c240d6b326c21fd0117e0400d0798375a07498e', 6376), - (12453, '0xce3f7f8cb46ddb27c570f5f11186f7a787cce549', 6376), - (12454, '0x32ab4538ad215c4de8ddc638c69b5f1d14fb43a1', 6376), - (12455, '0x9d1e0a23936810cc8d393f7bafdbd760f18e7a7b', 6376), - (12456, '0x1859be60513cc38b9c178691a66272cbd0446a0c', 6376), - (12457, '0x933712dc96f1756eec845b62519db466eec35d3c', 6376), - (12458, '0x36f6a065e35dcfed795dd94d45173b9b3079d0ec', 6376), - (12459, '0xfd8f78f708b8b0b768204fff10ca83fe46f6a391', 6376), - (12460, '0x336d9d8a8f813ee45f175dc8029a50cb54073e3a', 6376), - (12461, '0xad1949d2b886879f808617e18419f87b698cfa2e', 6376), - (12462, '0xb08668e833fde3266a11f5441c589bd0237a1bac', 6376), - (12463, '0xb5a38338b364ab753e5cd79d2b235b2e9c1581c9', 6376), - (12464, '0x631e5cbd0dbbdfc96a21416d428757b473a380d6', 6376), - (12465, '0x502f1c18a5d540a0ddd78dc3b383e65ef2280691', 6376), - (12466, '0x4274e76bb8f62e06d64b82eb69c7c9c7d3ab0769', 6376), - (12467, '0x67fb654eaf25af03bb138f592c2ed654b8188aff', 6376), - (12468, '0x8648c4991cf7662ee4355ee93c35e0957f2bb512', 6376), - (12469, '0x1596e4245e9170fe0f7012ebf1bc2f45fbe0f793', 6376), - (12470, '0x5d80ab7426f6374196fb911edd8b77df7bfbdeab', 6376), - (12471, '0xe729140b90fa10ea30230ff6bf89ed20bee8a9d8', 6376), - (12472, '0x16e2504d1f3a2ee6d85d082c72786f79e2171b8d', 6376), - (12473, '0xf89bfc28d34ba52994d436d7a1ad3e34daa1b6b8', 6376), - (12475, '0xd4ae7c097f667c127a107daa147774a559a8e2ef', 6376), - (12477, '0x046b3198573b7b9dcd89920172c42b8a038d2aed', 6376), - (12478, '0xfda06b2102b696c79aefaafdfa17d5d54af0fd44', 6376), - (12479, '0x7db505e48816d56d46facd93ec874b3f10f9e963', 6376), - (12480, '0x281427389ddf039899254b5673f38dfc68d3af3f', 6376), - (12481, '0xfcc7921326c94bc69c558cc066d44b3763ce7f75', 6376), - (12482, '0xe878386e976f10f5a4f2a17ae2877e0626e756f7', 6376), - (12483, '0xe9f3bdfc6e59db8066d73dad39ce45d73faf342d', 6376), - (12484, '0x7242b3789e6f53c881bcca97f8d218387207da45', 6376), - (12485, '0xb14cc5681ada40b302695fefb06b5739a3077510', 6376), - (12486, '0x22a1fc90a1b7222e6d7dd42f9b5ea028fcea192d', 6376), - (12487, '0x3bb72953d0d45486c0d81fec8408601f929167fa', 6376), - (12488, '0xc06c4c77aea7c34e457137e2d07461c7a9e401e0', 6376), - (12489, '0x44bc008896076226ba6d5292721239b281ddf970', 6376), - (12490, '0x7aad23654444ad3b2d6ea02dc1220a5ee3802dff', 6376), - (12491, '0x68276c22fe0a353a053d91b5805febcfde447d04', 6376), - (12492, '0x77e3f25c1a0e86e9decf93d48c499c33aab13fb2', 6376), - (12493, '0x9251f0e4b1cedebad95320c4588f0c8872142cc2', 6376), - (12494, '0x0f6d0c33b40df4b27568808690a55b0e98fb3425', 6376), - (12495, '0xa6b30135a642eaf463bb39f3ae017a07766cfb9c', 6376), - (12496, '0x29a7c68a7987ea082b36703ffee2d2b809d4af77', 6376), - (12497, '0x7d0457a9f48f4ad699cd171de588785aa117a9d9', 6376), - (12498, '0xf949512c97ea30afac3d53f88c2741855fae3830', 6376), - (12499, '0x6efb467d0cae4f0c1107c797886cf8efee9a3b1d', 6376), - (12500, '0x5032f8de11c1e8653068cce060e956c2d190f1af', 6376), - (12501, '0x2d0203d5d1ffbae3af164d6f40b1843755e60926', 6376), - (12502, '0x400bd70a9615fb182afe441afbd9587626e7f23a', 6376), - (12503, '0xd128db97095c59591621748439e42e6ad3eedb2d', 6376), - (12504, '0xab4f01e48d3304516ba6b925132d8695ea4fa657', 6376), - (12505, '0x6aa4818fe046920e273cd64897a70fad2c66a632', 6376), - (12506, '0x4efaaf373b34af98b8e47818fba6ed52954e658b', 6376), - (12507, '0x0b68ff31fb57489ef5a9b1604965c283237dd095', 6376), - (12508, '0x8895dafbce656ac789f5a63df59d40331a4278c5', 6376), - (12509, '0x7cc5078c1f6f57f5a48037bb3a2a29b7e2471e10', 6376), - (12510, '0xcaef42d212f54c4f3de3fe28c1fd22b3d08fd66e', 6376), - (12511, '0x323061ed528eaff54f270a82b9867784746e8bd2', 6376), - (12512, '0x7487e569acb19db9ec167085aafb069b77aa7173', 6376), - (12513, '0x9b5316440d7aef9e200015e647b7a9769bb907a6', 6376), - (12514, '0x92b28002c3a0735872b5b0da4d0f6a34ee5c1bd8', 6376), - (12516, '0xb7602642334c2d5289a804bbd8a6358c6b0c20fa', 6376), - (12518, '0xfd3a439551640842cfd437c5c7a28740b86483e1', 6376), - (12520, '0x42b04fd2dcf5497620bd5b0d0f1246943518717c', 6376), - (12522, '0x399af67170e4c9e44d0cd3860aef253376311e73', 6376), - (12524, '0xb82880e217478907cc9b1e5795d75d3257608ce0', 6376), - (12526, '0x4de5d9f3b4c88e488736591f1c3716b6ee6bb3dd', 6376), - (12530, '0xb7e7a8c4357787d592e4d4d6cee52fce2a6b1983', 6376), - (12532, '0x0df30c97936847aa7786afaca8c96d42da29c251', 6376), - (12534, '0x66d692bbecacae3026834750e603291fe4384161', 6376), - (12536, '0x383b0ddaa84e9488600a59d965e1bea37719f806', 6376), - (12538, '0x914be65af0295ab44c8c0b4041fe29e00135b045', 6376), - (12540, '0x99a8dc4b9c217eb7dd7cee34519435984160b6c2', 6376), - (12542, '0xde245f39def270b544e2e2cddfcb9f8386ef842a', 6376), - (12544, '0xd7069ebfd8f665fb995ddaf988e274c3e64323df', 6376), - (12546, '0x03edcd5b15bbc42f345bcf938e2264087a54bf06', 6376), - (12548, '0xd566ac97be0ab14d23ca9e5bfce7daa264eccb73', 6376), - (12550, '0x2a8bbbbf7e73b8268d82d4092e8914aac00ef35b', 6376), - (12552, '0x3a99c7a4bb39e61b02d8915b900582459a1054a5', 6376), - (12554, '0x618d5b7e71911a4cb4d33e9decaeabbcdea67507', 6376), - (12556, '0xb80aad2378e3e50ffcbc3f36c5e7f70cd5c08c37', 6376), - (12558, '0xa2f0448f346ce50b9029506c88dfa58d07baf880', 6376), - (12560, '0x089d9d8d95eb8e1eb54a7b1d07db4d700a521c15', 6376), - (12562, '0xaf4eb5f2fc5a282e49d6fae52b8d7d6d83df05cc', 6376), - (12564, '0xaf72f81aff7804b9b277373779b4febb8b65b215', 6376), - (12566, '0xff38726e0e4c39873b3941a86c652db27e52df13', 6376), - (12570, '0x13ff77c9315dde5ac9cfdb7258f99d7d70011803', 6376), - (12572, '0x53ef9b3adce73986dbaf84f9992ffc9cd49c0890', 6376), - (12574, '0x1d814fcd93874df29a737393ed7c7ed2eed7c3a6', 6376), - (12576, '0xdb62de39114127ab88d0381db5ea32b0d2032250', 6376), - (12578, '0x55ab0a4c07cb1b9cbac58386bd6adf97e6918b5f', 6376), - (12580, '0x865c301c46d64de5c9b124ec1a97ef1efc1bcbd1', 6376), - (12582, '0x040a58e44b0ad3108d089606a4e4d8adec6ff6dd', 6376), - (12584, '0xd426b5c8cfe4c2dbc3d247f00263250668436112', 6376), - (12586, '0x346bc60131ea4234dbe756b643482388137788c7', 6376), - (12588, '0xfdb6a41da1b9b22becae9f0f17e615c6855f0cab', 6376), - (12590, '0xc5693599a356e45d6fe406fae068e5bfbe01b387', 6376), - (12592, '0xa8c174094ea0a2b8f5fb03fa79a134e940f08e48', 6376), - (12594, '0x567e045128cc9589299433e3f5278f0f4ee51d61', 6376), - (12596, '0x9b03d14d0def828d871affbe51907920aa56b41e', 6376), - (12598, '0xb9a050f8aaec8147f97e9eaa70c3bc800f08c290', 6376), - (12600, '0x902c55a68c41cb4184e69beaa98f73087eb87a57', 6376), - (12602, '0x6becc28d01908edbdc6147f5344d8e4319cd0a2c', 6376), - (12604, '0x5e6e3ff816021a2842cf23c36faeb0019af7ecb4', 6376), - (12606, '0x08ccebeb6d0f5716e2edb8afccddd7386274e645', 6376), - (12608, '0x1c4d0bc520c79b02480dbd35cb3f4db1bf9b4293', 6376), - (12610, '0xc80bb7823acadf00ef7d98dc40042d142f1eb5a6', 6376), - (12612, '0x561ddf1d007ba6b347ffe55414cdc71c78f4636e', 6376), - (12614, '0x421a5137d93669fa4066a18cb350ccab824e7d68', 6376), - (12616, '0xb782fb8d0dc728fa6187ba77774505e22dc6b452', 6376), - (12618, '0xa3a980916be7042f66f2fac3726cc30144510e49', 6376), - (12620, '0xb3fa938d0d726d85a73ced36dffde59d8c4d803d', 6376), - (12622, '0xda1b800ffdb38bcc55ae6f5313775802ca3ace2d', 6376), - (12624, '0xb1e5fefef0aedda7f85e4953ea8691ce951ae864', 6376), - (12626, '0x5341ed6f97f5ab19b1be52ed6775992ed0083197', 6376), - (12628, '0xcb6336fd4034d1811022de67d295803b27918455', 6376), - (12630, '0x5461d1a749d2d5f253c4c6971cafb78a86919859', 6376), - (12632, '0x033e72d6da09220ceca13b158edcc6947981d97e', 6376), - (12634, '0x6946ff357fe2625dc928701e6e22cf950cf3054e', 6376), - (12636, '0xa9d9a1237ac12a85a3e7037c6cde27d39f7a6b9a', 6376), - (12638, '0x2adf6094c969095ea1720046ff47c3b5f49fab9f', 6376), - (12640, '0x36727e238a5cf5e7619c6bc29bbd83272ab38671', 6376), - (12642, '0x0cea26bc36ed5c58d3830e670ee1b0b9e72ac37f', 6376), - (12644, '0xc028f0f776e921aa62ebf83c1baeb3bc006abb29', 6376), - (9122, '0xa0a8a6445664f7f57bf3f72394edaf3c02d00d2b', 29556), - (12648, '0x9581a418548ed6512c64ed041bc1efd4bb7b61b8', 6376), - (12650, '0xb60bc12948744190ac91f843bfcb55ca40227d25', 6376), - (12652, '0x174080d6bcc56f540691b3abc57ca47c15ad4c71', 6376), - (12654, '0xb0c2e6bd8bd6f7620832370b10cd04ac578e969b', 6376), - (12656, '0x501e3f9091f597ece36080a3ff1283b32c6151ac', 6376), - (12658, '0xeb456df5cc860253c1782d6703759d501c695675', 6376), - (12659, '0x1e2cee9334756f3bfdb5af39f8b065d64baaf905', 6376), - (12660, '0xa3603a137b0f61c0a2a804d4b2deabd247483d47', 6376), - (12661, '0xb52eeeced164caf4eb4765188b0b1e43cc2840c4', 6376), - (12667, '0x034b6e8e078c47ed499d411c06d23e40676b6c76', 6376), - (12668, '0x5f7ce53a13e075b44164c00c62f9b7500439976d', 6376), - (12669, '0x2c50354994479a418108978fb0e27e8f6d10dd35', 6376), - (12676, '0x0469d60d507190023140380714b68a6c3205a370', 6376), - (12689, '0xc7af5b8418c2fd9b531ac1ba96cf1e0c2f776ba8', 6376), - (12696, '0x5ae98f92049666c62bbcb55b085737e036609388', 6376), - (12701, '0x88e85316a246b9e57a25a3481af990d262cad4b3', 6376), - (12703, '0xe62f3d7b5ac896efcda7a5088ce0923240b54161', 6376), - (12705, '0x2f4318b32deec5115a286223605f599f7be040fd', 6376), - (12707, '0xa7758394d8f7fd23b0d9f13e02427b514687394b', 6376), - (12714, '0x0396147f0b821aa0d2581f8e2dad0c9956255028', 6376), - (10739, '0x4a4e38de548f3bc69cddb003e5c42c6bca147539', 38696), - (12729, '0x9bae8de2293851e5b1e1357d9dd1243b83028160', 6376), - (12731, '0x0a36b5c695e0ce56c69893702fb059aa9ba0b3ec', 6376), - (12734, '0xe7a07da6c5c37ae70067ce9374a53a6288105bf3', 6376), - (12736, '0x3f13aa7194ed92e1c0a0d0bb12b55b97dc53d8d1', 6376), - (12738, '0x4a72bae19e62dcc71504ce5412b00505e18e94a3', 6376), - (12739, '0xf47fcafccc8c6f2d69690d1f285b469dcc4e4401', 6376), - (12741, '0x4884f2370373b1234ce25892a8d41f598a8e9822', 6376), - (12744, '0x3f27ad7b306d90f8ffd1a5ea91f103291f05e8cc', 6376), - (12568, '0xc5250939ab0e1aaf6680d54a2b2154e59a43871e', 0), - (12515, '0xb1479546b104f07cc1a500a5019b560fd61b7060', 6376), - (12517, '0x987c1ff036e490dff3ab9ccdc8af1c0072c9bafc', 6376), - (12519, '0x74a960279bbd5a08de44b5473bcff85e4ca829a1', 6376), - (12521, '0x1438a39ae5d0c6ff278c1e3d6b8487d9aab15746', 6376), - (12523, '0x38db9216e6250e36dda24b0b641e42e3cdba6ed4', 6376), - (12525, '0x8b9b6e57b43c6ec69c9e6f56fe0a9d71e6e23cee', 6376), - (12527, '0x7d9bfd6e688f94e6f2c6ddb1f8bda63b6550e964', 6376), - (12529, '0x6148b45c0b78d9a6d143fe3c87d2976e5b3ace16', 6376), - (12531, '0xb788858ac4c8b71806f99f8eae18a32421ba3e5b', 6376), - (12533, '0xdead886addae38f991ab76e01ee652e24596cd6f', 6376), - (12535, '0x293d98cb4b7088b536661cd6a59000a65d11686d', 6376), - (8447, '0x4d72d3b315e8d8244d7a1c1d136c3fde2e79ed53', 25776), - (12539, '0xca5091c0e2b4fe2a4bb7c4c1cdcbe46e5514c123', 6376), - (12541, '0xa2b1237accece93aa560fe9c213a8ffd184cc16b', 6376), - (12543, '0x1374458e9e4512d2af2746d2c23a15fedbb2eb7b', 6376), - (12545, '0xddc1d6826d07a1ce0eb4e977983482fedf7901c4', 6376), - (12547, '0x5ca15660b2066f5a9511b9e56f6908453b6c084b', 6376), - (12549, '0x99e4530a9965dcaca8aad011714ce1446667e4eb', 6376), - (12553, '0x17508f211f5db05e3b979b3d83b64b5871e211dc', 6376), - (12555, '0x9041c981b028a20725a1ddee3ca4e095c73ae574', 6376), - (12557, '0x50199b6a9169e4d2ad86a247fdb2cb2d04ac15f3', 6376), - (12559, '0x5ac163a73831f1c6d6b2d3d1b34a24c2e7d15a85', 6376), - (12561, '0x0f427d8f91c5638eb77e96978d89a3f1448119c6', 6376), - (12563, '0x9fe760fea9ea6970c74ce91a36ac1e8f15d45a32', 6376), - (12565, '0x2390cf638130f6927ab6e3312d496e0fa9285dce', 6376), - (12567, '0x82217f06335fd07cdbedad207f12b49d65918a09', 6376), - (12569, '0x7b37aa614c64daf3d2af4493269dd5326da4a9fb', 6376), - (12571, '0x282db1ad2786cbe8309082037f8a2732842e19d5', 6376), - (12573, '0xcf81cfea05d0d5636374bb3d27b065fe87ac2711', 6376), - (12575, '0x171a35ec520087cd14589c676993de6b04316009', 6376), - (12577, '0x2788598bfa9966030370d254b3c3f49971a9874a', 6376), - (12581, '0x648377bc0c29bfe4eb1e2884c3a247727a602c10', 6376), - (12583, '0xd4f4c65df2761fdb987555f19fb268120237a77a', 6376), - (12585, '0x25b0d613bc760054cfed524812eb8b01a23ad9d8', 6376), - (12587, '0x2bb425c093729a6cd941480bbf9fbf48cd0b454e', 6376), - (12589, '0xcc609b7834e1ad31a27df687d29959981dc5dad4', 6376), - (12591, '0x183ae8774788c92f9824e837689f14a94863be3f', 6376), - (12593, '0xc8bd5a3801f4219bc2a8aa42aba7455fd9d38fba', 6376), - (12595, '0x8909b0ac090e7f4ecb51981b694c934f1d22780e', 6376), - (12597, '0xde7c54dfe1ef6aca7fac83f41e5cf766b1d2cc13', 6376), - (12599, '0x5c98fcdc6cb614598a1116d0b15aa6b29e470c3e', 6376), - (12601, '0xf50b9e0f4b2de3765266a05b103d5f48b84e58b6', 6376), - (12603, '0xb40a12241b6e4196e64fbb8246a6b4c6f8c10be2', 6376), - (12607, '0x94368df30c5be459e581813b7b05be604941ce35', 6376), - (12609, '0xd87793229c9c9ff2e467acba0887656a3cf41ffe', 6376), - (12611, '0xc5e220a55a7b47d4a404156269dac2f6cb351ad2', 6376), - (12613, '0x51fdb959a53e412d35d2f66614e8f78f073391ed', 6376), - (12615, '0x553d17406f3eedce2cdb10b4d2a2c79251583219', 6376), - (12617, '0x23b5f526ffe0079233a1def0b53dd928c88143b8', 6376), - (12619, '0x275f8eb1c037e154655e89deeec7eb67ce5f2e0f', 6376), - (12621, '0xa58a3aedd9a50fe43f81bd0b83d7b882b5acc1d6', 6376), - (12623, '0x552d4b31babb5069db5f80f4559c635da42bc342', 6376), - (12625, '0xa5002b596d64f7076ac203caebc2abd3b0b06a13', 6376), - (12627, '0x4c01e3b4ab132a5e35c3f09eca3e5c35669c7cfd', 6376), - (12629, '0x4474c00e27e941753dd555a6909ec94a40971167', 6376), - (12631, '0xbf7668020e22da49850009d9d5f5faa066e87966', 6376), - (12633, '0xd5f0e2689903cf2509770e5780d19c618a027763', 6376), - (12635, '0xde4f0f28b76fa12133ae88e4aeb77eb5acff9741', 6376), - (12637, '0x356df63fd3d167e556cedefa40cb0c8539a96c3f', 6376), - (12639, '0xce108ddc55570e04a4dfc8b908177778961bb7d9', 6376), - (12641, '0x4a0f4801eddb825d712f33d6e8121739ab646b5f', 6376), - (12643, '0x775c10c93e0db7205b2643458233c64fc33fd75b', 6376), - (12645, '0x8943b6c8c565a4a50cdf14fd1ba48d633acd1543', 6376), - (12647, '0x5087e78d09be8e618f10961d4659d41834c9e35a', 6376), - (12649, '0x50c7203574cab8fe8dcb9c9a2a6fa1ac79cbd113', 6376), - (12651, '0xa2fdcc736ad5a24ba1adbbac80faf610e7b0e014', 6376), - (12653, '0xe032392d419c7dea1adf93b783edcd714578789f', 6376), - (12655, '0x085cba3866899e916c06d0d9c092d94b5e33f887', 6376), - (12657, '0x06a52edeacd051863a10daabe8940cc20cb5e6a8', 6376), - (12662, '0x84ce35c1093c366a8f55e9bd5290ae7e32b486de', 6376), - (12672, '0x6ca227399f02bfcdae7c67e58bdb78008f02e72e', 6376), - (12678, '0x928154693ae352907d1ea44e675c54b4a760b76a', 6376), - (12680, '0x13313c1c6c33824caebb8f12c7f8b7fc5932463b', 6376), - (12682, '0x4b15e72a4d5778f296cccfffebfcdd67fc521e78', 6376), - (12684, '0xc7cddd9cc49aff0aeab9ff5cecf81a9ef298d567', 6376), - (12686, '0xf70c68a6fa64f70175c1a42f8968f5db9b88273b', 6376), - (12691, '0xef87d0e5a5cfb31ea5c1ebac213d9888d2e72956', 6376), - (12711, '0x1bdd05cc31d766606d8eef040d2c78a2ef2ed6ab', 6376), - (12713, '0xc9c9601858ae92799643182e28f34bae36dde395', 6376), - (12726, '0xc15c8c19a0c045fa4eb8ebdc1a29615511a756f3', 6376), - (12728, '0xa42b465c1c3e148b77f6b9dded0e3601a8320d62', 6376), - (12730, '0x694f933104625ea59140140a0d36aea45ad769ec', 6376), - (12733, '0x2550d50d0fa9477e4bcdc21626f2edfb94f3cbf7', 6376), - (12735, '0x96168acf7f3925e7a9eaa08ddb21e59643da8097', 6376), - (12737, '0x0fd3df1aaff6f6fd650e2dc28eec72dafd35f4e2', 6376), - (12740, '0x4da5bda21c66edec94ba1a7d215fa2a62ad8e4fc', 6376), - (12743, '0x8f34beb69480fa19d8e401fb3c6e3828728ecf4d', 6376), - (12745, '0x6930450cf7ad5b9ff39a803e8b219f3b6ddbcb4c', 6376), - (12749, '0x7e83a7358a91ef42d72aa876a42256b6ba5d856a', 6376), - (12751, '0x4b828cec89caf3263f93c148f80dcc8084947f7d', 6376), - (8239, '0x6a2f6c4c10c8af0f0eee8eea8b7859c2a6000902', 25856), - (12754, '0xfc92260387384548377576a1dfff0aec052f2273', 6376), - (12757, '0xc51f0f16c1a4ba2a4a13445ce58feee189b12292', 6376), - (12778, '0xd927fa8d4f643c441d6588c425ed58841d136c2e', 6376), - (12760, '0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0', 0), - (12663, '0x2bcfce1a7cbbe06ab8f07cbabad294e39cb06844', 6376), - (12665, '0x5dca3693347f668488cd67f20922f7c650ed4deb', 6376), - (12671, '0x4b51216acd5107d6cead43c044b6f703c7e58738', 6376), - (12673, '0x8fa2211e05955444e92769526b7a68697848571f', 6376), - (12674, '0xdfafb1707aee2f781dbc864604620265d3f8b734', 6376), - (12677, '0xa0a1a3e397f222cfcc9c7a4ff09d1204523902c4', 6376), - (12679, '0xbbe796e0c9e46eca1e7ae2cd282c157fb4b74857', 6376), - (12681, '0xc0c2ccebff0e6a1662a3a486c3fb98eceba14189', 6376), - (12683, '0x55a04cddfb1ec681d372cbb9462eb34718757af9', 6376), - (12685, '0xb7476807c53c28819e69c5b639394a12e4227746', 6376), - (12687, '0xf39aabc2ea9740ce3d1fe90d2c2ad50b0cfa0aaf', 6376), - (12692, '0xf2b77473b93bf54b90d436533b47c5f7a277f468', 6376), - (12712, '0xb2d83eebdaf9e9bd2cedfde9f4e3bb67bd15ca13', 6376), - (12719, '0x0374f0273e01841f594a4c0becdf7bfbd9b13a42', 6376), - (12721, '0x8ba483b2b1b05f7529ecaf0c1cbbdb112c766510', 6376), - (12724, '0x06cc00a3f44979620b839ccdc012826b8c410fff', 6376), - (12755, '0x603c05ac224bcdec2305ea03f27c9b263bddd787', 6376), - (12758, '0x9fc196e22d1e4a4bd9e0a0ba5c8c9f870c57a137', 6376), - (12763, '0xf7873830c37b4969db5c9d77f02303e218f9a03d', 6376), - (12767, '0x2fdafb2bfc522e89b5fb1e99c95df1de0b5588fa', 6376), - (12769, '0x9cf9b3a7bdd41348beaa1c0642de8d6d55653eb3', 6376), - (12771, '0x435608b22e5d9eb06e1f5aceb89d454fdbd243a0', 6376), - (12773, '0x84ac80fa7124bbac29503ebb6a585bcfcfe75e52', 6376), - (12775, '0x896d0e11f5f5c670892e318e0a74d733dac5e5f5', 6376), - (12784, '0x485d1f69d625192f09a6c5732d4b9c56d6f9126b', 6376), - (12787, '0xebc87921277b83d1ddfb1a604bb9d1751147866a', 6376), - (12789, '0x2271be871b02e6756293576b9115fd826e1e7467', 6376), - (12793, '0x613912cea032e331e343d6e957f77755021e7477', 6376), - (12795, '0xaffc6a7b5108e50323a575f94c0aba0657cf6c1a', 6376), - (12797, '0x17c87bc3340ca956d84ce934a5d1a2183ba762ed', 6376), - (12800, '0x04984857ad6084420eaaa73149e6dee9de5b3cd7', 6376), - (12802, '0x5cf2af57b0406c8ed68bdae57efc51f0b556ba8c', 6376), - (12805, '0x4de4f4a7b2491066f297419286e279c2bc467c69', 6376), - (12807, '0xe2965cfe9cfe9673022be35ee7dc0e9e3a5de655', 6376), - (12808, '0xb42eb4f4b1468e69a8c93d29217fc4e00d2df79e', 6376), - (12811, '0x5a4dc3db3217579d654cf9ac77e0897638bf2e1a', 6376), - (12813, '0xe955fc993430b64881888b815570857658a24a2e', 6376), - (12818, '0x7c59b97fd285f23aefeeb352a17da5cbc70bd955', 6376), - (12822, '0x50b16fc45873176fb3f745beadb11e609be19d6c', 6376), - (12828, '0x1513125ad1abf23439b4d7f54ffa19a95d55e7a9', 6376), - (8156, '0xaa0dd4544fb4ac8c706011bfa8f16638fb6409f3', 253036), - (12832, '0xc442653ea9918678066c3176c749b51a198a6ddd', 6376), - (12834, '0x148daa5fb56316eac3a32149bae3058cd89e3a58', 6376), - (12836, '0x352b2f9947ff0e9c50a213f0e99e80b65044e99b', 6376), - (12837, '0x180d4a7c54badb851aac45cdd612a13e666a9ff6', 6376), - (12839, '0x3fbbe94d8ab989fa956fda20cb2bcae473edb357', 6376), - (12841, '0xa577feac7606d857ab10d0d3bdf4e32a69752f73', 6376), - (12843, '0xb39e150c0000d902e5aa8e7cfc2c36485a0292d3', 6376), - (12844, '0x4011c3a32e25b99c3ee0186dd1623e9f749307e3', 6376), - (12846, '0xa37cefff539b87bfc64af0463344ec95ce345667', 6376), - (12847, '0x2c8d2e50ee03f98a2f4ccfbe1a61552b79bdf6fa', 6376), - (12849, '0x729cb72e138d3cba195cc923eee4fcaa10f2fd40', 6376), - (12851, '0x9820531960fba62174d1c64fba6092058829162f', 6376), - (12852, '0x593b0c00078a741eb440c7b9dde999bdd40aa1f9', 6376), - (12857, '0x9ad01016226ce1d47f76a0d28d62bc6d689b5485', 6376), - (12862, '0x74937fa891745fd53ab9657d3e3736628dc16fe2', 6376), - (12864, '0x3a387ef7d2ffc670d49c226a0eda7e131dc9eee4', 6376), - (12866, '0xd0ed71b2c7fed0594a26800b321c4029c6bfcaf8', 6376), - (12870, '0x7ea19a7292fd0b625a5f2f9cddb0bb91bb0a5325', 6376), - (12872, '0xd9c667ebc6f856034b325ae3161dd11607bca9b9', 6376), - (12873, '0xb73b4f36cbac9319f4560143ad41b0fd21517286', 6376), - (12875, '0x4e65a8fa8a4c364564ce3ba10dd48c275b887247', 6376), - (12877, '0x71cd143303a7ff8ee48205a8e992fa9b447ff01c', 6376), - (12880, '0x67cbedd26f38b752c40210cc25425cdb0faf3f6d', 6376), - (12882, '0xb20717703c6eb213e6cd70584cf3ce8513997d27', 6376), - (12884, '0x43a7680a5b84fad81acd708dc419e3cefda4d879', 6376), - (12886, '0x8b1b13f113683dc30a612155e3d9979b0abe42c5', 6376), - (12888, '0xdd2e815764cd0b3ef323570cd2b1fee301cb2116', 6376), - (12890, '0xee1b4d76bcdc386e29e6cf17f40f56bb5cb29c3f', 6376), - (12892, '0x31d71168d7e5d01c5719225917e350b15edb7790', 6376), - (12894, '0x0c542670f1af3518fd03c5f1b916cd21a2c92961', 6376), - (12896, '0xf722dbd5eea3d5c45ecf3193c8a0e43c0414ce92', 6376), - (12898, '0xea19eec17a4b9e781d0d94c4c3fa2eed031e6d33', 6376), - (12900, '0x54415ead8060e85708ee2c4d821ca5945d6d0bb2', 6376), - (12902, '0xccce2c6cbd8bbcde528e60cac0f30e69bdc97fd3', 6376), - (12904, '0x725467982d7459db150a1e5460ebacb5fcbde13f', 6376), - (12907, '0x8bfeabc3ede1c22299cf114ea64d6296d22c2ad4', 6376), - (12912, '0xd08b66a44f29c014b536c459c353c6df58ead813', 6376), - (12914, '0x6ea0cebc8462b56748069415fb29e465912c39b9', 6376), - (12916, '0x624310638b9901933fab5f5b0deb2b33e13c87cc', 6376), - (12919, '0x4b42e0f61c70c9cf66d8b4b213858b26dec623a1', 6376), - (12922, '0xd0428cd41a6c9c783f63f96bcb70050b95b7c2ef', 6376), - (13006, '0x576a1a02838718f0d469d39244c476f681854636', 6376), - (13048, '0xb097a1d0f56227309fd549a2c266f004871ea14e', 6376), - (12717, '0x781fd5f9d05860cf18c512688c26c4458e828952', 0), - (12868, '0x0bc9b72ba5893ee7f58babf711e10ea4b8485302', 0), - (12825, '0xeac71b823b82f1e5f9d58d5bfc16c2dcba792bde', 0), - (12878, '0x00000066ced4c62a0f740de74eb08bc2a1552764', 0), - (12765, '0xdd03b4c05adf798ac66a94d92f175088b7a30d1a', 0), - (12664, '0xa710ed4a26c70c8a6442c880f0da799686401201', 6376), - (12670, '0x0d41c4a1ab9e27143dafc7bae56f777cacbbba32', 6376), - (12688, '0x56eb5d4443a6749b1112fdb853e394156aa5fccc', 6376), - (12693, '0xe3c7863fb88897f7c3c2fd69b1de0ce633ce1564', 6376), - (12695, '0xd53b48ce0c89a97f1449c0d32520b6c2830bea2d', 6376), - (12697, '0x32376844fb8a2d48d83c9d27edddb3a9df9e3a68', 6376), - (12698, '0xc7697145ae74b8ec74af0f8b35f44ad69c951f70', 6376), - (12700, '0x8be0525c4b738d08ea114cf28cce4b9a782731d2', 6376), - (12702, '0x9941ac96ab6589876c70073c27555fef61115783', 6376), - (12704, '0x62755eee0b10bf82ab11617a141eadb1804f7ead', 6376), - (12708, '0x535ed5bb0105179739786e7f3e92c154c607ab9f', 6376), - (12715, '0x0998fc77b101e4c538f57bc7616c5ecd77deab5a', 6376), - (12716, '0x8e3d504acfa412b7fdc91f7a95dff264344a4b6f', 6376), - (12718, '0x67f128b880dfcc76a30e16772dde72f2ae872c8e', 6376), - (12720, '0x5a293be8e3d73d3650a4492dd083a1b4fe58f176', 6376), - (8943, '0xa20f44799c0370c885052bf2ff0fa6d55f40fabf', 80256), - (12723, '0x7158cc374f6bac0b0f761692262bf4b3307801c1', 6376), - (12725, '0xff1e78f26d975b09d10d638b511126457d46389e', 6376), - (12742, '0x48dfae959aa26ef0955a28b3d3e39df6b0771a04', 6376), - (12759, '0x5bc16ea330942e9b0df590382667d0961e394531', 6376), - (12762, '0x49c1bb64e216178d78671d06d301c68486e0888b', 6376), - (12764, '0xba83fbaa65f1655d1eddf1863125469714139768', 6376), - (12766, '0x376536b60188b91e576e61e99a7337c937018317', 6376), - (12768, '0x29a18db3916d44157c4da7a02b764f8c232c0090', 6376), - (12770, '0x9300544ad4fdf0a04ee8db7cdc454fdc8d341f1c', 6376), - (12772, '0x19a9cd92b3e6c3921abc4f239f553939984c636f', 6376), - (12774, '0x5247eed701b87733d889e7fff465fd1a7615b35a', 6376), - (12776, '0x4ddbc068d862d45bcd91a1cfc70a6c4dab6e9786', 6376), - (12777, '0xb329540f605c8c34ab216bb5605bc610df6ce057', 6376), - (12781, '0xe13f7ca475285f21b1cb9cdf1ad48a258e5de7bb', 6376), - (12810, '0xd685c9be64127e9ef902d349c126927881dbb06a', 6376), - (12815, '0x32627ab630a46d097bb8503a8a34d2a5212a8923', 6376), - (12816, '0x1e7fe89e70dc5edcf634ad122a6b414fe4adab1e', 6376), - (12817, '0x818731c0f59428418a308f2c4dc38c3fa50dc7d5', 6376), - (12819, '0x14c314f5d98ea952c19d02658fc6c9164bbdea1c', 6376), - (12824, '0x46a9aca8180e1b2f2b171144e719a560fedbc2cd', 6376), - (12854, '0xd0c74acf94a9a2f2c212e1bc793a28616a06ec3c', 6376), - (12856, '0x58e90377a3473e740d0af22a840cd8c839386032', 6376), - (12858, '0x66e5b2e3238c2c7433cf3cad378493a5bb6c0b08', 6376), - (12860, '0xf98e56c18334c20a0e46a88d462607743b7840ec', 6376), - (12863, '0x7a638ce2851da19e017d4d1cb407deb084ad86ce', 6376), - (12925, '0xd552cdd99082f9584276bc50b53b79aff5c7c381', 6376), - (12927, '0x32a0dde54be9030ba8e5b2af223746767004a8f4', 6376), - (12929, '0x1541ade7e3f6ea94b065de68c53183ef23cd5a6c', 6376), - (12931, '0xeb4d8ee709d0be7cfe3fae823d731bd55fd47379', 6376), - (12933, '0x6d40012bf3bcf32ca027a32da1ba943e2c484d4b', 6376), - (12935, '0x68c51e84249b6d372cc7085e3784ba11b696711b', 6376), - (12937, '0x2c6e92635a9ca6e13f2de99c64ce33336fdd25a3', 6376), - (12941, '0x17387020524b2457fd720eaff3ad4445739081b0', 6376), - (12943, '0x2c49904c5b497856b43e8d7db1206a2005383b1e', 6376), - (12945, '0xd87120aa0e9220948dcc3d207e0b3df2e4ade1b5', 6376), - (12947, '0x74bfff89417218b95bca13edd1040d84ebf789fb', 6376), - (12949, '0xdb37cbca048f48b8146794dc3159c8240a7a124b', 6376), - (12951, '0x08a29831114144475c2cfffaea57848f1bdec810', 6376), - (12953, '0x4388305d792202f8b5242a34c282bd5c36d5933d', 6376), - (12955, '0x444ef3283f8bd44ceac070fdae77ea3dfd6e0f96', 6376), - (12957, '0x0efde5a7c33125182d74cd9f695df3dabf61db46', 6376), - (12959, '0x957e42d35a39d2c3bf70ae388d2730302b0d96c3', 6376), - (12961, '0xa65ab6f1152338857a80af5bf8a227284970c0a4', 6376), - (12963, '0x5945ae0412583ee89e69761da2589a643fb363b1', 6376), - (12965, '0x73e686f0cd5a7bcc5ed37b097387d2b5ec3fb125', 6376), - (12967, '0x5c16af050a49eca861348fc07ec5f287ac047237', 6376), - (12969, '0xe9ea967afe7dc10a2a596446a37e71e7df4e3c17', 6376), - (12971, '0x7f8cd173b8725f7ee25e895d4c0f35781d5a8cbe', 6376), - (12975, '0x2238f601244a9b97ceed2b39be7f66bc1f9261b6', 6376), - (12977, '0x1d74abc593e6e2544c47e3c03b98623dd7ef959f', 6376), - (12981, '0xfdcaeed95fe75eaf15ce8f0ec33a82d7bb407fe9', 6376), - (12983, '0x2836c6b11570bc65bc956d682725aff8111d53c8', 6376), - (12985, '0xfe9184e4fe97a32465d0b957b191303b6381840a', 6376), - (12987, '0x72683a8e8b6ba95b5f274c48a3914b2c2e53b3ae', 6376), - (12989, '0x21a7b478ca74e0589e905ee33aad46818c040adf', 6376), - (12991, '0xf9bae0bdcb7c0af0409b4fd31ad880398f988709', 6376), - (12993, '0x1c55dac7dda0799af90314b2ebc33eaa0e88e4c1', 6376), - (12997, '0xd51a0d4a15ac6818b944228ecc0f3f71b92360c0', 6376), - (12999, '0xa5f146cbd3ee13f482315dd0f873c2bfbbc5f2c4', 6376), - (13001, '0xe1eafc9290bb6bb91b2fadab8f5cc0798361e9aa', 6376), - (13003, '0xd3930223f7c4836475fa72a43fa6c1e308d52f5e', 6376), - (13008, '0x1380389a20443f9c57cfbc6820c0c2dbb872aa63', 6376), - (13013, '0x409e5df9f7bd7ddaa6744b10cde5dde47ad4b07e', 6376), - (13017, '0x156e27670ecba6cb7ee1bc9e84a6fc519357b9a7', 6376), - (13019, '0xd94953b6469b63f9ac2e4788d6071397de873596', 6376), - (13021, '0x1f1f358bdcf948fc00fea727063d31e6ed5a8836', 6376), - (13023, '0x9844ab52a3ef95b112f19bd94d2cc278d9c66ea3', 6376), - (13025, '0x190a7b828545c1f32dce2436af53ed5d1300ea60', 6376), - (13027, '0x546bbfce60876b6be43aa76acdf0e0c16c765d6e', 6376), - (13029, '0x82588b70cf466cc6b9c933787b2fa2c8cbb4224a', 6376), - (13031, '0x8d93d5dbd4a3b51995a411ba706d8e12abb507bf', 6376), - (13033, '0x4949d93c7b4dc3fa1689795db23589455f87407a', 6376), - (13035, '0x4ac9c82d9d42561a13094787c0cf927cb49f7232', 6376), - (13037, '0x1708b8e60461c4e21ba64be9287b8633769fb9cb', 6376), - (13039, '0x7e98d5be514486e9050832a7e4e9aaf9f12d2a32', 6376), - (13049, '0x0ca7be1325f1a76f71e96fd9c546880021726fc9', 6376), - (12786, '0x9de3168ecf47453b3d611381118269178bcff520', 0), - (12779, '0xc2d32eb33677eb040427c5fa1a7638425efb3695', 0), - (13011, '0x120e355cccf2fbd06d8f3cc9edbb2f19c256d2f6', 0), - (12746, '0x43c02129a6e7945caef4b795a05e2eb056e1e0a3', 6376), - (12750, '0xcb3d56c42d38a2a4a08a115c664a7c6c34113b47', 6376), - (12753, '0xbee0468410054856b12739ff56a9792d9bfa3f69', 6376), - (12756, '0x9be0871ed7fb016028e92aabc4a652dab60b1626', 6376), - (12761, '0x1fc1549a9d1280d78f0a0ac1721810b02c7d7a06', 6376), - (12783, '0xbf59a102c38d4f4fcef79f32c2f6aebfacf08de9', 6376), - (12788, '0x81771b85a058dae5b7206ea9e3739fc26054f05d', 6376), - (12790, '0x14dc118baed51e9b309e65f4146e1f74f646c0d4', 6376), - (12791, '0x2aa1c8fb47c96636a0daa9a4d7de0f2462a6810e', 6376), - (12792, '0x4997b79c519f40a5bd63dd9185322371f9a06d9c', 6376), - (12794, '0xf9b072ba55e3a7cd1234e9d489cbecafb53da094', 6376), - (12796, '0x36f129a736071c088292135c23511adb891121c2', 6376), - (12799, '0xf7ea93bf0c74138eda5c90e7cf6844c4bc786d3a', 6376), - (12801, '0xa40a15544035c6e058d3a232d7af17e94f4878ce', 6376), - (12804, '0x49a6a75d972b22d34a4bbc42aa4c36d2669b1881', 6376), - (12806, '0x90759aaeb2833a49635cb2911d3c7e33df490964', 6376), - (12809, '0x41a03814ea761ccfc2172ab256789fb0e51d468a', 6376), - (12812, '0xc3c7f1090501a44e5a6ad6616754bccf9ab29b90', 6376), - (12814, '0xfe6311754b626d0cc92d25686142f5e5a1824fe5', 6376), - (12820, '0xd0aef09c2c4ce6392952f82b2b5ba693745960f0', 6376), - (12821, '0xb2722c6f927058dbe62f069c228d8e7f8876d6a3', 6376), - (12823, '0xf2fc5f526c7e246ec9d779e0cee9f6588c765d88', 6376), - (12826, '0x4eba266cbed79d511e4956a00b1a7a1c52be76f7', 6376), - (12853, '0x0fb75c54038130a4bfb753c3aaaa21266625cc98', 6376), - (12855, '0xe550ff4c89712409f9d70d0a5cc434a145237881', 6376), - (12859, '0x6a47c05e80a3083c54fba622daeabd439139769f', 6376), - (12861, '0x2d5a7fa0e8a334d07a54be2da96fb6bb45bce0ec', 6376), - (12865, '0xa1ff8171a3a1a27817927bbc21963b8fe68e5573', 6376), - (12867, '0xda04f99f92a3f8b0ca819a2f6c2952470c1fc987', 6376), - (12869, '0x0e0dcc8feca68202f5532f2677c76902ebc6ce30', 6376), - (12871, '0x072067d2df7689d9a191944229dc24c665c056f2', 6376), - (12874, '0x7c6014298711e2d5d016265ca53bf8f592c44238', 6376), - (12876, '0x0ba64dda393b07350c6868658fbabfc7c40ac341', 6376), - (12879, '0xdd9259a586a1b7af7775b9a3737553278cfde2a2', 6376), - (12881, '0xcf321ad2f58c42b90b569be0af3c17dea4df890f', 6376), - (12883, '0xae5c4f33890da5b8dc5773e57d59c2f82773ebe3', 6376), - (12885, '0x6ecce5f3071fbf2b33c27b79542d0db6baa552aa', 6376), - (12887, '0xf47cc74b26d2c7b52c0f6c01b39707b4d5e5d34f', 6376), - (12889, '0xda5b74ad80511b0be094604423502b4bc6a43689', 6376), - (12891, '0x1c6ae595e9efd3ee1f301f25ba9a6807896741ba', 6376), - (12893, '0x50b96eb81e1d1d76a06a37d2405385634b661917', 6376), - (12895, '0x016083b463a50ab748b0b90890b8db95cc0b81c7', 6376), - (12897, '0xa66cdda1817c85ed3d232a5affd17673e933d8a7', 6376), - (12899, '0xeec6e5d5f100c0e9129ced013a3ddabbcef24933', 6376), - (12901, '0x80c008a7c9ec056158cb1f64024e710c8398048a', 6376), - (12903, '0x98a5ed475bfb030e7882418ef82900f1a77b1791', 6376), - (12905, '0x9e7a02f348e25bd99068c4ffe272ea6481ca745c', 6376), - (12906, '0x7807437b58acf88d0a0a9296b49b382fcfcd87e6', 6376), - (12910, '0x5566b04c6a2d87ba190c7c3352a750ba204be7c7', 6376), - (12911, '0xf2393999f4d9cef25e3f474fa35e909355ad27bf', 6376), - (12924, '0x7d68dcc1e1aecd6c03af5a6206ff930a81c82a6c', 6376), - (12928, '0x15ef6b585ebad3d03b13c4cee4fa1bcf6f47fd2c', 6376), - (12930, '0x928ca15fce31b0c04e57a51b438ec55b9f97a1f8', 6376), - (12932, '0xf86a85c57cd2abc65bcb3339225b665bc1f88e0d', 6376), - (12934, '0x0a7b367ee82e8a77fb2273f37848d4b8ad77bb57', 6376), - (12936, '0x8768300f4ef840714e496859cb56a19a92ed4ba8', 6376), - (12938, '0x888d35cda7a2e5df438b75b89e567c6ac6d36ab9', 6376), - (12942, '0x20d0818c6cd8e9234ffae025992dc111b7f7d3e8', 6376), - (12944, '0x0958350170dd98da0bb319cce9336c9044fbf85d', 6376), - (12946, '0x45a85c64230fbcaf08a95fa3cd4a0cebe31c7dd9', 6376), - (12948, '0x98d3c44fa0bbac8262b7a77a5cb60a69077474ce', 6376), - (12950, '0x1b786e029d0ddea38acb12fe52748fc00c403143', 6376), - (12952, '0x70246b51f00ed8452d75cd7b5b9095564b29c7a8', 6376), - (12954, '0x2873a5643542649f4e0b7a647eb342ef4c175f44', 6376), - (12956, '0x12f72cfd58de931834cbd39177037e75ac890d85', 6376), - (12958, '0x17f582f2f8e4bcfea5d90736388dc39636ab84a0', 6376), - (12962, '0xbd9114b54be739d6380911043571b44fccd59816', 6376), - (12964, '0x37e7b6087f6fed70a571bf79ae6e5c9c2f064888', 6376), - (12966, '0x6e1d0e8cf57b61cf88a8f1d645ea19bd750d69ab', 6376), - (12968, '0xdcfd02a2ddbc739c34f79da59c0fa99ea7297887', 6376), - (12970, '0xdf62e5e872f1bb3b880f81f818de4f200a108458', 6376), - (12972, '0xa00d08777972b1854514820cb93394d59c6bc3e7', 6376), - (12974, '0x11efc6918046d1dcc57d1e849d386cb5c29ee856', 6376), - (12976, '0x1fddc81ec2f2f44983ded0ad5c9566dfb37267cd', 6376), - (12978, '0x918b3da33c6340cff6f5e03363a7dd27ffe5040d', 6376), - (12980, '0x6a4b425eab8c4efa0412d09f13d7d015a6f36340', 6376), - (12982, '0x66b86136eea84d7d1188fc33358ee5d3e0a606a1', 6376), - (12984, '0xf70e1702602fa8284485eabcdf270552514dc5ef', 6376), - (12986, '0xea11015887ab4ed64e5fd9b2a380b0d7eac036b6', 6376), - (12988, '0x56201bfdbec7f58dee26edfbb2dd96b3ffc42c85', 6376), - (12990, '0x46a19b9a383dd0670fa111fadb981e98fe618009', 6376), - (12992, '0x0b3bfe556e31f3c44e2004d79de4af01f3f362fe', 6376), - (12994, '0x87241e27405992b1d13d647994ce36e48bfdf749', 6376), - (12996, '0x603e92d5d3f9f1e651379dab0d47217063ff46ae', 6376), - (12998, '0x3f725524c7b5dc77d5e60be3e15c32f9d10d3201', 6376), - (13000, '0x48754d91ac9c406ec55e1a836d4b8cfb0b4beeab', 6376), - (13002, '0x547112c6e3a76f5add91bbc56758a77c7bb9d83d', 6376), - (13005, '0xd85406790951ddfa23db571183063251048ee50e', 6376), - (13009, '0xc3655c17e3daa0d1671ffb4628f8f1eed9f61f1a', 6376), - (13042, '0xbacff7385c8fe12e1157bb4676aa6c45be48f259', 6376), - (13045, '0x999aeab76dbf94567e900d27556b1a3b3efe7e51', 6376), - (13051, '0x9e7e7f0ef3a91bf31937138001c031202a8448f5', 6376), - (13053, '0xbe7546a18470c967cf386c6f6bcea6b84a6691c4', 6376), - (12926, '0xcf88fa6ee6d111b04be9b06ef6fad6bd6691b88c', 0), - (12785, '0x377efb92e4d0418585ed9a6d81c90cd987581625', 0), - (12940, '0x046c63da46589d3b8241d1acedba1e5e948bf810', 0), - (12780, '0x59c67a2522c0ccd4fc52d6add95982c454ebde78', 6376), - (12782, '0x41f49e42cafe08ce9af322187739b74537a23f9e', 6376), - (12798, '0x858e517a8e5c28e7d2fbe081a739f0276e85e69b', 6376), - (12803, '0xa6c1b2437acb479f0f9d37c936d465152e494afc', 6376), - (12827, '0x2b62cddce699610be148b1438db546bab15963a5', 6376), - (12829, '0xe086cad64acac2f8bb783462af6716710e4e935a', 6376), - (12831, '0x8b235c036d9427068b8bc377aca494befa3b9df1', 6376), - (12833, '0xb9578879f5ebd6f13919447a005a5d3aad50a6e3', 6376), - (12835, '0x6049aa5fa47c5455a2bf973a120df571f2dfc3a1', 6376), - (12838, '0x5e26fde63137d6e33abf75b2bc876b8cf48ff7d5', 6376), - (12840, '0xcf6002e6723828aa865a517fcc21ea518fc24186', 6376), - (12842, '0x7301dcc29af0bff17a9e69fc32589757e3f8502f', 6376), - (12845, '0xba222ed07a23d26af426c12e11efdd24523c5613', 6376), - (12848, '0x99f7bc19f53bae8d09718d131d7b0c4a5f619dcb', 6376), - (12850, '0x1a795044a409bb68f8bd761bbf48ae0f992c5fed', 6376), - (12908, '0x37f6fb69ab08aa53f65b8780a9b1788debf8316a', 6376), - (12909, '0xb17c08feddd8e7aa0471791de1745c58932c0449', 6376), - (12913, '0x80ae6b3d03001cd93a4548fbf3f4f10b2083e003', 6376), - (12915, '0x96289e0c5e166343915352377e13e94f46815ae1', 6376), - (12917, '0x325de8a94020d8f6c22ccb739a3f61b9817309f1', 6376), - (12918, '0xe7ad5a0fcdfefce6cf203f94a1bf7ca01fdcb060', 6376), - (12920, '0x18e80cbf5a1e476fb6bca6758f5b1265eec48c9f', 6376), - (12923, '0xbb36c7ab12eebae13620b5f90714f020a1a589cd', 6376), - (13007, '0xec221c1317bb6eac0a1756d9054dcbc0594a7b3f', 6376), - (13010, '0xee1f553e703f823de82d879f5691d30e3e355448', 6376), - (13012, '0x15d7cbcae133b84aaef4caf82f487c30eee95cc4', 6376), - (13014, '0x0cfa50de1111b5fde6553f6702c6959b34502155', 6376), - (13016, '0x7e15bfafbbb635b81ac9c5ff0f00159ba286cb02', 6376), - (13018, '0x1ba291c8ba7b04d81b59c5effb3845feafbc52b1', 6376), - (13020, '0xabee1b0ec0fc342d7162caa8a137dbe51289045d', 6376), - (13022, '0x80215a251ef4cd52dd9c44e2f49bd239f7040a68', 6376), - (13024, '0x5d9d964349f1f3346dd1e7db7002ea0daaa9b4fb', 6376), - (13026, '0x9b3d9bf945b1135740463cdd8fa433958a588470', 6376), - (13028, '0xda620685806c0206aa61f4a14484412f15ae2cef', 6376), - (13030, '0x9054ed3aa4070668d9f5d526699d42d4e972ad16', 6376), - (13032, '0x34ff5674a12f734757f038f08b0acdab1a29dc25', 6376), - (8352, '0x59ed4b96db0cf824b10e31eb477e174c08c6bdd5', 16746), - (13036, '0xeffa2c15d5e7f4624bd55e4d58e1a248a3f218ae', 6376), - (13038, '0x66f283984aa4da1eb13389ffc19ed3502d16410f', 6376), - (13040, '0xbf6301d7bca9f23a63a2d1ed513d5120dbb2288e', 6376), - (13041, '0x0bbc8754f0483adb0caf2389496f65b197bac154', 6376), - (13043, '0xda8ac8cac7631064ffd63b7bd4a19ae6c89cde3f', 6376), - (13044, '0xc1e74d57962fa266f265f80d434a820ae481e7d6', 6376), - (13046, '0xfdc79905818aa8e0ff637c2627c98b1e8b5a54b5', 6376), - (13047, '0x4901dac4e0aa78c941642c0d98b8591057aaa8e7', 6376), - (13050, '0xf05e38803ed2a70bbd540fa576df0643223e9632', 6376), - (13052, '0x04e2883eeb616bb544b49751709423caad4fcea2', 6376), - (13055, '0x2273ffed38ed040fbcd3e45cd807594d27ebfae3', 6376), - (13057, '0x1ba15360b93e7ec0f04298410292513e2d131b0d', 6376), - (13061, '0xca262fe527abb9e961acb6d97dcb661e8f9dbfd9', 6376), - (13063, '0x33b5a00cb620f627e1f1b568de3a44ff8a3da728', 6376), - (13065, '0xf53d2e403b04f56992f854aa42b1052208f88a81', 6376), - (13067, '0x1d5327effcc8f5969165ac91d0ff012cad05f01d', 6376), - (13069, '0xe2085c53099b030e15fa2f5dd279c7f732f1e11c', 6376), - (13073, '0x4477f75e86cb1931e08b4a519636b1f710d7ec11', 6376), - (13075, '0x4c57c560802bcadc3c8555980bfdad32f1b3b431', 6376), - (13077, '0x2f26c1d10456b6256460517ae912b5785e395794', 6376), - (13079, '0x4b5795f725c8c6df1c17e0819b67410242b98aa8', 6376), - (13081, '0x367b37c826b5d100bd811104e75260e62b2c7788', 6376), - (13083, '0xfaea523cdf00e9be0a82fa201fbb111330cc7c0c', 6376), - (13087, '0x4f638e8f5bb044994e9b2ca13920132956e969de', 6376), - (13089, '0x9f874d300dc79b53aa7d9b94fef60b4378298c2c', 6376), - (13091, '0x51f3b880207db19635702e2bf9660dc4b659bb41', 6376), - (13093, '0x33ccffff2fe2271ef703bacd79688b45e1f29d4b', 6376), - (13099, '0xaa5988e1c16318b0cacc230abd6e9b42eff4215b', 6376), - (13101, '0xaae866ba18e015067d1e24f8879342d69e9d8ca9', 6376), - (13103, '0x7c58f9a1d4b3a1cac10bd30d9d1032d6c158fea0', 6376), - (13107, '0x5cf55d6eae928e2539d946afc818be5cd18c39ad', 6376), - (13109, '0xa6583617bab73f18d1db30a5aa4ebe4da4af581b', 6376), - (13111, '0x80028922670c326351ddcc26fe0b49b3e808a58f', 6376), - (13113, '0xbf57c94bdd49e10356f7a4f3afac8e675425a161', 6376), - (13115, '0x35d2451fc0709dd3a337c5c9fba0ed0969fe1646', 6376), - (13117, '0xcd14273d53dbd64fe83c823d2b1dc5e12a264003', 6376), - (13119, '0x9eed555a7b54471a0808cec8d176980323674bc8', 6376), - (13121, '0x1dca1f25e29ff5c35bfb4a6e39ff872bf717945b', 6376), - (13127, '0x3fc2ca5d9629f2826c8fca8667e1c74dae3f76d4', 6376), - (13129, '0xb599a82e0182055ae6ab23f01d59af41b49f8a62', 6376), - (13131, '0xa195ea3c5bb4df15412b986f7aa0df23e47468c1', 6376), - (13133, '0x3993ab7a19b7908e73ac8e9bec15430c256fccb3', 6376), - (13135, '0x127265074284b0e0659e8ca8969a0094aa519557', 6376), - (13137, '0xdfb084314888b582679499a7e7b64d27db09d25b', 6376), - (13139, '0x51cd590315a39750775202c73a5c6ba70d684ea6', 6376), - (13141, '0xf37e3834a1e16fe03c99d997a7a8c9de496e3fee', 6376), - (13143, '0x817c48bb59e866d5baefc9a90d04a0ce4e7d543b', 6376), - (13147, '0xaeec8893388b023956441c4e06d637904aaf182c', 6376), - (13152, '0x7f0ccf3135db944e68b5e2135f74674706a2b091', 260869), - (13085, '0x17daf278f0d4e406b435ea74387f52d0b18c5c25', 0), - (13105, '0x1d8775623df5469116ece78b55a97bce8424b899', 0), - (13059, '0x8f6aa7ffb79614b4ede730381f16360875fb9313', 0), - (13054, '0xc53d7509fe159fc4b92649583c7dc1e784cbab8a', 6376), - (13060, '0x9b7ca70b480cb02c85ee5e8f82c5af791f19641f', 6376), - (13062, '0xc90eaf447fbde655aad6ef34c45266ae5fbfbf99', 6376), - (13064, '0x4936b305102f442080d4711f14c5f0318e3caf74', 6376), - (13066, '0x7e493cb8d2f994bfffd1c0fe73f87a5191f48712', 6376), - (13070, '0xd2b5d1fa5f761c30466ba126696f30d8ae4e60eb', 6376), - (13072, '0xd3d989a52abdc8f7745d29ab1ecfa2e0cb45ecc5', 6376), - (13074, '0x62b57d653547239dc8796e5f8c928e97ce58b3ad', 6376), - (13078, '0x9f16007b2bdb08bc6c8366a9c89c82eb987e0dc2', 6376), - (13080, '0x5d6bf91fd6511107e6baf804cda1c8f2363fbd39', 6376), - (13084, '0x09f686c9abb7ca183a0290fb15c35fef91fda1f3', 6376), - (13086, '0xeb36f19866403ec7766d0115862949902de722b3', 6376), - (13088, '0xf0230d66d017a5ce8c4b64195706f8628f198a60', 6376), - (13090, '0x016f17dc99e1fcbe08e6bf62a42f632340611b36', 6376), - (13092, '0xc7d5436e719820ab757772d0017d4a279f1cab4b', 6376), - (13094, '0xf220f05b4830095be149085041735f197ee3d5aa', 6376), - (13100, '0x6c9faaf4cb6d381e96ce7ade0b929a378d1419fc', 6376), - (13102, '0x55d9f88e904cc5c74129b9de407baca289defd07', 6376), - (13104, '0x9751d14b793fa097705feedefb23e622027c286e', 6376), - (13106, '0x72213f092e45b2c25e2ad87d3447404f5b3d8d19', 6376), - (13114, '0x85893cc28f86c3138e1e3f888b16466e8accafc6', 6376), - (13116, '0x19cd3473bafd2a3cade12262a73be21e02a50490', 6376), - (13118, '0xd0c31e46c73b386432a3ddf768587df604dd52be', 6376), - (13120, '0x10e5fdfc4f07b9747a99aa2aa0e154011c84a9c2', 6376), - (13122, '0x16a096239fb10db734d53b83d8fd5201453fcf16', 6376), - (13124, '0x774de78e83374e800876479b9620c2d0e304aefb', 6376), - (13126, '0x0a0c6e3c51cc1b9e7193447d24e8b4f8afad6268', 6376), - (13128, '0x6fbcb50bcf01ea62a6d41f468d10dab834986bc8', 6376), - (13130, '0x0312567d78ff0c9ce0bd62a250df5c6474c71334', 6376), - (13132, '0x0dbaae8b85418d25bd9895a5e4884b5492cd62ff', 6376), - (13134, '0x7aa3fb6580958d7547096d6c01936e496eaac698', 6376), - (13136, '0xfbf74fe3598371fb47c6246b824600b06f81bcf3', 6376), - (13138, '0x12bdfca7d90c76452661f3fa0ecaa2ee3db25fb1', 6376), - (13140, '0xd4c01dece6955335e15f5a3a01e41bf5887e3434', 6376), - (13142, '0xa12a635362203c561845f1090bff55db0b980aa7', 6376), - (13144, '0x053707b201385ae3421d450a1ff272952d2d6971', 6376), - (13149, '0x596055ac0f28c61285a628fd5e1db6b592663699', 130434), - (13151, '0x960371173bdb7963f881b13123999bcc537e2beb', 260869), - (13153, '0x95b5f81b06f1ac3d4fe95ec1df729b9095bfb407', 130434), - (8488, '0xb57b74a81d2e550128932e8c3978f58ca03205b6', 0), - (8825, '0xde0cbd5df89bb67ab804db21e9b931bad4200392', 0), - (9453, '0x3ee75b599c076193b81885ca1838e560d268aad1', 0), - (11132, '0xe3ff24a97bfb65cadef30f6ad19a6ea7e6f6149d', 0), - (9504, '0x24a0e4ee348f33252e83fe1e824499381dd21aa9', 0), - (8515, '0xde6ab026bb29136523ec81c0673738c166ecc8f5', 0), - (12706, '0x5ed86506ff1244bb3ac0c309d5fc5ae6c0375464', 0), - (8766, '0x80e451777dcd4e4a589a038a61b1dca72d718045', 0), - (12346, '0x16576e6d7cfd91338fb905a0a2af1979b8624ce8', 0), - (9819, '0x3540d804e6124757a49b805e944b48d14cb78b74', 0), - (12357, '0x8972378832265ee5ca732c02c3a5fa455b78e111', 0), - (13112, '0x667ac63c76dda80c59ea6d6d65c6179946e917c7', 0), - (13082, '0x4e2c8e02661ba1bb37627aaa7e0926c1738643f4', 0), - (12360, '0xe0eaa12c606267527e270f8b7d88ec5f8f55b54b', 0), - (10907, '0xca1a6e5fe34293775fe0dd109d74539b567eec34', 0), - (10043, '0x0ee25bd99736d898130edb98d343312f6688a50a', 0), - (12388, '0x178173627aa2f703e1a4adb549791acee019b283', 0), - (12666, '0x3f216864e9b71d17c483fba83b1af3efe02f5d9e', 0), - (9201, '0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f', 0), - (12172, '0x5a4de28b93deeb48f682336f5a91cc43b71964b2', 0), - (12153, '0x5f62ece59fbba2bae1654e9b69bbfa4e4d5b329b', 0), - (13058, '0xf348b733daa2e1cda395f4f3c82d81086feedf71', 0), - (11502, '0xcb7504c4cb986e80ab4983b44263381f21273482', 0), - (13096, '0x2d270fc5370ee30b71d5cc84c35b78b88d28a547', 0), - (13108, '0x54922ccfe5b1e5f66f670fedd51d43cc843d569b', 0), - (13110, '0x75cf55a1a228e691342521b01a7de4e113fac30d', 0), - (12709, '0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535', 0), - (12710, '0x58757de18dd86f34462bb44ca7dca333bf3de533', 0), - (13056, '0xa7ad936f4613d0f04cbca84776c04d9f64e328bb', 0); - - --- --- Data for Name: cast_query_date; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO "public"."cast_query_date" ("id", "last_checked", "lastcheck") VALUES - (1, '2024-05-17T19:12:31.000Z', '2024-05-17T19:12:31.000Z'); - - --- --- Data for Name: posts; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO "public"."posts" ("id", "post_hash", "points", "version", "created_at", "degen", "likes", "author", "embeds", "channelId") VALUES - (77, '0x24b057c03aad78da939798b02b879e783dc20fab', 10, 1, '2024-04-29 22:00:57+00', 420, 2, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 270, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 232, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1BuZAIO8WZpavWVbbq3Lci?si=OggvMRD4RpSDiU8NjgrgAA&context=spotify%3Aplaylist%3A1FCxunHbiDPsu1r8v2h1pJ\"}"}', NULL), - (115, '0xe2e92bddf7018e811c778384bf7d62af22a35723', 1, 1, '2024-04-30 18:42:04+00', 10, 11, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin just an average degen 🎩 $JAAD, basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2767, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 259, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3PachG6WWWV6lVtXDtTdGQ?si=40GtKscKQO2zqPSwgkxlaA\"}"}', NULL), - (143, '0xedc754be38ad643c935df7e1c4dfbcb3739d5202', 0, 1, '2024-05-01 17:32:57+00', 0, 2, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩🍖", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 244, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0cuNKO8LlpNW24NrQuE1Wn?si=vApz0xoQTnWUCABN-44hXQ\"}"}', NULL), - (130, '0x3ea9265755b8106a6f7e9f304b1ec66ddb73ad7c', 0, 1, '2024-05-01 16:46:19+00', 0, 2, '{"fid": 2802, "object": "user", "pfp_url": "https://i.imgur.com/Hf9CCmq.jpg", "profile": {"bio": {"text": "Stay Curious // iixii // Lazer Technologies // CoinDesk", "mentioned_profiles": []}}, "username": "garrett", "power_badge": true, "display_name": "Garrett 🎩↑ᖽ", "active_status": "inactive", "verifications": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "follower_count": 8650, "custody_address": "0xb3b4c5d8a76b33d5db8f94b44444563b9038a7a3", "following_count": 1809, "verified_addresses": {"eth_addresses": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "sol_addresses": ["GBoV4dY33PwzvoTkCaHRwqAsAcBBv9qfgTXexqZBzopk"]}}', '{"{\"url\":\"https://open.spotify.com/track/2FQrifJ1N335Ljm3TjTVVf?si=f2OlTFZXSmOSStNqQJzwGA\"}"}', NULL), - (97, '0xab7100be53432b8a81f00487af79b8159b652fc7', 3475, 1, '2024-04-30 17:29:47+00', 11, 25, '{"fid": 269694, "object": "user", "pfp_url": "https://i.imgur.com/8V7KO4z.gif", "profile": {"bio": {"text": "Willennial | Crypto since 2012 | /replyguys | /chatbfg | Bitfloorsghost.twitter | My quest for 400 followers continues daily", "mentioned_profiles": []}}, "username": "bitfloorsghost.eth", "power_badge": true, "display_name": "Bitfloorsghost 🔵🎩", "active_status": "inactive", "verifications": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "follower_count": 22101, "custody_address": "0x9af356fa72af2c087024daeed021e3082d59406f", "following_count": 4070, "verified_addresses": {"eth_addresses": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "sol_addresses": ["4uxjUREup6MPbindcZTKUPMtRF3b8oVwY8FgpKpodLFB"]}}', '{"{\"url\":\"https://open.spotify.com/track/7Ak4Yj9hDJp8FXM2otPvXa\"}"}', NULL), - (44, '0x05c5f8b6ca0c4f5e26eab09da380dd77a0b2e8b7', 1000, 1, '2024-04-29 18:16:38+00', 0, 1, '{"fid": 422557, "object": "user", "pfp_url": "https://i.imgur.com/PUOldeG.jpg", "profile": {"bio": {"text": "Artist | Shamelessly Lift Up Your People | linktr.ee/fractaloasis", "mentioned_profiles": []}}, "username": "fractaloasis.eth", "power_badge": true, "display_name": "Fractal", "active_status": "inactive", "verifications": ["0x4c77de78970bdda2ff9100210d21ff8562efcd0e", "0x5f11aca48d22d4e86612bdf53b1c6bf7ce779282"], "follower_count": 504, "custody_address": "0x7c754f73122db95839590e5f0b958c32330cef30", "following_count": 711, "verified_addresses": {"eth_addresses": ["0x4c77de78970bdda2ff9100210d21ff8562efcd0e", "0x5f11aca48d22d4e86612bdf53b1c6bf7ce779282"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/levity_music/front-to-back\"}"}', NULL), - (3794, '0x094d3355f9aafe681d517f2161ced508bd6ae262', 10, 1, '2024-05-02 15:52:03.215747+00', 0, NULL, NULL, NULL, NULL), - (109570, '0x935247c54c08c2423a34b21a16178e8cfaa12846', 0, 1, '2024-05-05 03:27:29+00', 0, 1, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 615, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 730, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share92/yerin-baek-square-2017?si=9337c075348b4b03a9a392edbeafc187&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (20, '0x897d817a3d722105f5462a2eb7deb744f5822495', 110, 1, '2024-04-29 18:13:15.348103+00', 0, NULL, NULL, NULL, NULL), - (24, '0xf12b25c391ab996ed192a9ca246762c60e71d5a5', 1020, 1, '2024-04-29 18:13:15.348103+00', 0, NULL, NULL, NULL, NULL), - (27, '0xe1fa1c51ef1f8a857a6483556514c9760a5bb4a4', 10, 1, '2024-04-29 18:13:15.348103+00', 0, NULL, NULL, NULL, NULL), - (91, '0x69985cadb8ab5dc5317a36c86e82fa9333decfffb', 0, 1, '2024-04-30 16:42:37.429056+00', 1, NULL, NULL, NULL, NULL), - (203, '0x4714d63e57e7bf60d2496f73084cefabc651ed8f', 0, 1, '2024-04-30 20:33:59+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6f2xulX5HzsHMMh9BWUS7g?si=bmMQdxmkRRC6R9lMLf4XoA&context=spotify%3Asearch%3Abig%2Bl%2Ball%2B\"}"}', NULL), - (174, '0x5a4d3bae533c0032e12dd6bdfc64a019e80911d9', 0, 1, '2024-04-30 19:55:56+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/74tLlkN3rgVzRqQJgPfink?si=wYbFDat3TZewlTh0lYbMCg&context=spotify%3Asearch%3Amoney%2Btrees\"}"}', NULL), - (152, '0x5685cdbb8194a945aa8b4470c928f4063d2fd062', 0, 1, '2024-05-01 19:29:10+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 562, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 262, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7lVIzIpXJ92Cd72wc4w0fe?si=535032d92bec413a\"}"}', NULL), - (247, '0x297ba743c7258b870ea19757c94adb1c61f68ca9', 0, 1, '2024-04-30 14:11:25+00', 0, 0, '{"fid": 441339, "object": "user", "pfp_url": "https://i.imgur.com/Dm8d6SG.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nassive", "power_badge": false, "display_name": "Chinazes ", "active_status": "inactive", "verifications": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "follower_count": 187, "custody_address": "0xd64038b044bdaf77f537086fd76e0f60ad56bbc8", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "sol_addresses": []}}', '{"{\"url\":\"http://GESTALT.PROMO\"}","{\"url\":\"https://on.soundcloud.com/b4kxd\"}"}', NULL), - (132, '0xddcff5e91de5c4de81c2d60b180af161c7749ef5', 0, 1, '2024-05-01 13:53:29+00', 0, 25, '{"fid": 4923, "object": "user", "pfp_url": "https://i.imgur.com/t4LDaI8.jpg", "profile": {"bio": {"text": "see /red wear /gang", "mentioned_profiles": []}}, "username": "antimofm.eth", "power_badge": true, "display_name": "antimo 🎩", "active_status": "inactive", "verifications": ["0xfa922ce609fed47950e3f48662c9651d42ada194"], "follower_count": 44777, "custody_address": "0xb6452061188bf3f456aabfa46b648773779e6961", "following_count": 761, "verified_addresses": {"eth_addresses": ["0xfa922ce609fed47950e3f48662c9651d42ada194"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2SfDO0opDJP83kZH89jVwd?si=08224b20169e48ca\"}"}', NULL), - (159, '0x7c8f4e7e9889772797adfd5102cd25bce5021334', 0, 1, '2024-05-01 17:45:20+00', 0, 8, '{"fid": 399715, "object": "user", "pfp_url": "https://i.imgur.com/GJ6nAix.jpg", "profile": {"bio": {"text": "Musician. Film and photography enthusiast. /albumoftheday\nhttps://linktr.ee/biito_", "mentioned_profiles": []}}, "username": "biito", "power_badge": false, "display_name": "ビート西 ", "active_status": "inactive", "verifications": ["0x20846c7fd7f757d193ee692a8391b9c85d87d908"], "follower_count": 285, "custody_address": "0xdec09ba7f1bad4ec1b4949202d01ecf976a3d470", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x20846c7fd7f757d193ee692a8391b9c85d87d908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Dvyyfa93OpZeJ3XgvS84I?si=MjsyfFjrSYySI67MhbhMyw\"}"}', NULL), - (325, '0xd1ca61673ceb1abd67ec25a30b1f4006110e9354', 0, 1, '2024-04-30 09:17:38+00', 0, 1, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 285, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/high-again?referral=0xaa466103793319fc3d6c7420d77e6e7cf586c877\"}"}', NULL), - (91598, '0x50612c97f8013784842e8b2918e091f5e4c3545c', 0, 1, '2024-05-05 00:53:25+00', 0, 0, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1054, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0UaaFmF3xUwMjnuAHBq7qL?si=a212544194834400\"}"}', NULL), - (148, '0xdb10c422255c4f15c93c6bac1ab59ed67604ba32', 0, 1, '2024-05-01 17:46:05+00', 0, 2, '{"fid": 467826, "object": "user", "pfp_url": "https://i.imgur.com/0mhMbMF.jpg", "profile": {"bio": {"text": "A painter without an artist beret👩🏼‍🎨\n\nhttps://linktr.ee/basakcalisir", "mentioned_profiles": []}}, "username": "basakitto", "power_badge": false, "display_name": "Başak", "active_status": "inactive", "verifications": ["0x9746c2bbbbc13cf92d78e7818e9ffa4fef1f1e6e"], "follower_count": 173, "custody_address": "0xd45031155f0b45a2f55e55deda534650ba410d41", "following_count": 493, "verified_addresses": {"eth_addresses": ["0x9746c2bbbbc13cf92d78e7818e9ffa4fef1f1e6e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4WFbR2sZi06ZNo8o1731HW?si=rrIDNkDdRaidK2uaIo8I5w\"}"}', NULL), - (184, '0x5af8b7f274200972aef369f697ad9ae841e2d054', 0, 1, '2024-04-30 18:47:51+00', 0, 1, '{"fid": 7464, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05ea92c3-831e-492e-6ae7-890cdfcea200/rectcrop3", "profile": {"bio": {"text": "CVO | guitarist, songwriter, art enjoyoor extraordinaire 🎸@Wakefield | making /demo | holler at a player if you see him in the streets ", "mentioned_profiles": []}}, "username": "spitfunkolips", "power_badge": true, "display_name": "spitfunkolips🎩", "active_status": "inactive", "verifications": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "follower_count": 2489, "custody_address": "0xe1b5dec4da876ca281ffe750fa136cc07314ba0c", "following_count": 878, "verified_addresses": {"eth_addresses": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "sol_addresses": ["ErnvsV8C7GNLjog5FX1km5NpaGfoWDrzbYpYLX91XQQ1"]}}', '{"{\"url\":\"https://open.spotify.com/track/1bUyfiqXnoAbhxyV8qufW6?si=ni-prO0LTEG6k5iVrwEapw\"}"}', NULL), - (154, '0xf07fb73e85c12c7345b287e31e25ca2cb746b81a', 0, 1, '2024-05-01 21:07:25+00', 0, 0, '{"fid": 8971, "object": "user", "pfp_url": "https://i.imgur.com/iZYGn2U.jpg", "profile": {"bio": {"text": "Checking the chain @witness", "mentioned_profiles": []}}, "username": "osprey", "power_badge": true, "display_name": "Joe @ FARCON", "active_status": "inactive", "verifications": ["0x2cb8636240693b445ac98f2091b58a898e35e60b"], "follower_count": 1059, "custody_address": "0x35036f2a2db691136cdf68f3612fb7f030a63353", "following_count": 367, "verified_addresses": {"eth_addresses": ["0x2cb8636240693b445ac98f2091b58a898e35e60b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Tq3QocH9Okvn4wDgTlkR5\"}"}', NULL), - (7119, '0x817e85ced086a2ba2304da5716411d5cffbe1e53', 0, 1, '2024-05-04 15:59:51+00', 0, 6, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1109, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/3fElupNRLRJ0tbUDahPrAb?si=j0NTdfuQT4Gi5qqVlCTuIg&context=spotify%3Asearch%3Awaiting%2Bon%2Bmy%2Bman\"}","{\"url\":\"https://supercast.mypinata.cloud/ipfs/Qma3yPK47eSanWFYcb6ehBuoEU32hsjQ7obUEQGqMHZreZ?filename=IMG_7845.jpeg\"}"}', NULL), - (175, '0xf46581c7c49ef1c19e5dce73c4a362100fbcc5a2', 0, 1, '2024-04-30 19:51:13+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6HZILIRieu8S0iqY8kIKhj?si=y2DffXb1SJGoHtLxcZoscg&context=spotify%3Asearch%3Adna%2Bken\"}"}', NULL), - (120, '0xa8f08c210005386a0bf8e188e03d3c02cde7d531', 0, 1, '2024-05-01 18:03:19+00', 0, 2, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 270, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 232, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6wpDQGn3Gl0j9Wt6D6mYvQ?si=HiJlOLsdQCyNZyYmvyqmkw&context=spotify%3Aplaylist%3A6nOomN0DpUwgPyPUP6D4yS\"}"}', NULL), - (134, '0xef92857fe0173372979ad16b8af875d8df7afc7d', 0, 1, '2024-05-01 18:14:22+00', 0, 1, '{"fid": 509198, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/410da5aa-3424-4143-99f2-ac4468506f00/rectcrop3", "profile": {"bio": {"text": "I''m a little girl in a big world 🌎", "mentioned_profiles": []}}, "username": "!509198", "power_badge": false, "display_name": "Melika", "active_status": "inactive", "verifications": ["0xf7533ea276a478b7c90441da06ccf8706f52923d"], "follower_count": 41, "custody_address": "0x03d1c580bc70d3b9e02ab93e456fd923a5836cf0", "following_count": 172, "verified_addresses": {"eth_addresses": ["0xf7533ea276a478b7c90441da06ccf8706f52923d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2t77hjgJY4sC9DoX5uaVUD?si=bLeH5PPySamD86CT0sao8Q\"}"}', NULL), - (162, '0xf8681fbe46d718283457f5c767d3650b82386879', 0, 1, '2024-05-01 16:48:12+00', 0, 1, '{"fid": 417302, "object": "user", "pfp_url": "https://i.imgur.com/aGgwjMK.jpg", "profile": {"bio": {"text": "Zdarova debili", "mentioned_profiles": []}}, "username": "alpachurros", "power_badge": false, "display_name": "AlpaChurros", "active_status": "inactive", "verifications": ["0x9d819695056bb1a372f9e715af5ec4c79595b67c"], "follower_count": 232, "custody_address": "0xf0a5b37cb2599e750ccefe5967152b8106866fd8", "following_count": 303, "verified_addresses": {"eth_addresses": ["0x9d819695056bb1a372f9e715af5ec4c79595b67c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3i2dFQiTTeqexR5hOxQ7LG?si=ZhQtJUJKRC6lu1w_PP5IVQ\"}"}', NULL), - (214, '0x70778fa85d7d87447f9da07018814715ee827018', 0, 1, '2024-04-30 18:02:09+00', 0, 2, '{"fid": 287145, "object": "user", "pfp_url": "https://2n2b2qivi5uy4xkgqboa26qlblewsz5rsijjo2uigfbdmiclkpdq.arweave.net/03QdQRVHaY5dRoBcDXoLCslpZ7GSEpdqiDFCNiBLU8c/353.jpg/", "profile": {"bio": {"text": "finding my way, through community • gaias forever • building @fcroyalebot for /farcasterroyale • DC me about automating your giveaways 🤖", "mentioned_profiles": []}}, "username": "satoshitilla", "power_badge": true, "display_name": "𝙏𝙄𝙇𝙇𝘼 🔵,🎩", "active_status": "inactive", "verifications": ["0xd84b5bfdf3b352a4814704e7205bcb866ebb3e17"], "follower_count": 907, "custody_address": "0x6138ef7c3365f7bcf9f1f7f37885ee92c7b2104e", "following_count": 548, "verified_addresses": {"eth_addresses": ["0xd84b5bfdf3b352a4814704e7205bcb866ebb3e17"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4k6Uh1HXdhtusDW5y8Gbvy?si=d72f67cf8aff459d\"}"}', NULL), - (326, '0x9ca75ea1d853a1cd86f046fe93cf732aba68d1cc', 0, 1, '2024-04-30 18:35:47+00', 0, 0, '{"fid": 464849, "object": "user", "pfp_url": "https://i.imgur.com/VcR0TIi.jpg", "profile": {"bio": {"text": "Chilean musician and content creator mostly about Chilean folk music. 🇨🇱🧂Working on /chile ", "mentioned_profiles": []}}, "username": "alantiwas", "power_badge": false, "display_name": "Alan Tiwas 🎩", "active_status": "inactive", "verifications": ["0xee70df3fe3877bcbc7de592a5557b89ce46d7be9"], "follower_count": 86, "custody_address": "0xd22a7c2f734d08cae4a9ba2687461c61b929311f", "following_count": 224, "verified_addresses": {"eth_addresses": ["0xee70df3fe3877bcbc7de592a5557b89ce46d7be9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed?referral=0xee70df3fe3877bcbc7de592a5557b89ce46d7be9&referral_source=link\"}"}', NULL), - (157, '0xe66b8f42b6a97b390da00e95c94b537cd977f262', 0, 1, '2024-05-01 10:43:16+00', 0, 3, '{"fid": 270048, "object": "user", "pfp_url": "https://i.imgur.com/XsD1Cnp.gif", "profile": {"bio": {"text": "crypto bear artist", "mentioned_profiles": []}}, "username": "martogm.eth", "power_badge": true, "display_name": "marto 🎩🍖", "active_status": "inactive", "verifications": ["0x636e2ce8ededd4a0cadd638d3d14664332fa56a0"], "follower_count": 981, "custody_address": "0x7dda327afd6f4a48fc44418f2542e5a59c58c6d8", "following_count": 295, "verified_addresses": {"eth_addresses": ["0x636e2ce8ededd4a0cadd638d3d14664332fa56a0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3dmfvWITuVs9OumXtwpAPJ?si=eF2XWdOhRIugYDoyPVqMPw&context=spotify%3Asearch\"}"}', NULL), - (188, '0x56ff980cb672d8d7c728bd666879d003bd52b16f', 0, 1, '2024-04-30 22:33:17+00', 0, 0, '{"fid": 211301, "object": "user", "pfp_url": "https://i.imgur.com/yPBD1Zl.jpg", "profile": {"bio": {"text": "Swiss Marketing Knife @getclave | @zecenazaltinok on X | 🔗 https://ecenazaltinok.notion.site/", "mentioned_profiles": []}}, "username": "ecenazaltinok", "power_badge": true, "display_name": "Zeynep Ecenaz Altınok", "active_status": "inactive", "verifications": ["0xf1ebd55ecdf7fed994885ae66a92c27f8d363bdf"], "follower_count": 354, "custody_address": "0x67926a990893635c3fc499e74c0fe5fd8501f27f", "following_count": 455, "verified_addresses": {"eth_addresses": ["0xf1ebd55ecdf7fed994885ae66a92c27f8d363bdf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/06uE6yOg0nc1HFTJWOhFYJ?si=wHDDSKn-THWDZnJNpQotag\"}"}', NULL), - (136, '0xb2f02d39f0bbdc2c010f79a47bad0347452c4f93', 0, 1, '2024-05-01 21:37:40+00', 0, 0, '{"fid": 326765, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8cd887ab-cd2c-4b0e-3807-3f3f98ec0000/original", "profile": {"bio": {"text": "Musician 🎶\nHere for the gm’s and the friendships. \nHosting /songwriting", "mentioned_profiles": []}}, "username": "sadeghian", "power_badge": true, "display_name": "May🎩", "active_status": "inactive", "verifications": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "follower_count": 229, "custody_address": "0x8b7d3a520bd6ee6c3fa8ca07cd938ae696b063e6", "following_count": 421, "verified_addresses": {"eth_addresses": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5xVZk4Vt12ViVyoircV9iP?si=E81Wkfv-TmWrCgU6lE4AIw\"}"}', NULL), - (170, '0xd360d4c1f03bd660da13275a09251ce2173f18a8', 0, 1, '2024-04-30 19:53:47+00', 0, 1, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 109, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 142, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/503OTo2dSqe7qk76rgsbep?si=WEeDxOEeT0qkVxTYMHnAfQ\"}"}', NULL), - (158, '0xe486692ef0b8291b542a68251b768499a544c5a0', 0, 1, '2024-05-01 21:43:48+00', 0, 0, '{"fid": 419984, "object": "user", "pfp_url": "https://i.imgur.com/ahWO5jr.jpg", "profile": {"bio": {"text": "Musical artist and fashion designer connecting music and fashion in an extraordinary way", "mentioned_profiles": []}}, "username": "gnericvibes", "power_badge": false, "display_name": "GNERIC", "active_status": "inactive", "verifications": ["0x36741e664ad6dc02253ab08a437f84d4a48879c0"], "follower_count": 31, "custody_address": "0xc1e770b1f9d48a192282657c6ee0daa76f0db2f9", "following_count": 98, "verified_addresses": {"eth_addresses": ["0x36741e664ad6dc02253ab08a437f84d4a48879c0"], "sol_addresses": ["HQS4LBxJKbvZgaLP52cprYq5nvUKuWR8fbSE7h4jGo35"]}}', '{"{\"url\":\"https://open.spotify.com/track/1qSVNEQ1kNzTN2joSPpe2h?si=eXGere0HTx-mLrGy6BNOZg\"}"}', NULL), - (210467, '0x4bebfcf83567c208818444b563a74bacca6b8d4d', 0, 1, '2024-05-05 12:55:57+00', 0, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1865, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/MqpfwgVYcNpS5GPXA\"}"}', NULL), - (177, '0xc34c809d2cc32c687b933c6ce79ce61f13cbd8af', 0, 1, '2024-04-30 13:58:44+00', 0, 1, '{"fid": 465861, "object": "user", "pfp_url": "https://i.imgur.com/7ZOADn0.jpg", "profile": {"bio": {"text": "I am a 24-year-old boy who wants to go out and see the world... but while I am only working to survive in Venezuela", "mentioned_profiles": []}}, "username": "sumerdan", "power_badge": false, "display_name": "Carlos ", "active_status": "inactive", "verifications": ["0xc14d0c616b01a80e026fe74869c6efd8a100b951"], "follower_count": 72, "custody_address": "0x24ce4aeee4743612c3958b7a3b11f5518c3d8608", "following_count": 153, "verified_addresses": {"eth_addresses": ["0xc14d0c616b01a80e026fe74869c6efd8a100b951"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/51QEyJI5M7uyd8DOh9tqQY?si=qox41zzNSd2vF6P4LFUa2Q\"}"}', NULL), - (185, '0x325a85e37e23b567b6cc445dde25a50a9b779651', 0, 1, '2024-04-30 19:52:06+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6DCZcSspjsKoFjzjrWoCdn?si=tshRMQpiRlSgpVCsZpHQvw&context=spotify%3Asearch%3Agods%2Bplan\"}"}', NULL), - (201, '0x5e80b49e5b163734afe429828557e2f2485dfbbd', 0, 1, '2024-04-30 20:54:16+00', 0, 0, '{"fid": 458404, "object": "user", "pfp_url": "https://i.imgur.com/yHpvwyC.jpg", "profile": {"bio": {"text": "Music, films, books, rugby, bàsquet. Engineer, MBA. Visca la Terra Lliure! Gironí i català. Tsool, Stooges, 13th Floor Elevators, The Velvet Underground, ...", "mentioned_profiles": []}}, "username": "jpoubaez", "power_badge": false, "display_name": "Joan", "active_status": "inactive", "verifications": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "follower_count": 44, "custody_address": "0x7ff5f4af616edc48203d36bb2325848f44e15e46", "following_count": 148, "verified_addresses": {"eth_addresses": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4tEaytMs86hIaOSsiGoLcP?si=6UtrEnBcTAuo16uHJPjZXw\"}"}', NULL), - (178, '0x888d3d3b7232f49bff7733ea8e7ae22138bfa5a0', 0, 1, '2024-04-30 22:53:23+00', 0, 4, '{"fid": 195117, "object": "user", "pfp_url": "https://i.imgur.com/PDWlh5Z.jpg", "profile": {"bio": {"text": "Queen|she|her\n/wac | onelovedao | cohort9\n| 2D Art | Photo | AI | Stream of Conscious Writing | RPG | Voiceover Creator |\n\nhttps://beacons.ai/jacquec", "mentioned_profiles": []}}, "username": "jacque", "power_badge": false, "display_name": "JacqueC🌸🩸🎩🌸", "active_status": "inactive", "verifications": ["0x20da700ea03e9fe8bf3409d6f66105184aefb2fc"], "follower_count": 81, "custody_address": "0x4036e3e1c3097e4c5d97f620a8b51239d5600be3", "following_count": 67, "verified_addresses": {"eth_addresses": ["0x20da700ea03e9fe8bf3409d6f66105184aefb2fc"], "sol_addresses": ["2nEdtHrM5vDzg1qg6KzMRrT3cHesy47ZpeghNijxQtgg"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb22d2ab-6698-4708-5644-be5ac8c1dc00/original\"}","{\"url\":\"https://open.spotify.com/track/6YC116WSLtv9epd9c7W9bs?si=ZTQM14-RSNmLFZNFBbevng&context=spotify%3Aplaylist%3A4B72SEK9tiY9H5aF3etuoI\"}"}', NULL), - (211, '0x3fce0bd64f6bcd9b7d013fd9bb1fc9e3e982b598', 0, 1, '2024-04-30 13:39:47+00', 0, 2, '{"fid": 269164, "object": "user", "pfp_url": "https://i.imgur.com/VSTSLQH.jpg", "profile": {"bio": {"text": "/lessons in there | resident of /replyguys and /balance", "mentioned_profiles": []}}, "username": "inexpfarmhand", "power_badge": true, "display_name": "farmhand 🎩", "active_status": "inactive", "verifications": ["0x8bc140bc0bad95229c71f8db308a9f04289694f5"], "follower_count": 1086, "custody_address": "0x1c465b12c83fe54634db862b052a21138fe36870", "following_count": 689, "verified_addresses": {"eth_addresses": ["0x8bc140bc0bad95229c71f8db308a9f04289694f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2nqPiVE7vKPiHyttanWfXi?si=tH588GZXQ2-pLJbjCo5EYQ\"}"}', NULL), - (3881, '0xe5a2cd26f149598bcc0d0f6af66d63c692448a31', 0, 1, '2024-05-02 21:26:27+00', 0, 0, '{"fid": 401215, "object": "user", "pfp_url": "https://i.imgur.com/Wn6bGYC.jpg", "profile": {"bio": {"text": "AIRL. Cult leader.", "mentioned_profiles": []}}, "username": "sadye", "power_badge": false, "display_name": "Sadye", "active_status": "inactive", "verifications": ["0xdc7e36f806012252c7a88e7c8f00802be46453df"], "follower_count": 14, "custody_address": "0x234476332ba130460e8aeff3049200db276d47bb", "following_count": 73, "verified_addresses": {"eth_addresses": ["0xdc7e36f806012252c7a88e7c8f00802be46453df"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/sadye/the-joke-is-on-me\"}"}', NULL), - (6127, '0x9a0aef6efddf7d67f79ed5a429585094eef81b1c', 0, 1, '2024-05-04 09:16:59+00', 0, 0, '{"fid": 456585, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd63123f-38a9-4ebf-096f-a2350b5cbb00/rectcrop3", "profile": {"bio": {"text": "Web3 marketing expert wannabe 🫡", "mentioned_profiles": []}}, "username": "hoyyoh", "power_badge": false, "display_name": "yoh 🔄 🎩", "active_status": "inactive", "verifications": ["0xa63475fbb41a3f179f8d72deb0161648ec1d2d95"], "follower_count": 36, "custody_address": "0x7f77830d995e1bba76d02b45bc8ac705c3292727", "following_count": 178, "verified_addresses": {"eth_addresses": ["0xa63475fbb41a3f179f8d72deb0161648ec1d2d95"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0iiB9CYptXO5Fz728LHHsQ?si=nV03nyKuTDy795wZXTtJYw\"}"}', NULL), - (1104408, '0xd0af2149c1d3ce5f75fd0e0b7b960792878908f6', 0, 1, '2024-05-07 16:27:57+00', 0, 4, '{"fid": 379759, "object": "user", "pfp_url": "https://i.imgur.com/Uw16XKC.jpg", "profile": {"bio": {"text": "프로현생러/생존운동러/행복채굴러/소액대박소망좌 가즈아🔥🔥", "mentioned_profiles": []}}, "username": "abcleeth", "power_badge": false, "display_name": "Hong🎩🍖", "active_status": "inactive", "verifications": ["0x1238d4dc3521dae1967bbf42337db51f0e7e58a0"], "follower_count": 1159, "custody_address": "0x194f52e5cb8383d1e835178ca373c11ce1f64372", "following_count": 2612, "verified_addresses": {"eth_addresses": ["0x1238d4dc3521dae1967bbf42337db51f0e7e58a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/npmko\"}"}', 'sonata'), - (160, '0x142356bfe3ac29980dd100ffe38391d614cd5aa8', 0, 1, '2024-05-01 09:21:27+00', 0, 2, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full-stack Artist 🖌️\n\nBuilding ORIGIN STØRIES (FIB, VPM, Refusés) ⚡️\n\nIn the studio - new music 🔜 ", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 610, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 303, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0QpyJWORLFGotplb4ojDTT?si=uM53fNguQGqLXcZo-x8hEA&context=spotify%3Asearch%3Abigger%2Bthan%2Bprinc\"}"}', NULL), - (328, '0xe50589728df47f0ad5b986e28fec36b6bd3c5835', 0, 1, '2024-04-30 14:23:53+00', 0, 1, '{"fid": 501199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdd303da-9225-4d77-7151-47d9df7dc400/rectcrop3", "profile": {"bio": {"text": "Music | Art | Author 💯🎼\nExhibited X Performed @ NY, LA, TX, Vegas, Miami, Paris +\n\nwww.mrdariusmusic.com\nwww.sound.xyz/mrdarius", "mentioned_profiles": []}}, "username": "mrdariusone", "power_badge": false, "display_name": "MR. DARIUS 🎩", "active_status": "inactive", "verifications": ["0x6904bfb4522e10038fc675552176b866027be939"], "follower_count": 29, "custody_address": "0x60a31d7c961bf0989ff8b4f3c799d57a236667b3", "following_count": 173, "verified_addresses": {"eth_addresses": ["0x6904bfb4522e10038fc675552176b866027be939"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/bc15d2df-c1b5-4ee6-8e98-58e5a82ad92d?invite=BCLDNW\"}","{\"url\":\"https://www.sound.xyz/mrdarius/ayo\"}"}', NULL), - (313, '0xd524477710e792a0538cfc72025063889ce71e7f', 0, 1, '2024-04-30 10:41:28+00', 0, 5, '{"fid": 13756, "object": "user", "pfp_url": "https://i.imgur.com/BcAUsi2.gif", "profile": {"bio": {"text": "I''m old, not obsolete!", "mentioned_profiles": []}}, "username": "amircrypto82", "power_badge": false, "display_name": "amircrypto82 🔵🎩🔮🧀", "active_status": "inactive", "verifications": ["0xb2ffa393f0b4072081eb2738eb8340bf877bae38"], "follower_count": 1140, "custody_address": "0x94236d0f1d9960d9c46a7b49bed8529a59cd7de0", "following_count": 1891, "verified_addresses": {"eth_addresses": ["0xb2ffa393f0b4072081eb2738eb8340bf877bae38"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/amircrypto82.eth/post/74654f44-3baf-4a8e-b09b-c49e7b2e7672\"}","{\"url\":\"https://app.layer3.xyz/quests/back-online?ref=amircrypto82.eth\"}"}', NULL), - (5349, '0xa5edd5b6a17411c92562fd56e3506b7fe495a85a', 1000, 1, '2024-05-03 01:44:23.267627+00', 0, NULL, NULL, NULL, NULL), - (137, '0x4f59dcf2c0ea1485642c7b2faae43a3f70bc0b4e', 0, 1, '2024-05-01 12:00:30+00', 0, 10, '{"fid": 378717, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0755f424-a0b8-4191-91ca-04ed54d51700/rectcrop3", "profile": {"bio": {"text": "Guitarist🎸\nBicycle run🚴🏼‍♂️gym💪\nmusic🤘🏽\nfoods and coocking 👨‍🍳\n🍖🎩", "mentioned_profiles": []}}, "username": "arashjafari", "power_badge": false, "display_name": "Arash 🎩🔵🍖", "active_status": "inactive", "verifications": ["0xde6ac348a0cfd7497109b06577ccf21710e8ad89"], "follower_count": 1123, "custody_address": "0x61a94d2ae423406560d09054eee713d57cfa0624", "following_count": 1186, "verified_addresses": {"eth_addresses": ["0xde6ac348a0cfd7497109b06577ccf21710e8ad89"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5s0S3Y5Ciq1suPbzRCKYpo?si=niQTML5vQ0u-pSGJzxh6BA&context=spotify%3Aartist%3A5mOO1KIfKb5HY8ieKjG9Qf\"}"}', NULL), - (239, '0x99a3bd002b8a70722723b750d3669baa8c8d60f8', 0, 1, '2024-05-01 16:25:03+00', 0, 0, '{"fid": 407922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7aad0220-c978-41b5-1ecb-0ef17bb88500/rectcrop3", "profile": {"bio": {"text": "CC0 Digital Artist Musician AI Explorer Trashart Tezos\nTrashBARD:\nhttps://on.soundcloud.com/VENeBroLEdmU79Pk9\nVLDZ ∞\nhttps://objkt.com/@vampy", "mentioned_profiles": []}}, "username": "vldz", "power_badge": false, "display_name": "VLDZ", "active_status": "inactive", "verifications": ["0x9593d27a94238403e347a290d95c4f4afedf6170"], "follower_count": 26, "custody_address": "0x8e96289ee2c4a77c3e751f84112a3ab995ca1eda", "following_count": 127, "verified_addresses": {"eth_addresses": ["0x9593d27a94238403e347a290d95c4f4afedf6170"], "sol_addresses": ["BSa4CoVsp53yGQFmqegakLcw2rZSdfF6NGSZuhQvbTKp"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6d4f0d-ed43-49b5-ee5a-ca94a39afe00/original\"}","{\"url\":\"https://on.soundcloud.com/iSMUcvPnrhvG4Uh57\"}"}', NULL), - (249, '0x9037ae32ae6849325a227498fe1a41b48f9b181f', 10, 1, '2024-05-01 02:25:06+00', 0, 6, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 217, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 972, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e93d97f-6df1-4954-2517-a943bb9a0f00/original\"}","{\"url\":\"https://on.soundcloud.com/xkhYA\"}"}', NULL), - (150, '0x6403871e6039e963aaf9b3594e46c3c3e3e121e1', 0, 1, '2024-05-01 08:37:59+00', 0, 1, '{"fid": 440557, "object": "user", "pfp_url": "https://i.imgur.com/XWvabIR.jpg", "profile": {"bio": {"text": "New on crypto… Old in life… But only good vibes 🌴🌴😎🤘🎩", "mentioned_profiles": []}}, "username": "iriwanaa", "power_badge": false, "display_name": "Iriwanaa", "active_status": "inactive", "verifications": ["0x2ff496c136b581d2231f9edd93ac3429acf3628e"], "follower_count": 155, "custody_address": "0x4f2b94ebea5b5341e0fc2fe4179cfff1617da886", "following_count": 166, "verified_addresses": {"eth_addresses": ["0x2ff496c136b581d2231f9edd93ac3429acf3628e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7nT9lGk3bf5rvnVbzPIE3N?si=-2vFv6YrR82YAW8ETmsP9Q&context=spotify%3Asearch%3Apreise%2Bjaj\"}"}', NULL), - (237, '0x4e3c50baf7545558d7690ecfc6a9b864cc70d4d5', 0, 1, '2024-04-30 10:46:12+00', 0, 4, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 27966, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3WgeSPPbe3mJZMVAUrcuDi?si=xVg8EsBgRJKF7Ayfh7sqpA\"}"}', NULL), - (192, '0x993f3ea93e8acc367cf1ceb0068b39356ff10b11', 0, 1, '2024-04-30 15:16:42+00', 0, 0, '{"fid": 392267, "object": "user", "pfp_url": "https://i.imgur.com/CYY2QGl.jpg", "profile": {"bio": {"text": "Crypto lover\nLet''s support each other💟 ", "mentioned_profiles": []}}, "username": "javat-lee", "power_badge": false, "display_name": "Javat-Lee 🎩 🍖 🔮✈️", "active_status": "inactive", "verifications": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "follower_count": 733, "custody_address": "0x2d5e509116a5feca597b1f209f01ff0afee65bc9", "following_count": 1505, "verified_addresses": {"eth_addresses": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4OukDE7pBKhCV4YYeYhnjq\"}"}', NULL), - (218, '0x186d41bc9413bbb493b837e222de9ae1489a2afd', 0, 1, '2024-04-30 10:12:15+00', 0, 1, '{"fid": 251769, "object": "user", "pfp_url": "https://i.imgur.com/YNTYTAC.jpg", "profile": {"bio": {"text": "Someone mentioned something about yachts in the meta verse and now I’m chronically on-chain", "mentioned_profiles": []}}, "username": "mezcalpapi.eth", "power_badge": true, "display_name": "Simon 🎩", "active_status": "inactive", "verifications": ["0xc1b83388b7e095617a4ef4ddb38db92ec2df03aa"], "follower_count": 509, "custody_address": "0xd086144229905126518672ed268aefed4e766310", "following_count": 169, "verified_addresses": {"eth_addresses": ["0xc1b83388b7e095617a4ef4ddb38db92ec2df03aa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0uxSUdBrJy9Un0EYoBowng?si=-_u6GnwnSBKQJKrvyYysZQ&context=spotify%3Aartist%3A4O15NlyKLIASxsJ0PrXPfz\"}"}', NULL), - (330, '0x165bae67cfe71f20c4a89c7a07d23d6bac07ee44', 0, 1, '2024-04-30 14:17:54+00', 0, 0, '{"fid": 257278, "object": "user", "pfp_url": "https://i.imgur.com/MIwOSdK.jpg", "profile": {"bio": {"text": "A storyteller, interactive media creator, Canadian Hip Hop poet, 360 VR Founder MixItMedia, and Communications, Content & Experience Director with Metaknyts.", "mentioned_profiles": []}}, "username": "symbolik", "power_badge": false, "display_name": "Symbolik", "active_status": "inactive", "verifications": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "follower_count": 91, "custody_address": "0xdef6d16539cfcc8793ce16ab01c563b17642bd23", "following_count": 88, "verified_addresses": {"eth_addresses": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/symbolik/i-manifest\"}"}', NULL), - (3276, '0xd98169039273bf7c7a45177ab06979d20c568e35', 0, 1, '2024-04-29 18:31:39+00', 0, 7, '{"fid": 434822, "object": "user", "pfp_url": "https://i.imgur.com/JQDSj2Q.jpg", "profile": {"bio": {"text": "AI artist\nhttps://linktr.ee/ahmadovamarina", "mentioned_profiles": []}}, "username": "marina-ahmadova", "power_badge": true, "display_name": "Marina Ahmadova🎩", "active_status": "inactive", "verifications": ["0x32dc25454b4b2797a504f4e14f5151471498d36e"], "follower_count": 1267, "custody_address": "0xc911d5e1fce505df8124ef2490f19c4bc373c0a8", "following_count": 1290, "verified_addresses": {"eth_addresses": ["0x32dc25454b4b2797a504f4e14f5151471498d36e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/62wAc90VNxtcNJQJrPaeJQ?si=_bH2xyEjSYSEyt8AoGmZIg&context=spotify%3Asearch%3Asudan%2Barchives\"}"}', NULL), - (265, '0x7c4bb0c9e7e8cfdfbcfe09b095d17bc080510e75', 0, 1, '2024-05-01 16:01:28+00', 0, 1, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 285, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/high-again?referral=0xaa466103793319fc3d6c7420d77e6e7cf586c877\"}"}', NULL), - (5378, '0x89f9805fb935280a08d146325a68d00bad6035ff', 20, 1, '2024-05-03 18:45:17.389846+00', 0, NULL, NULL, NULL, NULL), - (1099821, '0xa989aa048912d787b3945bc3a6e2ecfd4f4d3343', 0, 1, '2024-05-07 16:09:08+00', 0, 3, '{"fid": 499057, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92eb5b0b-027b-405c-550d-59f4268c8000/rectcrop3", "profile": {"bio": {"text": "Shiba will save the world🐾 존대말을 못배운 카와이시바 4가지없는게 아니야! 은혜는 무조건 갚는 카와이시바!", "mentioned_profiles": []}}, "username": "kawaiishiba", "power_badge": false, "display_name": "Kawaii_Shiba🎩", "active_status": "inactive", "verifications": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "follower_count": 1111, "custody_address": "0x1fd5449710120b982115e31881eb221ef9979283", "following_count": 1259, "verified_addresses": {"eth_addresses": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/changmo/05a?si=172736928aa7495cb86a16b5039d39d2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (151, '0x2ecd31dacc709057c69e93b962897d7e08b5ad64', 0, 1, '2024-05-01 14:02:13+00', 0, 0, '{"fid": 211286, "object": "user", "pfp_url": "https://i.imgur.com/0IrXyw6.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "yeti0x", "power_badge": false, "display_name": "Yeti", "active_status": "inactive", "verifications": ["0x7fa77093e83c9292c2357ea799ac2c57ec138203"], "follower_count": 151, "custody_address": "0x03de11224567ad98954df6a84341ba9b865186b5", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x7fa77093e83c9292c2357ea799ac2c57ec138203"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5vQqW74EkmxLyABwphendI?si=14adf56a65654dcc\"}"}', NULL), - (146, '0xcd51c1465761c14947bb1a7dd206514509decdfd', 0, 1, '2024-05-01 14:49:59+00', 0, 1, '{"fid": 196950, "object": "user", "pfp_url": "https://i.imgur.com/wnUG2Sx.gif", "profile": {"bio": {"text": "I''m just a /bows 🎀 living my dream • Founder at /made-by-marge • Design wizard at /pinata ", "mentioned_profiles": []}}, "username": "marjorie", "power_badge": true, "display_name": "Marge 🎩🎀", "active_status": "inactive", "verifications": ["0xcf472a57a79d4bba49755091e6a4c3acf8a43ff0"], "follower_count": 1196, "custody_address": "0xbe8f7924d99f529aede4c5ca1fe05d34c28d2216", "following_count": 358, "verified_addresses": {"eth_addresses": ["0xcf472a57a79d4bba49755091e6a4c3acf8a43ff0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=b5d682aab34143b4\"}"}', NULL), - (210, '0xb6c65e74ae97e5872832caaa7aeada491dfe3248', 0, 1, '2024-04-30 23:33:46+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/60PAzFNW3vAiAiVK6DRJfB?si=-bycjdrRR5-A_CLskL9kNg&context=spotify%3Asearch%3Aday%2Bn%2Bni\"}"}', NULL), - (232, '0xba10d9042a6f7eb87ab9ebdfb5af67596bf6fcd4', 0, 1, '2024-05-01 05:53:26+00', 0, 0, '{"fid": 507669, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ed88414-825b-40cc-4742-7f44cf55da00/rectcrop3", "profile": {"bio": {"text": "smoke hash make somza for life\n\nstupido137b", "mentioned_profiles": []}}, "username": "!507669", "power_badge": false, "display_name": "thereal_laza", "active_status": "inactive", "verifications": ["0x74e98f9f7180ce6b76d6fb3844edcd6feb7e8089"], "follower_count": 3, "custody_address": "0x42e4b2e9e14374f2094f8c0abf9a07ba64dd484e", "following_count": 4, "verified_addresses": {"eth_addresses": ["0x74e98f9f7180ce6b76d6fb3844edcd6feb7e8089"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ccthUvt46xBqhuoK9\"}"}', NULL), - (290, '0x209ed79665fe107b00b2a75934b93c0afef46354', 0, 1, '2024-04-30 20:02:56+00', 0, 0, '{"fid": 326415, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1687c91-1ecd-4d5b-c89b-faa5c76a8a00/original", "profile": {"bio": {"text": "I make psychedelic music and art as Infinati. Sound and soul architect.\nhttps://infinati.wtf", "mentioned_profiles": []}}, "username": "infinati", "power_badge": false, "display_name": "Infinati", "active_status": "inactive", "verifications": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "follower_count": 61, "custody_address": "0xba3bec28da1d9eb0f1a17203a3fb9d607258cf18", "following_count": 206, "verified_addresses": {"eth_addresses": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/infinati/post/cb8e0c09-bc28-4d95-876a-c60113dd6e31\"}"}', NULL), - (324, '0x91f4bb7d93855798a0167e2906ad2fa50f4dca2e', 0, 1, '2024-04-30 09:03:50+00', 0, 0, '{"fid": 1265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f618f59-2290-4350-100a-4b5d10abef00/original", "profile": {"bio": {"text": "Product, Design & Cinema | Player /fbi | FID #1265 ", "mentioned_profiles": []}}, "username": "akhil-bvs", "power_badge": true, "display_name": "Akhil BVS", "active_status": "inactive", "verifications": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "follower_count": 236, "custody_address": "0xdf055eb92e2c97d7da4036278d145458eb11811c", "following_count": 65, "verified_addresses": {"eth_addresses": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/10120.eth/post/be455d2f-558e-4f2f-93f4-18fdca0caa95\"}"}', NULL), - (251, '0x2aad574e39430acb579a62a392e66ce2e978eb2c', 10, 1, '2024-04-30 21:25:45+00', 0, 6, '{"fid": 5448, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/1e8408526d3fe3d5e233fe6ab645f0cb.jpg?w=500&auto=format", "profile": {"bio": {"text": "Team Warpcast. Ex data platform @ Coinbase & Robinhood. I like /techno music & /mech-kb", "mentioned_profiles": []}}, "username": "cmlad.eth", "power_badge": true, "display_name": "Chris Farkonnen", "active_status": "inactive", "verifications": ["0x9c928c1b01339ebfaf45d400f793989b60b6331e"], "follower_count": 1542, "custody_address": "0x61d00ad76068f8d4740c358c8c03aaeb510b590d", "following_count": 661, "verified_addresses": {"eth_addresses": ["0x9c928c1b01339ebfaf45d400f793989b60b6331e"], "sol_addresses": ["DFPArtDTYxS2pdoTYPowuVNsjsmwVCZ883KsmSrqadRk"]}}', '{"{\"url\":\"https://soundcloud.com/47x47/rommek-somatic-marker?si=004861e6d402409880ccdfef873f75f1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (189, '0xf1786c752037910d222a1614e9a2712afa19ecdc', 0, 1, '2024-05-01 03:43:25+00', 0, 0, '{"fid": 402840, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigydh56iguyh4nt7u22xv7hjlsjvtenjcw773ymmjnf3jwfkipvki", "profile": {"bio": {"text": "a winger, art enthusiast and zealous learner", "mentioned_profiles": []}}, "username": "mojj", "power_badge": false, "display_name": "moj", "active_status": "inactive", "verifications": ["0xa30aebe21c244293811659661714147975d50d74"], "follower_count": 186, "custody_address": "0x2be5cf64e918f2963172ffbfd9f39fbb88a20fca", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xa30aebe21c244293811659661714147975d50d74"], "sol_addresses": ["J5byy4ueGY9jkYRtcaYKLeKbQbzAo7dhrZo1PfkMMB3J"]}}', '{"{\"url\":\"https://open.spotify.com/track/4yLyVdEqV790aIXyGif85v?si=QJ-E_WALSJC50qiAU7fBWw\"}"}', NULL), - (183, '0xea7df674c6b51d602779f1341c94294cc6684211', 0, 1, '2024-04-30 23:00:54+00', 0, 1, '{"fid": 441832, "object": "user", "pfp_url": "https://i.imgur.com/TiudM54.jpg", "profile": {"bio": {"text": "I''ve never made an analog collage in my life. Yet.", "mentioned_profiles": []}}, "username": "youmiirror", "power_badge": false, "display_name": "miirror ", "active_status": "inactive", "verifications": ["0x8daa60e0ff964bb4d1f30fae8791626229c3f63b"], "follower_count": 104, "custody_address": "0xdb65d3e2974834eb4b6c8b9687a37686a8141118", "following_count": 88, "verified_addresses": {"eth_addresses": ["0x8daa60e0ff964bb4d1f30fae8791626229c3f63b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3gY6tiCNsuVi6s8kPV6aQg\"}"}', NULL), - (147, '0xe3574cea77390065f234ac025ab82b274beb7015', 0, 1, '2024-05-01 10:44:43+00', 0, 10, '{"fid": 2802, "object": "user", "pfp_url": "https://i.imgur.com/Hf9CCmq.jpg", "profile": {"bio": {"text": "Stay Curious // iixii // Lazer Technologies // CoinDesk", "mentioned_profiles": []}}, "username": "garrett", "power_badge": true, "display_name": "Garrett 🎩↑ᖽ", "active_status": "inactive", "verifications": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "follower_count": 8650, "custody_address": "0xb3b4c5d8a76b33d5db8f94b44444563b9038a7a3", "following_count": 1809, "verified_addresses": {"eth_addresses": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "sol_addresses": ["GBoV4dY33PwzvoTkCaHRwqAsAcBBv9qfgTXexqZBzopk"]}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=4EYW60uwRumctAM36HM5vQ&context=spotify%3Aalbum%3A32bR4LcEc1PvJEhaKoo4ZN\"}"}', NULL), - (217, '0x4856992c0d38dfe6c44dcea31324a434a66a762a', 0, 1, '2024-04-30 11:00:26+00', 0, 8, '{"fid": 397691, "object": "user", "pfp_url": "https://i.imgur.com/Y4A5zoR.jpg", "profile": {"bio": {"text": "Astrophotographer from Ireland.", "mentioned_profiles": []}}, "username": "ronanhunt", "power_badge": true, "display_name": "Ronan Hunt 🎩✨🆓🍖", "active_status": "inactive", "verifications": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "follower_count": 1638, "custody_address": "0x0b168a222d0950b3ef58d7d8be3e647be65ca4d5", "following_count": 1282, "verified_addresses": {"eth_addresses": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "sol_addresses": ["CUAmbyMbPL7Tg4HAXyk28noTNQqgz5M1Ymi98j5yVgMx"]}}', '{"{\"url\":\"https://open.spotify.com/track/18lR4BzEs7e3qzc0KVkTpU?si=kqDkRDj6Qr6eS3MCZSnVvw&context=spotify%3Aplaylist%3A37i9dQZF1EIYWwGqC3GC7o\"}"}', NULL), - (319, '0xb2ad5c4ce332b2a12cb3684c584734fd6f14571a', 0, 1, '2024-04-30 17:57:54+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8889, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/d8036068-243b-4940-b3e7-251c46b19927\"}","{\"url\":\"https://www.sound.xyz/wizthemc/permanence\"}"}', NULL), - (240584, '0x04e3a5cd189bbb45f9f0513ec4a02a485cf83195', 0, 1, '2024-05-05 14:01:30+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2630, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3120, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UD1ejgj7XK3JaDzw9\"}"}', NULL), - (233, '0xc6b5f39aade2bb42ab6723c91606a27a19e5d1ae', 0, 1, '2024-04-30 18:22:54+00', 0, 1, '{"fid": 428671, "object": "user", "pfp_url": "https://i.imgur.com/1Y4qRhB.jpg", "profile": {"bio": {"text": "Visual artist | senior designer | sound designer |\nI am a magician\n\nlinktr.ee/mehdijaladat", "mentioned_profiles": []}}, "username": "mehdijaladat", "power_badge": false, "display_name": "Mehdijaladat", "active_status": "inactive", "verifications": ["0x8b80b850c579aace8fb562fd9a6cea8869b246d2", "0x8b80b850c579aace8fb562fd9a6cea8869b246d2"], "follower_count": 419, "custody_address": "0x7e62c96c7d280c7eb23a32746b2b8a5c913eb00b", "following_count": 460, "verified_addresses": {"eth_addresses": ["0x8b80b850c579aace8fb562fd9a6cea8869b246d2", "0x8b80b850c579aace8fb562fd9a6cea8869b246d2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eU2brLrq1GcqvCic7🥰\"}"}', NULL), - (289, '0x6138e942b31a3d9eea3a708a7a1ecfc7f8a6f3da', 0, 1, '2024-05-01 07:34:42+00', 0, 0, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 285, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/pour-me-up-some-more?referral=0xaa466103793319fc3d6c7420d77e6e7cf586c877\"}"}', NULL), - (245, '0x76a590894d23e4dae845e82361a9cc8e09220075', 0, 1, '2024-04-30 09:11:01+00', 0, 5, '{"fid": 193826, "object": "user", "pfp_url": "https://i.imgur.com/Urc2CHT.gif", "profile": {"bio": {"text": "Fashion person with a degen twist. Building /uniklabs. Having fun in /los-fomos. Show me your /typos. Dancing in /latinmusic. ", "mentioned_profiles": []}}, "username": "pauline-unik", "power_badge": true, "display_name": "Pauline Unik 🌶️", "active_status": "inactive", "verifications": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "follower_count": 1460, "custody_address": "0x285b0d0d896591bf9cf34dcb5d401883c8ead439", "following_count": 468, "verified_addresses": {"eth_addresses": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdc90228-4094-487e-21c5-f0a7a4215500/original\"}","{\"url\":\"https://open.spotify.com/track/4WO5q4gmBiPJbv2xqVDADE?si=NiH4lCAaSueCYc5bdTDCOQ\"}"}', NULL), - (256, '0x330f089dbf14a120b51f820cc84a2b0ca0424adf', 0, 1, '2024-05-01 19:21:15+00', 0, 2, '{"fid": 405599, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/d190314719eb41330d591400fdc2d224.gif?w=500&auto=format", "profile": {"bio": {"text": "Poet\ncrypto fan\n$DEGEN", "mentioned_profiles": []}}, "username": "ghezel8888", "power_badge": false, "display_name": "M.GH.NAAJI", "active_status": "inactive", "verifications": ["0x8425ccd02cc69ff71fc288e2a8ed56c81b6080c5", "0x8425ccd02cc69ff71fc288e2a8ed56c81b6080c5"], "follower_count": 594, "custody_address": "0xd9ffcb69c1b6b8ce3d160756ca869f01bf1d682a", "following_count": 889, "verified_addresses": {"eth_addresses": ["0x8425ccd02cc69ff71fc288e2a8ed56c81b6080c5", "0x8425ccd02cc69ff71fc288e2a8ed56c81b6080c5"], "sol_addresses": []}}', '{"{\"url\":\"https://newsletter.sound.xyz/@sound?referrer=0x8425ccd02cc69ff71fc288e2a8ed56c81b6080c5\"}"}', NULL), - (282, '0x1d9acab81f277ff2f52b23c122b7554ba8c9664c', 0, 1, '2024-04-30 21:39:28+00', 0, 3, '{"fid": 6122, "object": "user", "pfp_url": "https://i.imgur.com/m9bS1Vc.jpg", "profile": {"bio": {"text": "Ableton Architect. Music NFTs.", "mentioned_profiles": []}}, "username": "reo", "power_badge": true, "display_name": "Reo Cragun", "active_status": "inactive", "verifications": ["0x921fc6cf9334a6248d6b9f460aa32c5914778f82"], "follower_count": 305, "custody_address": "0x2efe76a5c493ccc4af3570fdc5d82a8fe4cd4749", "following_count": 68, "verified_addresses": {"eth_addresses": ["0x921fc6cf9334a6248d6b9f460aa32c5914778f82"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm\"}"}', NULL), - (254, '0x8d74e74a8928d1baba0f3e854ef0a3a5fae158db', 10, 1, '2024-04-30 10:21:56+00', 0, 3, '{"fid": 266567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/08bf96cd-be4a-492e-3c6f-8d81e896ff00/rectcrop3", "profile": {"bio": {"text": "Audiophile who loves golf, padel and tennis. Exploring the present for clues to the future.", "mentioned_profiles": []}}, "username": "jingaling", "power_badge": false, "display_name": "Jingaling", "active_status": "inactive", "verifications": ["0xec7d159eec6eb5d555ce985af99cb939ded2609e"], "follower_count": 74, "custody_address": "0x1689a70328dac6331bc9cbf44be923322f668ec8", "following_count": 184, "verified_addresses": {"eth_addresses": ["0xec7d159eec6eb5d555ce985af99cb939ded2609e"], "sol_addresses": ["Aw9ySbSVuJ2etz4Gx8WFZiTdcxW83KpRo2qjZjsF8rXm"]}}', '{"{\"url\":\"https://on.soundcloud.com/VjiRSrdAn8iVDghPA\"}"}', NULL), - (234, '0x2a484919762db901b79a0e7aad10a82ae7113623', 33030, 1, '2024-05-01 21:36:04+00', 82, 17, '{"fid": 6122, "object": "user", "pfp_url": "https://i.imgur.com/m9bS1Vc.jpg", "profile": {"bio": {"text": "Ableton Architect. Music NFTs.", "mentioned_profiles": []}}, "username": "reo", "power_badge": true, "display_name": "Reo Cragun", "active_status": "inactive", "verifications": ["0x921fc6cf9334a6248d6b9f460aa32c5914778f82"], "follower_count": 305, "custody_address": "0x2efe76a5c493ccc4af3570fdc5d82a8fe4cd4749", "following_count": 68, "verified_addresses": {"eth_addresses": ["0x921fc6cf9334a6248d6b9f460aa32c5914778f82"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral_source=link\"}"}', NULL), - (303, '0x54d0bfca86691159d77cd9db521614d79dc56de8', 0, 1, '2024-05-01 16:52:46+00', 0, 3, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": false, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1857, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 961, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/picnic\"}"}', NULL), - (5887, '0x65bc6948a0237900d5d84218e2eb335dad838193', 0, 1, '2024-05-04 09:05:45+00', 0, 0, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "🦠 Onchain Music @invinmusic 🦠", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas | FarCon", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 570, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7cgZ2Wwqfh98q8ViBAJjp5?si=987f35f962a24b0e\"}"}', NULL), - (208, '0x0aec33c4abad965c52c16e3f2df437cfe9e502ca', 0, 1, '2024-05-01 00:23:09+00', 0, 5, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 27966, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/697HW34FLNURvRAbSieICv?si=fe74f292b8254914\"}"}', NULL), - (255, '0xa8168177c482267b189900c3d835212777d42899', 0, 1, '2024-04-30 12:15:37+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/4wtQ5qLy8wxVsYk8avGfl7?si=Gxdhsa8hRc2udvfCKCm5NQ&context=spotify%3Asearch%3Amalcolm%2Bghost\"}"}', NULL), - (204, '0x3fd1bba78b1417c2f889153e3295208e8e5ab611', 0, 1, '2024-05-01 02:41:07+00', 0, 4, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"cast_id\":{\"fid\":313886,\"hash\":\"0xb5aff26f97528f29333ff34600b29e0345ca5ab4\"}}","{\"url\":\"https://open.spotify.com/track/14CsqOaDkOkrZ49UJLtuOJ?si=HGqwTHsgTIa5r0f19IrBtQ&context=spotify%3Aalbum%3A2Aiv0ThDpFa7lqHphR6MN5\"}"}', NULL), - (525436, '0x4db5281402ec00b5829b473ca03e7013d954cdda', 0, 1, '2024-05-06 09:20:17+00', 0, 1, '{"fid": 413826, "object": "user", "pfp_url": "https://i.imgur.com/PuNxXm9.jpg", "profile": {"bio": {"text": "I like crypto", "mentioned_profiles": []}}, "username": "shily", "power_badge": false, "display_name": "Shily🔵🍖🧀🎩", "active_status": "inactive", "verifications": ["0x814465b484b60fbf50ee7a14142e845d4043bf4d"], "follower_count": 1752, "custody_address": "0x50ff82c6c6d4ddaf1259fc73e994721dc6218a45", "following_count": 1479, "verified_addresses": {"eth_addresses": ["0x814465b484b60fbf50ee7a14142e845d4043bf4d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6VL3Fm2Y6d5DNupP6\"}"}', NULL), - (122, '0x07ae7f62aa8cbefcc09136dd1e0c3ec7eee9b1c1', 0, 1, '2024-05-01 08:03:02+00', 0, 11, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🍡", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2004, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 719, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": ["BQ9G8warUe9PA99aZeuuWTwqf9QJ3jxDcaReXStZ348i"]}}', '{"{\"url\":\"https://open.spotify.com/track/7474US7MpLd3megY6xjvo6\"}"}', NULL), - (283, '0xc8319c2d1954f5c0e207731f1200c9960c6e463f', 0, 1, '2024-05-01 06:17:20+00', 0, 0, '{"fid": 300568, "object": "user", "pfp_url": "https://i.imgur.com/xRe7CJr.png", "profile": {"bio": {"text": "To protect and serve\nNft trader and crypto enthusiast", "mentioned_profiles": []}}, "username": "cop86.eth", "power_badge": false, "display_name": "cop86 ↑↑ 🔵 🎩 ↑↑", "active_status": "inactive", "verifications": ["0x27146cd533760e0867db2647dad531fde92d80ef"], "follower_count": 107, "custody_address": "0xdea9034780bc6cfee420d574f680e39f56be1bf5", "following_count": 173, "verified_addresses": {"eth_addresses": ["0x27146cd533760e0867db2647dad531fde92d80ef"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/cop86.eth/post/676bd104-db8b-4b26-8242-02d5a0e4883f\"}"}', NULL), - (5404, '0x68a9f2eb39b03b97316b017ed28937dfdc78487f', 0, 1, '2024-05-03 22:08:41+00', 1, 9, '{"fid": 196378, "object": "user", "pfp_url": "https://i.imgur.com/5kOLqhw.jpg", "profile": {"bio": {"text": "VP of Music - @cooprecs | Label Manager - Odyzey Music", "mentioned_profiles": []}}, "username": "jakeonchain.eth", "power_badge": true, "display_name": "Jakeonchain", "active_status": "inactive", "verifications": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "follower_count": 459, "custody_address": "0xdc6bc6aab5fad36088b8ed68ab248753cdf905bd", "following_count": 167, "verified_addresses": {"eth_addresses": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3iHrGCUXfZ4BoOy615Ydbk?si=88c8dcdc31cc429e\"}"}', NULL), - (129, '0xb77872262de7f5517bace8297683c66427ee016e', 0, 1, '2024-05-01 16:10:07+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/579f8f49-edb8-422a-3bd5-b0f0f9c35d00/original\"}","{\"url\":\"https://open.spotify.com/track/2L93TdW2GMue1H2zlkt30F?si=3Oxfr9ZfTqGD7ankYSCyBQ&context=spotify%3Aartist%3A5l8VQNuIg0turYE1VtM9zV\"}"}', NULL), - (125, '0x3595b45f200e5da823578d928d8fb72b289faa08', 0, 1, '2024-05-01 17:19:28+00', 0, 1, '{"fid": 440557, "object": "user", "pfp_url": "https://i.imgur.com/XWvabIR.jpg", "profile": {"bio": {"text": "New on crypto… Old in life… But only good vibes 🌴🌴😎🤘🎩", "mentioned_profiles": []}}, "username": "iriwanaa", "power_badge": false, "display_name": "Iriwanaa", "active_status": "inactive", "verifications": ["0x2ff496c136b581d2231f9edd93ac3429acf3628e"], "follower_count": 155, "custody_address": "0x4f2b94ebea5b5341e0fc2fe4179cfff1617da886", "following_count": 166, "verified_addresses": {"eth_addresses": ["0x2ff496c136b581d2231f9edd93ac3429acf3628e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3hxIUxnT27p5WcmjGUXNwx?si=pkk3x33QRrCWrkDvc-RYoA\"}"}', NULL), - (323, '0x3984b4854f1923ee7814ee8ea3b6bf4b9617db93', 0, 1, '2024-04-30 10:22:27+00', 0, 0, '{"fid": 376849, "object": "user", "pfp_url": "https://i.imgur.com/VGhhclG.jpg", "profile": {"bio": {"text": "I am trader forex and crypto \nI fan k-pop", "mentioned_profiles": []}}, "username": "zuzilong", "power_badge": false, "display_name": "Nguyễn Kim Long", "active_status": "inactive", "verifications": ["0xa7e6cc1b23dcb615f7abf18cbaa4e0e74a0f1784"], "follower_count": 56, "custody_address": "0xd1abe877eb793ff308e8a281aeb17db201a1edc1", "following_count": 432, "verified_addresses": {"eth_addresses": ["0xa7e6cc1b23dcb615f7abf18cbaa4e0e74a0f1784"], "sol_addresses": ["BU6h4mc77gBM6hLDdEqsjQ4ijKEf2jJtpyYEuCzFRWs8"]}}', '{"{\"url\":\"https://www.sound.xyz/memba/back-online?referral=0xa7e6cc1b23dcb615f7abf18cbaa4e0e74a0f1784&referral_source=link\"}"}', NULL), - (257, '0x02ff6dd8e81406b07aa83bc204d03adcdd2ebeb7', 0, 1, '2024-04-30 08:13:13+00', 0, 0, '{"fid": 441339, "object": "user", "pfp_url": "https://i.imgur.com/Dm8d6SG.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nassive", "power_badge": false, "display_name": "Chinazes ", "active_status": "inactive", "verifications": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "follower_count": 187, "custody_address": "0xd64038b044bdaf77f537086fd76e0f60ad56bbc8", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8xxkb\"}"}', NULL), - (273, '0xb5283a428e73aff6f211c67ccf55f9cce370f5bf', 0, 1, '2024-05-01 01:42:22+00', 0, 4, '{"fid": 235900, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiglfacu6w2lq4q4awbkzgm7hcys574kxb5sbxnaumgx6vtodnwe5m", "profile": {"bio": {"text": "Let''s fucking goooo https://t.me/airdropsepuh", "mentioned_profiles": []}}, "username": "sepuhh", "power_badge": false, "display_name": "Sepuh Community 🍖🔄🎩", "active_status": "inactive", "verifications": ["0xeb0b24f85675204b8f33cf022ef2664f0df5a519"], "follower_count": 1393, "custody_address": "0x0940c7de8ed6033ed7e3dcb456a882ae323228e3", "following_count": 2216, "verified_addresses": {"eth_addresses": ["0xeb0b24f85675204b8f33cf022ef2664f0df5a519"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0xeb0b24f85675204b8f33cf022ef2664f0df5a519&referral_source=link\"}"}', NULL), - (5412, '0x3896f0698f56600b9b65788a524942abcb5131f6', 0, 1, '2024-05-03 17:49:27+00', 0, 0, '{"fid": 483586, "object": "user", "pfp_url": "https://i.imgur.com/1bPSOHG.jpg", "profile": {"bio": {"text": "Tranquilo typewriter artist -\nnoisycoyote.space", "mentioned_profiles": []}}, "username": "noisycoyote", "power_badge": false, "display_name": "NOiSY COYOTE", "active_status": "inactive", "verifications": ["0xf16055e5e0a9f2c07215f8a6931dc1bd1d6ccad8"], "follower_count": 86, "custody_address": "0xbb989c85d1cc3e2faa0cb66e17c282f5d4a028e5", "following_count": 252, "verified_addresses": {"eth_addresses": ["0xf16055e5e0a9f2c07215f8a6931dc1bd1d6ccad8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/noisycoyote/sets/leo?si=a2566bca817343c0abee1fdf9b16d5b7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (239251, '0x4dc1ce8f44a2dd60cfbcc2cbdf802ca9bd2e0d67', 0, 1, '2024-05-05 13:55:48+00', 0, 1, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2016, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2588, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/btsforlife/bts-spring-day?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (224, '0x1e39bf836bfbbd6ffb138538aa88a90e34487d49', 0, 1, '2024-04-30 10:24:00+00', 0, 5, '{"fid": 397691, "object": "user", "pfp_url": "https://i.imgur.com/Y4A5zoR.jpg", "profile": {"bio": {"text": "Astrophotographer from Ireland.", "mentioned_profiles": []}}, "username": "ronanhunt", "power_badge": true, "display_name": "Ronan Hunt 🎩✨🆓🍖", "active_status": "inactive", "verifications": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "follower_count": 1638, "custody_address": "0x0b168a222d0950b3ef58d7d8be3e647be65ca4d5", "following_count": 1282, "verified_addresses": {"eth_addresses": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "sol_addresses": ["CUAmbyMbPL7Tg4HAXyk28noTNQqgz5M1Ymi98j5yVgMx"]}}', '{"{\"url\":\"https://open.spotify.com/track/3T74kgnbHw8JqkYGJKD4Tl?si=hQ5bu4RPTyKuFA0F43cr-A&context=spotify%3Aalbum%3A1zszC1x9HYKxUCKVa62p7C\"}"}', NULL), - (155, '0xe9081c6aa57e76e7a7888e475ae27666af0fcdd2', 0, 1, '2024-05-01 11:47:06+00', 0, 2, '{"fid": 427206, "object": "user", "pfp_url": "https://i.imgur.com/AoC0h8x.jpg", "profile": {"bio": {"text": "I shitpost and make art sometimes", "mentioned_profiles": []}}, "username": "barries", "power_badge": false, "display_name": "Barries🎩", "active_status": "inactive", "verifications": ["0x8715dcbf7394a4e6ad98ac5d112e7fb6c3ea9f70"], "follower_count": 169, "custody_address": "0x713a1f1210b6305fe54fafba395529df077b866f", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x8715dcbf7394a4e6ad98ac5d112e7fb6c3ea9f70"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6QPEPcXp1QztnF0htKLGE4?si=seY3tNO5TfWkPUZG7HOboA\"}"}', NULL), - (166, '0x77489ba41ee1dd3ef4b4c1b66f379f820fe04185', 0, 1, '2024-05-01 02:39:26+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/14CsqOaDkOkrZ49UJLtuOJ?si=KLkUkEIrR1qTuQnNFbKCIw&context=spotify%3Aalbum%3A2Aiv0ThDpFa7lqHphR6MN5\"}"}', NULL), - (1171077, '0x3a04c4012969fa2ffa54eb0aefc610feee7af955', 1200, 1, '2024-05-14 04:50:30+00', 1, 23, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2635, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 778, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3JxvXfdWhKOzM2VGy1Gt1z\"}"}', 'sonata'), - (327, '0x9b10eb87d86e2511f99dbc09efbf96e18ee98053', 0, 1, '2024-04-30 17:50:23+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "follower_count": 30, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 123, "verified_addresses": {"eth_addresses": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/1917-mental-health-matterz?referral_source=link\"}"}', NULL), - (298, '0x8c3da3026bbead5954e871e7a82a8f3e88069cd0', 0, 1, '2024-05-01 02:45:52+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 9, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/wizthemc/permanence?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (258, '0x35973609ef8664bf13bb623d73ec29f0000755b4', 0, 1, '2024-04-30 08:09:37+00', 0, 0, '{"fid": 441339, "object": "user", "pfp_url": "https://i.imgur.com/Dm8d6SG.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nassive", "power_badge": false, "display_name": "Chinazes ", "active_status": "inactive", "verifications": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "follower_count": 187, "custody_address": "0xd64038b044bdaf77f537086fd76e0f60ad56bbc8", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aCcSN\"}"}', NULL), - (276, '0x1d735c14d2e87c2e542d807fb80a8700f464091b', 0, 1, '2024-05-01 00:13:02+00', 0, 1, '{"fid": 449320, "object": "user", "pfp_url": "https://arweave.net/lRvBjzxuXoLa_KkIyDhCFzj6_wiqa-M1Go4-199R7gg/", "profile": {"bio": {"text": "Think to the future", "mentioned_profiles": []}}, "username": "balung33", "power_badge": false, "display_name": "Aryswijaya", "active_status": "inactive", "verifications": ["0xd0cf40da82ecb3b2b2588cd90d3382b8b865256d"], "follower_count": 76, "custody_address": "0xc3b9b99054626b584344c3b19fe89c672df73e00", "following_count": 224, "verified_addresses": {"eth_addresses": ["0xd0cf40da82ecb3b2b2588cd90d3382b8b865256d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rosalie/post/d52c1b42-9b2b-4d83-9ff1-b03fb93689d0\"}"}', NULL), - (5406, '0xb9c1a37c9d54968711bce385b23b0a2191f013d6', 0, 1, '2024-05-04 06:46:55+00', 0, 2, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "🦠 Onchain Music @invinmusic 🦠", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas | FarCon", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 570, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6DmfWj5kOa1fX8AwN9byOn?si=oTQQtAXjR7SH53Fm4Xq54A\"}"}', NULL), - (153, '0xd52e899bd54c4078be625bd50cdcc333399c5dea', 0, 1, '2024-05-01 20:00:21+00', 0, 0, '{"fid": 711, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/jm5MNY3xR4iMYKogE-XmOQyqxrWfLgW2BvltLKCbjr4rZdxbFP402e1o6fpGUDwjgEz1K7Pu_obE0id7Zza0VT5LkV7mqduv81i4CQ", "profile": {"bio": {"text": "ceo @cozy, investor @farcaster", "mentioned_profiles": []}}, "username": "payomdousti", "power_badge": false, "display_name": "Payom Dousti", "active_status": "inactive", "verifications": ["0x9299d0b39158dd684d559ed55074cc6ea0975de8"], "follower_count": 164, "custody_address": "0x7ee0e3af9b23689351aaf351946896250a97fdb3", "following_count": 174, "verified_addresses": {"eth_addresses": ["0x9299d0b39158dd684d559ed55074cc6ea0975de8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Ip4AyegQWSvzVn3WrRSYm?si=cfacc21b9a4849b1\"}"}', NULL), - (196, '0x0446b9893f6f01019739a9248c3e3a8e45deb3d4', 0, 1, '2024-04-30 23:00:53+00', 0, 7, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3516, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 356, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2NFadq6pUeiVEihLvUlOSr?si=epA-BuccTWKMK0hgoZA7qg\"}"}', NULL), - (299, '0xd1f35107e655dd9b156929e921de60d80753f91b', 0, 1, '2024-05-01 03:24:26+00', 0, 2, '{"fid": 437870, "object": "user", "pfp_url": "https://i.imgur.com/tqTbUJy.jpg", "profile": {"bio": {"text": "Sweet ♥️♥️♥️.", "mentioned_profiles": []}}, "username": "rose1", "power_badge": false, "display_name": "Rose", "active_status": "inactive", "verifications": ["0x0cba4451837a60dddde3823b46be746fb9842d64"], "follower_count": 1327, "custody_address": "0x0cba4451837a60dddde3823b46be746fb9842d64", "following_count": 351, "verified_addresses": {"eth_addresses": ["0x0cba4451837a60dddde3823b46be746fb9842d64"], "sol_addresses": ["FvB2eRRbFXKPzgobmL1cHj8Aoj8vaHAB9bzhV9XB2iNR"]}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed\"}"}', NULL), - (314, '0x334d6cf0bac89dae03e7993a60f778892acaab51', 0, 1, '2024-04-30 17:48:50+00', 0, 1, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8889, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/9b2240b1-93d6-48a3-ac2b-7a0c40d3f5b2\"}","{\"url\":\"https://www.sound.xyz/gino/speed\"}"}', NULL), - (274, '0x28ccc9a9fcf705e8e5890a5db2bb80084bffae8b', 0, 1, '2024-04-30 20:58:15+00', 0, 2, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~ co-founder of DANC3\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 198, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 506, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/df13b4dd-a2f0-414b-814c-9a96d50bed3c?invite=rwPdFF\"}","{\"url\":\"https://www.sound.xyz/hgods/garden-of-glass-feat-grace-venesescaffi?referral=0xb408a9ee6332477b143c8cfe6c2c8899849a2edf&referral_source=link\"}"}', NULL), - (329, '0x4154aa1e7098889ffa9e691d0e2add721b5a81b0', 0, 1, '2024-04-30 17:43:45+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "follower_count": 30, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 123, "verified_addresses": {"eth_addresses": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/1917-mental-health-matterz?referral_source=link\"}"}', NULL), - (284, '0x9d7bd9a382820ca9a456b9cd16fc8a92cde92609', 0, 1, '2024-04-30 20:56:53+00', 0, 1, '{"fid": 380622, "object": "user", "pfp_url": "https://i.imgur.com/PMSE3xJ.jpg", "profile": {"bio": {"text": "Oh Im lovin those glasses, what r they ⁉️ \nBagchaser n music producer at /studio19 🎧🎙🎶", "mentioned_profiles": []}}, "username": "mrmindblowing", "power_badge": false, "display_name": "MINDBLOWING🎩AKA PARANOIZZ🎹", "active_status": "inactive", "verifications": ["0x622694e8a7b9d2d3f12d2614f151a500b8de49f9"], "follower_count": 30, "custody_address": "0x9810e51266fe0bc641248a04d51b1e69ee3b2495", "following_count": 100, "verified_addresses": {"eth_addresses": ["0x622694e8a7b9d2d3f12d2614f151a500b8de49f9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes?referral_source=link\"}"}', NULL), - (316, '0x02b69f86e88b1e65efc7dd905fbf8ecb026d7966', 0, 1, '2024-04-30 17:46:39+00', 0, 9, '{"fid": 364763, "object": "user", "pfp_url": "https://i.imgur.com/FFpzKnl.jpg", "profile": {"bio": {"text": "We are going to have a lot of fun here. Join /farcaster to get to know the true meaning of the digital space to infinity and beyond./lp", "mentioned_profiles": []}}, "username": "iammarhz", "power_badge": false, "display_name": "Ammar Hossein Zehi 🎩🍖", "active_status": "inactive", "verifications": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9"], "follower_count": 786, "custody_address": "0x5420e42acc6842e0d702f168affcd105221b9179", "following_count": 1613, "verified_addresses": {"eth_addresses": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/0xe7ebfc2b900b5faa879f334cab748f85cc1904d9/post/f5b6c5ba-7453-4db4-ad12-c6a0bd39b70f\"}"}', NULL), - (288, '0x657817ce1b4b9420b152e913de33f72e15cff241', 0, 1, '2024-05-01 14:08:56+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "follower_count": 30, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 123, "verified_addresses": {"eth_addresses": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/1917-mental-health-matterz?referral_source=link\"}"}', NULL), - (260, '0x3ba7742713e9a15c5de4439375197a306ea2f372', 0, 1, '2024-05-01 19:53:05+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8889, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/6efc3ef8-3487-402e-885f-36b824b693b7\"}","{\"url\":\"https://www.sound.xyz/wavedash/b-alright-feat-anamanaguchi-and-cayenne\"}"}', NULL), - (145, '0x280bf62d539fd94e6a9a024a3d2f2fae598720fc', 0, 1, '2024-05-01 16:29:32+00', 0, 1, '{"fid": 4463, "object": "user", "pfp_url": "https://openseauserdata.com/files/606bc3efb86757e349a0c4b542329273.svg", "profile": {"bio": {"text": "enjoy cats, running, bread, and a bit of w̶e̶b̶3̶ onchain data", "mentioned_profiles": []}}, "username": "tombornal", "power_badge": true, "display_name": "tombornal", "active_status": "inactive", "verifications": ["0x6acdf2954ceeecdf9e938cab389c942cad6fbd66"], "follower_count": 499, "custody_address": "0xcf8744da5b91b4f8450278d9d1f32e34c63688ef", "following_count": 340, "verified_addresses": {"eth_addresses": ["0x6acdf2954ceeecdf9e938cab389c942cad6fbd66"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1XKAeevAbxSSMuTcRT0APS?si=P80Tjr-ASuCk_-RXk2Cg-w&context=spotify%3Aplaylist%3A37i9dQZF1EIXRP9mruyaEb\"}"}', NULL), - (131, '0x4a64bed971e02aa7f52b2f8d5563586909a16b65', 0, 1, '2024-05-01 13:49:04+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/7eqdjUF8PLXcbFVGaoqGB2?si=cxE69x6WQASNNdmgb3hSsg&context=spotify%3Asearch%3Awindows%2Bang\"}"}', NULL), - (193, '0x73ba7b9318c0f4315b2fa8c68ca3cf9c8b878140', 0, 1, '2024-05-01 00:28:46+00', 0, 5, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 27966, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/16bsPgp6G3RP5x3Sl5k8aF?si=b32e9c1cbbfe46e3\"}"}', NULL), - (38225, '0x8b500d0bdbd11de42732d5e55fdf97dcfd0233bb', 0, 1, '2024-05-04 21:57:14+00', 0, 0, '{"fid": 281800, "object": "user", "pfp_url": "https://i.imgur.com/XTlVIn0.jpg", "profile": {"bio": {"text": "https://www.alfafrens.com/channel/0x091e8C4Fba1ac0DDD6Af4c7dd7B71aBe2f163154", "mentioned_profiles": []}}, "username": "cryptoone", "power_badge": false, "display_name": "one 🎩🔵🔮🍖🦄🩸🧀", "active_status": "inactive", "verifications": ["0x7fc45725d99313f16a6fec2b2e2d2890b01b49bb"], "follower_count": 421, "custody_address": "0x1887bea2917aac983f0962c46984abadf679a49f", "following_count": 658, "verified_addresses": {"eth_addresses": ["0x7fc45725d99313f16a6fec2b2e2d2890b01b49bb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ka7Zigvy1BRBkwgi8\"}"}', NULL), - (261, '0x0ceb042a2ab46538aa8f9866928ebf6ddf1102bd', 0, 1, '2024-04-30 14:10:32+00', 0, 0, '{"fid": 441339, "object": "user", "pfp_url": "https://i.imgur.com/Dm8d6SG.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nassive", "power_badge": false, "display_name": "Chinazes ", "active_status": "inactive", "verifications": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "follower_count": 187, "custody_address": "0xd64038b044bdaf77f537086fd76e0f60ad56bbc8", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "sol_addresses": []}}', '{"{\"url\":\"http://GESTALT.PROMO\"}","{\"url\":\"https://on.soundcloud.com/B4Rau\"}"}', NULL), - (301, '0xb63eda5855891c2716a2f1224f051370b9c47c9c', 0, 1, '2024-05-01 03:10:15+00', 0, 0, '{"fid": 284991, "object": "user", "pfp_url": "https://i.imgur.com/r8stWyl.png", "profile": {"bio": {"text": "A multi-disciplinary artist, composer, live coder, and video artist who creates various artworks that involve sound, visuals, motion, and code.", "mentioned_profiles": []}}, "username": "ranggapuraji", "power_badge": false, "display_name": "Rangga Purnama Aji 🎩🍖↑", "active_status": "inactive", "verifications": ["0xc627fd4bec977b2845057e64153bbdbc88ef9333"], "follower_count": 573, "custody_address": "0x17c48f0f726909054001e6f82bf372870e3eb607", "following_count": 1086, "verified_addresses": {"eth_addresses": ["0xc627fd4bec977b2845057e64153bbdbc88ef9333"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ranggapurnamaaji/dystopian-knocks?referral_source=link\"}"}', NULL), - (321, '0x57bbb751b8a4ca720c004115793e84dfe42ff27e', 0, 1, '2024-04-30 12:37:22+00', 0, 0, '{"fid": 343603, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/cb588f4220b35f600cdf998bff07f42f.gif?w=500&auto=format", "profile": {"bio": {"text": "Web3 music producer, mostly make house music and work on web3 community space", "mentioned_profiles": []}}, "username": "imamkikou14", "power_badge": false, "display_name": "Imam Kikou on the Track 14", "active_status": "inactive", "verifications": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "follower_count": 30, "custody_address": "0xc6455d5bad59f5c5c668cb209d8346f991574754", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/k14onthetrack/pikiran-kencang?referral_source=link\"}"}', NULL), - (200, '0x5094d8929d882c0bf9e12653c796ef8a705fcb17', 0, 1, '2024-04-30 23:38:13+00', 0, 1, '{"fid": 422090, "object": "user", "pfp_url": "https://i.imgur.com/frGxTaR.jpg", "profile": {"bio": {"text": "🥤 /ordinarygang 🎧 /onrepeat", "mentioned_profiles": []}}, "username": "dimmed", "power_badge": false, "display_name": "dimmed", "active_status": "inactive", "verifications": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "follower_count": 161, "custody_address": "0xd20070eb1a17e2fa8653dd4be7aa5631f31ccbbd", "following_count": 101, "verified_addresses": {"eth_addresses": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3AUdCHWEMoLcrwzsHLbkT7?si=hztA44f_Tqy0gduSrUIPpg\"}"}', NULL), - (6112, '0xc158ee79a1be2a4f65002eee3682e58d69e0ef97', 0, 1, '2024-05-04 09:12:26+00', 0, 2, '{"fid": 15631, "object": "user", "pfp_url": "https://i.imgur.com/LMuwsSJ.jpg", "profile": {"bio": {"text": "High-tech #EDM Indie Record Label / A&R : @emrahis / https://drakula.app/user/millionrecords.eth?invite=jJzPNc / \n\nhttps://linktr.ee/millionrecordsmusic", "mentioned_profiles": []}}, "username": "millionrecords", "power_badge": false, "display_name": "Million Records", "active_status": "inactive", "verifications": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "follower_count": 630, "custody_address": "0x57febaf71b8dd64e1f0abe6656925a9815bb50b9", "following_count": 74, "verified_addresses": {"eth_addresses": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "sol_addresses": ["6ZhjvqWWFtWWMz5fEsmuLqbaypWWKMo3SzYXmCKwTzcx"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d21c2588-cad8-4071-5be9-4ed054fb7a00/original\"}","{\"url\":\"https://www.sound.xyz/millionrecords/discobiotic-overdose\"}"}', NULL), - (205, '0xb5d12f75acbe830c509e196e715ee5b4afb40549', 0, 1, '2024-05-01 01:03:39+00', 0, 25, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 27966, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1fG3GhVjjllIurQSNKiQgx?si=cf22b0e2b7d641ad\"}"}', NULL), - (38153, '0xeacbf611479a42efac3a72966dd41dc06a0ae159', 0, 1, '2024-05-04 21:54:09+00', 0, 0, '{"fid": 281800, "object": "user", "pfp_url": "https://i.imgur.com/XTlVIn0.jpg", "profile": {"bio": {"text": "https://www.alfafrens.com/channel/0x091e8C4Fba1ac0DDD6Af4c7dd7B71aBe2f163154", "mentioned_profiles": []}}, "username": "cryptoone", "power_badge": false, "display_name": "one 🎩🔵🔮🍖🦄🩸🧀", "active_status": "inactive", "verifications": ["0x7fc45725d99313f16a6fec2b2e2d2890b01b49bb"], "follower_count": 421, "custody_address": "0x1887bea2917aac983f0962c46984abadf679a49f", "following_count": 658, "verified_addresses": {"eth_addresses": ["0x7fc45725d99313f16a6fec2b2e2d2890b01b49bb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x237ztJsFg3kaYvB8\"}"}', NULL), - (300, '0x50119b2d4d2c8007ca536073e7136d8b2bc90cf9', 0, 1, '2024-05-01 02:45:24+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 9, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kristiane/pins-and-needles?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (231, '0xc1ca685054df98e3fd98d34a46bd3197794f667e', 0, 1, '2024-05-01 21:51:46+00', 0, 0, '{"fid": 437066, "object": "user", "pfp_url": "https://i.imgur.com/H7rnjZ8.jpg", "profile": {"bio": {"text": "Rap Game Eddie Levert 🎶 \n\nModern Day Steve Stout 📅\n\nCo-Founder of United Realities ⚡️\n\nhere to get myself , family , and friends , in better positions 💠\n", "mentioned_profiles": []}}, "username": "interstellgretz", "power_badge": false, "display_name": "Poison Peso De’ Gretzsky ", "active_status": "inactive", "verifications": ["0xa32ac6f43458c40369385e60f704912b33312919"], "follower_count": 37, "custody_address": "0xd5e105db1d61eef6ca2be21d7442495340607415", "following_count": 69, "verified_addresses": {"eth_addresses": ["0xa32ac6f43458c40369385e60f704912b33312919"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/infinati/organized-slime?referral=0xa32ac6f43458c40369385e60f704912b33312919\"}"}', NULL), - (139, '0xf550cd75054bc31f8fa1d4d244b27e473bbe308d', 0, 1, '2024-05-01 19:33:23+00', 0, 0, '{"fid": 326765, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8cd887ab-cd2c-4b0e-3807-3f3f98ec0000/original", "profile": {"bio": {"text": "Musician 🎶\nHere for the gm’s and the friendships. \nHosting /songwriting", "mentioned_profiles": []}}, "username": "sadeghian", "power_badge": true, "display_name": "May🎩", "active_status": "inactive", "verifications": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "follower_count": 229, "custody_address": "0x8b7d3a520bd6ee6c3fa8ca07cd938ae696b063e6", "following_count": 421, "verified_addresses": {"eth_addresses": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5rUVftvUlGnfhjpyqQlSmx?si=mobMsfxCR76j1TTJiDuQWg\"}"}', NULL), - (141, '0x808ea7577a5f583dbe6458c6e7783cb5da96f948', 0, 1, '2024-05-01 16:08:33+00', 0, 5, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 408, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 520, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/30GGIrrJdSNtecPiFcVP5O?si=jgMrXX_QTr6WbUcD3INapA\"}"}', NULL), - (79, '0x73432d37ca5b64e299855ce019451cdb4e751529', 955, 1, '2024-04-29 20:31:09+00', 0, 9, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3516, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 356, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0vjeOZ3Ft5jvAi9SBFJm1j?si=C1E-DpfqQX2eM5R6JXx_gg&context=spotify%3Aplaylist%3A37i9dQZF1Fa1IIVtEpGUcU\"}"}', NULL), - (199, '0xdd484b86c6a6a2b245d647d8f1cd5a2129f8604d', 0, 1, '2024-05-01 04:47:00+00', 0, 4, '{"fid": 382890, "object": "user", "pfp_url": "https://i.imgur.com/m3mkucY.jpg", "profile": {"bio": {"text": "Transdisciplinary artist, working with traditional and digital painting, 2D animation, 3D and music // she/her — https://thehug.xyz/artists/qabqabqab", "mentioned_profiles": []}}, "username": "qabqabqab", "power_badge": true, "display_name": "qabqabqab", "active_status": "inactive", "verifications": ["0x9904ceddba825a18bdf7e1984a886d23394ccbcc"], "follower_count": 389, "custody_address": "0xae4080212a7e3aba161fd86b9afc8f7e4bbdc14e", "following_count": 411, "verified_addresses": {"eth_addresses": ["0x9904ceddba825a18bdf7e1984a886d23394ccbcc"], "sol_addresses": ["HsFxoPHwGWHXyZ3sSekaZArV8gQW9BGnAcc8j2V5CvUu"]}}', '{"{\"url\":\"https://open.spotify.com/track/3QI5bIozef0HZ1kJnA2RdT?si=nh8bIyRqTmanWeUAPuPNCA\"}"}', NULL), - (266, '0xac1af66ad8a602055f8ffcbb1f0879d06d2dede7', 0, 1, '2024-05-01 16:38:02+00', 0, 1, '{"fid": 466842, "object": "user", "pfp_url": "https://i.imgur.com/M09TLX8.jpg", "profile": {"bio": {"text": "Searching for Kurtz…", "mentioned_profiles": []}}, "username": "captwillard", "power_badge": false, "display_name": "Benjamin L. Willard", "active_status": "inactive", "verifications": ["0x83de53dec1ba4c9a3d3d9ed723c55dd2f9356c06"], "follower_count": 9, "custody_address": "0x8bff6d98a0cdec410204d43ba2cb7d8a0d76014e", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x83de53dec1ba4c9a3d3d9ed723c55dd2f9356c06"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed?referral=0x83de53dec1ba4c9a3d3d9ed723c55dd2f9356c06&referral_source=link\"}","{\"url\":\"http://sound.xyz\"}"}', NULL), - (371257, '0x0b4231de4e0d5452c0557a640e819eb2a53efd64', 0, 1, '2024-05-06 03:32:46+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 정준일 - 고백 by daykim93 on #SoundCloud https://on.soundcloud.com/ZxqEW\"}"}', NULL), - (229, '0x2492c163901c043c0ea88a6e586be151869add25', 0, 1, '2024-05-01 20:59:46+00', 0, 1, '{"fid": 440413, "object": "user", "pfp_url": "https://i.imgur.com/HBWQ07m.jpg", "profile": {"bio": {"text": "Americana singer-songwriter | Onchain and on the road 🪨💿 Play “Miles and Miles” the game! 🐎 https://milesandmiles.raeisla.com", "mentioned_profiles": []}}, "username": "raeisla", "power_badge": false, "display_name": "Rae Isla", "active_status": "inactive", "verifications": ["0xbe5db9e33a2309898d44d9f7a6ee9229eb4d5415"], "follower_count": 28, "custody_address": "0x0f09352baa595fc4b9c179462e30db9b4c346698", "following_count": 71, "verified_addresses": {"eth_addresses": ["0xbe5db9e33a2309898d44d9f7a6ee9229eb4d5415"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52b26736-7a7a-49e1-dd50-fead4e228500/original\"}","{\"url\":\"https://www.sound.xyz/raeisla/miles-and-miles\"}"}', NULL), - (165, '0x770c874ab225faf0772107f46f48961d0f644fab', 0, 1, '2024-05-01 16:13:47+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/2LZ2CNbcbJrwh53pitRgom?si=DNNmTr9cTuS--LLGm_3WFQ&context=spotify%3Asearch%3Abeach%2Bhouse%2Bsilver%2Bsouls\"}"}', NULL), - (308, '0x7c37ef0b022ed022878146692163a49332283ce2', 0, 1, '2024-05-01 06:44:26+00', 0, 0, '{"fid": 192420, "object": "user", "pfp_url": "https://i.imgur.com/nqBlnBV.png", "profile": {"bio": {"text": "GM PURR CULTURE\nLife like Love\n", "mentioned_profiles": []}}, "username": "lightmode", "power_badge": false, "display_name": "lightmode", "active_status": "inactive", "verifications": ["0x4e16c6d4ab2648b18f921ecf5ee2a8c2eba78f31"], "follower_count": 416, "custody_address": "0x08c440e113efa4aa7ee6a966712354311480830e", "following_count": 524, "verified_addresses": {"eth_addresses": ["0x4e16c6d4ab2648b18f921ecf5ee2a8c2eba78f31"], "sol_addresses": ["8vX1bSWzE69JJ7m7GhXT28gmkiKXWagEY5G8wUcysWNt"]}}', '{"{\"url\":\"http://sound.xyz\"}","{\"url\":\"https://frames.neynar.com/f/d856c3c1/20f3135f\"}"}', NULL), - (124, '0x8406c304f250922b9a6f5c4643d61edd9e916da6', 0, 1, '2024-05-01 15:18:52+00', 0, 2, '{"fid": 386033, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc22dd9a-a03a-44fd-6684-a283b4933500/original", "profile": {"bio": {"text": "Crypto researcher/Frame developer\nFrom DEG server", "mentioned_profiles": []}}, "username": "chiffon-m", "power_badge": false, "display_name": "sifonM🎩🍖🔵🟢", "active_status": "inactive", "verifications": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "follower_count": 591, "custody_address": "0xecf66086803983f13e85754591fedc58891fd70c", "following_count": 607, "verified_addresses": {"eth_addresses": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/618O0GQtQ58O1lZDxPblNb?si=L9YHJ_ZkRYqlFRWJ-no6sw\"}"}', NULL), - (127, '0xd09c110639d17daaf60a23b5d797782c63510fe5', 0, 1, '2024-05-01 05:16:50+00', 0, 0, '{"fid": 7559, "object": "user", "pfp_url": "https://i.imgur.com/dvPVROp.jpg", "profile": {"bio": {"text": "experiments and stories for people curious enough to read: paragraph.xyz/@oversky", "mentioned_profiles": []}}, "username": "rush", "power_badge": true, "display_name": "rushil", "active_status": "inactive", "verifications": ["0x503f9fe2429489bfe0ce730ea2b221f470f4936d"], "follower_count": 248, "custody_address": "0xd59521e65418d7fe75a32ad043ac278aded03dc8", "following_count": 168, "verified_addresses": {"eth_addresses": ["0x503f9fe2429489bfe0ce730ea2b221f470f4936d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=lCDST_sJR7uNJ3TdijG33w\"}"}', NULL), - (243, '0xbf3ca053762d057cc249f7943bb28c176325154a', 0, 1, '2024-05-01 18:52:07+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8889, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/9ecd2d70-2e49-4dff-90d9-191f55f63dc8\"}","{\"url\":\"https://www.sound.xyz/lyrah/coming-back\"}"}', NULL), - (186, '0x90f13701e8e929fa23531ed76930e68290e1ca09', 0, 1, '2024-05-01 02:19:42+00', 0, 1, '{"fid": 412298, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/65b413bb-4011-48e1-261b-e54fe21e0000/original", "profile": {"bio": {"text": "decentralized thoughts", "mentioned_profiles": []}}, "username": "gtscottyyy", "power_badge": true, "display_name": "gtscottyyy 🎩", "active_status": "inactive", "verifications": ["0x3566d823b7196fd56a834530b7f0a11d8de7bdf9"], "follower_count": 584, "custody_address": "0x20d7d879ee7aa0a4c580d3e94424bf27acab4e6f", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x3566d823b7196fd56a834530b7f0a11d8de7bdf9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6iV7QmMUPadq6osYqSM2wF?si=7NDJz_CWTWmEY-rsovrAqQ\"}"}', NULL), - (270, '0x3f241739c607f4e9e8a0adefa8f772532eca1e31', 0, 1, '2024-05-01 08:46:29+00', 0, 0, '{"fid": 284991, "object": "user", "pfp_url": "https://i.imgur.com/r8stWyl.png", "profile": {"bio": {"text": "A multi-disciplinary artist, composer, live coder, and video artist who creates various artworks that involve sound, visuals, motion, and code.", "mentioned_profiles": []}}, "username": "ranggapuraji", "power_badge": false, "display_name": "Rangga Purnama Aji 🎩🍖↑", "active_status": "inactive", "verifications": ["0xc627fd4bec977b2845057e64153bbdbc88ef9333"], "follower_count": 573, "custody_address": "0x17c48f0f726909054001e6f82bf372870e3eb607", "following_count": 1086, "verified_addresses": {"eth_addresses": ["0xc627fd4bec977b2845057e64153bbdbc88ef9333"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e16313c-c2f2-4e86-4e52-92bf941b8300/original\"}","{\"url\":\"https://www.sound.xyz/ranggapurnamaaji/fighter?referral_source=link\"}"}', NULL), - (37985, '0x28d4f2bb8fd606f19f4f139ac33f053016a75d1a', 0, 1, '2024-05-04 21:53:01+00', 0, 0, '{"fid": 208481, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/450a859e-80a1-4e70-bf71-17c4c159ca00/rectcrop3", "profile": {"bio": {"text": "💠father\n• /tattoo \n• psychonaut \n• creative\n• visual mathematic flow💠\n\n\nwww.accsemblecorporis.com >remember the future \n/medicinemusic", "mentioned_profiles": []}}, "username": "accsemble", "power_badge": true, "display_name": "accsemble🎩🐲", "active_status": "inactive", "verifications": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "follower_count": 329, "custody_address": "0xb0d6aff9edda81016e202ca85d7b9fcefeb82f70", "following_count": 182, "verified_addresses": {"eth_addresses": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YBCsLaFdFpLgPoLg8\"}"}', NULL), - (119, '0x6c11ec73a7dad81cf7dbc9653ecbc24ec6c64d54', 0, 1, '2024-05-01 22:41:39+00', 0, 0, '{"fid": 387795, "object": "user", "pfp_url": "https://i.imgur.com/aEmZKh4.jpg", "profile": {"bio": {"text": "In the constant search to learn, in the constancy and discipline to do things well, to help and support this community project, we continue to build together th", "mentioned_profiles": []}}, "username": "limonadamix", "power_badge": false, "display_name": "Limonada Mix", "active_status": "inactive", "verifications": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "follower_count": 297, "custody_address": "0x0856dc293d54657cb53de5060a58c1b938d614c8", "following_count": 280, "verified_addresses": {"eth_addresses": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0LZy30mVmxqUpdQmaXKXBd?si=39w7gtBiQMy4EW_huCtbPQ\"}"}', NULL), - (202, '0x300a85a2af2e6dbd8057f2f17ecebb6d45e7bad3', 0, 1, '2024-05-01 02:05:23+00', 0, 7, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/afa71b27-ad76-436b-7b49-9fb86ea5db00/original\"}","{\"url\":\"https://open.spotify.com/track/2L93TdW2GMue1H2zlkt30F?si=eXaCrbKrTP6sTJsGuqUQew&context=spotify%3Aalbum%3A2Aiv0ThDpFa7lqHphR6MN5\"}"}', NULL), - (302, '0x15498b713e6ec4e32f380448dcb5bc569a3b3591', 0, 1, '2024-05-01 14:06:23+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "follower_count": 30, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 123, "verified_addresses": {"eth_addresses": ["0x9a6f5f349fc7266e957e68912247d2bdf5f44d20"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/1917-mental-health-matterz?referral_source=link\"}"}', NULL), - (295, '0x4351baa4cd237aa25ae0dc6594cc5c2befb54e03', 0, 1, '2024-05-01 01:37:28+00', 0, 1, '{"fid": 235900, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiglfacu6w2lq4q4awbkzgm7hcys574kxb5sbxnaumgx6vtodnwe5m", "profile": {"bio": {"text": "Let''s fucking goooo https://t.me/airdropsepuh", "mentioned_profiles": []}}, "username": "sepuhh", "power_badge": false, "display_name": "Sepuh Community 🍖🔄🎩", "active_status": "inactive", "verifications": ["0xeb0b24f85675204b8f33cf022ef2664f0df5a519"], "follower_count": 1393, "custody_address": "0x0940c7de8ed6033ed7e3dcb456a882ae323228e3", "following_count": 2216, "verified_addresses": {"eth_addresses": ["0xeb0b24f85675204b8f33cf022ef2664f0df5a519"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94fa99c6-b571-46ab-191f-1ae5edea3f00/original\"}","{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0xeb0b24f85675204b8F33cF022EF2664f0DF5A519&referral_source=link\"}"}', NULL), - (142, '0xc83d6199b15de273bc1f29670d8ed5a994f5a758', 0, 1, '2024-05-01 14:07:34+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6d0e2b0-47ac-48ba-5a16-c0f187a70000/original\"}","{\"url\":\"https://open.spotify.com/track/0tlreqynVQ6CJsWIh5K8Sw?si=D4_fW4ncRXyS4ZNKbwyZ3Q\"}"}', NULL), - (6803, '0x8d93ed20ece7508c1cebae2ceb2f5ce2c710557e', 0, 1, '2024-05-04 09:42:59+00', 0, 0, '{"fid": 475244, "object": "user", "pfp_url": "https://i.imgur.com/aQJlstV.jpg", "profile": {"bio": {"text": "I am an electrical engineer, and I work with electric vehicles.", "mentioned_profiles": []}}, "username": "miskaaltonen", "power_badge": false, "display_name": "Miska Aaltonen", "active_status": "inactive", "verifications": ["0xd59712dca7127a91ab99ca5136fee56b4cb832f7"], "follower_count": 3, "custody_address": "0xd91699d57b19312aed3abc42cf7379cf12d8e090", "following_count": 74, "verified_addresses": {"eth_addresses": ["0xd59712dca7127a91ab99ca5136fee56b4cb832f7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2R4zEYaFpPbKxBbQceH6yw?si=DV0MTXUmSuCVkrGZEJ6QIw\"}"}', NULL), - (88482, '0x43e5cd95987ac4b9fcb7fc692790b872e5c6f38b', 0, 1, '2024-05-05 00:41:11+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EFCth\"}"}', NULL), - (3229, '0xc88febcbb5e51cacbfb8be738b2268275d64341f', 0, 1, '2024-04-30 05:47:32+00', 0, 3, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4fpxnJGDWFxjGvLJOqPPt8?si=bc580cd356f84699\"}"}', NULL), - (228, '0x320258608df89930d96cd17381bfef20af722bb1', 0, 1, '2024-05-01 19:03:09+00', 0, 1, '{"fid": 504150, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7647417e-862d-4f8c-8ee4-1221a746f400/rectcrop3", "profile": {"bio": {"text": "Innovator. Artist. Merging Creativity with Tech. Creating opportunities using AI & crypto for Creatives.\nKnoCadia Labs \n", "mentioned_profiles": []}}, "username": "degem", "power_badge": false, "display_name": "Rishi G", "active_status": "inactive", "verifications": ["0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9", "0xf8998ef0dea767d7335907a75213f47a8f7152df", "0x2213b580914ee4a07a80b3c7e911950165fcad6b"], "follower_count": 15, "custody_address": "0x6e455fc8363ce39457de24bf91cf4b69d86dede6", "following_count": 84, "verified_addresses": {"eth_addresses": ["0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9", "0xf8998ef0dea767d7335907a75213f47a8f7152df", "0x2213b580914ee4a07a80b3c7e911950165fcad6b"], "sol_addresses": ["8DUv4T787gfxuduz5DnRVCiM86gu7wfUgaTj6R8h4NNy"]}}', '{"{\"url\":\"https://www.sound.xyz/noculture/pump?referral=0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9\"}"}', NULL), - (161, '0x99483480ad276dbf69ea10517513169c025ee460', 0, 1, '2024-05-01 21:56:45+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/2AX6Ua0cY6MM2da1KMrE3t?si=225i02BySbu1H29DZ5HuMg&context=spotify%3Aartist%3A6nHVyil9BKXe9Nv2C0131i\"}"}', NULL), - (271, '0xbcdd7df55fd4e2f41e69e8f16c169983a8ebe93c', 0, 1, '2024-05-01 07:42:48+00', 0, 0, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 285, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/molly?referral=0xaa466103793319fc3d6c7420d77e6e7cf586c877\"}"}', NULL), - (3253, '0x2b85dffa1b36b8a3fb15f3e6ca1d9cc0d08c480c', 0, 1, '2024-04-30 00:06:56+00', 0, 3, '{"fid": 431629, "object": "user", "pfp_url": "https://i.imgur.com/M5O5Mha.jpg", "profile": {"bio": {"text": "I''m a passionate Apple Software Developer that sees in App Development an opportunity to create experiences that can really change people''s lives for the better", "mentioned_profiles": []}}, "username": "giancarlodc", "power_badge": false, "display_name": "Giancarlo Cavalcante", "active_status": "inactive", "verifications": ["0x6d9e53347296b19450aa85378cf6acee137a25be"], "follower_count": 67, "custody_address": "0x814265ae62b2d87dd4e07458eb7991e118b5934d", "following_count": 117, "verified_addresses": {"eth_addresses": ["0x6d9e53347296b19450aa85378cf6acee137a25be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3p02ss31ywBaZcqh7Vq9sx\"}"}', NULL), - (292, '0x07e0097c9c70ef04d9d69fcfc97becc8d008f7b0', 0, 1, '2024-05-01 10:58:13+00', 0, 0, '{"fid": 420372, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiglk6dbzkfqx6thrillw5p465yceruq6d3xqteu2rxc4ebjzwjhu4", "profile": {"bio": {"text": "hello plis folow me ro get notification on your", "mentioned_profiles": []}}, "username": "mentosxyz", "power_badge": false, "display_name": "Mentos.eth", "active_status": "inactive", "verifications": ["0x0c1ed0f872d8e3aee104ade99b21d301df03aa17"], "follower_count": 164, "custody_address": "0x0c1ed0f872d8e3aee104ade99b21d301df03aa17", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x0c1ed0f872d8e3aee104ade99b21d301df03aa17"], "sol_addresses": ["E3RNRaBH95We7S4UkfnS7QRViFcAYwwvCRG8i645ewfP"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x0c1ed0f872d8e3aee104ade99b21d301df03aa17&referral_source=link\"}"}', NULL), - (38152, '0x65d272657deee331b4f0b5dc5ea5527c780d56c7', 0, 1, '2024-05-04 21:54:06+00', 0, 1, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jil-nyc/all-your-words?si=23e22eca7fe94f8394b9e081299c739e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (304, '0x76901582082e9f25f19606998a392e5e0d1bed20', 0, 1, '2024-05-01 13:10:38+00', 0, 0, '{"fid": 23472, "object": "user", "pfp_url": "https://i.imgur.com/kZDOyHt.jpg", "profile": {"bio": {"text": "I''m a little teapot who didn''t fill out my bio", "mentioned_profiles": []}}, "username": "akiphumi", "power_badge": false, "display_name": "akiphumi ✈️", "active_status": "inactive", "verifications": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "follower_count": 150, "custody_address": "0xd3b4b2a5eb9c49cde9b11050c3c61ea3d81b7507", "following_count": 172, "verified_addresses": {"eth_addresses": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "sol_addresses": ["EmXwqdQXcT7H8QGFaxNrcuCLtEV4TEEVCqNoJDCj59Eq"]}}', '{"{\"url\":\"https://www.sound.xyz/kristiane/pins-and-needles?referral=0x95045076fc93a14a4e9b576599479cb4f58a1b11&referral_source=link\"}"}', NULL), - (3109, '0xf54cb55777232a571331b76ab55fef59b819b41d', 0, 1, '2024-05-02 03:51:37+00', 0, 0, '{"fid": 316982, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c87332a5-f195-4ec4-af59-61823e881c00/original", "profile": {"bio": {"text": "I sell ice creams in Zora\n", "mentioned_profiles": []}}, "username": "whoisponyboy", "power_badge": false, "display_name": "PONY BOY 🎠", "active_status": "inactive", "verifications": ["0xd494fc124cbf23fe20c6ac739a1e06b9f44968fc", "0x4b764659c758928aa6b8b09e703618d46d2136b5"], "follower_count": 194, "custody_address": "0x73b17723071c45a0d4292a59efe93679ae845564", "following_count": 301, "verified_addresses": {"eth_addresses": ["0xd494fc124cbf23fe20c6ac739a1e06b9f44968fc", "0x4b764659c758928aa6b8b09e703618d46d2136b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/083VTM4yXnNrspPRcVadTm?si=nk1F-_csTg2pOaIgdMjRqg\"}"}', NULL), - (248, '0x5ca7c3dab342b748bb538a76278a23fbe2ff532d', 0, 1, '2024-05-01 12:40:49+00', 0, 2, '{"fid": 262294, "object": "user", "pfp_url": "https://i.imgur.com/kw6GvaE.jpg", "profile": {"bio": {"text": "I make art with computer algorithms https://byapa.net/work | engineer /// enjoying so much sharing explorations\n\nhttps://linktr.ee/BerkeYapa", "mentioned_profiles": []}}, "username": "yapa", "power_badge": false, "display_name": "Berke Yapa", "active_status": "inactive", "verifications": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "follower_count": 262, "custody_address": "0xce0d740e0af265d95837549b190bb3cc5586ab38", "following_count": 328, "verified_addresses": {"eth_addresses": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/clovis/kasheme-living-room-session-sept22?si=9cb03a3907864b6893c3d9fbc502cdf6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (287, '0x8b6db837d98f25632bf02560e83bf52e5f796a8c', 0, 1, '2024-05-01 04:12:56+00', 0, 0, '{"fid": 271891, "object": "user", "pfp_url": "https://i.imgur.com/UPrlw49.jpg", "profile": {"bio": {"text": "I''m Mr Meerkat - Each morning, as the sun comes up, I emerge and begin looking for food.", "mentioned_profiles": []}}, "username": "mrmeerkat", "power_badge": false, "display_name": "Mr Meerkat", "active_status": "inactive", "verifications": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "follower_count": 232, "custody_address": "0x2f5b92d58892bf7f4a93ba30d05bae6d512eb84c", "following_count": 497, "verified_addresses": {"eth_addresses": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "sol_addresses": ["6z85jgsYieCXPbxmhfN2hG9QgtxYhkX26216issd8zcp"]}}', '{"{\"url\":\"https://www.sound.xyz/mrmeerkat.eth/post/8b73ab88-3a26-4dc9-b2d1-1af682ef8e5a\"}"}', NULL), - (226, '0x75d8fe87bc5f41152aba4371c7a47fb37e7abeb6', 0, 1, '2024-05-01 17:31:19+00', 0, 7, '{"fid": 19840, "object": "user", "pfp_url": "https://i.imgur.com/EdN9yds.jpg", "profile": {"bio": {"text": "Where fans become collectors.", "mentioned_profiles": []}}, "username": "invinmusic", "power_badge": true, "display_name": "Invest in Music", "active_status": "inactive", "verifications": ["0x86958a1219ab83c92779285efeb0d9dc186e24c0"], "follower_count": 3499, "custody_address": "0xdfdb0fefb817ca4c72ab8b0eae5d7fa2b4a447ba", "following_count": 3, "verified_addresses": {"eth_addresses": ["0x86958a1219ab83c92779285efeb0d9dc186e24c0"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/87cf7668-bd2c-428b-86a8-0d64003260fd\"}"}', NULL), - (3108, '0xe0a5f864d3d8098b9930d257d5357401bd67bba2', 0, 1, '2024-05-02 04:26:23+00', 0, 1, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley (nearby) Farcon", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 456, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 146, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0UqKPaKqC3tWU4o8BB7owl?si=2QInkf7kQMWhXESanepn5g\"}"}', NULL), - (118, '0xfa3f96a08f649596ffa07882d3cb9a0ec7a56b77', 0, 1, '2024-05-01 16:06:46+00', 0, 5, '{"fid": 279394, "object": "user", "pfp_url": "https://i.imgur.com/t5iiurh.jpg", "profile": {"bio": {"text": "Advertising by day, generative/AI art director & collector by night. Easygoing Canadian dude from the early 80’s. https://linktr.ee/fauxjebus", "mentioned_profiles": []}}, "username": "fauxjebus", "power_badge": true, "display_name": "Brad Connell", "active_status": "inactive", "verifications": ["0x854e84eb6857e8cfb68c7ae1cb1368260a4fc581"], "follower_count": 368, "custody_address": "0x3efdab41eee18762422f3b7e835f55bca50d5e76", "following_count": 417, "verified_addresses": {"eth_addresses": ["0x854e84eb6857e8cfb68c7ae1cb1368260a4fc581"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ab428b3-eb60-4362-27b7-3f09e7189d00/original\"}","{\"url\":\"https://open.spotify.com/track/6S55C80YzjhSrCRRd1p80b?si=49d201eacf214e8d\"}"}', NULL), - (3113, '0x9255bb295568bb697a1fb12b047f8f2fdcea202c', 0, 1, '2024-05-02 02:09:47+00', 0, 0, '{"fid": 469694, "object": "user", "pfp_url": "https://i.imgur.com/fRj2PS1.jpg", "profile": {"bio": {"text": "Artist, Architect, Illustrator, Graphic Designer & NFT Creator.\nIt''s my honor you are visiting my page & Hope you feel good here :)\nlinktr.ee/shahriarhamekhani", "mentioned_profiles": []}}, "username": "shhamekhani", "power_badge": false, "display_name": "Shahriar Hamekhani", "active_status": "inactive", "verifications": ["0x5ee2006e03e0bfe49e0b75b573b608eb2b3aa800"], "follower_count": 264, "custody_address": "0xbb70cc9d585ec869783504c04087516b6f6d578b", "following_count": 586, "verified_addresses": {"eth_addresses": ["0x5ee2006e03e0bfe49e0b75b573b608eb2b3aa800"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4u9CRfOM7nfUlTUWk5U3j6\"}"}', NULL), - (297, '0x988e85bdfb466b99b912d1157afb733427feca28', 0, 1, '2024-05-01 02:24:12+00', 0, 2, '{"fid": 437870, "object": "user", "pfp_url": "https://i.imgur.com/tqTbUJy.jpg", "profile": {"bio": {"text": "Sweet ♥️♥️♥️.", "mentioned_profiles": []}}, "username": "rose1", "power_badge": false, "display_name": "Rose", "active_status": "inactive", "verifications": ["0x0cba4451837a60dddde3823b46be746fb9842d64"], "follower_count": 1327, "custody_address": "0x0cba4451837a60dddde3823b46be746fb9842d64", "following_count": 351, "verified_addresses": {"eth_addresses": ["0x0cba4451837a60dddde3823b46be746fb9842d64"], "sol_addresses": ["FvB2eRRbFXKPzgobmL1cHj8Aoj8vaHAB9bzhV9XB2iNR"]}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed\"}"}', NULL), - (156, '0xee69804594f2035d142467256edd2f5516f1036d', 0, 1, '2024-05-01 19:29:29+00', 0, 6, '{"fid": 18570, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiews43un3cmkvbzhpepgfaqdgugjmj6vsymmbd3yh4xas4cs3wc5y", "profile": {"bio": {"text": "👨🏻‍🍳 Better cook than I look 👨🏻‍🍳 \n🧪 Dada scientist 🧪 \n📐 Student of design 📐 \n👾 👾 👾 👾 👾 \n\nco-hosting /ai-art", "mentioned_profiles": []}}, "username": "qt", "power_badge": true, "display_name": "daivd 🎩👾🧢 ", "active_status": "inactive", "verifications": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "follower_count": 25102, "custody_address": "0xc4e4a021fef5b18fb0fd8c0ad91e34e246b614a8", "following_count": 1397, "verified_addresses": {"eth_addresses": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "sol_addresses": ["B7k6RCuunXhqWNWunSL3PjZoEaHz6REtyJPW5i1cLRGV"]}}', '{"{\"url\":\"https://open.spotify.com/track/2Mo2LId3mdEwospaatQtU7?si=5j2WKWHbQ-CKhbA06vJdYg&context=spotify%3Aalbum%3A6w8iiFvC6BFs6KWhC8v1DA\"}"}', NULL), - (207, '0xcf0c08b6fca7be8b7a6099a4aa943999da41d404', 0, 1, '2024-05-01 02:54:31+00', 0, 0, '{"fid": 14336, "object": "user", "pfp_url": "https://i.imgur.com/IL4mkyE.jpg", "profile": {"bio": {"text": "Imagination Factory//\ntrizton.com", "mentioned_profiles": []}}, "username": "trizton", "power_badge": false, "display_name": "Trizton 🎩", "active_status": "inactive", "verifications": ["0xae1a641d4c0270b7a85959d6f6495a721deb1be7"], "follower_count": 317, "custody_address": "0xbd350597e8f4b2cc26d69f51266c510dd396f760", "following_count": 362, "verified_addresses": {"eth_addresses": ["0xae1a641d4c0270b7a85959d6f6495a721deb1be7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0k7UxTqp57Q4oXMaYMTO9P?si=37j94i-0Q_GDnF-lAX-3FA&context=spotify%3Aalbum%3A1QYACZF6ijryY2dHq71erf\"}"}', NULL), - (197, '0x8813c54c7f7dc7466d7377144012b92b14b235f7', 0, 1, '2024-05-01 01:12:35+00', 0, 0, '{"fid": 226915, "object": "user", "pfp_url": "https://i.imgur.com/go744Gh.jpg", "profile": {"bio": {"text": "host of /justbuild | We can create something great here", "mentioned_profiles": []}}, "username": "worden", "power_badge": false, "display_name": "the", "active_status": "inactive", "verifications": ["0x67e20ab529cc1dd8d389fadf8cee13042b9fed54", "0xbd7bb0140b954427650868009d0b0b65ff7b4480"], "follower_count": 243, "custody_address": "0x954cf24ba75a01c1beac5d2f0856da167b88b51f", "following_count": 198, "verified_addresses": {"eth_addresses": ["0x67e20ab529cc1dd8d389fadf8cee13042b9fed54", "0xbd7bb0140b954427650868009d0b0b65ff7b4480"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0xOFqoCyGiLFgGAXD73xtC?si=wKeUCm4TTgmqqE_kxNEWUQ\"}"}', NULL), - (3213, '0xdd55af419147d0cf3c4618766c9f626190fc217d', 0, 1, '2024-04-30 00:50:17+00', 0, 0, '{"fid": 18262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d18adbfc-1bd6-4bab-0887-858288a92900/rectcrop3", "profile": {"bio": {"text": "max bidding vibes and replies /replyguys\n\nlore /4you", "mentioned_profiles": []}}, "username": "droo4you", "power_badge": true, "display_name": "droober🔵🍖🗣️🎩☮️", "active_status": "inactive", "verifications": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "follower_count": 2153, "custody_address": "0x3a38f04a1b56ded7d9c7548a4c6fb206235ca8aa", "following_count": 771, "verified_addresses": {"eth_addresses": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3nqvOh00HVN8bqSHYdbNG6?si=mimhhjYBQl6MpM-tM6ihLw\"}"}', NULL), - (285, '0x9c3ac19e4b186011a840d58eff8b2637bff83445', 0, 1, '2024-05-01 05:36:16+00', 0, 0, '{"fid": 188421, "object": "user", "pfp_url": "https://zerion-dna.s3.us-east-1.amazonaws.com/onepointo/45485468fe86dc228214abe31b84c43362265a15.png", "profile": {"bio": {"text": "Music nfts! \nhttps://www.sound.xyz/playlist/2bb58385-0745-4d0e-a80a-ef0fe58a18f4 ", "mentioned_profiles": []}}, "username": "777999", "power_badge": false, "display_name": "Thanh 🔴🎩🔵", "active_status": "inactive", "verifications": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "follower_count": 593, "custody_address": "0xbc81245772f4d0c531ad1715407e37be9bbe43fd", "following_count": 713, "verified_addresses": {"eth_addresses": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/gardenx/sara-phillips-imagine-w-tk?referral=0xa41a9630b65e4ea1216211ef99c5b2b1db069c85&referral_source=link\"}"}', NULL), - (1096873, '0xeccf3ea762e65784cc0ba9abef3398df17269327', 0, 1, '2024-05-07 16:03:28+00', 0, 2, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 381, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 557, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/7vkz9j53uvst/paul-kim-2-ost-part?si=b2eb3bc890d04748ba547802be902a8a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3122, '0xc75de611dab6ddef1fa63fcc321c197429b6912e', 0, 1, '2024-05-02 02:15:06+00', 0, 1, '{"fid": 387795, "object": "user", "pfp_url": "https://i.imgur.com/aEmZKh4.jpg", "profile": {"bio": {"text": "In the constant search to learn, in the constancy and discipline to do things well, to help and support this community project, we continue to build together th", "mentioned_profiles": []}}, "username": "limonadamix", "power_badge": false, "display_name": "Limonada Mix", "active_status": "inactive", "verifications": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "follower_count": 297, "custody_address": "0x0856dc293d54657cb53de5060a58c1b938d614c8", "following_count": 280, "verified_addresses": {"eth_addresses": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5m55CKIZiyPTuFBGW0wwlD?si=KAbiM_ZKRhuLRJ3YHjV-uA\"}"}', NULL), - (296, '0x3a4d09988f675fad2b0e19dc611b83870b811d76', 1010, 1, '2024-05-01 09:19:19+00', 0, 10, '{"fid": 386794, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a829aee-bcdc-45eb-c1ba-b19708648f00/original", "profile": {"bio": {"text": "I support artists and builders on warpcast ↑↑↑", "mentioned_profiles": []}}, "username": "pawelresearch", "power_badge": false, "display_name": "pawel_research ", "active_status": "inactive", "verifications": ["0x679744463c49670803c73f6698c79a1851640484"], "follower_count": 622, "custody_address": "0x0e8824c557e7042778094d8d771077ecc7767f0e", "following_count": 790, "verified_addresses": {"eth_addresses": ["0x679744463c49670803c73f6698c79a1851640484"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x679744463c49670803c73f6698c79a1851640484&referral_source=link\"}"}', NULL), - (3131, '0xf918def960ada38bc562417d9db0b6b08872537d', 0, 1, '2024-05-02 02:25:22+00', 0, 3, '{"fid": 316982, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c87332a5-f195-4ec4-af59-61823e881c00/original", "profile": {"bio": {"text": "I sell ice creams in Zora\n", "mentioned_profiles": []}}, "username": "whoisponyboy", "power_badge": false, "display_name": "PONY BOY 🎠", "active_status": "inactive", "verifications": ["0xd494fc124cbf23fe20c6ac739a1e06b9f44968fc", "0x4b764659c758928aa6b8b09e703618d46d2136b5"], "follower_count": 194, "custody_address": "0x73b17723071c45a0d4292a59efe93679ae845564", "following_count": 301, "verified_addresses": {"eth_addresses": ["0xd494fc124cbf23fe20c6ac739a1e06b9f44968fc", "0x4b764659c758928aa6b8b09e703618d46d2136b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3GSrS6tJKdZ1fQdIfQ6yg5?si=5r7EN-owQ-SCEvSq5ZXLYA\"}"}', NULL), - (7016, '0x1df7cd48f8d474d9a580fe8614bc8cccf3aeb8d7', 0, 1, '2024-05-04 15:03:08+00', 0, 3, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product at grayscale.com 🏴‍☠️ all opines my own", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌹 Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 21965, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 641, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/6EgK65rlpSmPbw8V1Re6ZI?si=JyqhzSO_QheHOnVAUu6TAg\"}"}', NULL), - (3284, '0xb5c25ecd11d345f23f038a731e8c7533103441d9', 0, 1, '2024-04-29 15:27:10+00', 0, 7, '{"fid": 8587, "object": "user", "pfp_url": "https://i.imgur.com/aHLLlQ1.jpg", "profile": {"bio": {"text": "Building onchain commerce @gogh\n/mall /art-exchange /sneaker-exchange", "mentioned_profiles": []}}, "username": "manuelmaccou.eth", "power_badge": true, "display_name": "See you at FarCon 🤙", "active_status": "inactive", "verifications": ["0x4a6737da9668d09ace702c3ff5e0da33a84d28f7"], "follower_count": 22962, "custody_address": "0x35d6e84de62a5050c227370fc2442cd14bb4cc98", "following_count": 1523, "verified_addresses": {"eth_addresses": ["0x4a6737da9668d09ace702c3ff5e0da33a84d28f7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/21f4TjwWXbnqg8d5R6oq8Y?si=KNHXzMkxRiu09toxFw0AtQ&context=spotify%3Aalbum%3A6ooBxhsOVedpX4zPTCyL86\"}"}', NULL), - (279, '0xc10df1659e665a09d632765626712944c72a06e0', 10, 1, '2024-05-01 06:48:24+00', 0, 6, '{"fid": 333517, "object": "user", "pfp_url": "https://i.imgur.com/JMghaVJ.jpg", "profile": {"bio": {"text": "Crypto fan from Ukraine", "mentioned_profiles": []}}, "username": "kraken8.eth", "power_badge": false, "display_name": "Kraken", "active_status": "inactive", "verifications": ["0xe14ca0632c5430abddd40ba077da5fba8821a950"], "follower_count": 160, "custody_address": "0x8a608e9617d24edcef15c0426b7189a88cc73ae5", "following_count": 190, "verified_addresses": {"eth_addresses": ["0xe14ca0632c5430abddd40ba077da5fba8821a950"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0xe14ca0632c5430abddd40ba077da5fba8821a950&referral_source=link\"}"}', NULL), - (294, '0xd64c796730248c7a676d1663dd3bf9500da15564', 0, 1, '2024-05-01 02:45:40+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 9, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (3120, '0x8ec5c1804584e9b48e4b5a1d78e959a1f9efb7cc', 0, 1, '2024-05-02 02:35:46+00', 0, 2, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "downshift $ ▯ 🎩🍖✨↑", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 2764, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 537, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0HMCP4nAPkUan3NQr6hSuT?si=5d835aef44f74682\"}"}', NULL), - (282947, '0x766402b446e250aa112f64b9da664eb1f8a3575d', 0, 1, '2024-05-05 18:18:59+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share102/iu-epilogue?si=343b4f8baeeb4cf88186eea47586a284&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3135, '0xe4c4c748b8a5e460d0646321590f8afd5db4c508', 0, 1, '2024-05-02 02:27:09+00', 0, 2, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "downshift $ ▯ 🎩🍖✨↑", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 2764, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 537, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5FCzMiHrGRayOu12J65Syp?si=101e3b3358314760\"}"}', NULL), - (168, '0x885b9396bbf925423563f7fe6ab0588686eb1765', 0, 1, '2024-05-01 00:51:53+00', 0, 4, '{"fid": 324876, "object": "user", "pfp_url": "https://i.imgur.com/38VUjUA.jpg", "profile": {"bio": {"text": "artist-producer and founder of web3 music blog iridescent wave 🌊\nhttps://www.celiainsidemusic.com/", "mentioned_profiles": []}}, "username": "celiainside", "power_badge": true, "display_name": "celia inside ", "active_status": "inactive", "verifications": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "follower_count": 259, "custody_address": "0x408f57c90244ba993ef486c57336818bc5d13d25", "following_count": 364, "verified_addresses": {"eth_addresses": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3WSOUb3U7tqURbBSgZTrZX?si=64c6c91d0dba4421\"}"}', NULL), - (3149, '0x9f35d1935c6402241b2bd18b6eeb0ba398a995db', 0, 1, '2024-05-02 01:26:52+00', 0, 6, '{"fid": 493000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d795b76-1a29-42c0-6f3e-497f92e40900/rectcrop3", "profile": {"bio": {"text": "Me encanta la playa y el mundo de las criptomonedas.", "mentioned_profiles": []}}, "username": "angeles", "power_badge": false, "display_name": "Angeles 🌹", "active_status": "inactive", "verifications": ["0x756d53c524a845a5d593c40fac355964ebbf9bda"], "follower_count": 152, "custody_address": "0x38115a8066d48de7b63f5a8f300a0a0f484fd7de", "following_count": 338, "verified_addresses": {"eth_addresses": ["0x756d53c524a845a5d593c40fac355964ebbf9bda"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3NTaEHQg5iVrRRNWlnK4RY?si=vtB6hq3FQaOXiKOJWUl4gA&context=spotify%3Aplaylist%3A37i9dQZF1DXa1S1d38suSz\"}"}', NULL), - (121, '0x3c4c63f390c8d38cbb1cba5eff5db6bc9160bf96', 0, 1, '2024-05-01 19:53:13+00', 0, 2, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 479, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 230, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5uDASfU19gDxSjW8cnCaBp?si=jT_H08rDRcatE4D6-ApLJA\"}"}', NULL), - (7013, '0x4d40c2505f7b78ce5ed4800ea5d321897dc4bb62', 0, 1, '2024-05-04 15:24:31+00', 0, 4, '{"fid": 366753, "object": "user", "pfp_url": "https://storage.googleapis.com/mamacitas/images/15.PNG", "profile": {"bio": {"text": "Artist & VJ | Art magik • Flowers • Cariberse crew 🥥💓\n\nhttps://linktr.ee/avauniverse I live in /sketches", "mentioned_profiles": []}}, "username": "avauniverse111", "power_badge": true, "display_name": "AVA 🎩🌸", "active_status": "inactive", "verifications": ["0x361aba78ae91ddcbf72b7618c88427834dde5f09", "0xc2711aabd2ed3b778d62e14561a3679465ff57d0"], "follower_count": 314, "custody_address": "0x5c25dcfc27ce060772468e266f840a2f01fb7f25", "following_count": 145, "verified_addresses": {"eth_addresses": ["0x361aba78ae91ddcbf72b7618c88427834dde5f09", "0xc2711aabd2ed3b778d62e14561a3679465ff57d0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/63sK5jte57BQrDWhPB9ZoF?si=qJ9hR_mWSVuIz66O_DNSpw\"}"}', NULL), - (209, '0x99d1748786e48847071330981e1b260a87db0c5c', 0, 1, '2024-04-30 21:34:29+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/4i4oDSWluhViEzuYIZYtmJ?si=Mo2cvt5DQbGvet2ozDaeuQ&context=spotify%3Asearch%3Afourth%2Btime%2Baround\"}"}', NULL), - (309, '0x7cd8c2469fd308d7a4458e63399e4467a24e06b0', 0, 1, '2024-05-01 06:49:52+00', 0, 0, '{"fid": 192420, "object": "user", "pfp_url": "https://i.imgur.com/nqBlnBV.png", "profile": {"bio": {"text": "GM PURR CULTURE\nLife like Love\n", "mentioned_profiles": []}}, "username": "lightmode", "power_badge": false, "display_name": "lightmode", "active_status": "inactive", "verifications": ["0x4e16c6d4ab2648b18f921ecf5ee2a8c2eba78f31"], "follower_count": 416, "custody_address": "0x08c440e113efa4aa7ee6a966712354311480830e", "following_count": 524, "verified_addresses": {"eth_addresses": ["0x4e16c6d4ab2648b18f921ecf5ee2a8c2eba78f31"], "sol_addresses": ["8vX1bSWzE69JJ7m7GhXT28gmkiKXWagEY5G8wUcysWNt"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x4e16c6d4ab2648b18f921ecf5ee2a8c2eba78f31&referral_source=link\"}"}', NULL), - (263, '0x169ecb0f109551b8a45cbe3d5957199191a7858e', 0, 1, '2024-05-01 17:27:50+00', 0, 4, '{"fid": 402406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c929b53c-d4ee-4fd1-f9d8-78e288d3e100/original", "profile": {"bio": {"text": "Singer songwriter 🎩", "mentioned_profiles": []}}, "username": "tomasmika", "power_badge": false, "display_name": "Tomas Mika", "active_status": "inactive", "verifications": ["0xd765a67d91a7d186b372e0bc5e6382296e6b216d"], "follower_count": 620, "custody_address": "0xd765a67d91a7d186b372e0bc5e6382296e6b216d", "following_count": 566, "verified_addresses": {"eth_addresses": ["0xd765a67d91a7d186b372e0bc5e6382296e6b216d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/tomasmika/onchain-melody-a-fork-dao-song\"}"}', NULL), - (91706, '0x5c88551d884cde5ff1394289fbfd820e435fbdfc', 0, 1, '2024-05-05 00:53:46+00', 0, 0, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1054, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0UaaFmF3xUwMjnuAHBq7qL?si=a212544194834400\"}"}', NULL), - (307, '0xb8c8dd38cacd7b56912eca63a6c4eca4cfe9f6a2', 0, 1, '2024-05-01 01:08:09+00', 0, 3, '{"fid": 237145, "object": "user", "pfp_url": "https://i.imgur.com/XSlslvN.jpg", "profile": {"bio": {"text": "Just normal people", "mentioned_profiles": []}}, "username": "kimo69", "power_badge": false, "display_name": "Bowoaan 🟣♾️", "active_status": "inactive", "verifications": ["0xb1607e8fcead1e10317bda673691cbb274d653f4"], "follower_count": 468, "custody_address": "0xd841b493c0c37fcf3e54d874a9317d8d8126600c", "following_count": 575, "verified_addresses": {"eth_addresses": ["0xb1607e8fcead1e10317bda673691cbb274d653f4"], "sol_addresses": ["BiH3RGrg7XjHuNbnQ48jo152Bu5FRmazhqQN9zzr5VHR"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0xb1607e8fcead1e10317bda673691cbb274d653f4\"}"}', NULL), - (3121, '0x02df67c5a5eb4eaaaec1be1cfbf02b94c814efb7', 0, 1, '2024-05-02 01:30:43+00', 0, 0, '{"fid": 330658, "object": "user", "pfp_url": "https://i.imgur.com/06NSWNT.jpg", "profile": {"bio": {"text": "Onchain visionary*🧙*Let''s level up together: we''re in the future creating the future 🔮💯", "mentioned_profiles": []}}, "username": "vibrantsoul2024", "power_badge": false, "display_name": "Moon_child ", "active_status": "inactive", "verifications": ["0x808faacb4a502060a73de1f0f4b094eedbc60c08"], "follower_count": 24, "custody_address": "0x11d8259f1ab38074c52d073c2d9b0bd64c76caa8", "following_count": 113, "verified_addresses": {"eth_addresses": ["0x808faacb4a502060a73de1f0f4b094eedbc60c08"], "sol_addresses": ["5iaTh9U1E82GPEPo8exZMVCxmvEuBrt7rWw1Lq8m4LWq"]}}', '{"{\"url\":\"https://open.spotify.com/track/1WtTLtofvcjQM3sXSMkDdX?si=nwkvrmJrT22wSsjsAuY6ww\"}"}', NULL), - (149, '0xbdbcf1b7b1f548c0748265588e36be20d3268580', 0, 1, '2024-05-01 12:03:59+00', 0, 4, '{"fid": 255299, "object": "user", "pfp_url": "https://i.imgur.com/EXEyTqp.jpg", "profile": {"bio": {"text": "see you on the moon🚀…. AdvantageBlockchain.com", "mentioned_profiles": []}}, "username": "rocketpilot", "power_badge": false, "display_name": "AB Rocket Pilot 🎩🍡", "active_status": "inactive", "verifications": ["0x18df3818e91e7704b77493187bb4a3466aafd5dd"], "follower_count": 335, "custody_address": "0x0daffd1e455007c87e354b678c1519ba97190929", "following_count": 114, "verified_addresses": {"eth_addresses": ["0x18df3818e91e7704b77493187bb4a3466aafd5dd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=JtOBEjNBSE2Bt5BZYqjBlg\"}"}', NULL), - (291, '0x0c049fb4d0684806ae6a56ab90364b62e57a4a9c', 0, 1, '2024-05-01 06:11:17+00', 0, 1, '{"fid": 284991, "object": "user", "pfp_url": "https://i.imgur.com/r8stWyl.png", "profile": {"bio": {"text": "A multi-disciplinary artist, composer, live coder, and video artist who creates various artworks that involve sound, visuals, motion, and code.", "mentioned_profiles": []}}, "username": "ranggapuraji", "power_badge": false, "display_name": "Rangga Purnama Aji 🎩🍖↑", "active_status": "inactive", "verifications": ["0xc627fd4bec977b2845057e64153bbdbc88ef9333"], "follower_count": 573, "custody_address": "0x17c48f0f726909054001e6f82bf372870e3eb607", "following_count": 1086, "verified_addresses": {"eth_addresses": ["0xc627fd4bec977b2845057e64153bbdbc88ef9333"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7904045d-698f-4052-2c31-8f9df5da5000/original\"}","{\"url\":\"https://www.sound.xyz/ranggapurnamaaji/fighter?referral_source=link\"}"}', NULL), - (282667, '0x2522c60046f4a70f7dcf5e7dd4178624de37ed09', 0, 1, '2024-05-05 18:17:07+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gabriella-cl-95/ost-my-ahjussi-adult-grown-up-sondia-cover-1?si=f0b6ab4037b34823b85fa42fa1cff84a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3140, '0xd4955b912045bc14b0d4e6144e709bff4894d9d0', 0, 1, '2024-05-02 01:05:42+00', 0, 6, '{"fid": 504872, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c6883e67-a432-44d7-2857-5803c5c13300/rectcrop3", "profile": {"bio": {"text": "King.", "mentioned_profiles": []}}, "username": "colejj3", "power_badge": false, "display_name": "Cole 🤴 🎩", "active_status": "inactive", "verifications": ["0x5438a58fccf464be36917947b552a6cf9d9b242b"], "follower_count": 408, "custody_address": "0x66c2c5c73de40b076cc7d51e50813a82399fec21", "following_count": 351, "verified_addresses": {"eth_addresses": ["0x5438a58fccf464be36917947b552a6cf9d9b242b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=iCm5e22aRhKhXz8Yuoan0Q\"}"}', NULL), - (128, '0x638dfdb1b0451abb987786cc33db700fe2f3cfa7', 0, 1, '2024-05-01 22:53:38+00', 0, 6, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 808, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 498, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/5V5MUoJUc1NINhZrmk063n\"}"}', NULL), - (3150, '0x83ad785863814481cc38e14e6936b81b6af3085e', 0, 1, '2024-05-02 01:03:15+00', 0, 2, '{"fid": 2364, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/qOMarh_KlfKEbFIdsgGjf0kxHDe2XQYTWt9r49kgMqv2Dr9exUpQTHYzeV2N7oYlh8QL7AN24SjTd-Bhwg00TUS7glGwVp3wAWNa", "profile": {"bio": {"text": "onchain thinker and sharer of information\n~\nPrev @ intuition.systems", "mentioned_profiles": []}}, "username": "mane", "power_badge": true, "display_name": "Matt", "active_status": "inactive", "verifications": ["0xaa0dd4544fb4ac8c706011bfa8f16638fb6409f3"], "follower_count": 1554, "custody_address": "0xa6168ae5ed8e9cc071aac2776914ae7ea38a5954", "following_count": 513, "verified_addresses": {"eth_addresses": ["0xaa0dd4544fb4ac8c706011bfa8f16638fb6409f3"], "sol_addresses": ["BYUiSSaYPLRBHKjZxYefLo7hKZZVTsZEyjegMDmqmxT7"]}}', '{"{\"url\":\"https://open.spotify.com/track/3zf2eLN9Yf8ayZO5cn4Xh5?si=bb37ece5b59d4f14\"}"}', NULL), - (126, '0x2dd10bfacd641dd8277ba98036c3921cf7cc00e3', 0, 1, '2024-05-01 15:59:38+00', 0, 15, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 808, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 498, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q\"}"}', NULL), - (206, '0xabccf75b21b500caaf450ece4c5734e6cadb021d', 0, 1, '2024-04-30 19:53:06+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Tsu3OsuMz4KEGKbOYd6A0?si=YW698W-qR4iW3NqjUbLoLw\"}"}', NULL), - (222, '0xadf904c535f5279a79f6ed2f4bd15ed32419b5be', 0, 1, '2024-04-30 11:16:59+00', 0, 0, '{"fid": 368989, "object": "user", "pfp_url": "https://i.imgur.com/oTuYt2x.gif", "profile": {"bio": {"text": "ReplyGuy\n/wcast-anonymous ", "mentioned_profiles": []}}, "username": "dante4ever", "power_badge": false, "display_name": "Dante 🎩 🔵🏰💉", "active_status": "inactive", "verifications": ["0x610dce6c9cb8e035ca7ebb3f7e3df1674c1572ad"], "follower_count": 1587, "custody_address": "0x89f3ced2e83dbef74cab376ba54c0f57e6299c1e", "following_count": 905, "verified_addresses": {"eth_addresses": ["0x610dce6c9cb8e035ca7ebb3f7e3df1674c1572ad"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7o2AeQZzfCERsRmOM86EcB?si=WYRhr3oGTIK_hrNyTaVcSg\"}"}', NULL), - (277, '0x97fc3cdda16b17fb90e96840555898d6a7bb5303', 0, 1, '2024-05-01 01:18:49+00', 0, 1, '{"fid": 238825, "object": "user", "pfp_url": "https://i.imgur.com/YGKPr4q.jpg", "profile": {"bio": {"text": "🏦Airdrop Daily channel👇\nhttps://t.me/DailyAirdrop93\nGroup: https://t.me/+yRl0lo2W_ekxMGM1\n\nFid: 238825", "mentioned_profiles": []}}, "username": "driphause", "power_badge": false, "display_name": "AD⛓️🎩🟣🔵🍖", "active_status": "inactive", "verifications": ["0x3540d804e6124757a49b805e944b48d14cb78b74"], "follower_count": 1045, "custody_address": "0x0be71c310776ddec10421d25d93ffaaaa42fad72", "following_count": 1494, "verified_addresses": {"eth_addresses": ["0x3540d804e6124757a49b805e944b48d14cb78b74"], "sol_addresses": ["HwQrks5kNtxqGg9ibjNaNRaUAzK92cFjCPLBFzEGaGu8"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23892763-8f68-4aab-eed6-e507a0f01600/original\"}","{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x3540d804e6124757a49b805e944b48d14cb78b74&referral_source=link\"}"}', NULL), - (138, '0x1e65a6cdd9c035814f82b03c07a16c327c39264b', 0, 1, '2024-05-01 14:22:37+00', 0, 23, '{"fid": 401859, "object": "user", "pfp_url": "https://i.imgur.com/LmCfvic.gif", "profile": {"bio": {"text": "Nani Tamoona ✦ 90s kid 👾\nMultidisciplinary artist 𖦹 Exhibited worldwide \nhttps://moonchildtamoo.eth.co/\n┊host /artsphere & /collectiblegems 🌸", "mentioned_profiles": []}}, "username": "moonchildtamoona", "power_badge": true, "display_name": "🌜MOONCHILD 🎩 🔵", "active_status": "inactive", "verifications": ["0xc90f44cbc3a8eeb198c564245eb2b853090039f3"], "follower_count": 1317, "custody_address": "0x81d44eb3a5f050f62c7bedc419ee783a6c836c70", "following_count": 566, "verified_addresses": {"eth_addresses": ["0xc90f44cbc3a8eeb198c564245eb2b853090039f3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf27d915-db09-4f42-f8c3-948d4ade3400/original\"}","{\"url\":\"https://open.spotify.com/track/0boS4e6uXwp3zAvz1mLxZS?si=8e59bb9eb09146fe\"}"}', NULL), - (3143, '0x78c3ecd188bb5c32fca1ab6d0e519d11f4f9c3e6', 0, 1, '2024-05-02 01:03:16+00', 0, 12, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🍡", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2004, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 719, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": ["BQ9G8warUe9PA99aZeuuWTwqf9QJ3jxDcaReXStZ348i"]}}', '{"{\"url\":\"https://open.spotify.com/track/6tniU9ufpwcloxFLaoTakP\"}"}', NULL), - (29674, '0xa38a9a6f7375614fd1e4e55756057e2588ffc9da', 4, 1, '2024-05-04 21:37:41+00', 0, 0, '{"fid": 13786, "object": "user", "pfp_url": "https://i.imgur.com/KAi5I8Q.jpg", "profile": {"bio": {"text": "consumer greenfield.xyz | profit is a consequence", "mentioned_profiles": []}}, "username": "donzec", "power_badge": false, "display_name": "Claude", "active_status": "inactive", "verifications": ["0x9e9fbeb970383a43d6fba10af4bc0a96e567f83a"], "follower_count": 77, "custody_address": "0x193064726d10f27fb6d586793e9d11e0e3dd7bed", "following_count": 98, "verified_addresses": {"eth_addresses": ["0x9e9fbeb970383a43d6fba10af4bc0a96e567f83a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2snKzo2SVnYp4KKP6\"}"}', NULL), - (144, '0x2ffc13cd821a0cc98e0c13c2ef115ba7cceac19f', 0, 1, '2024-05-01 15:31:58+00', 0, 4, '{"fid": 360601, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce1536d0-c296-4767-59ad-4b3444596200/original", "profile": {"bio": {"text": "Normie end user, here to support the homies and creatives. Collective noun #67 ⌐◨-◨ 🔵🟡🟣", "mentioned_profiles": []}}, "username": "loudman.eth", "power_badge": true, "display_name": "Loudman⌐◨-◨🎩🔵🟡", "active_status": "inactive", "verifications": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "follower_count": 1323, "custody_address": "0x37ca8875540d99ace5f8ab1d5990e30277c0f3b4", "following_count": 1232, "verified_addresses": {"eth_addresses": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1AEoNmoU5UaP1wV4UisLh7?si=0DNPC6iDQDaz6OcfRcKOFw📻\"}"}', NULL), - (164, '0xba026d89c61aafceb71da9bc7655c3c954550414', 0, 1, '2024-05-01 12:54:35+00', 0, 3, '{"fid": 10971, "object": "user", "pfp_url": "https://i.seadn.io/gae/5Y51u8vlx73mQj6R7jObpdvC9nkdAIeMul8ErYUjbXEYC8luNtZs-nniFBATubJHAMv3HtA_G76IG5yDopU9sW9OtKDSoW0gm4TXvxA?w=500&auto=format", "profile": {"bio": {"text": "@usv | jared.xyz | formerly founder of groupme and fundera ", "mentioned_profiles": []}}, "username": "jaredhecht.eth", "power_badge": true, "display_name": "Jared Hecht", "active_status": "inactive", "verifications": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "follower_count": 269, "custody_address": "0xe363817e3eb0f4c3d5628142b63ea7b275a4491b", "following_count": 95, "verified_addresses": {"eth_addresses": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/41c6R2RLOiO0tglrV7Uxr2?si=PpnbLZQSSVyQpbUe68T4Eg&context=spotify%3Aalbum%3A6dbcDWUXEFpNrmCJoqZsk4\"}"}', NULL), - (7028, '0x79ad30f66b4843887dd9e50352ba8c6b628f3ef1', 0, 1, '2024-05-04 11:49:04+00', 0, 1, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 209, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/beats-by-abunai-03-collect-to-earn-sstrm?referral_source=link\"}"}', NULL), - (84044, '0x2bab4b834da4ba91571a9763dfd9c6e9592f2ba1', 0, 1, '2024-05-05 00:29:40+00', 0, 1, '{"fid": 508231, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/239719ef-6679-4892-470b-f538e3c2ad00/original", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "!508231", "power_badge": false, "display_name": "happyhappy", "active_status": "inactive", "verifications": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "follower_count": 36, "custody_address": "0x0ceadeaa7100c9b416e4899ff46307e507e461d6", "following_count": 167, "verified_addresses": {"eth_addresses": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JypLS\"}"}', NULL), - (3217, '0xcb11accacbbb120eee9ac75321c5d03d51c2c63b', 0, 1, '2024-04-30 01:04:44+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4338b60-9e13-4e78-a628-cd941b6a2d00/original\"}","{\"url\":\"https://open.spotify.com/track/5GE8FTL15kS123apRK7vD4?si=dQrRwfjfRmaVhCDoh5RMBA&context=spotify%3Aartist%3A1MhtYlJvUqfd2EgHSQTGK4\"}"}', NULL), - (3148, '0x126196162358d2a4ebb4a47c2fbc8970f710dea5', 0, 1, '2024-05-02 01:21:07+00', 0, 0, '{"fid": 1069, "object": "user", "pfp_url": "https://i.imgur.com/s3XjT5J.jpg", "profile": {"bio": {"text": "Co-Founder @frenshouse / Orange Cube Art 💛🏠 work @ Art Blocks / ThankYouX 🫡 I Love music, sports, tech, art, marketing, coffee maxi", "mentioned_profiles": []}}, "username": "2ripsgawd", "power_badge": true, "display_name": "2Rips 🎩 ↑", "active_status": "inactive", "verifications": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "follower_count": 515, "custody_address": "0x84a2cdf0a978b16dc4d7e5005b87fa594f3fd5e6", "following_count": 241, "verified_addresses": {"eth_addresses": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/35rSpXB5bk9ega9jsjcRts?si=ee3bf29208d346ec\"}"}', NULL), - (133, '0x1041004a7ad46cf02b527eceed757943d441c1c0', 0, 1, '2024-05-01 08:02:37+00', 0, 14, '{"fid": 13089, "object": "user", "pfp_url": "https://i.imgur.com/LRWA9t0.jpg", "profile": {"bio": {"text": "A teller / of stories, that is me. / Curious to learn new ways to see. / Proud dad of two. Now, what / about you? | Builds https://paragraph.xyz/@trpplffct", "mentioned_profiles": []}}, "username": "arjantupan", "power_badge": true, "display_name": "Arjan✒️ That Poetry Guy 🎩", "active_status": "inactive", "verifications": ["0xb31faa5c1d581c70f4b6ed095c944936cbd2a357"], "follower_count": 22428, "custody_address": "0x66beeb67c21dab2d15dea8e506012083461fa71c", "following_count": 740, "verified_addresses": {"eth_addresses": ["0xb31faa5c1d581c70f4b6ed095c944936cbd2a357"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/69Fn1hfYXOe8qJxqzsl9gE?si=761049fe5cc14501\"}"}', NULL), - (195, '0x2327a0c0eb1d58bf7a78df424e73b86a322ad1cc', 0, 1, '2024-04-30 23:44:39+00', 0, 1, '{"fid": 295329, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeihlond74ij2vbzyuagma2uxtv2b7e4nmty6ujxbapqopsarzy3yo4/1222.png", "profile": {"bio": {"text": "1 Part Bartender | 1 Part Degen | Community Growth | Hosting /shoegaze /catan", "mentioned_profiles": []}}, "username": "alolanvulpix.eth", "power_badge": false, "display_name": "Cory🎩", "active_status": "inactive", "verifications": ["0x14fc3aded5f88a486c1ba41b751e3b7e9e92bfd4"], "follower_count": 946, "custody_address": "0x1e4e5391ece5e287a43321858437a3ed53f8e971", "following_count": 2196, "verified_addresses": {"eth_addresses": ["0x14fc3aded5f88a486c1ba41b751e3b7e9e92bfd4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Aqn5qAIAConeBMdzmWCwa?si=IPjukEPAT564hV5-ITf0-w&context=spotify%3Aartist%3A5J0ehnVK9YOBGWOwE022ar\"}"}', NULL), - (179, '0xa03d74a19f12685fc9a69f82a6eed5a0ebe110b5', 0, 1, '2024-04-30 14:49:40+00', 0, 1, '{"fid": 466583, "object": "user", "pfp_url": "https://i.imgur.com/aup5rue.jpg", "profile": {"bio": {"text": "Backpacker, traveler, digital nomad.", "mentioned_profiles": []}}, "username": "eltalitali", "power_badge": false, "display_name": "Dib Gamal", "active_status": "inactive", "verifications": ["0x9440c6dace67b3e62a481b5241daf30c36cd8c9c"], "follower_count": 165, "custody_address": "0x4a286c07b6682f5288a49030f5a586117f2d1cd7", "following_count": 329, "verified_addresses": {"eth_addresses": ["0x9440c6dace67b3e62a481b5241daf30c36cd8c9c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2irkonkHjqmCkUT2oVQ2ox?si=iZNdbaRORH6CdU3Y0tLZSw&context=spotify%3Aalbum%3A28Nfblfv6piukaj4Vq3FmS\"}"}', NULL), - (163, '0xabb56271ee0f2bdd1f06b4e4cb6a02b63e990f2c', 0, 1, '2024-05-01 09:56:45+00', 0, 25, '{"fid": 16679, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigwwxb43quomtsewongw5qlnljz3rsv5g7hxzbu4hptgc3u3ygjta/979.png", "profile": {"bio": {"text": "bezdelnik ", "mentioned_profiles": []}}, "username": "troshintv", "power_badge": false, "display_name": "artem 🎩 ", "active_status": "inactive", "verifications": ["0x8a183976686c15797b86aee156e6b6c451da3ace"], "follower_count": 645, "custody_address": "0xb3a930067a5ce5e6d6c83a240efef88051b8f709", "following_count": 180, "verified_addresses": {"eth_addresses": ["0x8a183976686c15797b86aee156e6b6c451da3ace"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1e4kwCOOIv8OHBHSd3avgQ?si=3b5d9ddd53604971\"}"}', NULL), - (9641, '0x94885835fc66be7a543f0d76fee81cec39b346aa', 0, 1, '2024-05-04 17:22:13+00', 0, 5, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3848, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7fzHQizxTqy8wTXwlrgPQQ?si=c8f11dd8d81e41ea\"}"}', NULL), - (122872, '0xd4d950d4ab8846e35538ff109fd0f5344652f5e2', 0, 1, '2024-05-05 05:11:02+00', 0, 0, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "follower_count": 2088, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2449, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UZGB9neHJfj6s4FZ6\"}"}', NULL), - (3155, '0xeec2972f1a07763f6bd46b5ad11cb34bc956b1af', 0, 1, '2024-05-02 02:36:30+00', 0, 9, '{"fid": 376638, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e35f4c0-4979-4769-c221-ed1ab4a3e200/rectcrop3", "profile": {"bio": {"text": "Japanese🇯🇵▷▶enjoy crypto/illustrater ✍️love warpcast", "mentioned_profiles": []}}, "username": "sally-", "power_badge": false, "display_name": "sally👻Everyone🔦", "active_status": "inactive", "verifications": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "follower_count": 596, "custody_address": "0xea6eeb79b91923be86d19a155999a2da5c3f8516", "following_count": 906, "verified_addresses": {"eth_addresses": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1iHajyLGW5ZWx286dy9Lqx?si=DBbxf1ltRh2dYDSslARVQg&context=spotify%3Atrack%3A1iHajyLGW5ZWx286dy9Lqx\"}"}', NULL), - (135, '0x180ddb56b0573d67ff2b85928d78da4ba42be09c', 0, 1, '2024-05-01 13:24:55+00', 0, 2, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 562, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 262, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2NMjggapJcXXM7WccGEBUO?si=LmmKeBUYQyej0dabCEO6YQ\"}"}', NULL), - (212, '0x09938e78f6579691e376341493043e2d687d0682', 0, 1, '2024-04-30 22:32:56+00', 0, 2, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 109, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 142, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7LsOvLOgesmhzc0qTof93w?si=0RatgATZQW-AMw0sL5nQmg&context=spotify%3Aartist%3A1hg70WTHwGUQ7XDbjy3szw\"}"}', NULL), - (198, '0x10487683b0ef470f8917077be0f099e155e0c5ee', 0, 1, '2024-04-30 14:49:45+00', 0, 0, '{"fid": 414050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/568505ff-a319-4eb2-e283-dbab51369500/rectcrop3", "profile": {"bio": {"text": "Product Owner @ a Big 4, and Artist.\nPrints and NFTs available:\n\nhttps://linktr.ee/Chiebuniem", "mentioned_profiles": []}}, "username": "pascalokafor", "power_badge": false, "display_name": "Pascal Okafor🎩", "active_status": "inactive", "verifications": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "follower_count": 101, "custody_address": "0x53feedd7a49bb51ff6530400dddb7e673deb9c66", "following_count": 176, "verified_addresses": {"eth_addresses": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2nh7EgCBZOQD4dbeWRK1VO?si=fbHTwn8LR3KkQGVNx6qfBQ\"}"}', NULL), - (240, '0xbc3e121adc947cfcf05ed6be726b64a675db7ef8', 0, 1, '2024-04-30 09:24:55+00', 0, 7, '{"fid": 193826, "object": "user", "pfp_url": "https://i.imgur.com/Urc2CHT.gif", "profile": {"bio": {"text": "Fashion person with a degen twist. Building /uniklabs. Having fun in /los-fomos. Show me your /typos. Dancing in /latinmusic. ", "mentioned_profiles": []}}, "username": "pauline-unik", "power_badge": true, "display_name": "Pauline Unik 🌶️", "active_status": "inactive", "verifications": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "follower_count": 1460, "custody_address": "0x285b0d0d896591bf9cf34dcb5d401883c8ead439", "following_count": 468, "verified_addresses": {"eth_addresses": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Y4rUyw7XBCK6hGHCOt6rp?si=bU8bsfkKTDK82rZkR3ufTg&context=spotify%3Aplaylist%3A2Kx6yDZcRT6Wo7UsZ4DphF\"}"}', NULL), - (310, '0x7c0061c60e8fa3a7041f139641c2e3a2c961d0ce', 0, 1, '2024-05-01 06:36:54+00', 0, 0, '{"fid": 235023, "object": "user", "pfp_url": "https://i.imgur.com/Nssa9vE.jpg", "profile": {"bio": {"text": "SocialMedia Promoter and CryptoLover", "mentioned_profiles": []}}, "username": "talk2me", "power_badge": false, "display_name": "Hiren", "active_status": "inactive", "verifications": ["0xed4a59031e82296ed0ce0e3e1bf0020a5570150d"], "follower_count": 459, "custody_address": "0x19242edf4c4fd804f1bb543f06417365fcc52156", "following_count": 202, "verified_addresses": {"eth_addresses": ["0xed4a59031e82296ed0ce0e3e1bf0020a5570150d"], "sol_addresses": ["DDwGE2pzocXt8rYBKitGw1Y3whTRFyc9e4rvyeMX3hZN"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0xED4A59031e82296ED0Ce0E3E1Bf0020A5570150d\"}"}', NULL), - (3807, '0x7ff400b84018532a68be69d30696f3b5576c93f5', 0, 1, '2024-05-02 16:23:49+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 33, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/lovebomber-gaslighting-narcissism-glitch-glitch-glitch?referral_source=link\"}"}', NULL), - (140, '0xcd8ff942160ea74a2e154a251f5fa1291f7542d3', 0, 1, '2024-05-01 07:03:01+00', 0, 10, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 2266, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 658, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1FysGiTBMkxhO3Vl2xF0lx?si=ZpjNmQXJQk6RbRYXth4Pgw\"}"}', NULL), - (124248, '0x0ff39476015ccd325fb0f1a570d6e9ce865b8c0d', 0, 1, '2024-05-05 05:18:14+00', 0, 0, '{"fid": 9318, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmPASmu4tqbgwuceqWtHbEZTrn24zsva1NDBxpfzEjVpQR/5451.png", "profile": {"bio": {"text": "subtraction speculation visualization\nHYPERPEOPLE & /dark-ops", "mentioned_profiles": []}}, "username": "catra.eth", "power_badge": true, "display_name": "catra", "active_status": "inactive", "verifications": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "follower_count": 713, "custody_address": "0xc656b9dc4fc21cb0a01d3efddb8a68c123ddc31b", "following_count": 179, "verified_addresses": {"eth_addresses": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "sol_addresses": ["DFqgM6sTHJknZ2NDPWA3PSFCeEEASZeLFyg6JWNaLcr1", "AKT6jmnPAvvKPiFNwsrLAdb8hMpHADWV5fr6TsGiNB7c"]}}', '{"{\"url\":\"https://soundcloud.com/deathdecaymagic/ddm061-butcher-boy?si=441f0498ba234d1fbe3396a254002b17&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (191, '0xaae404d42e0eae32a3d65e6080fd0e440639fb16', 0, 1, '2024-04-30 15:38:05+00', 0, 1, '{"fid": 499783, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05055ae3-170a-477e-d00b-f66c154eb700/original", "profile": {"bio": {"text": "Building /uniklabs. Based in Los Fomos /los-fomos • \nNext-gen IPs are Web3-native w/ a ''skin in the character'' community & a networked virtual economy", "mentioned_profiles": []}}, "username": "tako-unik", "power_badge": false, "display_name": "Tako Unik 🌶️", "active_status": "inactive", "verifications": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "follower_count": 13, "custody_address": "0x96c633f9d1b6c20586bae7fd36ea4bf8f7a1bcf9", "following_count": 45, "verified_addresses": {"eth_addresses": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/748yv6bb3l3CcKS45a6SZ8?si=c7d1288941754fc0\"}"}', NULL), - (180, '0x55f89a2adb89dffed0b4db57f5ffcedcb3b80137', 0, 1, '2024-04-30 18:36:22+00', 0, 7, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 2266, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 658, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4OfJH7SvtSmOXGgH7PyFG7?si=jcGv5ZCUSp-Myoy8YbTcFg\"}"}', NULL), - (215, '0x0692c48bb07a7cf71a38897a9032acdd751ab254', 0, 1, '2024-04-30 12:08:20+00', 0, 3, '{"fid": 10148, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2d45a7c0-2e55-4268-a2a9-aaf5ea295e00/original", "profile": {"bio": {"text": "without people, web3 doesn''t matter\n/\nhead of marketing @rarible\n/\ngenerative art - algorithm, The PiRIS Project\n/", "mentioned_profiles": []}}, "username": "jamesrichardfry", "power_badge": true, "display_name": "James Richard Fry", "active_status": "inactive", "verifications": ["0x5c7aa6c9ca8219a9887a9e16ab9a5bc283a928ff", "0x16e6f2b9d07b929f58355778887733677e765337"], "follower_count": 588, "custody_address": "0x240f1f0291d2b99573fba406adc2becd4780825c", "following_count": 163, "verified_addresses": {"eth_addresses": ["0x5c7aa6c9ca8219a9887a9e16ab9a5bc283a928ff", "0x16e6f2b9d07b929f58355778887733677e765337"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YKsbCBwvIM7vzkzgespPq?si=ecaf64621a0d4376\"}"}', NULL), - (3233, '0x6168298d92b146aa473372ac4eeb8fc224b746f0', 0, 1, '2024-04-30 00:07:44+00', 0, 15, '{"fid": 387795, "object": "user", "pfp_url": "https://i.imgur.com/aEmZKh4.jpg", "profile": {"bio": {"text": "In the constant search to learn, in the constancy and discipline to do things well, to help and support this community project, we continue to build together th", "mentioned_profiles": []}}, "username": "limonadamix", "power_badge": false, "display_name": "Limonada Mix", "active_status": "inactive", "verifications": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "follower_count": 297, "custody_address": "0x0856dc293d54657cb53de5060a58c1b938d614c8", "following_count": 280, "verified_addresses": {"eth_addresses": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/62887973-c104-420c-4e68-1405b4917e00/original\"}","{\"url\":\"https://open.spotify.com/track/7qBcM24GasbT2jxrayIOwj?si=rMq-XJMvTLKI89-8qoUlgQ&pi=u-sNHGqhiBTiuJ\"}"}', NULL), - (311, '0x2b1056ec9cd7038fb9245a85e9d3b7e381633ba3', 0, 1, '2024-05-01 07:31:03+00', 0, 1, '{"fid": 386000, "object": "user", "pfp_url": "https://i.imgur.com/lnMTglM.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "underdog13", "power_badge": false, "display_name": "Underdog13", "active_status": "inactive", "verifications": ["0x00bdf8a5e236dd8cbdad9cb1e46a7cff27ef294a", "0x00bdf8a5e236dd8cbdad9cb1e46a7cff27ef294a"], "follower_count": 18, "custody_address": "0xd1bfc50a8bbc8cd01df882a58448a889fe593e40", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x00bdf8a5e236dd8cbdad9cb1e46a7cff27ef294a", "0x00bdf8a5e236dd8cbdad9cb1e46a7cff27ef294a"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/72d5e25c-0d9b-4764-1393-5273c3698e00/original\"}","{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x00bdf8a5e236dd8cbdad9cb1e46a7cff27ef294a\"}"}', NULL), - (3238, '0x05651e07220e9bee88482856ee9d9f41e2ed621e', 0, 1, '2024-04-30 04:29:00+00', 0, 5, '{"fid": 444984, "object": "user", "pfp_url": "https://i.imgur.com/9ScfcDi.jpg", "profile": {"bio": {"text": "Explorer of worlds both virtual and real | Passionate about AI, blockchain, and immersive experiences | Let''s journey through the realms together 🚀✨ 💫", "mentioned_profiles": []}}, "username": "sam0222", "power_badge": false, "display_name": "Sam 🎩", "active_status": "inactive", "verifications": ["0xda0ce6613e37bf848047607d7604664f5d554aba"], "follower_count": 647, "custody_address": "0x129f403deed7bb7f18f5886f07dea0b6b8c1db32", "following_count": 938, "verified_addresses": {"eth_addresses": ["0xda0ce6613e37bf848047607d7604664f5d554aba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4VnDmjYCZkyeqeb0NIKqdA?si=pQTPWEbaTA2cdUN7PEz5dA%0A\"}"}', NULL), - (223, '0xc4e21762dda0c08baa9e1dfc2bf716cae1953c9d', 0, 1, '2024-04-30 07:07:55+00', 0, 3, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 270, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 232, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4OmlsAT8r4q9vPFBvfYgyZ?si=qHzGbOCUSq-XTPjVWf5okg&context=spotify%3Aartist%3A4G9wSdX0klmoHfjm9i6DLd\"}"}', NULL), - (3249, '0x32b927693a12ce5345ca65dd7fa33542e614f9a9', 0, 1, '2024-04-30 03:31:52+00', 0, 4, '{"fid": 406365, "object": "user", "pfp_url": "https://i.imgur.com/gEhBoBa.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "zyzzle", "power_badge": false, "display_name": "Zyzzle", "active_status": "inactive", "verifications": ["0x0d10721a50434ec2bfb2aeed8cfea9d9f171a5f3"], "follower_count": 137, "custody_address": "0x5c38d258f14a2676a981fa10bb9b0119fdc95c98", "following_count": 387, "verified_addresses": {"eth_addresses": ["0x0d10721a50434ec2bfb2aeed8cfea9d9f171a5f3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4mmnPh0hGLrpwv7sRaVPrE?si=uSsN5dmzRHmTf5FdqIpV6Q\"}"}', NULL), - (3237, '0x57b6219b5f64c400327dd99f082ddbdc8c6811d6', 0, 1, '2024-04-30 02:03:34+00', 0, 3, '{"fid": 298916, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/22cda276-c731-4824-cb2c-0187622cc900/rectcrop3", "profile": {"bio": {"text": "I make four eyed friends for everyone and I interview artists for BurritoDAO", "mentioned_profiles": []}}, "username": "really", "power_badge": true, "display_name": "Reddy🎩🔵", "active_status": "inactive", "verifications": ["0x653d6d7da3c856fd5ddec464a4b11d7831899cd1"], "follower_count": 477, "custody_address": "0x54425c0218773d3947dae5b32eeb7f00d1498529", "following_count": 301, "verified_addresses": {"eth_addresses": ["0x653d6d7da3c856fd5ddec464a4b11d7831899cd1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KISqpE5ChjgmxPUyUrsa7?si=bojxCdEsTO-kn1e4ppt1GA\"}"}', NULL), - (244, '0x28ccdb91fbb4048e82ec1997057a0b55c8e45532', 0, 1, '2024-04-30 11:51:21+00', 0, 25, '{"fid": 229878, "object": "user", "pfp_url": "https://i.imgur.com/Wzeh5p6.jpg", "profile": {"bio": {"text": "Crypto, lifestyle, and fun. Hosted by /ventures", "mentioned_profiles": []}}, "username": "maxdontwakeup.eth", "power_badge": false, "display_name": "Max 🎩🌈☘️⛓️✈️", "active_status": "inactive", "verifications": ["0x7d18c8fee53b394297f4545261343bd5eb847b88"], "follower_count": 1921, "custody_address": "0x8955428fe3c82abe53997fc3a6989b61d559238f", "following_count": 834, "verified_addresses": {"eth_addresses": ["0x7d18c8fee53b394297f4545261343bd5eb847b88"], "sol_addresses": ["5ZixrYbbVQebJJzNKLU4v38osivFHZoksWVBtEugvvXq"]}}', '{"{\"url\":\"https://open.spotify.com/track/7EkWXAI1wn8Ii883ecd9xr?si=BWgkNcKqRJ2MSWpQaVCJ8A&context=spotify%3Aplaylist%3A37i9dQZF1DX9a3CsU85wl6\"}"}', NULL), - (3261, '0xade5b9e965ab9dbd7a70d42cac6ae1786fe7418d', 0, 1, '2024-04-29 15:27:54+00', 0, 1, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 562, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 262, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/18oWEPapjNt32E6sCM6VLb?si=uzt08Kd0RTem-2n0aRAnoA\"}"}', NULL), - (3264, '0xd6272e31ff157c8bb04637514e0d22241596b207', 0, 1, '2024-04-29 14:08:44+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/0RYSOzuO1CGlvs45g5G7zg?si=MZXbG4zmTKe9FdkOJszZ9g&context=spotify%3Aalbum%3A1cxLMS9z0iLlSu3SDiNwHB\"}"}', NULL), - (3242, '0x58a4782107e98e280bd58509b8a98c77df0ed085', 0, 1, '2024-04-30 02:10:03+00', 0, 8, '{"fid": 409817, "object": "user", "pfp_url": "https://i.imgur.com/q7wMlvN.gif", "profile": {"bio": {"text": "A little bit of pink and a little bit of blue 🌸💎\n\nhttps://linktr.ee/stotkal", "mentioned_profiles": []}}, "username": "stotkal", "power_badge": false, "display_name": "Leo 💎🌸", "active_status": "inactive", "verifications": ["0x99a754897d0b0ff5ef187ea6388265bc0d4f5c20"], "follower_count": 597, "custody_address": "0x28f50be15d3a61e8d71e8440d7e0d904712b384d", "following_count": 742, "verified_addresses": {"eth_addresses": ["0x99a754897d0b0ff5ef187ea6388265bc0d4f5c20"], "sol_addresses": ["3BJA73e3QoGQ62V9Mwdikd723tQEgV6X7a6a8odgJBTy"]}}', '{"{\"url\":\"https://open.spotify.com/track/4sRmzVSedvFkENbSJ342Ex?si=MG3EepvIQGeCqgD7SYydVQ&context=spotify%3Aalbum%3A6OqegZkCUq29CJarqL8trP\"}"}', NULL), - (171, '0x0f712805840b11e537088c8333e36c031e93a53e', 0, 1, '2024-04-30 16:00:21+00', 0, 10, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3516, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 356, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/00zcKKah9P5LaUHfypu8PQ?si=PVJCvmdUTLKVizR2bkQPig\"}"}', NULL), - (3239, '0xe01ee13037dbe10059a29b7afc62f37abc351dbe', 0, 1, '2024-04-30 04:07:53+00', 0, 12, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 27966, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/41sYW1EhLzlMWlaefZGWvq?si=2uY8bs8pSNmWvNWptgtrxw\"}"}', NULL), - (3251, '0x486f4279632ff17e85d8b31c95ff4119cd9e3c1c', 0, 1, '2024-04-29 23:28:12+00', 0, 1, '{"fid": 426248, "object": "user", "pfp_url": "https://i.imgur.com/KlXaJMh.jpg", "profile": {"bio": {"text": "Dr. anesthesiologist resuscitator | crypto | gaming", "mentioned_profiles": []}}, "username": "daboo", "power_badge": false, "display_name": "Daboo 🌇💊👾", "active_status": "inactive", "verifications": ["0x7621e3d3780355a5fcacdd39ff8d0659a5b8bea9"], "follower_count": 736, "custody_address": "0x995cddf310f27393d4430a4c62f57189e9d3076d", "following_count": 842, "verified_addresses": {"eth_addresses": ["0x7621e3d3780355a5fcacdd39ff8d0659a5b8bea9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/18AXbzPzBS8Y3AkgSxzJPb?si=c0_edpASTA6w7XFdEf0pCA&context=spotify%3Aartist%3A4lxfqrEsLX6N1N4OCSkILp\"}"}', NULL), - (3254, '0x8cf33035f1475b7c4f1d6ad7f8c291219221ace4', 0, 1, '2024-04-29 23:12:07+00', 0, 0, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full-stack Artist 🖌️\n\nBuilding ORIGIN STØRIES (FIB, VPM, Refusés) ⚡️\n\nIn the studio - new music 🔜 ", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 610, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 303, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1eV2FGbbyxCJ6xaLqBRiFW?si=mndWQdKwRDC-5vFGhd1cyQ&context=spotify%3Asearch%3Ajust%2Bgot%2Bpaid%2Bn\"}"}', NULL), - (3262, '0x85525f98b1ea3ef6c8baa9f991802b0efa66b08f', 0, 1, '2024-04-29 20:52:12+00', 0, 1, '{"fid": 504891, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/304c2e27-2328-48f7-0c2c-b808f657f800/original", "profile": {"bio": {"text": "Creative Full Stack Developer\n", "mentioned_profiles": []}}, "username": "1milad", "power_badge": false, "display_name": "Milad", "active_status": "inactive", "verifications": ["0xca4ecd4a99a09525bf34e06eda7d8b1e9c902958"], "follower_count": 23, "custody_address": "0x5da6faf6848764358decce5adc26471cf6ad95a8", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xca4ecd4a99a09525bf34e06eda7d8b1e9c902958"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0lwUIYJfWGB8qUEAJtYfb6?si=6fd7a87da8564737\"}"}', NULL), - (3266, '0x5d78301075d2a5207e0dae8374b325512ce55134', 0, 1, '2024-04-29 18:12:52+00', 0, 4, '{"fid": 263664, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3d865e2-466c-4435-6114-efde80725b00/rectcrop3", "profile": {"bio": {"text": "A forever /replyguy and host of /casting-couch", "mentioned_profiles": []}}, "username": "oppai", "power_badge": true, "display_name": "Oppai✴️", "active_status": "inactive", "verifications": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "follower_count": 3151, "custody_address": "0x3fd57eea6e0b65c3010f050a96fe962ff3e5a3ce", "following_count": 1683, "verified_addresses": {"eth_addresses": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "sol_addresses": ["Ct9p9bbUxinAwTQu3nfSdnyS8NQHypcTfxTpW32zh1T8"]}}', '{"{\"url\":\"https://open.spotify.com/track/4fSsC2DyaVHc7XVhZ39VpS?si=dJrRavKaQSuaVk2FfFF7Zw&context=spotify%3Aalbum%3A6CaXxp5CIgHlEChFRNlbKU\"}"}', NULL), - (187, '0xcd30f07ca1205277549bd95fe0d448f928876eaf', 0, 1, '2024-04-30 18:30:06+00', 0, 2, '{"fid": 1407, "object": "user", "pfp_url": "https://i.imgur.com/ZIIiTPV.jpg", "profile": {"bio": {"text": "/new-york by day 🗽 /zinger by night 😈 Fan of eating tacos and bringing people together, often at the same time 🌮", "mentioned_profiles": []}}, "username": "zinger", "power_badge": true, "display_name": "Zinger — f/arcon ↑", "active_status": "inactive", "verifications": ["0xafca747b067c40ae0dda3f170ae971a2cbf4d05c"], "follower_count": 4840, "custody_address": "0xa3037d4c94aa42088aacf5fce2f885c0de893b56", "following_count": 697, "verified_addresses": {"eth_addresses": ["0xafca747b067c40ae0dda3f170ae971a2cbf4d05c"], "sol_addresses": ["6EAaPqnwT54YnYfCRyupN8rK25i2hbguBFcbfVQ8hGWj"]}}', '{"{\"url\":\"https://open.spotify.com/track/5vASuVQkngtFoCOczem52V\"}"}', NULL), - (220, '0xd030cdd948e74693ee85a1d5f8c32cb0bb4e4f84', 0, 1, '2024-04-30 10:56:28+00', 0, 25, '{"fid": 409573, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/066e0926-36c8-4a1e-1d34-e07241ee1900/original", "profile": {"bio": {"text": "Buy $fuckcoolpussy or I cut it off, yes my d*ck if you don''t buy $fuckcoolpussy it''s on sol,\n\n\nI post Memes, I''m 96 year old child:\nPew Pew 🔫", "mentioned_profiles": []}}, "username": "fuckcoolpussy.eth", "power_badge": true, "display_name": "$fuckcoolpussy 🎩🧾", "active_status": "inactive", "verifications": ["0x199554ccb0c7e11a8c5275a41f3e61a92c235846"], "follower_count": 3073, "custody_address": "0x6bb68195865cd4d985b8f5e54ce44bfb0db2fb94", "following_count": 556, "verified_addresses": {"eth_addresses": ["0x199554ccb0c7e11a8c5275a41f3e61a92c235846"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5kqIPrATaCc2LqxVWzQGbk?si=GV19lbp7S_mHmb9N9f49Xg%0A\"}"}', NULL), - (3256, '0x9a7d5e0544363c31b6bebf69b7f1cb09847fd468', 0, 1, '2024-04-29 20:28:53+00', 0, 1, '{"fid": 263333, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d75eeb67-c37e-4b98-f466-5dfc18ea2700/rectcrop3", "profile": {"bio": {"text": "not a developer but I am building meaningful relationships on base ", "mentioned_profiles": []}}, "username": "fatcop", "power_badge": true, "display_name": "colfax", "active_status": "inactive", "verifications": ["0xe97022e3e50ac76d20f5138141d79f65acf3bc82"], "follower_count": 850, "custody_address": "0x6aa3e8275ba2dff662f420b45ab1e6bca96c0e43", "following_count": 336, "verified_addresses": {"eth_addresses": ["0xe97022e3e50ac76d20f5138141d79f65acf3bc82"], "sol_addresses": ["Eqx6jbzNUUivZqUxCudJqVSTwJ2rGSqRvwgyxfovEFXs"]}}', '{"{\"url\":\"https://open.spotify.com/track/5puPWYuz8owXi7TvMAgbnr?si=9b53e4b0afe64394\"}"}', NULL), - (3258, '0x456409cceca64d0a2b597442000abab555162c47', 0, 1, '2024-04-29 18:46:09+00', 0, 5, '{"fid": 444984, "object": "user", "pfp_url": "https://i.imgur.com/9ScfcDi.jpg", "profile": {"bio": {"text": "Explorer of worlds both virtual and real | Passionate about AI, blockchain, and immersive experiences | Let''s journey through the realms together 🚀✨ 💫", "mentioned_profiles": []}}, "username": "sam0222", "power_badge": false, "display_name": "Sam 🎩", "active_status": "inactive", "verifications": ["0xda0ce6613e37bf848047607d7604664f5d554aba"], "follower_count": 647, "custody_address": "0x129f403deed7bb7f18f5886f07dea0b6b8c1db32", "following_count": 938, "verified_addresses": {"eth_addresses": ["0xda0ce6613e37bf848047607d7604664f5d554aba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0qp0G8VtnYHmLnbCu6lUUQ?si=ZCRqzIZQRxSUlXTnab1Yxw%0A\"}"}', NULL), - (3280, '0xe5a75312fd3dc646c24e202dd55f6fd15d0af9d2', 0, 1, '2024-04-29 19:02:01+00', 0, 6, '{"fid": 440524, "object": "user", "pfp_url": "https://i.imgur.com/MnlaEGm.jpg", "profile": {"bio": {"text": "Photographer📸 | Music nerd | Sports guy | Cinephile | I also love to joke about shit.", "mentioned_profiles": []}}, "username": "sinadnl", "power_badge": false, "display_name": "Sina🎩", "active_status": "inactive", "verifications": ["0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7"], "follower_count": 529, "custody_address": "0xb8a33c60c65f1c21f488d20eb1debfb47829ca53", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3eekarcy7kvN4yt5ZFzltW?si=RaC2kg65SVK8zSXo_EwQLQ\"}"}', NULL), - (7038, '0x83b6989a33ae0a2191f68bc9c03b75bc96bd3579', 0, 1, '2024-05-04 10:46:40+00', 0, 0, '{"fid": 416775, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc6921f8-e2ca-435d-7233-9c3b3fa0a300/rectcrop3", "profile": {"bio": {"text": "Interested in NFT", "mentioned_profiles": []}}, "username": "areya", "power_badge": false, "display_name": "Areya🎩", "active_status": "inactive", "verifications": ["0x0445d4537e01838734167752cab5faa9d07d26ac"], "follower_count": 891, "custody_address": "0xef223711a7524bea986ffdabda1f6c554c77d706", "following_count": 795, "verified_addresses": {"eth_addresses": ["0x0445d4537e01838734167752cab5faa9d07d26ac"], "sol_addresses": ["hnXgkSfx5iD2Qjy3FA7tfbyawjzBCX1RCWoxf3VmCML"]}}', '{"{\"url\":\"http://sound.xyz\"}"}', NULL), - (7006, '0x8a7984a76bf0da08eaf10a97e0d5896e6d855c81', 0, 1, '2024-05-04 15:31:08+00', 0, 2, '{"fid": 427317, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61fcdca2-eada-43e7-1f04-aaebc05f0600/rectcrop3", "profile": {"bio": {"text": "I''m in it for the tech, bruv", "mentioned_profiles": []}}, "username": "batesy", "power_badge": false, "display_name": "Batesy Innit 🎩", "active_status": "inactive", "verifications": ["0xb7e57a44b1b63374e8f6ad7fb85be840709114a7"], "follower_count": 488, "custody_address": "0x25fb348c42e8f5f2327e374f97cd8d197ee5f651", "following_count": 1330, "verified_addresses": {"eth_addresses": ["0xb7e57a44b1b63374e8f6ad7fb85be840709114a7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/09Se0cLRPqyyfDH1vpiJyP?si=bv8qSW4DQ_6p0byBCazL3Q\"}"}', NULL), - (12394, '0x768cbe7c2c6cd02d5b046378e0fac82da688c028', 0, 1, '2024-05-04 02:34:44+00', 0, 2, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1107, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/2EH60GRwbfhWf5FJ5mPk35?si=VzTyv0m4RXGv1uuMpommmw&context=spotify%3Asearch%3Apain%2Bprince%2Bamong\"}"}', NULL), - (173, '0x288183b2e0b487e5a57296e6f5707f6bb65374d9', 0, 1, '2024-04-30 14:33:23+00', 0, 22, '{"fid": 444984, "object": "user", "pfp_url": "https://i.imgur.com/9ScfcDi.jpg", "profile": {"bio": {"text": "Explorer of worlds both virtual and real | Passionate about AI, blockchain, and immersive experiences | Let''s journey through the realms together 🚀✨ 💫", "mentioned_profiles": []}}, "username": "sam0222", "power_badge": false, "display_name": "Sam 🎩", "active_status": "inactive", "verifications": ["0xda0ce6613e37bf848047607d7604664f5d554aba"], "follower_count": 647, "custody_address": "0x129f403deed7bb7f18f5886f07dea0b6b8c1db32", "following_count": 938, "verified_addresses": {"eth_addresses": ["0xda0ce6613e37bf848047607d7604664f5d554aba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/19UACj7bHhoKGLONDCnQtC?si=P9Kzwr6QSPeJORZOhT9V8w%0A\"}"}', NULL), - (3245, '0x303b63e909318fffc8a58f158d0a1291ae4a7a2e', 0, 1, '2024-04-30 03:49:59+00', 0, 7, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bbec4b32-d666-4b88-9685-d99b7b57bd00/original\"}","{\"url\":\"https://open.spotify.com/track/1CvBqoxfDF1C1HtSh1NhCH?si=PVHjWxVEQ1es2REZvpb4ZQ&context=spotify%3Asearch%3Atom%2Bwaits%2Blong\"}"}', NULL), - (3231, '0x89dce59da58c11272240a25b7d31d64e6e15bca1', 0, 1, '2024-04-30 01:52:47+00', 0, 7, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🍡", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2004, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 719, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": ["BQ9G8warUe9PA99aZeuuWTwqf9QJ3jxDcaReXStZ348i"]}}', '{"{\"url\":\"https://open.spotify.com/track/0cfc8fHdcosw2buDdNneI7\"}"}', NULL), - (3255, '0x6fe376cc328bae5d177addc618665c8f0caa43c0', 0, 1, '2024-04-29 18:53:13+00', 0, 0, '{"fid": 390219, "object": "user", "pfp_url": "https://i.imgur.com/o8ft3dj.jpg", "profile": {"bio": {"text": "Here for the vibes \n•\nDev | Writing | Art ", "mentioned_profiles": []}}, "username": "theninemystic", "power_badge": false, "display_name": "Nine 🦋🎩⚪", "active_status": "inactive", "verifications": ["0x91f626b833cf1da926174f30c8dc8962747f5ad8"], "follower_count": 103, "custody_address": "0x4bd81ec0cefaf1b8708b77163c7b681f63702ac3", "following_count": 92, "verified_addresses": {"eth_addresses": ["0x91f626b833cf1da926174f30c8dc8962747f5ad8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5QTIGUgV4eFrg0o3k8lGTp?si=njbwYjuxTqOkRkho-U2pbw\"}"}', NULL), - (3257, '0xbc8cc3ef097129e12c24bed0b3b2b6762ee2e8ee', 0, 1, '2024-04-29 19:09:23+00', 0, 3, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4vKKUohxNq6ZV2zFaRRve9?si=c428035bccbe49e0\"}"}', NULL), - (3267, '0xa2346892154e4ba0b73f757c85641cc3ce20b78d', 0, 1, '2024-04-29 21:37:56+00', 0, 7, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 808, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 498, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/787rCZF9i4L1cXGMkdyIk4\"}"}', NULL), - (12397, '0x36c7a2e556c3ad35c704e0f634b8acb79772d8d4', 0, 1, '2024-05-04 03:03:19+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1107, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5657ebd-367c-46a7-31b0-fa036f4aff00/original\"}","{\"url\":\"https://open.spotify.com/track/6aaPceG6TnixvAZQ1wBMdp?si=Fy50kH0xSLm0aHoqEjJZAQ&context=spotify%3Aalbum%3A6lfjbwFGzQ6aSNP1N3JlT8\"}"}', NULL), - (1172886, '0xcca736fb3aa5b047c2636fcb1b984c7a9d097fe7', 2222, 1, '2024-05-14 19:48:00+00', 0, 0, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4249, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 509, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7C8nA84nqtzdTZdKq9YVGF?si=LF3xG5AXSLGk4L2UFJwmmw\"}"}', NULL), - (194, '0x17cbf8f3cdf07bf7bd61d32b569a5349400ec7bd', 0, 1, '2024-04-30 16:19:48+00', 0, 5, '{"fid": 394930, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c62208a-db73-4e89-6e6d-8537be7df100/rectcrop3", "profile": {"bio": {"text": "Chasing Digital Dreams", "mentioned_profiles": []}}, "username": "esish.eth", "power_badge": false, "display_name": "E30SH⛓️🎩", "active_status": "inactive", "verifications": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "follower_count": 1110, "custody_address": "0x1b6902812978e68b00ce878acc9d1ab42f4af60c", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "sol_addresses": ["D1vLxcHLZ2w87wrTniAiDmdQoVMrqG1vsSoCU6uAuT9k"]}}', '{"{\"url\":\"https://open.spotify.com/track/432hUIl3ISDeytYW5XBQ5h?si=edUYYzRBQJqozvW9fhAdVQ\"}"}', NULL), - (3247, '0x99428cd4bbefe36c9c0ef4fbc615ab1ecbaff362', 0, 1, '2024-04-30 01:16:36+00', 0, 6, '{"fid": 389207, "object": "user", "pfp_url": "https://arweave.net/h1MSD_zJMePwRINY5Dx9shWEJXTK33ppmVfw1fNJ_4c/", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0xbf86b64f0bb4ba5f6d703a710cc897beb2b9c33d", "0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 840, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1000, "verified_addresses": {"eth_addresses": ["0xbf86b64f0bb4ba5f6d703a710cc897beb2b9c33d", "0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": ["GAQFxF2rsc5ReuAB21D2aN8vyYrEuSSqfAHZJzPx2A6m"]}}', '{"{\"url\":\"https://open.spotify.com/track/2RcbRwAFUxaiO3rszuEqsz?si=Ejp3mKcRRrqrT_5fbcW06g&context=spotify%3Asearch%3Ajimmy%2Bcli\"}"}', NULL), - (3271, '0x9a28d6513c1a016ae24c9debc8e379365fde938a', 0, 1, '2024-04-29 17:40:47+00', 0, 1, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4oWQeGyPFyr4EpTrv5v0gJ?si=f79208aaf2dc4506\"}"}', NULL), - (3265, '0xbe9ac60ff8028bad2c71b9ccb6837ecbb34282cb', 0, 1, '2024-04-29 12:59:01+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0xmjwnQ3FNE6HuWCt2nHdZ?si=N7a7QNhZRBa_UTETRIQkSA\"}"}', NULL), - (45, '0x338a5da3a1934eeba7941df4884ee15645f634c2', 10, 1, '2024-04-29 19:13:17+00', 0, 1, '{"fid": 304566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d518909b-3e47-418f-6d7e-d63d3e2baf00/original", "profile": {"bio": {"text": "Not your financial advisor", "mentioned_profiles": []}}, "username": "starfish", "power_badge": false, "display_name": "Starfish 🎩🧾", "active_status": "inactive", "verifications": ["0x89ba0cb315a40f39220584f6b92beab0cc860d6c", "0x00c578133859d2df41a80dcf1b34fc8734c30a1a"], "follower_count": 505, "custody_address": "0x89ba0cb315a40f39220584f6b92beab0cc860d6c", "following_count": 559, "verified_addresses": {"eth_addresses": ["0x89ba0cb315a40f39220584f6b92beab0cc860d6c", "0x00c578133859d2df41a80dcf1b34fc8734c30a1a"], "sol_addresses": ["CJqE2Lg6xgCJKnmKKWToayFre9e4Nz4FHjTQtGdtYWuL"]}}', '{"{\"url\":\"https://open.spotify.com/track/1lCRw5FEZ1gPDNPzy1K4zW?si=F34kFsqhRZCoZdnv7BP2mw&context=spotify%3Asearch%3Awe%2Bare%2Bthe\"}"}', NULL), - (12402, '0x144a16e84f10602c3bc2ee551fa460b5ca1fa01e', 0, 1, '2024-05-04 02:34:20+00', 0, 25, '{"fid": 321850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ba65d97-6ed7-4c6f-d0c6-d8faf7e8ff00/rectcrop3", "profile": {"bio": {"text": "live without regrets ☕\n#perlplayer", "mentioned_profiles": []}}, "username": "rootrun100", "power_badge": false, "display_name": "Mattt🎩🍖🔵", "active_status": "inactive", "verifications": ["0x73cc0bec7a4d54853adb418ed3149baa88912752"], "follower_count": 2772, "custody_address": "0x73cc0bec7a4d54853adb418ed3149baa88912752", "following_count": 1571, "verified_addresses": {"eth_addresses": ["0x73cc0bec7a4d54853adb418ed3149baa88912752"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/63f38d5f-57f3-4983-aaf6-c29855426500/original\"}","{\"url\":\"https://open.spotify.com/track/0COqiPhxzoWICwFCS4eZcp?si=dsaheEeMR_Ccy_DpbRKDog\"}"}', NULL), - (3224, '0x2a8049c86a95680892af8a38d7214c0a3f3dc8ad', 0, 1, '2024-04-30 01:25:49+00', 0, 1, '{"fid": 269506, "object": "user", "pfp_url": "https://i.imgur.com/2dk2On0.jpg", "profile": {"bio": {"text": "Narrative Hunter l Profit & Vibes Maximalist | Replyguy Maxi | Memecoin Analyst | Betting More", "mentioned_profiles": []}}, "username": "cryptohaku", "power_badge": false, "display_name": "Haku", "active_status": "inactive", "verifications": ["0xe51c3ac4bd40486aeebf55a9b9336a70f0a25b34"], "follower_count": 241, "custody_address": "0x544ba7545cc6f02bb4e96132654975e1743cf511", "following_count": 948, "verified_addresses": {"eth_addresses": ["0xe51c3ac4bd40486aeebf55a9b9336a70f0a25b34"], "sol_addresses": ["FqiTYt2owQcU8QqmXAoPRi5wx7ptRdcA22e58GUwP4o5"]}}', '{"{\"url\":\"https://open.spotify.com/track/78KMAp3NEiw41AgG0bI7GS?si=YhlT2KjGSsKihFtZacvspg&context=spotify%3Aplaylist%3A37i9dQZF1EQpoj8u9Hn81e\"}"}', NULL), - (225, '0x108e7bc2e4eac38ba710bd364da25093e56d5f70', 0, 1, '2024-04-30 10:22:57+00', 0, 4, '{"fid": 397691, "object": "user", "pfp_url": "https://i.imgur.com/Y4A5zoR.jpg", "profile": {"bio": {"text": "Astrophotographer from Ireland.", "mentioned_profiles": []}}, "username": "ronanhunt", "power_badge": true, "display_name": "Ronan Hunt 🎩✨🆓🍖", "active_status": "inactive", "verifications": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "follower_count": 1638, "custody_address": "0x0b168a222d0950b3ef58d7d8be3e647be65ca4d5", "following_count": 1282, "verified_addresses": {"eth_addresses": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "sol_addresses": ["CUAmbyMbPL7Tg4HAXyk28noTNQqgz5M1Ymi98j5yVgMx"]}}', '{"{\"url\":\"https://open.spotify.com/track/4JGKZS7h4Qa16gOU3oNETV?si=pq1UWkwITXmXhZRgK9fMYg&context=spotify%3Aplaylist%3A37i9dQZF1E8Q5gc33a3TwZ\"}"}', NULL), - (3273, '0x91386256e9101c721151f784b27624007622894c', 0, 1, '2024-04-29 20:55:44+00', 0, 2, '{"fid": 332107, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifcmuzg4qizchkjhn3lqqeoynuqb6zih6osllimayl5oto6cdxzxy", "profile": {"bio": {"text": "Passion for music and cryptocurrencies🎸🔥\n\n\n\nA space to continue and recreate🍀🎩🪩🎧", "mentioned_profiles": []}}, "username": "ivanmax17", "power_badge": false, "display_name": "Ivan Angola 🎩🌀👁️", "active_status": "inactive", "verifications": ["0x3ce1a71383c7651d4770d5f4fdd5606dc2e4dd1a"], "follower_count": 530, "custody_address": "0x347d7935960ab32d87dc31559457155d4b05d825", "following_count": 568, "verified_addresses": {"eth_addresses": ["0x3ce1a71383c7651d4770d5f4fdd5606dc2e4dd1a"], "sol_addresses": ["4E6wG1hp9mujwrkzZYzTg4B5w9DtARPohTfks5mN4brx"]}}', '{"{\"url\":\"https://open.spotify.com/track/1oQjPp1I7cwVE24JivbhzT?si=AX7c-8SpThO3Eaioj3pKbA\"}"}', NULL), - (3269, '0x8f857ce43d2f4f343d7320c39e6d70f3e3523a35', 0, 1, '2024-04-29 14:35:32+00', 0, 1, '{"fid": 410309, "object": "user", "pfp_url": "https://i.imgur.com/b91bzlm.jpg", "profile": {"bio": {"text": "Sprinkling love and kindness any way I can🧚🏼‍♀️❤️‍🔥", "mentioned_profiles": []}}, "username": "l-i-a", "power_badge": false, "display_name": "l-i-a❤️‍🔥", "active_status": "inactive", "verifications": ["0x9f714d8882fdf99f14eba000ae583ea4ddcf0b7a"], "follower_count": 42, "custody_address": "0xe83b4273fe9246932be123c77719e951a43d0056", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x9f714d8882fdf99f14eba000ae583ea4ddcf0b7a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/787Y2idwCU2Rk60Prv4wpr?si=Soi_zDlERLa1snWpYs8baA&context=spotify%3Aplaylist%3A37i9dQZF1EIdcGwbPaDuSv\"}"}', NULL), - (3260, '0xa79d5f293a22aa9d0c79a1573a5143f6d31e3508', 0, 1, '2024-04-29 18:53:01+00', 0, 1, '{"fid": 440524, "object": "user", "pfp_url": "https://i.imgur.com/MnlaEGm.jpg", "profile": {"bio": {"text": "Photographer📸 | Music nerd | Sports guy | Cinephile | I also love to joke about shit.", "mentioned_profiles": []}}, "username": "sinadnl", "power_badge": false, "display_name": "Sina🎩", "active_status": "inactive", "verifications": ["0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7"], "follower_count": 529, "custody_address": "0xb8a33c60c65f1c21f488d20eb1debfb47829ca53", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/60a0Rd6pjrkxjPbaKzXjfq?si=6hbglQxzROGJ7Y9tGhPNqA\"}"}', NULL), - (3274, '0x64a27344ca7d7c7187c4f749d5a42a4fc272427e', 0, 1, '2024-04-29 18:44:18+00', 0, 3, '{"fid": 394930, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c62208a-db73-4e89-6e6d-8537be7df100/rectcrop3", "profile": {"bio": {"text": "Chasing Digital Dreams", "mentioned_profiles": []}}, "username": "esish.eth", "power_badge": false, "display_name": "E30SH⛓️🎩", "active_status": "inactive", "verifications": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "follower_count": 1110, "custody_address": "0x1b6902812978e68b00ce878acc9d1ab42f4af60c", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "sol_addresses": ["D1vLxcHLZ2w87wrTniAiDmdQoVMrqG1vsSoCU6uAuT9k"]}}', '{"{\"url\":\"https://open.spotify.com/track/2MeYsitFbcxoNVCO31Vjmz?si=d9DRQuSrRgSniHGZkMQ1gA\"}"}', NULL), - (3272, '0x888775f3a05e885d831b7660a31101593700a30c', 0, 1, '2024-04-29 18:35:05+00', 0, 11, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 808, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 498, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/7sZCAHP2duHwr5M5K7lHsb\"}"}', NULL), - (238, '0x20356bb31f03233e761c24de7a0b123c8b2b97ca', 0, 1, '2024-04-30 10:43:48+00', 0, 7, '{"fid": 252500, "object": "user", "pfp_url": "https://i.imgur.com/n6B8lrt.jpg", "profile": {"bio": {"text": "abstract expression + coding \n***mchx.space", "mentioned_profiles": []}}, "username": "mchx", "power_badge": true, "display_name": "mchx", "active_status": "inactive", "verifications": ["0x365c231a37e1de128e62cf173923a7fbae785860"], "follower_count": 819, "custody_address": "0xf213708e3c63cdea18ec795722c6a9f007fc2ecf", "following_count": 378, "verified_addresses": {"eth_addresses": ["0x365c231a37e1de128e62cf173923a7fbae785860"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0SyMK2z60yrbb5O6E2aAVB?si=fdf9b8385d0a40e4\"}"}', NULL), - (3252, '0x149dc8185e8e0ea2a4f05e4a908a882bdeb1b2e0', 0, 1, '2024-04-30 05:43:08+00', 0, 11, '{"fid": 446185, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f2e5e7d-2a61-42f7-8288-30319dcbbe00/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂\n초신속 맞팔 / f4f / I’m tylenol Lover in Republic of Korea. I can’t living without tylenol", "mentioned_profiles": []}}, "username": "tylenol", "power_badge": false, "display_name": "TYLENOL / 타이레놀", "active_status": "inactive", "verifications": ["0xb3b6952a8cd1460c58b809f0f6d3cac768fe0f2d"], "follower_count": 2336, "custody_address": "0x29467fbaa26236b71ab7ea8c680e6ccb8af5f004", "following_count": 2522, "verified_addresses": {"eth_addresses": ["0xb3b6952a8cd1460c58b809f0f6d3cac768fe0f2d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7oQh96s9YemWG3A4zkIbrU?si=HjiHwjWtQweNXv7fEjoflA\"}"}', NULL), - (12403, '0xf91c9baebb93b4f41e8e0b8108b681199c2cd55b', 0, 1, '2024-05-04 03:25:23+00', 0, 6, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🍡", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28"], "follower_count": 2097, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 721, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0iXgVG5OegytT5TskDj4BP\"}"}', NULL), - (221, '0x552429853168d4801a9fcaaa173e9196ce176f53', 0, 1, '2024-04-30 06:44:59+00', 0, 4, '{"fid": 214841, "object": "user", "pfp_url": "https://i.imgur.com/4vS5SkI.jpg", "profile": {"bio": {"text": "Sapiens qui prospicit - Wannabe Polymath. Interested in art, music, history, philosophy and religion.", "mentioned_profiles": []}}, "username": "maurice", "power_badge": true, "display_name": "Maurice", "active_status": "inactive", "verifications": ["0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f"], "follower_count": 701, "custody_address": "0xbf0de1ac8bf65b2e7273f355a3e31df41eed1147", "following_count": 211, "verified_addresses": {"eth_addresses": ["0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3NaQ3BFKDXjpv254bWeV0S?si=W8yWywFaTaC_EF4ZcEWK1Q\"}"}', NULL), - (3263, '0xeee02b552586bd9e0ad245fa64339e7608854443', 0, 1, '2024-04-29 13:17:20+00', 0, 1, '{"fid": 211286, "object": "user", "pfp_url": "https://i.imgur.com/0IrXyw6.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "yeti0x", "power_badge": false, "display_name": "Yeti", "active_status": "inactive", "verifications": ["0x7fa77093e83c9292c2357ea799ac2c57ec138203"], "follower_count": 151, "custody_address": "0x03de11224567ad98954df6a84341ba9b865186b5", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x7fa77093e83c9292c2357ea799ac2c57ec138203"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5g4P55Zlgd4eWnp7qYnjnW?si=c849f77ab9614abc\"}"}', NULL), - (3275, '0x1c251a760121fb67ec7dc9b031a63a9d862fc07f', 0, 1, '2024-04-29 15:23:35+00', 0, 3, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩🍖", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 244, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1oYYd2gnWZYrt89EBXdFiO?si=OtZuZWJeRuSxaAs-uSg1YA\"}"}', NULL), - (280, '0xb204021f0f8823d0b15499dde14a68c32a2c357e', 0, 1, '2024-04-30 22:23:41+00', 0, 1, '{"fid": 2915, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb1410ab-b9d5-490f-3b3a-cdbb20c94b00/original", "profile": {"bio": {"text": "🏪 Growth Marketer | 🤓 Beta Nerd | 🖼️ Collector | 👨‍💻 Nomad | 🌐 DAOs | 🤑 DeFi | 🎵Music", "mentioned_profiles": []}}, "username": "gaurang.eth", "power_badge": false, "display_name": "Gaurang Desai 🎩🔮", "active_status": "inactive", "verifications": ["0x0040daac32d83c78546ae36da42a496b28ab09e1"], "follower_count": 533, "custody_address": "0x7217a07c230de31a432e136c9cc48f80aef4c969", "following_count": 682, "verified_addresses": {"eth_addresses": ["0x0040daac32d83c78546ae36da42a496b28ab09e1"], "sol_addresses": ["7cLXS1j9z42jKM9bEpX2NAhoXj5FwUpnmVwkJ23gXk7K"]}}', '{"{\"url\":\"https://www.sound.xyz/gaurang.eth/post/839ce214-190d-4924-ba8a-18ca3456e483\"}"}', NULL), - (262, '0x2ea7899c2183e0b6a2e4e10ae40a043a94b9224a', 0, 1, '2024-04-30 17:48:10+00', 0, 3, '{"fid": 316147, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84e6428c-1847-4e1c-829f-727f61e7f100/original", "profile": {"bio": {"text": "Italian electronic music producer creating immersive audiovisual experiences with the most promising artists in digital art • linktr.ee/criswvr", "mentioned_profiles": []}}, "username": "criswvr", "power_badge": false, "display_name": "CRIS WAR", "active_status": "inactive", "verifications": ["0x5db00ad0da2a08547961dd9e5a5ca2ba56558f4c"], "follower_count": 377, "custody_address": "0xd52d0aee3439d809e103ea420dbe9ee5e972c74f", "following_count": 235, "verified_addresses": {"eth_addresses": ["0x5db00ad0da2a08547961dd9e5a5ca2ba56558f4c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/owKEiheX5ByhdY4D6\"}"}', NULL), - (12405, '0x471ec62a1c37e6bbbb9f87d794302baff86a9040', 0, 1, '2024-05-04 03:23:34+00', 0, 5, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1107, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec9bdb69-5fb1-47a8-ce7c-d42388c7c700/original\"}","{\"url\":\"https://open.spotify.com/track/3ZBSXNYdTZVaBUQI3E2rF6?si=n2Uip8-KQ9WvCUWZlkrdGg&context=spotify%3Aartist%3A5cMgGlA1xGyeAB2ctYlRdZ\"}"}', NULL), - (3290, '0x1ca58707b1a9bf627b655cbca0133ef985acf2c1', 0, 1, '2024-04-29 13:03:44+00', 0, 8, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e8ec697-cc6c-4df3-e16b-1d9ee2aeb500/original\"}","{\"url\":\"https://open.spotify.com/track/5OZpT4x5NZTbtAomkGgRyK?si=094Ul2l1SM6ZFviLjSD5ng&context=spotify%3Asearch%3Atrance%2Bfarmers\"}"}', NULL), - (3302, '0x04d4851a340777e8e6fafbae905744b8e0a7dc46', 0, 1, '2024-04-29 12:59:00+00', 0, 1, '{"fid": 4513, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/473cb368-537c-4d53-c37a-ef8e08fe7d00/original", "profile": {"bio": {"text": "Music NFT collector and activist. First things coffee ☕️. Host of the /mls channel", "mentioned_profiles": []}}, "username": "seattlecrypto.eth", "power_badge": true, "display_name": "Jer @ FarCon | seattlecrypto.eth", "active_status": "inactive", "verifications": ["0x0f23189b256939996dec01766f6b2e581afb5bb3", "0x287e98cefeef5c834fb03811963abd6fca5e525f", "0x247a1e2bf4c0a0a13d35661d8cc6e4c01246e1f2", "0x1ae71ced9eb2104d8f4ec4f2467ad4f04d12a8c0"], "follower_count": 818, "custody_address": "0x6ae8de982c7cdc8c97ef3ebf85924c1da1c0ba1a", "following_count": 590, "verified_addresses": {"eth_addresses": ["0x0f23189b256939996dec01766f6b2e581afb5bb3", "0x287e98cefeef5c834fb03811963abd6fca5e525f", "0x247a1e2bf4c0a0a13d35661d8cc6e4c01246e1f2", "0x1ae71ced9eb2104d8f4ec4f2467ad4f04d12a8c0"], "sol_addresses": ["GAGrSfLvsAqukjCehN5kwnXax61oD18ZhJjTyximggB8"]}}', '{"{\"url\":\"https://open.spotify.com/track/2NnXpWnw2DNFifptwHJ3l5?si=AxpDXNcRTAWc1DuRwjcJTA&context=spotify%3Aalbum%3A40hjsd8QSViVe8o9aKu7Du\"}"}', NULL), - (3326, '0x2bd4ac8c07be044a49058b8cab60bdb876dd48e6', 0, 1, '2024-04-29 11:03:25+00', 0, 1, '{"fid": 368989, "object": "user", "pfp_url": "https://i.imgur.com/oTuYt2x.gif", "profile": {"bio": {"text": "ReplyGuy\n/wcast-anonymous ", "mentioned_profiles": []}}, "username": "dante4ever", "power_badge": false, "display_name": "Dante 🎩 🔵🏰💉", "active_status": "inactive", "verifications": ["0x610dce6c9cb8e035ca7ebb3f7e3df1674c1572ad"], "follower_count": 1587, "custody_address": "0x89f3ced2e83dbef74cab376ba54c0f57e6299c1e", "following_count": 905, "verified_addresses": {"eth_addresses": ["0x610dce6c9cb8e035ca7ebb3f7e3df1674c1572ad"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5qwuP7ijQePKsUl8zSJUBD?si=S64rkdPURYCzEaruBFRKtg\"}"}', NULL), - (241, '0xca03d89f293d3e3c3fbee5b542d72a3d00eabdca', 0, 1, '2024-05-01 18:48:28+00', 0, 0, '{"fid": 504150, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7647417e-862d-4f8c-8ee4-1221a746f400/rectcrop3", "profile": {"bio": {"text": "Innovator. Artist. Merging Creativity with Tech. Creating opportunities using AI & crypto for Creatives.\nKnoCadia Labs \n", "mentioned_profiles": []}}, "username": "degem", "power_badge": false, "display_name": "Rishi G", "active_status": "inactive", "verifications": ["0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9", "0xf8998ef0dea767d7335907a75213f47a8f7152df", "0x2213b580914ee4a07a80b3c7e911950165fcad6b"], "follower_count": 15, "custody_address": "0x6e455fc8363ce39457de24bf91cf4b69d86dede6", "following_count": 84, "verified_addresses": {"eth_addresses": ["0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9", "0xf8998ef0dea767d7335907a75213f47a8f7152df", "0x2213b580914ee4a07a80b3c7e911950165fcad6b"], "sol_addresses": ["8DUv4T787gfxuduz5DnRVCiM86gu7wfUgaTj6R8h4NNy"]}}', '{"{\"url\":\"https://www.sound.xyz/noculture/aphiemi?referral=0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9\"}"}', NULL), - (305, '0xbd92f6b23ea949842174c5232ccfd12bbbd714a5', 0, 1, '2024-05-01 00:51:50+00', 0, 2, '{"fid": 237145, "object": "user", "pfp_url": "https://i.imgur.com/XSlslvN.jpg", "profile": {"bio": {"text": "Just normal people", "mentioned_profiles": []}}, "username": "kimo69", "power_badge": false, "display_name": "Bowoaan 🟣♾️", "active_status": "inactive", "verifications": ["0xb1607e8fcead1e10317bda673691cbb274d653f4"], "follower_count": 468, "custody_address": "0xd841b493c0c37fcf3e54d874a9317d8d8126600c", "following_count": 575, "verified_addresses": {"eth_addresses": ["0xb1607e8fcead1e10317bda673691cbb274d653f4"], "sol_addresses": ["BiH3RGrg7XjHuNbnQ48jo152Bu5FRmazhqQN9zzr5VHR"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0xb1607e8fcead1e10317bda673691cbb274d653f4\"}"}', NULL), - (12408, '0xadaeceb291df1ea0925006558cf2bb1599dd0bbe', 0, 1, '2024-05-03 22:46:49+00', 0, 1, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 34, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/adhd-is-my-superpower?referral_source=link\"}"}', NULL), - (3279, '0xbb60c275d08801659449be4080dc5253796ab2ec', 0, 1, '2024-04-29 13:54:36+00', 0, 2, '{"fid": 296520, "object": "user", "pfp_url": "https://i.imgur.com/oGr8fRi.gif", "profile": {"bio": {"text": "Internet & AI Futurist. Interested in building a future with impact.\n\ntmase.xyz", "mentioned_profiles": []}}, "username": "tmase.eth", "power_badge": true, "display_name": "tyler 🎩", "active_status": "inactive", "verifications": ["0xcaf3f5aa5bf120407f9156cbd54c78bd440bfbc3", "0xd00481ee5fb57348231ec22411e053b7c6b0ec4d", "0xd00481ee5fb57348231ec22411e053b7c6b0ec4d"], "follower_count": 846, "custody_address": "0x1fb229e67c383e0e7fc46e3ec72ccbdc4bb63a61", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xcaf3f5aa5bf120407f9156cbd54c78bd440bfbc3", "0xd00481ee5fb57348231ec22411e053b7c6b0ec4d", "0xd00481ee5fb57348231ec22411e053b7c6b0ec4d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/24DMpa4roYV1VkykwCSNMG?si=19e1a5c2ad984581\"}"}', NULL), - (3304, '0x739bb1151c5f44390aa04a8682674e84b3091b0e', 0, 1, '2024-04-29 12:37:18+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 408, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 520, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2DBlfjL5chsdeULzhTp5K8?si=89Ibj9DcT0-IG63sPFZ-GA\"}"}', NULL), - (3316, '0x4ded59fec2fac476e2eec635c8ac4905379e24bf', 0, 1, '2024-05-02 03:07:29+00', 0, 0, '{"fid": 497851, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07c8d675-2bba-4ec6-0d68-b3f3c52f8f00/rectcrop3", "profile": {"bio": {"text": "Audio Engineer & Crypto Degen \nChiraq’s OG Sadboy 🙃", "mentioned_profiles": []}}, "username": "massacre", "power_badge": false, "display_name": "Massacre🥷", "active_status": "inactive", "verifications": ["0x0912d9701109f8ee3f948c60d6ad491c351227dd"], "follower_count": 19, "custody_address": "0xabae7290872baa2bf63e0f06d377d3ffab743e55", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x0912d9701109f8ee3f948c60d6ad491c351227dd"], "sol_addresses": ["AtSFCNsp1kGfMNZ6JfXxEUyMZ3UAcu8xSS7d8819eAWN"]}}', '{"{\"url\":\"https://on.soundcloud.com/tvQoD9ZebDvjQsw89\"}"}', NULL), - (3328, '0x5a900a6bff8e0104635226c65000405c86405cd9', 0, 1, '2024-04-29 12:46:44+00', 0, 3, '{"fid": 12495, "object": "user", "pfp_url": "https://i.imgur.com/tEF4Kqf.jpg", "profile": {"bio": {"text": "Landscape & Travel Photographer \n\nhttps://linktr.ee/korayozpalamutcu", "mentioned_profiles": []}}, "username": "korayozpalamutcu", "power_badge": false, "display_name": "Koray🎩", "active_status": "inactive", "verifications": ["0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec"], "follower_count": 591, "custody_address": "0x20893fe826efe9bf65bb2c56dae06cef48808eab", "following_count": 446, "verified_addresses": {"eth_addresses": ["0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3YgkTpILtOWngT7PVHg8kO?si=107CBJE2QZSCQfP8VO1mRA&context=spotify%3Aartist%3A3XsgWn63EnA4wYZBjVyxjf\"}"}', NULL), - (3340, '0x8a8ef5af030ee0a03080a63ce988178f3cbb97aa', 0, 1, '2024-04-29 23:23:05+00', 0, 4, '{"fid": 483586, "object": "user", "pfp_url": "https://i.imgur.com/1bPSOHG.jpg", "profile": {"bio": {"text": "Tranquilo typewriter artist -\nnoisycoyote.space", "mentioned_profiles": []}}, "username": "noisycoyote", "power_badge": false, "display_name": "NOiSY COYOTE", "active_status": "inactive", "verifications": ["0xf16055e5e0a9f2c07215f8a6931dc1bd1d6ccad8"], "follower_count": 80, "custody_address": "0xbb989c85d1cc3e2faa0cb66e17c282f5d4a028e5", "following_count": 243, "verified_addresses": {"eth_addresses": ["0xf16055e5e0a9f2c07215f8a6931dc1bd1d6ccad8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/noisycoyote/favorite-photographs?in=noisycoyote/sets/leo&si=fa1d121c985c4b5484f35bdd84e88f63&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (320, '0xf87262f6ab64e8f51232dae2845feb5637325eb6', 0, 1, '2024-04-30 14:58:01+00', 0, 2, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": false, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1857, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 961, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/post/fd2e154d-0a36-4fc2-b652-583a2a627548\"}"}', NULL), - (62, '0x3523b716bf56a7ace1e2d00d124717eb17c140ee', 10, 1, '2024-04-29 19:27:15+00', 0, 2, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8889, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/68dc2aec-243f-4c53-9ce2-c46a29dd9f2c\"}","{\"url\":\"https://www.sound.xyz/memba/back-online\"}"}', NULL), - (216, '0x383b01468dc0d1287920442bfed99e21634d58f4', 0, 1, '2024-05-01 15:56:45+00', 0, 1, '{"fid": 347582, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f2c2038-5a6a-4cd5-5f84-8ac1e46bdd00/original", "profile": {"bio": {"text": "Borja Moskv |\nDJ | Producer | Digit Artist | Diehard optimist \nOld JulioIglesias.eth (ENS Domains legend OG @ens__goat ) \nHttps://www.sound.xyz/borjamoskv", "mentioned_profiles": []}}, "username": "borjamoskv", "power_badge": false, "display_name": "Borja Moskv ", "active_status": "inactive", "verifications": ["0x5247299421a3ff724c41582e5a44c6551d135fd3"], "follower_count": 283, "custody_address": "0x9f22c2614d9c044cf55480769e691f4b3d681248", "following_count": 641, "verified_addresses": {"eth_addresses": ["0x5247299421a3ff724c41582e5a44c6551d135fd3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/borja-moskv/vistolovistounpocodepisto\"}"}', NULL), - (3318, '0xe54a5ff14ef8c2f46914ebb47705953a6b6c027c', 0, 1, '2024-04-30 02:56:57+00', 0, 0, '{"fid": 8939, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ababde70-0724-4e15-99ec-44ab3e1b8400/rectcrop3", "profile": {"bio": {"text": "@buidlbox 💫\n(fka @gitcoin events) 💕 one of the /djs ", "mentioned_profiles": []}}, "username": "annelisa", "power_badge": true, "display_name": "annelisa.eth 📍farcon", "active_status": "inactive", "verifications": ["0x31938f42358b993b815cce8e533004eed2146bb6"], "follower_count": 400, "custody_address": "0xddedb00a9fdb399bb2dbf298814f24bee5f19531", "following_count": 111, "verified_addresses": {"eth_addresses": ["0x31938f42358b993b815cce8e533004eed2146bb6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mWSA53Pde1HMVYVq8\"}"}', NULL), - (259, '0x8e66e8158c197960e56f50b38807a7050e23b86a', 250, 1, '2024-05-01 13:01:18+00', 0, 7, '{"fid": 307820, "object": "user", "pfp_url": "https://i.imgur.com/OHAyWGo.gif", "profile": {"bio": {"text": "Take the skinheads bowling, take them bowling.\nSummoning the /bonecollectors ", "mentioned_profiles": []}}, "username": "mikkidoralives", "power_badge": true, "display_name": "Mikki Dora 🦴🔵 🎩🏄🌊", "active_status": "inactive", "verifications": ["0x6a850e6693c41dc33eac2a7a1a9bafa6f0f71a85"], "follower_count": 1245, "custody_address": "0xd2ba84d6aa04345e8b2cb9234cc4f61e5762b38c", "following_count": 1258, "verified_addresses": {"eth_addresses": ["0x6a850e6693c41dc33eac2a7a1a9bafa6f0f71a85"], "sol_addresses": ["4qTuhXg8FLR2aTj6b1o8CsfzJmZLxkHCxWJJT7Vro6ZH"]}}', '{"{\"url\":\"https://on.soundcloud.com/Kk3mjuoCkxzg7RvQA\"}"}', NULL), - (3341, '0x6c578efa1d4970df245053b129130cf88ce8fad9', 0, 1, '2024-04-30 01:03:39+00', 0, 2, '{"fid": 16877, "object": "user", "pfp_url": "https://i.imgur.com/2NiCDo6.jpg", "profile": {"bio": {"text": "prev. EY-Parthenon | JPMorganChase&Co\n\n\n\n\n\nTwitter🐦: x.com/0xMawuko\n\n\n\n\n\n\n\n\n\n\n\n\n\nProbably doing stuff and things.\n\n\n\n\n\n/attestation", "mentioned_profiles": []}}, "username": "emmanuel", "power_badge": true, "display_name": "Emmanuel🦉⌐◨-◨🎩🍥", "active_status": "inactive", "verifications": ["0x1b5f4b3cbff53245ae516b5475be336622dd5dc4"], "follower_count": 2428, "custody_address": "0x2a1d8649a398f98d00742142d5d61a7fa60e5ecd", "following_count": 211, "verified_addresses": {"eth_addresses": ["0x1b5f4b3cbff53245ae516b5475be336622dd5dc4"], "sol_addresses": ["28zvxA2BhesqmTnDCJxeYpYXx4baGfhZhWdbFmgp2Jfq"]}}', '{"{\"url\":\"https://on.soundcloud.com/3ju9qeK3yQUxc33G8\"}"}', NULL), - (293, '0xd111065ea754135bb80ff6797488f3477ab61305', 0, 1, '2024-05-01 14:17:04+00', 0, 1, '{"fid": 270528, "object": "user", "pfp_url": "https://i.imgur.com/xzHwsIk.jpg", "profile": {"bio": {"text": "Doin what I want", "mentioned_profiles": []}}, "username": "drenfx", "power_badge": false, "display_name": "drenfx", "active_status": "inactive", "verifications": ["0x2ae7ac4d95e1bfe1172fae1c8efe9097119216cf"], "follower_count": 151, "custody_address": "0xa24a54732dc34e3bf96269414c7972e2386754c1", "following_count": 272, "verified_addresses": {"eth_addresses": ["0x2ae7ac4d95e1bfe1172fae1c8efe9097119216cf"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/adege/adege-francois-dillinger-zero-hour\"}"}', NULL), - (278, '0xb834e4bbfd82cdceb9be6ce9f94a3a3003cccacb', 0, 1, '2024-05-01 13:06:35+00', 0, 0, '{"fid": 23472, "object": "user", "pfp_url": "https://i.imgur.com/kZDOyHt.jpg", "profile": {"bio": {"text": "I''m a little teapot who didn''t fill out my bio", "mentioned_profiles": []}}, "username": "akiphumi", "power_badge": false, "display_name": "akiphumi ✈️", "active_status": "inactive", "verifications": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "follower_count": 150, "custody_address": "0xd3b4b2a5eb9c49cde9b11050c3c61ea3d81b7507", "following_count": 172, "verified_addresses": {"eth_addresses": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "sol_addresses": ["EmXwqdQXcT7H8QGFaxNrcuCLtEV4TEEVCqNoJDCj59Eq"]}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed?referral=0x95045076fc93a14a4e9b576599479cb4f58a1b11&referral_source=link\"}"}', NULL), - (12409, '0x47e2b3fba856e2c5ed8a35d96858f049bede6403', 0, 1, '2024-05-04 02:43:52+00', 0, 0, '{"fid": 5847, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2b35b2d-1f2a-496a-1b7a-bf26c85c2000/rectcrop3", "profile": {"bio": {"text": "PM @Otherlife- A Moonpay Company 🟣\nInk, emote and semantics on-chain\nhttps://rc.xyz/slivereign", "mentioned_profiles": []}}, "username": "slivereign", "power_badge": false, "display_name": "Slivereign🎩", "active_status": "inactive", "verifications": ["0x64c90f8a492cdf2e1126b0bc1a82d40edd20497e"], "follower_count": 624, "custody_address": "0x0f5a48fdde81ce995e39bcf253a93af119249bca", "following_count": 259, "verified_addresses": {"eth_addresses": ["0x64c90f8a492cdf2e1126b0bc1a82d40edd20497e"], "sol_addresses": ["DvgAY8xniLqwgQ9kXiCRH7Sj9tu9WnTyqSCmys2BuCUa"]}}', '{"{\"url\":\"https://open.spotify.com/track/611WshW3yQKLCQ2pTCOii4?si=e8QU-jw7TaKMNzEzYHxMeg&context=spotify%3Asearch%3Ascreaminh\"}"}', NULL), - (123, '0x56f69a59059891ff91575d5af98df51f6d447d65', 0, 1, '2024-05-01 12:00:24+00', 0, 3, '{"fid": 12949, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQifwMaWueQcg9oLu74EJoDHJ3PifCjUuKydF82rH3RWd?filename=Lucas-Verra-GIF_2.gif", "profile": {"bio": {"text": "Co-founder @ https://poap.studio, the white glove agency on top of #POAP. Ask for your project there 👉 https://poap.studio", "mentioned_profiles": []}}, "username": "gabo", "power_badge": true, "display_name": "Lucas | POAP Studio", "active_status": "inactive", "verifications": ["0x14fc0be8e90ab768226cccf952506ce00bde5029"], "follower_count": 421, "custody_address": "0xe244332a4c92756b243c35d737b1b42ed3a780d2", "following_count": 386, "verified_addresses": {"eth_addresses": ["0x14fc0be8e90ab768226cccf952506ce00bde5029"], "sol_addresses": []}}', '{"{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmfEeWxTr9mWsEbU4fMZfSGut1KmPV3SHhEzxZdd6FsoVb?filename=IMG_5851.png\"}","{\"url\":\"https://open.spotify.com/track/4TBBPZks71c60whhq0PgdP?si=c1W5xWXQR22MaFc9Ou7Qdw&context=spotify%3Aplaylist%3A37i9dQZF1DX9XIFQuFvzM4&pi=e-ljakzpFUQzGf\"}"}', NULL), - (182, '0x75629d94df4a54f217ce27cfa445110d6c44d6cd', 0, 1, '2024-05-01 00:36:26+00', 0, 22, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 2266, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 658, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5tZmLjU4vhPlJb12IweZuB?si=n6z_4WV9QEaSVGux2e7EAg\"}"}', NULL), - (43, '0xf0ceca198ef390ee510835b241bcd99cee76cddb', 10, 1, '2024-04-29 18:13:12+00', 0, 3, '{"fid": 4044, "object": "user", "pfp_url": "https://i.imgur.com/z9xqChs.jpg", "profile": {"bio": {"text": "👷 Building @interestedfyi (interested.fyi) to help people get /jobs 👔 🟪 #39 + 76 ⏪Prev. @ConsenSysMesh🦇🔊 Class of ’17 🤠", "mentioned_profiles": []}}, "username": "alec.eth", "power_badge": true, "display_name": "alec.eth🤠at FarCon", "active_status": "inactive", "verifications": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "follower_count": 3550, "custody_address": "0x8407d58683d74c59436c7d38218239082163fcf9", "following_count": 783, "verified_addresses": {"eth_addresses": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2MLHyLy5z5l5YRp7momlgw?si=Lx1gqCLDRcudlHcLotPSeQ&context=spotify%3Asearch%3Aculids\"}"}', NULL), - (235, '0x5396fde3bc8a46e60b6b33811e03eb8ddbff2e99', 0, 1, '2024-04-30 08:29:39+00', 0, 0, '{"fid": 441339, "object": "user", "pfp_url": "https://i.imgur.com/Dm8d6SG.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nassive", "power_badge": false, "display_name": "Chinazes ", "active_status": "inactive", "verifications": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "follower_count": 187, "custody_address": "0xd64038b044bdaf77f537086fd76e0f60ad56bbc8", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VQf4Q\"}"}', NULL), - (3342, '0x4d2297744fb10c0003164022bf9b849f073e8a46', 0, 1, '2024-04-29 12:28:12+00', 0, 2, '{"fid": 21348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7abbffe-22f9-4801-fed9-ceb52917dd00/original", "profile": {"bio": {"text": "Data analyst at nft18.com. Drawing vectors. Host /dataviz\nhttps://linktr.ee/besanciahime", "mentioned_profiles": []}}, "username": "konohime.eth", "power_badge": true, "display_name": "Konohime", "active_status": "inactive", "verifications": ["0x3fe465902811769e3e8738cd162632e85dcbaa86", "0xf85e13c32734ea54ec31be5c9b3e6ed0ae40cbad"], "follower_count": 576, "custody_address": "0x3d069726daa8b375def907609afa7e1d2958d2fe", "following_count": 428, "verified_addresses": {"eth_addresses": ["0x3fe465902811769e3e8738cd162632e85dcbaa86", "0xf85e13c32734ea54ec31be5c9b3e6ed0ae40cbad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hundreds/fighter\"}"}', NULL), - (3425, '0xd25a9216c9dee74a92b075e0926f276f078e7901', 0, 1, '2024-04-29 17:37:03+00', 0, 3, '{"fid": 5064, "object": "user", "pfp_url": "https://i.imgur.com/M7F0Fu6.png", "profile": {"bio": {"text": "DJ and Producer based in Scotland. \nPassionate about Web3 and Techno.", "mentioned_profiles": []}}, "username": "acutek", "power_badge": false, "display_name": "Acutek", "active_status": "inactive", "verifications": ["0x24a0e4ee348f33252e83fe1e824499381dd21aa9"], "follower_count": 284, "custody_address": "0xf029cfe64da2e81d7cce2723f9b46103ae8a913f", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x24a0e4ee348f33252e83fe1e824499381dd21aa9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/acutek/releases\"}"}', NULL), - (7015, '0x3a5446307ac6182fa6f45feab63764544fe48318', 0, 1, '2024-05-04 14:36:27+00', 0, 10, '{"fid": 512443, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b911dcfe-964d-4d63-288a-ca7c31f1dd00/original", "profile": {"bio": {"text": "Hi my name is Zohan, but better call me Scrapy!", "mentioned_profiles": []}}, "username": "!512443", "power_badge": false, "display_name": "Scrapy", "active_status": "inactive", "verifications": ["0x555e888a040a183ff0e0a7b2586798184d7f8a43"], "follower_count": 36, "custody_address": "0x0b6fcd72cc5da766f7178fcba7088dcdfb60747e", "following_count": 46, "verified_addresses": {"eth_addresses": ["0x555e888a040a183ff0e0a7b2586798184d7f8a43"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4FNm4ZJaUVLDCMXcqwS6zY?si=PdZZb9jeTA-aZU3hMDF09Q\"}"}', NULL), - (176, '0x6dddb9453e74437a63cd83f9985312de8bf3a864', 0, 1, '2024-05-01 00:24:35+00', 0, 8, '{"fid": 196444, "object": "user", "pfp_url": "https://i.imgur.com/XB6nMY2.jpg", "profile": {"bio": {"text": "Self-taugh artist 2D animator from Argentina.", "mentioned_profiles": []}}, "username": "pamilo", "power_badge": false, "display_name": "pamilo🎩", "active_status": "inactive", "verifications": ["0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07"], "follower_count": 302, "custody_address": "0xdb464bfd2d6b35908fce250e0856039557c8186c", "following_count": 181, "verified_addresses": {"eth_addresses": ["0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e18b8226-2c8b-4b22-f8ea-f704c1f34e00/original\"}","{\"url\":\"https://open.spotify.com/track/3E4WkKnCQNVtDi046HMq6L?si=rVwJn8NqSxSM4ouhbPoMPQ\"}"}', NULL), - (172, '0x9602931dd05ee3a45c63a2e14e506d60c045cb47', 0, 1, '2024-04-30 19:44:50+00', 0, 0, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2423, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ByAIlEEnxYdvpnezg7HTX?si=486V5NtTRw-uaqHEK9KbHg\"}"}', NULL), - (3283, '0x4c746e4765b4dae4d0ac637f36f1b1e117948af7', 0, 1, '2024-04-29 13:33:48+00', 0, 10, '{"fid": 320215, "object": "user", "pfp_url": "https://raw.seadn.io/files/b10d488f78d5cbf3432d291d31280c2f.svg", "profile": {"bio": {"text": "干杯🥂🥔 /wakecoin /1g /copytrade /maxbidding /bob /369 /cry /church /prayer /gtavi /hamlet /jail /leonida /wod /freebase /vicecity /wc\n\nLocation:\nLavendar Town", "mentioned_profiles": []}}, "username": "injustcuz", "power_badge": true, "display_name": "◾️dycp◾️1g", "active_status": "inactive", "verifications": ["0x7f49f36d42d7652f78bc91fd84ed2fb6efc8bf03"], "follower_count": 2082, "custody_address": "0xa57e534ad5d4100cc015aadafa9aa88b3666d3fc", "following_count": 1068, "verified_addresses": {"eth_addresses": ["0x7f49f36d42d7652f78bc91fd84ed2fb6efc8bf03"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":320215,\"hash\":\"0xabfcc457ed282f708875a847503189213bf81e1f\"}}","{\"url\":\"https://open.spotify.com/track/1VKPiQJnV15flF5B3zeocD\"}"}', NULL), - (227, '0x2381dc45026232ac6a966664bdd16ff0d798dd62', 0, 1, '2024-05-01 02:23:43+00', 0, 1, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 217, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 972, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61f55166-18c7-4880-638c-b112b6362200/original\"}","{\"url\":\"https://on.soundcloud.com/Tj5CE\"}"}', NULL), - (3319, '0x19ff60a67c333e81687dadfbcd6edd6eecdba249', 0, 1, '2024-05-02 03:07:28+00', 0, 1, '{"fid": 838, "object": "user", "pfp_url": "https://arweave.net/7hFATkROyNx10j_d_VQJmMSX2-20k5WmcTikN0al5UU/", "profile": {"bio": {"text": "creating kismet", "mentioned_profiles": []}}, "username": "luciano", "power_badge": true, "display_name": "Luciano ", "active_status": "inactive", "verifications": ["0x2bbcac12706b47428664d553af33caf33684ef31"], "follower_count": 1399, "custody_address": "0x032bc5b455d99fb8e0c8270296a3b7116f099554", "following_count": 274, "verified_addresses": {"eth_addresses": ["0x2bbcac12706b47428664d553af33caf33684ef31"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x94aaf5ceb457057ac4d1588257988d487272984f\"}"}', NULL), - (3429, '0x5feecd86f6dea01a84508c668117c87ea43d0725', 0, 1, '2024-04-30 05:43:07+00', 0, 2, '{"fid": 402867, "object": "user", "pfp_url": "https://i.imgur.com/6XCeVHn.jpg", "profile": {"bio": {"text": "MUSIC DEGEN (🍔,🥷) \nhamburglar.eth ", "mentioned_profiles": []}}, "username": "hamburglar", "power_badge": false, "display_name": "hamburglar", "active_status": "inactive", "verifications": ["0x10a381cfdd62c21c4ab1f91bee2ac3faf6ddf2fc"], "follower_count": 82, "custody_address": "0xb3a032d07b4466a51979e325361c380e8a3cc977", "following_count": 204, "verified_addresses": {"eth_addresses": ["0x10a381cfdd62c21c4ab1f91bee2ac3faf6ddf2fc"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/hamburglar/post/a0e6cffd-7208-4c11-921e-b4deb39c99b6\"}"}', NULL), - (3417, '0xdc3ca8ef9c0964cf533962742941523281ccea86', 0, 1, '2024-04-29 20:25:49+00', 0, 1, '{"fid": 387368, "object": "user", "pfp_url": "https://i.imgur.com/oL269KD.jpg", "profile": {"bio": {"text": "@karmawav + @violetta. Music duo & couple. Exploring music in web3. Building a better WRLD via @wavwrld 🌊 2/77 of Chaos & @songcamp 🎶 /djs", "mentioned_profiles": []}}, "username": "karmavioletta", "power_badge": false, "display_name": "KarmaVioletta", "active_status": "inactive", "verifications": ["0xc678a7af0e40ba1e99390b31dbdb7099c563c935"], "follower_count": 28, "custody_address": "0x7a870809ebd7fdb9fd5444f3b0afa1f1fa6d3bbd", "following_count": 21, "verified_addresses": {"eth_addresses": ["0xc678a7af0e40ba1e99390b31dbdb7099c563c935"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/grateful?referral=0x68375427c29995b277ad343aa89be591926c6088\"}"}', NULL), - (3285, '0xf7060139f99e3838502825ce55baf7b0e52b610a', 0, 1, '2024-04-29 13:36:46+00', 0, 15, '{"fid": 192631, "object": "user", "pfp_url": "https://arweave.net/ecbDmMZsi8L1cy_V9DP9-Gdhd-WDATr3pELoHUKd4GQ/", "profile": {"bio": {"text": "GM:)\nCrypoto Wanderer", "mentioned_profiles": []}}, "username": "nanamika", "power_badge": false, "display_name": "nanamika🎩", "active_status": "inactive", "verifications": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "follower_count": 1006, "custody_address": "0xce9779bb8be935083bf80ef70ffedeb2b095e4c6", "following_count": 1329, "verified_addresses": {"eth_addresses": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "sol_addresses": ["EeMPV4WxJm3Pd2Cy3JZaTX6EtkLBJK4XiEeMkaH6tBQA"]}}', '{"{\"url\":\"https://open.spotify.com/track/6o5s5v9pO5VuaGtrsQQ9H3?si=yRsNpDFPR7Wt0088IS8XRg\"}"}', NULL), - (3333, '0x723b5c87dfe855c868a0c556fe9071085fbb2a07', 0, 1, '2024-04-30 02:44:36+00', 0, 1, '{"fid": 461708, "object": "user", "pfp_url": "https://i.imgur.com/PMNEpX4.jpg", "profile": {"bio": {"text": "Multidiscip. Artist|\nMusic Producer| Award-Winning Score Composer & Sound Designer|\nIndustrial Designer| Digital Artist| AI Researcher\n\nLinktr.ee/Matthewbian", "mentioned_profiles": []}}, "username": "matthewbian", "power_badge": false, "display_name": "Matthewbian 🎩", "active_status": "inactive", "verifications": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "follower_count": 129, "custody_address": "0x2ff473b3634c370c3981b3decbdb6401461da94c", "following_count": 329, "verified_addresses": {"eth_addresses": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ykeQv\"}"}', NULL), - (3321, '0x5c274d2e87b7268df7a5dd82ca65dec9e9a5f2de', 0, 1, '2024-05-02 04:38:26+00', 0, 1, '{"fid": 347582, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f2c2038-5a6a-4cd5-5f84-8ac1e46bdd00/original", "profile": {"bio": {"text": "Borja Moskv |\nDJ | Producer | Digit Artist | Diehard optimist \nOld JulioIglesias.eth (ENS Domains legend OG @ens__goat ) \nHttps://www.sound.xyz/borjamoskv", "mentioned_profiles": []}}, "username": "borjamoskv", "power_badge": false, "display_name": "Borja Moskv ", "active_status": "inactive", "verifications": ["0x5247299421a3ff724c41582e5a44c6551d135fd3"], "follower_count": 283, "custody_address": "0x9f22c2614d9c044cf55480769e691f4b3d681248", "following_count": 641, "verified_addresses": {"eth_addresses": ["0x5247299421a3ff724c41582e5a44c6551d135fd3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/borjamoskv/good-times-for-the-lyric?referral_source=link\"}"}', NULL), - (73, '0xad8babee7f7728181ee693806812884593b09b3e', 11300, 1, '2024-04-29 18:26:41+00', 13, 25, '{"fid": 3860, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/cfb802c4ff9c6cc2fedd01707c897715.png?w=500&auto=format", "profile": {"bio": {"text": "cto & research partner @paradigm. working with /rust on /ethereum. building /reth and /foundry. https://gakonst.com", "mentioned_profiles": []}}, "username": "gakonst", "power_badge": true, "display_name": "gakonst", "active_status": "inactive", "verifications": ["0x19c5bf5fbf17d8c47d8795a194c03e4061e36761", "0x2abc80332a8dfa064bd2f361e8b72d76ef8637c5"], "follower_count": 139853, "custody_address": "0x1b3cb968b7faa1378fb5a19eef7251086cfd26f2", "following_count": 101, "verified_addresses": {"eth_addresses": ["0x19c5bf5fbf17d8c47d8795a194c03e4061e36761", "0x2abc80332a8dfa064bd2f361e8b72d76ef8637c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vr4fVVXfzPbRmLTo9\"}"}', NULL), - (3416, '0xa7be9e2b43eabf41cd4e18599fbe6bd8c1b550aa', 0, 1, '2024-04-30 00:54:23+00', 0, 1, '{"fid": 343603, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/cb588f4220b35f600cdf998bff07f42f.gif?w=500&auto=format", "profile": {"bio": {"text": "Web3 music producer, mostly make house music and work on web3 community space", "mentioned_profiles": []}}, "username": "imamkikou14", "power_badge": false, "display_name": "Imam Kikou on the Track 14", "active_status": "inactive", "verifications": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "follower_count": 30, "custody_address": "0xc6455d5bad59f5c5c668cb209d8346f991574754", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/k14onthetrack/sekud-break-6?referral_source=link\"}"}', NULL), - (312, '0x9fd2804e4d5b0ddfb6ac2bb0b9711ec2f413d27b', 1050, 1, '2024-04-30 18:34:07+00', 0, 18, '{"fid": 5431, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40c72a19-41ec-4128-9377-be9469383100/original", "profile": {"bio": {"text": "Co-Founder and Branding Bruce Lead at FLOC* | Degen Logo Designer | /brand3 /fartone /odegen | nf.td/esdotge", "mentioned_profiles": []}}, "username": "esdotge.eth", "power_badge": true, "display_name": "S·G 🎩 on FarCon", "active_status": "inactive", "verifications": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "follower_count": 29601, "custody_address": "0xec8e91d76ffd0593567b5a175b3e30b97f2cfdc5", "following_count": 1476, "verified_addresses": {"eth_addresses": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes\"}"}', NULL), - (286, '0x4ef60ab1c0adb37234d33ad427a2688646883040', 3330, 1, '2024-05-01 02:25:53+00', 51, 19, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392"], "follower_count": 555, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 400, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmawav/wav?referral_source=link\"}"}', NULL), - (137332, '0xf8dcc0b3f57cb3da55e3e380ca67910880c504d6', 0, 1, '2024-05-05 06:32:43+00', 0, 0, '{"fid": 486199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9df915a-b4f6-470e-53c4-da38875c4e00/original", "profile": {"bio": {"text": "Be careful, Everyone", "mentioned_profiles": []}}, "username": "joyeehyun", "power_badge": false, "display_name": "Joyeehyun", "active_status": "inactive", "verifications": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "follower_count": 1038, "custody_address": "0xc614ea305d00db50186fcf44457d651bb38c9765", "following_count": 743, "verified_addresses": {"eth_addresses": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TSQ5medzfvjULiAT7\"}"}', NULL), - (30790, '0x89e7013ea108bc2957b3a6bdbaa44e385154bbe2', 0, 1, '2024-05-04 21:42:29+00', 0, 0, '{"fid": 323324, "object": "user", "pfp_url": "https://i.imgur.com/3JknFA2.jpg", "profile": {"bio": {"text": "/1337 Artsy Geoscientist. High (on weed). You never know which network I’ll be experimenting in. SONG WRITER 📝\nArt💞 @renu 🖼️🎧\nobjkt.com/@rae5555", "mentioned_profiles": []}}, "username": "rae5555", "power_badge": false, "display_name": "Renu 🪄🎩", "active_status": "inactive", "verifications": ["0x2592e904f21ce308249a8ffb25e82e35c69de163"], "follower_count": 168, "custody_address": "0xdc28f684f446115d4f38295bd6c316b45733e93c", "following_count": 313, "verified_addresses": {"eth_addresses": ["0x2592e904f21ce308249a8ffb25e82e35c69de163"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-476181284/sets/russ?si=78ab7be10b5543acbaefebd5adb63250&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (28, '0x51bbf1f2796c1eb94036164103cebab6c30f929c', 30, 1, '2024-04-29 16:30:22+00', 0, 25, '{"fid": 500303, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4d3ec05-d788-4c65-baaa-86a1fa40c700/rectcrop3", "profile": {"bio": {"text": "만나서 반가워😀\n\n잘 부탁해 ~", "mentioned_profiles": []}}, "username": "sudde", "power_badge": false, "display_name": "나야나", "active_status": "inactive", "verifications": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "follower_count": 1489, "custody_address": "0x0c9ec1bcd0bcc3b7d3daa278e8e531ccca4dba6e", "following_count": 1586, "verified_addresses": {"eth_addresses": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6igsCK7q4BihJIqJNrOqPQ\"}"}', NULL), - (242, '0x5074ffad8b5b6acd2d5ec78830174ae45fd75329', 0, 1, '2024-04-30 19:01:34+00', 0, 0, '{"fid": 441339, "object": "user", "pfp_url": "https://i.imgur.com/Dm8d6SG.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nassive", "power_badge": false, "display_name": "Chinazes ", "active_status": "inactive", "verifications": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "follower_count": 187, "custody_address": "0xd64038b044bdaf77f537086fd76e0f60ad56bbc8", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "sol_addresses": []}}', '{"{\"url\":\"http://GESTALT.PROMO\"}","{\"url\":\"https://on.soundcloud.com/cNhtS\"}"}', NULL), - (3322, '0xc233df83503052125a3d6468c6ede9c0c267e32f', 0, 1, '2024-04-29 17:42:44+00', 0, 0, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 285, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://on.soundcloud.com/a8BsnP2oNDSB3R4A7\"}"}', NULL), - (275, '0x93cb6e7e4c8dac6ee0904d64934a8456da91bef0', 0, 1, '2024-05-01 12:08:55+00', 0, 1, '{"fid": 15631, "object": "user", "pfp_url": "https://i.imgur.com/LMuwsSJ.jpg", "profile": {"bio": {"text": "High-tech #EDM Indie Record Label / A&R : @emrahis / https://drakula.app/user/millionrecords.eth?invite=jJzPNc / \n\nhttps://linktr.ee/millionrecordsmusic", "mentioned_profiles": []}}, "username": "millionrecords", "power_badge": false, "display_name": "Million Records", "active_status": "inactive", "verifications": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "follower_count": 629, "custody_address": "0x57febaf71b8dd64e1f0abe6656925a9815bb50b9", "following_count": 74, "verified_addresses": {"eth_addresses": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "sol_addresses": ["6ZhjvqWWFtWWMz5fEsmuLqbaypWWKMo3SzYXmCKwTzcx"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c7d94ea9-1eb4-4ccd-3b2a-7dc7ee711200/original\"}","{\"url\":\"https://www.sound.xyz/millionrecords/shkrmn-take-me-back\"}"}', NULL), - (3407, '0x30d7229c0e4dcbcde566c25861cbada93f23812a', 0, 1, '2024-04-29 20:42:57+00', 0, 0, '{"fid": 189588, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8bede997-933d-4ae6-14f8-b9801fd5fb00/original", "profile": {"bio": {"text": "Dad of singer songwriter Gateway Girl. Ethereum and general crypto advocate.", "mentioned_profiles": []}}, "username": "signalone", "power_badge": false, "display_name": "Dave not at Farcon", "active_status": "inactive", "verifications": ["0x53cd119ae0bf1fdde5e778d29e873392fee07cca"], "follower_count": 7, "custody_address": "0x6d1907fc627ba7fd98a3430d2ed493dda95ecbe2", "following_count": 54, "verified_addresses": {"eth_addresses": ["0x53cd119ae0bf1fdde5e778d29e873392fee07cca"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/hitsme101.eth/post/4a741c64-0270-4af8-8dcc-28e8a3600d9b\"}"}', NULL), - (3432, '0x55bc2d5e43f076026f0e849b6f8f5b023eb8fd74', 0, 1, '2024-04-30 00:16:13+00', 0, 2, '{"fid": 216939, "object": "user", "pfp_url": "https://i.imgur.com/rxT15ve.jpg", "profile": {"bio": {"text": "Sound.xyz/felpsmiera\nIndependent Artist", "mentioned_profiles": []}}, "username": "felpsmiera", "power_badge": false, "display_name": "Felipe Matos", "active_status": "inactive", "verifications": ["0xbf88e9e0f0bd3e0f1a76d02a573512e63b26299c"], "follower_count": 5, "custody_address": "0xe7c50bc1dcaad76a90c51bcd12ed9d2c49a8e9f5", "following_count": 10, "verified_addresses": {"eth_addresses": ["0xbf88e9e0f0bd3e0f1a76d02a573512e63b26299c"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ccf9c32-e12f-4d74-2da3-9a2c025b5400/original\"}","{\"url\":\"http://sound.xyz/felpsmiera\"}"}', NULL), - (91705, '0x248a5044f673882bcaa93b47a889bcc190c58495', 0, 1, '2024-05-05 00:53:44+00', 0, 1, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1308, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 677, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1kbEbBdEgQdQeLXCJh28pJ?si=ZNTIvwZdQGOAD0GEfAtHew\"}"}', NULL), - (3287, '0xa48d3ebe922c5f16d24a216ae4ba7210ae439f99', 0, 1, '2024-04-29 18:01:29+00', 0, 18, '{"fid": 436349, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc92ef75-986a-4764-1577-4308c739dc00/rectcrop3", "profile": {"bio": {"text": "Digital Transformation Explorer and Technology Enthusiast 🚀Gym Rat & Cat Lover 🐈 “think different”\nFOCUS", "mentioned_profiles": []}}, "username": "aminsam", "power_badge": false, "display_name": "Sam 🎩🍖 ", "active_status": "inactive", "verifications": ["0x2469b75537bfeaa25f9497c7fb0c0afadb0c07b7"], "follower_count": 441, "custody_address": "0x470287b7faf8962aef42f2e775326f7bf63309fb", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x2469b75537bfeaa25f9497c7fb0c0afadb0c07b7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3MrRksHupTVEQ7YbA0FsZK?si=225ddf9ca7364fa0\"}"}', NULL), - (3323, '0xc8d7bb5f5ebb37cedcf7fb8e86a3e688ba2b2368', 0, 1, '2024-05-02 02:47:37+00', 0, 1, '{"fid": 269778, "object": "user", "pfp_url": "https://i.imgur.com/PkcDnB2.jpg", "profile": {"bio": {"text": "need mutual sir", "mentioned_profiles": []}}, "username": "riyaneg", "power_badge": false, "display_name": "sitmoor", "active_status": "inactive", "verifications": ["0xae5985ec1dbe9e4b51424dfca30c031396faa175"], "follower_count": 88, "custody_address": "0xae5985ec1dbe9e4b51424dfca30c031396faa175", "following_count": 171, "verified_addresses": {"eth_addresses": ["0xae5985ec1dbe9e4b51424dfca30c031396faa175"], "sol_addresses": []}}', '{"{\"url\":\"http://Sound.xyz\"}","{\"url\":\"https://www.sound.xyz/0xae5985ec1dbe9e4b51424dfca30c031396faa175/post/52f1f8a7-b4f1-4023-a303-582e666b16c5\"}"}', NULL), - (269, '0x2f23bfd37294c781d87e769b98a44e1008ba06ae', 0, 1, '2024-05-01 14:58:04+00', 0, 2, '{"fid": 407836, "object": "user", "pfp_url": "https://i.imgur.com/JAMZV63.png", "profile": {"bio": {"text": "Web3 Music Label 🎵 Music Studio for all cyberspace 🌟 /studio19 ", "mentioned_profiles": []}}, "username": "studio19.eth", "power_badge": false, "display_name": "Studio 19 ", "active_status": "inactive", "verifications": ["0x342a3002fe7b0424a1559f8ef0f0c29788cecdb2"], "follower_count": 91, "custody_address": "0x0995828db31c1856921eea8247b3ef5f76779434", "following_count": 29, "verified_addresses": {"eth_addresses": ["0x342a3002fe7b0424a1559f8ef0f0c29788cecdb2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes\"}"}', NULL), - (268, '0x277f446f29fc78185b473d86d291073c2d0ec51a', 0, 1, '2024-04-30 23:44:30+00', 0, 6, '{"fid": 501199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdd303da-9225-4d77-7151-47d9df7dc400/rectcrop3", "profile": {"bio": {"text": "Music | Art | Author 💯🎼\nExhibited X Performed @ NY, LA, TX, Vegas, Miami, Paris +\n\nwww.mrdariusmusic.com\nwww.sound.xyz/mrdarius", "mentioned_profiles": []}}, "username": "mrdariusone", "power_badge": false, "display_name": "MR. DARIUS 🎩", "active_status": "inactive", "verifications": ["0x6904bfb4522e10038fc675552176b866027be939"], "follower_count": 29, "custody_address": "0x60a31d7c961bf0989ff8b4f3c799d57a236667b3", "following_count": 173, "verified_addresses": {"eth_addresses": ["0x6904bfb4522e10038fc675552176b866027be939"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mrdarius/off-the-strip-vegas-freestyle-clejan-x-dyl-x-beamer-x-jj-frank-x-c-hood-x-vic-x-kaandiid-x-mr-darius\"}"}', NULL), - (3406, '0xc05c5fee25813ee844934fa2886eb7af3ffd4883', 0, 1, '2024-04-30 03:14:49+00', 0, 0, '{"fid": 271891, "object": "user", "pfp_url": "https://i.imgur.com/UPrlw49.jpg", "profile": {"bio": {"text": "I''m Mr Meerkat - Each morning, as the sun comes up, I emerge and begin looking for food.", "mentioned_profiles": []}}, "username": "mrmeerkat", "power_badge": false, "display_name": "Mr Meerkat", "active_status": "inactive", "verifications": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "follower_count": 232, "custody_address": "0x2f5b92d58892bf7f4a93ba30d05bae6d512eb84c", "following_count": 497, "verified_addresses": {"eth_addresses": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "sol_addresses": ["6z85jgsYieCXPbxmhfN2hG9QgtxYhkX26216issd8zcp"]}}', '{"{\"url\":\"https://www.sound.xyz/mrmeerkat.eth/post/7569e98b-1855-4210-83eb-49e1a84e2c26\"}"}', NULL), - (7011, '0xf75cc3c8435741cfd2f0597c1d6bc6b523c70d1b', 0, 1, '2024-05-04 14:50:04+00', 0, 25, '{"fid": 13728, "object": "user", "pfp_url": "https://i.imgur.com/DKQFwjs.jpg", "profile": {"bio": {"text": "Obsessed with new trends, decentralized world & music.", "mentioned_profiles": []}}, "username": "hamid", "power_badge": false, "display_name": "Hamid 🎩 🔵", "active_status": "inactive", "verifications": ["0x8ba5908a107ed29c898b00b498fcce0d88299175"], "follower_count": 1192, "custody_address": "0x2faea8fb76d2522bfc4f5156e8d499bb5afa698f", "following_count": 1508, "verified_addresses": {"eth_addresses": ["0x8ba5908a107ed29c898b00b498fcce0d88299175"], "sol_addresses": ["CA9CqRb421BT8h3qicGnG66zvUkW5b2E1rw67FrBvU4Z"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d76c3785-235e-47f0-2b83-e650b74c4300/original\"}","{\"url\":\"https://open.spotify.com/track/5WZDLZVCvY1rEyNir6k8Pg?si=zI8HwQwoTkq8o1Z5Hpd0Kg\"}"}', NULL), - (253, '0x074926e4a04176ad85935bd24571be0407dd14ed', 10, 1, '2024-04-30 14:38:46+00', 0, 6, '{"fid": 415248, "object": "user", "pfp_url": "https://i.imgur.com/sQ371h7.jpg", "profile": {"bio": {"text": "DJ / Producer from London. Dad Joker. Sorare player. Manager name: Stish", "mentioned_profiles": []}}, "username": "plastician.eth", "power_badge": true, "display_name": "Plastician", "active_status": "inactive", "verifications": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "follower_count": 285, "custody_address": "0x09aa8409a31840b0386f205f0edf2974a3522291", "following_count": 246, "verified_addresses": {"eth_addresses": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KFovMUEYxJ96dpMHA\"}"}', NULL), - (32, '0xfb94b0e3bf23e9e7d4d9d46ff3490c3d96065f15', 20, 1, '2024-04-29 16:16:08+00', 0, 2, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 265, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 317, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/46bjyAViXopL0GUFq11PMu?si=3_C9IQVRQIafh_nUZ1efhw&context=spotify%3Aalbum%3A1tj2K6bkjXZFRpsE4VGyUN\"}"}', NULL), - (3324, '0xced87bb0b1dacbc72b482505d8d5c0a815f85c17', 0, 1, '2024-04-29 16:59:22+00', 0, 1, '{"fid": 226234, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51ab0322-aa71-4855-3f20-31070f04bb00/rectcrop3", "profile": {"bio": {"text": "Ai artist stranded on the planet surface taking poison couldn’t be avoided. https://pixelgravyproductions.blog/", "mentioned_profiles": []}}, "username": "jonrt", "power_badge": false, "display_name": "Pixel Gravy 🎩🍖", "active_status": "inactive", "verifications": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "follower_count": 217, "custody_address": "0xbec78c6235cf3d17accc444d1a1fa073c19bc1c5", "following_count": 203, "verified_addresses": {"eth_addresses": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "sol_addresses": ["A8LbzGsRzuXsCAQajZc557FSCN7ysNpdAVnGZjAKW6W7"]}}', '{"{\"url\":\"https://on.soundcloud.com/N3qYFE7QSDDZdf5m8\"}"}', NULL), - (240585, '0xa49578cded6fae79108bacd4340a83abd48e93b9', 0, 1, '2024-05-05 14:01:17+00', 0, 0, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1244, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 909, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-19623507/o9tohqdgzidk?si=c760f2268ec44c7d82743f5dd36af5a8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3335, '0x5c31136eb4e3c155f317aa1f4f08e529e2d4cd72', 120, 1, '2024-05-02 00:04:29+00', 50, 7, '{"fid": 5431, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40c72a19-41ec-4128-9377-be9469383100/original", "profile": {"bio": {"text": "Co-Founder and Branding Bruce Lead at FLOC* | Degen Logo Designer | /brand3 /fartone /odegen | nf.td/esdotge", "mentioned_profiles": []}}, "username": "esdotge.eth", "power_badge": true, "display_name": "S·G 🎩 on FarCon", "active_status": "inactive", "verifications": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "follower_count": 29601, "custody_address": "0xec8e91d76ffd0593567b5a175b3e30b97f2cfdc5", "following_count": 1476, "verified_addresses": {"eth_addresses": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":206,\"hash\":\"0x4679ea67be7203a42de40be42f4572d445b68686\"}}","{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes\"}"}', NULL), - (272, '0x2692f234895966bc0bf7446cc3c79e0b02b9d8ba', 0, 1, '2024-05-01 00:27:01+00', 0, 0, '{"fid": 450453, "object": "user", "pfp_url": "https://i.imgur.com/8MbkP9D.jpg", "profile": {"bio": {"text": "#NFTmusic & #AI Newsletter collabs and more | \n\nPress, PR & Marketing: Web3Metal@gmail.com", "mentioned_profiles": []}}, "username": "web3metal", "power_badge": false, "display_name": "WEB3 METAL 🤘", "active_status": "inactive", "verifications": ["0x7df4e62ce78d4b32b8d7d4a3b5ef2964579d1c53"], "follower_count": 6, "custody_address": "0xafc0c5b6bcba152872b08668e39264250110c0e2", "following_count": 12, "verified_addresses": {"eth_addresses": ["0x7df4e62ce78d4b32b8d7d4a3b5ef2964579d1c53"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f47e1fe-1df7-4ae7-fef1-c0b8af58de00/original\"}","{\"url\":\"https://www.sound.xyz/web3metal/my-black-metal-baby?referral_source=link\"}"}', NULL), - (3420, '0xf53e63ba9ddcc78a76e999d1780bf7bccfb762b1', 0, 1, '2024-04-29 17:18:55+00', 0, 5, '{"fid": 19840, "object": "user", "pfp_url": "https://i.imgur.com/EdN9yds.jpg", "profile": {"bio": {"text": "Where fans become collectors.", "mentioned_profiles": []}}, "username": "invinmusic", "power_badge": true, "display_name": "Invest in Music", "active_status": "inactive", "verifications": ["0x86958a1219ab83c92779285efeb0d9dc186e24c0"], "follower_count": 3499, "custody_address": "0xdfdb0fefb817ca4c72ab8b0eae5d7fa2b4a447ba", "following_count": 3, "verified_addresses": {"eth_addresses": ["0x86958a1219ab83c92779285efeb0d9dc186e24c0"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/ff9b36eb-ed6c-4bb0-a47c-943119e1a9f6\"}"}', NULL), - (7031, '0xa14c8c38bf0a551525bd9e5ad8bf181010370c8f', 0, 1, '2024-05-04 11:59:52+00', 0, 2, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 210, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/first-diss-collect-to-earn-sstrm?referral_source=link\"}"}', NULL), - (167, '0xfaccb2c14974c7b7d70e13935b1cd5d7a05f9645', 0, 1, '2024-04-30 23:01:49+00', 0, 5, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 479, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 230, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1t5Xl1inIcsO9hSjToGMd1?si=8eTxTa-rQdairNXMAjy40w&context=spotify%3Aalbum%3A02Mp4Q83TVhpe8VeCpMZjZ\"}"}', NULL), - (3282, '0xca314d8d8a07652b74a99aecc1278e696372e0d4', 0, 1, '2024-04-29 18:35:42+00', 0, 2, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KDNFlHAdDJ84fhK27c35X?si=284ecc2bb9ca4df7\"}"}', NULL), - (42, '0x9a74dfdbe75b5545898116185152ffc24f323e1f', 10, 1, '2024-04-29 18:06:44+00', 0, 8, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1083, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be001937-5075-4997-bf76-db7431a9e500/original\"}","{\"url\":\"https://open.spotify.com/track/2UFpTrvxNKNgC9VCcCw7m1?si=ZHvCeiz2QBSZX13sZd-4-g&context=spotify%3Aalbum%3A0YlTGCp6SUpdYZM1xNhgxz\"}"}', NULL), - (3301, '0x8a707cf152a85441deb8b053fb63a583ec67ab1e', 0, 1, '2024-04-29 17:46:12+00', 0, 2, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0a1SoGdF8U1PNHtfKRAx91?si=cbcd1066d8584fe0\"}"}', NULL), - (219, '0x1cf033715f10f909701a1868e66ea952b7a05222', 0, 1, '2024-05-01 11:59:40+00', 0, 1, '{"fid": 347582, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f2c2038-5a6a-4cd5-5f84-8ac1e46bdd00/original", "profile": {"bio": {"text": "Borja Moskv |\nDJ | Producer | Digit Artist | Diehard optimist \nOld JulioIglesias.eth (ENS Domains legend OG @ens__goat ) \nHttps://www.sound.xyz/borjamoskv", "mentioned_profiles": []}}, "username": "borjamoskv", "power_badge": false, "display_name": "Borja Moskv ", "active_status": "inactive", "verifications": ["0x5247299421a3ff724c41582e5a44c6551d135fd3"], "follower_count": 283, "custody_address": "0x9f22c2614d9c044cf55480769e691f4b3d681248", "following_count": 641, "verified_addresses": {"eth_addresses": ["0x5247299421a3ff724c41582e5a44c6551d135fd3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/borja-moskv/radiohead-mix\"}"}', NULL), - (3433, '0xbaf764601ae6d5b56af9090e5b1f62872f978a4a', 0, 1, '2024-04-29 22:36:43+00', 0, 2, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 240023, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 313, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/salemilese/crypto-boy\"}"}', NULL), - (169, '0x0d00e48af7b8bbc69205e56c9952ba91c1f403f5', 0, 1, '2024-04-30 14:37:16+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 408, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 520, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/30GGIrrJdSNtecPiFcVP5O?si=pjT7OmntQxmHzB_FWiFftg\"}"}', NULL), - (190, '0x017ffd1fd0662b237a17c0410172b6b8c4842522', 0, 1, '2024-04-30 16:46:33+00', 0, 2, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6bCJnCkDrjq3qGYUSQvjr6?si=e5998db1d4d54782\"}"}', NULL), - (3268, '0x6bc26955c6c61ed17c086badb6057bd69287b0bb', 0, 1, '2024-04-29 18:29:28+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 270, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 232, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/19VIBTwlLTX2SKK6e3erAf?si=hMnOnNxZRMKtN_7ss35uaw&context=spotify%3Aplaylist%3A37i9dQZF1EId0GbnwrA01x\"}"}', NULL), - (3278, '0x49792aef1c20393d8988497138ebd2b7e7d4e8f0', 0, 1, '2024-04-29 18:55:28+00', 0, 5, '{"fid": 1407, "object": "user", "pfp_url": "https://i.imgur.com/ZIIiTPV.jpg", "profile": {"bio": {"text": "/new-york by day 🗽 /zinger by night 😈 Fan of eating tacos and bringing people together, often at the same time 🌮", "mentioned_profiles": []}}, "username": "zinger", "power_badge": true, "display_name": "Zinger — f/arcon ↑", "active_status": "inactive", "verifications": ["0xafca747b067c40ae0dda3f170ae971a2cbf4d05c"], "follower_count": 4840, "custody_address": "0xa3037d4c94aa42088aacf5fce2f885c0de893b56", "following_count": 697, "verified_addresses": {"eth_addresses": ["0xafca747b067c40ae0dda3f170ae971a2cbf4d05c"], "sol_addresses": ["6EAaPqnwT54YnYfCRyupN8rK25i2hbguBFcbfVQ8hGWj"]}}', '{"{\"cast_id\":{\"fid\":1407,\"hash\":\"0x4dee14bda153cbb7ce73dd22e0d312f8c4e20c5f\"}}","{\"url\":\"https://open.spotify.com/track/6q36Cqt2d3O5jqrQR9uXCp\"}"}', NULL), - (317, '0xf1ece463867168d1fd3cb4feb715fa5a02ad4530', 0, 1, '2024-04-30 17:28:28+00', 0, 3, '{"fid": 6946, "object": "user", "pfp_url": "https://i.imgur.com/d69NcM6.gif", "profile": {"bio": {"text": "The Pioneering Community-Led Web3 Strategic Design Studio | Building the Next Internet Together | wearefloc.com /brand3 /fartone /odegen", "mentioned_profiles": []}}, "username": "floc.eth", "power_badge": false, "display_name": "FLOC on FarCon", "active_status": "inactive", "verifications": ["0x6af6d6b3fba247129c32544b53106ab3bb772902"], "follower_count": 7423, "custody_address": "0x70328906b39584604010bb999465359b221554aa", "following_count": 143, "verified_addresses": {"eth_addresses": ["0x6af6d6b3fba247129c32544b53106ab3bb772902"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes\"}"}', NULL), - (3412, '0x7883f60dceecc8c4bd0760f718fb69cd53d72e06', 0, 1, '2024-04-30 02:12:15+00', 0, 0, '{"fid": 433375, "object": "user", "pfp_url": "https://i.imgur.com/JrvAdVr.jpg", "profile": {"bio": {"text": "I''m a hard working person. I have interest in bitting and cryptocurrency ", "mentioned_profiles": []}}, "username": "chahmadmeo", "power_badge": false, "display_name": "Ahmad", "active_status": "inactive", "verifications": ["0xd15ad24623fecef20832c58c162740756790c615"], "follower_count": 432, "custody_address": "0xd15ad24623fecef20832c58c162740756790c615", "following_count": 397, "verified_addresses": {"eth_addresses": ["0xd15ad24623fecef20832c58c162740756790c615"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/memba/back-online\"}"}', NULL), - (3883, '0xe605b832be69582d3e69059da2b489ce956bbac4', 0, 1, '2024-05-02 21:31:51+00', 0, 1, '{"fid": 278549, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4118e152-b525-499e-5e8f-ac0897067b00/original", "profile": {"bio": {"text": "memer/replyoor/degentleman", "mentioned_profiles": []}}, "username": "botxd", "power_badge": false, "display_name": "BOTXD ", "active_status": "inactive", "verifications": ["0xaae9fd3fe55f77aebf0a94acde40c2a388e400b8"], "follower_count": 557, "custody_address": "0x658ac82163f4ae2b9d7d96b53b1c6536d6bbfe19", "following_count": 386, "verified_addresses": {"eth_addresses": ["0xaae9fd3fe55f77aebf0a94acde40c2a388e400b8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0HKqybIYU0O1PbYWHJRkTY?si=ro0QU58YQZOTB0nO_hnpIA\"}"}', NULL), - (3223, '0xe68a6d8a1b933a8de88568de89c03a919c6bd0df', 0, 1, '2024-04-30 02:03:37+00', 0, 1, '{"fid": 201043, "object": "user", "pfp_url": "https://i.imgur.com/UyDS3lo.jpg", "profile": {"bio": {"text": "Artist | Founder 721 Studios: movement fueled by music | 🇨🇴| https://drakula.app/profile", "mentioned_profiles": []}}, "username": "iamlosi", "power_badge": true, "display_name": "Losi🎩🎤", "active_status": "inactive", "verifications": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "follower_count": 320, "custody_address": "0x9d6e47eaa5f4b44b83827fc97e7a8e157b3f2386", "following_count": 183, "verified_addresses": {"eth_addresses": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1rLI8MiCU9MGolSrR6YvJM?si=5RH8_J--SZ-Kl7s9S-zNcQ\"}"}', NULL), - (3308, '0x2dffb437798d3d0bb1a5b7d00eb6a28c7f47f8d7', 0, 1, '2024-05-02 03:06:06+00', 0, 0, '{"fid": 497851, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07c8d675-2bba-4ec6-0d68-b3f3c52f8f00/rectcrop3", "profile": {"bio": {"text": "Audio Engineer & Crypto Degen \nChiraq’s OG Sadboy 🙃", "mentioned_profiles": []}}, "username": "massacre", "power_badge": false, "display_name": "Massacre🥷", "active_status": "inactive", "verifications": ["0x0912d9701109f8ee3f948c60d6ad491c351227dd"], "follower_count": 19, "custody_address": "0xabae7290872baa2bf63e0f06d377d3ffab743e55", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x0912d9701109f8ee3f948c60d6ad491c351227dd"], "sol_addresses": ["AtSFCNsp1kGfMNZ6JfXxEUyMZ3UAcu8xSS7d8819eAWN"]}}', '{"{\"url\":\"https://on.soundcloud.com/cgEPcHhKKE3w1Sm27\"}"}', NULL), - (3320, '0x5f9b20ee43c26003e2d2af5a1a448dfd6b62954c', 0, 1, '2024-04-29 11:15:11+00', 0, 3, '{"fid": 389207, "object": "user", "pfp_url": "https://arweave.net/h1MSD_zJMePwRINY5Dx9shWEJXTK33ppmVfw1fNJ_4c/", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0xbf86b64f0bb4ba5f6d703a710cc897beb2b9c33d", "0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 840, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1000, "verified_addresses": {"eth_addresses": ["0xbf86b64f0bb4ba5f6d703a710cc897beb2b9c33d", "0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": ["GAQFxF2rsc5ReuAB21D2aN8vyYrEuSSqfAHZJzPx2A6m"]}}', '{"{\"url\":\"https://open.spotify.com/track/0OwEskGUqCMgkSY7JkJS7x?si=2T22zQlKRYSPuazPLs71wA&context=spotify%3Asearch%3Aone%2Bokag%2Brock%2Bhear\"}"}', NULL), - (3331, '0x9b1fc66fd757656b452357860f4a3c1ba9be055c', 0, 1, '2024-05-02 03:57:26+00', 0, 0, '{"fid": 472951, "object": "user", "pfp_url": "https://i.imgur.com/PnHHsPP.jpg", "profile": {"bio": {"text": "I am a scientist that understands and studied life. Am trying to be digital in my ways", "mentioned_profiles": []}}, "username": "jota4live", "power_badge": false, "display_name": "Taofeek Olayinka Jimoh ", "active_status": "inactive", "verifications": ["0x81d6ad16457a01f6e69224392d962bf959187daa"], "follower_count": 294, "custody_address": "0xf1b74a8b96bc558347057db2b518574d36b29bb8", "following_count": 437, "verified_addresses": {"eth_addresses": ["0x81d6ad16457a01f6e69224392d962bf959187daa"], "sol_addresses": []}}', '{"{\"url\":\"http://sound.xyz\"}"}', NULL), - (252, '0x2447b64e2f9e334a3a1f4da3cabac13a2902a78f', 0, 1, '2024-05-01 19:40:26+00', 0, 0, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 285, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/b-sunsor?referral=0xaa466103793319fc3d6c7420d77e6e7cf586c877\"}"}', NULL), - (318, '0x1ca8c57a05e615a0aabea721742dbf2e1e51616b', 10, 1, '2024-04-30 17:16:44+00', 60, 12, '{"fid": 379522, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6a4a9ff-5b30-4656-52c9-02c048649000/original", "profile": {"bio": {"text": "Music Producer 🧞‍♂️ @studio19.eth 🎹 /studio19 Label3 💽 My music is here 🌀 www.sound.xyz/pochi", "mentioned_profiles": []}}, "username": "pochisempere.eth", "power_badge": false, "display_name": "Pochi Sempere 🎩🔵", "active_status": "inactive", "verifications": ["0xa6d713d765fc5405869e040db1b1cd83208fc30b"], "follower_count": 377, "custody_address": "0xfa6096b5d0047861e105ab211cde5a8ce8f72bc3", "following_count": 243, "verified_addresses": {"eth_addresses": ["0xa6d713d765fc5405869e040db1b1cd83208fc30b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes\"}"}', NULL), - (633391, '0x88190db3589ee409654f00f3b1f5f509906234cc', 0, 1, '2024-05-06 13:54:43+00', 0, 3, '{"fid": 289659, "object": "user", "pfp_url": "https://i.imgur.com/9GD5dX1.jpg", "profile": {"bio": {"text": "Zora → https://zora.co/@yojizzang // Alfafrens → https://www.alfafrens.com/channel/0xd37c250cd60ca1aed0178515afd5b49b1188d97c", "mentioned_profiles": []}}, "username": "yojizzang", "power_badge": false, "display_name": "yojizzang🍀", "active_status": "inactive", "verifications": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "follower_count": 3143, "custody_address": "0x0466acd0e5f6c6c644f99b9cb4a841dec03d4d8d", "following_count": 2716, "verified_addresses": {"eth_addresses": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SGj3z\"}"}', 'sonata'), - (915562, '0x21ef463ac72818a38181774d64822f69f41c1d9f', 0, 1, '2024-05-07 07:07:56+00', 0, 0, '{"fid": 501914, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b14740fd-c936-4695-d36d-2176896c5200/rectcrop3", "profile": {"bio": {"text": "base/onchain", "mentioned_profiles": []}}, "username": "masch87", "power_badge": false, "display_name": "masch87🎩🦄✅", "active_status": "inactive", "verifications": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "follower_count": 1418, "custody_address": "0xae6ce4dd57535388d8181f11fbc7696244f05ece", "following_count": 1958, "verified_addresses": {"eth_addresses": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/seunga-lee/ikon-fantasticduo?in=tad5v2je1ht3/sets/ujctacvdvl67&si=ad67def6709140e38b890b936720c4bd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (51225, '0x249c258cf3e171834d5683ac3a3bf5f53b25610c', 10, 1, '2024-05-04 22:56:56+00', 0, 14, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12 ✪ 🎩", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5048, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bVXyidzpLFa3XuvH8\"}"}', NULL), - (250, '0xa4942af206e147aecaa8bef9019ea4eab46d806e', 0, 1, '2024-04-30 06:38:16+00', 0, 2, '{"fid": 1069, "object": "user", "pfp_url": "https://i.imgur.com/s3XjT5J.jpg", "profile": {"bio": {"text": "Co-Founder @frenshouse / Orange Cube Art 💛🏠 work @ Art Blocks / ThankYouX 🫡 I Love music, sports, tech, art, marketing, coffee maxi", "mentioned_profiles": []}}, "username": "2ripsgawd", "power_badge": true, "display_name": "2Rips 🎩 ↑", "active_status": "inactive", "verifications": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "follower_count": 515, "custody_address": "0x84a2cdf0a978b16dc4d7e5005b87fa594f3fd5e6", "following_count": 241, "verified_addresses": {"eth_addresses": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7fzHQizxTqy8wTXwlrgPQQ?si=f3b4d7ff767741cc\"}","{\"url\":\"https://music.apple.com/us/album/million-dollar-baby/1743095147?i=1743095418\"}"}', NULL), - (3299, '0x690542b1b252d71c5e0594ccf4bb0ce552986ef8', 0, 1, '2024-04-29 17:03:49+00', 0, 2, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Mb20VmqR2lvtgbEermW2v?si=22d22db1737c474e\"}"}', NULL), - (30, '0x406cb5bdaea20701814546c23cb2a65bbf3c3d5a', 30, 1, '2024-04-29 16:25:55+00', 0, 5, '{"fid": 263664, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3d865e2-466c-4435-6114-efde80725b00/rectcrop3", "profile": {"bio": {"text": "A forever /replyguy and host of /casting-couch", "mentioned_profiles": []}}, "username": "oppai", "power_badge": true, "display_name": "Oppai✴️", "active_status": "inactive", "verifications": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "follower_count": 3151, "custody_address": "0x3fd57eea6e0b65c3010f050a96fe962ff3e5a3ce", "following_count": 1683, "verified_addresses": {"eth_addresses": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "sol_addresses": ["Ct9p9bbUxinAwTQu3nfSdnyS8NQHypcTfxTpW32zh1T8"]}}', '{"{\"url\":\"https://open.spotify.com/track/4FQRK2gwBgKcBayHmayNIU?si=bW-JCZVmRv-d-ae0KASYgw&context=spotify%3Aplaylist%3A7kRyMz3BjbJ6FUJOD4CU7I\"}"}', NULL), - (3286, '0x65fc89a75904710caa7a2b84586c4ddb197ee24d', 0, 1, '2024-04-29 14:29:30+00', 0, 7, '{"fid": 195117, "object": "user", "pfp_url": "https://i.imgur.com/PDWlh5Z.jpg", "profile": {"bio": {"text": "Queen|she|her\n/wac | onelovedao | cohort9\n| 2D Art | Photo | AI | Stream of Conscious Writing | RPG | Voiceover Creator |\n\nhttps://beacons.ai/jacquec", "mentioned_profiles": []}}, "username": "jacque", "power_badge": false, "display_name": "JacqueC🌸🩸🎩🌸", "active_status": "inactive", "verifications": ["0x20da700ea03e9fe8bf3409d6f66105184aefb2fc"], "follower_count": 81, "custody_address": "0x4036e3e1c3097e4c5d97f620a8b51239d5600be3", "following_count": 67, "verified_addresses": {"eth_addresses": ["0x20da700ea03e9fe8bf3409d6f66105184aefb2fc"], "sol_addresses": ["2nEdtHrM5vDzg1qg6KzMRrT3cHesy47ZpeghNijxQtgg"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b0db345-3510-4d05-de7f-5b7ac284ed00/original\"}","{\"url\":\"https://open.spotify.com/track/1RsALParpm2YmjO9E3jc5L?si=ug3UQthpS32k6sw64zEBzA&context=spotify%3Asearch\"}"}', NULL), - (3636, '0x31b424316718f0edd91ec856d2bbcbf6eb6b1bda', 0, 1, '2024-04-29 08:58:10+00', 0, 1, '{"fid": 429258, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7d6b647f-84bb-4d73-22e3-7ca3ebc5b800/original", "profile": {"bio": {"text": "Student", "mentioned_profiles": []}}, "username": "03113", "power_badge": false, "display_name": "3113 🎩🔵", "active_status": "inactive", "verifications": ["0x88ced047bf75de5d03f3fa4ff0d7224e4eb455b2", "0x3ab4dac602a1f2800b054cb2ac75d8c32e687719"], "follower_count": 266, "custody_address": "0xfede0a4e8110f08ac894cde76811ab7f34d4c93e", "following_count": 328, "verified_addresses": {"eth_addresses": ["0x88ced047bf75de5d03f3fa4ff0d7224e4eb455b2", "0x3ab4dac602a1f2800b054cb2ac75d8c32e687719"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5CBEzaNEuv3OO32kZoXgOX?si=3daf957eabf14e9b\"}"}', NULL), - (3415, '0x320cc5b45dd109e0086ba3a91e27e5f72ade2256', 0, 1, '2024-04-30 02:25:03+00', 0, 0, '{"fid": 362407, "object": "user", "pfp_url": "https://i.imgur.com/i25H9xp.jpg", "profile": {"bio": {"text": "Software development, trading, fitness", "mentioned_profiles": []}}, "username": "paranoidcoder", "power_badge": false, "display_name": "Paranoid Coder", "active_status": "inactive", "verifications": ["0x0cb9d25ddd81f8ba363465d30213d027fa68fff9"], "follower_count": 35, "custody_address": "0x2885fe1d018913a5f4dbaba451290c34b157acdd", "following_count": 156, "verified_addresses": {"eth_addresses": ["0x0cb9d25ddd81f8ba363465d30213d027fa68fff9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/memba/back-online?referral=0x0cb9d25ddd81f8ba363465d30213d027fa68fff9\"}"}', NULL), - (1172896, '0x2688e113dd848b68dbf1a5dcfc33ec850c0293b7', 0, 1, '2024-05-14 20:02:01+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1935, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/disqtible/beyond?referral=0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426\"}"}', 'soundxyz'), - (3292, '0xc51bace7aa5ea27fc53a4fb95593faef573dc623', 0, 1, '2024-04-29 16:55:58+00', 0, 2, '{"fid": 19793, "object": "user", "pfp_url": "https://i.imgur.com/fxOuWA4.jpg", "profile": {"bio": {"text": "ORB-FREE PROOF OF PERSONHOOD @ DEMOS", "mentioned_profiles": []}}, "username": "greenjeff", "power_badge": true, "display_name": "GREEN JEFF🎩", "active_status": "inactive", "verifications": ["0x37a6156e4a6e8b60b2415af040546cf5e91699bd"], "follower_count": 359, "custody_address": "0xc3054c78dc814a52ba89f371bda8f31980113f7a", "following_count": 484, "verified_addresses": {"eth_addresses": ["0x37a6156e4a6e8b60b2415af040546cf5e91699bd"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e823819e-1b5f-45a2-da52-f51f6b67f600/original\"}","{\"url\":\"https://open.spotify.com/track/0q8TNCQhwnDwnzq38IVV4l?si=C55NOqEuSbin-y-vMNPmzA&context=spotify%3Aalbum%3A0EiI8ylL0FmWWpgHVTsZjZ\"}"}', NULL), - (3295, '0xc44351828c33f91b43d17dd24953116a69a04055', 0, 1, '2024-04-29 13:20:28+00', 0, 8, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 27966, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/58Wf7PV3D0ZP7Z3raGXLa2?si=slBxS1hzTtymxQKeg3SWOg\"}"}', NULL), - (3288, '0x5d36301a8712f8f7454845ff50fa903629a8414f', 0, 1, '2024-04-29 16:47:26+00', 0, 5, '{"fid": 6162, "object": "user", "pfp_url": "https://i.imgur.com/UPqF5Pv.png", "profile": {"bio": {"text": "Staff Eng at Iron Fish • Building BlockSocks 🧦", "mentioned_profiles": []}}, "username": "typeof.eth", "power_badge": true, "display_name": "typeof.eth 🔵", "active_status": "inactive", "verifications": ["0xfa6b3df826636eb76e23c1ee38180db3b8f60a86"], "follower_count": 22675, "custody_address": "0x8521bfe68095cadaa1defff2c7cc5324be372e8f", "following_count": 631, "verified_addresses": {"eth_addresses": ["0xfa6b3df826636eb76e23c1ee38180db3b8f60a86"], "sol_addresses": ["CQMsJdt4HgBM6GXNTKmph9r4cModie8hEAYHBCzCv7Ct"]}}', '{"{\"url\":\"https://open.spotify.com/track/0UV5zxRMz6AO4ZwUOZNIKI?si=67738ffe732d445c\"}"}', NULL), - (3281, '0xa3f70b60ada4114c7d7f6dc642ac0f18f07ca422', 0, 1, '2024-04-29 16:55:16+00', 0, 7, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 403, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 419, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6WK9dVrRABMkUXFLNlgWFh?si=2c3d5d4f029343f8\"}"}', NULL), - (236, '0x1baf8a1859ef87a1adc4af9a0bd72d8b3e417e06', 0, 1, '2024-05-01 18:33:29+00', 0, 0, '{"fid": 362407, "object": "user", "pfp_url": "https://i.imgur.com/i25H9xp.jpg", "profile": {"bio": {"text": "Software development, trading, fitness", "mentioned_profiles": []}}, "username": "paranoidcoder", "power_badge": false, "display_name": "Paranoid Coder", "active_status": "inactive", "verifications": ["0x0cb9d25ddd81f8ba363465d30213d027fa68fff9"], "follower_count": 35, "custody_address": "0x2885fe1d018913a5f4dbaba451290c34b157acdd", "following_count": 156, "verified_addresses": {"eth_addresses": ["0x0cb9d25ddd81f8ba363465d30213d027fa68fff9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/wavedash/b-alright-feat-anamanaguchi-and-cayenne?referral=0x0cb9d25ddd81f8ba363465d30213d027fa68fff9\"}"}', NULL), - (46, '0x69985cab8ab5dc5317a36c86e82fa9333decfffb', 260, 1, '2024-04-29 19:31:50+00', 1, 2, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8889, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/7cd850ee-3431-46c4-8960-dd58d0761b23\"}","{\"url\":\"https://www.sound.xyz/distantmatter/keep-you\"}"}', NULL), - (137328, '0x18deba76f65a2ecd5c3df54e775632276c9cd8f3', 0, 1, '2024-05-05 06:32:17+00', 0, 2, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2115, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1822, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/H4p8jgEe2XagsNCj7\"}"}', NULL), - (3291, '0xa64996f249a7123dd79dc53f00f34717b869e7c8', 0, 1, '2024-04-29 18:49:33+00', 0, 4, '{"fid": 5847, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2b35b2d-1f2a-496a-1b7a-bf26c85c2000/rectcrop3", "profile": {"bio": {"text": "PM @Otherlife- A Moonpay Company 🟣\nInk, emote and semantics on-chain\nhttps://rc.xyz/slivereign", "mentioned_profiles": []}}, "username": "slivereign", "power_badge": false, "display_name": "Slivereign🎩", "active_status": "inactive", "verifications": ["0x64c90f8a492cdf2e1126b0bc1a82d40edd20497e"], "follower_count": 619, "custody_address": "0x0f5a48fdde81ce995e39bcf253a93af119249bca", "following_count": 255, "verified_addresses": {"eth_addresses": ["0x64c90f8a492cdf2e1126b0bc1a82d40edd20497e"], "sol_addresses": ["DvgAY8xniLqwgQ9kXiCRH7Sj9tu9WnTyqSCmys2BuCUa"]}}', '{"{\"url\":\"https://open.spotify.com/track/6WkjzMIrqvPIwB87m9Oloi?si=iiSIvVJGT9q1eOR68lzqMA\"}"}', NULL), - (3293, '0x70ef688f5447c1579ef8e70926e8efcc3f4ae59e', 0, 1, '2024-04-29 16:56:43+00', 0, 12, '{"fid": 337018, "object": "user", "pfp_url": "https://raw.seadn.io/files/e9a97c0c212eafd620f99fe2bbd1f522.svg", "profile": {"bio": {"text": "Creative Director who makes movies and ads, with a passion for crypto.", "mentioned_profiles": []}}, "username": "baubergo-", "power_badge": true, "display_name": "baubergo 🎩🍖", "active_status": "inactive", "verifications": ["0xbcfca495966a3132ec76d1b0cf8ffe1d4ad95e0a", "0x9d3e7fe9bd43d664ecb64b12d7d0f2b447dfbc0c"], "follower_count": 1583, "custody_address": "0xc36edbf6cf2eee3b0ed1981f13b78addce5fe968", "following_count": 804, "verified_addresses": {"eth_addresses": ["0xbcfca495966a3132ec76d1b0cf8ffe1d4ad95e0a", "0x9d3e7fe9bd43d664ecb64b12d7d0f2b447dfbc0c"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":337018,\"hash\":\"0x66050c4db040ea96a4610ca944ed496b3c25617c\"}}","{\"url\":\"https://open.spotify.com/track/77NNZQSqzLNqh2A9JhLRkg\"}"}', NULL), - (3637, '0xe13534be37733e1e8cc6052bec3b937a5e2d8f9d', 0, 1, '2024-04-29 09:08:02+00', 0, 1, '{"fid": 504872, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c6883e67-a432-44d7-2857-5803c5c13300/rectcrop3", "profile": {"bio": {"text": "King.", "mentioned_profiles": []}}, "username": "colejj3", "power_badge": false, "display_name": "Cole 🤴 🎩", "active_status": "inactive", "verifications": ["0x5438a58fccf464be36917947b552a6cf9d9b242b"], "follower_count": 408, "custody_address": "0x66c2c5c73de40b076cc7d51e50813a82399fec21", "following_count": 351, "verified_addresses": {"eth_addresses": ["0x5438a58fccf464be36917947b552a6cf9d9b242b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Zo1PcszsT9WQ0ANntJbID?si=CNwfqOKvRueY2h8zebV0tQ&context=spotify%3Aplaylist%3A37i9dQZF1DX4SBhb3fqCJd\"}"}', NULL), - (3640, '0x46b1c43c47b142506e76908faca7cda6cc851511', 0, 1, '2024-04-29 08:41:49+00', 0, 0, '{"fid": 414050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/568505ff-a319-4eb2-e283-dbab51369500/rectcrop3", "profile": {"bio": {"text": "Product Owner @ a Big 4, and Artist.\nPrints and NFTs available:\n\nhttps://linktr.ee/Chiebuniem", "mentioned_profiles": []}}, "username": "pascalokafor", "power_badge": false, "display_name": "Pascal Okafor🎩", "active_status": "inactive", "verifications": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "follower_count": 101, "custody_address": "0x53feedd7a49bb51ff6530400dddb7e673deb9c66", "following_count": 176, "verified_addresses": {"eth_addresses": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3uY9ovVG8wAhNgDEOlngqv?si=uLARBBdcS_-QWxkfn2xAOQ\"}"}', NULL), - (246, '0xd0f864f9be2f0505d9283e2d6e560bbe32c60b36', 0, 1, '2024-05-01 14:23:29+00', 0, 0, '{"fid": 461708, "object": "user", "pfp_url": "https://i.imgur.com/PMNEpX4.jpg", "profile": {"bio": {"text": "Multidiscip. Artist|\nMusic Producer| Award-Winning Score Composer & Sound Designer|\nIndustrial Designer| Digital Artist| AI Researcher\n\nLinktr.ee/Matthewbian", "mentioned_profiles": []}}, "username": "matthewbian", "power_badge": false, "display_name": "Matthewbian 🎩", "active_status": "inactive", "verifications": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "follower_count": 129, "custody_address": "0x2ff473b3634c370c3981b3decbdb6401461da94c", "following_count": 329, "verified_addresses": {"eth_addresses": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/matinhabibian/prjktneon-soundtrack?ref=clipboard&p=a&c=1&si=72753831569945e68f213786d891248b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3663, '0x9d57ec89366b5414058bd5fbd4682b04b710a56c', 0, 1, '2024-04-29 10:44:45+00', 0, 10, '{"fid": 307047, "object": "user", "pfp_url": "https://i.imgur.com/DvKxZGO.jpg", "profile": {"bio": {"text": "Money never sleeps…", "mentioned_profiles": []}}, "username": "affilion", "power_badge": false, "display_name": "Affilion.eth", "active_status": "inactive", "verifications": ["0xa2c75e8736e446149d5f368db640dd46771b4c2f"], "follower_count": 243, "custody_address": "0x722e6ad2745ad4365dfc993cae984f79d423c31a", "following_count": 142, "verified_addresses": {"eth_addresses": ["0xa2c75e8736e446149d5f368db640dd46771b4c2f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3jHuGZHYBno9C5kZ3AUcEB?si=c3c82004392f40ab\"}"}', NULL), - (3686, '0x95da8b7fef7a688ddefd8d3726eb90055985b866', 0, 1, '2024-05-02 05:07:26+00', 0, 0, '{"fid": 355337, "object": "user", "pfp_url": "https://i.imgur.com/z3nRu6g.jpg", "profile": {"bio": {"text": "Electronic music artist. Dot connector. Sociologist. Reindigenization advocate. Bridging bass, history and culture on chain. ", "mentioned_profiles": []}}, "username": "akohitoha", "power_badge": false, "display_name": "Toha", "active_status": "inactive", "verifications": ["0x0717604b3b44b661408e187cb11f3dc313480621"], "follower_count": 35, "custody_address": "0x070ef578e08219352d388b0a7ff9f90ad31bbfae", "following_count": 107, "verified_addresses": {"eth_addresses": ["0x0717604b3b44b661408e187cb11f3dc313480621"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/heds/hedstape-15-feat-lnrz?referral=0x0717604b3b44b661408e187cb11f3dc313480621\"}"}', NULL), - (3647, '0x5e3cf32cbe844218ce966c302ae999df420a9b00', 0, 1, '2024-04-29 08:53:35+00', 0, 1, '{"fid": 429258, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7d6b647f-84bb-4d73-22e3-7ca3ebc5b800/original", "profile": {"bio": {"text": "Student", "mentioned_profiles": []}}, "username": "03113", "power_badge": false, "display_name": "3113 🎩🔵", "active_status": "inactive", "verifications": ["0x88ced047bf75de5d03f3fa4ff0d7224e4eb455b2", "0x3ab4dac602a1f2800b054cb2ac75d8c32e687719"], "follower_count": 266, "custody_address": "0xfede0a4e8110f08ac894cde76811ab7f34d4c93e", "following_count": 328, "verified_addresses": {"eth_addresses": ["0x88ced047bf75de5d03f3fa4ff0d7224e4eb455b2", "0x3ab4dac602a1f2800b054cb2ac75d8c32e687719"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0jSMveIWvnhDIvzqN74Uc7?si=8cd5661c40574256\"}"}', NULL), - (3662, '0x6a60a4eefb7e587fe06d2fd0f3e2252cf946bfba', 0, 1, '2024-04-29 10:01:32+00', 0, 3, '{"fid": 342840, "object": "user", "pfp_url": "https://i.imgur.com/nRhtJot.gif", "profile": {"bio": {"text": "◻️Whitewalls.app◻️\n\nThe Doomed DAO\n\nDoodles CryptoPunk Chromie Squiggles", "mentioned_profiles": []}}, "username": "blondie23lmd", "power_badge": false, "display_name": "Blondie23LMD 🎩🔵◻️", "active_status": "inactive", "verifications": ["0x849a27048de274c084f42551f395823f8fa18f2e", "0x649ff45a74d3ffb86a31fcd1e9c88f46e8bb38a0", "0x424a7c2e4d50d8e0ba2acb08991ce62a64994327"], "follower_count": 119, "custody_address": "0x32f7f3308b4ded2f7274c6b5b5d09d234dc855d4", "following_count": 217, "verified_addresses": {"eth_addresses": ["0x849a27048de274c084f42551f395823f8fa18f2e", "0x649ff45a74d3ffb86a31fcd1e9c88f46e8bb38a0", "0x424a7c2e4d50d8e0ba2acb08991ce62a64994327"], "sol_addresses": ["4V9Epo18VEukcbCmor3EDjafWnWt5CYd2JcPzP7MJ8sH"]}}', '{"{\"url\":\"https://open.spotify.com/track/47HaGgU2pNSoSEqGXhpBvw?si=qKhRtTrwTgupRhkdbUe5Zw&context=spotify%3Aplaylist%3A37i9dQZF1DWWJOmJ7nRx0C\"}"}', NULL), - (3664, '0xc9cabcb106a15fe910e036527c2354d5a5aef156', 0, 1, '2024-04-29 09:00:46+00', 0, 14, '{"fid": 378717, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0755f424-a0b8-4191-91ca-04ed54d51700/rectcrop3", "profile": {"bio": {"text": "Guitarist🎸\nBicycle run🚴🏼‍♂️gym💪\nmusic🤘🏽\nfoods and coocking 👨‍🍳\n🍖🎩", "mentioned_profiles": []}}, "username": "arashjafari", "power_badge": false, "display_name": "Arash 🎩🔵🍖", "active_status": "inactive", "verifications": ["0xde6ac348a0cfd7497109b06577ccf21710e8ad89"], "follower_count": 1123, "custody_address": "0x61a94d2ae423406560d09054eee713d57cfa0624", "following_count": 1186, "verified_addresses": {"eth_addresses": ["0xde6ac348a0cfd7497109b06577ccf21710e8ad89"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/69kOkLUCkxIZYexIgSG8rq?si=uhK9otZHSp60ZYZnFu0QPQ&pi=e-ZgUHRiuaSo-v\"}"}', NULL), - (3671, '0x68d9c1329719aae12efbd8c30eea136e4925b0af', 0, 1, '2024-04-29 10:50:23+00', 0, 21, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 27966, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Sko63ptJsDz9aP8zX5dT5?si=DwtbWitGQqCMc47RqV6kRw\"}"}', NULL), - (3677, '0x8e085bcb5544469e61c43d5cbd5e94fee0e0924c', 0, 1, '2024-04-29 09:39:21+00', 0, 2, '{"fid": 398824, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiehycw2f5ed4dvvpgttcrnivsgwwv3df3mxocg7v7pwf43i4n7uom", "profile": {"bio": {"text": "Guy diving into crypto", "mentioned_profiles": []}}, "username": "xbased", "power_badge": false, "display_name": "Irohcrypto 🎩⛓️", "active_status": "inactive", "verifications": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "follower_count": 653, "custody_address": "0x019db65b233873283c5ac2e5a728ed438c28172c", "following_count": 1121, "verified_addresses": {"eth_addresses": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6pzLYIFvcV5w3ePpGIIyqw?si=hI3L0SMySzanSAsIC7MJgQ\"}"}', NULL), - (3678, '0xf75ed45125d9093554d50f9d905bfc7da37f56f7', 0, 1, '2024-04-29 10:35:24+00', 0, 2, '{"fid": 389207, "object": "user", "pfp_url": "https://arweave.net/h1MSD_zJMePwRINY5Dx9shWEJXTK33ppmVfw1fNJ_4c/", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0xbf86b64f0bb4ba5f6d703a710cc897beb2b9c33d", "0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 840, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1000, "verified_addresses": {"eth_addresses": ["0xbf86b64f0bb4ba5f6d703a710cc897beb2b9c33d", "0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": ["GAQFxF2rsc5ReuAB21D2aN8vyYrEuSSqfAHZJzPx2A6m"]}}', '{"{\"url\":\"https://open.spotify.com/track/4ubg38wkWizzLsQwLuE6rM?si=B6keenM2QOmJ8BmmbO1T6g&context=spotify%3Asearch%3Abye%2B\"}"}', NULL), - (5422, '0x1d444ec8e75a047b72264b6b037c7e248a25aedb', 0, 1, '2024-05-04 07:26:16+00', 0, 1, '{"fid": 406365, "object": "user", "pfp_url": "https://i.imgur.com/gEhBoBa.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "zyzzle", "power_badge": false, "display_name": "Zyzzle", "active_status": "inactive", "verifications": ["0x0d10721a50434ec2bfb2aeed8cfea9d9f171a5f3"], "follower_count": 145, "custody_address": "0x5c38d258f14a2676a981fa10bb9b0119fdc95c98", "following_count": 393, "verified_addresses": {"eth_addresses": ["0x0d10721a50434ec2bfb2aeed8cfea9d9f171a5f3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/00cGNx0otxcMeD4GZHAJtq?si=x2ygyezBR_yCEx3Zy1ILJg\"}"}', NULL), - (3787, '0xac539783660a084bfea92c99aac25041d7129ab1', NULL, 1, '2024-05-02 15:37:49.071191+00', 0, NULL, NULL, NULL, NULL), - (3681, '0xfcc6029aa51976d3a5828bc2afdad9ac428307d1', 0, 1, '2024-04-29 08:58:31+00', 0, 4, '{"fid": 473895, "object": "user", "pfp_url": "https://i.imgur.com/OfbFNJr.jpg", "profile": {"bio": {"text": "Passionate about connecting with people from all walks of life through meaningful conversations and shared experiences. ", "mentioned_profiles": []}}, "username": "fateme1991md", "power_badge": false, "display_name": "fateme", "active_status": "inactive", "verifications": ["0x17f12c150dd561f9932f42485be40711e1afd4b5", "0x17f12c150dd561f9932f42485be40711e1afd4b5", "0x17f12c150dd561f9932f42485be40711e1afd4b5"], "follower_count": 517, "custody_address": "0x5d17fdd93fb21304c576a076809265c99f076d26", "following_count": 611, "verified_addresses": {"eth_addresses": ["0x17f12c150dd561f9932f42485be40711e1afd4b5", "0x17f12c150dd561f9932f42485be40711e1afd4b5", "0x17f12c150dd561f9932f42485be40711e1afd4b5"], "sol_addresses": ["4TYeucU48CsfZc7VdAzf6Zb3hgDLLBkUUSYqsUKqqHHw"]}}', '{"{\"url\":\"https://open.spotify.com/track/5MMZJtHOiH1RmQSSe3DJdg?si=PX7vkD1DS2mTO02qDqQlLQ&context=spotify%3Aplaylist%3A2NtlNq3uZJYu5IJSvHieLv\"}"}', NULL), - (306, '0xcae588b8cccb7605fde44f72678788377f10e16f', 0, 1, '2024-04-30 20:49:53+00', 0, 0, '{"fid": 437066, "object": "user", "pfp_url": "https://i.imgur.com/H7rnjZ8.jpg", "profile": {"bio": {"text": "Rap Game Eddie Levert 🎶 \n\nModern Day Steve Stout 📅\n\nCo-Founder of United Realities ⚡️\n\nhere to get myself , family , and friends , in better positions 💠\n", "mentioned_profiles": []}}, "username": "interstellgretz", "power_badge": false, "display_name": "Poison Peso De’ Gretzsky ", "active_status": "inactive", "verifications": ["0xa32ac6f43458c40369385e60f704912b33312919"], "follower_count": 37, "custody_address": "0xd5e105db1d61eef6ca2be21d7442495340607415", "following_count": 69, "verified_addresses": {"eth_addresses": ["0xa32ac6f43458c40369385e60f704912b33312919"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fondew/take-my-time?referral=0xa32ac6f43458c40369385e60f704912b33312919\"}"}', NULL), - (136914, '0xadffaf2e705839e11f8d0a83e448b3ea16ca5bc6', 0, 1, '2024-05-05 06:31:53+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1111, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 902, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S5Aed7ESDuFGMLP66\"}"}', NULL), - (65588, '0x95bea5d430acfa65906617c30593b2701648a4a3', 0, 1, '2024-05-04 23:33:26+00', 50, 25, '{"fid": 502237, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71cac03a-2086-40ba-73c3-720e90bc9c00/rectcrop3", "profile": {"bio": {"text": "Sometimes its not meant to be", "mentioned_profiles": []}}, "username": "pozkhand", "power_badge": false, "display_name": "Pozi", "active_status": "inactive", "verifications": ["0xdd7860cbd0e81f60764e5ecfe36bf0d880ac517b"], "follower_count": 135, "custody_address": "0xf901dbd9eb090d6534937bca644c9dd2da52e854", "following_count": 198, "verified_addresses": {"eth_addresses": ["0xdd7860cbd0e81f60764e5ecfe36bf0d880ac517b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to YNW MELLY - MURDER ON MY MIND Prod By; SMKEXCLSV by YNW Melly on #SoundCloud https://on.soundcloud.com/io5VY\"}"}', NULL), - (38273, '0x709bbe341696be394957a476523d3a78a0ec368f', 0, 1, '2024-05-04 21:56:53+00', 0, 0, '{"fid": 269005, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/123666b1-db49-4cd3-bf0f-470420ba9600/original", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "amiralinasiri", "power_badge": false, "display_name": "Amir", "active_status": "inactive", "verifications": ["0x7f3503f01e140fc011283e6f05fb168108504649"], "follower_count": 450, "custody_address": "0x70b183007b8e473c37931c7ea17296aad8674fa4", "following_count": 505, "verified_addresses": {"eth_addresses": ["0x7f3503f01e140fc011283e6f05fb168108504649"], "sol_addresses": ["8dGEoANLcPrp79AKsHe1e9VJ8nDkspQfKUkGPpbgbWN3"]}}', '{"{\"url\":\"https://open.spotify.com/track/7tpzIdXR5jswcRQtCrlaTv?si=df2debe2ec754bf1\"}"}', NULL), - (7030, '0x7643321f3be50521c980752f7045c9111da98240', 0, 1, '2024-05-04 15:15:07+00', 0, 18, '{"fid": 392267, "object": "user", "pfp_url": "https://i.imgur.com/CYY2QGl.jpg", "profile": {"bio": {"text": "Crypto lover\nLet''s support each other💟 ", "mentioned_profiles": []}}, "username": "javat-lee", "power_badge": false, "display_name": "Javat-Lee 🎩 🍖 🔮✈️", "active_status": "inactive", "verifications": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "follower_count": 769, "custody_address": "0x2d5e509116a5feca597b1f209f01ff0afee65bc9", "following_count": 1586, "verified_addresses": {"eth_addresses": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/228BxWXUYQPJrJYHDLOHkj\"}"}', NULL), - (20772, '0xebb515821075afe546ee87f22a387db8307c4d55', 0, 1, '2024-05-04 20:47:03+00', 0, 3, '{"fid": 5064, "object": "user", "pfp_url": "https://i.imgur.com/M7F0Fu6.png", "profile": {"bio": {"text": "DJ and Producer based in Scotland. \nPassionate about Web3 and Techno.", "mentioned_profiles": []}}, "username": "acutek", "power_badge": false, "display_name": "Acutek", "active_status": "inactive", "verifications": ["0x24a0e4ee348f33252e83fe1e824499381dd21aa9"], "follower_count": 283, "custody_address": "0xf029cfe64da2e81d7cce2723f9b46103ae8a913f", "following_count": 315, "verified_addresses": {"eth_addresses": ["0x24a0e4ee348f33252e83fe1e824499381dd21aa9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/acutek/spector\"}"}', NULL), - (3685, '0xa142f95ab5b8b31d24daa6c2134df5cf12885989', 0, 1, '2024-05-02 05:00:37+00', 0, 0, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman @ farcon", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 436, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 95, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm\"}"}', NULL), - (281, '0xcad026eb80afe7e3b4781a03d346b6630bce6f84', 0, 1, '2024-05-01 10:28:45+00', 0, 1, '{"fid": 501199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdd303da-9225-4d77-7151-47d9df7dc400/rectcrop3", "profile": {"bio": {"text": "Music | Art | Author 💯🎼\nExhibited X Performed @ NY, LA, TX, Vegas, Miami, Paris +\n\nwww.mrdariusmusic.com\nwww.sound.xyz/mrdarius", "mentioned_profiles": []}}, "username": "mrdariusone", "power_badge": false, "display_name": "MR. DARIUS 🎩", "active_status": "inactive", "verifications": ["0x6904bfb4522e10038fc675552176b866027be939"], "follower_count": 29, "custody_address": "0x60a31d7c961bf0989ff8b4f3c799d57a236667b3", "following_count": 173, "verified_addresses": {"eth_addresses": ["0x6904bfb4522e10038fc675552176b866027be939"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/aec7fc84-061f-4f91-876f-29bd0bec24ec?invite=BCLDNW\"}","{\"url\":\"https://www.sound.xyz/mrdarius/aurum-xyz-edition\"}"}', NULL), - (3439, '0x12f02d624279d1ac0fe1f9d3f556fcb642720be9', 0, 1, '2024-04-29 12:12:39+00', 0, 1, '{"fid": 15631, "object": "user", "pfp_url": "https://i.imgur.com/LMuwsSJ.jpg", "profile": {"bio": {"text": "High-tech #EDM Indie Record Label / A&R : @emrahis / https://drakula.app/user/millionrecords.eth?invite=jJzPNc / \n\nhttps://linktr.ee/millionrecordsmusic", "mentioned_profiles": []}}, "username": "millionrecords", "power_badge": false, "display_name": "Million Records", "active_status": "inactive", "verifications": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "follower_count": 629, "custody_address": "0x57febaf71b8dd64e1f0abe6656925a9815bb50b9", "following_count": 74, "verified_addresses": {"eth_addresses": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "sol_addresses": ["6ZhjvqWWFtWWMz5fEsmuLqbaypWWKMo3SzYXmCKwTzcx"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4dc9d039-01b8-43da-84fd-30ee81921900/original\"}","{\"url\":\"https://www.sound.xyz/millionrecords/emrah-is-eye-of-sauron\"}"}', NULL), - (3431, '0x09347601df865f04c96d61fc67a02475f0eb0481', 0, 1, '2024-04-30 02:06:28+00', 0, 1, '{"fid": 501199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdd303da-9225-4d77-7151-47d9df7dc400/rectcrop3", "profile": {"bio": {"text": "Music | Art | Author 💯🎼\nExhibited X Performed @ NY, LA, TX, Vegas, Miami, Paris +\n\nwww.mrdariusmusic.com\nwww.sound.xyz/mrdarius", "mentioned_profiles": []}}, "username": "mrdariusone", "power_badge": false, "display_name": "MR. DARIUS 🎩", "active_status": "inactive", "verifications": ["0x6904bfb4522e10038fc675552176b866027be939"], "follower_count": 29, "custody_address": "0x60a31d7c961bf0989ff8b4f3c799d57a236667b3", "following_count": 173, "verified_addresses": {"eth_addresses": ["0x6904bfb4522e10038fc675552176b866027be939"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/c4333e68-2f39-488b-ab5b-01526d002c91?invite=BCLDNW\"}","{\"url\":\"https://www.sound.xyz/mrdarius\"}"}', NULL), - (7017, '0xfad3ad066726d3bb1875f76767e398c3bfd5cfd2', 0, 1, '2024-05-04 14:18:49+00', 0, 2, '{"fid": 411409, "object": "user", "pfp_url": "https://i.imgur.com/HP4ZzrI.jpg", "profile": {"bio": {"text": "沢にいる蟹です。", "mentioned_profiles": []}}, "username": "payao", "power_badge": false, "display_name": "payao🎩🔥", "active_status": "inactive", "verifications": ["0x79579b2032565133a53f876e80179d0066d293f0"], "follower_count": 489, "custody_address": "0xb01f86116802f40576bf5d68bdfeb05ae81003d9", "following_count": 512, "verified_addresses": {"eth_addresses": ["0x79579b2032565133a53f876e80179d0066d293f0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2H3bOGOE50qEo5wAYoJiwL?si=s7SqhCI-TLmMkNYIuoRrgg\"}"}', NULL), - (26664, '0xfe6d0909c9db127ed59eb700fda61a3aa60d1a28', 0, 1, '2024-05-04 21:19:36+00', 0, 12, '{"fid": 10857, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d8f15cf-5fe6-4b75-cace-2024c9f55900/rectcrop3", "profile": {"bio": {"text": "contributor @lottopgf, /ottodao member | playing /lotto and uniting /degensxregens", "mentioned_profiles": []}}, "username": "nicnode", "power_badge": true, "display_name": "Nico Gallardo 🍄", "active_status": "inactive", "verifications": ["0x84e1056ed1b76fb03b43e924ef98833dba394b2b"], "follower_count": 4037, "custody_address": "0xb876dff1c9ab02822b1d477d2a6c6cfb2f9d1e7c", "following_count": 675, "verified_addresses": {"eth_addresses": ["0x84e1056ed1b76fb03b43e924ef98833dba394b2b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fabretes/inofensiva\"}"}', 'sonata'), - (1172900, '0x93864b24a02a884ec6edebf66ec6cb90084e3a22', 0, 1, '2024-05-14 20:14:11+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1935, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/de83f4a2-2626-4b45-af8a-87eb614bff15\"}"}', 'soundxyz'), - (3434, '0x24e6751b36f908da6211525c1b2fe3ffafc1e530', 0, 1, '2024-04-30 03:51:46+00', 0, 0, '{"fid": 425865, "object": "user", "pfp_url": "https://i.imgur.com/ftGGJ2T.jpg", "profile": {"bio": {"text": "🔐 Decrypting the future of finance, one crypto update at a time! 🌐 Dive into the world of blockchain with us. #CryptoEvolution 🚀", "mentioned_profiles": []}}, "username": "cryptocaster", "power_badge": false, "display_name": "CryptoCaster / Follow Me 🔙", "active_status": "inactive", "verifications": ["0x90866dd1e733af642d56938dc6998670d8cbf183"], "follower_count": 898, "custody_address": "0x950086b85a9ce7fa9bac132182218ed3e2192598", "following_count": 394, "verified_addresses": {"eth_addresses": ["0x90866dd1e733af642d56938dc6998670d8cbf183"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/manishcrypto/post/66993c33-68d9-443c-9b89-20bfabe0da88\"}"}', NULL), - (3440, '0x9498ee02ddb9cc66bfc3243f587e493a201446a6', 0, 1, '2024-04-29 14:31:08+00', 0, 1, '{"fid": 257278, "object": "user", "pfp_url": "https://i.imgur.com/MIwOSdK.jpg", "profile": {"bio": {"text": "A storyteller, interactive media creator, Canadian Hip Hop poet, 360 VR Founder MixItMedia, and Communications, Content & Experience Director with Metaknyts.", "mentioned_profiles": []}}, "username": "symbolik", "power_badge": false, "display_name": "Symbolik", "active_status": "inactive", "verifications": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "follower_count": 91, "custody_address": "0xdef6d16539cfcc8793ce16ab01c563b17642bd23", "following_count": 88, "verified_addresses": {"eth_addresses": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/symbolik/i-manifest\"}"}', NULL), - (3804, '0x41a47d85880b7c2645c9d5b5af1ed81a506d5a74', 0, 1, '2024-05-02 19:31:18+00', 0, 14, '{"fid": 7479, "object": "user", "pfp_url": "https://i.imgur.com/gxsuEBE.png", "profile": {"bio": {"text": "/ethereum | control the memes control the minds paragraph.xyz/@chaskin", "mentioned_profiles": []}}, "username": "chaskin.eth", "power_badge": true, "display_name": "Jason Chaskin", "active_status": "inactive", "verifications": ["0xee0b53ac9578cbc6e0cee0ac6e18cfb7118b5cb3"], "follower_count": 23799, "custody_address": "0x66ccc908f2f0fcd385da1b4ccbb0ccbefbbea90b", "following_count": 887, "verified_addresses": {"eth_addresses": ["0xee0b53ac9578cbc6e0cee0ac6e18cfb7118b5cb3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7gUux50RnQ0SC0lXIZuod3?si=EANsNrhhTcyCchkoXwhFkA\"}"}', NULL), - (3803, '0x2ed7ff3e8c01f477ab331125c815a9a4c1f447fa', 0, 1, '2024-05-02 17:36:31+00', 0, 5, '{"fid": 362884, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0ae3584-243e-4771-1172-9af2cf335000/rectcrop3", "profile": {"bio": {"text": "Run lots. Architecture also. And also crypto.", "mentioned_profiles": []}}, "username": "dopemandave", "power_badge": true, "display_name": "Davethedopeman🎩", "active_status": "inactive", "verifications": ["0x5063bb431cb9f2745cc03680d931588add964bcb"], "follower_count": 616, "custody_address": "0x6a8ee1026002d480ccd1ee3133644e2bc0355f7f", "following_count": 516, "verified_addresses": {"eth_addresses": ["0x5063bb431cb9f2745cc03680d931588add964bcb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ZP7OYa80kO6rBq9Dr9Cqh?si=c9e1dff620e44ac2\"}"}', NULL), - (3805, '0xe4feba7262915c5e81bd371554c245d1cf6b3f56', 0, 1, '2024-05-02 16:24:41+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 33, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/lovebomber-gaslighting-narcissism-glitch-glitch-glitch?referral_source=link\"}"}', NULL), - (5423, '0x135f50ad9e0a2fadf8b82d60568f82e684ef60dc', 0, 1, '2024-05-04 06:51:52+00', 0, 0, '{"fid": 288860, "object": "user", "pfp_url": "https://i.imgur.com/Kuojqtw.jpg", "profile": {"bio": {"text": "Future", "mentioned_profiles": []}}, "username": "hakeen", "power_badge": false, "display_name": "Hakeen", "active_status": "inactive", "verifications": ["0xab0ef57700d3061ba0f2d3d2323e99eaaa642b5b"], "follower_count": 8, "custody_address": "0x6fb960cae7001f12649c034b2c959508e8df6853", "following_count": 75, "verified_addresses": {"eth_addresses": ["0xab0ef57700d3061ba0f2d3d2323e99eaaa642b5b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7CyPwkp0oE8Ro9Dd5CUDjW?si=wznzALJ-Tga52B_2kd0QAw\"}"}', NULL), - (7005, '0x777f2eac43a96b46f8a6ba2524ffcdc3d47a00ed', 0, 1, '2024-05-04 14:45:37+00', 0, 0, '{"fid": 496478, "object": "user", "pfp_url": "https://i.imgur.com/W5DHtbw.jpeg", "profile": {"bio": {"text": "One awesome mutha", "mentioned_profiles": []}}, "username": "joyfriend", "power_badge": false, "display_name": "Joyfriend", "active_status": "inactive", "verifications": ["0x779851d2d320cdf8ed094e51ccda17f1920b0ae7"], "follower_count": 63, "custody_address": "0x867b5e6e3e4b9ab15ffeb53f7eb9bd7591473e61", "following_count": 267, "verified_addresses": {"eth_addresses": ["0x779851d2d320cdf8ed094e51ccda17f1920b0ae7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KqldkCunQ2rWxruMEtGh0?si=j6NUHRHfTYWEvRBeukVqiw\"}"}', NULL), - (3808, '0x4dbb66e519a1805616396c56b85e5ac0a2aaf179', 0, 1, '2024-05-02 17:41:21+00', 0, 1, '{"fid": 11770, "object": "user", "pfp_url": "https://i.imgur.com/aJW8ROW.jpg", "profile": {"bio": {"text": "Strategy & Operations\n<--->\nSharing ideas over at /workflow <--->\nProblem solving is my jam😎\n🎩", "mentioned_profiles": []}}, "username": "adam-", "power_badge": true, "display_name": "Adam", "active_status": "inactive", "verifications": ["0xc8aeb4c273583befce25cbc2a6d4a5c33e67d308"], "follower_count": 2224, "custody_address": "0x91884eb7eee82bf8bc011e18d2470a33a522714c", "following_count": 669, "verified_addresses": {"eth_addresses": ["0xc8aeb4c273583befce25cbc2a6d4a5c33e67d308"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/\"}"}', NULL), - (3810, '0x653d864c09645cb4b96ec9e1fa70fc7ae90a74ec', 0, 1, '2024-05-02 17:35:27+00', 0, 0, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩🍖", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 255, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5sNESr6pQfIhL3krM8CtZn?si=ZgVQaSmGTECZY8DORbfftQ\"}"}', NULL), - (3811, '0x39aeefff2db0607971838a7e0eebf11b5e1f6210', 0, 1, '2024-05-02 18:14:43+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1090, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/0kHIEdWbOvnrvTmRfPtHDN?si=6jKX43RYQaux_hfrxhvNAA&context=spotify%3Asearch%3Amemories%2Blive\"}"}', NULL), - (21498, '0x11941a22853097f8e9981c21a9f3d3ec7ed4f7d6', 100, 1, '2024-05-04 20:55:50+00', 0, 2, '{"fid": 264690, "object": "user", "pfp_url": "https://i.imgur.com/abmdIi1.png", "profile": {"bio": {"text": "Sometimes I rhyme fast sometimes I rhyme slow. Vegan degen.", "mentioned_profiles": []}}, "username": "and42", "power_badge": false, "display_name": "and42🎩", "active_status": "inactive", "verifications": ["0x87af71ffa2051dc58bbc2da8fdacbc036b701788"], "follower_count": 442, "custody_address": "0x76094293cf91ac4bfac7580c7029492ad79522b0", "following_count": 683, "verified_addresses": {"eth_addresses": ["0x87af71ffa2051dc58bbc2da8fdacbc036b701788"], "sol_addresses": ["2f9dWdcZQt2wvDuELzTVHvzE64uPej9SuBvzR821g4Un"]}}', '{"{\"url\":\"https://soundcloud.com/kotathefriend/outside?si=15e89073fc7c4aeb8028cd209542ad1a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3812, '0x4d389da7c84de0d7ac3470750b28b183402bf53f', 0, 1, '2024-05-02 16:51:51+00', 0, 3, '{"fid": 6162, "object": "user", "pfp_url": "https://i.imgur.com/UPqF5Pv.png", "profile": {"bio": {"text": "Staff Eng at Iron Fish • Building BlockSocks 🧦", "mentioned_profiles": []}}, "username": "typeof.eth", "power_badge": true, "display_name": "typeof.eth 🔵", "active_status": "inactive", "verifications": ["0xfa6b3df826636eb76e23c1ee38180db3b8f60a86"], "follower_count": 22796, "custody_address": "0x8521bfe68095cadaa1defff2c7cc5324be372e8f", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xfa6b3df826636eb76e23c1ee38180db3b8f60a86"], "sol_addresses": ["CQMsJdt4HgBM6GXNTKmph9r4cModie8hEAYHBCzCv7Ct"]}}', '{"{\"url\":\"https://open.spotify.com/track/11Kul1T6RWIvvuh5ctCAgo?si=98a449237a014fc9\"}"}', NULL), - (3815, '0x2342c09ab425e746f4a37f410c5a5f0a0f12aa60', 0, 1, '2024-05-02 17:18:50+00', 0, 1, '{"fid": 367639, "object": "user", "pfp_url": "https://i.imgur.com/TdFnoHu.jpg", "profile": {"bio": {"text": "26 yo Istanbul based artist/architect.\nco-hosting /artfrens\nlinktr.ee/abdlhsyl", "mentioned_profiles": []}}, "username": "abdsyl", "power_badge": false, "display_name": "Abdullah", "active_status": "inactive", "verifications": ["0xb85d31b6f1f44c0d113bdca6b550e773b24d345d"], "follower_count": 1363, "custody_address": "0xdc9e613d2aceb58a07a24409776bfee8cb61d283", "following_count": 476, "verified_addresses": {"eth_addresses": ["0xb85d31b6f1f44c0d113bdca6b550e773b24d345d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/210JJAa9nJOgNa0YNrsT5g?si=nrhNNeHLQhi4rBL2-aDxVg\"}"}', NULL), - (3814, '0x2e443776b821650c62a24327bafd9d5e661fba1c', 0, 1, '2024-05-02 18:31:15+00', 0, 5, '{"fid": 318473, "object": "user", "pfp_url": "https://i.imgur.com/IqDY0fX.jpg", "profile": {"bio": {"text": "musician + designer 🌟 ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ host /creator | follow → x.com/pasteleth", "mentioned_profiles": []}}, "username": "leopastel", "power_badge": true, "display_name": "pastel ← Farcon ꓽꓽ)", "active_status": "inactive", "verifications": ["0xc6729c943584fe18345b5551599a8fa3e14d432a"], "follower_count": 851, "custody_address": "0xcbd722e3f9f32df3b8fad1aa23568d8af12a941c", "following_count": 431, "verified_addresses": {"eth_addresses": ["0xc6729c943584fe18345b5551599a8fa3e14d432a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Sz8P5ZFLARe2oJeb0qsyb?si=cl5tTqHrTCSj79Y56oLNJA\"}"}', NULL), - (3818, '0xca480a1e78e39f66d2d9f68dd48a2571dc07bb86', 0, 1, '2024-05-02 17:02:13+00', 0, 7, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 829, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/7hnXGKHrBw24S9Ptry3cd4\"}"}', NULL), - (3823, '0x570ad7c61f882796afe92bdea3a2814aac4a22db', 0, 1, '2024-05-02 16:27:32+00', 0, 7, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 488, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 232, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3BDpkLMkgrtrM3HckrVIXr?si=O_ergrQlQ2yebKz5G67YvA&context=spotify%3Aalbum%3A5SKnXCvB4fcGSZu32o3LRY\"}"}', NULL), - (3820, '0x729fff4ca77abdc1e0ccb0175435c2ad81f54811', 0, 1, '2024-05-02 20:16:37+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8996, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/6d2d763d-d678-4693-87be-06e1c4e8f591\"}","{\"url\":\"https://www.sound.xyz/origamihuman/1-shot\"}"}', NULL), - (7027, '0x45664d44e50f7184a9dc4225320bae65b59a93ad', 0, 1, '2024-05-04 12:06:04+00', 0, 2, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 214, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/beats-by-abunai-03-collect-to-earn-sstrm?referral_source=link\"}"}', 'soundxyz'), - (3817, '0x7316d65e05a451a6c5a365ae984b621a77447a84', 0, 1, '2024-05-02 17:39:51+00', 0, 0, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩🍖", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 255, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/11DjZQEZ69EXLo77HVj6yW?si=6w9Gs5bASXWy0XSKtXh2SQ\"}"}', NULL), - (3822, '0xaf32e6bdea6b25abc7865ca94427c7443264b846', 0, 1, '2024-05-02 16:31:08+00', 0, 19, '{"fid": 15469, "object": "user", "pfp_url": "https://i.imgur.com/VB84hX8.jpg", "profile": {"bio": {"text": "Trader and investor", "mentioned_profiles": []}}, "username": "farzin", "power_badge": false, "display_name": "Farzin ", "active_status": "inactive", "verifications": ["0x545425f9686b56078da3bfac5f9f25bb287b1291"], "follower_count": 1364, "custody_address": "0xd267c83ec936d51779652f6002fe70c86f800098", "following_count": 2034, "verified_addresses": {"eth_addresses": ["0x545425f9686b56078da3bfac5f9f25bb287b1291"], "sol_addresses": ["FRFyFSz3Xqp9j67iXr9eaEb3Yy3RJEH3bf4tsN84qgZt"]}}', '{"{\"url\":\"https://www.sound.xyz/333666999.eth/post/7046dd1e-0479-467b-9f7a-eb79ef6d44c1\"}"}', NULL), - (3816, '0x8653c2322e7b1125afe0a0dd9c2aadf26e672a3d', 200, 1, '2024-05-02 18:47:45+00', 0, 3, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 107, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 292, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://www.sound.xyz/davyd/invictus-ft-yoshiro-mare-melodic-mix?referral=0x94734e11b78680a35b0a86ba3ce634d334d6d2a7\"}"}', NULL), - (3819, '0x91522d08578c95e652f25d29c931e8301fcb3ee4', 0, 1, '2024-05-02 20:36:27+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1090, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/97f3445d-33f1-4fe7-c341-8eb1eabea500/original\"}","{\"url\":\"https://open.spotify.com/track/1EiLrPd8JMTcQUr1aLEUKi?si=gSksE90TT1CimYoYjDScpA&context=spotify%3Aartist%3A5cMgGlA1xGyeAB2ctYlRdZ\"}"}', NULL), - (554012, '0x5e4d38cba1e58c4fb4dfc4d4d8ed05e6cee43115', 0, 1, '2024-05-06 10:35:47+00', 0, 1, '{"fid": 391839, "object": "user", "pfp_url": "https://i.imgur.com/jtSGCZm.jpg", "profile": {"bio": {"text": "@일상소통/투자소통\n@한분한분소중하게 찾아가용!\n@공부하는 오랑이🤗\n\n@조급하지도 걱정도 하자마라.\n@Don''t be impatient and worry.", "mentioned_profiles": []}}, "username": "parkgunwoo", "power_badge": false, "display_name": "오랑이🎩🍖🔵", "active_status": "inactive", "verifications": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "follower_count": 2880, "custody_address": "0x955e52b86ace17f4bcca570234ca7b09d06344c2", "following_count": 2915, "verified_addresses": {"eth_addresses": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-465233491/leellamarz-trip?si=3b2cd6a23d8f449a9fffe5c965062e28&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3830, '0xdeded405994610aedc1167d8acb8d3f6826091c0', 0, 1, '2024-05-02 17:05:52+00', 0, 25, '{"fid": 392267, "object": "user", "pfp_url": "https://i.imgur.com/CYY2QGl.jpg", "profile": {"bio": {"text": "Crypto lover\nLet''s support each other💟 ", "mentioned_profiles": []}}, "username": "javat-lee", "power_badge": false, "display_name": "Javat-Lee 🎩 🍖 🔮✈️", "active_status": "inactive", "verifications": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "follower_count": 751, "custody_address": "0x2d5e509116a5feca597b1f209f01ff0afee65bc9", "following_count": 1556, "verified_addresses": {"eth_addresses": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a970224-440f-4dcb-df55-ab93ca194a00/original\"}","{\"url\":\"https://open.spotify.com/track/32PIQZMbLl1p4DE9r9cW9l\"}"}', NULL), - (3872, '0x408196709f3bc757e13846c0da973878b483347b', 0, 1, '2024-05-02 22:19:43+00', 0, 10, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3616, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/28drn6tQo95MRvO0jQEo5C?si=6KNkkXrjTESw3_nv3DyOzw\"}"}', NULL), - (3827, '0x232707689255ab457005f49f4c0d66ed2c56dd38', 0, 1, '2024-05-02 19:25:18+00', 0, 0, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 287, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/gta?referral=0x7de3ca13e28120447257448e13f44c9a4efab507\"}"}', NULL), - (7022, '0x5363598476ec3f532d31bed5865f6e7b97cb471d', 0, 1, '2024-05-04 15:01:11+00', 0, 0, '{"fid": 329263, "object": "user", "pfp_url": "https://i.imgur.com/IMrijEa.jpg", "profile": {"bio": {"text": "Researcher | Mathematician | Algorithm Developer | Software Engineer | WEB3 enthusiast | Ambassador Crypton", "mentioned_profiles": []}}, "username": "x12", "power_badge": false, "display_name": "X12", "active_status": "inactive", "verifications": ["0x12ed17d0061c89362a1fd0ba9aa960d68b97bd79"], "follower_count": 59, "custody_address": "0x90fc97dc3fc59c9e1a064b0431c9f6be4cd9124c", "following_count": 325, "verified_addresses": {"eth_addresses": ["0x12ed17d0061c89362a1fd0ba9aa960d68b97bd79"], "sol_addresses": ["DyJnJXMD7fs88n1Gt4Xyc8xrLFKENBxrjZtPhV4Ku4kU"]}}', '{"{\"url\":\"https://www.sound.xyz/kdax12.eth/post/0a0504fb-0fe5-4115-8a06-bd849196335e\"}"}', NULL), - (11870, '0x71e81881035130e9cd272a69f72aacbc875c6420', 10, 1, '2024-05-04 18:24:43+00', 0, 5, '{"fid": 4564, "object": "user", "pfp_url": "https://i.imgur.com/hKWxU5e.jpg", "profile": {"bio": {"text": "I like building things and exploring new places. MrKevinOConnell.github\n\nDoing work at @neynar", "mentioned_profiles": []}}, "username": "kevinoconnell", "power_badge": true, "display_name": "kevin", "active_status": "inactive", "verifications": ["0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7", "0x69689f02c4154b049fb42761ef8fa00808f1b7ea"], "follower_count": 23431, "custody_address": "0x4622146b77ecefe4ca7552a81949d54eac991512", "following_count": 896, "verified_addresses": {"eth_addresses": ["0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7", "0x69689f02c4154b049fb42761ef8fa00808f1b7ea"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ko6Z3TVP6naLnM1W6\"}"}', NULL), - (52975, '0xef60639e33c55fb51d00bfd919e6142cab6f083e', 0, 1, '2024-05-04 23:02:28+00', 0, 0, '{"fid": 263685, "object": "user", "pfp_url": "https://i.imgur.com/SkCbsxr.gif", "profile": {"bio": {"text": "A long long time ago... In a galaxy far far away... 🎩", "mentioned_profiles": []}}, "username": "guerrix", "power_badge": false, "display_name": "El Guerrix 🎩🔵", "active_status": "inactive", "verifications": ["0x0cad2d0b33ec5206384a7e68876541211ab007a3"], "follower_count": 458, "custody_address": "0xa08c9f8ad3583c62c1d8ab8fa371481df89ddcca", "following_count": 857, "verified_addresses": {"eth_addresses": ["0x0cad2d0b33ec5206384a7e68876541211ab007a3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bFx8\"}","{\"url\":\"https://on.soundcloud.com/bFx8x\"}"}', NULL), - (3864, '0x8df9bf1203272f85ac52540e01e136b09fb92f60', 0, 1, '2024-05-02 15:59:47+00', 0, 0, '{"fid": 241079, "object": "user", "pfp_url": "https://i.imgur.com/GzCpDPH.jpg", "profile": {"bio": {"text": "Hello. I''m Daniel and I live in Panama.\n\nComposer | Creative Coder | Multidisciplinary Artist http://superrare.com/ferdoropeza Core Member at @art2actofficial", "mentioned_profiles": []}}, "username": "ferdoropeza", "power_badge": false, "display_name": "Daniel Oropeza ", "active_status": "inactive", "verifications": ["0xaa247c5b4f6c25de5cf4f33d924d738a128dd246"], "follower_count": 474, "custody_address": "0x428858b92b0eafe07f4bd5a381b766007f46229c", "following_count": 900, "verified_addresses": {"eth_addresses": ["0xaa247c5b4f6c25de5cf4f33d924d738a128dd246"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/daniel-oropeza-3/seis-piezas-populares\"}"}', NULL), - (240583, '0xfa41b560a9476d7e208ce47736fb751be905ba22', 0, 1, '2024-05-05 14:01:54+00', 0, 2, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 223, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 397, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-788854717/shape-of-love-ft-angelize?in=trending-music-jp/sets/pop&si=97b13b37281e4dcfbfabc643434c0676&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3825, '0x1cde6bcee04ecf62211584e47e6058629de0e598', 0, 1, '2024-05-02 16:21:24+00', 0, 0, '{"fid": 402840, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigydh56iguyh4nt7u22xv7hjlsjvtenjcw773ymmjnf3jwfkipvki", "profile": {"bio": {"text": "a winger, music enthusiast and zealous learner", "mentioned_profiles": []}}, "username": "mojj", "power_badge": false, "display_name": "moj", "active_status": "inactive", "verifications": ["0xa30aebe21c244293811659661714147975d50d74"], "follower_count": 205, "custody_address": "0x2be5cf64e918f2963172ffbfd9f39fbb88a20fca", "following_count": 170, "verified_addresses": {"eth_addresses": ["0xa30aebe21c244293811659661714147975d50d74"], "sol_addresses": ["J5byy4ueGY9jkYRtcaYKLeKbQbzAo7dhrZo1PfkMMB3J"]}}', '{"{\"url\":\"https://open.spotify.com/track/2W5acFzXf5FrktecuD30Or?si=IeNnYcDeTeWktulUypUeQg\"}"}', NULL), - (3828, '0x9272378bfb040825a9096641ca1d6e4e25f34314', 0, 1, '2024-05-02 18:07:49+00', 0, 2, '{"fid": 1069, "object": "user", "pfp_url": "https://i.imgur.com/s3XjT5J.jpg", "profile": {"bio": {"text": "Co-Founder @frenshouse / Orange Cube Art 💛🏠 work @ Art Blocks / ThankYouX 🫡 I Love music, sports, tech, art, marketing, coffee maxi", "mentioned_profiles": []}}, "username": "2ripsgawd", "power_badge": true, "display_name": "2Rips 🎩 ↑", "active_status": "inactive", "verifications": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "follower_count": 519, "custody_address": "0x84a2cdf0a978b16dc4d7e5005b87fa594f3fd5e6", "following_count": 241, "verified_addresses": {"eth_addresses": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0A1owXuxPwqTQPqOJcmUGz?si=XNdlsfrrTV-VRtmFAKucjQ&context=spotify%3Aplaylist%3A79e0SBdH7bqgZnJxzDUbpi\"}","{\"url\":\"https://music.apple.com/us/album/face-the-world/730576921?i=730577031\"}"}', NULL), - (3833, '0xbe16af12f7759195f58e007a9005fc0fac0ffb79', 0, 1, '2024-05-02 18:02:55+00', 0, 1, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 8996, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 16, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/53ab626a-f798-4c94-ae41-9a65f714bf98\"}","{\"url\":\"https://www.sound.xyz/tesh/inhale\"}"}', NULL), - (7014, '0x5c6b3a9d7c72f1849d7502666ca8599d57d438ca', 1010, 1, '2024-05-04 15:07:13+00', 0, 8, '{"fid": 12299, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37d7ded1-5131-4d88-1eac-56998c717100/rectcrop3", "profile": {"bio": {"text": "༄ ɪɴ ꜰʟᴏᴡ ꜱᴛᴀᴛᴇ ᴏɴ ᴛʜᴇ ɪɴᴛᴇʀɴᴇᴛ ༄ @superrare ✦ /superrare ᴅᴀᴏ ᴄᴏᴜɴᴄɪʟ ✦ /curate-art", "mentioned_profiles": []}}, "username": "emmajoelle", "power_badge": true, "display_name": "✦ 𝔼𝕞𝕞𝕒 ✦", "active_status": "inactive", "verifications": ["0x8cf84e6069fa1bdfb6db0be667e762de2984c817"], "follower_count": 972, "custody_address": "0x4a739d69282f3f7e14e1a5053c87a2d14aee877b", "following_count": 213, "verified_addresses": {"eth_addresses": ["0x8cf84e6069fa1bdfb6db0be667e762de2984c817"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qTyy6hfYiDVqn3uC7\"}"}', NULL), - (18300, '0xfe707b5fe6f2c4495a58fa2821f2c17f32003d2f', 100, 1, '2024-05-04 19:58:00+00', 3, 0, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "🦠 Bringing Music to Farcaster @sonatatips 🦠", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas | FarCon", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 575, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 315, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gitsVKNAZPszX5LX7\"}"}', NULL), - (3832, '0x853521c9a387b4312d5dc04458de3c4cc0bbc80a', 0, 1, '2024-05-02 16:56:42+00', 0, 5, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 829, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/70wd1fE44Rb9mnZMaApmkc\"}"}', NULL), - (3813, '0x21ebd8ab3456c2f1743a9da2a5e0a538be076aaf', 0, 1, '2024-05-02 18:17:25+00', 0, 3, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1090, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4f9d9da-c544-41ae-754d-9a9399cd6400/original\"}","{\"url\":\"https://open.spotify.com/track/0kHIEdWbOvnrvTmRfPtHDN?si=aHcXK7pbSf-wMXgtbw79mA&context=spotify%3Aalbum%3A2PbWFmysd3j9MEacjjhozx\"}"}', NULL), - (3826, '0xa207c5371b5731d1e2276765d49ac8aaea60eb67', 0, 1, '2024-05-02 16:25:31+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 33, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/lovebomber-gaslighting-narcissism-glitch-glitch-glitch?referral_source=link\"}"}', NULL), - (3834, '0x2a64547d68abcc3eb8e033c8c1e55a44a197e283', 0, 1, '2024-05-02 18:45:40+00', 0, 2, '{"fid": 15631, "object": "user", "pfp_url": "https://i.imgur.com/LMuwsSJ.jpg", "profile": {"bio": {"text": "High-tech #EDM Indie Record Label / A&R : @emrahis / https://drakula.app/user/millionrecords.eth?invite=jJzPNc / \n\nhttps://linktr.ee/millionrecordsmusic", "mentioned_profiles": []}}, "username": "millionrecords", "power_badge": false, "display_name": "Million Records", "active_status": "inactive", "verifications": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "follower_count": 630, "custody_address": "0x57febaf71b8dd64e1f0abe6656925a9815bb50b9", "following_count": 74, "verified_addresses": {"eth_addresses": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "sol_addresses": ["6ZhjvqWWFtWWMz5fEsmuLqbaypWWKMo3SzYXmCKwTzcx"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7d95e06-b9d7-409a-cd80-6f2090cf8800/original\"}","{\"url\":\"https://www.sound.xyz/millionrecords/archangel28-sliding\"}"}', NULL), - (3829, '0x730ea23a7afb0b661531141c1a0ecdc47c738ba7', 0, 1, '2024-05-02 20:01:55+00', 0, 12, '{"fid": 20384, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af0fbc75-63e1-4d4f-12ae-c94c49a3b400/original", "profile": {"bio": {"text": "half-grown thoughts 🌱 summoning /animarising", "mentioned_profiles": []}}, "username": "itsbasil", "power_badge": true, "display_name": "basil 🎩↑", "active_status": "inactive", "verifications": ["0xd76ff76ac8019c99237bde08d7c39dab5481bed2"], "follower_count": 5527, "custody_address": "0x2236920cbdaabbe6f02811a648b9ed30a022c7dd", "following_count": 503, "verified_addresses": {"eth_addresses": ["0xd76ff76ac8019c99237bde08d7c39dab5481bed2"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b502edfc-9c7d-45ca-559a-61275b624e00/original\"}","{\"url\":\"https://open.spotify.com/track/6KDHALPczYRgug40ohucum?si=nPxSFf9CRUS3I30ndStpWA&context=spotify%3Aalbum%3A2kGoaq6HWC2eMDujX5Ave6\"}"}', NULL), - (3806, '0xf3c41e6ddb7ae0a6afdc95c8324b4c0797708be2', 0, 1, '2024-05-02 18:30:53+00', 0, 11, '{"fid": 390829, "object": "user", "pfp_url": "https://i.imgur.com/K8thymH.gif", "profile": {"bio": {"text": "photographer and professional shitposter obsessed with color pink / fashion and lifestyle vlogs 💋 /girl-friends", "mentioned_profiles": []}}, "username": "gusa", "power_badge": true, "display_name": "🫧🎀gusanita", "active_status": "inactive", "verifications": ["0xa656beba855e80383e4502549ada7adf2e99d441"], "follower_count": 654, "custody_address": "0xf8d570dcdbfa418eada4049ed88df4e3a66f6a60", "following_count": 242, "verified_addresses": {"eth_addresses": ["0xa656beba855e80383e4502549ada7adf2e99d441"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0NANNHEOnPtBaiAiFmIqM1?si=OY5R7WO-RbaYC4Z2DaUNKw\"}"}', NULL), - (88483, '0x5e0a590412ecc14b35eb59231c09572aa283fb8f', 0, 1, '2024-05-05 00:41:39+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MxYV3\"}"}', NULL), - (3801, '0xf1580eb3332858d08df5ca869e35edc242c3d686', 0, 1, '2024-05-02 20:56:36+00', 0, 3, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1090, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a61fbaf-bf25-4819-2c9d-3d0b756b8e00/original\"}","{\"url\":\"https://open.spotify.com/track/02NuJokX5OKcF7ksvkJbnd?si=8xk5S4joQ4OKEbmC3ADW_A&context=spotify%3Asearch%3Afamily%2Bgang\"}"}', NULL), - (736165, '0x83840dea26105bc0269b531200917104936cf1bc', 0, 1, '2024-05-06 21:55:22+00', 0, 0, '{"fid": 396686, "object": "user", "pfp_url": "https://i.imgur.com/fPrPJbw.jpg", "profile": {"bio": {"text": "Degen Investor, NFT Designer, Real Estate Investment Expert", "mentioned_profiles": []}}, "username": "cupe", "power_badge": false, "display_name": "Unicbabe🎩", "active_status": "inactive", "verifications": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "follower_count": 627, "custody_address": "0x1cf829fd720262d71df0d31d2daa438b8bcfa33d", "following_count": 1125, "verified_addresses": {"eth_addresses": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "sol_addresses": ["JCwvnP3zV9KCQMMCCsmdPrSoh6K6AbJeUpvuY96YPKj1"]}}', '{"{\"url\":\"https://soundcloud.com/pianoandinstrumental/james-blunt-youre-beautiful-live-acoustic\"}"}', NULL), - (19003, '0x2400cca79ded10ee7c9d1d084d22fce8dbaedff0', 0, 1, '2024-05-04 20:09:14+00', 0, 7, '{"fid": 261305, "object": "user", "pfp_url": "https://i.imgur.com/5IIYuyU.jpg", "profile": {"bio": {"text": "CXO, Ledger.\nhttp://ledger.com\nhttps://gallery.so/higallery", "mentioned_profiles": []}}, "username": "iancr", "power_badge": true, "display_name": "ian c rogers", "active_status": "inactive", "verifications": ["0x647eb74a5135a0f24beee3c2d8432adcbb32c2a8", "0x37769c5bdd7a43b0b52958ca51bdace1556c96bf"], "follower_count": 692, "custody_address": "0xc965e28fa9e950305a1ed060724f2acd00be9c2a", "following_count": 163, "verified_addresses": {"eth_addresses": ["0x647eb74a5135a0f24beee3c2d8432adcbb32c2a8", "0x37769c5bdd7a43b0b52958ca51bdace1556c96bf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K3mYZ\"}"}', NULL), - (7026, '0x0b8e007bbc10da58814091d891bf273d20ec45f7', 0, 1, '2024-05-04 12:15:51+00', 0, 0, '{"fid": 471508, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9cb7f396-ef7d-4393-c0ee-13fa12988700/rectcrop3", "profile": {"bio": {"text": "DIY Musician . Darkart AI \nhttps://linktr.ee/dethember8", "mentioned_profiles": []}}, "username": "dethember8", "power_badge": false, "display_name": "Shahrokh", "active_status": "inactive", "verifications": ["0xe8d0492bdca82bb0b4104e04affb709536c85e87"], "follower_count": 36, "custody_address": "0x7ebfbb65651e85c611d3af84233b19dd897ac61e", "following_count": 125, "verified_addresses": {"eth_addresses": ["0xe8d0492bdca82bb0b4104e04affb709536c85e87"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d6f1a56-b652-44e9-7c5d-238616644b00/original\"}","{\"url\":\"https://www.sound.xyz/web3metal/my-black-metal-baby\"}"}', 'soundxyz'), - (23934, '0x47528d337074e738e6ceab9d00a2d0fe680d2b22', 0, 1, '2024-05-04 21:11:30+00', 0, 1, '{"fid": 429877, "object": "user", "pfp_url": "https://i.imgur.com/dNpXbZg.png", "profile": {"bio": {"text": "Developer and Marketing enthusiast 👨‍💻 | Going to Hackatons : ETHRome 2023 ; ETHBucharest 2024\n\n| @drakula : alexastro\n| youtube : _alexastro\n", "mentioned_profiles": []}}, "username": "alexastro", "power_badge": true, "display_name": "Alex Astro", "active_status": "inactive", "verifications": ["0x909957dcc1b114fe262f4779e6aed4d034d96b0f"], "follower_count": 317, "custody_address": "0x4e5eb7ea4aebdb397cfa06ef7a944774c92b65df", "following_count": 320, "verified_addresses": {"eth_addresses": ["0x909957dcc1b114fe262f4779e6aed4d034d96b0f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qAN5SzcaczVp7mds7\"}"}', NULL), - (51641, '0x153e3a81e460a2aef38cf964ecb59241b896e852', 0, 1, '2024-05-04 22:58:57+00', 0, 1, '{"fid": 263685, "object": "user", "pfp_url": "https://i.imgur.com/SkCbsxr.gif", "profile": {"bio": {"text": "A long long time ago... In a galaxy far far away... 🎩", "mentioned_profiles": []}}, "username": "guerrix", "power_badge": false, "display_name": "El Guerrix 🎩🔵", "active_status": "inactive", "verifications": ["0x0cad2d0b33ec5206384a7e68876541211ab007a3"], "follower_count": 458, "custody_address": "0xa08c9f8ad3583c62c1d8ab8fa371481df89ddcca", "following_count": 855, "verified_addresses": {"eth_addresses": ["0x0cad2d0b33ec5206384a7e68876541211ab007a3"], "sol_addresses": []}}', '{"{\"url\":\"Ouça N''to - Trauma (Worakls Remix) de worakls no #SoundCloud https://on.soundcloud.com/bFx8x\"}"}', NULL), - (27596, '0xc907bdea6bfb449c46d4cf4ff91da4b185769987', 0, 1, '2024-05-04 21:25:23+00', 0, 2, '{"fid": 1389, "object": "user", "pfp_url": "https://i.imgur.com/0OtVNPS.png", "profile": {"bio": {"text": "Talk data to me.", "mentioned_profiles": []}}, "username": "whyshock", "power_badge": true, "display_name": "Whyshock 🎩", "active_status": "inactive", "verifications": ["0xf0c32b605d6065c848c9a1d6f3c11ca7b3752f37"], "follower_count": 234, "custody_address": "0x8f8a5b25fff9c6875fbdba4f3c6f4c695b78ce10", "following_count": 180, "verified_addresses": {"eth_addresses": ["0xf0c32b605d6065c848c9a1d6f3c11ca7b3752f37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sidvashi/ii-ghost-dont-follow-me?in=sidvashi/sets/azuma-kazuma-1\"}"}', NULL), - (34393, '0x5bad05d9792af274383ff6dd4b68090253a1dccb', 0, 1, '2024-05-04 21:48:44+00', 0, 4, '{"fid": 396686, "object": "user", "pfp_url": "https://i.imgur.com/fPrPJbw.jpg", "profile": {"bio": {"text": "Degen Investor, NFT Designer, Real Estate Investment Expert", "mentioned_profiles": []}}, "username": "cupe", "power_badge": false, "display_name": "Unicbabe🎩", "active_status": "inactive", "verifications": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "follower_count": 596, "custody_address": "0x1cf829fd720262d71df0d31d2daa438b8bcfa33d", "following_count": 1091, "verified_addresses": {"eth_addresses": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "sol_addresses": ["JCwvnP3zV9KCQMMCCsmdPrSoh6K6AbJeUpvuY96YPKj1"]}}', '{"{\"url\":\"https://soundcloud.com/nachohendrix/wake-up-rage-against-the-machine-guitar-cover\"}"}', NULL), - (3865, '0x6c9613a430d70dc5b92678f2778699879b595f56', 0, 1, '2024-05-02 15:36:56+00', 0, 4, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 106, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 286, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://www.sound.xyz/davyd/invictus-ft-yoshiro-mare-melodic-mix?referral=0x94734e11b78680a35b0a86ba3ce634d334d6d2a7\"}"}', NULL), - (7118, '0x93ba2986ae838e318b27f4c0937d2ee136794afc', 0, 1, '2024-05-04 16:06:38+00', 0, 5, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1109, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmSSYgNMytzFzFHJjjMN1RFDtpwf38VQFwHop1btHMfLAN?filename=IMG_7730.jpeg\"}","{\"url\":\"https://open.spotify.com/track/2qWKpYIleSvBT6aUMXoia5?si=_GomUCzOQgGCl-rk1WiCpA&context=spotify%3Asearch%3Aangel\"}"}', NULL), - (41682, '0xb704107046e17c77310204164c459a923acd6e99', 0, 1, '2024-05-04 22:23:38+00', 0, 1, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 552, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 517, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/my-parents-house\"}"}', NULL), - (3879, '0x690df7abb8e7d653cffacc36977e279de2506b4a', 0, 1, '2024-05-02 22:10:09+00', 0, 3, '{"fid": 4316, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/GBtzV5Z6K8KhrFXQ5i3dseG4Jjamaa2UUtsHfmEE7K-CRd1cnR195zXb_TGKwQSrM95TQXZm-7wZ_bm7fphpP4SczsNHLxJrnhv_4c4", "profile": {"bio": {"text": "Jake (not from State Farm) // community @ courtyard.io\n // sneakerhead // guitar aficionado // xoogler", "mentioned_profiles": []}}, "username": "spin", "power_badge": true, "display_name": "chefspin 🎩", "active_status": "inactive", "verifications": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "follower_count": 748, "custody_address": "0xcaeaab4f1e1c662518456b28e0096b6b9026e4a4", "following_count": 453, "verified_addresses": {"eth_addresses": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0N3W5peJUQtI4eyR6GJT5O?si=780649e9ef9746be\"}"}', NULL), - (3824, '0x31126a9776d204e6b8c7c13367fa02d174e5dfcd', 0, 1, '2024-05-02 20:12:54+00', 0, 2, '{"fid": 382890, "object": "user", "pfp_url": "https://i.imgur.com/m3mkucY.jpg", "profile": {"bio": {"text": "Transdisciplinary artist, working with traditional and digital painting, 2D animation, 3D and music // she/her — https://thehug.xyz/artists/qabqabqab", "mentioned_profiles": []}}, "username": "qabqabqab", "power_badge": true, "display_name": "qabqabqab", "active_status": "inactive", "verifications": ["0x9904ceddba825a18bdf7e1984a886d23394ccbcc"], "follower_count": 395, "custody_address": "0xae4080212a7e3aba161fd86b9afc8f7e4bbdc14e", "following_count": 416, "verified_addresses": {"eth_addresses": ["0x9904ceddba825a18bdf7e1984a886d23394ccbcc"], "sol_addresses": ["HsFxoPHwGWHXyZ3sSekaZArV8gQW9BGnAcc8j2V5CvUu"]}}', '{"{\"url\":\"https://open.spotify.com/track/5KMXI6dMJqPWcH4v0KF9ym?si=823731025bbd4bd0\"}"}', NULL), - (48432, '0x29137544142131e0748993a23bb0de7db51752fa', 0, 1, '2024-05-04 22:46:35+00', 0, 1, '{"fid": 201756, "object": "user", "pfp_url": "https://i.imgur.com/PJYB3Ob.jpg", "profile": {"bio": {"text": "Merci", "mentioned_profiles": []}}, "username": "cobsfar", "power_badge": false, "display_name": "Cobs🎩👽", "active_status": "inactive", "verifications": ["0x7edbd4c8c51b8ebe359f0993ed4c01d41b24f142"], "follower_count": 107, "custody_address": "0xd3228595091972b0e9e2bc1c0465a93e9a540ab2", "following_count": 98, "verified_addresses": {"eth_addresses": ["0x7edbd4c8c51b8ebe359f0993ed4c01d41b24f142"], "sol_addresses": ["4HcNSVinPgoT9Ktf2FiKmBu4YuUixTDYTg4CE5Lfj6qt"]}}', '{"{\"url\":\"https://on.soundcloud.com/dYVd1gUmZcXE2oBm8\"}"}', NULL), - (3873, '0xe79878a90535cfb98c3fdb096b841a3ad13caa1b', 0, 1, '2024-05-02 22:30:44+00', 0, 1, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 298, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 144, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3VjmE2R9lWcmj8UCmknuhS?si=52c44fc2f4254c0d\"}"}', NULL), - (7007, '0x8048c886937324545fa1eb1ab73c3e71ae345ca7', 0, 1, '2024-05-04 14:48:08+00', 0, 13, '{"fid": 466583, "object": "user", "pfp_url": "https://i.imgur.com/aup5rue.jpg", "profile": {"bio": {"text": "Backpacker, traveler, digital nomad.", "mentioned_profiles": []}}, "username": "eltalitali", "power_badge": false, "display_name": "Dib Gamal", "active_status": "inactive", "verifications": ["0x9440c6dace67b3e62a481b5241daf30c36cd8c9c"], "follower_count": 187, "custody_address": "0x4a286c07b6682f5288a49030f5a586117f2d1cd7", "following_count": 348, "verified_addresses": {"eth_addresses": ["0x9440c6dace67b3e62a481b5241daf30c36cd8c9c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0zvTtB6Rgpk5HMolbqDORx?si=igHulJS9R3WS5Lgja-yyqg\"}"}', NULL), - (7019, '0x013b828ea8f9ad23ebc472e17544e2b8fdc67730', 0, 1, '2024-05-04 12:02:35+00', 0, 1, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 215, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/first-diss-collect-to-earn-sstrm?referral_source=link\"}"}', NULL), - (5410, '0x1fb39ab51d7f9094359fae68bd4065618d9f97bd', 0, 1, '2024-05-04 03:31:59+00', 0, 5, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1107, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/2Mb3zpobD0CvJGWv6NpsPy?si=PeUW30tdQtmVvbZygKQisQ&context=spotify%3Asearch%3Atheyvremin\"}"}', NULL), - (3875, '0xcc89a0b5893afbb2cfc524aed0774aaafd6c0c30', 0, 1, '2024-05-02 21:37:25+00', 0, 12, '{"fid": 434822, "object": "user", "pfp_url": "https://i.imgur.com/JQDSj2Q.jpg", "profile": {"bio": {"text": "AI artist\nhttps://linktr.ee/ahmadovamarina", "mentioned_profiles": []}}, "username": "marina-ahmadova", "power_badge": true, "display_name": "Marina Ahmadova🎩", "active_status": "inactive", "verifications": ["0x32dc25454b4b2797a504f4e14f5151471498d36e"], "follower_count": 1315, "custody_address": "0xc911d5e1fce505df8124ef2490f19c4bc373c0a8", "following_count": 1295, "verified_addresses": {"eth_addresses": ["0x32dc25454b4b2797a504f4e14f5151471498d36e"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2626c5f5-ecf0-454c-1a59-db779b9a5000/original\"}","{\"url\":\"https://open.spotify.com/track/4poVy19lNbz01LUySb3nwx?si=i-TUECciTGO2kw2EfpxwOA\"}"}', NULL), - (5438, '0x79aef0ea63bcd0c11edbd3e56b614a84c66e282a', 0, 1, '2024-05-04 04:47:57+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 8, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/origamihuman/1-shot?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (24167, '0xe060f02bf3247c93fa8b51e1093894b6e26e7447', 0, 1, '2024-05-04 21:13:30+00', 0, 0, '{"fid": 7746, "object": "user", "pfp_url": "https://i.imgur.com/Trb8WTP.jpg", "profile": {"bio": {"text": "Music tech", "mentioned_profiles": []}}, "username": "colombo", "power_badge": false, "display_name": "Colombo", "active_status": "inactive", "verifications": ["0x0e35b828026f010a291c1dc0939427b2963d8d5a"], "follower_count": 119, "custody_address": "0x05137793c9627105461bbeea8eaeaae876125be9", "following_count": 166, "verified_addresses": {"eth_addresses": ["0x0e35b828026f010a291c1dc0939427b2963d8d5a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-267166048-121015061/yo-soy-dios-kasbeel-fnmstr\"}"}', NULL), - (7040, '0xc0677d03e25592f1114f70b83481c65d3734fe8a', 0, 1, '2024-05-04 14:58:58+00', 0, 0, '{"fid": 316982, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ccd7380-b6d6-4fb2-9d84-40b8431ae400/original", "profile": {"bio": {"text": "I sell ice creams in Zora / Objkt\n", "mentioned_profiles": []}}, "username": "whoisponyboy", "power_badge": false, "display_name": "PONY BOY 🎠", "active_status": "inactive", "verifications": ["0x4b764659c758928aa6b8b09e703618d46d2136b5"], "follower_count": 210, "custody_address": "0x73b17723071c45a0d4292a59efe93679ae845564", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x4b764659c758928aa6b8b09e703618d46d2136b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1eqqOLgvDpQhdZBaDgGiJ8?si=vto4p-tnTRqcHNhWzi8VWA\"}"}', NULL), - (86956, '0xa70b9ea55e4563912414282cef2c672556f138ee', 0, 1, '2024-05-05 00:37:30+00', 0, 0, '{"fid": 286600, "object": "user", "pfp_url": "https://arweave.net/-AadrzJqYhr6A2Ls8vK3otlfEf9stJptJXHOYwslgZQ/", "profile": {"bio": {"text": "두 마리 토끼를 쫓는 사람은 둘 다 잡지 못한다. ''GCR''", "mentioned_profiles": []}}, "username": "waltzyang", "power_badge": false, "display_name": "WTG🎩🔵", "active_status": "inactive", "verifications": ["0x89faa2e1306484d47ec22342fd5b3db6ba8b714d", "0x89faa2e1306484d47ec22342fd5b3db6ba8b714d"], "follower_count": 1679, "custody_address": "0x47935a67055317a99016848d6aa1faf2218ef052", "following_count": 1588, "verified_addresses": {"eth_addresses": ["0x89faa2e1306484d47ec22342fd5b3db6ba8b714d", "0x89faa2e1306484d47ec22342fd5b3db6ba8b714d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/plus82seoul/plus82-present-vol03-harmonize-pray?si=012ab5985bbf42da960f186e24f4e215&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (3876, '0x3a80d22ed136cb23dd4d6a32fc685cc96868cba5', 0, 1, '2024-05-02 22:11:47+00', 0, 1, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeidv4j2lqgrxvgbaxd2zsxswqag2xbccnj6y3rixmpzlxlxiramsy4", "profile": {"bio": {"text": "i am you, from another point of view /wevibe ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth 🎩🍖🔵🤙🏽", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 1619, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 533, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7u5xCju5WS4D568er9mUU0?si=oztzIs9GS5-erWa59p04Zg&context=spotify%3Aplaylist%3A1b0w3Kzxow3WCLJth1TOul\"}"}', NULL), - (3802, '0xc9b4cef8ceac6021660ca1ed068cb5a36187a761', 0, 1, '2024-05-02 20:01:18+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1090, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8109b494-e565-4489-23f8-c05c7b00bc00/original\"}","{\"url\":\"https://open.spotify.com/track/1aXPkr9SEOFp63ab2J0fMo?si=H5mN1NTKQk62kQambGrORA&context=spotify%3Asearch\"}"}', NULL), - (5433, '0x30ce8aa2ef0edc20c6d548b33d7194b6ef09f287', 0, 1, '2024-05-03 05:16:28+00', 0, 1, '{"fid": 461708, "object": "user", "pfp_url": "https://i.imgur.com/PMNEpX4.jpg", "profile": {"bio": {"text": "Multidiscip. Artist|\nMusic Producer| Award-Winning Score Composer & Sound Designer|\nIndustrial Designer| Digital Artist| AI Researcher\n\nLinktr.ee/Matthewbian", "mentioned_profiles": []}}, "username": "matthewbian", "power_badge": false, "display_name": "Matthewbian 🎩", "active_status": "inactive", "verifications": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "follower_count": 185, "custody_address": "0x2ff473b3634c370c3981b3decbdb6401461da94c", "following_count": 549, "verified_addresses": {"eth_addresses": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DdvGH\"}","{\"url\":\"https://objkt.com/collection/KT1UtdByRVTkYG75pZda4eXmeVn2TJYKVR7k\"}"}', NULL), - (3878, '0x3bc8c1bd8e5195a3a4d01ae67d8dda8bbcf740fa', 0, 1, '2024-05-02 22:39:53+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 274, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 233, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7fzHQizxTqy8wTXwlrgPQQ?si=q9bnVXCbR9mLWCwa4sxQNQ&context=spotify%3Aartist%3A1WaFQSHVGZQJTbf0BdxdNo\"}"}', NULL), - (64188, '0x073633f94279000fa2da7757ea9c7426dbc9a4ba', 10, 1, '2024-05-04 23:28:58+00', 60, 24, '{"fid": 302515, "object": "user", "pfp_url": "https://i.imgur.com/9bbU25M.jpg", "profile": {"bio": {"text": "Onchain Researcher! ❤️ World is beautiful", "mentioned_profiles": []}}, "username": "gianahazel", "power_badge": false, "display_name": "Giana 🐧🍖🦊", "active_status": "inactive", "verifications": ["0x5fc8c99efc2536037568392ef02294f5ee9910ac"], "follower_count": 36, "custody_address": "0x5fc8c99efc2536037568392ef02294f5ee9910ac", "following_count": 91, "verified_addresses": {"eth_addresses": ["0x5fc8c99efc2536037568392ef02294f5ee9910ac"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/saRHgMWHnMnyybQg6\"}"}', NULL), - (3831, '0xcb440d3dbbd18aebb8878f9006b3c5d05fc07c36', 0, 1, '2024-05-02 19:24:53+00', 0, 2, '{"fid": 10694, "object": "user", "pfp_url": "https://i.imgur.com/ECKl5Wu.gif", "profile": {"bio": {"text": "conversational liquidity provider || writing at: https://paragraph.xyz/@thearcadia || curating vibes over at /football", "mentioned_profiles": []}}, "username": "chukwukaosakwe", "power_badge": true, "display_name": "Chukwuka Osakwe", "active_status": "inactive", "verifications": ["0x0a61e9065219a1b84a9fa1b67482c485c39c51de"], "follower_count": 1704, "custody_address": "0x63c0df9ccb039241bf53baac41cc1d281ef95b63", "following_count": 592, "verified_addresses": {"eth_addresses": ["0x0a61e9065219a1b84a9fa1b67482c485c39c51de"], "sol_addresses": ["6zDfzrCSAk5UwYCsvHoRq3f7ff1kSXbUFJfRmzh5MUWX"]}}', '{"{\"url\":\"https://open.spotify.com/track/74CA9T8IpFzrLNFV6EoY3a?si=j7GHtlEVSrGi_3eWmzmcDA\"}"}', NULL), - (519364, '0x1b0337c64a3fa65fa0247b4df0ec2b372f199e30', 0, 1, '2024-05-06 08:55:01+00', 0, 0, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1951, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2424, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98d7246f-cfc8-4d47-0463-6c96203e0900/original\"}","{\"url\":\"https://on.soundcloud.com/62mWi\"}"}', 'sonata'), - (31783, '0x05df8aa5233c514405084f8bdd23323e4eb28f2d', 10, 1, '2024-05-04 21:43:33+00', 0, 6, '{"fid": 260, "object": "user", "pfp_url": "https://i.imgur.com/DAsCWsH.jpeg", "profile": {"bio": {"text": "1confirmation", "mentioned_profiles": []}}, "username": "yekim.eth", "power_badge": true, "display_name": "Mike🎩", "active_status": "inactive", "verifications": ["0xf723d05f10e8503feaba5cfbb9a5513eb8ecbfd6"], "follower_count": 7902, "custody_address": "0x3b379ecb140b906bbcddac1a3f8b1163330d5da9", "following_count": 759, "verified_addresses": {"eth_addresses": ["0xf723d05f10e8503feaba5cfbb9a5513eb8ecbfd6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8USvy4bVagLLN2Sx6\"}"}', NULL), - (40814, '0x626703ecc6d80bda6dc097bae65870dbe8c065c7', 0, 1, '2024-05-04 22:20:33+00', 0, 3, '{"fid": 214570, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/cluwbae3c01kamhvy175prg45.png", "profile": {"bio": {"text": "Early adopter | Degentlemen #8570", "mentioned_profiles": []}}, "username": "cav4lier.eth", "power_badge": false, "display_name": "cav4lier🎩🐲", "active_status": "inactive", "verifications": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "follower_count": 1068, "custody_address": "0x6ff3403ac94b6d5b79584fc398008f682d2ff591", "following_count": 766, "verified_addresses": {"eth_addresses": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kevinthomas/rock-me-all-night-long\"}"}', NULL), - (264, '0xebc030957daf7f01866c8eefbba4121c387e3cb9', 110, 1, '2024-05-01 05:29:37+00', 0, 12, '{"fid": 389646, "object": "user", "pfp_url": "https://i.imgur.com/JTc4Ywb.jpg", "profile": {"bio": {"text": "❤️ Web3 apps", "mentioned_profiles": []}}, "username": "0xemad", "power_badge": false, "display_name": "0xemad 🎩🔵🔮🍖⛓️", "active_status": "inactive", "verifications": ["0x91acadda620cb46bb55e55c4bcadf21f1723ad7a"], "follower_count": 1205, "custody_address": "0xb2a780bccb35dfeed83c31669d7f3f00905a2426", "following_count": 1154, "verified_addresses": {"eth_addresses": ["0x91acadda620cb46bb55e55c4bcadf21f1723ad7a"], "sol_addresses": ["8Rn8cqQPTthu69iyKXqwmoJAaSBE8ZFQMhnXfxUYAPpf"]}}', '{"{\"url\":\"https://on.soundcloud.com/n323s\"}"}', NULL), - (3809, '0xe579f5c4f9b084c7457db1906ac9744d19d8873e', 0, 1, '2024-05-02 17:11:53+00', 0, 1, '{"fid": 420056, "object": "user", "pfp_url": "https://i.imgur.com/E5P7cKg.jpg", "profile": {"bio": {"text": "TSG Music is a Swedish record label.", "mentioned_profiles": []}}, "username": "tsgmusic", "power_badge": false, "display_name": "TSG Music ", "active_status": "inactive", "verifications": ["0x12ac0d5d5397471776ea096c6bbbcd60dd91173b"], "follower_count": 101, "custody_address": "0xefe3779c92751d62bd11f71b2ece85535f981d6f", "following_count": 398, "verified_addresses": {"eth_addresses": ["0x12ac0d5d5397471776ea096c6bbbcd60dd91173b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tsg-music/mix008?si=05083cda0ef042c0b6fe24a56976c500&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (38343, '0x260fc2fd3db01c4e56ee08e3b8c63b3f10edb7fc', 0, 1, '2024-05-04 21:59:02+00', 0, 1, '{"fid": 287576, "object": "user", "pfp_url": "https://i.imgur.com/l45fsuw.jpg", "profile": {"bio": {"text": "仕事家事育児兼業くりぷたー\nX:https://twitter.com/noshi_no_4\n時間がなくても追える範囲を意識してやってます。最近は$APT推し", "mentioned_profiles": []}}, "username": "noshi", "power_badge": false, "display_name": "noshi🎩🍖", "active_status": "inactive", "verifications": ["0xfbf19dcd5387e9c087c8cb93fbbc8bcc09e0a252"], "follower_count": 440, "custody_address": "0x1d4191865e8604c61d75fd24a66bfce006d6fb5c", "following_count": 299, "verified_addresses": {"eth_addresses": ["0xfbf19dcd5387e9c087c8cb93fbbc8bcc09e0a252"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/octobersveryown/drake-push-ups\"}"}', NULL), - (7018, '0x09ae77cc4872448a1663671b1c574db92d20575e', 0, 1, '2024-05-04 14:53:04+00', 0, 1, '{"fid": 481772, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f606bbf-9683-493a-6c49-cc4935ebee00/original", "profile": {"bio": {"text": "I like building things👩‍💻🎹👾", "mentioned_profiles": []}}, "username": "solipsistick", "power_badge": false, "display_name": "rhuave", "active_status": "inactive", "verifications": ["0xd609871aca0e3e41fbe69dc2dbac66b0b0b5c3fc"], "follower_count": 6, "custody_address": "0x037d51c5f493a03eb56fbe0b5102aa7fcd30215a", "following_count": 95, "verified_addresses": {"eth_addresses": ["0xd609871aca0e3e41fbe69dc2dbac66b0b0b5c3fc"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rhuave/awakening-in-cyberspace?referral_source=link\"}"}', 'soundxyz'), - (137391, '0xbd0aa8c2a24b3c6f97902f09415cc08fa4caaddb', 0, 1, '2024-05-05 06:34:40+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PJZAx\"}"}', NULL), - (143108, '0xef14e9a4f05aa5447e224c1437e1d4f1f47c19f5', 0, 1, '2024-05-05 07:57:03+00', 0, 0, '{"fid": 311776, "object": "user", "pfp_url": "https://i.imgur.com/CzZID1j.jpg", "profile": {"bio": {"text": "İ''m kind and crezy", "mentioned_profiles": []}}, "username": "emirmrp", "power_badge": false, "display_name": "Emir", "active_status": "inactive", "verifications": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "follower_count": 62, "custody_address": "0xc920d308083b3cb4e8033e58894df2b34af3e0e1", "following_count": 168, "verified_addresses": {"eth_addresses": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/aheads/ibrahim-tatlises-aramam\"}"}', NULL), - (30321, '0xa2207fa53d5fc37270c7175a033ccd23da6755c6', 0, 1, '2024-05-04 21:39:45+00', 0, 4, '{"fid": 268878, "object": "user", "pfp_url": "https://i.imgur.com/g5Bl6JV.jpg", "profile": {"bio": {"text": "onchain music\n\nhttps://drakula.app/user/serboy", "mentioned_profiles": []}}, "username": "serboy", "power_badge": true, "display_name": "serboy", "active_status": "inactive", "verifications": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "follower_count": 139, "custody_address": "0x693d7059bcec34abd383feaf75d3026fa698530c", "following_count": 122, "verified_addresses": {"eth_addresses": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/serboy/fated\"}"}', NULL), - (5329, '0x6fc448b184775580f47675fca57e0cb5ef6b3692', 0, 1, '2024-05-03 01:26:53+00', 0, 0, '{"fid": 9618, "object": "user", "pfp_url": "https://i.imgur.com/rp4LEGA.jpg", "profile": {"bio": {"text": "Life long learner. Micro dosing nitro brew", "mentioned_profiles": []}}, "username": "hitenp1", "power_badge": true, "display_name": "Hiten ", "active_status": "inactive", "verifications": ["0xa3bfe0bd34332dc4ef586e34fb853720d778ade6"], "follower_count": 398, "custody_address": "0xfd603bf71d2404b97ef4e8a4d41dd3a6d5612eda", "following_count": 366, "verified_addresses": {"eth_addresses": ["0xa3bfe0bd34332dc4ef586e34fb853720d778ade6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0PWP0kgNAIvTYyAJ75xHIt?si=-V8yIn9gQq-ND1vmNB9FuQ&context=spotify%3Aalbum%3A1VVSr4a7EKTNgbF2hJTcXb\"}"}', NULL), - (3821, '0x7e4a7a109ea4ba2ead74fa7b407fa037d0dcf60d', 0, 1, '2024-05-02 18:06:08+00', 0, 1, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 34, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/lovebomber-gaslighting-narcissism-glitch-glitch-glitch?referral_source=link\"}"}', NULL), - (5328, '0x2af3f9154f998ac22adf6a0c10208f88c47e06e8', 0, 1, '2024-05-03 01:25:54+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 568, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 265, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1VYLxlP0DOqtQaUQTTXeyz?si=MqSW9D_STb2rIpgK49BKAw&context=spotify%3Aalbum%3A5xlutZ0sYfJQjVIBOkkeW8\"}"}', NULL), - (5327, '0x8f80dab64c6b6575ec7b36c7e20c1d4e3b8c5f9f', 1010, 1, '2024-05-03 01:25:21+00', 0, 1, '{"fid": 212556, "object": "user", "pfp_url": "https://i.imgur.com/zh3DOft.jpg", "profile": {"bio": {"text": "Collector 🩸 | Degentlemen #8682", "mentioned_profiles": []}}, "username": "nhagio.eth", "power_badge": true, "display_name": "Windy|₿Ξ∞🎩📚🔥", "active_status": "inactive", "verifications": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "follower_count": 1618, "custody_address": "0x8cf6d2b8af28549a2625a6a52bd012f8f2e95b23", "following_count": 555, "verified_addresses": {"eth_addresses": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "sol_addresses": ["8esC41Pwnxtopjh8QdkaY89J8Dh17T3No653fNgAqtwv"]}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed?referral=0xbb1c043ceb7745b286987b4cc8359c5b508f0307\"}"}', NULL), - (7358, '0xac91dfbc202e2e96ba3b9f54d2162709bf51d762', 0, 1, '2024-05-04 16:23:48+00', 0, 2, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 284, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 235, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5jKFnadawzHXGWiLBeboas?si=9UBo3eF1TYWM8PKO7wzsrg\"}"}', NULL), - (7332, '0x4799a2db0c9969b71176abbaf2c468513aaec016', 0, 1, '2024-05-04 16:40:56+00', 0, 9, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 971, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 520, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/72F41A4ilyv2h4P0HXFhuh\"}"}', NULL), - (7479, '0xc2db37f0f69672d4da1ced572a1cf54eb262575b', 0, 1, '2024-05-04 16:56:10+00', 0, 0, '{"fid": 474233, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb5d2bda-2409-470a-7236-48da07e8b800/rectcrop3", "profile": {"bio": {"text": "STICK TO RTM🤵🏻📉\n\n\nA trader against the banks of the world.", "mentioned_profiles": []}}, "username": "syamak", "power_badge": false, "display_name": "syamak", "active_status": "inactive", "verifications": ["0x33d8b6ba1ff7665ca84d002b15eec8f73c0b0ea6"], "follower_count": 905, "custody_address": "0x5be556e3b314ff774b7e622426bbb22395dff758", "following_count": 1208, "verified_addresses": {"eth_addresses": ["0x33d8b6ba1ff7665ca84d002b15eec8f73c0b0ea6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/farshadhiphop/sets/nevisande-lp?ref=clipboard&p=i&c=0&si=52031EB346634F2D83A317A85D00A106&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (7317, '0x48886de2970c8f2601414219eeaf19ba8d5d5686', 0, 1, '2024-05-04 16:55:15+00', 0, 3, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1109, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/1LzNfuep1bnAUR9skqdHCK?si=NxfGyRvFQHOChze8I3_jhw&context=spotify%3Aartist%3A37w38cCSGgKLdayTRjna4W\"}"}', NULL), - (7318, '0x17e1ab57c7bb9af664bce07f890843e6fa3a0bb5', 0, 1, '2024-05-04 16:21:50+00', 0, 0, '{"fid": 513741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc9b8b43-adfa-4aac-cf1e-fbe4756d7900/rectcrop3", "profile": {"bio": {"text": "Lover of fine arts, deep conversations, and spontaneous adventures. Let''s embark on a journey of discovery together.", "mentioned_profiles": []}}, "username": "krystal13", "power_badge": false, "display_name": "Krystal", "active_status": "inactive", "verifications": ["0x12f294883638784a75215897fb141c5ff53fca73"], "follower_count": 79, "custody_address": "0x8a8fd9a7411dbf5acb9c60a87dd281e3eb74ad3a", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x12f294883638784a75215897fb141c5ff53fca73"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4i0v8aPKqkkO195PyFGLM1?si=2KXx0yrUQxm4GT_shwbuog\"}"}', NULL), - (5330, '0x74ec383fe0f6be75d84cc80debecc3718398cb37', 0, 1, '2024-05-03 00:55:31+00', 0, 0, '{"fid": 487576, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ff39c85-76fe-4d16-b8e1-c8b5d63e7000/rectcrop3", "profile": {"bio": {"text": "God this places moves fast", "mentioned_profiles": []}}, "username": "notyourmommy", "power_badge": false, "display_name": "Pax 🕶️🦄", "active_status": "inactive", "verifications": ["0xc2c9aa77ff0ced181aa454c6e68b6b72dd9d2dce"], "follower_count": 59, "custody_address": "0x21f5f0ed2dfba40c0c180bf019972d64eaf3c1a2", "following_count": 215, "verified_addresses": {"eth_addresses": ["0xc2c9aa77ff0ced181aa454c6e68b6b72dd9d2dce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0aq7ohTG6VDYQvsnAYtA5e?si=a05Dt6J0S8Ke3bVFfJTPNw&context=spotify%3Asearch%3Afireman\"}"}', NULL), - (5333, '0xc853dbfe36286d7a52b97b8ecbdf17233429e7ee', 0, 1, '2024-05-03 00:40:42+00', 0, 2, '{"fid": 199118, "object": "user", "pfp_url": "https://i.imgur.com/Zk6nGv8.jpg", "profile": {"bio": {"text": "I''m just a fool who''s intentions are good 🎶🎶 music is a passion football is my love", "mentioned_profiles": []}}, "username": "martin-jl", "power_badge": false, "display_name": "Martin", "active_status": "inactive", "verifications": ["0x46dac7412752e7567c941e8233f9bd647a0e46be"], "follower_count": 25, "custody_address": "0x2f8a43f544de214c15649d7175bd2c6ced666af7", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x46dac7412752e7567c941e8233f9bd647a0e46be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7gSBx3QBKkIK2X5XMQAzTJ?si=i8RRtfk2QaKELmFf7uS2Aw&context=spotify%3Aplaylist%3A37i9dQZEVXbtKekVgFoalb\"}"}', NULL), - (5332, '0x05a174ae2e8023f2a465eab385b3096d4498c666', 0, 1, '2024-05-03 01:31:08+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 568, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 265, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7f2vcDjWjVqkENE38q7vxJ?si=hrC_vM9TRceg3yL33EaQQg&context=spotify%3Aalbum%3A5V7rg6LPNl4TgqiGzA4kZH\"}"}', NULL), - (5331, '0x0337cfac47f33a5056de660114befdbb2a1806d9', 0, 1, '2024-05-03 00:09:06+00', 0, 0, '{"fid": 511550, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6daa0180-7fc6-4b7e-0166-0d9217e46200/rectcrop3", "profile": {"bio": {"text": "Artist", "mentioned_profiles": []}}, "username": "!511550", "power_badge": false, "display_name": "SAEKKO", "active_status": "inactive", "verifications": ["0xb65277f81378438109f6606e174c033d27b1dc33"], "follower_count": 20, "custody_address": "0xbf83c588c6487ad1208a7c444113dd9a6a3cb22d", "following_count": 87, "verified_addresses": {"eth_addresses": ["0xb65277f81378438109f6606e174c033d27b1dc33"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saekko669/leave-me-alone?referral=0xb65277f81378438109f6606e174c033d27b1dc33\"}"}', NULL), - (5409, '0x1ae3bf6b8194982fc0c966d7b334b1d2d0d19b50', 0, 1, '2024-05-03 22:47:36+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 34, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/adhd-is-my-superpower?referral_source=link\"}"}', NULL), - (5420, '0x598a67d45452fc1888909bd6d3cd628701c9c161', 0, 1, '2024-05-03 08:45:05+00', 0, 2, '{"fid": 506366, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/30148386-e066-4d60-e5de-cfcda5010500/rectcrop3", "profile": {"bio": {"text": "Forex Trader🎩🌎 - If u put work on it, dreams come true 👑", "mentioned_profiles": []}}, "username": "frank42", "power_badge": false, "display_name": "Csilla 🎩🔵👑", "active_status": "inactive", "verifications": ["0xd75fc168677e3947a699daf2dc16b13d85b08194"], "follower_count": 45, "custody_address": "0x56ec78a587be0173e456194ec398320f717312e4", "following_count": 146, "verified_addresses": {"eth_addresses": ["0xd75fc168677e3947a699daf2dc16b13d85b08194"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/F9nXoy35Tg2tuZWc6\"}"}', NULL), - (5417, '0xf311af1c841b82d6a88a935a232206d6bdd51dcb', 0, 1, '2024-05-04 04:47:09+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 8, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/tesh/inhale?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (5418, '0x7db1b45347883bb564b159ca518d9a33aa829770', 0, 1, '2024-05-04 04:47:31+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 8, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/wavedash/b-alright-feat-anamanaguchi-and-cayenne?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (31789, '0x90b649053c139030a4b1868fa82b9502994bd1e2', 0, 1, '2024-05-04 21:42:39+00', 0, 4, '{"fid": 241141, "object": "user", "pfp_url": "https://i.imgur.com/8srSBoW.jpg", "profile": {"bio": {"text": "Learning every day\n\n🇦🇷 ⭐️⭐️⭐️\n ", "mentioned_profiles": []}}, "username": "argentina", "power_badge": false, "display_name": "Rocky 🇦🇷🎩🔵", "active_status": "inactive", "verifications": ["0xba86e23e64828781a43b71647cc2d2a32bfe8890", "0x1d6197b012be1bee9b6d36865c97c2a38f4d90fb"], "follower_count": 429, "custody_address": "0x90fc410c40aa269860e3efebddbc4c94a39d2312", "following_count": 238, "verified_addresses": {"eth_addresses": ["0xba86e23e64828781a43b71647cc2d2a32bfe8890", "0x1d6197b012be1bee9b6d36865c97c2a38f4d90fb"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/memba/back-online?referral=0xba86e23e64828781a43b71647cc2d2a32bfe8890&referral_source=post-65d1b8a1-d015-4ebd-b506-4cc440c86ea7\"}"}', NULL), - (5416, '0xb24f797d07c3459cf7278c2b409dfce669b904bd', 0, 1, '2024-05-04 04:14:13+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 277, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 235, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3jHdKaLCkuNEkWcLVmQPCX?si=VQrG6xYNQ-WwNRD5sX4YFA&context=spotify%3Aplaylist%3A37i9dQZF1E4p66bQvhyRSz\"}"}', NULL), - (17756, '0x31f363fe9621befc1fa5ea6e8ffb49baa9f3b6ad', 0, 1, '2024-05-04 19:52:24+00', 0, 4, '{"fid": 513084, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a02a96e9-d9a5-4654-cca7-9f2edb647100/rectcrop3", "profile": {"bio": {"text": "I 💚 corcodushe", "mentioned_profiles": []}}, "username": "!513084", "power_badge": false, "display_name": "Corcodushe", "active_status": "inactive", "verifications": ["0x832d0d5f60bfb954d48d3675f72adcbca545ca55"], "follower_count": 41, "custody_address": "0xe37948d39ed454da050e24ea4b5d7f8495c5d150", "following_count": 61, "verified_addresses": {"eth_addresses": ["0x832d0d5f60bfb954d48d3675f72adcbca545ca55"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1fMh0BhkxX0T58RcHrxB7t?si=_NUcOH4XQJqBYNVgfgAoXg\"}"}', 'wevibe'), - (38366, '0x2c44df38ed45ae83fe8dbe1fccfb7ef283637602', 0, 1, '2024-05-04 21:59:01+00', 0, 0, '{"fid": 407128, "object": "user", "pfp_url": "https://i.imgur.com/cEarSGQ.jpg", "profile": {"bio": {"text": "MD., Ph.D.\ncrypto, NFT collector \nなんとなく慣れてきました", "mentioned_profiles": []}}, "username": "scrypto3", "power_badge": false, "display_name": "Scrypto🎩🔮🔵🦄", "active_status": "inactive", "verifications": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "follower_count": 645, "custody_address": "0x3dfe27594d0d2d3180dfce17109a282e3018c0df", "following_count": 623, "verified_addresses": {"eth_addresses": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0IQi5qWedl2dmLh8IzpmWl?si=kh4dpvjcSR-nk8aLommklA&context=spotify%3Aalbum%3A5EP4eKCbOHVhNJKg7bzN55\"}"}', NULL), - (5431, '0xad7abc7f898cc5e4afd3668b70b1c6fa46090392', 0, 1, '2024-05-04 08:40:12+00', 0, 0, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "🦠 Onchain Music @invinmusic 🦠", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas | FarCon", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 570, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?song_tab=posts\"}"}', NULL), - (5424, '0xe5c13c1f58f18966dc2a56d378c45da0591e3142', 0, 1, '2024-05-04 03:42:54+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1107, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdb0ca5f-a44f-451c-0745-f07e68bfda00/original\"}","{\"url\":\"https://open.spotify.com/track/1f67iBDSGFMepBM9jFJ2Dw?si=w2JQTeLTRGyj1TAqS6KFqg&context=spotify%3Asearch%3Atobe\"}"}', NULL), - (7330, '0x91b5a389df16584695471bfac009a90d25dd5776', 0, 1, '2024-05-04 16:21:41+00', 0, 2, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 413, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 422, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/27msmgcdSRniJHfocEf6EH?si=9c8539ecd8e04fd5\"}"}', NULL), - (31785, '0x10d9e1a3a773d416a737bce0502473e245ec7368', 0, 1, '2024-05-04 21:43:09+00', 0, 0, '{"fid": 260, "object": "user", "pfp_url": "https://i.imgur.com/DAsCWsH.jpeg", "profile": {"bio": {"text": "1confirmation", "mentioned_profiles": []}}, "username": "yekim.eth", "power_badge": true, "display_name": "Mike🎩", "active_status": "inactive", "verifications": ["0xf723d05f10e8503feaba5cfbb9a5513eb8ecbfd6"], "follower_count": 7889, "custody_address": "0x3b379ecb140b906bbcddac1a3f8b1163330d5da9", "following_count": 757, "verified_addresses": {"eth_addresses": ["0xf723d05f10e8503feaba5cfbb9a5513eb8ecbfd6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8USvy4bVagLLN2Sx6\"}"}', NULL), - (7345, '0x019b835b6a841569ca12a47d251e4b00fdc279ac', 1100, 1, '2024-05-04 16:25:34+00', 10, 0, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 72, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 273, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"http://sound.xyz\"}","{\"url\":\"https://www.sound.xyz/playlist/688a42ec-42d9-4080-8344-29b6a0eb68f1\"}"}', 'soundxyz'), - (38331, '0xf40f6b5eff7fc75becfe1454a5584e9bd829231e', 10, 1, '2024-05-04 21:58:21+00', 0, 1, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/satisfaction\"}"}', NULL), - (18001, '0x9396a8ed63a1950186cd6172050780706fa1432e', 0, 1, '2024-05-03 22:26:17+00', 0, 2, '{"fid": 387795, "object": "user", "pfp_url": "https://i.imgur.com/aEmZKh4.jpg", "profile": {"bio": {"text": "In the constant search to learn, in the constancy and discipline to do things well, to help and support this community project, we continue to build together th", "mentioned_profiles": []}}, "username": "limonadamix", "power_badge": false, "display_name": "Limonada Mix", "active_status": "inactive", "verifications": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "follower_count": 315, "custody_address": "0x0856dc293d54657cb53de5060a58c1b938d614c8", "following_count": 288, "verified_addresses": {"eth_addresses": ["0xfb36c377a2e0b9853281c2239dfb791d375f9b8b"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7cda929-932c-43f7-f3fe-778747913100/original\"}","{\"url\":\"https://open.spotify.com/track/1NFCHmE6p7icHYwr5QQal2?si=pa7-P_FVT9SpmrkK2XUKBw&pi=u-B6lNnEZ8S-2N\"}"}', NULL), - (7351, '0x8ba43b90e0b49e664551c61b679c3f07f6a7524f', 0, 1, '2024-05-04 16:42:53+00', 0, 1, '{"fid": 196290, "object": "user", "pfp_url": "https://i.imgur.com/RbFjWyi.jpg", "profile": {"bio": {"text": "Thunker. Kreatr. Degent. Memeist. Enthuusiasst.", "mentioned_profiles": []}}, "username": "thoughtspace", "power_badge": true, "display_name": "Grateful Ned 🎩🔵", "active_status": "inactive", "verifications": ["0x2ab0475881fe1ae4ce17d484507d96e3240e0260"], "follower_count": 294, "custody_address": "0x4a24d2329bcc611bb798296d020b11c7cf217aa9", "following_count": 309, "verified_addresses": {"eth_addresses": ["0x2ab0475881fe1ae4ce17d484507d96e3240e0260"], "sol_addresses": ["tJvT37qdfpE8j3ZJACTZTGz57mpeEKumJVBxGjJcJCP"]}}', '{"{\"url\":\"https://on.soundcloud.com/mBqGCd1CQyrWnYSEA\"}"}', NULL), - (5408, '0xd088f5c2b760e6d899e75848e61886d16d14e4de', 0, 1, '2024-05-04 05:51:11+00', 0, 8, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3792, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2rqUblDWJKlMVwh9uJc0Vv?si=EzZbuJrCTWWjXy-u3yUFbg\"}"}', NULL), - (5436, '0xe1df425ee64bdfcd6cc98dd0cabbab1098a485be', 0, 1, '2024-05-04 07:31:55+00', 0, 2, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 198, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1789, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/reflections?referral_source=link\"}"}', NULL), - (29869, '0xee253b499e92976179abb9efdb669e8d2eacfa04', 0, 1, '2024-05-04 21:38:47+00', 0, 0, '{"fid": 268878, "object": "user", "pfp_url": "https://i.imgur.com/g5Bl6JV.jpg", "profile": {"bio": {"text": "onchain music\n\nhttps://drakula.app/user/serboy", "mentioned_profiles": []}}, "username": "serboy", "power_badge": true, "display_name": "serboy", "active_status": "inactive", "verifications": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "follower_count": 139, "custody_address": "0x693d7059bcec34abd383feaf75d3026fa698530c", "following_count": 122, "verified_addresses": {"eth_addresses": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/serboy/a-song-im-not-sure-i-want-you-to-listen\"}"}', NULL), - (7334, '0x89842facd3b25b6533a537ede305c21de305885b', 0, 1, '2024-05-04 16:34:36+00', 0, 6, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 971, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 520, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/7EHAXZenBzmGCpccWCyg8z\"}"}', NULL), - (28074, '0xfa1f4fc1f1213444a63ee0cd81856f371e6c9b3e', 10, 1, '2024-05-04 21:29:28+00', 0, 7, '{"fid": 237763, "object": "user", "pfp_url": "https://i.imgur.com/xMlNksi.jpg", "profile": {"bio": {"text": "Adventuring through web3", "mentioned_profiles": []}}, "username": "0xadventurer", "power_badge": false, "display_name": "0xadventurer", "active_status": "inactive", "verifications": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "follower_count": 61, "custody_address": "0x2ce9b30eee00b8bcb204a1b9976db7316c21b4f1", "following_count": 217, "verified_addresses": {"eth_addresses": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BjSaz168uPfmjJ486\"}"}', NULL), - (5385, '0x1e37ef4bf730cb9cb82e3fd5046b44c141d9a719', 5435, 1, '2024-05-03 08:08:57+00', 161, 25, '{"fid": 507928, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49b4b4b3-3abc-4720-4eae-b3c7a46d2f00/rectcrop3", "profile": {"bio": {"text": "Crypto trader | Web3 gamer", "mentioned_profiles": []}}, "username": "!507928", "power_badge": false, "display_name": "Kasra", "active_status": "inactive", "verifications": ["0x15878850971770adb4d13aaa6ac5f8e7d5927a09"], "follower_count": 518, "custody_address": "0x2458e97ec605db31c7e58f39557f922604764114", "following_count": 867, "verified_addresses": {"eth_addresses": ["0x15878850971770adb4d13aaa6ac5f8e7d5927a09"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/kh_alex/pink-floyd-comfortably-numb-1\"}"}', NULL), - (44367, '0x050cec4fb540625b418d30f4f7404a2e784149fc', 0, 1, '2024-05-04 22:32:34+00', 0, 2, '{"fid": 448074, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d99aa3b-709e-4b08-e647-78168b7e4200/rectcrop3", "profile": {"bio": {"text": "Capture your every moment in the photo 📸\nFrom the home page of the city to the city to abroad 🇪🇦", "mentioned_profiles": []}}, "username": "bangdodo", "power_badge": false, "display_name": "Bangdo🎩📸🔵", "active_status": "inactive", "verifications": ["0x04a93274045e96924b0a3e5d037a834b6e14012e"], "follower_count": 333, "custody_address": "0x04a93274045e96924b0a3e5d037a834b6e14012e", "following_count": 570, "verified_addresses": {"eth_addresses": ["0x04a93274045e96924b0a3e5d037a834b6e14012e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3eh51r6rFWAlGQRlHx9QnQ?si=6GLUQp7rQe-75pnCQBfEcQ\"}"}', NULL), - (18006, '0xce25ce702e714fc9c39c7388e4cf9ffcccf4c7d5', 0, 1, '2024-05-03 21:46:45+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1104, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27809e4f-a4fe-46de-fd12-4fbadf21a500/original\"}","{\"url\":\"https://open.spotify.com/track/0fL9iDXlogOrpEx895mH7u?si=T9hmSAY3TpmfXrDUVpWXTg&context=spotify%3Aartist%3A6nHVyil9BKXe9Nv2C0131i\"}"}', NULL), - (47692, '0xffd8a7b972ba5a7dff0f329ed563e90a60de5041', 0, 1, '2024-05-04 22:45:01+00', 120, 9, '{"fid": 344719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cbe1a475-cc97-4751-7143-2e8c8bfebd00/original", "profile": {"bio": {"text": "CEO of own life /warpchat and /spotify | Crypto since 2016 | Are you warpchatter?", "mentioned_profiles": []}}, "username": "bezos", "power_badge": false, "display_name": "Bezos 🎩🔵", "active_status": "inactive", "verifications": ["0x185cdf961d21cb90d9ae75d5018e16b2e8fc25f2"], "follower_count": 1705, "custody_address": "0x8f8918429b59b8cc9ed4c90068841059cd16dca9", "following_count": 910, "verified_addresses": {"eth_addresses": ["0x185cdf961d21cb90d9ae75d5018e16b2e8fc25f2"], "sol_addresses": ["2gcnNg2o1qAuFYsmbiiTe7fEi5SErohrDpnsETzubfkN"]}}', '{"{\"url\":\"https://soundcloud.com/gayesuakyol/develerle-ya-yorum?si=9729eecabd9d4a71b86c474576e3ea3c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (5415, '0x55012b0ba458f34f31c31cf36401b0c4920ed9e3', 0, 1, '2024-05-04 04:47:44+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 8, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/cella/its-you?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (5414, '0xe1dd9ebca22d2feaa01b4228a8e615d0a82992d8', 0, 1, '2024-05-04 00:22:47+00', 0, 1, '{"fid": 387207, "object": "user", "pfp_url": "https://i.imgur.com/92zGxgK.png", "profile": {"bio": {"text": "Welcome to Cat Town; a cosy gamified on-chain economy developed by cats for cats\n\nBuilt with 💙 on @base", "mentioned_profiles": []}}, "username": "cattown", "power_badge": false, "display_name": "Cat Town", "active_status": "inactive", "verifications": ["0xa6bee3f99ee2b70672a34a983af0bbf79c028cd9"], "follower_count": 125, "custody_address": "0x0b909fad80a8eb5a8d59bd69c76376b27e9f044f", "following_count": 76, "verified_addresses": {"eth_addresses": ["0xa6bee3f99ee2b70672a34a983af0bbf79c028cd9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kkbento/seaside\"}"}', NULL), - (45136, '0x367068fddcb0003a2988606ea11ec95bebf82956', 80, 1, '2024-05-04 22:38:33+00', 302, 25, '{"fid": 502810, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5b67551-bafe-42bd-800e-ca130fb9c600/rectcrop3", "profile": {"bio": {"text": "QA | Software development | Gym", "mentioned_profiles": []}}, "username": "senjor", "power_badge": false, "display_name": "Sandis", "active_status": "inactive", "verifications": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "follower_count": 6, "custody_address": "0x066286d3a7a6e3eb6ebb16cd6dffe99031234640", "following_count": 76, "verified_addresses": {"eth_addresses": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MqGXAxS5FEiS8dKv9\"}"}', NULL), - (5428, '0xedcb9a233e08554106df7e857186c41a9d8c8623', 10, 1, '2024-05-04 02:08:40+00', 0, 3, '{"fid": 192426, "object": "user", "pfp_url": "https://arweave.net/sPQLrA_zrBh0RYmZf-HAyTRgq3mmRGhopKJVlsQ1BZw/", "profile": {"bio": {"text": "On this page I will……….NOTHING \nand i am Green 🟩🟩🟩🟢🟢🟢", "mentioned_profiles": []}}, "username": "spectrebtc2008", "power_badge": false, "display_name": "SpectreBTC2008⛓️", "active_status": "inactive", "verifications": ["0xb0477a50cafe4ce6d3f8f64a81cde4f42963755a"], "follower_count": 803, "custody_address": "0x5f3929dfec3e9eb3b79b9bc23f21567810b994a6", "following_count": 989, "verified_addresses": {"eth_addresses": ["0xb0477a50cafe4ce6d3f8f64a81cde4f42963755a"], "sol_addresses": ["CiHNnafKsRyG2mSpXQ4s3FhkZMhi772F1T9v7t5jHpZ7"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2fe2ea8-e989-4823-88ce-b070f7c7c600/original\"}","{\"url\":\"https://on.soundcloud.com/ZmCuNavwFvETs2RZ6\"}"}', NULL), - (5411, '0xcd705d1fefd5a60ee3c183552caa3888249281f4', 0, 1, '2024-05-04 03:45:23+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 34, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/neurodevelopmental-condition-autism-on-the-spectrum?referral_source=link\"}"}', NULL), - (231894, '0xf4b91fa37db95dfe87b2951d8efea62e2dfe9c1d', 0, 1, '2024-05-05 13:40:11+00', 0, 0, '{"fid": 239772, "object": "user", "pfp_url": "https://i.imgur.com/QFbg0GN.jpg", "profile": {"bio": {"text": "NFT CREATOR on Crypto", "mentioned_profiles": []}}, "username": "ohmaygot", "power_badge": false, "display_name": "$JUP JP 🎩🎩", "active_status": "inactive", "verifications": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "follower_count": 232, "custody_address": "0xcdb034f151b215297a81b7e64085597bd8e32ae4", "following_count": 756, "verified_addresses": {"eth_addresses": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "sol_addresses": ["FHRs2GSYnZsFjmoSvWpvvfyAdHre4jQPRih8Br6JkSZ2"]}}', '{"{\"url\":\"https://m.soundcloud.com/tommyrichmann/million-dollar-baby-vhs\"}"}', NULL), - (10599, '0x5bf1ad41dd06a35b018e902eee5f250902c60322', 0, 1, '2024-05-04 17:32:15+00', 0, 4, '{"fid": 4044, "object": "user", "pfp_url": "https://i.imgur.com/z9xqChs.jpg", "profile": {"bio": {"text": "👷 Building @interestedfyi (interested.fyi) to help people get /jobs 👔 🟪 #39 + 76 ⏪Prev. @ConsenSysMesh🦇🔊 Class of ’17 🤠", "mentioned_profiles": []}}, "username": "alec.eth", "power_badge": true, "display_name": "alec.eth🤠at FarCon", "active_status": "inactive", "verifications": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "follower_count": 3562, "custody_address": "0x8407d58683d74c59436c7d38218239082163fcf9", "following_count": 796, "verified_addresses": {"eth_addresses": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/599xQzIXeWSLNvfT2EIWaL?si=wppIRxCaQ9GsQG6tnvEAmw&context=spotify%3Aalbum%3A5So31JibrTO74WvuCozsAb\"}"}', NULL), - (27751, '0x54cf7afa2080f8773747a1c049add4a6be288904', 100, 1, '2024-05-04 21:27:16+00', 0, 4, '{"fid": 633, "object": "user", "pfp_url": "https://i.imgur.com/f3MHWW0.jpg", "profile": {"bio": {"text": "Music Nerd nerding with @clt on musicnerd.xyz. Productizing patronage.", "mentioned_profiles": []}}, "username": "cxy", "power_badge": true, "display_name": "C.Y. Lee | cxy.eth", "active_status": "inactive", "verifications": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "follower_count": 420, "custody_address": "0x42336ad90fb7a447e013d9f495cb96d7edc1a003", "following_count": 337, "verified_addresses": {"eth_addresses": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "sol_addresses": ["2fj2ne42grvCHsDUTuL4HVFT9wrAKZ3F9VZ2ktKMyDHP"]}}', '{"{\"url\":\"https://on.soundcloud.com/XgjGunGEQdaGPRsM6\"}"}', NULL), - (18008, '0x9c23432da8a99ec865c221ba756b67a129b59fea', 0, 1, '2024-05-03 21:34:53+00', 0, 0, '{"fid": 422090, "object": "user", "pfp_url": "https://i.imgur.com/frGxTaR.jpg", "profile": {"bio": {"text": "🥤 /ordinarygang 🎧 /onrepeat", "mentioned_profiles": []}}, "username": "dimmed", "power_badge": false, "display_name": "dimmed", "active_status": "inactive", "verifications": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "follower_count": 167, "custody_address": "0xd20070eb1a17e2fa8653dd4be7aa5631f31ccbbd", "following_count": 102, "verified_addresses": {"eth_addresses": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2aDEHlIot0gaNZQV5XL58a?si=i0Lsfw8ZQVyBxeEigZPT1g&context=spotify%3Aalbum%3A5SjR0EUzWxrlNFLgfwbUJq\"}"}', NULL), - (43814, '0x3eb31bfcb2985629b92d2dbb6849e360102a29f7', 0, 1, '2024-05-04 22:30:49+00', 0, 1, '{"fid": 439146, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/997d50df-b831-46a3-f63c-0073c0549d00/original", "profile": {"bio": {"text": "I always used to be a fatfinger, you see i typed my name error.", "mentioned_profiles": []}}, "username": "hyperfatfingger", "power_badge": false, "display_name": "Hyperfatfingger", "active_status": "inactive", "verifications": ["0x5ed86506ff1244bb3ac0c309d5fc5ae6c0375464"], "follower_count": 184, "custody_address": "0x4a755eb5035f22af64e177b3880f6b48d31d32c6", "following_count": 405, "verified_addresses": {"eth_addresses": ["0x5ed86506ff1244bb3ac0c309d5fc5ae6c0375464"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kenndog/beethoven\"}"}', NULL), - (5425, '0xb3375476cac3e9faab9686e727e8eefd8bec0a11', 0, 1, '2024-05-04 08:52:05+00', 0, 0, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman @ farcon", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 455, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 102, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/soundcloud/sets/album-of-the-week?si=841e362de5fb4c22806223d1d15fe58f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (5427, '0xca9ca3188861275efab17ba3268287fb3eb2f8b7', 0, 1, '2024-05-04 04:47:21+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 8, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bardz/candle-ends?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (48131, '0x9c1e3ffe6953cc43dac673848008e1ed729957dc', 0, 1, '2024-05-04 22:46:00+00', 0, 3, '{"fid": 7690, "object": "user", "pfp_url": "https://i.imgur.com/7m00D5i.jpg", "profile": {"bio": {"text": "Freedom & power / Web3 Brand Strategy / Building web3 media company. 🏰 Positive vibes, ALWAYS. \n\nhttps://nf.td/0xruckus", "mentioned_profiles": []}}, "username": "esusu.eth", "power_badge": false, "display_name": "0x 🎩 🦊 ", "active_status": "inactive", "verifications": ["0xe6c55b0af75151960005eabae3fe19528c1b131b"], "follower_count": 1163, "custody_address": "0xd411854f8ca066794515f17b518207fdeeff4823", "following_count": 205, "verified_addresses": {"eth_addresses": ["0xe6c55b0af75151960005eabae3fe19528c1b131b"], "sol_addresses": ["AFsaE6k1BsBPSa3gsH755H4kb51rBj7xXacCR8t4GLP2"]}}', '{"{\"url\":\"https://m.soundcloud.com/tommyrichmann/million-dollar-baby\"}"}', NULL), - (5421, '0x27f33c9fb85c0726470b82fe2c9b893325ccad1c', 0, 1, '2024-05-03 16:18:02+00', 0, 1, '{"fid": 402840, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigydh56iguyh4nt7u22xv7hjlsjvtenjcw773ymmjnf3jwfkipvki", "profile": {"bio": {"text": "a winger, music enthusiast and zealous learner", "mentioned_profiles": []}}, "username": "mojj", "power_badge": false, "display_name": "moj", "active_status": "inactive", "verifications": ["0xa30aebe21c244293811659661714147975d50d74"], "follower_count": 226, "custody_address": "0x2be5cf64e918f2963172ffbfd9f39fbb88a20fca", "following_count": 186, "verified_addresses": {"eth_addresses": ["0xa30aebe21c244293811659661714147975d50d74"], "sol_addresses": ["J5byy4ueGY9jkYRtcaYKLeKbQbzAo7dhrZo1PfkMMB3J"]}}', '{"{\"url\":\"https://on.soundcloud.com/kAsbG4YMMibbXam27ba\"}"}', NULL), - (18009, '0x3cb291a6468e5b2ca852c56747bf4a54bcf20a89', 0, 1, '2024-05-03 21:58:06+00', 0, 0, '{"fid": 19793, "object": "user", "pfp_url": "https://i.imgur.com/fxOuWA4.jpg", "profile": {"bio": {"text": "ORB-FREE PROOF OF PERSONHOOD @ /demos\n\ncome chat /indiemusic /dbacks /greenjeff", "mentioned_profiles": []}}, "username": "greenjeff", "power_badge": true, "display_name": "GREEN JEFF🎩", "active_status": "inactive", "verifications": ["0x37a6156e4a6e8b60b2415af040546cf5e91699bd"], "follower_count": 376, "custody_address": "0xc3054c78dc814a52ba89f371bda8f31980113f7a", "following_count": 511, "verified_addresses": {"eth_addresses": ["0x37a6156e4a6e8b60b2415af040546cf5e91699bd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0hUUCxji9cN0gb8Twf0a0n?si=sOD5qMkTT92ZwZ1SxFRwhg&context=spotify%3Aalbum%3A0EiI8ylL0FmWWpgHVTsZjZ\"}"}', NULL), - (59059, '0x3bc0b0dc3bf139cb7d4bd019750203de88d7ddc1', 0, 1, '2024-05-04 23:16:07+00', 0, 3, '{"fid": 504319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d507508-f4b2-404e-8c94-ac8c29b01100/rectcrop3", "profile": {"bio": {"text": "I’m just an ordinary person who likes food, travel and crypto 😀", "mentioned_profiles": []}}, "username": "jaydenoh", "power_badge": false, "display_name": "Jayden", "active_status": "inactive", "verifications": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "follower_count": 426, "custody_address": "0xa3afaf513eeed17783dfb7342f138f8e54fa5644", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CPaYACrutJDmuN84A\"}"}', NULL), - (38154, '0xd58ccd8fb9286f376804036ad8c0f040efad9fc2', 0, 1, '2024-05-04 21:54:20+00', 0, 0, '{"fid": 498398, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e55c529-9e3e-47c1-4789-c2deae6a9c00/rectcrop3", "profile": {"bio": {"text": "I am Zorro", "mentioned_profiles": []}}, "username": "bubobufo", "power_badge": false, "display_name": "Bubo", "active_status": "inactive", "verifications": ["0x87e4b99ce07073594adda44338705ba1ab674cbd", "0x7b1095e2059d78c07d251c28de70a5ae3c511d08"], "follower_count": 6, "custody_address": "0x107bd58734a24ce4551bfc1ef34b177daeec6aae", "following_count": 33, "verified_addresses": {"eth_addresses": ["0x87e4b99ce07073594adda44338705ba1ab674cbd", "0x7b1095e2059d78c07d251c28de70a5ae3c511d08"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/mikeoldfieldofficial/nuclear\"}"}', NULL), - (916755, '0x033d180dd4c13d40587e2a392774a095a9d3f921', 0, 1, '2024-05-07 07:10:44+00', 0, 6, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 393, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 198, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3bwqXLgjVvSmM3Ek7\"}"}', NULL), - (11166, '0xdcefc14c50a2d3dd736a0ef0a8fd5b6bee9668a7', 0, 1, '2024-05-04 17:38:27+00', 0, 0, '{"fid": 16382, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9eb3d45-2359-419a-3ac6-686f3f3b7a00/original", "profile": {"bio": {"text": "Product design @serotonin-hq", "mentioned_profiles": []}}, "username": "rlass.eth", "power_badge": false, "display_name": "lass", "active_status": "inactive", "verifications": ["0xcb7484799fc0beba36340640ce5f2171b7960088"], "follower_count": 146, "custody_address": "0x7645b039f095359527cd9eef03fe8ebc7243c1ed", "following_count": 418, "verified_addresses": {"eth_addresses": ["0xcb7484799fc0beba36340640ce5f2171b7960088"], "sol_addresses": ["BqUkNzwKG5z4eAmW67hj1vmAi1g7TgfimKGxdD1GHxbp"]}}', '{"{\"url\":\"https://on.soundcloud.com/GnQ5YWvwxuPgdqsZ9\"}"}', NULL), - (5649, '0x087cdb3267035b29628de39b86bba95c21a94f09', 0, 1, '2024-05-03 20:54:02+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1103, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e887ae9-aa48-4aad-f062-d3350c10bc00/original\"}","{\"url\":\"https://open.spotify.com/track/1Y5EqnpZLLoAp4RQQTr10O?si=HDjTFjkNT7u5zSpxr1NIww&context=spotify%3Aalbum%3A0hdimlCTCms7otJCX9OvqM\"}"}', NULL), - (5437, '0x0fe0f56eeb58457adeee7380eae9c4fd48351e4e', 0, 1, '2024-05-04 04:31:41+00', 0, 3, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1104, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/5mxVKAuunOKqcBfR5ivbRf?si=Man4VTQ6QcCOPdN6d7rAXw&context=spotify%3Aalbum%3A6GRzmk9UGL7odxprOPop1Q\"}"}', NULL), - (79115, '0x779d3273a6814593bdeba7c35847cc7b61efcbde', 0, 1, '2024-05-05 00:16:46+00', 0, 1, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1308, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 675, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2qZXusuWJqhYrSgTA\"}"}', NULL), - (72154, '0x481bb013d040594ee5e76895302bbc3d8487fef9', 0, 1, '2024-05-04 23:54:41+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 얀 (Yarn) - After by Neo on #SoundCloud https://on.soundcloud.com/37Qbu\"}"}', NULL), - (18011, '0x85f1448933bfd62c14f652d66192a49c8b1b8434', 0, 1, '2024-05-03 21:34:50+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 572, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 266, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3No0fWZoJUHhkgnoBiJfsw?si=ywzSXRaLRoiqU6EHtILiqQ&context=spotify%3Aplaylist%3A07BIOe1zqgYkMEKf5eKpLo\"}"}', NULL), - (18017, '0xee417675fcfa05960d508e59f978b927d8b4bb3a', 0, 1, '2024-05-03 21:32:18+00', 0, 8, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3756, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0AQ1twwDGVlIVpcHDkGkXD?si=dUVEDifcQhu4Ht7xJa5L4A\"}"}', NULL), - (1059962, '0x6ba4c73b68d5daa57561bd8f46f4dd4198859022', 0, 1, '2024-05-07 14:55:48+00', 0, 0, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3239, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3910, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VFhgGYr9wTjdrbSb9\"}"}', NULL), - (7642, '0xf7aa5064106ec1a2289298f1a2f242b3ad9e206c', 0, 1, '2024-05-04 17:00:33+00', 0, 10, '{"fid": 488949, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2037130a-4d03-4082-225f-23fa232f3a00/rectcrop3", "profile": {"bio": {"text": "I like to draw even if I don''t do it very well...", "mentioned_profiles": []}}, "username": "asali", "power_badge": false, "display_name": "Asa", "active_status": "inactive", "verifications": ["0x19f265aebc2def35832202279e10942d34c2ba8a"], "follower_count": 35, "custody_address": "0x65622eb7ed93d04976d7ee77b8f1ec6dbeb0ee90", "following_count": 33, "verified_addresses": {"eth_addresses": ["0x19f265aebc2def35832202279e10942d34c2ba8a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7mqH2UeTeuETNCxc3H3zwL?si=QVAPwKmqSGWQoN2Qdj7crA\"}"}', NULL), - (5383, '0xc399bf89b041efeace9dec91ea311cd17644efac', 0, 1, '2024-05-03 19:38:19+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1103, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/7IijX5DkLaf3G4qF6xDLYa?si=51COJFObSRKWWZD3ver9Vw&context=spotify%3Asearch%3Ajohn%2Bprine%2Bhello\"}"}', NULL), - (5651, '0xce41cb6fbe329f47465538304e23613b3dee671c', 0, 1, '2024-05-03 17:22:15+00', 0, 1, '{"fid": 461400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/110e95d1-0f74-402f-54be-1e90c14bdd00/rectcrop3", "profile": {"bio": {"text": "Text Art ~ Pixel Art 👾 Vino y arduinO 🍷 1312 24/7 🔥\nhttps://zora.co/0x400AA05B3f0dc4a684219ea321e70970772924c8", "mentioned_profiles": []}}, "username": "mundo-violento", "power_badge": false, "display_name": "EmiliX🐧", "active_status": "inactive", "verifications": ["0x00806e94e9d7fe715ea0ab12e8b1c96e8f827e63"], "follower_count": 65, "custody_address": "0x9d3afc22cf9dca29d468fe7178f8a26f4703ab10", "following_count": 145, "verified_addresses": {"eth_addresses": ["0x00806e94e9d7fe715ea0ab12e8b1c96e8f827e63"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Lhea4g9nPsbmwo2HIBpni?si=bBMZDzfrS7O2MRcaVew-Bw\"}"}', NULL), - (5662, '0xf4caaa0e9aceb11fa4996dc56d4c8112410e92af', 0, 1, '2024-05-03 19:31:28+00', 0, 11, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3748, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0WtDGnWL2KrMCk0mI1Gpwz?si=r3gYpH06SBmTN986lv9C8w\"}"}', NULL), - (11002, '0x36fd9e024ace63b6c014dfdcd5df48881ab70593', 0, 1, '2024-05-04 17:36:25+00', 0, 0, '{"fid": 16382, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f9eb3d45-2359-419a-3ac6-686f3f3b7a00/original", "profile": {"bio": {"text": "Product design @serotonin-hq", "mentioned_profiles": []}}, "username": "rlass.eth", "power_badge": false, "display_name": "lass", "active_status": "inactive", "verifications": ["0xcb7484799fc0beba36340640ce5f2171b7960088"], "follower_count": 146, "custody_address": "0x7645b039f095359527cd9eef03fe8ebc7243c1ed", "following_count": 418, "verified_addresses": {"eth_addresses": ["0xcb7484799fc0beba36340640ce5f2171b7960088"], "sol_addresses": ["BqUkNzwKG5z4eAmW67hj1vmAi1g7TgfimKGxdD1GHxbp"]}}', '{"{\"url\":\"https://on.soundcloud.com/GnQ5YWvwxuPgdqsZ9\"}"}', NULL), - (5661, '0x826fcc5ae63ee5cbedf794869f959eb9c800c022', 0, 1, '2024-05-03 19:03:54+00', 0, 1, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 188, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1787, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/first-diss?referral_source=link\"}"}', NULL), - (24656, '0xd530cf778b0e39283673b09bb049c83308593d85', 0, 1, '2024-05-04 21:14:00+00', 0, 4, '{"fid": 309609, "object": "user", "pfp_url": "https://i.imgur.com/irN70OD.png", "profile": {"bio": {"text": "latest film photography: https://app.manifold.xyz/c/timeless-by-josh-grenon\nhe/him 🖼 artist of film photography 🎞️ mobile at @floor", "mentioned_profiles": []}}, "username": "joshgrenon", "power_badge": false, "display_name": "josh", "active_status": "inactive", "verifications": ["0xac379456191ec7a658337c278b13d22b3ee2062e"], "follower_count": 67, "custody_address": "0xc83d1eeba0ccdbd537969bf9816c5a58a83e0857", "following_count": 51, "verified_addresses": {"eth_addresses": ["0xac379456191ec7a658337c278b13d22b3ee2062e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/shunobeats/parasite-remix-by-shuno\"}"}', NULL), - (5380, '0xe9c2ac2d365533aeb0c6d0947b145d414048c812', 100, 1, '2024-05-03 19:47:47+00', 0, 0, '{"fid": 422090, "object": "user", "pfp_url": "https://i.imgur.com/frGxTaR.jpg", "profile": {"bio": {"text": "🥤 /ordinarygang 🎧 /onrepeat", "mentioned_profiles": []}}, "username": "dimmed", "power_badge": false, "display_name": "dimmed", "active_status": "inactive", "verifications": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "follower_count": 167, "custody_address": "0xd20070eb1a17e2fa8653dd4be7aa5631f31ccbbd", "following_count": 102, "verified_addresses": {"eth_addresses": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/73c7iqH4lCVqu4tm66i0tY?si=oFadV5d_ScOAdtma4C7Ocw\"}"}', NULL), - (5669, '0x09be4d9df9cb6c805735a1d27aab0e3109179292', 0, 1, '2024-05-03 18:32:46+00', 0, 2, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1314, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/07fe2174-ae53-42ad-9b54-d79c4365568c?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (5675, '0x34ab3de9ed47ebf5cad83ec8ce4240ffcd63385f', 0, 1, '2024-05-03 19:56:27+00', 0, 2, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 188, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1787, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/pra-dizer-quem-sou?referral_source=link\"}"}', NULL), - (18014, '0x6d23e5a39de8901d2946fdc87f1edd773c070998', 0, 1, '2024-05-03 21:54:49+00', 0, 5, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "downshift $ ▯ 🎩🍖✨↑", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 2909, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 545, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ls4FQAoSlAFPFnaYpeyhn?si=79f70dedd8f6462c\"}"}', NULL), - (5426, '0xace05761c330adf57b227080658ab94fa62707a4', 0, 1, '2024-05-03 15:53:16+00', 0, 0, '{"fid": 19673, "object": "user", "pfp_url": "https://i.imgur.com/fKgKczN.jpg", "profile": {"bio": {"text": "What I’m working on..", "mentioned_profiles": []}}, "username": "allbombs", "power_badge": false, "display_name": "Kenny", "active_status": "inactive", "verifications": ["0x1aeb0f2883488bfc09ebe8e9dbcb29e5515f24b6"], "follower_count": 45, "custody_address": "0x8d7b33a97b9c9478f7139fbc9beb70e1dbfdea3c", "following_count": 65, "verified_addresses": {"eth_addresses": ["0x1aeb0f2883488bfc09ebe8e9dbcb29e5515f24b6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/datatransmission/discosteps-presents-out-of-the-box-ep16\"}"}', NULL), - (5666, '0x01a40e29fca49b76d78e6392dc27a328f830b296', 0, 1, '2024-05-03 18:50:35+00', 0, 1, '{"fid": 497782, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0767eeb6-d95e-498c-956e-04f4216ba700/rectcrop3", "profile": {"bio": {"text": "Music with a journey 🎧🤍\n\nFind me on : li.sten.to/gatewaygirl", "mentioned_profiles": []}}, "username": "gatewaygirl", "power_badge": false, "display_name": "Gateway Girl", "active_status": "inactive", "verifications": ["0xcb9c7ac0f635618421e6692f573511f9fa002a15"], "follower_count": 20, "custody_address": "0x0ff0da4e7ee389993d8d5ee482679a5c3e456f1a", "following_count": 79, "verified_addresses": {"eth_addresses": ["0xcb9c7ac0f635618421e6692f573511f9fa002a15"], "sol_addresses": []}}', '{"{\"url\":\"http://sound.xyz\"}"}', NULL), - (26456, '0xe2d3b89787e331e622005113b3752fa194a2c00d', 210, 1, '2024-05-04 21:17:58+00', 0, 7, '{"fid": 7746, "object": "user", "pfp_url": "https://i.imgur.com/Trb8WTP.jpg", "profile": {"bio": {"text": "Music tech", "mentioned_profiles": []}}, "username": "colombo", "power_badge": false, "display_name": "Colombo", "active_status": "inactive", "verifications": ["0x0e35b828026f010a291c1dc0939427b2963d8d5a"], "follower_count": 119, "custody_address": "0x05137793c9627105461bbeea8eaeaae876125be9", "following_count": 167, "verified_addresses": {"eth_addresses": ["0x0e35b828026f010a291c1dc0939427b2963d8d5a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GvgjCc1Vd6trVTMQ8\"}"}', NULL), - (5653, '0xbf9d35e49b49fd301f41364b9ca04dc0ec240dd4', 0, 1, '2024-05-03 19:01:29+00', 0, 0, '{"fid": 269506, "object": "user", "pfp_url": "https://i.imgur.com/2dk2On0.jpg", "profile": {"bio": {"text": "Narrative Hunter l Profit & Vibes Maximalist | Replyguy Maxi | Memecoin Analyst | Betting More", "mentioned_profiles": []}}, "username": "cryptohaku", "power_badge": false, "display_name": "Haku", "active_status": "inactive", "verifications": ["0xe51c3ac4bd40486aeebf55a9b9336a70f0a25b34"], "follower_count": 249, "custody_address": "0x544ba7545cc6f02bb4e96132654975e1743cf511", "following_count": 949, "verified_addresses": {"eth_addresses": ["0xe51c3ac4bd40486aeebf55a9b9336a70f0a25b34"], "sol_addresses": ["FqiTYt2owQcU8QqmXAoPRi5wx7ptRdcA22e58GUwP4o5"]}}', '{"{\"url\":\"https://open.spotify.com/track/0zikWa6k06uycAkRB8CsXA?si=Wu97co91RwiRglRbt91ehA&context=spotify%3Aplaylist%3A37i9dQZEVXbjEdREwqkzk0\"}"}', NULL), - (5664, '0x8f818afde755ce034330fdf705962dff58a1a3b3', 0, 1, '2024-05-03 18:35:25+00', 0, 15, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 903, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 518, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/6EJrNWczAqaOxBU8O4lgZ1\"}"}', NULL), - (5381, '0x885e03691dda5e1eb903edd34f60c5fa468b03a4', 10000, 1, '2024-05-03 19:52:21+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 274, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 235, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5izmlzt9mbvzuZogW9TXJB?si=Kosxz-zRSHSH7MNAxxz85Q&context=spotify%3Aartist%3A6DqJA9OuRcwPNk76q0cOEW\"}"}', NULL), - (182056, '0x50ea980858f80b2b600e604843b784387ab29e14', 0, 1, '2024-05-05 11:51:29+00', 0, 2, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 949, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 892, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XJtxbowZsMoxdmKV9\"}"}', NULL), - (5677, '0x60d43c423fe2083559e29d77d363478f8bdd61e4', 0, 1, '2024-05-03 18:32:14+00', 0, 3, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1314, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/07fe2174-ae53-42ad-9b54-d79c4365568c?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (5668, '0xc47df80c08f9475af79eecef92fb33ade560c3f7', 0, 1, '2024-05-02 14:00:10+00', 0, 3, '{"fid": 21448, "object": "user", "pfp_url": "https://i.imgur.com/zzT3KGj.jpg", "profile": {"bio": {"text": "🪩 techno music aggregator \n🧬 https://link3.to/techno ", "mentioned_profiles": []}}, "username": "techno", "power_badge": false, "display_name": "TECHNO", "active_status": "inactive", "verifications": ["0xc65ebcf5ce433f7e7dbfdbc98aa948dd5bd381b8"], "follower_count": 175, "custody_address": "0x0cf46bc53ddf8e62eb3e45246981372a930ec87b", "following_count": 467, "verified_addresses": {"eth_addresses": ["0xc65ebcf5ce433f7e7dbfdbc98aa948dd5bd381b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/afterlifeofc/argy-omnya-aria-extended-mix-1?si=a2874efd03654326a54893b272b4d07e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (88479, '0x864328495a6cd8ee5c0d585287c5170c71b2eb71', 0, 1, '2024-05-05 00:41:46+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3vTiH\"}"}', NULL), - (5667, '0x81dd343644ba4f67faeb36f6ed626819e36a49f3', 0, 1, '2024-05-03 19:08:53+00', 0, 7, '{"fid": 412843, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6e1767a8-dbb0-4a7f-08a2-9cbf6d914700/rectcrop3", "profile": {"bio": {"text": "Father & Husband & Replyooor 🎩\n\nssjtrunks.eth (Main Wallet)", "mentioned_profiles": []}}, "username": "sharpedo.eth", "power_badge": true, "display_name": "Sharpedo 🦈🎩 🆓", "active_status": "inactive", "verifications": ["0x98eea5a13ac5110fd7d37244465a10b07b280cb7"], "follower_count": 1581, "custody_address": "0x4f3f68af5f213f7b290d61314b7681b23dda863d", "following_count": 861, "verified_addresses": {"eth_addresses": ["0x98eea5a13ac5110fd7d37244465a10b07b280cb7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3eh51r6rFWAlGQRlHx9QnQ?si=YzoGzN91RMagpfG4VtiIUw\"}"}', NULL), - (1159507, '0x645de06bb373814deb4e4cf31011cbe63bb9ffdb', 0, 1, '2024-05-08 11:29:48+00', 0, 1, '{"fid": 406030, "object": "user", "pfp_url": "https://i.imgur.com/vMCIp4x.jpg", "profile": {"bio": {"text": "🥰I love jung&su🎩🍖🔮🥰", "mentioned_profiles": []}}, "username": "luckyhappymom", "power_badge": false, "display_name": "😸luckyhappymom🎩🍖😸", "active_status": "inactive", "verifications": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "follower_count": 2918, "custody_address": "0x2ff561b9b84e0c139bb218f56569e7f6c84f9554", "following_count": 3670, "verified_addresses": {"eth_addresses": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8D8mr\"}"}', 'sonata'), - (5678, '0x771d461290d99f5056a1a2ca1b949a0af8eac1eb', 0, 1, '2024-05-03 18:50:15+00', 0, 2, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1314, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/32267540-5b29-48c8-a6f5-d3575ef22872?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/gatewaygirl/fed-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (84047, '0x11ea02048ea4bb99f5393ecbe5b360ceb75e121c', 20, 1, '2024-05-05 00:29:42+00', 126, 25, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8adpq\"}"}', NULL), - (5673, '0xa9f3fd4b630fa2437f1a5d51cb165dbe7cd24931', 0, 1, '2024-05-03 18:48:07+00', 0, 6, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1314, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/32267540-5b29-48c8-a6f5-d3575ef22872?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/gatewaygirl/fed-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (30322, '0xa23073202049296fce00d9a937fce92384d7fc4e', 1000, 1, '2024-05-04 21:39:26+00', 0, 0, '{"fid": 212117, "object": "user", "pfp_url": "https://i.imgur.com/tmZHTkH.jpg", "profile": {"bio": {"text": "midwest indie/alternative pop artist\nbit.ly/FIFTHLUCKYDRAGON", "mentioned_profiles": []}}, "username": "fifthluckydragon", "power_badge": false, "display_name": "Fifth Lucky Dragon", "active_status": "inactive", "verifications": ["0x8934d55bbc1577348510c6d999f8cb44b7fa5e66"], "follower_count": 168, "custody_address": "0x45bfcfcde4113a91f94b4eee5cce547a3cfd7b09", "following_count": 177, "verified_addresses": {"eth_addresses": ["0x8934d55bbc1577348510c6d999f8cb44b7fa5e66"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fifthluckydragon/fight-me-or-call-me-if-you-want-to?referral=0x8934d55bbc1577348510c6d999f8cb44b7fa5e66\"}"}', NULL), - (376192, '0x9edd074a56c26f9544e9854696f3204a161803b9', 0, 1, '2024-05-06 03:51:08+00', 0, 3, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1657, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1715, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZTnpV1bbkHaj8tLH9\"}"}', 'sonata'), - (5660, '0x2915199e873743ee1cf8d33d9ca2e731038c2fa0', 0, 1, '2024-05-02 12:36:28+00', 0, 1, '{"fid": 262294, "object": "user", "pfp_url": "https://i.imgur.com/kw6GvaE.jpg", "profile": {"bio": {"text": "I make art with computer algorithms https://byapa.net/work | engineer /// enjoying so much sharing explorations\n\nhttps://linktr.ee/BerkeYapa", "mentioned_profiles": []}}, "username": "yapa", "power_badge": false, "display_name": "Berke Yapa", "active_status": "inactive", "verifications": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "follower_count": 264, "custody_address": "0xce0d740e0af265d95837549b190bb3cc5586ab38", "following_count": 329, "verified_addresses": {"eth_addresses": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billpatrick/a-long-long-way?si=295e8881cf3a48bbb1633cda0bf1a555&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (7037, '0xcf19b5859ccb45e742f44ea530945195ed753c47', 0, 1, '2024-05-04 12:01:10+00', 0, 1, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 215, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/just-a-free-collect-to-earn-sstrm?referral_source=link\"}"}', NULL), - (5430, '0x480ba56eb71e454c7a829a25746c920626c45c43', 0, 1, '2024-05-04 03:47:04+00', 0, 3, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1107, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/6hIJ4ifJixfe0xbQ8odzZJ?si=Sx_reGP8Tw6K1dPHlYp_Bw&context=spotify%3Aalbum%3A6KZZs0SDtMuHkmmjWc2bk7\"}"}', NULL), - (17757, '0xf0d0ebb9ffb7c08488e8207f22e1bed18e3e9164', 0, 1, '2024-05-04 19:52:57+00', 0, 0, '{"fid": 422090, "object": "user", "pfp_url": "https://i.imgur.com/frGxTaR.jpg", "profile": {"bio": {"text": "🥤 /ordinarygang 🎧 /onrepeat", "mentioned_profiles": []}}, "username": "dimmed", "power_badge": false, "display_name": "dimmed", "active_status": "inactive", "verifications": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "follower_count": 168, "custody_address": "0xd20070eb1a17e2fa8653dd4be7aa5631f31ccbbd", "following_count": 104, "verified_addresses": {"eth_addresses": ["0xd118f7b97031188df014974fd2c88b91ca85abe1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0NFx8SZ1IJhdHHr7nmVXfM?si=4xpvzz0iT32_BoTv8oayQQ\"}"}', NULL), - (41999, '0x148adcd62dc008a42c811064c0bcc941180d86d6', 0, 1, '2024-05-04 22:24:52+00', 0, 0, '{"fid": 19463, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f160242e-9056-4e90-d44f-0e7021967e00/original", "profile": {"bio": {"text": "Se siente mejor y no. Puedo amar más y más que antes. Lo que ella ha dicho siempre importa. \n\nCambia de cuerpo, altera la mente, pero me arrodillo igual. ¡De ro", "mentioned_profiles": []}}, "username": "deboboy", "power_badge": true, "display_name": "Frank", "active_status": "inactive", "verifications": ["0x01bdd23448f53594bcb8163055155194177c0fe2"], "follower_count": 723, "custody_address": "0x8864f69811037dfa5722356095f90598c07f82e2", "following_count": 944, "verified_addresses": {"eth_addresses": ["0x01bdd23448f53594bcb8163055155194177c0fe2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yvEmeJP2HeHMm2N96\"}"}', NULL), - (38409, '0xa42559a600c18f87bf2284271347012bddc022be', 0, 1, '2024-05-04 22:00:04+00', 0, 0, '{"fid": 260903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8aa46534-e1c0-4a7c-252f-e685d3cd3b00/original", "profile": {"bio": {"text": "https://zora.co/@0xa31110b7ade3c61f067f2614f7da6d65a58ae744\n\nShare NFT Free Every Day\n", "mentioned_profiles": []}}, "username": "hunternft86", "power_badge": false, "display_name": "DChibi 🎩 ", "active_status": "inactive", "verifications": ["0xa31110b7ade3c61f067f2614f7da6d65a58ae744"], "follower_count": 2397, "custody_address": "0xe1ee0d07df4922e121bf649a94ed8e6cfe053f21", "following_count": 2218, "verified_addresses": {"eth_addresses": ["0xa31110b7ade3c61f067f2614f7da6d65a58ae744"], "sol_addresses": ["44ZrFCXmbpeLR9RaWC7Dtf6dkH3axmgn8gzLDN3tPbRw"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/down-the-drain?referral_source=link\"}"}', NULL), - (26458, '0xc25010d80ec26ac47d63317bb1406d6ddfa511d4', 0, 1, '2024-05-04 21:18:16+00', 0, 3, '{"fid": 389456, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeidvay3u6ylgyj5dywmgfs25ph2a4bijrcf2rstaj2553kfc4jf7au/4679", "profile": {"bio": {"text": "🔗", "mentioned_profiles": []}}, "username": "stephenborst", "power_badge": false, "display_name": "Sir Stephen 🎩", "active_status": "inactive", "verifications": ["0x34dfc08eb3b7ed60d00e5b2cb611ac27c152b45c"], "follower_count": 114, "custody_address": "0x9a47459d177f79d5fef0d67663ab5ea10f62d30e", "following_count": 336, "verified_addresses": {"eth_addresses": ["0x34dfc08eb3b7ed60d00e5b2cb611ac27c152b45c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Impatient by Taglo on #SoundCloud https://on.soundcloud.com/hY6GW\"}"}', NULL), - (44369, '0xb2de10886b09abc1784fa8608972e870a774668b', 0, 1, '2024-05-04 22:33:48+00', 0, 0, '{"fid": 331263, "object": "user", "pfp_url": "https://i.imgur.com/dg2UHVb.jpg", "profile": {"bio": {"text": "music made for getting lost", "mentioned_profiles": []}}, "username": "greenring", "power_badge": false, "display_name": "Green Ring", "active_status": "inactive", "verifications": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "follower_count": 33, "custody_address": "0xf9ae5ec1430d9cb32339a719e9682b0b2411c123", "following_count": 131, "verified_addresses": {"eth_addresses": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/parraforcuva/track-7\"}"}', NULL), - (5721, '0xe05aefd28ebc1a7ef6e3a6e8b79fff1d20c594ef', 0, 1, '2024-05-04 09:02:02+00', 0, 2, '{"fid": 262294, "object": "user", "pfp_url": "https://i.imgur.com/kw6GvaE.jpg", "profile": {"bio": {"text": "I make art with computer algorithms https://byapa.net/work | engineer /// enjoying so much sharing explorations\n\nhttps://linktr.ee/BerkeYapa", "mentioned_profiles": []}}, "username": "yapa", "power_badge": false, "display_name": "Berke Yapa", "active_status": "inactive", "verifications": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "follower_count": 266, "custody_address": "0xce0d740e0af265d95837549b190bb3cc5586ab38", "following_count": 330, "verified_addresses": {"eth_addresses": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mete-cakar/sets/fever?si=04b75da52d16467a86cd40b15db46573&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (5413, '0xc767a2b8f2d832c96be5e2fcf7a786981d6d60ab', 0, 1, '2024-05-04 07:44:27+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. Contact - Duchamp, Abloh & Associates /artleague and /themythofart and /foundart and /liveminting", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E 🌎", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1104, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1016, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/5uvosCdMlFdTXhoazkTI5R?si=MdwLx599S-uaypjhO3fxZg&context=spotify%3Aartist%3A22WZ7M8sxp5THdruNY3gXt\"}"}', NULL), - (5663, '0xdc61d8e38cc7742d058007565e194ca04eca6450', 0, 1, '2024-05-03 19:58:32+00', 0, 4, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 188, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1787, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/pra-dizer-quem-sou?referral_source=link\"}"}', NULL), - (5672, '0xea69a5905cc11cca5b27144b5c619439a7c38a45', 0, 1, '2024-05-03 18:49:23+00', 0, 2, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1314, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/32267540-5b29-48c8-a6f5-d3575ef22872?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/gatewaygirl/fed-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (69105, '0xcd29b12917e3c7864b25eaa53c532b6dc9d831b3', 0, 1, '2024-05-04 23:45:01+00', 0, 0, '{"fid": 453277, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/576baa6e-6b8d-4803-f6d7-3b6e6dc79000/original", "profile": {"bio": {"text": "Your Web3 Hub | Everything IT related about Web3 🌐. | pounf.crowned.eth |\nhttps://www.linkedin.com/in/gerpefanis/\n", "mentioned_profiles": []}}, "username": "pounf.eth", "power_badge": false, "display_name": "pounf 🪄⚔️", "active_status": "inactive", "verifications": ["0xcbb30b0e9eca485b2a1ae46612f2d466e3480d0e"], "follower_count": 870, "custody_address": "0xdcd94ddc443338b6b749b8ea57e915179a0fc347", "following_count": 276, "verified_addresses": {"eth_addresses": ["0xcbb30b0e9eca485b2a1ae46612f2d466e3480d0e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pqFGy\"}"}', NULL), - (38383, '0x3e01df99aefd5fa2e235be0cf01c7935016c2f7d', 0, 1, '2024-05-04 21:59:40+00', 0, 0, '{"fid": 281800, "object": "user", "pfp_url": "https://i.imgur.com/XTlVIn0.jpg", "profile": {"bio": {"text": "https://www.alfafrens.com/channel/0x091e8C4Fba1ac0DDD6Af4c7dd7B71aBe2f163154", "mentioned_profiles": []}}, "username": "cryptoone", "power_badge": false, "display_name": "one 🎩🔵🔮🍖🦄🩸🧀", "active_status": "inactive", "verifications": ["0x7fc45725d99313f16a6fec2b2e2d2890b01b49bb"], "follower_count": 421, "custody_address": "0x1887bea2917aac983f0962c46984abadf679a49f", "following_count": 658, "verified_addresses": {"eth_addresses": ["0x7fc45725d99313f16a6fec2b2e2d2890b01b49bb"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/lilyeat/heliman\"}"}', NULL), - (43801, '0xc5734da84b4b179d51eaf4f86b8dd4c35d1c96c1', 0, 1, '2024-05-04 22:30:31+00', 0, 1, '{"fid": 514681, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79194d79-041b-4c5f-73af-0bb85ee57f00/rectcrop3", "profile": {"bio": {"text": "The future belongs to you who have prepared it from today😘😘", "mentioned_profiles": []}}, "username": "!514681", "power_badge": false, "display_name": "felicya", "active_status": "inactive", "verifications": ["0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e"], "follower_count": 26, "custody_address": "0x9e8f7d302784d2724a1caeb6dede135ba0d77fe9", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e", "0x52c16fd6a693e345bd54ffb74670f804b4ff196e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Ie9W94M7OjPoZVV216Xus?si=NIHJhXvuQPiLdYIqZsp8RQ\"}"}', NULL), - (38405, '0xe4ae6e7a8c4cc23e46dc0ff6180d512336ec2fff', 0, 1, '2024-05-04 22:00:53+00', 5, 2, '{"fid": 14193, "object": "user", "pfp_url": "https://i.imgur.com/5hOVzWm.png", "profile": {"bio": {"text": "I make music and occasionally point & click adv. games.", "mentioned_profiles": []}}, "username": "r4cerx", "power_badge": false, "display_name": "r4cerx 🎩🐲", "active_status": "inactive", "verifications": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "follower_count": 190, "custody_address": "0x22bfce4279cd025af37dac0cdad95b74e606bf88", "following_count": 102, "verified_addresses": {"eth_addresses": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/r4cerx/m0m-1m-4-h4ck32\"}"}', NULL), - (79109, '0xe511b1618532ae89a325385f560fe30a7c40d2ae', 0, 1, '2024-05-05 00:16:45+00', 0, 0, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 982, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 830, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jasonmraz/i-wont-give-up-album?si=96dee08ca8cd4d589c33db022bd960f5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (29076, '0xc92d9c54037cbef81eca68ea3be8e49b6836eb31', 120, 1, '2024-05-04 21:35:07+00', 0, 7, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392"], "follower_count": 568, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 413, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/grateful?referral=0x4817260d616ffc30e61f782c0dbc20ad0fda56b4\"}"}', NULL), - (137393, '0x2af28cb65de0404ee011c8d853ba783bd9058a44', 0, 1, '2024-05-05 06:34:02+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6JSQ4\"}"}', NULL), - (273973, '0x0a534cdad4e4401c5231df2750a7000d01756cbf', 0, 1, '2024-05-05 17:15:22+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sSabx\"}"}', NULL), - (14277, '0x06616981a9dfdc04a751c7386b397dc5bb701352', 112, 1, '2024-05-04 19:03:14+00', 0, 1, '{"fid": 262294, "object": "user", "pfp_url": "https://i.imgur.com/kw6GvaE.jpg", "profile": {"bio": {"text": "I make art with computer algorithms https://byapa.net/work | engineer /// enjoying so much sharing explorations\n\nhttps://linktr.ee/BerkeYapa", "mentioned_profiles": []}}, "username": "yapa", "power_badge": false, "display_name": "Berke Yapa", "active_status": "inactive", "verifications": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "follower_count": 266, "custody_address": "0xce0d740e0af265d95837549b190bb3cc5586ab38", "following_count": 330, "verified_addresses": {"eth_addresses": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/espassiert/espassiert-fm-018-i-w-jakob-seidensticker?si=8682973726ec454c85c40d0ec391f3bb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (7024, '0xe427c45c2829969e27add25b1b86a78f99dc6bbf', 0, 1, '2024-05-04 12:04:15+00', 0, 1, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 214, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/just-a-free-collect-to-earn-sstrm?referral_source=link\"}"}', NULL), - (233995, '0xecc365423be7a8d30a8cc31bdb762c04a42f548a', 0, 1, '2024-05-05 13:43:23+00', 0, 0, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000% 댓글❤️, 좋아요❤️\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2477, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2343, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user739087909/sets/at?si=4151fe8cb5614a7c99a0f07cf4ac5ab4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (41680, '0xf1ba6c0e077dc0591540e3e390cfde0b1991e3b1', 0, 1, '2024-05-04 22:23:25+00', 0, 4, '{"fid": 18262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d18adbfc-1bd6-4bab-0887-858288a92900/rectcrop3", "profile": {"bio": {"text": "max bidding vibes and replies /replyguys\n\nlore /4you", "mentioned_profiles": []}}, "username": "droo4you", "power_badge": true, "display_name": "droober🔵🍖🗣️🎩☮️", "active_status": "inactive", "verifications": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "follower_count": 2231, "custody_address": "0x3a38f04a1b56ded7d9c7548a4c6fb206235ca8aa", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6q36Cqt2d3O5jqrQR9uXCp?si=ALR-Sr50RWuj-LPfjK3cYA\"}"}', NULL), - (11473, '0xe46e76469a4c2e9965bf78359650ff4ad95f941b', 2290, 1, '2024-05-04 17:58:04+00', 0, 25, '{"fid": 3860, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/cfb802c4ff9c6cc2fedd01707c897715.png?w=500&auto=format", "profile": {"bio": {"text": "cto & research partner @paradigm. working with /rust on /ethereum. building /reth and /foundry. https://gakonst.com", "mentioned_profiles": []}}, "username": "gakonst", "power_badge": true, "display_name": "gakonst", "active_status": "inactive", "verifications": ["0x19c5bf5fbf17d8c47d8795a194c03e4061e36761", "0x2abc80332a8dfa064bd2f361e8b72d76ef8637c5"], "follower_count": 141275, "custody_address": "0x1b3cb968b7faa1378fb5a19eef7251086cfd26f2", "following_count": 114, "verified_addresses": {"eth_addresses": ["0x19c5bf5fbf17d8c47d8795a194c03e4061e36761", "0x2abc80332a8dfa064bd2f361e8b72d76ef8637c5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0kj2BS9joQq1ZYEyMU6tgl\"}"}', 'djs'), - (52965, '0xf0c29f193ff2e92d108e0b274066c8610f4c5915', 0, 1, '2024-05-04 23:02:15+00', 0, 1, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12 ✪ 🎩", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5048, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7ppbHWB66kaq6uXq7\"}"}', NULL), - (38774, '0x3222f4289da2cc0108cf54bed422b931de03b831', 0, 1, '2024-05-04 22:08:21+00', 0, 0, '{"fid": 407128, "object": "user", "pfp_url": "https://i.imgur.com/cEarSGQ.jpg", "profile": {"bio": {"text": "MD., Ph.D.\ncrypto, NFT collector \nなんとなく慣れてきました", "mentioned_profiles": []}}, "username": "scrypto3", "power_badge": false, "display_name": "Scrypto🎩🔮🔵🦄", "active_status": "inactive", "verifications": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "follower_count": 645, "custody_address": "0x3dfe27594d0d2d3180dfce17109a282e3018c0df", "following_count": 623, "verified_addresses": {"eth_addresses": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pBv5LtTDwYkD1f7X7\"}"}', NULL), - (26457, '0x4f679407d94c9df4e95f7fb5e772c78100a510f6', 0, 1, '2024-05-04 21:18:33+00', 0, 4, '{"fid": 309609, "object": "user", "pfp_url": "https://i.imgur.com/irN70OD.png", "profile": {"bio": {"text": "latest film photography: https://app.manifold.xyz/c/timeless-by-josh-grenon\nhe/him 🖼 artist of film photography 🎞️ mobile at @floor", "mentioned_profiles": []}}, "username": "joshgrenon", "power_badge": false, "display_name": "josh", "active_status": "inactive", "verifications": ["0xac379456191ec7a658337c278b13d22b3ee2062e"], "follower_count": 67, "custody_address": "0xc83d1eeba0ccdbd537969bf9816c5a58a83e0857", "following_count": 51, "verified_addresses": {"eth_addresses": ["0xac379456191ec7a658337c278b13d22b3ee2062e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/urdabness/scott-pilgrim-black-sheep-original-house-remix\"}"}', NULL), - (38516, '0xb94f3a284624e0cc0036d625ec66775e8e4307f2', 0, 1, '2024-05-04 22:02:38+00', 0, 1, '{"fid": 4316, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/GBtzV5Z6K8KhrFXQ5i3dseG4Jjamaa2UUtsHfmEE7K-CRd1cnR195zXb_TGKwQSrM95TQXZm-7wZ_bm7fphpP4SczsNHLxJrnhv_4c4", "profile": {"bio": {"text": "Jake (not from State Farm) // community @ courtyard.io\n // sneakerhead // guitar aficionado // xoogler", "mentioned_profiles": []}}, "username": "spin", "power_badge": true, "display_name": "chefspin 🎩", "active_status": "inactive", "verifications": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "follower_count": 799, "custody_address": "0xcaeaab4f1e1c662518456b28e0096b6b9026e4a4", "following_count": 460, "verified_addresses": {"eth_addresses": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5sNESr6pQfIhL3krM8CtZn?si=lKEcxWY7QvShvT_RKFN-9g\"}"}', NULL), - (14487, '0x8054418764a5b59c197368bc08304d4a8104ccaf', 0, 1, '2024-05-04 19:12:28+00', 0, 2, '{"fid": 332107, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifcmuzg4qizchkjhn3lqqeoynuqb6zih6osllimayl5oto6cdxzxy", "profile": {"bio": {"text": "Passion for music and cryptocurrencies🎸🔥\n\n\n\nA space to continue and recreate🍀🎩🪩🎧", "mentioned_profiles": []}}, "username": "ivanmax17", "power_badge": false, "display_name": "Ivan Angola 🎩🌀👁️", "active_status": "inactive", "verifications": ["0x3ce1a71383c7651d4770d5f4fdd5606dc2e4dd1a"], "follower_count": 552, "custody_address": "0x347d7935960ab32d87dc31559457155d4b05d825", "following_count": 610, "verified_addresses": {"eth_addresses": ["0x3ce1a71383c7651d4770d5f4fdd5606dc2e4dd1a"], "sol_addresses": ["4E6wG1hp9mujwrkzZYzTg4B5w9DtARPohTfks5mN4brx"]}}', '{"{\"url\":\"https://open.spotify.com/track/6WEBwvsmpaoGxka0tSh5a7?si=izkiDB4lRBKPyOYpotnXrQ\"}"}', NULL), - (48431, '0xfde939b0c88c9dfe7762ec6727bfb90a837524ed', 0, 1, '2024-05-04 22:47:37+00', 0, 2, '{"fid": 11761, "object": "user", "pfp_url": "https://i.imgur.com/yYAY9P6.jpg", "profile": {"bio": {"text": "https://gotnojuice.substack.com/\n\ndet finnes ikke dårlig vær bare dårlig klær.", "mentioned_profiles": []}}, "username": "danfowler", "power_badge": true, "display_name": "Dan Fowler", "active_status": "inactive", "verifications": ["0x80e451777dcd4e4a589a038a61b1dca72d718045"], "follower_count": 221, "custody_address": "0x7ab4f192708ed54b62230c1fbc99f9de369f26ee", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x80e451777dcd4e4a589a038a61b1dca72d718045"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/feelmybicep/dove-chroma-003-bi83\"}"}', NULL), - (38517, '0x2b67bc3e85204195eeaf9d5b5b9b27ede0a68997', 0, 1, '2024-05-04 22:02:17+00', 0, 0, '{"fid": 335469, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/clv3h77yc0014zuw9kgmo9hel.png", "profile": {"bio": {"text": "Comic meme", "mentioned_profiles": []}}, "username": "airpo", "power_badge": false, "display_name": "AIRPO🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf528a20d5d7267e3b32035ea7d213c1bb38edebc"], "follower_count": 2514, "custody_address": "0xcd2b6a7e507b645c2506ef5a810cd18def97647d", "following_count": 1834, "verified_addresses": {"eth_addresses": ["0xf528a20d5d7267e3b32035ea7d213c1bb38edebc"], "sol_addresses": ["3q1dJeAS9RwA5VyUkidiw1xZbj42e8U5ZoptAGE6Jd4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/7doNr4MpNLHa2sqcBpPSKA?si=-jcfnZQ2TU6Y-ZFTjqpZ2A\"}"}', NULL), - (88789, '0x21f3492c3bd32aad3b15c793676fd9c8e4660f1d', 0, 1, '2024-05-05 00:42:31+00', 0, 0, '{"fid": 466106, "object": "user", "pfp_url": "https://i.imgur.com/7sKYYAP.jpg", "profile": {"bio": {"text": "댕댕이 머핀과 일상을 공유하는 워프캐스트입니다! 소통 많이해요! #슈퍼캐스트 #supercast #무한소통 ", "mentioned_profiles": []}}, "username": "muffin5516", "power_badge": false, "display_name": "coinfire5516🍖", "active_status": "inactive", "verifications": ["0xb78a0cf956250521f730478cd0330ebc108e367c"], "follower_count": 2269, "custody_address": "0xa5465c7e51b6a0213733b40bf1aeb916c724ed73", "following_count": 1910, "verified_addresses": {"eth_addresses": ["0xb78a0cf956250521f730478cd0330ebc108e367c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/whakfld0d0d098/iu-love-wins-all?si=e00497f5f794439992287598f90003a1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1172942, '0xf87f7354af983f8bc95305dbe382779577c1ae49', 0, 1, '2024-05-14 21:30:20+00', 0, 0, '{"fid": 7464, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27c95e37-2ca2-4032-e866-90bc3d2bbd00/rectcrop3", "profile": {"bio": {"text": "CVO | guitarist, songwriter, art enjoyoor extraordinaire 🎸@Wakefield | making /demo | holler at a player if you see him in the streets ", "mentioned_profiles": []}}, "username": "spitfunkolips", "power_badge": true, "display_name": "spitfunkolips🎩🚪", "active_status": "inactive", "verifications": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "follower_count": 3581, "custody_address": "0xe1b5dec4da876ca281ffe750fa136cc07314ba0c", "following_count": 969, "verified_addresses": {"eth_addresses": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "sol_addresses": ["ErnvsV8C7GNLjog5FX1km5NpaGfoWDrzbYpYLX91XQQ1"]}}', '{"{\"url\":\"https://open.spotify.com/track/4ujWGn8FfrftYDuhQTRveV?si=SSsQ0uSQQr6we89Putc52A\"}"}', NULL), - (572171, '0xc17570b302a40f38158e35771e903ae1447f1b6c', 0, 1, '2024-05-06 11:42:34+00', 0, 5, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1267, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1128, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uTR96VdYwazRCmAH7\"}"}', NULL), - (92119, '0xb390e761d0b5bf0f1e2c5759d7159ff5716a1589', 0, 1, '2024-05-05 00:55:25+00', 0, 1, '{"fid": 423518, "object": "user", "pfp_url": "https://i.imgur.com/iplpRaa.jpg", "profile": {"bio": {"text": "모두 건강하세요,\n그리고 부자됩시다!\n화이팅😀", "mentioned_profiles": []}}, "username": "love00", "power_badge": false, "display_name": "Ken_🇰🇷🎩💬 ", "active_status": "inactive", "verifications": ["0xb0e8163cda1e1023164ded678dfd434b9257b8b9"], "follower_count": 3336, "custody_address": "0xcabbcf082c4faf413ded1ad10fd9ab6856de2016", "following_count": 2965, "verified_addresses": {"eth_addresses": ["0xb0e8163cda1e1023164ded678dfd434b9257b8b9"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 쾌걸 근육맨 2세 OP - 질풍가도 by Seom on #SoundCloud https://on.soundcloud.com/t6Pku\"}"}', NULL), - (88486, '0x6c6e1a7230866a8fc47ae56248827005e1e62f89', 0, 1, '2024-05-05 00:40:51+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Qi4jz\"}"}', NULL), - (42291, '0x12528958a3093d5aa5b350e42605d8a593266e92', 0, 1, '2024-05-04 22:25:32+00', 0, 0, '{"fid": 345377, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreiafid36chonzuyib6sdvbdvj7zg2rf72u5kemnlztqdasgftlgmhi", "profile": {"bio": {"text": "FID : 345377\nNeed Donations", "mentioned_profiles": []}}, "username": "xcz", "power_badge": false, "display_name": "Gmfers 🔵 🔮 🎩🔄", "active_status": "inactive", "verifications": ["0x4b8b8601a4b5d280254c3610af2a44fcf5c12a9c"], "follower_count": 136, "custody_address": "0x0e8867e0277cf892f13e78955c7ecb8ccce505bb", "following_count": 371, "verified_addresses": {"eth_addresses": ["0x4b8b8601a4b5d280254c3610af2a44fcf5c12a9c"], "sol_addresses": ["ChXDnZD3NfLaNLvvTVPr2Q5tNfUFQS921JkTcaUX3bbZ"]}}', '{"{\"url\":\"https://m.soundcloud.com/ikhwanasli/rhoma-irama-judi\"}"}', NULL), - (51645, '0x45e523bb1f9295fd22b6d63bcbe1b61a634497dc', 0, 1, '2024-05-04 22:58:27+00', 0, 1, '{"fid": 379722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2036467f-9180-461e-520e-380741901700/rectcrop3", "profile": {"bio": {"text": "I Love Hanni Pham! & NewJeans Lover.🐰❤️\nWe are so early!!!🚀🚀 Ham party letgo🍖", "mentioned_profiles": []}}, "username": "9yuu", "power_badge": false, "display_name": "Hanni Pham🍖", "active_status": "inactive", "verifications": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "follower_count": 2622, "custody_address": "0xdc4948ac5d6eff31726d6d3461867d5b700333cf", "following_count": 2681, "verified_addresses": {"eth_addresses": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pJSRaFq1arMvnmEM9\"}"}', NULL), - (38573, '0xa698356f310e9d7685dfaddba17f39fe08aa35ae', 0, 1, '2024-05-04 22:04:03+00', 0, 0, '{"fid": 335469, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/clv3h77yc0014zuw9kgmo9hel.png", "profile": {"bio": {"text": "Comic meme", "mentioned_profiles": []}}, "username": "airpo", "power_badge": false, "display_name": "AIRPO🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf528a20d5d7267e3b32035ea7d213c1bb38edebc"], "follower_count": 2514, "custody_address": "0xcd2b6a7e507b645c2506ef5a810cd18def97647d", "following_count": 1834, "verified_addresses": {"eth_addresses": ["0xf528a20d5d7267e3b32035ea7d213c1bb38edebc"], "sol_addresses": ["3q1dJeAS9RwA5VyUkidiw1xZbj42e8U5ZoptAGE6Jd4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/1Q68oodivzKjIDnPTXFy83?si=i7XEWBhVQf6wdYDkfec2GA\"}"}', NULL), - (42603, '0xfb111766ae6a8175e5c41095b770bb08a17ebd00', 0, 1, '2024-05-04 22:26:18+00', 0, 4, '{"fid": 244803, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/cluvxu7ta00wcvw22dpet9nea.png", "profile": {"bio": {"text": "Smol brain. Big heart.", "mentioned_profiles": []}}, "username": "dutchpeter", "power_badge": true, "display_name": "DutchPeter 🎩🔵", "active_status": "inactive", "verifications": ["0xe3e8f144942b368328e7084458bc1d3f6a7ee106"], "follower_count": 3906, "custody_address": "0x4344d48b9075a694a158fb760f8bc0a5764127a2", "following_count": 538, "verified_addresses": {"eth_addresses": ["0xe3e8f144942b368328e7084458bc1d3f6a7ee106"], "sol_addresses": ["3y2ZYoWsBSyQjEf6LEA6xL8CppA94n1HNWyJpYaHnAHU"]}}', '{"{\"url\":\"https://www.sound.xyz/mrdarius/dr-bruce-x-mr-darius-wen-lambo-remix\"}"}', NULL), - (35867, '0x320a2fa7c646927a4842cda4842f04a5c3048255', 0, 1, '2024-05-04 21:51:23+00', 0, 4, '{"fid": 238562, "object": "user", "pfp_url": "https://i.imgur.com/wASdkfR.jpg", "profile": {"bio": {"text": "Modern gatherer, IRL experiences, on an internet art side quest.", "mentioned_profiles": []}}, "username": "jordankallman", "power_badge": false, "display_name": "Jordan Kallman ↑", "active_status": "inactive", "verifications": ["0x328af60b92610ab3089a5a30a547a06b77ebcb51", "0x6ddc8f05c63902807eaab3830d4c54873dd943b5"], "follower_count": 61, "custody_address": "0xae5b770638742db4dbfecbaa424b766bf2e75164", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x328af60b92610ab3089a5a30a547a06b77ebcb51", "0x6ddc8f05c63902807eaab3830d4c54873dd943b5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/adamk/reflekt-need-to-feel-loved-adam-k-soha-vocal-remix\"}"}', NULL), - (50209, '0xaf673fc7fd21b1c23a8c89870b1938fc104f2764', 0, 1, '2024-05-04 22:54:42+00', 0, 4, '{"fid": 328124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7acfa5c-2f5d-4d7d-4e21-4c5e1d90f000/original", "profile": {"bio": {"text": "Just your regular bookaddict who loves Star Wars, games and currently learning everything crypto! ✨️💜", "mentioned_profiles": []}}, "username": "somanybooks", "power_badge": true, "display_name": "Nathalie 🎩", "active_status": "inactive", "verifications": ["0x7f35303825129989c8b20cf99bafa5e8563e05e6"], "follower_count": 373, "custody_address": "0xa9cab1aed3babd0a9f25657b4d76b02903f9d1bf", "following_count": 95, "verified_addresses": {"eth_addresses": ["0x7f35303825129989c8b20cf99bafa5e8563e05e6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gibranalcocer/idea-22-anya-nami-remix\"}"}', NULL), - (60092, '0xcaf8209002cc600aba474e79bc208802981133a0', 0, 1, '2024-05-04 23:18:53+00', 0, 0, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0xe311817b4cf2892ce0324d0168e596ee909ee83e"], "follower_count": 625, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 578, "verified_addresses": {"eth_addresses": ["0xe311817b4cf2892ce0324d0168e596ee909ee83e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 성시경 - 거리에서 by Howon Geum on #SoundCloud https://on.soundcloud.com/7F45u\"}"}', NULL), - (83681, '0x2572176e44dc403f32c6c28a8144f39482e5d1fe', 0, 1, '2024-05-05 00:28:13+00', 0, 0, '{"fid": 500889, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7849d21f-3eab-4d19-a328-6af7560c3100/rectcrop3", "profile": {"bio": {"text": "Im not farmer, abusing, bot!!!!!\nHere we go! Getting better!\nBeautiful life~~♤\nGo to big rich!", "mentioned_profiles": []}}, "username": "awesome7333", "power_badge": false, "display_name": "Awesome.rich", "active_status": "inactive", "verifications": ["0xf6880a80ddff66383a192389a1d93f865a867bcd"], "follower_count": 1100, "custody_address": "0xb5388e4625ba7af62c142db83ea8a2534bb77897", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xf6880a80ddff66383a192389a1d93f865a867bcd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/joke-ying/endless-rain-x-japan?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharinghttps://soundcloud.com/joke-ying/endless-rain-x-japan?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (76184, '0x172324894b701197826c716fb12c038e78c7fb72', 0, 1, '2024-05-05 00:06:32+00', 0, 3, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 927, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 874, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/L5wDTqiqnmQGxoSw9\"}"}', NULL), - (46608, '0xcb6ac04c0ed45abe3efc380b03803f50545a6ccb', 0, 1, '2024-05-04 22:42:54+00', 0, 1, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lidogotsongs/lido-rise?in=lidogotsongs/sets/peder-2&si=afc14ebb846b4197b843eadc1aa94678&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1172943, '0xd3dadb26fbb882b301a2c9b4970afa205bb4ba3c', 0, 1, '2024-05-14 21:41:18+00', 0, 0, '{"fid": 8885, "object": "user", "pfp_url": "https://i.imgur.com/mBmqcTV.gif", "profile": {"bio": {"text": "product mgr. pursuing onchain music | onchain artist relations @rohki | music patent 11,620,649 | @techstars alum | @zagster cofounder (acq. by superpedestrian)", "mentioned_profiles": []}}, "username": "jasonmeinzer", "power_badge": true, "display_name": "jasonmeinzer.eth 🎩↑🔮🍖", "active_status": "inactive", "verifications": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "follower_count": 465, "custody_address": "0x973ce5bbc61897a0cffa24fc91b4c1d6874c7896", "following_count": 887, "verified_addresses": {"eth_addresses": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5cg8AtbwjpbRhywQpfYj9B?si=6OlUtJMOTQGpuo8kF33HHA\"}"}', NULL), - (42606, '0x6ce4e6c52528f19dc604610110dbd2b12a5e8e5f', 0, 1, '2024-05-04 22:26:35+00', 0, 0, '{"fid": 439718, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\"", "mentioned_profiles": []}}, "username": "ssr", "power_badge": true, "display_name": "SSR🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "follower_count": 537, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 601, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rLfFnLLmoHcmXwvq6\"}"}', NULL), - (59608, '0x4f2a08a86ea4e3f512dec58f733cb27e9e330a1c', 0, 1, '2024-05-04 23:17:42+00', 0, 1, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0xe311817b4cf2892ce0324d0168e596ee909ee83e"], "follower_count": 625, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 578, "verified_addresses": {"eth_addresses": ["0xe311817b4cf2892ce0324d0168e596ee909ee83e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to NewJeans(뉴진스) - ETA by woozzal on #SoundCloud https://on.soundcloud.com/sU3k3\"}"}', NULL), - (77508, '0xe2a84f4a317ee7852257a79ff57cf698a0c1a2ae', 0, 1, '2024-05-05 00:11:01+00', 0, 2, '{"fid": 486173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1921e92c-b93e-496c-aeb2-e265d0dace00/rectcrop3", "profile": {"bio": {"text": "IQ 50 Trader / 고양이 전문점 / degen maxi", "mentioned_profiles": []}}, "username": "ginoman2", "power_badge": false, "display_name": "Norman", "active_status": "inactive", "verifications": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "follower_count": 1903, "custody_address": "0x44238f7a19231f48f72c41d451b18a7e815c5dba", "following_count": 1607, "verified_addresses": {"eth_addresses": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NSNgdz417gEgRw8v9\"}"}', NULL), - (87516, '0x6b05175494bd84458cda9749c935c6a6cd26d3a0', 0, 1, '2024-05-05 00:38:49+00', 0, 0, '{"fid": 507441, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c92cf50-b0c3-4054-c8b7-153bf453fb00/rectcrop3", "profile": {"bio": {"text": "f4f 100%", "mentioned_profiles": []}}, "username": "!507441", "power_badge": false, "display_name": "gaejuky", "active_status": "inactive", "verifications": ["0xba46dafa0f75b8a2ebb00f0f5d5ee3f0f29a8a7f"], "follower_count": 503, "custody_address": "0x13d66dd25a26cf2664fcaf802425eaa1054182e8", "following_count": 752, "verified_addresses": {"eth_addresses": ["0xba46dafa0f75b8a2ebb00f0f5d5ee3f0f29a8a7f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Iconoclast by Symphony X on #SoundCloud https://on.soundcloud.com/hVJdg\"}"}', NULL), - (74290, '0x453c1b9986ac2632f4192f7342b2eecd5c3093d2', 0, 1, '2024-05-05 00:01:02+00', 0, 0, '{"fid": 428777, "object": "user", "pfp_url": "https://i.imgur.com/Wj8mpZh.jpg", "profile": {"bio": {"text": "Crypto user\n", "mentioned_profiles": []}}, "username": "lifehxc", "power_badge": false, "display_name": "lifehxc.eth", "active_status": "inactive", "verifications": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "follower_count": 330, "custody_address": "0xcab8c2dc88a35046e4c5480e31ec223faaee5fb9", "following_count": 323, "verified_addresses": {"eth_addresses": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/theknocks/one-on-one?in=sc-playlists-fr%2Fsets%2Fpoppin\"}"}', NULL), - (53602, '0xcc14bf044a047e12f21c872554072628e81948bb', 0, 1, '2024-05-04 23:05:21+00', 0, 2, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12 ✪ 🎩", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5048, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fV51vzeraywZ1Rmu9\"}"}', NULL), - (44216, '0x8696c01a0846ed5eb228c0a02f275d5e1f868b84', 0, 1, '2024-05-04 22:31:57+00', 0, 2, '{"fid": 331263, "object": "user", "pfp_url": "https://i.imgur.com/dg2UHVb.jpg", "profile": {"bio": {"text": "music made for getting lost", "mentioned_profiles": []}}, "username": "greenring", "power_badge": false, "display_name": "Green Ring", "active_status": "inactive", "verifications": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "follower_count": 33, "custody_address": "0xf9ae5ec1430d9cb32339a719e9682b0b2411c123", "following_count": 131, "verified_addresses": {"eth_addresses": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/greenring/roam?referral_source=link\"}"}', NULL), - (57212, '0x132e8ba0a11a688f809d42479e4e876bdfbf829d', 0, 1, '2024-05-04 23:12:21+00', 0, 4, '{"fid": 426622, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSVPrv6F9zX1KSuuefPBw9eVajjHe6RELzf93RbCTbVe9?filename=photo_2024-04-23_12-19-11.jpg", "profile": {"bio": {"text": "워캐스트 / 슈퍼캐스트 화이팅 / 우리 모두 좋은 결과 얻어갔으면 좋겠어요 : )", "mentioned_profiles": []}}, "username": "daenamu", "power_badge": false, "display_name": "유호 🔥/🫂", "active_status": "inactive", "verifications": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "follower_count": 2017, "custody_address": "0x58db626491d5343348259ee3d9b65fc00b3879f7", "following_count": 2180, "verified_addresses": {"eth_addresses": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-956334953/coldplay-viva-la-vida?si=4b50d84b689e47689913ade92d419ab4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (68281, '0xa4500ca52bfabc19737a1ec04fa4fe32b0090fd9', 0, 1, '2024-05-04 23:42:11+00', 0, 1, '{"fid": 453277, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/576baa6e-6b8d-4803-f6d7-3b6e6dc79000/original", "profile": {"bio": {"text": "Your Web3 Hub | Everything IT related about Web3 🌐. | pounf.crowned.eth |\nhttps://www.linkedin.com/in/gerpefanis/\n", "mentioned_profiles": []}}, "username": "pounf.eth", "power_badge": false, "display_name": "pounf 🪄⚔️", "active_status": "inactive", "verifications": ["0xcbb30b0e9eca485b2a1ae46612f2d466e3480d0e"], "follower_count": 870, "custody_address": "0xdcd94ddc443338b6b749b8ea57e915179a0fc347", "following_count": 276, "verified_addresses": {"eth_addresses": ["0xcbb30b0e9eca485b2a1ae46612f2d466e3480d0e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Prevantion by Reep - Absolutely Nothing on #SoundCloud https://on.soundcloud.com/FCZ9P\"}"}', NULL), - (53606, '0xa53e5bbba79c11d123213fe9e5886ae6200437fe', 0, 1, '2024-05-04 23:05:14+00', 0, 0, '{"fid": 367251, "object": "user", "pfp_url": "https://i.imgur.com/yEQe9fb.jpg", "profile": {"bio": {"text": "Big reward follow me", "mentioned_profiles": []}}, "username": "venusss", "power_badge": false, "display_name": "Venus On Warpcast 🎩🔁🔄", "active_status": "inactive", "verifications": ["0xbd75a7e6d75113004873108c96d9a585c099ae80"], "follower_count": 75, "custody_address": "0xbd75a7e6d75113004873108c96d9a585c099ae80", "following_count": 231, "verified_addresses": {"eth_addresses": ["0xbd75a7e6d75113004873108c96d9a585c099ae80"], "sol_addresses": ["H5abqgAR8yCkHLhMhBJYE7KrdBtQPDEDr3wGTovbBMjE"]}}', '{"{\"url\":\"https://on.soundcloud.com/ujspYToEsN6PqMrx5\"}"}', NULL), - (63701, '0xfef066d7f6b2f983ed678f4cf03826d8522fab83', 130, 1, '2024-05-04 23:27:39+00', 11, 25, '{"fid": 302515, "object": "user", "pfp_url": "https://i.imgur.com/9bbU25M.jpg", "profile": {"bio": {"text": "Onchain Researcher! ❤️ World is beautiful", "mentioned_profiles": []}}, "username": "gianahazel", "power_badge": false, "display_name": "Giana 🐧🍖🦊", "active_status": "inactive", "verifications": ["0x5fc8c99efc2536037568392ef02294f5ee9910ac"], "follower_count": 34, "custody_address": "0x5fc8c99efc2536037568392ef02294f5ee9910ac", "following_count": 89, "verified_addresses": {"eth_addresses": ["0x5fc8c99efc2536037568392ef02294f5ee9910ac"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XvQuj5Uc2mzDuHn18\"}"}', NULL), - (38845, '0xedf0a15daf459fd3b8ed770ee3fd154fd9c9a1b1', 0, 1, '2024-05-04 22:08:48+00', 0, 0, '{"fid": 189541, "object": "user", "pfp_url": "https://i.imgur.com/mfOWaa1.jpg", "profile": {"bio": {"text": "Crypto lover\nHusband\nFather\nDreamer", "mentioned_profiles": []}}, "username": "huiwang925", "power_badge": false, "display_name": "0xdc.⌐◨-◨", "active_status": "inactive", "verifications": ["0x256a1d5b073da8280f812703b80e2eda66ae242c"], "follower_count": 41, "custody_address": "0x14ceef664702a017d48483f5d7d1fe623027976e", "following_count": 56, "verified_addresses": {"eth_addresses": ["0x256a1d5b073da8280f812703b80e2eda66ae242c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/laufeylin/it-could-happen-to-you?in=trending-music-ca/sets/jazz&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (60094, '0xd4b474ac374b5326aec145d6afa2830324c2fc92', 0, 1, '2024-05-04 23:18:50+00', 0, 0, '{"fid": 477741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ca1b374-391e-4594-c57a-053a77873500/rectcrop3", "profile": {"bio": {"text": "존버남/신뢰/의리/믿음/일상공유/슈캐\n/무조건 리캐 하트/🎩🍖", "mentioned_profiles": []}}, "username": "noincil", "power_badge": false, "display_name": "JON BER🎩🍖", "active_status": "inactive", "verifications": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "follower_count": 2960, "custody_address": "0xfb1fe84faf8d0adb346adb8bee2cc8bc8d32fa4b", "following_count": 2990, "verified_addresses": {"eth_addresses": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Treaty Oak Revival - No Vacancy by shimelwrld v3 on #SoundCloud https://on.soundcloud.com/gpfaS\"}"}', NULL), - (283125, '0x5e385f9d7ef1c0cd741523c93f99ce28ceff95fb', 0, 1, '2024-05-05 18:20:46+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t-y-n-an/bigbang-if-you?si=64583a99b6304c188eb682d6f588a975&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (20960, '0xb4393ce32cf816cfead96cf384fa041038b1166f', 0, 1, '2024-05-04 20:48:45+00', 0, 3, '{"fid": 349939, "object": "user", "pfp_url": "https://i.imgur.com/3FkIear.jpg", "profile": {"bio": {"text": "Onchain Music • Writer • Building https://linktr.ee/cass3tte • prev. Web3 & Community at Venice Music", "mentioned_profiles": []}}, "username": "johnmoorhead.eth", "power_badge": false, "display_name": "John Moorhead", "active_status": "inactive", "verifications": ["0xfcbaacad53def4df17fd8eb1e1b10291ca09b85e"], "follower_count": 15, "custody_address": "0x7195457ec7c152b6218aa7d2f78af78261be362f", "following_count": 23, "verified_addresses": {"eth_addresses": ["0xfcbaacad53def4df17fd8eb1e1b10291ca09b85e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/cass3tte/you-would-never-fall-in-love-with-me-phin\"}"}', NULL), - (42605, '0x05c3fb85fc2b7c1abfd942ebd1507ef77712a7d1', 0, 1, '2024-05-04 22:27:06+00', 0, 0, '{"fid": 896, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/A0OMJuC3dmhJmT230zqsrRZ10x62MulsHMVdcRI4hEiXhHkLbso75Lcz9moIkdJMOFVy80CAtG03zFdtjMgH5mLbapSISaBeOFxH", "profile": {"bio": {"text": "not my first rodeo 👨🏾‍🚀\n@a16zcrypto", "mentioned_profiles": []}}, "username": "boogie", "power_badge": true, "display_name": "jay drain jr.", "active_status": "inactive", "verifications": ["0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2"], "follower_count": 401, "custody_address": "0x4cfc4a5054fe1abd8a3556759010d85f8192cf84", "following_count": 145, "verified_addresses": {"eth_addresses": ["0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1981tokyo/frontin-amapiano\"}"}', NULL), - (55112, '0xd200bd15a641817fe80174dfc0bebb1bbaa0920f', 0, 1, '2024-05-04 23:08:33+00', 0, 0, '{"fid": 379722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2036467f-9180-461e-520e-380741901700/rectcrop3", "profile": {"bio": {"text": "I Love Hanni Pham! & NewJeans Lover.🐰❤️\nWe are so early!!!🚀🚀 Ham party letgo🍖", "mentioned_profiles": []}}, "username": "9yuu", "power_badge": false, "display_name": "Hanni Pham🍖🔵⛓️", "active_status": "inactive", "verifications": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "follower_count": 2623, "custody_address": "0xdc4948ac5d6eff31726d6d3461867d5b700333cf", "following_count": 2681, "verified_addresses": {"eth_addresses": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qmmW4K6GyBxf43hz9\"}"}', NULL), - (63704, '0xaf6c00575cd903ead50db29767eab968151a93d3', 0, 1, '2024-05-04 23:28:15+00', 0, 1, '{"fid": 477741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ca1b374-391e-4594-c57a-053a77873500/rectcrop3", "profile": {"bio": {"text": "존버남/신뢰/의리/믿음/일상공유/슈캐\n/무조건 리캐 하트/🎩🍖", "mentioned_profiles": []}}, "username": "noincil", "power_badge": false, "display_name": "JON BER🎩🍖", "active_status": "inactive", "verifications": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "follower_count": 2960, "custody_address": "0xfb1fe84faf8d0adb346adb8bee2cc8bc8d32fa4b", "following_count": 2990, "verified_addresses": {"eth_addresses": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "sol_addresses": []}}', '{"{\"url\":\"Listen to SoundCloud, a playlist by Trending Music on #SoundCloud https://on.soundcloud.com/wNrmh\"}"}', NULL), - (38408, '0xf6e345d28dccc578c599a7fcae0c8637c192fc91', 0, 1, '2024-05-04 22:00:22+00', 0, 0, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "I strongly believe that /weareone • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 2774, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 459, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5rmcjZTrE9JR1YrbNZDFNW?si=BZPhP2ZxSjSXafj-ozS89g\"}"}', NULL), - (40470, '0xa1c094d4ba7741949878e4480aa53d9f6abc978c', 0, 1, '2024-05-04 22:18:03+00', 0, 1, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 552, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 517, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/familiarfaces/on-my-own?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1\"}"}', NULL), - (40305, '0xfd8fff3c769cf028c5208e05ac1f9456b1d166fa', 0, 1, '2024-05-04 22:16:36+00', 0, 1, '{"fid": 308625, "object": "user", "pfp_url": "https://i.imgur.com/EXa7T1u.gif", "profile": {"bio": {"text": "Self-taught 3D addict / Clay renders admirer / Father of 3\n\nrc.xyz/hroft", "mentioned_profiles": []}}, "username": "hroft", "power_badge": false, "display_name": "Hroft 🎩🔵", "active_status": "inactive", "verifications": ["0xa949eba085bd6b07e8ce5073accfd5732d576122"], "follower_count": 442, "custody_address": "0x83b4a553589ab01873e16683389c43aabde89e6e", "following_count": 382, "verified_addresses": {"eth_addresses": ["0xa949eba085bd6b07e8ce5073accfd5732d576122"], "sol_addresses": ["84PyNB74dHV1ZBoKWtKf6hfRSbUXEmqeykW1QZ9EhqGR"]}}', '{"{\"url\":\"https://open.spotify.com/track/1QmEmpwoDgqiJDsf11rLcf\"}"}', NULL), - (60629, '0xb35523690c671f257db9b71fe17a9476309f5ee5', 0, 1, '2024-05-04 23:19:09+00', 0, 1, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0xe311817b4cf2892ce0324d0168e596ee909ee83e"], "follower_count": 625, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 578, "verified_addresses": {"eth_addresses": ["0xe311817b4cf2892ce0324d0168e596ee909ee83e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 성시경 - 희재 by 0cean_addict on #SoundCloud https://on.soundcloud.com/Jsn9S\"}"}', NULL), - (49514, '0xb90b8649eac5b8cdd2d8a538968796ec55b58ddc', 0, 1, '2024-05-04 22:50:45+00', 0, 2, '{"fid": 7690, "object": "user", "pfp_url": "https://i.imgur.com/7m00D5i.jpg", "profile": {"bio": {"text": "Freedom & power / Web3 Brand Strategy / Building web3 media company. 🏰 Positive vibes, ALWAYS. \n\nhttps://nf.td/0xruckus", "mentioned_profiles": []}}, "username": "esusu.eth", "power_badge": false, "display_name": "0x 🎩 🦊 ", "active_status": "inactive", "verifications": ["0xe6c55b0af75151960005eabae3fe19528c1b131b"], "follower_count": 1163, "custody_address": "0xd411854f8ca066794515f17b518207fdeeff4823", "following_count": 205, "verified_addresses": {"eth_addresses": ["0xe6c55b0af75151960005eabae3fe19528c1b131b"], "sol_addresses": ["AFsaE6k1BsBPSa3gsH755H4kb51rBj7xXacCR8t4GLP2"]}}', '{"{\"url\":\"https://on.soundcloud.com/N49GTq7Xyzki4cUk8\"}"}', NULL), - (43329, '0xdce825d607be00cf3a43325b9ad16f585bed3512', 1100, 1, '2024-05-04 22:29:04+00', 0, 2, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman @ farcon", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 459, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/xcelencia/chimbita?song_tab=posts\"}"}', NULL), - (44218, '0x762b5d6dcde5492a2688e36e5a2fea1b5bf4344e', 0, 1, '2024-05-04 22:32:02+00', 0, 1, '{"fid": 398824, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiehycw2f5ed4dvvpgttcrnivsgwwv3df3mxocg7v7pwf43i4n7uom", "profile": {"bio": {"text": "Guy diving into crypto", "mentioned_profiles": []}}, "username": "xbased", "power_badge": false, "display_name": "Irohcrypto 🎩⛓️", "active_status": "inactive", "verifications": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "follower_count": 696, "custody_address": "0x019db65b233873283c5ac2e5a728ed438c28172c", "following_count": 1166, "verified_addresses": {"eth_addresses": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6qfNz0CMQqDy2VpoJu67Gb?si=E9I_iPqPRwO51uQ0rS4skA\"}"}', NULL), - (54479, '0x40ea1bc546edebe3b9381ef42809d643aabbdf8c', 1021, 1, '2024-05-04 23:07:02+00', 0, 25, '{"fid": 367251, "object": "user", "pfp_url": "https://i.imgur.com/yEQe9fb.jpg", "profile": {"bio": {"text": "Big reward follow me", "mentioned_profiles": []}}, "username": "venusss", "power_badge": false, "display_name": "Venus On Warpcast 🎩🔁🔄", "active_status": "inactive", "verifications": ["0xbd75a7e6d75113004873108c96d9a585c099ae80"], "follower_count": 75, "custody_address": "0xbd75a7e6d75113004873108c96d9a585c099ae80", "following_count": 231, "verified_addresses": {"eth_addresses": ["0xbd75a7e6d75113004873108c96d9a585c099ae80"], "sol_addresses": ["H5abqgAR8yCkHLhMhBJYE7KrdBtQPDEDr3wGTovbBMjE"]}}', '{"{\"url\":\"https://on.soundcloud.com/jzuogfzhNBjExtKj8\"}"}', NULL), - (1172894, '0x99cee6c2faeb7751f82e7d30d0be874fa82dbb71', 4120, 1, '2024-05-14 19:52:16+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 421, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 238, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6La69gvUfuArgLrV48nELt?si=YoX76zGzQiO7PNhxZ66N7A\"}"}', NULL), - (60628, '0xf2859d6a0a4bea607ab993d0045e451c88bce6c9', 0, 1, '2024-05-04 23:19:45+00', 0, 3, '{"fid": 396686, "object": "user", "pfp_url": "https://i.imgur.com/fPrPJbw.jpg", "profile": {"bio": {"text": "Degen Investor, NFT Designer, Real Estate Investment Expert", "mentioned_profiles": []}}, "username": "cupe", "power_badge": false, "display_name": "Unicbabe🎩", "active_status": "inactive", "verifications": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "follower_count": 596, "custody_address": "0x1cf829fd720262d71df0d31d2daa438b8bcfa33d", "following_count": 1092, "verified_addresses": {"eth_addresses": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "sol_addresses": ["JCwvnP3zV9KCQMMCCsmdPrSoh6K6AbJeUpvuY96YPKj1"]}}', '{"{\"url\":\"https://soundcloud.com/ul-ali/pink-floyd-wish-you-were-here?in=user-627737292/sets/pink-floyd\"}"}', NULL), - (42898, '0x7cfc86da4a3e63e453f9aa1ff3154190704c56dc', 10, 1, '2024-05-04 22:27:45+00', 0, 1, '{"fid": 331263, "object": "user", "pfp_url": "https://i.imgur.com/dg2UHVb.jpg", "profile": {"bio": {"text": "music made for getting lost", "mentioned_profiles": []}}, "username": "greenring", "power_badge": false, "display_name": "Green Ring", "active_status": "inactive", "verifications": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "follower_count": 33, "custody_address": "0xf9ae5ec1430d9cb32339a719e9682b0b2411c123", "following_count": 131, "verified_addresses": {"eth_addresses": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/greenring/clouded?referral_source=link\"}"}', NULL), - (283112, '0x8c761d79f31f9c3eda50134d4103b79f4ccdc32c', 0, 1, '2024-05-05 18:19:43+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rovyghany/ive-after-like?si=adedc164c8de41dcaed624faf1e7ef70&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (72150, '0xc289aa64d57280e5fef4d2eaf5c0a974574a0cf0', 0, 1, '2024-05-04 23:54:56+00', 0, 0, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1399, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1723, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vZEx9Q8rED2AdhTY8\"}"}', NULL), - (78266, '0xfa69bb242366f37dd95f75d6235def5b818cac21', 0, 1, '2024-05-05 00:15:17+00', 10, 25, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4cbe309d-9245-41cf-1f22-b458eccd4800/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1509, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 954, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9Ds4Lo3VzPDhMLkG7\"}"}', NULL), - (39160, '0xcaef46a6818ea6e8be6bdba5a67d8507504f0943', 0, 1, '2024-05-04 22:11:51+00', 0, 0, '{"fid": 236302, "object": "user", "pfp_url": "https://i.imgur.com/jJOCUrF.jpg", "profile": {"bio": {"text": "Partime degentlement - NFA", "mentioned_profiles": []}}, "username": "ron-", "power_badge": false, "display_name": "Ron 🎩 ✈️ ↑", "active_status": "inactive", "verifications": ["0x12136347cc3855eba2e7e6e9ed755f31d47b4cd5", "0x47fac95efef39c7ce44e9870cede1894666df166"], "follower_count": 590, "custody_address": "0x3a104e9efa62008552e52297b1ae905d35312ac6", "following_count": 724, "verified_addresses": {"eth_addresses": ["0x12136347cc3855eba2e7e6e9ed755f31d47b4cd5", "0x47fac95efef39c7ce44e9870cede1894666df166"], "sol_addresses": ["6thvsq9Js8ttKaNXvce7KHd5KtpBkx29DVTXV6kozt2Z"]}}', '{"{\"url\":\"https://www.sound.xyz/greymusic/contra\"}"}', NULL), - (84046, '0xccc611b3bc7f98d2bab7d4632c6d89cfd97d1238', 0, 1, '2024-05-05 00:29:24+00', 0, 1, '{"fid": 500889, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7849d21f-3eab-4d19-a328-6af7560c3100/rectcrop3", "profile": {"bio": {"text": "Im not farmer, abusing, bot!!!!!\nHere we go! Getting better!\nBeautiful life~~♤\nGo to big rich!", "mentioned_profiles": []}}, "username": "awesome7333", "power_badge": false, "display_name": "Awesome.rich", "active_status": "inactive", "verifications": ["0xf6880a80ddff66383a192389a1d93f865a867bcd"], "follower_count": 1100, "custody_address": "0xb5388e4625ba7af62c142db83ea8a2534bb77897", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xf6880a80ddff66383a192389a1d93f865a867bcd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fauzi-lesmana/steel-heart-shes-gone?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (38454, '0xb4dccf6aa4a1592e07e766fdeb8556cd009cfb66', 0, 1, '2024-05-04 22:01:42+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1109, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1017, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/5UDoMj8EIEXrQ4N0UR0nos?si=U-Ud_6T0Symw_dq8_OsltA&context=spotify%3Aartist%3A0nJUwPwC9Ti4vvuJ0q3MfT\"}","{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmQKQf8uXWZMxr5sSLu5iQmjf3xaYeLKfajhmcCy5jv6BX?filename=IMG_1338.jpeg\"}"}', NULL), - (39263, '0x289cbc66aa0dca9c8dfaa7e2121a8b2982a7ab69', 0, 1, '2024-05-04 22:12:33+00', 0, 0, '{"fid": 348617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550b8b45-6d9e-42a8-e083-163945304800/rectcrop3", "profile": {"bio": {"text": "TLDR", "mentioned_profiles": []}}, "username": "leeroy", "power_badge": false, "display_name": "Leeroy ", "active_status": "inactive", "verifications": ["0xec37025f888d7ac49d16a6798d397edb64798008", "0x57699126f712d012a15e21f1161ef28f1c5f5a72"], "follower_count": 43, "custody_address": "0xbc746ff2dc5910635177fe9e9471a9a499885912", "following_count": 101, "verified_addresses": {"eth_addresses": ["0xec37025f888d7ac49d16a6798d397edb64798008", "0x57699126f712d012a15e21f1161ef28f1c5f5a72"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6JyihARD2zGUa4uB4NfQiv?si=pIdpdS-cSniSPzMeyzBj5w\"}"}', NULL), - (1047455, '0x85b0716bdbe2aab72e66083dd822bdacdfba6fc6', 0, 1, '2024-05-07 14:17:44+00', 0, 1, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1390, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1560, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DTodotWtSYArwq9x6\"}"}', NULL), - (100122, '0x056507e8818013d90e66f1148abe93a48f58dc22', 0, 1, '2024-05-05 01:41:45+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QWmkA\"}"}', NULL), - (38281, '0x1419c16f0d9b0820c2a86973e4733230128b1458', 0, 1, '2024-05-04 21:57:24+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/karmavioletta/mano_mano_karmavioletta_remix?si=33f6a184f3e445c59ccb24c374b2f876&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (100534, '0x35a1f8142bd794321ecb51a20feb4cb8a9519053', 0, 1, '2024-05-05 01:43:59+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vV2g1\"}"}', NULL), - (69119, '0xc63c0cdb3b28f7c8372580ae53b2b0d529f8476a', 0, 1, '2024-05-04 23:45:21+00', 0, 1, '{"fid": 254790, "object": "user", "pfp_url": "https://i.imgur.com/CUadhuc.jpg", "profile": {"bio": {"text": "Together we are more strong !", "mentioned_profiles": []}}, "username": "0xmonkey420", "power_badge": false, "display_name": "0xmonkey", "active_status": "inactive", "verifications": ["0x905f046f86cb55703d0436a9c6f00da91d20982f"], "follower_count": 532, "custody_address": "0x47da0f9933aa8b85d85c5458702a32c140354c63", "following_count": 875, "verified_addresses": {"eth_addresses": ["0x905f046f86cb55703d0436a9c6f00da91d20982f"], "sol_addresses": ["55PrxSggwFRPhah55UH2paK93i8vL8PMpQbSYirGhA9d"]}}', '{"{\"url\":\"Ouça After Dark x Sweater Weather de Kadir Curtis no #SoundCloud https://on.soundcloud.com/dyL8P\"}"}', NULL), - (356048, '0x3d8fa2a7eb943176a5ce4daf7d00d0c20f6227a2', 0, 1, '2024-05-06 01:44:09+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1148, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 958, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hnLSrx8xWcA5NBTP6\"}"}', 'sonata'), - (1159510, '0xa7708c92b7cd7dfc1a0a3908981a80c986e62354', 0, 1, '2024-05-08 11:30:23+00', 0, 6, '{"fid": 445815, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8344947a-01ba-4dd1-549a-6d8118924100/rectcrop3", "profile": {"bio": {"text": "Let''s go ", "mentioned_profiles": []}}, "username": "maryamnoz", "power_badge": false, "display_name": "Mery🎩🍖🐐⚡", "active_status": "inactive", "verifications": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "follower_count": 1679, "custody_address": "0xea3119691b1e6bba73566e1eec3264b53306ec93", "following_count": 940, "verified_addresses": {"eth_addresses": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7qEHsqek33rTcFNT9PFqLf?si=NZQKagW-SP2Q-fQIy0JoMA&utm_source=copy-link&context=spotify%3Aplaylist%3A37i9dQZF1DWVTfbQdQ8l7H\"}"}', 'sonata'), - (40315, '0xe1a5503f3f43f77998a5ad5c59e1a58e4437e846', 0, 1, '2024-05-04 22:16:57+00', 0, 0, '{"fid": 407128, "object": "user", "pfp_url": "https://i.imgur.com/cEarSGQ.jpg", "profile": {"bio": {"text": "MD., Ph.D.\ncrypto, NFT collector \nなんとなく慣れてきました", "mentioned_profiles": []}}, "username": "scrypto3", "power_badge": false, "display_name": "Scrypto🎩🔮🔵🦄", "active_status": "inactive", "verifications": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "follower_count": 645, "custody_address": "0x3dfe27594d0d2d3180dfce17109a282e3018c0df", "following_count": 623, "verified_addresses": {"eth_addresses": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fuasYeSP5wcpcvau9\"}"}', NULL), - (283111, '0x01f8b6108a4a1aa0f109f26f0ad248f06fa4d3ca', 0, 1, '2024-05-05 18:20:28+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/blindspot880/after-like-ive?si=6b92a1fad47247a581eed46882c1d810&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (78265, '0x577c71153eddf04ae2e737f03686779dab1f0ca4', 0, 1, '2024-05-05 00:15:00+00', 0, 0, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2866, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3283, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KTPn4ZdKgxvBe55W7\"}"}', NULL), - (54481, '0x7f144206ae78ed94156d6151410e151372939a1c', 0, 1, '2024-05-04 23:06:58+00', 0, 1, '{"fid": 287924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b080e06a-c0cb-4838-3567-dbdedc192800/rectcrop3", "profile": {"bio": {"text": "가나다라 아무말대잔치 노트👻💕아이러브 한글", "mentioned_profiles": []}}, "username": "korineshasha", "power_badge": false, "display_name": "k-shasha🇰🇷", "active_status": "inactive", "verifications": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "follower_count": 1965, "custody_address": "0xdc5ed12b37b07e22727a94b20899d414781a07a9", "following_count": 1429, "verified_addresses": {"eth_addresses": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "sol_addresses": []}}', '{"{\"url\":\"https://youtu.be/niYZ9cCL1Eg?si=Aa-kb2ZMNPUywzsg\"}","{\"url\":\"https://on.soundcloud.com/HAoZ6pvgqg51meRy9\"}"}', NULL), - (56730, '0x66c69ad6f9665c69d0fa45644c3f574729d7362b', 0, 1, '2024-05-04 23:11:17+00', 0, 8, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1108, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 550, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7Hw6p\"}"}', NULL), - (65249, '0xc8e5c9d8a5cbcea68121c5a1449087abd3f1a46d', 0, 1, '2024-05-04 23:32:56+00', 0, 3, '{"fid": 287924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b080e06a-c0cb-4838-3567-dbdedc192800/rectcrop3", "profile": {"bio": {"text": "가나다라 아무말대잔치 노트👻💕아이러브 한글", "mentioned_profiles": []}}, "username": "korineshasha", "power_badge": false, "display_name": "k-shasha🇰🇷", "active_status": "inactive", "verifications": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "follower_count": 1965, "custody_address": "0xdc5ed12b37b07e22727a94b20899d414781a07a9", "following_count": 1429, "verified_addresses": {"eth_addresses": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DQ7rDwhe68k79fJW7\"}"}', NULL), - (43330, '0x948f6205ac165f89161c8878dc2a44befbe8b45f', 10, 1, '2024-05-04 22:29:18+00', 0, 1, '{"fid": 331263, "object": "user", "pfp_url": "https://i.imgur.com/dg2UHVb.jpg", "profile": {"bio": {"text": "music made for getting lost", "mentioned_profiles": []}}, "username": "greenring", "power_badge": false, "display_name": "Green Ring", "active_status": "inactive", "verifications": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "follower_count": 33, "custody_address": "0xf9ae5ec1430d9cb32339a719e9682b0b2411c123", "following_count": 131, "verified_addresses": {"eth_addresses": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/touristmusic/ithaca\"}"}', NULL), - (44215, '0x5044454b006309118b4f2e0feae934ef8a342e41', 0, 1, '2024-05-04 22:32:02+00', 0, 1, '{"fid": 515254, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7db92e55-0595-4f26-846f-ae67385f2400/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!515254", "power_badge": false, "display_name": "Castellanoz", "active_status": "inactive", "verifications": ["0xfd582819aded5cb38ed6a9496d150b55a1bd029e"], "follower_count": 10, "custody_address": "0xfd582819aded5cb38ed6a9496d150b55a1bd029e", "following_count": 95, "verified_addresses": {"eth_addresses": ["0xfd582819aded5cb38ed6a9496d150b55a1bd029e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/561jH07mF1jHuk7KlaeF0s?si=XSmaZY4JQfugFi0UIbwsAw\"}"}', NULL), - (50712, '0x1981fd2ac4fb06c3026decbccae98818953f0965', 0, 1, '2024-05-04 22:56:43+00', 0, 0, '{"fid": 379722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2036467f-9180-461e-520e-380741901700/rectcrop3", "profile": {"bio": {"text": "I Love Hanni Pham! & NewJeans Lover.🐰❤️\nWe are so early!!!🚀🚀 Ham party letgo🍖", "mentioned_profiles": []}}, "username": "9yuu", "power_badge": false, "display_name": "Hanni Pham🍖", "active_status": "inactive", "verifications": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "follower_count": 2622, "custody_address": "0xdc4948ac5d6eff31726d6d3461867d5b700333cf", "following_count": 2681, "verified_addresses": {"eth_addresses": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R4SCFLoeyHHMAY5W9\"}"}', NULL), - (283127, '0x314ca277367424c4fb17a7e8271139fb99acc498', 0, 1, '2024-05-05 18:19:24+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share140/ive-eleven?si=b9390f53183c4802823cd1359e6f7fb2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (53605, '0x8446d3c116f17c65bce1e379e2285134ca788050', 0, 1, '2024-05-04 23:05:09+00', 0, 2, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1108, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 550, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 인생은 쓴맛과 단맛의 조화 [이 곡은 모든 음원 사이트에서 들을 수 있습니다] by 처리(Churry) on #SoundCloud https://on.soundcloud.com/7Hw6p\"}"}', NULL), - (65252, '0xb1f0a1f101bba1aa6d1593f614e4da3fd042ed9b', 0, 1, '2024-05-04 23:32:06+00', 0, 25, '{"fid": 502237, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71cac03a-2086-40ba-73c3-720e90bc9c00/rectcrop3", "profile": {"bio": {"text": "Sometimes its not meant to be", "mentioned_profiles": []}}, "username": "pozkhand", "power_badge": false, "display_name": "Pozi", "active_status": "inactive", "verifications": ["0xdd7860cbd0e81f60764e5ecfe36bf0d880ac517b"], "follower_count": 135, "custody_address": "0xf901dbd9eb090d6534937bca644c9dd2da52e854", "following_count": 198, "verified_addresses": {"eth_addresses": ["0xdd7860cbd0e81f60764e5ecfe36bf0d880ac517b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Future, Metro Boomin & Kendrick Lamar - Like That by Future on #SoundCloud https://on.soundcloud.com/neFTY\"}"}', NULL), - (88790, '0x919f529c27b702210ad0dba1d219d7736027e710', 0, 1, '2024-05-05 00:42:54+00', 0, 1, '{"fid": 286600, "object": "user", "pfp_url": "https://arweave.net/-AadrzJqYhr6A2Ls8vK3otlfEf9stJptJXHOYwslgZQ/", "profile": {"bio": {"text": "두 마리 토끼를 쫓는 사람은 둘 다 잡지 못한다. ''GCR''", "mentioned_profiles": []}}, "username": "waltzyang", "power_badge": false, "display_name": "WTG🎩🔵", "active_status": "inactive", "verifications": ["0x89faa2e1306484d47ec22342fd5b3db6ba8b714d", "0x89faa2e1306484d47ec22342fd5b3db6ba8b714d"], "follower_count": 1679, "custody_address": "0x47935a67055317a99016848d6aa1faf2218ef052", "following_count": 1588, "verified_addresses": {"eth_addresses": ["0x89faa2e1306484d47ec22342fd5b3db6ba8b714d", "0x89faa2e1306484d47ec22342fd5b3db6ba8b714d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/plus82seoul/plus82-present-vol03-harmonize-pray?si=944d915d7e39453790148de0dc944100&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (38844, '0x424f16e26aa5b21f27145461fa9f1fb90d929bd1', 0, 1, '2024-05-04 22:08:29+00', 0, 0, '{"fid": 379015, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06fe5ecb-980a-44aa-e462-bda6afda9f00/rectcrop3", "profile": {"bio": {"text": "Web3 enthusiast, /degen /degentlemen", "mentioned_profiles": []}}, "username": "eno256.eth", "power_badge": false, "display_name": "ENO256 | $DEGEN", "active_status": "inactive", "verifications": ["0xfb841a41154b050334778df8d43c9b97adb848b0", "0x2f5fe576ab856cab72f5e2ede2ae8b1209de05fb", "0x75af111e616bfbcd2266f6bbdbac7a621a4d5bdd"], "follower_count": 152, "custody_address": "0xddef5adf492b7a41a034e2286d8b54d785a61163", "following_count": 608, "verified_addresses": {"eth_addresses": ["0xfb841a41154b050334778df8d43c9b97adb848b0", "0x2f5fe576ab856cab72f5e2ede2ae8b1209de05fb", "0x75af111e616bfbcd2266f6bbdbac7a621a4d5bdd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2DZwuYk80qqwbntonxLStS?si=LyLzobhDRcWorPz5LMQ5JQ\"}"}', NULL), - (283128, '0xe243cc54000bed62b07ae42afba1f3f11b7d7d4d', 0, 1, '2024-05-05 18:19:21+00', 0, 0, '{"fid": 421661, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "Digital connoisseur :))) Of course, this is a joke. Pixl art - sovereign. Higher -\nOur Free nft on zora : https://rb.gy/88dflc 🌀\n\nOur channel : /2009", "mentioned_profiles": []}}, "username": "satoushi", "power_badge": true, "display_name": "Satoshi 🎩", "active_status": "inactive", "verifications": ["0x928a8918d31941fb6b7b1f5456964a8bcbcb2435"], "follower_count": 5436, "custody_address": "0xdf41d138d2995f787bc7eee02cdd960b41d9c75f", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x928a8918d31941fb6b7b1f5456964a8bcbcb2435"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musikconnections/sting-shape-of-my-heart?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (78920, '0xfd05b8210e6e8e692ddd1815083613b8718d6b78', 0, 1, '2024-05-05 00:15:42+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ERTmR\"}"}', NULL), - (39850, '0x6a8c3d667077367ce4f4f0409553a840f0e46176', 0, 1, '2024-05-04 22:14:01+00', 0, 0, '{"fid": 236958, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/62b6b55e-93ea-4da3-d99c-470238a3fb00/original", "profile": {"bio": {"text": "life begins in Darkness\nPxl Glitch", "mentioned_profiles": []}}, "username": "edark", "power_badge": false, "display_name": "eDArk🎩🔵", "active_status": "inactive", "verifications": ["0x8bfd4114d4a266f696ad211f57fdfbacf7b3f513", "0x200d5dccd007256cd5ffa1c46c8359215a8a443c", "0xc0ae85cd4ba82cbc440b2f7633fcaf8f4b29bab1"], "follower_count": 164, "custody_address": "0x23fbee47d7277b44c54428bb7a3686aea7d89bff", "following_count": 293, "verified_addresses": {"eth_addresses": ["0x8bfd4114d4a266f696ad211f57fdfbacf7b3f513", "0x200d5dccd007256cd5ffa1c46c8359215a8a443c", "0xc0ae85cd4ba82cbc440b2f7633fcaf8f4b29bab1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/discopraline/a1-novamen-freak-of-the-week-dp-005\"}"}', NULL), - (39953, '0x159d4b6356233dc6c085c8cbc4ddc3b16f75588b', 0, 1, '2024-05-04 22:14:29+00', 0, 0, '{"fid": 379015, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/06fe5ecb-980a-44aa-e462-bda6afda9f00/rectcrop3", "profile": {"bio": {"text": "Web3 enthusiast, /degen /degentlemen", "mentioned_profiles": []}}, "username": "eno256.eth", "power_badge": false, "display_name": "ENO256 | $DEGEN", "active_status": "inactive", "verifications": ["0xfb841a41154b050334778df8d43c9b97adb848b0", "0x2f5fe576ab856cab72f5e2ede2ae8b1209de05fb", "0x75af111e616bfbcd2266f6bbdbac7a621a4d5bdd"], "follower_count": 152, "custody_address": "0xddef5adf492b7a41a034e2286d8b54d785a61163", "following_count": 610, "verified_addresses": {"eth_addresses": ["0xfb841a41154b050334778df8d43c9b97adb848b0", "0x2f5fe576ab856cab72f5e2ede2ae8b1209de05fb", "0x75af111e616bfbcd2266f6bbdbac7a621a4d5bdd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/186ZXoxIb200k9pNy4s0SO?si=aIpvScObRxuUE7Ou1HyOzw\"}"}', NULL), - (39494, '0x8f22df05572cc6d940092f095493ec56e36f0cb5', 0, 1, '2024-05-04 22:12:55+00', 0, 0, '{"fid": 419790, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigublncbmln2vaar6snhxumcryxjk5vtgzxvseqonqaplfx2hqzky", "profile": {"bio": {"text": "New to the on-chain world. Looking forward to learning new things and meeting new people.", "mentioned_profiles": []}}, "username": "athxna", "power_badge": false, "display_name": "Athena 🎩 💼", "active_status": "inactive", "verifications": ["0x81d79b63494bf03d03e910dfec67bbc9efc512db", "0x84d8d4b63c7d40ee5f68e566844e547782c27f39"], "follower_count": 171, "custody_address": "0x025d51e342438033c28d3cb38e3894ec5ff2912d", "following_count": 246, "verified_addresses": {"eth_addresses": ["0x81d79b63494bf03d03e910dfec67bbc9efc512db", "0x84d8d4b63c7d40ee5f68e566844e547782c27f39"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1rEHQCkmLYY0CDrIborSoF?si=Jafvy37EQQOC1ztxoV6U6g\"}"}', NULL), - (43331, '0xc01861dfba945e15d6223b7a09ee7a95c12f02ea', 0, 1, '2024-05-04 22:29:08+00', 10, 2, '{"fid": 896, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/A0OMJuC3dmhJmT230zqsrRZ10x62MulsHMVdcRI4hEiXhHkLbso75Lcz9moIkdJMOFVy80CAtG03zFdtjMgH5mLbapSISaBeOFxH", "profile": {"bio": {"text": "not my first rodeo 👨🏾‍🚀\n@a16zcrypto", "mentioned_profiles": []}}, "username": "boogie", "power_badge": true, "display_name": "jay drain jr.", "active_status": "inactive", "verifications": ["0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2"], "follower_count": 401, "custody_address": "0x4cfc4a5054fe1abd8a3556759010d85f8192cf84", "following_count": 145, "verified_addresses": {"eth_addresses": ["0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/stan-mamudi/kendrick-x-kanye-x-raymond-deejay-love-stan-stan-redrum-afro-edit\"}"}', NULL), - (78922, '0x1bfc866f4fc0fda519606fa074cee69d5dc773f3', 0, 1, '2024-05-05 00:15:59+00', 0, 0, '{"fid": 428777, "object": "user", "pfp_url": "https://i.imgur.com/Wj8mpZh.jpg", "profile": {"bio": {"text": "Crypto user\n", "mentioned_profiles": []}}, "username": "lifehxc", "power_badge": false, "display_name": "lifehxc.eth", "active_status": "inactive", "verifications": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "follower_count": 330, "custody_address": "0xcab8c2dc88a35046e4c5480e31ec223faaee5fb9", "following_count": 323, "verified_addresses": {"eth_addresses": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/djxclusive-503/bachata-pa-hombre-vol1-2024-by-djkevinflow\"}"}', NULL), - (87515, '0xdcab1d1d58ab82e7188e3c82c741f9235c57004b', 0, 1, '2024-05-05 00:39:46+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZiHJ4\"}"}', NULL), - (40015, '0xef92fb56139a40359f74a8d75dd4ba28206ed477', 0, 1, '2024-05-04 22:16:10+00', 0, 0, '{"fid": 439718, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\"", "mentioned_profiles": []}}, "username": "ssr", "power_badge": true, "display_name": "SSR🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "follower_count": 537, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 601, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/nourished-by-music/happy-birthday-to-you-royalty-free-no-copyright-music\"}"}', NULL), - (40923, '0x48e37d3f4922ebac5a30312d84f50f7b25b79aa5', 0, 1, '2024-05-04 22:22:33+00', 0, 3, '{"fid": 345377, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreiafid36chonzuyib6sdvbdvj7zg2rf72u5kemnlztqdasgftlgmhi", "profile": {"bio": {"text": "FID : 345377\nNeed Donations", "mentioned_profiles": []}}, "username": "xcz", "power_badge": false, "display_name": "Gmfers 🔵 🔮 🎩🔄", "active_status": "inactive", "verifications": ["0x4b8b8601a4b5d280254c3610af2a44fcf5c12a9c"], "follower_count": 136, "custody_address": "0x0e8867e0277cf892f13e78955c7ecb8ccce505bb", "following_count": 371, "verified_addresses": {"eth_addresses": ["0x4b8b8601a4b5d280254c3610af2a44fcf5c12a9c"], "sol_addresses": ["ChXDnZD3NfLaNLvvTVPr2Q5tNfUFQS921JkTcaUX3bbZ"]}}', '{"{\"url\":\"https://m.soundcloud.com/jd793/young-dumb-and-broke-8teen-1\"}"}', NULL), - (47134, '0xcfed843aa815ccc7125d29abe71da8a749dc5a6f', 0, 1, '2024-05-04 22:43:30+00', 0, 1, '{"fid": 344368, "object": "user", "pfp_url": "https://i.imgur.com/Ws9fFOW.jpg", "profile": {"bio": {"text": "For all time, Always", "mentioned_profiles": []}}, "username": "kojic.eth", "power_badge": false, "display_name": "Mobius🎩✴️", "active_status": "inactive", "verifications": ["0xd54ecdbaaf57229a1b797bcc0ab1574c9787da28"], "follower_count": 1037, "custody_address": "0xad510a347e9aa4353bcbcaed51a3de2969579aa0", "following_count": 1780, "verified_addresses": {"eth_addresses": ["0xd54ecdbaaf57229a1b797bcc0ab1574c9787da28"], "sol_addresses": ["AH8hStchX3QWXZmit7zM6NYyaSK1bbrA9JzjANMvtkbQ"]}}', '{"{\"url\":\"https://soundcloud.com/mgk/rap-devil?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (91236, '0x25210a39d80a39805ea9ab1983f12018b0f9a504', 10, 1, '2024-05-05 00:50:53+00', 50, 0, '{"fid": 301340, "object": "user", "pfp_url": "https://i.imgur.com/HpDwOyb.png", "profile": {"bio": {"text": "growth @teller.eth \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhosting /kieran /erc20 /usdc /loans /yieldfarming", "mentioned_profiles": []}}, "username": "kdaniels.eth", "power_badge": true, "display_name": "Kieran Daniels 🎩 ", "active_status": "inactive", "verifications": ["0xaac60c858895befaf42378467bc9f3bd69c5efae"], "follower_count": 2600, "custody_address": "0x8b537e5b9bd3ef80aeef5380be98997fd8a3a6d7", "following_count": 3437, "verified_addresses": {"eth_addresses": ["0xaac60c858895befaf42378467bc9f3bd69c5efae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/szqhoydniARMiQKY8\"}"}', NULL), - (57213, '0xb08da69eb1d4bb044426b9c4bd8cf67563db73f2', 0, 1, '2024-05-04 23:11:50+00', 0, 0, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 778, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 885, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uoBRVnFrBLWTcwQo8\"}"}', NULL), - (239252, '0x6f87848df73792d88787917c0b2b790dd6234e04', 0, 1, '2024-05-05 13:56:17+00', 0, 5, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3393, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2122, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/D3FavhSGgv9hv1bj7\"}"}', NULL), - (100133, '0xa3d40bb553ce41bd7e167c459e50ac1c79a35d29', 0, 1, '2024-05-05 01:41:51+00', 0, 1, '{"fid": 501182, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e010cef1-de7c-4453-d183-c7c1e2a94100/rectcrop3", "profile": {"bio": {"text": "Traveler who want to share my daily lives and areas of interest with various people 💓 F4F 🚀", "mentioned_profiles": []}}, "username": "betterman-kim", "power_badge": false, "display_name": "betterman-kim 🎩 🔵 🚀", "active_status": "inactive", "verifications": ["0xf038ff660d990a1db0fd7c80eb6687f6d63bcd8e"], "follower_count": 503, "custody_address": "0xdbfee5b65148dc0b4e9a3b984a66dd6b758d3bd2", "following_count": 627, "verified_addresses": {"eth_addresses": ["0xf038ff660d990a1db0fd7c80eb6687f6d63bcd8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VwsLV\"}"}', NULL), - (704192, '0xc1c20f7a854b2ae387eef39dc89405dec3923d7f', 30, 1, '2024-05-06 18:16:11+00', 0, 4, '{"fid": 13939, "object": "user", "pfp_url": "https://i.imgur.com/wLLJtic.jpg", "profile": {"bio": {"text": "A tech lover Blockchain is my love!", "mentioned_profiles": []}}, "username": "nftgo", "power_badge": false, "display_name": "Rad🎩🔵⛓️🔮", "active_status": "inactive", "verifications": ["0xbabd212f4435562569ada6765e274c099ffdaee8"], "follower_count": 1815, "custody_address": "0x75fea33b05849e46d4f20b1a76c696a070617884", "following_count": 3981, "verified_addresses": {"eth_addresses": ["0xbabd212f4435562569ada6765e274c099ffdaee8"], "sol_addresses": ["7SBZkurfdrY3u6rYVS7SNNaeu6Z8GMDJ6zE3CGCxkAnH"]}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-nord/sets/dnb-study-hour?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (43813, '0xecc0220c64fb70a6bbbf29dfa8965765fe8247be', 0, 1, '2024-05-04 22:30:31+00', 0, 0, '{"fid": 331263, "object": "user", "pfp_url": "https://i.imgur.com/dg2UHVb.jpg", "profile": {"bio": {"text": "music made for getting lost", "mentioned_profiles": []}}, "username": "greenring", "power_badge": false, "display_name": "Green Ring", "active_status": "inactive", "verifications": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "follower_count": 33, "custody_address": "0xf9ae5ec1430d9cb32339a719e9682b0b2411c123", "following_count": 131, "verified_addresses": {"eth_addresses": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/otherwishmusic/movement\"}"}', NULL), - (44217, '0x955dba9df0dc59c0ee37b4a766a9a7179bd77ced', 0, 1, '2024-05-04 22:31:30+00', 0, 2, '{"fid": 196957, "object": "user", "pfp_url": "https://i.imgur.com/ijeeIgH.gif", "profile": {"bio": {"text": "product designer, quit full time job to be early, one-man agency → bento.me/mxd ↑↑ /onchainer ↑↑", "mentioned_profiles": []}}, "username": "maxsl.eth", "power_badge": true, "display_name": "maksim ↑🎩", "active_status": "inactive", "verifications": ["0xbaba775a0400a5e442335ceaa4820edb1ded8f73"], "follower_count": 1594, "custody_address": "0x8e3d893aaf34ed2ea3d6d384b8111cab7f3fbe62", "following_count": 656, "verified_addresses": {"eth_addresses": ["0xbaba775a0400a5e442335ceaa4820edb1ded8f73"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playerdave/come-home?referral=0xbaba775a0400a5e442335ceaa4820edb1ded8f73\"}"}', NULL), - (283126, '0xfa49e93a1badf0244fcd7559a02886a14354de2c', 0, 1, '2024-05-05 18:19:39+00', 0, 0, '{"fid": 323337, "object": "user", "pfp_url": "https://i.imgur.com/0WRv5u5.jpg", "profile": {"bio": {"text": "I love crypto ", "mentioned_profiles": []}}, "username": "abh-dhni", "power_badge": false, "display_name": "Arousha🎩", "active_status": "inactive", "verifications": ["0xe5c68df4cf101705798b75b81295a046110e5262"], "follower_count": 1295, "custody_address": "0x0f6c37ed1a3c3a179c3f63c93424f00f12fecbdb", "following_count": 1514, "verified_addresses": {"eth_addresses": ["0xe5c68df4cf101705798b75b81295a046110e5262"], "sol_addresses": ["FGSiZibsjD6oWfTk3juPnNgNQcJe645QADE9LAVc37g5"]}}', '{"{\"url\":\"https://on.soundcloud.com/JxdrF55Fmze7dhyy8\"}"}', NULL), - (65084, '0x4ebdc7767826bd7fbc1c6d855ca4be96bfb5ea86', 0, 1, '2024-05-04 23:31:36+00', 0, 0, '{"fid": 13756, "object": "user", "pfp_url": "https://i.imgur.com/BcAUsi2.gif", "profile": {"bio": {"text": "I''m old, not obsolete!", "mentioned_profiles": []}}, "username": "amircrypto82", "power_badge": false, "display_name": "amircrypto82 🔵🎩🔮🧀", "active_status": "inactive", "verifications": ["0xb2ffa393f0b4072081eb2738eb8340bf877bae38"], "follower_count": 1148, "custody_address": "0x94236d0f1d9960d9c46a7b49bed8529a59cd7de0", "following_count": 1907, "verified_addresses": {"eth_addresses": ["0xb2ffa393f0b4072081eb2738eb8340bf877bae38"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4SykS8RWkF6eK6xeua7XLP?si=5c060231be104774\"}"}', NULL), - (40469, '0x72aafdada26a813eb5f190cdec2fb1c273ebbb16', 0, 1, '2024-05-04 22:18:02+00', 0, 1, '{"fid": 15351, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b04479fb-2582-4acd-a585-526c0b48d400/original", "profile": {"bio": {"text": "Motion Graphic designer, lover of space, explorer of consciousness and nature. Come join me on this trip.", "mentioned_profiles": []}}, "username": "0ffline", "power_badge": true, "display_name": "0ffline.xo", "active_status": "inactive", "verifications": ["0x59c6104e9b280a4b5d50103d300cdabb8640c3a9"], "follower_count": 516, "custody_address": "0x4bdf6f00cd8d670c5f8d6a977da9fa7baac40541", "following_count": 558, "verified_addresses": {"eth_addresses": ["0x59c6104e9b280a4b5d50103d300cdabb8640c3a9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0IH3D0P8OrQFs6ajcqbm0R?si=sZYTbt1DRS-zgAfQqDz8mQ&context=spotify%3Aalbum%3A3UTp6spxkyTdvsmJDPfb7n\"}"}', NULL), - (100225, '0x91d5365bfacc7bcfcf43f8df6f5aee08b83c9c18', 0, 1, '2024-05-05 01:43:07+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8daJj\"}"}', NULL), - (100134, '0x7eefed1604537f77108eb39ab703bf71d1d26163', 0, 1, '2024-05-05 01:41:44+00', 0, 0, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 271, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/74ogX0YtmNA3Rln65OFQFR?si=AQ9qg9L2TZmya25pONS1GA&context=spotify%3Aalbum%3A2Q4M6omYkowhjNRQmA15zi\"}"}', NULL), - (62684, '0x220b13f671ebc7d625720740e5847875501457b4', 0, 1, '2024-05-04 23:25:52+00', 0, 3, '{"fid": 426622, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSVPrv6F9zX1KSuuefPBw9eVajjHe6RELzf93RbCTbVe9?filename=photo_2024-04-23_12-19-11.jpg", "profile": {"bio": {"text": "워캐스트 / 슈퍼캐스트 화이팅 / 우리 모두 좋은 결과 얻어갔으면 좋겠어요 : )", "mentioned_profiles": []}}, "username": "daenamu", "power_badge": false, "display_name": "유호 🔥/🫂", "active_status": "inactive", "verifications": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "follower_count": 2017, "custody_address": "0x58db626491d5343348259ee3d9b65fc00b3879f7", "following_count": 2180, "verified_addresses": {"eth_addresses": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jonahbaker/something-just-like-this-chainsmokers-coldplay-cover-ft-haley-klinkhammer?si=03bb0f84a86449d28619d793e8fea3a2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (46597, '0x5a5732555a75f5a840d1357e520c66d99addb35c', 0, 1, '2024-05-04 22:42:45+00', 0, 1, '{"fid": 344368, "object": "user", "pfp_url": "https://i.imgur.com/Ws9fFOW.jpg", "profile": {"bio": {"text": "For all time, Always", "mentioned_profiles": []}}, "username": "kojic.eth", "power_badge": false, "display_name": "Mobius🎩✴️", "active_status": "inactive", "verifications": ["0xd54ecdbaaf57229a1b797bcc0ab1574c9787da28"], "follower_count": 1037, "custody_address": "0xad510a347e9aa4353bcbcaed51a3de2969579aa0", "following_count": 1780, "verified_addresses": {"eth_addresses": ["0xd54ecdbaaf57229a1b797bcc0ab1574c9787da28"], "sol_addresses": ["AH8hStchX3QWXZmit7zM6NYyaSK1bbrA9JzjANMvtkbQ"]}}', '{"{\"url\":\"https://soundcloud.com/mgk/rap-devil?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (50714, '0x4777d67f7b91ee921b7e63e7bb0a5e77499d18f9', 0, 1, '2024-05-04 22:55:52+00', 0, 0, '{"fid": 189272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/697e7e59-96bd-45f7-2f0c-092d3195a600/original", "profile": {"bio": {"text": "🐸 Sapo \nonchain music -> danc3.musictribes.xyz\n🎧 + ⚽ + 🧉", "mentioned_profiles": []}}, "username": "elsapo.eth", "power_badge": false, "display_name": "Sapo", "active_status": "inactive", "verifications": ["0x54c3283577c40eaa637d35106b7c5c6b387c5ab0", "0xfdd6af85172a18a02651e63929ff2f46e4714156"], "follower_count": 37, "custody_address": "0xbe43d2f07d7230afa89dc4474c9497342e0e5468", "following_count": 123, "verified_addresses": {"eth_addresses": ["0x54c3283577c40eaa637d35106b7c5c6b387c5ab0", "0xfdd6af85172a18a02651e63929ff2f46e4714156"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/danc3/danc3-mixtape-i?referral=0x54c3283577c40eaa637d35106b7c5c6b387c5ab0&referral_source=link\"}"}', NULL), - (40468, '0x56121f5143bdecbfa1d88554be5928dd2c23069a', 0, 1, '2024-05-04 22:18:01+00', 0, 0, '{"fid": 439718, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\"", "mentioned_profiles": []}}, "username": "ssr", "power_badge": true, "display_name": "SSR🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "follower_count": 537, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 601, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/rebelutionmusic/safe-and-sound\"}"}', NULL), - (40466, '0x2688d5905fb0e367157856a974fe3ca5d85d2621', 0, 1, '2024-05-04 22:18:25+00', 0, 8, '{"fid": 213559, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/494cf404-75fb-4fe3-1824-8b91d79aeb00/original", "profile": {"bio": {"text": "graffiti artist. 🎨", "mentioned_profiles": []}}, "username": "mustang", "power_badge": true, "display_name": "Mustang🔵🎩🍖🌈🤫", "active_status": "inactive", "verifications": ["0x4b8e385ee27545cd5e90ccb8c67a232143559708", "0x4cf6e70a9918ad86899c2c902312eb761a1e7776"], "follower_count": 1811, "custody_address": "0x5c9de57903b63dd2ef8823dd0de436b44c1406c5", "following_count": 959, "verified_addresses": {"eth_addresses": ["0x4b8e385ee27545cd5e90ccb8c67a232143559708", "0x4cf6e70a9918ad86899c2c902312eb761a1e7776"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hardtolink/gorrilla-glue_mix-final?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (72152, '0xd5484338075ca90404df126131a49eda401f897c', 0, 1, '2024-05-04 23:54:28+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 얀 (Yarn) - After by Neo on #SoundCloud https://on.soundcloud.com/37Qbu\"}"}', NULL), - (69807, '0x14e3046bba393c566a2c47072070937a019d0176', 0, 1, '2024-05-04 23:46:42+00', 0, 6, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1108, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 550, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3eiy9\"}"}', NULL), - (672323, '0xe4f7c13353d981bd297226814092566a826ab67c', 0, 1, '2024-05-06 15:52:42+00', 0, 0, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 360, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 548, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-4794204/good-morning-ost?si=f214e6d7f1054cbfa3982245c699249f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (47677, '0x1423193613ff2db77627b0e721e55c8ac4dd14d2', 0, 1, '2024-05-04 22:44:37+00', 0, 3, '{"fid": 344719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cbe1a475-cc97-4751-7143-2e8c8bfebd00/original", "profile": {"bio": {"text": "CEO of own life /warpchat and /spotify | Crypto since 2016 | Are you warpchatter?", "mentioned_profiles": []}}, "username": "bezos", "power_badge": false, "display_name": "Bezos 🎩🔵", "active_status": "inactive", "verifications": ["0x185cdf961d21cb90d9ae75d5018e16b2e8fc25f2"], "follower_count": 1705, "custody_address": "0x8f8918429b59b8cc9ed4c90068841059cd16dca9", "following_count": 910, "verified_addresses": {"eth_addresses": ["0x185cdf961d21cb90d9ae75d5018e16b2e8fc25f2"], "sol_addresses": ["2gcnNg2o1qAuFYsmbiiTe7fEi5SErohrDpnsETzubfkN"]}}', '{"{\"url\":\"https://soundcloud.com/gayesuakyol/develerle-ya-yorum?si=9729eecabd9d4a71b86c474576e3ea3c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (55681, '0x9e5a1e26dd24f7818d0460dc6b4204da66647f5d', 0, 1, '2024-05-04 23:08:49+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 116, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 156, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/1001tracklists/eli-fur-exclusive-mix?in=eliandfur%2Fsets%2Fdj-mixes\"}"}', NULL), - (71980, '0xf4b1727eec949e32d51e9babb7e53517199a8d66', 0, 1, '2024-05-04 23:53:41+00', 0, 3, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 927, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 874, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/L7wfkDkwYyHky58e6\"}"}', NULL), - (54478, '0xddc537ef3107e3c0e36fe51eb0637afe5fcf4027', 0, 1, '2024-05-04 23:07:14+00', 0, 0, '{"fid": 283780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7b6ae7-127e-45c7-cba3-a01774ca8100/rectcrop3", "profile": {"bio": {"text": "Collab manager• NFT•\nWeb3 content writer\nProfessional Community Manager • Project Advisor • Technical Advisor", "mentioned_profiles": []}}, "username": "tomasalpha.eth", "power_badge": false, "display_name": "ᴛᴏᴍᴀs ᴀʟᴘʜᴀ", "active_status": "inactive", "verifications": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "follower_count": 4687, "custody_address": "0x234d64898fbc7a8844c986f18fd002ad1becc5bd", "following_count": 142, "verified_addresses": {"eth_addresses": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Daryakenar - hiphopologist × chvrsi (maometto remix) by radeen🌵 on #SoundCloud https://on.soundcloud.com/dSBjF\"}"}', NULL), - (71524, '0x02168b86ec79f660ff49bd0effa95ea084bf6bcc', 0, 1, '2024-05-04 23:51:16+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 얀 그래서 그대는 by lucoms on #SoundCloud https://on.soundcloud.com/3sD7p\"}"}', NULL), - (58201, '0xd1e12dfb73cb4bac3ee9806e097af1af8cc38a43', 0, 1, '2024-05-04 23:13:19+00', 20, 4, '{"fid": 426622, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSVPrv6F9zX1KSuuefPBw9eVajjHe6RELzf93RbCTbVe9?filename=photo_2024-04-23_12-19-11.jpg", "profile": {"bio": {"text": "워캐스트 / 슈퍼캐스트 화이팅 / 우리 모두 좋은 결과 얻어갔으면 좋겠어요 : )", "mentioned_profiles": []}}, "username": "daenamu", "power_badge": false, "display_name": "유호 🔥/🫂", "active_status": "inactive", "verifications": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "follower_count": 2017, "custody_address": "0x58db626491d5343348259ee3d9b65fc00b3879f7", "following_count": 2180, "verified_addresses": {"eth_addresses": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dzekomusic/the-chainsmokers-coldplay-something-just-like-this-dzeko-remix?si=9d877b2c199b422889a02aa2051d92ff&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (137331, '0x408edc087b341361ccb1b716e87d212491a106d5', 0, 1, '2024-05-05 06:32:59+00', 0, 0, '{"fid": 272919, "object": "user", "pfp_url": "https://i.imgur.com/4mmaSLW.gif", "profile": {"bio": {"text": "Kinetic, Synthetic & New Media Art \n\nhttps://linktr.ee/betx9", "mentioned_profiles": []}}, "username": "p3tra", "power_badge": false, "display_name": "Petra🎩🐲🌱", "active_status": "inactive", "verifications": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "follower_count": 453, "custody_address": "0x1618a6bfa84714d845d9182a02292c99533d00a4", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vCQBg\"}"}', NULL), - (76602, '0xa0847eb75b7b1798b525a08f01ce94762a4d2417', 0, 1, '2024-05-05 00:07:58+00', 0, 0, '{"fid": 486173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1921e92c-b93e-496c-aeb2-e265d0dace00/rectcrop3", "profile": {"bio": {"text": "IQ 50 Trader / 고양이 전문점 / degen maxi", "mentioned_profiles": []}}, "username": "ginoman2", "power_badge": false, "display_name": "Norman", "active_status": "inactive", "verifications": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "follower_count": 1903, "custody_address": "0x44238f7a19231f48f72c41d451b18a7e815c5dba", "following_count": 1607, "verified_addresses": {"eth_addresses": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NSNgdz417gEgRw8v9\"}"}', NULL), - (46626, '0x8614dd4a266fc1709f0688339fa9cff24caf05b5', 0, 1, '2024-05-04 22:42:18+00', 0, 1, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bobbyraps/believe-the-lie-video-in-description?si=191ad0e84a4f47a69b54be3d19f4c314&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (46602, '0x5fe8c73a14b1f677d040c4718d282a37dfddf95b', 0, 1, '2024-05-04 22:42:03+00', 0, 1, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bobbyraps/bobby-raps-show-you-i-caresunlight?in=bobbyraps/sets/not-scared-enough&si=fbf351cfb642486cb13dbc84c03d464f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (55108, '0xbdf970a00b48afb31faebda9547b9d231acbef02', 0, 1, '2024-05-04 23:08:16+00', 0, 0, '{"fid": 283780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7b6ae7-127e-45c7-cba3-a01774ca8100/rectcrop3", "profile": {"bio": {"text": "Collab manager• NFT•\nWeb3 content writer\nProfessional Community Manager • Project Advisor • Technical Advisor", "mentioned_profiles": []}}, "username": "tomasalpha.eth", "power_badge": false, "display_name": "ᴛᴏᴍᴀs ᴀʟᴘʜᴀ", "active_status": "inactive", "verifications": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "follower_count": 4687, "custody_address": "0x234d64898fbc7a8844c986f18fd002ad1becc5bd", "following_count": 142, "verified_addresses": {"eth_addresses": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Aragh Sagi [Prod. HosseinAmin, Parham Potki] by Meyraad on #SoundCloud https://on.soundcloud.com/cQc9e\"}"}', NULL), - (44684, '0xd1248fbf7d8180e56a99afea4f1f97c3aa25bef5', 0, 1, '2024-05-04 22:34:34+00', 0, 3, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン。\n仮想通貨と競馬が楽しみなおさーん。\n配っていただいた方々、本当にありがとうございます🙇‍♂️\n面白画像コレクションを日々投稿します😆", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 656, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 926, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/my-parents-house?referral_source=link\"}"}', NULL), - (91950, '0xa9d8a91b208e3a9452e151c9f32d691ff7762c72', 0, 1, '2024-05-05 00:54:53+00', 0, 0, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1061, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1809, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0UaaFmF3xUwMjnuAHBq7qL?si=a212544194834400\"}"}', NULL), - (7177, '0x43ccc372737c76c2952542465e1681961edf505a', 10, 1, '2024-05-04 16:18:20+00', 0, 6, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman @ farcon", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 457, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 102, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-us/sets/jazz\"}"}', NULL), - (560932, '0x9356c808153c569b2783b700ca952e230aba762a', 0, 1, '2024-05-06 11:00:30+00', 0, 8, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1779, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 908, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-471596025/gavy-nj?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (57211, '0x6a9eb71095eb10b857c8464b11b54606f48ff689', 0, 1, '2024-05-04 23:12:37+00', 0, 0, '{"fid": 426622, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSVPrv6F9zX1KSuuefPBw9eVajjHe6RELzf93RbCTbVe9?filename=photo_2024-04-23_12-19-11.jpg", "profile": {"bio": {"text": "워캐스트 / 슈퍼캐스트 화이팅 / 우리 모두 좋은 결과 얻어갔으면 좋겠어요 : )", "mentioned_profiles": []}}, "username": "daenamu", "power_badge": false, "display_name": "유호 🔥/🫂", "active_status": "inactive", "verifications": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "follower_count": 2017, "custody_address": "0x58db626491d5343348259ee3d9b65fc00b3879f7", "following_count": 2179, "verified_addresses": {"eth_addresses": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-956334953/coldplay-viva-la-vida?si=4b50d84b689e47689913ade92d419ab4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (64790, '0xd9d70fdbcbf60b7ec33b62d6f501bdd56f491a78', 0, 1, '2024-05-04 23:29:57+00', 0, 6, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1108, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 550, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HPJSv\"}"}', NULL), - (45003, '0xecb1d744444f9d99b122e63e88ef8f1fc7e75c41', 0, 1, '2024-05-04 22:36:38+00', 0, 3, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン。\n仮想通貨と競馬が楽しみなおさーん。\n配っていただいた方々、本当にありがとうございます🙇‍♂️\n面白画像コレクションを日々投稿します😆", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 656, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 930, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":420326,\"hash\":\"0xd1248fbf7d8180e56a99afea4f1f97c3aa25bef5\"}}","{\"url\":\"https://www.sound.xyz/\"}"}', NULL), - (1159216, '0xdc5bb02666960086d5969692ffa87c4ab47f89cc', 0, 1, '2024-05-08 10:48:51+00', 0, 0, '{"fid": 345541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a8cfdc-97da-46fb-5971-72104c24e300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨\nViva Tax🔥🔥\n\n裏金(🎩)に繋がるムーブを各チャンネルで行っています。全ては国民の皆様の為!\n\n/ogiri /gurumenavijp /littlehappyjp \n\n\n ", "mentioned_profiles": []}}, "username": "kasoutarou", "power_badge": false, "display_name": "Kasoutaro_👻 🎩⌐◨-◨", "active_status": "inactive", "verifications": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "follower_count": 975, "custody_address": "0xf46e4c92d3c8b02fbaf681a529b682432d2e1b74", "following_count": 1299, "verified_addresses": {"eth_addresses": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1AzMYJm6qTAullM3UKuPY9?si=Wu9iAHdYTg60aZwY0OPZVQ\"}"}', NULL), - (273935, '0x32a15f413c25aa87c4056cba1fc95d31c7c368f6', 0, 1, '2024-05-05 17:13:28+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 릴러말즈(Leellamarz) - Trip by ㅤ on #SoundCloud https://on.soundcloud.com/eXuq9\"}"}', NULL), - (47133, '0x1bef9984dbdd04015ebac94af03125d0c3cbbbda', 0, 1, '2024-05-04 22:43:39+00', 0, 1, '{"fid": 501199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdd303da-9225-4d77-7151-47d9df7dc400/rectcrop3", "profile": {"bio": {"text": "Music | Art | Author 💯🎼\nExhibited X Performed @ NY, LA, TX, Vegas, Miami, Paris +\n\nwww.mrdariusmusic.com\nwww.sound.xyz/mrdarius", "mentioned_profiles": []}}, "username": "mrdariusone", "power_badge": false, "display_name": "MR. DARIUS 🎩", "active_status": "inactive", "verifications": ["0x6904bfb4522e10038fc675552176b866027be939"], "follower_count": 38, "custody_address": "0x60a31d7c961bf0989ff8b4f3c799d57a236667b3", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6904bfb4522e10038fc675552176b866027be939"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/3699f0ef-f83f-4385-b56b-7f3d4451a853?invite=BCLDNW\"}","{\"url\":\"https://www.sound.xyz/mrdarius/dr-bruce-x-mr-darius-wen-lambo-remix\"}"}', NULL), - (97201, '0x4eeca331412051943131aebf0d2c22865ead8376', 0, 1, '2024-05-05 01:20:09+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 947, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 877, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mSBxcyQb5ebGVHsD7\"}"}', NULL), - (91834, '0xa1a8d0f3e4ea7a79436183f5b725f9bfd5dc0bfb', 0, 1, '2024-05-05 00:54:36+00', 0, 1, '{"fid": 423518, "object": "user", "pfp_url": "https://i.imgur.com/iplpRaa.jpg", "profile": {"bio": {"text": "모두 건강하세요,\n그리고 부자됩시다!\n화이팅😀", "mentioned_profiles": []}}, "username": "love00", "power_badge": false, "display_name": "Ken_🇰🇷🎩💬 ", "active_status": "inactive", "verifications": ["0xb0e8163cda1e1023164ded678dfd434b9257b8b9"], "follower_count": 3336, "custody_address": "0xcabbcf082c4faf413ded1ad10fd9ab6856de2016", "following_count": 2965, "verified_addresses": {"eth_addresses": ["0xb0e8163cda1e1023164ded678dfd434b9257b8b9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t6Pku\"}"}', NULL), - (64791, '0x6acc7ec250e6179bfac456340c6f17186d83fdd5', 0, 1, '2024-05-04 23:29:32+00', 0, 0, '{"fid": 449096, "object": "user", "pfp_url": "https://i.imgur.com/uJUaygl.jpg", "profile": {"bio": {"text": "I am a nurse.", "mentioned_profiles": []}}, "username": "safail", "power_badge": false, "display_name": "Safail 🔵 🎩", "active_status": "inactive", "verifications": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "follower_count": 1163, "custody_address": "0x9d7ae0c0c43aea23ca1563b49fdddc611b5bdd7d", "following_count": 1944, "verified_addresses": {"eth_addresses": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RBJBd\"}"}', NULL), - (68592, '0xc0da1570ac752fe20f346c6ae3e1df669d25d78f', 0, 1, '2024-05-04 23:42:22+00', 0, 0, '{"fid": 254790, "object": "user", "pfp_url": "https://i.imgur.com/CUadhuc.jpg", "profile": {"bio": {"text": "Together we are more strong !", "mentioned_profiles": []}}, "username": "0xmonkey420", "power_badge": false, "display_name": "0xmonkey", "active_status": "inactive", "verifications": ["0x905f046f86cb55703d0436a9c6f00da91d20982f"], "follower_count": 532, "custody_address": "0x47da0f9933aa8b85d85c5458702a32c140354c63", "following_count": 875, "verified_addresses": {"eth_addresses": ["0x905f046f86cb55703d0436a9c6f00da91d20982f"], "sol_addresses": ["55PrxSggwFRPhah55UH2paK93i8vL8PMpQbSYirGhA9d"]}}', '{"{\"url\":\"https://on.soundcloud.com/dyL8P\"}"}', NULL), - (72161, '0x8d9e9d0eac1a122b0917105b14d5c66910174c3e', 0, 1, '2024-05-04 23:54:32+00', 0, 2, '{"fid": 292154, "object": "user", "pfp_url": "https://i.imgur.com/rtWcOLQ.jpg", "profile": {"bio": {"text": "Crypto info\nFood Travel \nhttps://zora.co/@dannyping", "mentioned_profiles": []}}, "username": "dannykim", "power_badge": false, "display_name": "Danny Ping", "active_status": "inactive", "verifications": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "follower_count": 2120, "custody_address": "0x37e0c88ecc4897422b55ab72ab2d9c9e624b50e4", "following_count": 2239, "verified_addresses": {"eth_addresses": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/phuCe\"}"}', NULL), - (56247, '0x9718f28f2eeae7feacfe8c70aae7924f7d88ac77', 0, 1, '2024-05-04 23:09:53+00', 0, 0, '{"fid": 367251, "object": "user", "pfp_url": "https://i.imgur.com/yEQe9fb.jpg", "profile": {"bio": {"text": "Big reward follow me", "mentioned_profiles": []}}, "username": "venusss", "power_badge": false, "display_name": "Venus On Warpcast 🎩🔁🔄", "active_status": "inactive", "verifications": ["0xbd75a7e6d75113004873108c96d9a585c099ae80"], "follower_count": 75, "custody_address": "0xbd75a7e6d75113004873108c96d9a585c099ae80", "following_count": 231, "verified_addresses": {"eth_addresses": ["0xbd75a7e6d75113004873108c96d9a585c099ae80"], "sol_addresses": ["H5abqgAR8yCkHLhMhBJYE7KrdBtQPDEDr3wGTovbBMjE"]}}', '{"{\"url\":\"https://on.soundcloud.com/mv6pC9ta9ViBe9ww6\"}"}', NULL), - (62100, '0x94e6f9211ab7547150a0afafb31bc9729b6d1df3', 0, 1, '2024-05-04 23:23:34+00', 0, 0, '{"fid": 633, "object": "user", "pfp_url": "https://i.imgur.com/f3MHWW0.jpg", "profile": {"bio": {"text": "Music Nerd nerding with @clt on musicnerd.xyz. Productizing patronage.", "mentioned_profiles": []}}, "username": "cxy", "power_badge": true, "display_name": "C.Y. Lee | cxy.eth", "active_status": "inactive", "verifications": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "follower_count": 420, "custody_address": "0x42336ad90fb7a447e013d9f495cb96d7edc1a003", "following_count": 338, "verified_addresses": {"eth_addresses": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "sol_addresses": ["2fj2ne42grvCHsDUTuL4HVFT9wrAKZ3F9VZ2ktKMyDHP"]}}', '{"{\"url\":\"https://on.soundcloud.com/kPXs4ZC4Hfwi1UTZ8\"}"}', NULL), - (283118, '0x2ed265a3089f9c52f964bdb4c190fd47a134dfb1', 0, 1, '2024-05-05 18:19:59+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ive_official/ive-kitsch?si=dd69d44498c34fc29a0b194c5e50a879&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (70405, '0x3c83c6c7ee1872453e82f6a7db30ed628e65d170', 0, 1, '2024-05-04 23:47:34+00', 0, 0, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12🎩 ✪ ", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5049, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PBHjcR9HQkkio75j7\"}"}', NULL), - (100535, '0xc642357e485363b6a1fe3b3e775ed3ed5f99da3c', 0, 1, '2024-05-05 01:44:08+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Q8fuj\"}"}', NULL), - (93880, '0xbccd01eb2a60b6683edae350f21a5a901f2e4600', 10, 1, '2024-05-05 01:08:34+00', 3, 2, '{"fid": 326765, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8cd887ab-cd2c-4b0e-3807-3f3f98ec0000/original", "profile": {"bio": {"text": "Musician 🎶\nHere for the gm’s and the frenships. \nHosting /songwriting", "mentioned_profiles": []}}, "username": "sadeghian", "power_badge": true, "display_name": "May🎩", "active_status": "inactive", "verifications": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "follower_count": 231, "custody_address": "0x8b7d3a520bd6ee6c3fa8ca07cd938ae696b063e6", "following_count": 428, "verified_addresses": {"eth_addresses": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fbj9bYkNwayREsgr6\"}"}', NULL), - (64187, '0x3af392bb721a869769d6e2d1a0bbaaf06b13ecad', 0, 1, '2024-05-04 23:29:27+00', 0, 8, '{"fid": 426622, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSVPrv6F9zX1KSuuefPBw9eVajjHe6RELzf93RbCTbVe9?filename=photo_2024-04-23_12-19-11.jpg", "profile": {"bio": {"text": "워캐스트 / 슈퍼캐스트 화이팅 / 우리 모두 좋은 결과 얻어갔으면 좋겠어요 : )", "mentioned_profiles": []}}, "username": "daenamu", "power_badge": false, "display_name": "유호 🔥/🫂", "active_status": "inactive", "verifications": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "follower_count": 2017, "custody_address": "0x58db626491d5343348259ee3d9b65fc00b3879f7", "following_count": 2180, "verified_addresses": {"eth_addresses": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-956334953/coldplay-the-scientist?si=61be9097c5054be99a3431b016338a07&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (80619, '0x87c254d383a16e0eb155f4952a9a0ff31dc4dd81', 0, 1, '2024-05-05 00:21:57+00', 0, 0, '{"fid": 486173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1921e92c-b93e-496c-aeb2-e265d0dace00/rectcrop3", "profile": {"bio": {"text": "IQ 50 Trader / 고양이 전문점 / degen maxi", "mentioned_profiles": []}}, "username": "ginoman2", "power_badge": false, "display_name": "Norman", "active_status": "inactive", "verifications": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "follower_count": 1903, "custody_address": "0x44238f7a19231f48f72c41d451b18a7e815c5dba", "following_count": 1607, "verified_addresses": {"eth_addresses": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Mxw3n2XtaJuWXYDi6\"}"}', NULL), - (1159504, '0xe27202d22ef2dc017e3e890403e55c42263be480', 0, 1, '2024-05-08 11:25:09+00', 0, 5, '{"fid": 484567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/abcde6f7-bacc-4e29-dba4-b67a7e1d9800/rectcrop3", "profile": {"bio": {"text": "가난은 부끄러울 일이 아니지만, 가난을 수치스럽게 생각하는 것은 부끄러운 일이다.\n\nHaving been poor is no shame, but being ashamed of it, is.", "mentioned_profiles": []}}, "username": "min3691", "power_badge": false, "display_name": "우성🎩🔥", "active_status": "inactive", "verifications": ["0xee6c53033af7d07c828df88d58ffc04ec924b780"], "follower_count": 1316, "custody_address": "0x86cba2c9d003bcedf24a7e3935e26e65d3e97f79", "following_count": 913, "verified_addresses": {"eth_addresses": ["0xee6c53033af7d07c828df88d58ffc04ec924b780"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6G23F\"}"}', 'sonata'), - (119454, '0xbc7b4d2c4c3b8a732bcc15670ecaacd540812cc7', 0, 1, '2024-05-05 04:54:10+00', 0, 1, '{"fid": 236317, "object": "user", "pfp_url": "https://i.imgur.com/KbFe4TW.jpg", "profile": {"bio": {"text": "Web3 Restless Hoarder\ninsomnia024.eth", "mentioned_profiles": []}}, "username": "charmander", "power_badge": false, "display_name": "Insomnia 🎩", "active_status": "inactive", "verifications": ["0xaa8c41d4b0c66709cf6f1487623e14e347545dbe"], "follower_count": 152, "custody_address": "0xd14dc4593a790d011e0bf33e023bf48832ae3ff4", "following_count": 585, "verified_addresses": {"eth_addresses": ["0xaa8c41d4b0c66709cf6f1487623e14e347545dbe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3iHez\"}"}', NULL), - (70413, '0xba10c8e00b3fe417e7e70bedd486ad7538bbc306', 0, 1, '2024-05-04 23:47:20+00', 0, 1, '{"fid": 399724, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmfJMhpBgYsiAcefjywhwvJ945JkPEQqtENDzGu4CcemWf?filename=1.png", "profile": {"bio": {"text": "잠잘 때 빼곤 항상 상주하고 있어요.\n들러주셔서 감사합니다!", "mentioned_profiles": []}}, "username": "ressentiment", "power_badge": false, "display_name": "ressentiment 🎩🎩🎩", "active_status": "inactive", "verifications": ["0xa8d41cbf189511e7d274b6fe5bbc8c978fb2c439"], "follower_count": 2274, "custody_address": "0xab68c564e748c847e5bc30f10aaa9931aa6556fa", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0xa8d41cbf189511e7d274b6fe5bbc8c978fb2c439"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aikupabbo/younha-umbrella\"}"}', NULL), - (283115, '0x81c2812d393ac54f9daee0cc3f17b40dee0a9c6b', 0, 1, '2024-05-05 18:19:20+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/anmol-rajoriya/ive-heya-1?si=0605688a986e4d3fa23c7cefce51057b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (100132, '0x3286046ae3437642dcf42f9abc32f11095f99d89', 0, 1, '2024-05-05 01:41:56+00', 100, 0, '{"fid": 404408, "object": "user", "pfp_url": "https://i.imgur.com/tJW0QTg.jpg", "profile": {"bio": {"text": "A Green Sheep living in Korea🐏 ,\nI mainly post about daily life and crypto.\nAlso an embedded and web full-stack developer, merging tech with daily life😊", "mentioned_profiles": []}}, "username": "greensheep", "power_badge": false, "display_name": "GreenSheep🐏🎩", "active_status": "inactive", "verifications": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "follower_count": 2099, "custody_address": "0x063a87a2b02fd6d99c6bd494d6d65a6503881570", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xXQSExuQ4PjTEKAWA\"}"}', NULL), - (38367, '0x5892382f92a2a0a8aeb0fa7e433479e1336deb40', 10, 1, '2024-05-04 21:59:38+00', 0, 1, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmawav/started\"}"}', NULL), - (1159752, '0x663efe31f83803aeae0cc2818c792ed5b4c870dc', 0, 1, '2024-05-08 11:31:20+00', 0, 8, '{"fid": 500749, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94e5c92c-162e-4ec0-9b80-d9f2e54f7400/rectcrop3", "profile": {"bio": {"text": "The blockchain researcher embarks on a journey to find happiness", "mentioned_profiles": []}}, "username": "kasion", "power_badge": false, "display_name": "Kasion🎩🍖🔵", "active_status": "inactive", "verifications": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "follower_count": 1779, "custody_address": "0xa19a05609a7a1be8d950cdd95f0575ad614d7f2e", "following_count": 1582, "verified_addresses": {"eth_addresses": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Luudw6GaXyNLbNGY6\"}"}', 'sonata'), - (88480, '0x053bc4bfe53ce5d3ce3a16b4e6a6df518cd0b2ea', 0, 1, '2024-05-05 00:41:21+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ToSrL\"}"}', NULL), - (83663, '0x332b793cb8c23a093754240c6083cd726eebdb07', 0, 1, '2024-05-05 00:28:35+00', 0, 7, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lvqtz\"}"}', NULL), - (38368, '0x501cce2f6ab91927ae0e0d8ce5375d20c832d1a7', 10, 1, '2024-05-04 21:59:54+00', 0, 2, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmawav/moments?referral_source=link\"}"}', NULL), - (83110, '0xae062faf47565bd429e5cae0ba97352c665c0081', 0, 1, '2024-05-05 00:27:42+00', 0, 3, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 927, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 874, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6e2b3de6-4a64-4c1b-9c34-74088422d600/original\"}","{\"url\":\"https://on.soundcloud.com/yjjwjGf3QMxZQhur9\"}"}', NULL), - (71531, '0xe3b8d9611f5d797457442e7e8fee6f1f3bb43ded', 0, 1, '2024-05-04 23:51:44+00', 0, 0, '{"fid": 423039, "object": "user", "pfp_url": "https://i.imgur.com/vJ1Tpz7.jpg", "profile": {"bio": {"text": "Crypto beginner | Crossfiter", "mentioned_profiles": []}}, "username": "zzangu", "power_badge": false, "display_name": "zzangu", "active_status": "inactive", "verifications": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "follower_count": 1771, "custody_address": "0xe62def6bb2c4486aba21fdcaf64c88d734fa4646", "following_count": 1645, "verified_addresses": {"eth_addresses": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/na-taly-1/sets/walter-wanderley-rain-forest?si=9536e6228cce411c9bc891c3799613dd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (83660, '0xbfdbc4c1a29afe2f35284b9d8319bc94d97f6da2', 0, 1, '2024-05-05 00:28:27+00', 0, 0, '{"fid": 13243, "object": "user", "pfp_url": "https://i.imgur.com/HLahTgP.gif", "profile": {"bio": {"text": "Tech SOTA maxi!\n\nOnly playing long-term games with long-term people!", "mentioned_profiles": []}}, "username": "amiralek", "power_badge": false, "display_name": "Amiralek 🎩", "active_status": "inactive", "verifications": ["0x645f38c7110c83bd3aff6caef471a90e245a7b85"], "follower_count": 657, "custody_address": "0xb0aab1f6b6f98c95df0eaeb851e1bf62996e2193", "following_count": 605, "verified_addresses": {"eth_addresses": ["0x645f38c7110c83bd3aff6caef471a90e245a7b85"], "sol_addresses": ["6gbdi83T9RpGR29JvhTy237aNMKWL2XH6LguUAdXerQv"]}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/lose-yourself?si=731d24613f9247718181c5cd43be27b6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283129, '0xc96cd25010761046cd6ad27f52d32ab6a2ea3f99', 0, 1, '2024-05-05 18:19:52+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ive_official/ive-love-dive?si=aac90cf2972e4d158d1648b1f471f027&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (51230, '0xcf469c911bf01bde961b360a1b7f9aff1b48cd0f', 0, 1, '2024-05-04 22:56:49+00', 0, 1, '{"fid": 189272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/697e7e59-96bd-45f7-2f0c-092d3195a600/original", "profile": {"bio": {"text": "🐸 Sapo \nonchain music -> danc3.musictribes.xyz\n🎧 + ⚽ + 🧉", "mentioned_profiles": []}}, "username": "elsapo.eth", "power_badge": false, "display_name": "Sapo", "active_status": "inactive", "verifications": ["0x54c3283577c40eaa637d35106b7c5c6b387c5ab0", "0xfdd6af85172a18a02651e63929ff2f46e4714156"], "follower_count": 37, "custody_address": "0xbe43d2f07d7230afa89dc4474c9497342e0e5468", "following_count": 123, "verified_addresses": {"eth_addresses": ["0x54c3283577c40eaa637d35106b7c5c6b387c5ab0", "0xfdd6af85172a18a02651e63929ff2f46e4714156"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/danc3/danc3-mixtape-i?referral=0x54c3283577c40eaa637d35106b7c5c6b387c5ab0&referral_source=link\"}"}', NULL), - (45843, '0x56c237a9fd057805d20e33a47e8f06af191572e4', 0, 1, '2024-05-04 22:40:24+00', 0, 1, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 34, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki\"}"}', NULL), - (70584, '0x69aa777c2845c9de8a703098cb914a40e4b32c9e', 0, 1, '2024-05-04 23:48:48+00', 0, 0, '{"fid": 423039, "object": "user", "pfp_url": "https://i.imgur.com/vJ1Tpz7.jpg", "profile": {"bio": {"text": "Crypto beginner | Crossfiter", "mentioned_profiles": []}}, "username": "zzangu", "power_badge": false, "display_name": "zzangu", "active_status": "inactive", "verifications": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "follower_count": 1770, "custody_address": "0xe62def6bb2c4486aba21fdcaf64c88d734fa4646", "following_count": 1645, "verified_addresses": {"eth_addresses": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eyriej/daisies-and-roses-again-demo?si=7e6485f8ee214286a1b462d3a08b2bdb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (65571, '0xe53ac7dd1c97ebbf845156cf73616d4ed2a6547a', 0, 1, '2024-05-04 23:34:21+00', 0, 1, '{"fid": 415001, "object": "user", "pfp_url": "https://i.imgur.com/azzqxH2.jpg", "profile": {"bio": {"text": "I love friendly interactions. \nSo let''s get in touch with you، my dears.", "mentioned_profiles": []}}, "username": "parviz8998", "power_badge": false, "display_name": "Parviz🎩🔵🔮", "active_status": "inactive", "verifications": ["0x2d4a3baeaff63ba6c620c29fd779f4968bf93806"], "follower_count": 1396, "custody_address": "0xb9ab77df1eed727df7a87ce9e67d0452370d415c", "following_count": 1403, "verified_addresses": {"eth_addresses": ["0x2d4a3baeaff63ba6c620c29fd779f4968bf93806"], "sol_addresses": ["JBKvQMK5HUkmHxbQAD6SPCjRCgacBLWx9yUmEgyK1M9u"]}}', '{"{\"url\":\"https://on.soundcloud.com/mA9Zxps1zGxUEWrR6\"}"}', NULL), - (81667, '0x8ddb810a4fbe201eaf77dfe4d58582c753ded571', 0, 1, '2024-05-05 00:23:53+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oedpZ\"}"}', NULL), - (100541, '0x2992bf0ff88b36642873b66fabb17b10bfcb8ebd', 0, 1, '2024-05-05 01:43:48+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/z3Ncr\"}"}', NULL), - (283110, '0x244a235b9a4e613fed9567ebc94ca83764df1fcb', 0, 1, '2024-05-05 18:20:07+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rvbivn/ive-baddie-rvbivn-remix?si=ccd0f11562af4f49a4acedc3abbadee8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (38410, '0xbaf06df143dda801ee86dcd7612135aaf96fb7f5', 0, 1, '2024-05-04 22:00:25+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/oshi/childhood?referral_source=link\"}"}', NULL), - (77545, '0x61d684221cea044169f71ceb04969e52fe6fd2c3', 0, 1, '2024-05-05 00:13:17+00', 0, 1, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2866, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3283, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Uc7nFqiMibxwo3fD7\"}"}', NULL), - (1159204, '0xc188c0cefce779a1e36ca6fd48ad7fb403be400a', 0, 1, '2024-05-08 11:03:34+00', 0, 0, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 192, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/46Y9vXsmtnYZdEwny4o1Dd?si=Q6Hj7APURLORj3DiaDksCQ\"}"}', NULL), - (421670, '0x6b95688d5c1f21d47a9257d4f1acfb7705343648', 0, 1, '2024-05-06 05:58:34+00', 0, 3, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2380, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1611, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hJSvybsRPyn8fuaG6\"}"}', 'sonata'), - (408211, '0x604262e6ed79a708e97aa602153015d491d24205', 0, 1, '2024-05-06 05:16:07+00', 0, 5, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xSquP\"}"}', 'sonata'), - (79780, '0x1881e434b78b7e9c7ba05ad7165908ede7b73112', 0, 1, '2024-05-05 00:19:43+00', 0, 0, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1401, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1723, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WwdVzw6X1SVhhdYQ6\"}"}', NULL), - (137478, '0xa4ac929792db335436cc8c9fcda9756a48b47dca', 0, 1, '2024-05-05 06:35:36+00', 0, 7, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BE2ry\"}"}', NULL), - (113318, '0xa6334f2ba980ec0310c1c3dd8de2514d2326384b', 0, 1, '2024-05-05 04:12:05+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼.. \nI love musics!!! ", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 620, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yubin1113/nijiro-sora\"}"}', NULL), - (66008, '0xbcbccae3964004246dca36a2f6544e5137ff6cc6', 0, 1, '2024-05-04 23:35:30+00', 0, 2, '{"fid": 415001, "object": "user", "pfp_url": "https://i.imgur.com/azzqxH2.jpg", "profile": {"bio": {"text": "I love friendly interactions. \nSo let''s get in touch with you، my dears.", "mentioned_profiles": []}}, "username": "parviz8998", "power_badge": false, "display_name": "Parviz🎩🔵🔮", "active_status": "inactive", "verifications": ["0x2d4a3baeaff63ba6c620c29fd779f4968bf93806"], "follower_count": 1396, "custody_address": "0xb9ab77df1eed727df7a87ce9e67d0452370d415c", "following_count": 1403, "verified_addresses": {"eth_addresses": ["0x2d4a3baeaff63ba6c620c29fd779f4968bf93806"], "sol_addresses": ["JBKvQMK5HUkmHxbQAD6SPCjRCgacBLWx9yUmEgyK1M9u"]}}', '{"{\"url\":\"https://on.soundcloud.com/DYnhW9DCmeUFRWok6\"}"}', NULL), - (66945, '0x17784d1742a372175798a6ad2a74a36f594f10d4', 0, 1, '2024-05-04 23:38:52+00', 0, 1, '{"fid": 505955, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75a0ccce-6a11-4275-f299-4a83790e5400/rectcrop3", "profile": {"bio": {"text": "오늘도 찾아주셔서 감사합니다 (꾸벅)", "mentioned_profiles": []}}, "username": "ginnie", "power_badge": false, "display_name": "진희", "active_status": "inactive", "verifications": ["0x9119fc1b9b2fc556eab7ec9b8e7032f1556bc7cf"], "follower_count": 582, "custody_address": "0x93566ce1df2f6173233ad38ca3327d3b7e9d3b80", "following_count": 423, "verified_addresses": {"eth_addresses": ["0x9119fc1b9b2fc556eab7ec9b8e7032f1556bc7cf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gagan-gupta-6/alan-walker-vs-coldplay-hymn-for-the-weekend-remix?si=9abc06d8e1e448dd8cf193ad13a09e88&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (66944, '0x6e6999ea743b91dad1c092d1c723e8dd10bdbad5', 0, 1, '2024-05-04 23:38:27+00', 0, 1, '{"fid": 390928, "object": "user", "pfp_url": "https://i.imgur.com/h937FBC.png", "profile": {"bio": {"text": "Trailblazing Metaverse country star blending classic twang with digital flair.", "mentioned_profiles": []}}, "username": "tokentwangtucker", "power_badge": false, "display_name": "Token Twang Tucker", "active_status": "inactive", "verifications": ["0x5f11276c6afc5ac551585e3d1483601fb35aa72f"], "follower_count": 7, "custody_address": "0xf6ea97684767c35a12b0cf41101d5210338639f9", "following_count": 9, "verified_addresses": {"eth_addresses": ["0x5f11276c6afc5ac551585e3d1483601fb35aa72f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/token-twang-tucker/rugged-roads-of-ticker\"}"}', NULL), - (65858, '0xd4650e0b49d03f320d3df8ca03ecab6e14d1dd48', 0, 1, '2024-05-04 23:34:50+00', 0, 2, '{"fid": 415001, "object": "user", "pfp_url": "https://i.imgur.com/azzqxH2.jpg", "profile": {"bio": {"text": "I love friendly interactions. \nSo let''s get in touch with you، my dears.", "mentioned_profiles": []}}, "username": "parviz8998", "power_badge": false, "display_name": "Parviz🎩🔵🔮", "active_status": "inactive", "verifications": ["0x2d4a3baeaff63ba6c620c29fd779f4968bf93806"], "follower_count": 1396, "custody_address": "0xb9ab77df1eed727df7a87ce9e67d0452370d415c", "following_count": 1403, "verified_addresses": {"eth_addresses": ["0x2d4a3baeaff63ba6c620c29fd779f4968bf93806"], "sol_addresses": ["JBKvQMK5HUkmHxbQAD6SPCjRCgacBLWx9yUmEgyK1M9u"]}}', '{"{\"url\":\"https://on.soundcloud.com/mA9Zxps1zGxUEWrR6\"}"}', NULL), - (70586, '0xbae32ad93fc6dbbab5ac7a3d7dc85918e1a42fbf', 0, 1, '2024-05-04 23:49:06+00', 0, 1, '{"fid": 292154, "object": "user", "pfp_url": "https://i.imgur.com/rtWcOLQ.jpg", "profile": {"bio": {"text": "Crypto info\nFood Travel \nhttps://zora.co/@dannyping", "mentioned_profiles": []}}, "username": "dannykim", "power_badge": false, "display_name": "Danny Ping", "active_status": "inactive", "verifications": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "follower_count": 2120, "custody_address": "0x37e0c88ecc4897422b55ab72ab2d9c9e624b50e4", "following_count": 2239, "verified_addresses": {"eth_addresses": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Welcome To The Jungle by Guns N'' Roses on #SoundCloud https://on.soundcloud.com/TAKkx\"}"}', NULL), - (365353, '0xc4039b79578bfee178090fcdbc16b83d4b227e5d', 0, 1, '2024-05-06 02:54:40+00', 0, 3, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1151, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 968, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wfBFwPqitfgBcYsj6\"}"}', 'sonata'), - (38326, '0xf1703daad8697a7200bc3fdd1cd066ebba0edcd9', 0, 1, '2024-05-04 21:58:38+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 570, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/atrip/all-night\"}"}', NULL), - (67966, '0x760b7ae866aa58a33ae30f80cb26a041fa25e1dc', 0, 1, '2024-05-04 23:40:58+00', 0, 1, '{"fid": 418390, "object": "user", "pfp_url": "https://i.imgur.com/jxBCQEJ.jpg", "profile": {"bio": {"text": "Alfa Frens channel 💖 알파프렌 구독 좋아요 💖\nhttps://www.alfafrens.com/channel/0x13ec875cda512d6644f48f7f7aaddb1026ce77de", "mentioned_profiles": []}}, "username": "aigirls", "power_badge": false, "display_name": "Ai Girls", "active_status": "inactive", "verifications": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "follower_count": 1318, "custody_address": "0xbc0b95ea996a84fc9956e96e598d305a9261964d", "following_count": 1667, "verified_addresses": {"eth_addresses": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hupok/xz2thyu9fz1x?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (38628, '0xa1ac1d9831d968b1b5e184aab798bb1e88e44394', 0, 1, '2024-05-04 22:05:06+00', 11, 1, '{"fid": 208481, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/450a859e-80a1-4e70-bf71-17c4c159ca00/rectcrop3", "profile": {"bio": {"text": "💠father\n• /tattoo \n• psychonaut \n• creative\n• visual mathematic flow💠\n\n\nwww.accsemblecorporis.com >remember the future \n/medicinemusic", "mentioned_profiles": []}}, "username": "accsemble", "power_badge": true, "display_name": "accsemble🎩🐲", "active_status": "inactive", "verifications": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "follower_count": 329, "custody_address": "0xb0d6aff9edda81016e202ca85d7b9fcefeb82f70", "following_count": 183, "verified_addresses": {"eth_addresses": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XjoqRcUFR37twead7\"}"}', NULL), - (648706, '0x6ddb16bfa2b7ed8fcaa72e7c35991e299e5b1bf3', 0, 1, '2024-05-06 14:34:08+00', 0, 0, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1402, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 964, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jckrbrrymc7b/67a?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (38700, '0x2f0af08dae1e8d9fb80870d92c5da543c5e9d654', 0, 1, '2024-05-04 22:06:04+00', 0, 1, '{"fid": 193158, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/615155df-fff7-4319-fff4-cf6e959db500/rectcrop3", "profile": {"bio": {"text": "Farcasterpreneur /bry | Building web3 Pinterest /onshelf", "mentioned_profiles": []}}, "username": "brykayne", "power_badge": true, "display_name": "Bryan ⚪️🎩 has Farcon FOMO", "active_status": "inactive", "verifications": ["0x88d9b709ddd27dd1dd1c761352e52a1c96bc78e7", "0x0c8a6c95d40a203e36ce063f2215d679e66ca5ad", "0x1d22daed3db33cf9d0d46db3c32cb1da4f11c471"], "follower_count": 1465, "custody_address": "0xd5f7fae6d27df0ccc32f17acb5262873bda89eb4", "following_count": 357, "verified_addresses": {"eth_addresses": ["0x88d9b709ddd27dd1dd1c761352e52a1c96bc78e7", "0x0c8a6c95d40a203e36ce063f2215d679e66ca5ad", "0x1d22daed3db33cf9d0d46db3c32cb1da4f11c471"], "sol_addresses": ["2gTKs6gLqSZ42NP4AVv2FsvhBvZMikn5ACuvZFTdhnZn", "Des4cQko8drtc7hRCXWUMkfETDEftqaLNXhwXGbcAQga"]}}', '{"{\"url\":\"https://www.sound.xyz/covexmusic/good-side?referral_source=link\"}"}', NULL), - (70593, '0x2369a21a537b9595ab7b98c2b2de40ac0fd21548', 0, 1, '2024-05-04 23:49:05+00', 0, 2, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12🎩 ✪ ", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5049, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BRsTaxz2AwqjXDNi9\"}"}', NULL), - (76176, '0xe07b5d1d82222eba35dec0f3114b5d65c86713a8', 0, 1, '2024-05-05 00:06:50+00', 0, 0, '{"fid": 415227, "object": "user", "pfp_url": "https://i.imgur.com/isYNWTn.jpg", "profile": {"bio": {"text": "Cat lover/Degen lover$$$", "mentioned_profiles": []}}, "username": "rrej922797", "power_badge": false, "display_name": "ppunee", "active_status": "inactive", "verifications": ["0xed68dd16e2456aead0ebb915b51984faff428c21"], "follower_count": 2512, "custody_address": "0x6b63d1b1656c041400f2d3a63225ae5fb61fa6d5", "following_count": 2794, "verified_addresses": {"eth_addresses": ["0xed68dd16e2456aead0ebb915b51984faff428c21"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nZRFU\"}"}', NULL), - (118775, '0xe1c1dc80fd3cf7c411d768380f30ef04140220c4', 0, 1, '2024-05-05 04:47:01+00', 0, 1, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1987, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/751ocLn6grYUyirH6\"}"}', NULL), - (87526, '0x132f5b60a729e141aae62c06eafe4e218c93d291', 0, 1, '2024-05-05 00:39:03+00', 0, 2, '{"fid": 501244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2857cc22-5da5-45a9-b4b3-83c34cf8d700/rectcrop3", "profile": {"bio": {"text": "Hello everyone!\nLet‘s follow and enjoy together!!\n✅Reaction 💯 \n", "mentioned_profiles": []}}, "username": "danial-jung", "power_badge": false, "display_name": "💎Ian💎", "active_status": "inactive", "verifications": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "follower_count": 1657, "custody_address": "0xd31e5b74c59a915530a8408c23304dbb06d033d9", "following_count": 2465, "verified_addresses": {"eth_addresses": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v1bmzSUdFe2R24tz8\"}"}', NULL), - (89702, '0xbd8d0b4cfd05bb2499277182ceb54bdd9a197891', 10, 1, '2024-05-05 00:46:14+00', 50, 2, '{"fid": 301340, "object": "user", "pfp_url": "https://i.imgur.com/HpDwOyb.png", "profile": {"bio": {"text": "growth @teller.eth \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhosting /kieran /erc20 /usdc /loans /yieldfarming", "mentioned_profiles": []}}, "username": "kdaniels.eth", "power_badge": true, "display_name": "Kieran Daniels 🎩 ", "active_status": "inactive", "verifications": ["0xaac60c858895befaf42378467bc9f3bd69c5efae"], "follower_count": 2599, "custody_address": "0x8b537e5b9bd3ef80aeef5380be98997fd8a3a6d7", "following_count": 3433, "verified_addresses": {"eth_addresses": ["0xaac60c858895befaf42378467bc9f3bd69c5efae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4BKs6FxtjLdm4SPY7\"}"}', NULL), - (67487, '0x282c8356beff88521367dc8a8e94f20e5c15ff71', 0, 1, '2024-05-04 23:39:20+00', 0, 1, '{"fid": 376386, "object": "user", "pfp_url": "https://i.imgur.com/1Y7P8oi.jpg", "profile": {"bio": {"text": "\nBTC\nCryptocurenci\nETH", "mentioned_profiles": []}}, "username": "pabloskobar", "power_badge": false, "display_name": "pabloskobar🔵🎩🔮", "active_status": "inactive", "verifications": ["0x57fb36261e0bb889354a3ff0c5af2a8719779067"], "follower_count": 1608, "custody_address": "0x4b8eab16619aa821550bcd4f5175c6d0b5c8e410", "following_count": 3357, "verified_addresses": {"eth_addresses": ["0x57fb36261e0bb889354a3ff0c5af2a8719779067"], "sol_addresses": ["9gP75xmwEPi2h7yei3CcFYZuB8rVbQE6f6juaUCN9ZY2"]}}', '{"{\"url\":\"Listen to War Curse \\\"The Convoy\\\" by Metal Blade Records on #SoundCloud https://soundcloud.com/metalbladerecords/war-curse-the-convoy?ref=clipboard&p=a&c=0&si=572a8be7810240f696764ac2d2a67166&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (90316, '0x95743021c4cb2b9a840267955466773a5bdbe9eb', 0, 1, '2024-05-05 00:46:59+00', 0, 1, '{"fid": 417416, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7dccc8a-4b6a-4a75-ed0d-78c516322000/original", "profile": {"bio": {"text": "Investor, multi-chain trader & art collectooor\n\nhttps://www.alfafrens.com/channel/0x352528F189FCE266B77bb471a6129BBea48C6b41", "mentioned_profiles": []}}, "username": "lumee", "power_badge": false, "display_name": "Lumee", "active_status": "inactive", "verifications": ["0x915b472dfa70c8fe9d074a8c859089c44252d6b8"], "follower_count": 381, "custody_address": "0x0f832f0ac9f6b64f28dfb55701a352d41fe7f3cb", "following_count": 662, "verified_addresses": {"eth_addresses": ["0x915b472dfa70c8fe9d074a8c859089c44252d6b8"], "sol_addresses": ["5ykxXh81f8hskU93Fh3ztxVTHwJyBb7MsiXTmmSVurkC"]}}', '{"{\"url\":\"https://soundcloud.com/ladyocean/painter\"}"}', NULL), - (90318, '0x7843e6ec9eae4c39cae7e15d7e2c2f63b8b2f257', 0, 1, '2024-05-05 00:46:46+00', 0, 0, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3478, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3396, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/txrREMEua9tGedH98\"}"}', NULL), - (67486, '0xd8670a208fd4504e549c127f374c7e959ec765db', 0, 1, '2024-05-04 23:39:43+00', 0, 0, '{"fid": 287924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b080e06a-c0cb-4838-3567-dbdedc192800/rectcrop3", "profile": {"bio": {"text": "가나다라 아무말대잔치 노트👻💕아이러브 한글", "mentioned_profiles": []}}, "username": "korineshasha", "power_badge": false, "display_name": "k-shasha🇰🇷", "active_status": "inactive", "verifications": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "follower_count": 1970, "custody_address": "0xdc5ed12b37b07e22727a94b20899d414781a07a9", "following_count": 1430, "verified_addresses": {"eth_addresses": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7DnAm9FOTWE3cUvso43HhI?si=4fv3yhjZSEyRl9YEQm5oPg\"}"}', NULL), - (100696, '0xaa1e3379d9ba7e28bfd73fa1c5d0bc29a029ac2c', 10, 1, '2024-05-05 01:45:13+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k5xVS\"}"}', NULL), - (715974, '0xcfd92fddde03d63833e452e3b627975aa5a0dee8', 0, 1, '2024-05-06 19:24:23+00', 0, 0, '{"fid": 407424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24b1ae28-8592-45ae-d53e-fa51fbbdfb00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mortezaxan", "power_badge": false, "display_name": "Morteza 🎩 🔄", "active_status": "inactive", "verifications": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "follower_count": 102, "custody_address": "0x81a0acbdaa12ac4f6c2a133211d5acab228dbece", "following_count": 122, "verified_addresses": {"eth_addresses": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/officialsoundrush/loreen-tattoo-sound-rush-remix\"}"}', NULL), - (73839, '0xbd934ce0187543a1e13cc2bbb2f4cd449b0cc611', 0, 1, '2024-05-04 23:59:37+00', 0, 0, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1308, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 675, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8GMR4MzdmFJwvfkx9\"}"}', NULL), - (70587, '0xdaaed0e4cbb9c150cfb143728539f3a66130c9f1', 0, 1, '2024-05-04 23:48:50+00', 0, 1, '{"fid": 384415, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifxxg2cizy3v7f4tfm2kgthk5ahpyacl53f4iqk67jcbwgzdk6tou", "profile": {"bio": {"text": "Multidisciplinary Artist • Guitar/Bass/Synth Player • Creative Director • DeFi lover • Crypto Virtuoso • A Catcher in The Rye… And Above All I’m a Man. ✨", "mentioned_profiles": []}}, "username": "alirezakh", "power_badge": false, "display_name": "The Alireza ᖽ🥷🏼", "active_status": "inactive", "verifications": ["0xe35f4e993fa02345d9e58f6d9c12272273945d3e"], "follower_count": 508, "custody_address": "0xca237adb637fc628d317f5f1c5e2522e1ea22ddd", "following_count": 274, "verified_addresses": {"eth_addresses": ["0xe35f4e993fa02345d9e58f6d9c12272273945d3e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/boniver/holocene?ref=clipboard&p=i&c=0&si=576939A4A4F34B2EAD02B62674AF50CE&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (68282, '0x69f63965ce569bf48027449d2c3b054f3242f199', 0, 1, '2024-05-04 23:41:41+00', 0, 1, '{"fid": 476061, "object": "user", "pfp_url": "https://i.imgur.com/jAfS0zp.jpg", "profile": {"bio": {"text": "Computer engineering graduate \nInterested in cyber security and 🎮🎥🧑‍🎤", "mentioned_profiles": []}}, "username": "xalix", "power_badge": false, "display_name": "Ali", "active_status": "inactive", "verifications": ["0xf24ad3113f41ca1aa4dfe92dba6b947b958e41a3", "0xd275e3b6b9ff179d8721a847e8d2cbac2d2cbcee"], "follower_count": 230, "custody_address": "0x229a7071ed1f5862fd4f4a3d3a6cb38f80140b2f", "following_count": 324, "verified_addresses": {"eth_addresses": ["0xf24ad3113f41ca1aa4dfe92dba6b947b958e41a3", "0xd275e3b6b9ff179d8721a847e8d2cbac2d2cbcee"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/thedoors/people-are-strange\"}"}', NULL), - (72748, '0xde78f778661ebe9097f940d2dd695bf5bee80260', 0, 1, '2024-05-04 23:56:51+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 얀 (Yarn) - After by Neo on #SoundCloud https://on.soundcloud.com/o9L7x\"}"}', NULL), - (991611, '0x3152228cc5bcba00e3919c1255727098118adac3', 0, 1, '2024-05-07 11:26:46+00', 0, 2, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1476, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1624, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tygathemill/taeyeon-i-fine-why-11-11-mashup?si=a182fc302be848158a32294a2321d541&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (82129, '0x0f3cebd0645e0f444c21d01fb895d5a051c30245', 0, 1, '2024-05-05 00:25:00+00', 0, 0, '{"fid": 508188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/624823aa-7d8a-48f1-d11c-233b4c7ad400/rectcrop3", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 827, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 861, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/flyxze/lauv-paris-in-the-rain?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (74681, '0x3f6de76615bc2061aa967a13ef1e6e61201decce', 0, 1, '2024-05-05 00:02:27+00', 0, 0, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1820, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2178, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EnsUfNekBUsNzF6D8\"}"}', NULL), - (88487, '0xd3f42f0ab1ae920155c99ae5e90d656483ffef0b', 0, 1, '2024-05-05 00:41:01+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GRcFs\"}"}', NULL), - (72998, '0x234e37afe66057a77b2732ebef72e1e3dd66e9b0', 0, 1, '2024-05-04 23:57:42+00', 0, 2, '{"fid": 396276, "object": "user", "pfp_url": "https://arweave.net/mHGiXAlsRuKj8JbKBb7zwdwjrCNdSM5BDXXjBe_zzhM/", "profile": {"bio": {"text": "I''m student for market crypto 🍖", "mentioned_profiles": []}}, "username": "mohnmadkm", "power_badge": false, "display_name": "Mohamd Mahdi🍖", "active_status": "inactive", "verifications": ["0xff60415ac262d665519f4e529cde6c92760b310c"], "follower_count": 1432, "custody_address": "0xdf7b4eebc933a72af29f28b07fd51158a61d8997", "following_count": 856, "verified_addresses": {"eth_addresses": ["0xff60415ac262d665519f4e529cde6c92760b310c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/85yie\"}"}', NULL), - (77156, '0xf2dff8a35e585cc08a7771688fe97cb1727a00d9', 0, 1, '2024-05-05 00:10:12+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 얀 - 08 - 심(心) - 192k korea music pop by kkod on #SoundCloud https://on.soundcloud.com/kxDdX\"}"}', NULL), - (80179, '0xf0082c7f64ab99faeeb0bd049313550381e716ab', 0, 1, '2024-05-05 00:20:31+00', 0, 0, '{"fid": 500745, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6131816d-a235-420d-5680-065e752fd700/original", "profile": {"bio": {"text": "i love base my AlfaFrens : \nhttps://www.alfafrens.com/channel/0x36cE06783304568b6169a75Ff18A6C821d3717BF", "mentioned_profiles": []}}, "username": "infokk", "power_badge": false, "display_name": "infokk", "active_status": "inactive", "verifications": ["0x88f3dc8062151a93cf43972d9b13826e756a8290"], "follower_count": 1190, "custody_address": "0x6e880a484bcc098ff94e822a3cfd82a372480be1", "following_count": 1395, "verified_addresses": {"eth_addresses": ["0x88f3dc8062151a93cf43972d9b13826e756a8290"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-793543988-785076913/jvke-golden-hour?si=37e214da47b54fb5851cf6c27dadef92&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (77786, '0x32be71ace79810c69c115fb60ca2aaa375f0d488', 0, 1, '2024-05-05 00:13:40+00', 0, 0, '{"fid": 499329, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3d04f61-114b-4f8f-2c05-dfe2249b6c00/rectcrop3", "profile": {"bio": {"text": "Welcome my profile🫶", "mentioned_profiles": []}}, "username": "ziodano", "power_badge": false, "display_name": "Hyelim", "active_status": "inactive", "verifications": ["0x70c6657292e2c560bff0067c52c565dc495bcd5a"], "follower_count": 836, "custody_address": "0x88177877642a47c8cb3d7997dcf09b2f367bbea3", "following_count": 141, "verified_addresses": {"eth_addresses": ["0x70c6657292e2c560bff0067c52c565dc495bcd5a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9Ds4Lo3VzPDhMLkG7\"}"}', NULL), - (87906, '0x0ed8a152dc38d0b33be81d535ff11d7a71a3772c', 0, 1, '2024-05-05 00:40:30+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dPpgu\"}"}', NULL), - (1159770, '0x8d5cc0cd363d43ded6c890efbca19c477885d273', 0, 1, '2024-05-08 11:35:08+00', 0, 1, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1078, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 1063, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jiyoon-kim-886974160/vos?si=1ec20da2176d45698fc048372816dd78&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (239895, '0x4e5ae10d5c84558b2e44a69c1e543cc0108e8b26', 0, 1, '2024-05-05 13:59:27+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2630, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3120, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UD1ejgj7XK3JaDzw9\"}"}', NULL), - (92190, '0xfcb86e6ea78196c2c90fd2c47b65f9a5d6ae7a76', 0, 1, '2024-05-05 00:56:48+00', 0, 18, '{"fid": 376638, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e35f4c0-4979-4769-c221-ed1ab4a3e200/rectcrop3", "profile": {"bio": {"text": "Japanese🇯🇵▷▶enjoy crypto/illustrater ✍️ \n 🔴⚪️🟡host: /colors- & /ai-geek ♥️💚‎🤍", "mentioned_profiles": []}}, "username": "sally-", "power_badge": false, "display_name": "sally🪬Everyone", "active_status": "inactive", "verifications": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "follower_count": 613, "custody_address": "0xea6eeb79b91923be86d19a155999a2da5c3f8516", "following_count": 941, "verified_addresses": {"eth_addresses": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/858628b3-9522-4abf-ddc8-b930afe60500/original\"}","{\"url\":\"https://open.spotify.com/track/77dtJsvOBFEcWqjSToGHGR?si=lRf6oeHtS9ukpDOAf2J9EQ&context=spotify%3Aalbum%3A2vdO2JMP1Oiko95nJHU8ej\"}"}', NULL), - (1159213, '0x29a9e8113f8dea171dc22f33463285e363fb9b35', 0, 1, '2024-05-08 10:46:48+00', 0, 4, '{"fid": 389207, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ad1bcfd-550b-48ef-e718-f0b6cd3af000/rectcrop3", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 954, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8516bf36-1256-40ef-91d6-478721eee300/original\"}","{\"url\":\"https://open.spotify.com/track/0XaHPBAzPAC5ubwcRBqc1p?si=BAfmDIFeQByLYSXr3IS17A&context=spotify%3Asearch\"}"}', NULL), - (68605, '0x8eff5702761edf8c9de5e34748ae504ae3b6f6bf', 0, 1, '2024-05-04 23:42:32+00', 0, 0, '{"fid": 453277, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/576baa6e-6b8d-4803-f6d7-3b6e6dc79000/original", "profile": {"bio": {"text": "Your Web3 Hub | Everything IT related about Web3 🌐. | pounf.crowned.eth |\nhttps://www.linkedin.com/in/gerpefanis/\n", "mentioned_profiles": []}}, "username": "pounf.eth", "power_badge": false, "display_name": "pounf 🪄⚔️", "active_status": "inactive", "verifications": ["0xcbb30b0e9eca485b2a1ae46612f2d466e3480d0e"], "follower_count": 870, "custody_address": "0xdcd94ddc443338b6b749b8ea57e915179a0fc347", "following_count": 276, "verified_addresses": {"eth_addresses": ["0xcbb30b0e9eca485b2a1ae46612f2d466e3480d0e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Gramatik - Satoshi Nakamoto Feat. Adrian Lau & ProbCause (Beat Fatigue Remix) by Beat Fatigue on #SoundCloud https://on.soundcloud.com/pqFGy\"}"}', NULL), - (68817, '0x46a290dd86ed01d650eb7c2123270368677de524', 0, 1, '2024-05-04 23:44:01+00', 0, 0, '{"fid": 287924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b080e06a-c0cb-4838-3567-dbdedc192800/rectcrop3", "profile": {"bio": {"text": "가나다라 아무말대잔치 노트👻💕아이러브 한글", "mentioned_profiles": []}}, "username": "korineshasha", "power_badge": false, "display_name": "k-shasha🇰🇷", "active_status": "inactive", "verifications": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "follower_count": 1965, "custody_address": "0xdc5ed12b37b07e22727a94b20899d414781a07a9", "following_count": 1429, "verified_addresses": {"eth_addresses": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Y15hKANccJGC86yM9\"}"}', NULL), - (68816, '0x8ed2fd331410ff8d9b89602457458c96f9938488', 0, 1, '2024-05-04 23:43:56+00', 0, 0, '{"fid": 13756, "object": "user", "pfp_url": "https://i.imgur.com/BcAUsi2.gif", "profile": {"bio": {"text": "I''m old, not obsolete!", "mentioned_profiles": []}}, "username": "amircrypto82", "power_badge": false, "display_name": "amircrypto82 🔵🎩🔮🧀", "active_status": "inactive", "verifications": ["0xb2ffa393f0b4072081eb2738eb8340bf877bae38"], "follower_count": 1148, "custody_address": "0x94236d0f1d9960d9c46a7b49bed8529a59cd7de0", "following_count": 1906, "verified_addresses": {"eth_addresses": ["0xb2ffa393f0b4072081eb2738eb8340bf877bae38"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamesblunt/goodbye-my-lover?si=29f8667287e641b9bc5d7d00b4e7eb88&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (70585, '0x15aabe3f3b9fc33a4cb2c83cfd7c4c86da9475f4', 0, 1, '2024-05-04 23:49:01+00', 0, 0, '{"fid": 423039, "object": "user", "pfp_url": "https://i.imgur.com/vJ1Tpz7.jpg", "profile": {"bio": {"text": "Crypto beginner | Crossfiter", "mentioned_profiles": []}}, "username": "zzangu", "power_badge": false, "display_name": "zzangu", "active_status": "inactive", "verifications": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "follower_count": 1771, "custody_address": "0xe62def6bb2c4486aba21fdcaf64c88d734fa4646", "following_count": 1645, "verified_addresses": {"eth_addresses": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eyriej/daisies-and-roses-again-demo?si=7e6485f8ee214286a1b462d3a08b2bdb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (79316, '0x6f6c5e471c438cbad1b03ce72e934001f4071763', 0, 1, '2024-05-05 00:17:43+00', 0, 0, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1002, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 980, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tuki82434/vf9cgdy7vt3g?si=b7b3ea1c39614d478f19391289feb67b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (82140, '0x7ad22f2a6a22425586f9e7c775a17e4820c748db', 0, 1, '2024-05-05 00:24:49+00', 0, 0, '{"fid": 508188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/624823aa-7d8a-48f1-d11c-233b4c7ad400/rectcrop3", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 827, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 861, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/flyxze/lauv-paris-in-the-rain?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (73003, '0x73be38005b6f8b6774ac585f8d8635d2771ae60d', 0, 1, '2024-05-04 23:58:12+00', 0, 0, '{"fid": 505726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a7d0816-25e5-4016-f641-2fbfeebc7600/rectcrop3", "profile": {"bio": {"text": "I love Costco", "mentioned_profiles": []}}, "username": "lovemus", "power_badge": false, "display_name": "Costco", "active_status": "inactive", "verifications": ["0xcb0c7356e2a359ad168af298c109aa3aa41cef12"], "follower_count": 591, "custody_address": "0xdf7a4f4111ca0bc83d416de8280229b45cd42430", "following_count": 1313, "verified_addresses": {"eth_addresses": ["0xcb0c7356e2a359ad168af298c109aa3aa41cef12"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/willbaileyy/fortunate-son-moonlight-remix-good-morning-vietnam\"}"}', NULL), - (211906, '0xea46e6b8dc03b06eabdabdbb4de4b78f94bd1aaf', 0, 1, '2024-05-05 12:59:15+00', 0, 0, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 765, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 1310, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x4HeR4D6BqT2Q1t78\"}"}', NULL), - (495928, '0xe744656c45c953f82fb866a204aa918ee1511f65', 0, 1, '2024-05-06 07:54:41+00', 0, 0, '{"fid": 491718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44f5849-69cc-4805-c6aa-5ef274a2fa00/rectcrop3", "profile": {"bio": {"text": "잘부탁드려요 맞팔갑니다 디젠 파이팅", "mentioned_profiles": []}}, "username": "hduck43", "power_badge": false, "display_name": "hduck43", "active_status": "inactive", "verifications": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "follower_count": 1371, "custody_address": "0x313bb25e8e5a06110334088d0db7fb4979a48e8b", "following_count": 2277, "verified_addresses": {"eth_addresses": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PSWwAAnRFJWKsDLf6\"}"}', NULL), - (92956, '0x3156a632b2f0c1a3f0feeb0ad8ca7446ca251ce5', 0, 1, '2024-05-05 01:05:02+00', 0, 2, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pK5Px\"}"}', NULL), - (45453, '0x0c245225ccc27b69126520a8ad318b4b9d3ffe73', 0, 1, '2024-05-04 22:39:48+00', 0, 3, '{"fid": 448074, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d99aa3b-709e-4b08-e647-78168b7e4200/rectcrop3", "profile": {"bio": {"text": "Capture your every moment in the photo 📸\nFrom the home page of the city to the city to abroad 🇪🇦", "mentioned_profiles": []}}, "username": "bangdodo", "power_badge": false, "display_name": "Bangdo🎩📸🔵", "active_status": "inactive", "verifications": ["0x04a93274045e96924b0a3e5d037a834b6e14012e"], "follower_count": 334, "custody_address": "0x04a93274045e96924b0a3e5d037a834b6e14012e", "following_count": 570, "verified_addresses": {"eth_addresses": ["0x04a93274045e96924b0a3e5d037a834b6e14012e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Ie9W94M7OjPoZVV216Xus?si=NIHJhXvuQPiLdYIqZsp8RQ\"}"}', NULL), - (102710, '0x005d1d5a64d2bec0913aa590a284654ef05788d5', 0, 1, '2024-05-05 02:06:09+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qfi7r\"}"}', NULL), - (100845, '0xb108a0b140291139e44651356cefa33a35d3b8c3', 0, 1, '2024-05-05 01:46:28+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3479, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ld4yk\"}"}', NULL), - (125339, '0xfe9a0f7e81a75cd0690254cb3d677c71b8a04ede', 0, 1, '2024-05-05 05:26:49+00', 0, 0, '{"fid": 479253, "object": "user", "pfp_url": "https://i.imgur.com/f2gnEq7.jpg", "profile": {"bio": {"text": "그게 뭐든 다 이루다_ERUDA_열정걸_초긍정에너지(With me, you have super power😲 Super positive energy✨️⚘️) 늘 응원해:)", "mentioned_profiles": []}}, "username": "eruda", "power_badge": false, "display_name": "ERUDA", "active_status": "inactive", "verifications": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "follower_count": 855, "custody_address": "0x2c72ca53218c08d77e61639cb2ccfa7d08403ff8", "following_count": 585, "verified_addresses": {"eth_addresses": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ChswF\"}"}', NULL), - (88485, '0x37bbc7e42f403bde07bb8c1a56cdc108d1ce6d00', 0, 1, '2024-05-05 00:41:32+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vVPS5\"}"}', NULL), - (137329, '0x1a67ed84675b448656954e080395e6aea31c2439', 0, 1, '2024-05-05 06:33:40+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/17tBe\"}"}', NULL), - (88484, '0x2d5dd8384c20f5d8be6e5540de7f2880ef44cc2f', 0, 1, '2024-05-05 00:41:09+00', 0, 0, '{"fid": 443870, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af45b182-76fa-437b-86ca-90f9edfd4600/original", "profile": {"bio": {"text": "developer build to the moon; data hacker;web3 explorer", "mentioned_profiles": []}}, "username": "ahhaa", "power_badge": false, "display_name": "ahha", "active_status": "inactive", "verifications": ["0xf217a1d3230377b43c8ac590e34deae6947df9f8", "0x992c8af7766d6b5439896414bee1241d73663594"], "follower_count": 74, "custody_address": "0x27d36e5cfd2fb263bd004f1b1b78bfc5e010c9ca", "following_count": 107, "verified_addresses": {"eth_addresses": ["0xf217a1d3230377b43c8ac590e34deae6947df9f8", "0x992c8af7766d6b5439896414bee1241d73663594"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mikarldegen/degen-break-your-body-original-mix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (76186, '0x723016cea57e075f03b33ce66878cd21c6e23415', 0, 1, '2024-05-05 00:06:13+00', 0, 1, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1083, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 577, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZfMvtmVx9NfG4hUR7\"}"}', NULL), - (80615, '0xd4058c1b913ad7133d0a8612a3a1e2b2a50c988c', 0, 1, '2024-05-05 00:22:09+00', 0, 0, '{"fid": 500889, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7849d21f-3eab-4d19-a328-6af7560c3100/rectcrop3", "profile": {"bio": {"text": "Im not farmer, abusing, bot!!!!!\nHere we go! Getting better!\nBeautiful life~~♤\nGo to big rich!", "mentioned_profiles": []}}, "username": "awesome7333", "power_badge": false, "display_name": "Awesome.rich", "active_status": "inactive", "verifications": ["0xf6880a80ddff66383a192389a1d93f865a867bcd"], "follower_count": 1100, "custody_address": "0xb5388e4625ba7af62c142db83ea8a2534bb77897", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xf6880a80ddff66383a192389a1d93f865a867bcd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-486142475/dynamite?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (80618, '0x110ade609f2deb4e14b8769249c8e65a7d442fc8', 0, 1, '2024-05-05 00:21:34+00', 0, 1, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1308, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 675, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/q19WRfCy7J5e4nXRA\"}"}', NULL), - (1159484, '0xf78e53359c9b672cdd395512ba0c069186356bd4', 0, 1, '2024-05-08 11:26:16+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2690, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3149, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JjZpwXJmbE5XPhUn8\"}"}', NULL), - (87915, '0x455ef30e56d768c1a0c4c30f2b4475d3711fe5b7', 0, 1, '2024-05-05 00:40:17+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qQjeJ\"}"}', NULL), - (87917, '0x0642cd1a7b7fc38ff1f4832a3b8ea5e395f6fe11', 0, 1, '2024-05-05 00:39:56+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yb3YD\"}"}', NULL), - (137479, '0x60e67283f35a1b1c404c8770b07e8fb35ac8342a', 0, 1, '2024-05-05 06:35:02+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U8pb6\"}"}', NULL), - (410751, '0xa836a9937d189381c6b47a4c4896427962db9595', 0, 1, '2024-05-06 05:26:55+00', 0, 2, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jXgsp\"}"}', 'sonata'), - (87916, '0x13af68f5dfff4b8f9a3db07acb343376cd1b9c10', 0, 1, '2024-05-05 00:40:38+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/auBFK\"}"}', NULL), - (83111, '0x65ec40757a6c34277e423d5740635153cb169eac', 0, 1, '2024-05-05 00:27:47+00', 0, 2, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 779, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 886, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SViBBYEy3YqqAb7a9\"}"}', NULL), - (89552, '0x11181be5b6fbf3fef854f947018dddd37e441300', 0, 1, '2024-05-05 00:45:29+00', 0, 1, '{"fid": 301340, "object": "user", "pfp_url": "https://i.imgur.com/HpDwOyb.png", "profile": {"bio": {"text": "growth @teller.eth \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhosting /kieran /erc20 /usdc /loans /yieldfarming", "mentioned_profiles": []}}, "username": "kdaniels.eth", "power_badge": true, "display_name": "Kieran Daniels 🎩 ", "active_status": "inactive", "verifications": ["0xaac60c858895befaf42378467bc9f3bd69c5efae"], "follower_count": 2599, "custody_address": "0x8b537e5b9bd3ef80aeef5380be98997fd8a3a6d7", "following_count": 3433, "verified_addresses": {"eth_addresses": ["0xaac60c858895befaf42378467bc9f3bd69c5efae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jBQiAsgPzL7KsUbb9\"}"}', NULL), - (421480, '0xd036ba3189682d6986a9641d800f6558ccf124f8', 0, 1, '2024-05-06 05:57:18+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1376, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1881, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dWkT1YiMtjJkLvkr7\"}"}', NULL), - (109849, '0x369d776d6eaefa7577301329354c50bfd4f8f65e', 0, 1, '2024-05-05 03:34:34+00', 0, 0, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1826, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2184, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zppGevVWXFjFcGV46\"}"}', NULL), - (84045, '0x55c9a0e4ffdbe59f012f30af09cf340b1fa29f80', 0, 1, '2024-05-05 00:30:14+00', 0, 6, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 884, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1010, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gracedaviesofficial/hello-adele?si=ef7da90e5bfd4c2d8294a4ea44d13c8a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (211638, '0xeeb3e1f230f14aced0396f48f6f3c1f6e1c6a5d8', 0, 1, '2024-05-05 12:57:56+00', 0, 0, '{"fid": 500839, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f3ca434-96aa-4bb9-6495-6ae249568400/rectcrop3", "profile": {"bio": {"text": "hello my name is amellia", "mentioned_profiles": []}}, "username": "amellia", "power_badge": false, "display_name": "amellia", "active_status": "inactive", "verifications": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "follower_count": 238, "custody_address": "0x9acfd223eb6f1deadc2984042d96f83fa0f4fe86", "following_count": 225, "verified_addresses": {"eth_addresses": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/miu-107609886/mili-string-theocracy-library-of-ruina-theme-song?si=925f8be5ef544f80927fb486e2a83a79&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (102657, '0xb8a77c7a805c6c02e8deabffb8d1ac4a50606d04', 0, 1, '2024-05-05 02:05:10+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x86H4\"}"}', NULL), - (77157, '0xd31391118121a8dd78a339dc14cf2226c2d7a7d5', 0, 1, '2024-05-05 00:10:30+00', 0, 0, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1083, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 577, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EzBAJMEYTEtufWwQ6\"}"}', NULL), - (3348, '0x1d589432829f16bd665195d593d9bf6abd1c2534', 10010, 1, '2024-04-29 22:53:55+00', 0, 9, '{"fid": 249247, "object": "user", "pfp_url": "https://i.imgur.com/pEjFlo5.jpg", "profile": {"bio": {"text": "💻🦋Argentine Multimedia Designer \n/ Digital Art and 3D / NFTs xtz | sol | eth / https://linktr.ee/isvirtual_aura", "mentioned_profiles": []}}, "username": "isvirtual-aura", "power_badge": false, "display_name": "Aura 🎩🔵", "active_status": "inactive", "verifications": ["0x264db049d0cfa73fb334cb605dc8c2843c1edf95"], "follower_count": 572, "custody_address": "0xdcb59a0b35b18704ab9d3108b8f89a3256c7e1e8", "following_count": 243, "verified_addresses": {"eth_addresses": ["0x264db049d0cfa73fb334cb605dc8c2843c1edf95"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mthrmthrmthrmthr/roomservicelaurabutallo?si=7b5cb474a7a748a79644f5adc1c2db40&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (87914, '0x6a7b31644a3e8a5a9363b33b2f80f45b68238b0c', 0, 1, '2024-05-05 00:40:09+00', 10, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3zH48\"}"}', NULL), - (76175, '0x3ba8924283c662f089f39cead14c1af83b912572', 0, 1, '2024-05-05 00:06:18+00', 0, 3, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 111, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://www.sound.xyz/yoshiromare/buzz-liberation-yoshiro-mare-remix\"}"}', NULL), - (83664, '0x17d3849e09b6f641715a4896cf69b741487c1c40', 0, 1, '2024-05-05 00:29:06+00', 0, 0, '{"fid": 13243, "object": "user", "pfp_url": "https://i.imgur.com/HLahTgP.gif", "profile": {"bio": {"text": "Tech SOTA maxi!\n\nOnly playing long-term games with long-term people!", "mentioned_profiles": []}}, "username": "amiralek", "power_badge": false, "display_name": "Amiralek 🎩", "active_status": "inactive", "verifications": ["0x645f38c7110c83bd3aff6caef471a90e245a7b85"], "follower_count": 657, "custody_address": "0xb0aab1f6b6f98c95df0eaeb851e1bf62996e2193", "following_count": 605, "verified_addresses": {"eth_addresses": ["0x645f38c7110c83bd3aff6caef471a90e245a7b85"], "sol_addresses": ["6gbdi83T9RpGR29JvhTy237aNMKWL2XH6LguUAdXerQv"]}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/lose-yourself?si=731d24613f9247718181c5cd43be27b6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1159258, '0x8679b6f174a3bfc0d2f6f13a4df7839a73a7d5c0', 0, 1, '2024-05-08 05:58:41+00', 0, 0, '{"fid": 287191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93fdfcac-4a4f-4895-cd44-34d8907f0600/rectcrop3", "profile": {"bio": {"text": "sound designer, musician, web3music degen\n/onchain ", "mentioned_profiles": []}}, "username": "lazyandreal", "power_badge": false, "display_name": "lazy and real", "active_status": "inactive", "verifications": ["0xd5844c4157a8c4f3c113328c5e24d510b4b31be6"], "follower_count": 1376, "custody_address": "0x374a9af883ecb7aa937f889a3615cac25860cead", "following_count": 1588, "verified_addresses": {"eth_addresses": ["0xd5844c4157a8c4f3c113328c5e24d510b4b31be6"], "sol_addresses": ["5GUcUTjdcqcinSe9Y7Vofc37Lk7tnC6Rph7TLopZHQGs"]}}', '{"{\"url\":\"https://www.sound.xyz/discotopia/onchain-city?referral=0xd5844c4157a8c4f3c113328c5e24d510b4b31be6\"}"}', NULL), - (87905, '0xb951b5ff143cfb624be9a16788985d7ddccf1552', 0, 1, '2024-05-05 00:39:55+00', 0, 0, '{"fid": 466106, "object": "user", "pfp_url": "https://i.imgur.com/7sKYYAP.jpg", "profile": {"bio": {"text": "댕댕이 머핀과 일상을 공유하는 워프캐스트입니다! 소통 많이해요! #슈퍼캐스트 #supercast #무한소통 ", "mentioned_profiles": []}}, "username": "muffin5516", "power_badge": false, "display_name": "coinfire5516🍖", "active_status": "inactive", "verifications": ["0xb78a0cf956250521f730478cd0330ebc108e367c"], "follower_count": 2269, "custody_address": "0xa5465c7e51b6a0213733b40bf1aeb916c724ed73", "following_count": 1910, "verified_addresses": {"eth_addresses": ["0xb78a0cf956250521f730478cd0330ebc108e367c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/muffin-kim-550739062/btc-1m\"}"}', NULL), - (86767, '0x16e874e8e26f18ded1ed1df931d7e809e7208ba2', 0, 1, '2024-05-05 00:37:11+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kpNKG\"}"}', NULL), - (1159753, '0xe4bde04f8ce94199a152dd2c1c60f2fa62b58605', 100, 1, '2024-05-08 11:35:55+00', 0, 6, '{"fid": 247653, "object": "user", "pfp_url": "https://i.imgur.com/8bPfKF7.jpg", "profile": {"bio": {"text": "✅ AlfaFrens\nhttps://www.alfafrens.com/channel/0x14225517d2CA4D08DAcaA29d3828B9d71fD4177E", "mentioned_profiles": []}}, "username": "pandateemo", "power_badge": false, "display_name": "pandateemo f4f 🎩 🍖", "active_status": "inactive", "verifications": ["0x7210de104487649c5c3b3e1b873355a0bfe69fb7"], "follower_count": 4171, "custody_address": "0xcf1631fbe68b27540606774f42fcdd723be12be1", "following_count": 2677, "verified_addresses": {"eth_addresses": ["0x7210de104487649c5c3b3e1b873355a0bfe69fb7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/oldrambo123/ost?si=ed0a2576663649968ee7f8673224f377&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (102645, '0x0e2ded9779e8b64c18fa562acddcea5151778e3d', 0, 1, '2024-05-05 02:04:50+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qTgX6\"}"}', NULL), - (96770, '0x7fc0b8aee0450d3d6141703d2e4a363c85c65130', 0, 1, '2024-05-05 01:19:22+00', 0, 0, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1406, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1692, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Uuo5Wd4RyRSw5YPi8\"}"}', NULL), - (92954, '0x5d7079afce56b69b510f48e8d05f16375f43e406', 0, 1, '2024-05-05 01:05:01+00', 0, 0, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1406, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1692, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KYaqRpAozxRzHqh2A\"}"}', NULL), - (109675, '0x55a103ebb30e1d3f26ff70aab78d11332c7c4b6a', 0, 1, '2024-05-05 03:29:59+00', 0, 0, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/absollutely/newjeans-hype-boy?si=0742ae1ae1d049a39f79318f3aeef5e0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (94488, '0x6323260d34ee509733f0c904edc85d2a3aa4edf6', 0, 1, '2024-05-05 01:10:47+00', 0, 1, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1406, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1692, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VL2LP3m73DxARUag9\"}"}', NULL), - (118764, '0x99c93218931e42578b663ecefb67fa9de12cb152', 0, 1, '2024-05-05 04:46:56+00', 0, 0, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 615, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/101204/ayumu-imazu-obsessed-cover?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (259505, '0xc7eab2ac4eb827a93c9a0d55e941df29dad4dd0a', 0, 1, '2024-05-05 15:31:08+00', 0, 0, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mohamed-magdy100/ed-sheeran-perfect-mike-perry-remix-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1159227, '0xff26bac0b874858aa9930c99befa91f6f870ab77', 1000, 1, '2024-05-08 11:07:45+00', 0, 3, '{"fid": 398388, "object": "user", "pfp_url": "https://i.imgur.com/cUeM72W.jpg", "profile": {"bio": {"text": "まだまだひよっこです🐥\nよろしくお願いします🌛\nalfafrends https://www.alfafrens.com/channel/0x46f21ee971121de6b17f4b3015d62a2ec13efbf1", "mentioned_profiles": []}}, "username": "kuroooo", "power_badge": false, "display_name": "kuroooo🔄🎩", "active_status": "inactive", "verifications": ["0xbbe5938b974035b923782b1bbcec44018ed2584a"], "follower_count": 598, "custody_address": "0xcefdc5da1cc38bd47b1caf36497a7f0a75cbdd2c", "following_count": 652, "verified_addresses": {"eth_addresses": ["0xbbe5938b974035b923782b1bbcec44018ed2584a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3MpAEomh0TJoyca9y7uaBX?si=k1023YZ8Sya-u2779AHwCw&context=spotify%3Atrack%3A3MpAEomh0TJoyca9y7uaBX\"}"}', 'musicjp'), - (90488, '0x64cd6d5eea91734b504f729e73eba0f5e090847b', 0, 1, '2024-05-05 00:47:50+00', 0, 0, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3478, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3396, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yhqCWSmWGyvY6o4S8\"}"}', NULL), - (90498, '0xbf4ff88c9cb51832302f142e897f4195a78d6e15', 0, 1, '2024-05-05 00:48:10+00', 0, 1, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12🎩 ✪ ", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5049, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GV4E2V5BcqS3VpUY8\"}"}', NULL), - (240365, '0x6f1af1f9881e98883b3bed9feb7c8e68af5de093', 0, 1, '2024-05-05 14:00:10+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2916, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2335, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YaHhW\"}"}', NULL), - (102707, '0xc497375e72c0e1340854313688f608cbd71408ae', 0, 1, '2024-05-05 02:05:43+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wWDSJ\"}"}', NULL), - (102827, '0xd4c9ea0314f54544f157631192a9db73f0a2a85c', 0, 1, '2024-05-05 02:07:43+00', 0, 0, '{"fid": 491529, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f2ae57bb-c07a-433f-aa6a-f43b707e1f00/rectcrop3", "profile": {"bio": {"text": "Host of /ssibal Tennis🎾 art\n", "mentioned_profiles": []}}, "username": "gyleee", "power_badge": false, "display_name": "Purpluna", "active_status": "inactive", "verifications": ["0xeb2db2eee7eec12b6ce01df96204801c9fb85d2b"], "follower_count": 1038, "custody_address": "0x6342e1a4c66973fc16c7722f5aad236cf7a4e19f", "following_count": 910, "verified_addresses": {"eth_addresses": ["0xeb2db2eee7eec12b6ce01df96204801c9fb85d2b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aikupabbo/younha-umbrella?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (102829, '0x66cedaff3402f2302417bb805be4f476d2c744c2', 0, 1, '2024-05-05 02:07:44+00', 0, 1, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1839, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2321, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 돼지 국밥 by 클로버(Clover) on #SoundCloud https://on.soundcloud.com/eu4YV\"}"}', NULL), - (105561, '0xf292a171a4daea131096bcd8ec05cf5d0f830b58', 471, 1, '2024-05-05 02:25:56+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1102, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 889, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B8p8QmEe8718ggYK6\"}"}', NULL), - (104959, '0xcaa4cd98f43c5f9daf658fde4165e17ea2a846e2', 0, 1, '2024-05-05 02:21:12+00', 0, 4, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1310, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 678, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7pJcMkVanPZDqWrF7Rxml6?si=LGhzl7ZVQZuE0RhauOZ6NQ\"}"}', NULL), - (92528, '0xbbb506b2eee5079550e32f8505c41135c0bd1a81', 0, 1, '2024-05-05 00:59:31+00', 0, 1, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3478, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3396, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Bqi6NSDSo8kn5ewf7\"}"}', NULL), - (102775, '0x5faa85c1b03b69858665820d57928c69aab1608a', 0, 1, '2024-05-05 02:06:28+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PAbzW\"}"}', NULL), - (103616, '0xb7f69019aeb4a57b01d453a1c02483f25bfab232', 0, 1, '2024-05-05 02:13:31+00', 0, 2, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 614, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 914, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://open.spotify.com/track/0nJW01T7XtvILxQgC5J7Wh?si=1fc25a08605c4cd1\"}"}', NULL), - (1172891, '0x64a35212400b209de998232f308426a90d2be3fc', 1010, 1, '2024-05-14 19:49:08+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 421, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6bYMxH4SsLuk4Z4gRrBOjH?si=NLRoJfI9QYS-VM8leEzOWA\"}"}', NULL), - (71653, '0x64d8361375c0f3f39d3b0755bf9a5f3798665031', 0, 1, '2024-05-04 23:52:56+00', 0, 0, '{"fid": 1265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f618f59-2290-4350-100a-4b5d10abef00/original", "profile": {"bio": {"text": "Product, Design & Cinema | Player /fbi | FID #1265 ", "mentioned_profiles": []}}, "username": "akhil-bvs", "power_badge": true, "display_name": "akhil", "active_status": "inactive", "verifications": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "follower_count": 272, "custody_address": "0xdf055eb92e2c97d7da4036278d145458eb11811c", "following_count": 77, "verified_addresses": {"eth_addresses": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/talktime/haymaker?referral_source=link\"}"}', NULL), - (94776, '0xfc108806c07f05a297c4335ef7f7bbb8b10d6efd', 0, 1, '2024-05-05 01:11:49+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/i2AKW\"}"}', NULL), - (125464, '0xb8aeb04f8f51d100052f0012b4bdd223bc9339cb', 0, 1, '2024-05-05 05:29:02+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/whale-manifest-tones?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (93138, '0x581bb654b2bbb07e7c8b6df7e43449555ea7e5da', 10, 1, '2024-05-05 01:06:36+00', 10, 25, '{"fid": 510131, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4321b5d2-0de8-428c-5c73-73564af13100/original", "profile": {"bio": {"text": "Committed to the art of healing and the science of medicine, shaping a future where health prevails\n", "mentioned_profiles": []}}, "username": "!510131", "power_badge": false, "display_name": "Sina", "active_status": "inactive", "verifications": ["0xbb71cc128f080e82be98c5dd2e7d75e971abb2b9"], "follower_count": 45, "custody_address": "0x9a64381d05d9d5af06019913d5f8078ec83b8a33", "following_count": 114, "verified_addresses": {"eth_addresses": ["0xbb71cc128f080e82be98c5dd2e7d75e971abb2b9"], "sol_addresses": ["5zJfU3ijo8y9zXUVamTdTxNFQRjDPy6PBNwPR3Drny3Y"]}}', '{"{\"url\":\"https://on.soundcloud.com/2UHbt\"}"}', NULL), - (92529, '0x38572efe3cbe089b6d31bf3dc5757088d3f11f2f', 0, 1, '2024-05-05 00:59:41+00', 0, 4, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1061, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1809, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4rbR5E789mRBANimW1u2Pm?si=4c0cb568189743bb\"}"}', NULL), - (93878, '0x4c3d3a3fb112cd770fd20af8a14d20071bbfc002', 0, 1, '2024-05-05 01:08:37+00', 0, 1, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3478, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3396, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p9HTmXLMoZHKKho66\"}"}', NULL), - (93888, '0xa1b2df76cee8edce08c116d6a707d79c945a9696', 32, 1, '2024-05-05 01:08:32+00', 0, 25, '{"fid": 510131, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4321b5d2-0de8-428c-5c73-73564af13100/original", "profile": {"bio": {"text": "Committed to the art of healing and the science of medicine, shaping a future where health prevails\n", "mentioned_profiles": []}}, "username": "!510131", "power_badge": false, "display_name": "Sina", "active_status": "inactive", "verifications": ["0xbb71cc128f080e82be98c5dd2e7d75e971abb2b9"], "follower_count": 45, "custody_address": "0x9a64381d05d9d5af06019913d5f8078ec83b8a33", "following_count": 115, "verified_addresses": {"eth_addresses": ["0xbb71cc128f080e82be98c5dd2e7d75e971abb2b9"], "sol_addresses": ["5zJfU3ijo8y9zXUVamTdTxNFQRjDPy6PBNwPR3Drny3Y"]}}', '{"{\"url\":\"https://on.soundcloud.com/RfBoZ\"}"}', NULL), - (102708, '0x7c5a6530752d01c8291c5245eca93a3011cdc0bc', 0, 1, '2024-05-05 02:05:22+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xCQyf\"}"}', NULL), - (105820, '0x7dc842a771673e63006679b09a3a4daa632526d9', 0, 1, '2024-05-05 02:27:20+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1102, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 889, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S5ZJMDMUm5iZWR2b7\"}"}', NULL), - (105172, '0x07f1abe833155833321468f213f1fe7251755129', 0, 1, '2024-05-05 02:22:35+00', 0, 0, '{"fid": 498079, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a19e253-d293-4df6-4ab2-d13406a3d000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "koachdave", "power_badge": false, "display_name": "Dave ", "active_status": "inactive", "verifications": ["0x05803c77427df62d65b4cef38c743580e0582963"], "follower_count": 2, "custody_address": "0xec6e1fd7510343eefd28f0c4473e2a0365370e2b", "following_count": 27, "verified_addresses": {"eth_addresses": ["0x05803c77427df62d65b4cef38c743580e0582963"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BppUXqr45JrKCJHq7\"}"}', NULL), - (92743, '0x984c59c299ef7ea1e41269dceae982681110c995', 30, 1, '2024-05-05 01:00:18+00', 0, 2, '{"fid": 486173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1921e92c-b93e-496c-aeb2-e265d0dace00/rectcrop3", "profile": {"bio": {"text": "IQ 50 Trader / 고양이 전문점 / degen maxi", "mentioned_profiles": []}}, "username": "ginoman2", "power_badge": false, "display_name": "Norman", "active_status": "inactive", "verifications": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "follower_count": 1903, "custody_address": "0x44238f7a19231f48f72c41d451b18a7e815c5dba", "following_count": 1608, "verified_addresses": {"eth_addresses": ["0x4fe621c90112a01634c342514b2975b8411a2c2c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZxA8WmdhAewYvFSf6\"}"}', NULL), - (93610, '0x586173070becabe615d880d687a6844c5e2fe49f', 0, 1, '2024-05-05 01:07:02+00', 0, 2, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1308, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 677, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6tohHT5sQRMjdWHMNn190u?si=PQ9FMBENRTS8L5aCwjheGA\"}"}', NULL), - (92738, '0xfafc02b3899005d6bdf052e43f091b50a5844be3', 0, 1, '2024-05-05 01:00:31+00', 0, 5, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1061, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1809, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3QQyaBhRNcDmqpWRssT7dh?si=f7c9ee9d3fa24448\"}"}', NULL), - (96793, '0xf45b87784ab2c15aa949eb5f6f0f5d41af896ac8', 0, 1, '2024-05-05 01:19:07+00', 0, 0, '{"fid": 319367, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/clv2xwpu200nlkon8z9rtq2hq.png", "profile": {"bio": {"text": "Degentlemen #9287🎩🖤", "mentioned_profiles": []}}, "username": "vykkto.eth", "power_badge": false, "display_name": "vykkto🎩", "active_status": "inactive", "verifications": ["0x4e2c8e02661ba1bb37627aaa7e0926c1738643f4"], "follower_count": 530, "custody_address": "0x1f673b9ccd7ea4c98a31b1a64ba29bfc6f9633e3", "following_count": 383, "verified_addresses": {"eth_addresses": ["0x4e2c8e02661ba1bb37627aaa7e0926c1738643f4"], "sol_addresses": ["879Ng8urKPCX2sfEJypMnjBsR5DrqUUL1Q4mzYTrngj7"]}}', '{"{\"url\":\"https://www.sound.xyz/deathpixie/hell-girl?referral=0x4e2c8e02661ba1bb37627aaa7e0926c1738643f4&referral_source=link\"}"}', NULL), - (58590, '0x55e4fe0e7929cd081c5bc78cd06544d89f713641', 0, 1, '2024-05-04 23:14:41+00', 0, 1, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c012aa91-d8a4-4287-f787-fcbd32540f00/original\"}","{\"url\":\"https://www.sound.xyz/\"}"}', NULL), - (125301, '0xe4198b89f2a4d928c99ceb93aceac5889993cd43', 0, 1, '2024-05-05 05:25:41+00', 0, 1, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\nI like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 114, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 338, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/user-935907819-824451083/dztsjzqr5xue\"}"}', NULL), - (113448, '0x7eddde7e6b5119220769d1b855cb2c41fed8db5a', 0, 1, '2024-05-05 04:14:18+00', 0, 2, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1539, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1246, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xmtvYagAFEsM69Wr5\"}"}', NULL), - (92744, '0xc3b47605356103b0b12fca43408bd059658dc33d', 0, 1, '2024-05-05 01:00:32+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 기타 황혼 커버 by 임형희 on #SoundCloud https://on.soundcloud.com/ZQSyy\"}"}', NULL), - (92739, '0xe27d57339379c10ac53566e8f22624e81ca4daf1', 0, 1, '2024-05-05 01:00:59+00', 0, 3, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZQSyy\"}"}', NULL), - (706950, '0x75e4bed6777ddeb73798ef2432d2fd15de8d5322', 0, 1, '2024-05-06 18:28:45+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 37, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/fuxk-sex-trafficking-sexual-abuse-rape?referral_source=link\"}"}', NULL), - (101155, '0x4f4adea789f76670866e281a14ac0af603c3e76f', 0, 1, '2024-05-05 01:50:08+00', 0, 0, '{"fid": 414350, "object": "user", "pfp_url": "https://i.imgur.com/eT1zsnC.jpg", "profile": {"bio": {"text": "Noodle Guardian.\nCrypto Novel.\n국수 보호기\n암호 소설\n仮想通貨、小説、ラーメンをたしなみます。読書、文芸創作、ゲームが好きな人は絡んでください。\nラーメンを護り、ラーメンに護られた男。", "mentioned_profiles": []}}, "username": "hashedhaggy", "power_badge": false, "display_name": "Noodle Guardian Haggy🍡🍜", "active_status": "inactive", "verifications": ["0x1bfae73955dc79636d9ec09c3981c9e6a0366e5d", "0x7ff2c7118c349ff3edad75f685d25a6c01715ba1"], "follower_count": 622, "custody_address": "0xfd82a190ea9a47400c763cbd629c00a38103a662", "following_count": 495, "verified_addresses": {"eth_addresses": ["0x1bfae73955dc79636d9ec09c3981c9e6a0366e5d", "0x7ff2c7118c349ff3edad75f685d25a6c01715ba1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xHqHy9dNi6VBiGECA\"}"}', NULL), - (92742, '0x9432c7b0a7fb009112724c7325cb6f4bdb830f3b', 0, 1, '2024-05-05 01:00:42+00', 0, 2, '{"fid": 404408, "object": "user", "pfp_url": "https://i.imgur.com/tJW0QTg.jpg", "profile": {"bio": {"text": "A Green Sheep living in Korea🐏 ,\nI mainly post about daily life and crypto.\nAlso an embedded and web full-stack developer, merging tech with daily life😊", "mentioned_profiles": []}}, "username": "greensheep", "power_badge": false, "display_name": "GreenSheep🐏🎩", "active_status": "inactive", "verifications": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "follower_count": 2099, "custody_address": "0x063a87a2b02fd6d99c6bd494d6d65a6503881570", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/42Jasod5nyqMk7djLdYXk0?si=2iJ2MG86SiqlJNvYra8xrQ\"}"}', NULL), - (103049, '0xf49fa0b7009b10183b9c74c413e622786444cd78', 0, 1, '2024-05-05 02:09:06+00', 0, 0, '{"fid": 489641, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/96929bb2-7bf4-4834-2dc9-06ad53a89100/rectcrop3", "profile": {"bio": {"text": "Highlighting new song releases, new/featured artists, music news, live events and more… \n-\n(@concert_ on Drakula until account merge is available) ", "mentioned_profiles": []}}, "username": "concert", "power_badge": false, "display_name": "Drakula Music", "active_status": "inactive", "verifications": ["0xed1cf57e559f3e4d4425bd4513c7d0ff82cfe0a7"], "follower_count": 49, "custody_address": "0x68266abbd27f37b698a20df0866712d922450eac", "following_count": 149, "verified_addresses": {"eth_addresses": ["0xed1cf57e559f3e4d4425bd4513c7d0ff82cfe0a7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wz52X\"}"}', NULL), - (105821, '0xb6a88fafb71c79647aff300e0559a88375a3335f', 0, 1, '2024-05-05 02:27:01+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼..", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/snokey/udcv\"}"}', NULL), - (93611, '0xefda20a9b8a16995ab4271dca2e6ac8e373cbcb7', 110, 1, '2024-05-05 01:07:49+00', 5, 25, '{"fid": 510131, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4321b5d2-0de8-428c-5c73-73564af13100/original", "profile": {"bio": {"text": "Committed to the art of healing and the science of medicine, shaping a future where health prevails\n", "mentioned_profiles": []}}, "username": "!510131", "power_badge": false, "display_name": "Sina", "active_status": "inactive", "verifications": ["0xbb71cc128f080e82be98c5dd2e7d75e971abb2b9"], "follower_count": 45, "custody_address": "0x9a64381d05d9d5af06019913d5f8078ec83b8a33", "following_count": 115, "verified_addresses": {"eth_addresses": ["0xbb71cc128f080e82be98c5dd2e7d75e971abb2b9"], "sol_addresses": ["5zJfU3ijo8y9zXUVamTdTxNFQRjDPy6PBNwPR3Drny3Y"]}}', '{"{\"url\":\"https://on.soundcloud.com/m8hLt\"}"}', NULL), - (93612, '0x9c74d8822c477d6627f634d04ba164974e98ab62', 0, 1, '2024-05-05 01:07:42+00', 0, 1, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1406, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1692, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Np22eTNX41viSAtT9\"}"}', NULL), - (91102, '0xece3cacba8cac8bbb818291aa0b4fddc02976e32', 0, 1, '2024-05-05 00:49:42+00', 0, 0, '{"fid": 507441, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c92cf50-b0c3-4054-c8b7-153bf453fb00/rectcrop3", "profile": {"bio": {"text": "f4f 100%", "mentioned_profiles": []}}, "username": "!507441", "power_badge": false, "display_name": "gaejuky", "active_status": "inactive", "verifications": ["0xba46dafa0f75b8a2ebb00f0f5d5ee3f0f29a8a7f"], "follower_count": 503, "custody_address": "0x13d66dd25a26cf2664fcaf802425eaa1054182e8", "following_count": 766, "verified_addresses": {"eth_addresses": ["0xba46dafa0f75b8a2ebb00f0f5d5ee3f0f29a8a7f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Love Situation (911) by Blanks on #SoundCloud https://on.soundcloud.com/U8gD3\"}"}', NULL), - (89561, '0x71eb27a83d723dc8210e704110da5f142707c4dd', 0, 1, '2024-05-05 00:45:55+00', 0, 1, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3478, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3396, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DG4YJqmWnTGsxffR8\"}"}', NULL), - (96385, '0x9e35f69dc1c64b60398960f004031ca23d831aeb', 0, 1, '2024-05-05 01:17:06+00', 0, 0, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 884, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1010, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/candela-radio/wake-me-up-avicii?si=fc659c7524294bb6bdcaffbeadd73381&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (94275, '0x60844655f6490e686eb97cdbc5c1f7fd6100f415', 0, 1, '2024-05-05 01:09:22+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mMh7k\"}"}', NULL), - (101159, '0x5d86ed122065b2c86a26f4e95cff471f15f2f528', 0, 1, '2024-05-05 01:50:17+00', 0, 3, '{"fid": 500345, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7194d65a-385a-4117-d0b8-9c9edd68e600/rectcrop3", "profile": {"bio": {"text": "Love Crypto, Stocks❤️", "mentioned_profiles": []}}, "username": "ehxin1234", "power_badge": false, "display_name": "ehXin🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "follower_count": 513, "custody_address": "0x9ff2214b14e4089191bb7b51a911d31073d0ebef", "following_count": 900, "verified_addresses": {"eth_addresses": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5zoGBq6N98J1NnLeB2OPPy\"}"}', NULL), - (109914, '0x258c8cb496b4b7d337707fde94916d7b09644244', 0, 1, '2024-05-05 03:36:17+00', 0, 0, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🍖🎩🔵", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1363, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1903, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/f7d2s0jwx3qs/buzz-mp-mp3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (95243, '0x9c5669b2c544d53b8ae8286088f68e5a3c1d0c55', 0, 1, '2024-05-05 01:13:04+00', 0, 1, '{"fid": 316311, "object": "user", "pfp_url": "https://i.imgur.com/pOeNJeq.gif", "profile": {"bio": {"text": "딸기마을이장 / 한글마을 / 웃음마을 / 나눔에어드랍 / 딸기재단 (strawberry_trump@드라큘라)", "mentioned_profiles": []}}, "username": "agoda", "power_badge": false, "display_name": "김딸기 🍓", "active_status": "inactive", "verifications": ["0x614b070d71444268d5957756bd7aeccbe663051b"], "follower_count": 2447, "custody_address": "0x1902a3cb1db26409454e0af9eb2df6a698d1268c", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0x614b070d71444268d5957756bd7aeccbe663051b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonsleaf/mark-knopfler-cover-a-love-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (101329, '0x476b0e37ebdc4b93f2d5bd189aceee0b9275b397', 0, 1, '2024-05-05 01:51:43+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3479, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jt1m8\"}"}', NULL), - (91238, '0x3c09f9a2303deb1acd65e443353e086e894211a4', 0, 1, '2024-05-05 00:51:22+00', 0, 0, '{"fid": 9318, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmPASmu4tqbgwuceqWtHbEZTrn24zsva1NDBxpfzEjVpQR/5451.png", "profile": {"bio": {"text": "subtraction speculation visualization\nHYPERPEOPLE & /dark-ops", "mentioned_profiles": []}}, "username": "catra.eth", "power_badge": true, "display_name": "catra", "active_status": "inactive", "verifications": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "follower_count": 713, "custody_address": "0xc656b9dc4fc21cb0a01d3efddb8a68c123ddc31b", "following_count": 179, "verified_addresses": {"eth_addresses": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "sol_addresses": ["DFqgM6sTHJknZ2NDPWA3PSFCeEEASZeLFyg6JWNaLcr1", "AKT6jmnPAvvKPiFNwsrLAdb8hMpHADWV5fr6TsGiNB7c"]}}', '{"{\"url\":\"https://on.soundcloud.com/d4JqG\"}"}', NULL), - (92893, '0x64784bfd41274aef2b701040c1913fafd6329478', 0, 1, '2024-05-05 01:04:19+00', 0, 5, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XRhXu\"}"}', NULL), - (539209, '0x4df46cbd21a3deace1e9fd2537cd1b93dda86bf2', 0, 1, '2024-05-06 09:51:09+00', 0, 0, '{"fid": 426559, "object": "user", "pfp_url": "https://i.imgur.com/r6xYkqZ.jpg", "profile": {"bio": {"text": "선팔 / 방문남겨주시면 찾아가융 💕 투더문 degen 🚀 🌛 ", "mentioned_profiles": []}}, "username": "ygygkym", "power_badge": false, "display_name": "Minji_kim", "active_status": "inactive", "verifications": ["0xd5a8f4df9163c0a76301bbfc0152b35b70e46c5e"], "follower_count": 1885, "custody_address": "0x1d6296998381298d3f040c6d4a95a6d49096bcc7", "following_count": 1351, "verified_addresses": {"eth_addresses": ["0xd5a8f4df9163c0a76301bbfc0152b35b70e46c5e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Bagatelle No. 25 in A Minor, WoO 59 \\\"Für Elise\\\" by Katya Kramer-Lapin on #SoundCloud https://on.soundcloud.com/MJkWK\"}"}', NULL), - (93137, '0x000d656a335363aac1bc7247af3bea1106026251', 0, 1, '2024-05-05 01:06:37+00', 0, 0, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1406, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1692, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KYaqRpAozxRzHqh2A\"}"}', NULL), - (109628, '0xa50e1a5166cdc18b1df04b528681f2a2347a4582', 0, 1, '2024-05-05 03:29:22+00', 0, 1, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼.. \nI love musics!!! ", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 426, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/junoflo/junoflo-turn-up-tokyo\"}"}', NULL), - (110016, '0xae6e9aecd88c78f37a355dce221a79f7589a9cd1', 0, 1, '2024-05-05 03:38:00+00', 0, 0, '{"fid": 510268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/898f749f-e8b3-4020-1ac6-eb543d004e00/rectcrop3", "profile": {"bio": {"text": "Hello world", "mentioned_profiles": []}}, "username": "!510268", "power_badge": false, "display_name": "doonut", "active_status": "inactive", "verifications": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "follower_count": 312, "custody_address": "0xc1b763b680989873b5abb1bf82730b339bddd5f0", "following_count": 430, "verified_addresses": {"eth_addresses": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/medianoche-1/cubanix-luv-hertz?in=sc-playlists-kr/sets/disco-fever&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (95631, '0xab03b9c4ba84f9644d2928db55e932445e678bdd', 0, 1, '2024-05-05 01:15:23+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 947, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 877, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HHHRt5TH5hdEXasg7\"}"}', NULL), - (91644, '0xa67e09cfca97bf2683e27f4e08de6c1e1a37c6d3', 0, 1, '2024-05-05 00:53:42+00', 0, 0, '{"fid": 419853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9bc6e4e3-bb45-40a2-8db9-38c6260e5f00/original", "profile": {"bio": {"text": "A society grows great when old men plant trees in whose shade they will never sit. Good people do things for other people. That''s it, The End. ", "mentioned_profiles": []}}, "username": "doomajigs", "power_badge": false, "display_name": "Doomajigs 🎩 🔵", "active_status": "inactive", "verifications": ["0x7baca18b8b632595dddb9e0b4bde13a857be2e43"], "follower_count": 210, "custody_address": "0x230930c6776b391928ec2e52724da89bf94d427b", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x7baca18b8b632595dddb9e0b4bde13a857be2e43"], "sol_addresses": ["3r971graD6n8RtSHtkAz2abWkJGM8ZUoSgbKoMbsLYxK"]}}', '{"{\"url\":\"https://soundcloud.com/search?q=paolo%20nutini%20IRON%20SKY\"}"}', NULL), - (95641, '0xb2b224a3093f7855894276094da040c4d64e2c0f', 0, 1, '2024-05-05 01:14:33+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/y21gJ\"}"}', NULL), - (240802, '0x9f042f41953b10897eb82c99e30a05ac9e37cd67', 0, 1, '2024-05-05 14:02:44+00', 0, 2, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2349, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4108, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki33/zico-feat-jennie-spot-1\"}"}', NULL), - (101337, '0xfcf9a2c4c8bf7a98854b597a5022c96e52ebbe26', 0, 1, '2024-05-05 01:51:52+00', 0, 3, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1407, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1694, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iWoL1dDYceJaLX3G9 홍대가려면 어디로 가야됑ㅅ? 뉴진스 하입보이요\"}"}', NULL), - (109678, '0xe31be1ad8c73345df55d744ebfb1f19ba63048e9', 0, 1, '2024-05-05 03:29:36+00', 0, 0, '{"fid": 333546, "object": "user", "pfp_url": "https://i.imgur.com/wkTuNjc.jpg", "profile": {"bio": {"text": "Airdrop hunting", "mentioned_profiles": []}}, "username": "456zaazaoo", "power_badge": false, "display_name": "The hunt🍖 🎩", "active_status": "inactive", "verifications": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "follower_count": 975, "custody_address": "0x76285063c9bbc8dcd4d22e0eaf96a10250cb8708", "following_count": 1259, "verified_addresses": {"eth_addresses": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/allegra-jordyn/catch-me-if-you-can?in=buzzing-playlists/sets/buzzing-pop&si=41100d3d30434b1fa10164ca020667b2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108422, '0xb9da34944f4d1950b739e76856b7cd419d8f2dc2', 0, 1, '2024-05-05 02:51:28+00', 0, 1, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 948, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bDh9vCrtVhfRSQgp9\"}"}', NULL), - (110060, '0x464ed788445b079be284d2d5329dac3b9b3e75c2', 0, 1, '2024-05-05 03:39:21+00', 0, 5, '{"fid": 425915, "object": "user", "pfp_url": "https://i.imgur.com/Mlu6njb.png", "profile": {"bio": {"text": "Hi, I''m POVI 🐻‍❄️✨ \nWould you be my friend? 🐻‍❄️✨✨\nT2T ", "mentioned_profiles": []}}, "username": "povi", "power_badge": false, "display_name": "Povi🐻‍❄️", "active_status": "inactive", "verifications": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "follower_count": 3407, "custody_address": "0x066d863acc9e5464adbf6fb4eac6ec02d40bcd6f", "following_count": 2196, "verified_addresses": {"eth_addresses": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mmomusic/maplestory-above-the-treetops?in=eunbi-lee-213534132/sets/bgm&si=e822bf349d144e44a6d4c799521043bc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (117597, '0x7dda45df32a13fe6ff2969c54a5bf3ed2333b541', 0, 1, '2024-05-05 04:38:48+00', 0, 0, '{"fid": 428492, "object": "user", "pfp_url": "https://i.imgur.com/gBRj7SC.jpg", "profile": {"bio": {"text": "i like cat🐈 \ndrakula\nhttps://drakula.app/user/gwon?invite=kQTKc7\n\n\n\n", "mentioned_profiles": []}}, "username": "gwon", "power_badge": false, "display_name": "Meow🐈 🐈 🐈 ", "active_status": "inactive", "verifications": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "follower_count": 3452, "custody_address": "0xdd5bcf2ca57a4dc98f1e154bff1c124c3d1682f3", "following_count": 2327, "verified_addresses": {"eth_addresses": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-740210497-553820324/sets/90s-2000s-hip-hop-and-r-b-mix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (110061, '0x52f400e5c946f97f7e8396b2acf96b7ff8e449f7', 0, 1, '2024-05-05 03:39:00+00', 0, 0, '{"fid": 316238, "object": "user", "pfp_url": "https://i.imgur.com/Fn4r5cV.png", "profile": {"bio": {"text": "ใครอยากเป็นเศรษฐี ?\n\nWho wants to be a millionaire?", "mentioned_profiles": []}}, "username": "nakanpro", "power_badge": false, "display_name": "🍖nakanpro🍖🔄🎩", "active_status": "inactive", "verifications": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "follower_count": 2269, "custody_address": "0xc6f8cec56d094d9ec265fab4c55241c9f51528a2", "following_count": 2241, "verified_addresses": {"eth_addresses": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nk-nakarin-keyura/freetalk-lo-fi-type-beat?si=d92d1bb840fe4195a192a6c476b97a2f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (125465, '0xa3c710a194897ca4a7791c3388da8201ceed210b', 0, 1, '2024-05-05 05:28:47+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/divinity?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (101547, '0x2af5f18407ab7470c30d56afd209e2ea35a9842e', 0, 1, '2024-05-05 01:52:12+00', 0, 0, '{"fid": 372462, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bba36d9-417e-4e10-23be-0f61b9c1ce00/original", "profile": {"bio": {"text": "Me Create ~{/^.^\\}~ Me Rave\n", "mentioned_profiles": []}}, "username": "gboom", "power_badge": false, "display_name": "🍄Boom🎩ᖽ", "active_status": "inactive", "verifications": ["0xd00b8fff8c61ca45debeb523176a685ae0763434"], "follower_count": 62, "custody_address": "0xbc38a53b3f968ec2c8f87d4aed3df0017ea249c2", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xd00b8fff8c61ca45debeb523176a685ae0763434"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5XhSFq1IM3ux0vZdYeoYxf?si=ik6-6z7RRzebJa_cjuSPLw\"}"}', NULL), - (109674, '0xdfac5f7f336b27954f78039f0cc451b674d278ae', 0, 1, '2024-05-05 03:29:45+00', 0, 4, '{"fid": 458718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05013181-a9e0-4836-da82-c3af4eb54e00/rectcrop3", "profile": {"bio": {"text": "Thank for follower 💓😘\n", "mentioned_profiles": []}}, "username": "armtwt", "power_badge": false, "display_name": "Ammnaka🎩🍖🔮", "active_status": "inactive", "verifications": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "follower_count": 675, "custody_address": "0x43f59acaec0a984686bd8121796af0bdc016eb08", "following_count": 837, "verified_addresses": {"eth_addresses": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/30ho6wAl9w53sCtcqzHVMA?si=sYu5vH0GQcq_yuLBrfOWaA\"}"}', NULL), - (125556, '0x47d13af975933b06e21622fc4d704e68dbc6e777', 0, 1, '2024-05-05 05:29:32+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/wowow?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (137481, '0xf64c42b5268cb4c30acfffda843a7eb2d6fe9f29', 0, 1, '2024-05-05 06:35:20+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GW7UQ\"}"}', NULL), - (97195, '0x2f722221c000900915c859f93ff40fd867385487', 0, 1, '2024-05-05 01:19:39+00', 0, 0, '{"fid": 385242, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiggp52wnkuqowiewtsdpsj6lu2avnndesprstiddjwguqdgyfbpgu", "profile": {"bio": {"text": "i love farcaster\nCH host:/ogiri /casnews", "mentioned_profiles": []}}, "username": "hareiwa", "power_badge": false, "display_name": "🌮hareiwa🎩", "active_status": "inactive", "verifications": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "follower_count": 1385, "custody_address": "0xf7c15b2215c1a2c7390746209dee17f98aca29f1", "following_count": 761, "verified_addresses": {"eth_addresses": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "sol_addresses": ["CKpihsP5fsG5KckWo7fUZnsVDYXy2Zpx9c1PFam39eFK"]}}', '{"{\"url\":\"Listen to YOASOBI 夜に駆ける(inst) by YOASOBI on #SoundCloud https://on.soundcloud.com/w8DY6\"}"}', NULL), - (101545, '0xd18d802b8ba379da28448325106de55cc636ea11', 0, 1, '2024-05-05 01:52:48+00', 0, 0, '{"fid": 409058, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c15dcb51-4870-4679-a255-0806c9188300/rectcrop3", "profile": {"bio": {"text": "🇰🇷🥑👍♻️🎩🍖\nDegen 1$ 📈🔥\nHam 1$ 📈🔥\n", "mentioned_profiles": []}}, "username": "jjury", "power_badge": false, "display_name": "Avo🎩🍖", "active_status": "inactive", "verifications": ["0x0fb4772a2e06dc905afd79bd94a10b950c692d8e"], "follower_count": 3924, "custody_address": "0xaa22c9696d2e0d81f202a17cb2a7890cc1d97044", "following_count": 2811, "verified_addresses": {"eth_addresses": ["0x0fb4772a2e06dc905afd79bd94a10b950c692d8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cqG9bSnixiB8TDVcA\"}"}', NULL), - (113142, '0xdddc65138f8b6a79d8a9e489edbbfd10f5e61e4f', 0, 1, '2024-05-05 04:07:40+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼.. \nI love musics!!! ", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 620, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/snokey/udcv\"}"}', NULL), - (103535, '0x24d696ddf0e26a28b6189efe46f8036d960e11af', 0, 1, '2024-05-05 02:13:11+00', 0, 3, '{"fid": 499426, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c59ad12-9c89-43a2-26a8-ac05ed9ef900/original", "profile": {"bio": {"text": "F4F Come on bro!", "mentioned_profiles": []}}, "username": "wonnny", "power_badge": false, "display_name": "jay", "active_status": "inactive", "verifications": ["0x03e054022d3756429bbfc17e788a44781b221649"], "follower_count": 1998, "custody_address": "0x354b8e1a7c71b772cc7ca046b5b5816c7caa2795", "following_count": 2477, "verified_addresses": {"eth_addresses": ["0x03e054022d3756429bbfc17e788a44781b221649"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/maroon-5/memories-dillon-francis-remix?si=fd36890efe814245ba35b93b44b58166&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109851, '0x22f9bcadcdf3be56118f341f607ae8ef49fd606a', 0, 1, '2024-05-05 03:34:35+00', 0, 5, '{"fid": 316982, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ccd7380-b6d6-4fb2-9d84-40b8431ae400/original", "profile": {"bio": {"text": "I sell ice creams in Zora / Objkt\n", "mentioned_profiles": []}}, "username": "whoisponyboy", "power_badge": false, "display_name": "PONY BOY 🎠", "active_status": "inactive", "verifications": ["0x4b764659c758928aa6b8b09e703618d46d2136b5"], "follower_count": 213, "custody_address": "0x73b17723071c45a0d4292a59efe93679ae845564", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x4b764659c758928aa6b8b09e703618d46d2136b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4nrgArc8s5IkSerbkc98dh?si=l3GgauQwSjOq16LNhnMDFw\"}"}', NULL), - (103617, '0x8afed2a2909eed0730d3db4e0368e9bb434e5aed', 0, 1, '2024-05-05 02:13:49+00', 0, 0, '{"fid": 498079, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a19e253-d293-4df6-4ab2-d13406a3d000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "koachdave", "power_badge": false, "display_name": "Dave ", "active_status": "inactive", "verifications": ["0x05803c77427df62d65b4cef38c743580e0582963"], "follower_count": 2, "custody_address": "0xec6e1fd7510343eefd28f0c4473e2a0365370e2b", "following_count": 27, "verified_addresses": {"eth_addresses": ["0x05803c77427df62d65b4cef38c743580e0582963"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MRmmnUH53omBZABB8\"}"}', NULL), - (106124, '0xa079953e70cb1cccf2d75d8f00d47a7cfe171e89', 0, 1, '2024-05-05 02:28:16+00', 0, 4, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1171, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 740, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/z2fGXXnK7BosXd419\"}"}', NULL), - (106123, '0xeda706d693861a6fc66da925accb72c133beafe0', 0, 1, '2024-05-05 02:28:07+00', 0, 0, '{"fid": 314162, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34f4fd5d-f900-4606-d56d-0c6d809a2900/original", "profile": {"bio": {"text": "/punpun\nʕ•ᴥ•ʔ \"Follow Back 1,000,000%\" (ˇ⊖ˇ)\n🇹🇭🙏🏻🇹🇭ตามมาตามกลับไม่จกตา🥰", "mentioned_profiles": []}}, "username": "punpun", "power_badge": false, "display_name": "PunPun 🐰🎩🍖 ⛓️", "active_status": "inactive", "verifications": ["0x82f5b0bd0036cc68915c806294bad95b104ab71c"], "follower_count": 1780, "custody_address": "0xc9fd5bfa858c3dbb71afe2211ef199e745e0befa", "following_count": 1765, "verified_addresses": {"eth_addresses": ["0x82f5b0bd0036cc68915c806294bad95b104ab71c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pakjirahuppee/juepak-gunner?si=4ccadc28369e45a38575d093fee42f10&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (106626, '0xf9b1802f7cabdc3f4487f9a2c0c70f02da6d89a4', 0, 1, '2024-05-05 02:31:10+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1102, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 889, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SyAH3bUXR42XA5GQA\"}"}', NULL), - (1160122, '0x8bee401a93ef1dc0c6509a159cb64f5891fefa53', 0, 1, '2024-05-08 12:39:09+00', 0, 0, '{"fid": 196648, "object": "user", "pfp_url": "https://i.imgur.com/abAc1QU.gif", "profile": {"bio": {"text": "@talusnetwork", "mentioned_profiles": []}}, "username": "nonomnouns", "power_badge": true, "display_name": "Nonom⚫", "active_status": "inactive", "verifications": ["0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b"], "follower_count": 1219, "custody_address": "0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b", "following_count": 432, "verified_addresses": {"eth_addresses": ["0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3daf4CNGod9r7I0ING5fn9?si=tSnFglIxSIOZHKbjLF627w\"}"}', NULL), - (101691, '0x0ba9245fe1e3f7961a17aeeb0c50fc15db1223d0', 0, 1, '2024-05-05 01:53:26+00', 0, 0, '{"fid": 500345, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7194d65a-385a-4117-d0b8-9c9edd68e600/rectcrop3", "profile": {"bio": {"text": "Love Crypto, Stocks❤️", "mentioned_profiles": []}}, "username": "ehxin1234", "power_badge": false, "display_name": "ehXin🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "follower_count": 512, "custody_address": "0x9ff2214b14e4089191bb7b51a911d31073d0ebef", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5zoGBq6N98J1NnLeB2OPPy\"}"}', NULL), - (96028, '0xfcfb887092d9eab02a6a9945b889bd1531d7405f', 10, 1, '2024-05-05 01:16:15+00', 0, 7, '{"fid": 484981, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0247dcb-f75d-40fa-fade-e71da65f9200/rectcrop3", "profile": {"bio": {"text": null, "mentioned_profiles": []}}, "username": "umarnaseer", "power_badge": false, "display_name": "M umar naseer", "active_status": "inactive", "verifications": ["0xfcf1cd40fc0e73819cd486a7cb270cc31641d8b6"], "follower_count": 143, "custody_address": "0xfcf1cd40fc0e73819cd486a7cb270cc31641d8b6", "following_count": 178, "verified_addresses": {"eth_addresses": ["0xfcf1cd40fc0e73819cd486a7cb270cc31641d8b6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/down-the-drain\"}"}', NULL), - (109719, '0xe15ba0cc48d0ae5222d81605e4af52f2d15d36f9', 0, 1, '2024-05-05 03:31:15+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/ads343vkytdo/tws?si=4818ee4921a94a9687a8bcbce2cba563&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (106629, '0x42b0928c12e96f370c75beca9c8415cd84d72a05', 0, 1, '2024-05-05 02:30:37+00', 0, 1, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1087, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 583, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8qvjFnNobmVzpCbh6\"}"}', NULL), - (106628, '0x86f50360657460b449dd21863ce8f8a7e25efbe2', 1010, 1, '2024-05-05 02:30:59+00', 0, 0, '{"fid": 433641, "object": "user", "pfp_url": "https://i.imgur.com/M5ipBUB.jpg", "profile": {"bio": {"text": "Jesus is Lord", "mentioned_profiles": []}}, "username": "dsun", "power_badge": false, "display_name": "dsun", "active_status": "inactive", "verifications": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "follower_count": 10, "custody_address": "0x70b592d73c768671a8587e903df8bd94aa98fa39", "following_count": 59, "verified_addresses": {"eth_addresses": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tobyfox-music/rude-buster?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (97528, '0x873fcef4b5ef6378686ad0964d38d421a2b8d335', 0, 1, '2024-05-05 01:22:24+00', 0, 1, '{"fid": 349228, "object": "user", "pfp_url": "https://i.imgur.com/lLBTHCy.jpg", "profile": {"bio": {"text": "I do cool stuff", "mentioned_profiles": []}}, "username": "crezno", "power_badge": false, "display_name": "Crezno", "active_status": "inactive", "verifications": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "follower_count": 131, "custody_address": "0x9eba3895b3e8e6d46f3df89fd20280b070706950", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/creznohip/broomstick-ride\"}"}', NULL), - (97531, '0xa82ee82d6d668080f4b3364c7d6c2d25b90230bd', 0, 1, '2024-05-05 01:22:30+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zh9b3\"}"}', NULL), - (110122, '0xddfaa5982ec42c42101baa9ff197798bde7d1165', 0, 1, '2024-05-05 03:41:12+00', 0, 2, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/absollutely/newjeans-hype-boy?si=0742ae1ae1d049a39f79318f3aeef5e0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (110124, '0x484e5676ed0e6d5491c296c47bf789774f441728', 0, 1, '2024-05-05 03:40:17+00', 0, 2, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/zico-spot-feat-jennie?si=96a13cd1a82847c4b698d0a4ee1c191c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (97532, '0x76c8bbc90f875de14256f77a6435499adf14133b', 0, 1, '2024-05-05 01:20:38+00', 0, 0, '{"fid": 349228, "object": "user", "pfp_url": "https://i.imgur.com/lLBTHCy.jpg", "profile": {"bio": {"text": "I do cool stuff", "mentioned_profiles": []}}, "username": "crezno", "power_badge": false, "display_name": "Crezno", "active_status": "inactive", "verifications": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "follower_count": 131, "custody_address": "0x9eba3895b3e8e6d46f3df89fd20280b070706950", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/creznohip/mirage-garden\"}"}', NULL), - (101764, '0xa1814a334bea2f9242e1abb1bf3cc7a662a05276', 0, 1, '2024-05-05 01:55:28+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3479, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vGh7c\"}"}', NULL), - (97515, '0x3fc0ac4fb09f05c1cd8c3af72b503d367ff144f2', 0, 1, '2024-05-05 01:21:03+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 947, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 877, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mSBxcyQb5ebGVHsD7\"}"}', NULL), - (113509, '0xd3505eb60721db2126f5f376e27c4b1be92af468', 0, 1, '2024-05-05 04:15:29+00', 0, 0, '{"fid": 433641, "object": "user", "pfp_url": "https://i.imgur.com/M5ipBUB.jpg", "profile": {"bio": {"text": "Jesus is Lord", "mentioned_profiles": []}}, "username": "dsun", "power_badge": false, "display_name": "dsun", "active_status": "inactive", "verifications": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "follower_count": 10, "custody_address": "0x70b592d73c768671a8587e903df8bd94aa98fa39", "following_count": 59, "verified_addresses": {"eth_addresses": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u9uRZYtv8zf3Uuu79\"}"}', NULL), - (97533, '0x649ba99a9d69b23718a65455434ceda6e7b41071', 0, 1, '2024-05-05 01:22:07+00', 0, 0, '{"fid": 349228, "object": "user", "pfp_url": "https://i.imgur.com/lLBTHCy.jpg", "profile": {"bio": {"text": "I do cool stuff", "mentioned_profiles": []}}, "username": "crezno", "power_badge": false, "display_name": "Crezno", "active_status": "inactive", "verifications": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "follower_count": 131, "custody_address": "0x9eba3895b3e8e6d46f3df89fd20280b070706950", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/creznohip/monke-on-the-moon\"}"}', NULL), - (949248, '0x51eca55a74b312553b4cb25ce219915b80e77ecd', 0, 1, '2024-05-07 08:49:17+00', 0, 0, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 48, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x4b1679f20a4a1b7f848ea12497b210f4791f4ac6&referral_source=link\"}"}', NULL), - (103615, '0x4b6880c82c331c58e3efbf3b4395400dc32a6532', 0, 1, '2024-05-05 02:14:26+00', 0, 1, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 614, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 914, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://open.spotify.com/track/1TiZWEsxN85yLJBq56K8mG?si=766d4cd426a94eb3\"}"}', NULL), - (97530, '0xd73fcb6340d7ca410f15c8a5697f4c6f537795ae', 0, 1, '2024-05-05 01:21:38+00', 0, 0, '{"fid": 349228, "object": "user", "pfp_url": "https://i.imgur.com/lLBTHCy.jpg", "profile": {"bio": {"text": "I do cool stuff", "mentioned_profiles": []}}, "username": "crezno", "power_badge": false, "display_name": "Crezno", "active_status": "inactive", "verifications": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "follower_count": 131, "custody_address": "0x9eba3895b3e8e6d46f3df89fd20280b070706950", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/creznohip/linnes-theme-genesis-vers\"}"}', NULL), - (113507, '0x98889a4e94d918c1bbffec7972a37d2f1073d795', 0, 1, '2024-05-05 04:15:21+00', 0, 1, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1407, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1723, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZbrCKjvJf4wWapfi9\"}"}', NULL), - (118885, '0xe6553046b586db86787f810d3b742556145dfa85', 0, 1, '2024-05-05 04:49:56+00', 0, 0, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 615, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/mia-potente/neyo-so-sick?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (117425, '0xd5dd5c751d7b5a008fdd3cf7002dd7a86b5ac73a', 0, 1, '2024-05-05 04:36:49+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3373, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3962, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://open.spotify.com/track/51vRumtqbkNW9wrKfESwfu\"}"}', NULL), - (117599, '0x1cfa722db3d947bcd21bcf495b17d0a234af0d6a', 0, 1, '2024-05-05 04:38:36+00', 0, 0, '{"fid": 428492, "object": "user", "pfp_url": "https://i.imgur.com/gBRj7SC.jpg", "profile": {"bio": {"text": "i like cat🐈 \ndrakula\nhttps://drakula.app/user/gwon?invite=kQTKc7\n\n\n\n", "mentioned_profiles": []}}, "username": "gwon", "power_badge": false, "display_name": "Meow🐈 🐈 🐈 ", "active_status": "inactive", "verifications": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "follower_count": 3452, "custody_address": "0xdd5bcf2ca57a4dc98f1e154bff1c124c3d1682f3", "following_count": 2327, "verified_addresses": {"eth_addresses": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hugo-pecheur-744280348/sets/lo-fi-hip-hop-chillhop?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (102005, '0xc085d19951810ca671996b6f5baf759d24e28f72', 0, 1, '2024-05-05 01:55:42+00', 0, 0, '{"fid": 506580, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/572c2d31-0ed1-423c-b7a2-090c24f86800/original", "profile": {"bio": {"text": "✼ 𐒢ṅߙ୧ᒋ ߙħ୧ 𝔣٥ᒋ୧⳽𝔱 ✼ /forest ", "mentioned_profiles": []}}, "username": "!506580", "power_badge": false, "display_name": "Merkle Forest ", "active_status": "inactive", "verifications": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "follower_count": 3, "custody_address": "0x3a976421c702f965c970e8916b81e6b0846bbf94", "following_count": 69, "verified_addresses": {"eth_addresses": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/spiral-trax/noma-b-se-original-mix\"}"}', NULL), - (97529, '0x822ebfc6b2ee9708ff7b2fcc9fdcdc8d3b94ab7a', 0, 1, '2024-05-05 01:21:50+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 947, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 877, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DkzaAST2to9YENe28\"}"}', NULL), - (97641, '0xab75a6b7dcb49a0d6757acc4564a1acf699fbfbe', 0, 1, '2024-05-05 01:23:50+00', 0, 0, '{"fid": 8634, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2f88d03f-11da-48a5-0da8-53ac59c6b700/rectcrop3", "profile": {"bio": {"text": "A baby daddy with a bad taste in NFT", "mentioned_profiles": []}}, "username": "he", "power_badge": false, "display_name": "Hessamsh.eth 🍖 🧀🔮", "active_status": "inactive", "verifications": ["0x2d801b634331d0b260734b6f1d8064c6101bacc4"], "follower_count": 1958, "custody_address": "0x745d6fa46d674d4bdf05ac206dbc8fd35c0ff514", "following_count": 2006, "verified_addresses": {"eth_addresses": ["0x2d801b634331d0b260734b6f1d8064c6101bacc4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ojw38\"}"}', NULL), - (97638, '0x6bfa3512ae84077803037858389cf7c82eebd73f', 0, 1, '2024-05-05 01:23:53+00', 0, 1, '{"fid": 349228, "object": "user", "pfp_url": "https://i.imgur.com/lLBTHCy.jpg", "profile": {"bio": {"text": "I do cool stuff", "mentioned_profiles": []}}, "username": "crezno", "power_badge": false, "display_name": "Crezno", "active_status": "inactive", "verifications": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "follower_count": 131, "custody_address": "0x9eba3895b3e8e6d46f3df89fd20280b070706950", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/creznohip/tall-mountain\"}"}', NULL), - (102222, '0x56705ccd1de9580effad18a73e8cfe05e3b4bd8d', 0, 1, '2024-05-05 01:57:46+00', 0, 0, '{"fid": 506580, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/572c2d31-0ed1-423c-b7a2-090c24f86800/original", "profile": {"bio": {"text": "✼ 𐒢ṅߙ୧ᒋ ߙħ୧ 𝔣٥ᒋ୧⳽𝔱 ✼ /forest ", "mentioned_profiles": []}}, "username": "!506580", "power_badge": false, "display_name": "Merkle Forest ", "active_status": "inactive", "verifications": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "follower_count": 3, "custody_address": "0x3a976421c702f965c970e8916b81e6b0846bbf94", "following_count": 69, "verified_addresses": {"eth_addresses": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/transmigration_records/tm019-b-skyark-when-it-pours-it-rainseternal-injections-underwater-dub-2444-mstr-mmm /forest\"}"}', NULL), - (110153, '0x546605961435145d2f665db6f3b0e7d7e8b5f77c', 0, 1, '2024-05-05 03:42:10+00', 0, 0, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/anmol-rajoriya/ive-heya-1?si=6d47ff35f6a54339a3a841ce9713dda2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (103553, '0x4dd76f79c333d6cf9f553fec58d0184116428ca1', 0, 1, '2024-05-05 02:12:13+00', 0, 1, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 614, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 914, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://open.spotify.com/track/2QYnONicU24TXbkhtaemOM?si=ec53dc9bb49448ef\"}"}', NULL), - (240364, '0xcdfa6326e9cc17873bee0982917c279cafb02edd', 0, 1, '2024-05-05 14:00:15+00', 0, 2, '{"fid": 503362, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d1112a4-9242-451e-6ff5-7a3724983500/rectcrop3", "profile": {"bio": {"text": "Nice to meet you. I LOVE Warpcast.", "mentioned_profiles": []}}, "username": "dailydaily", "power_badge": false, "display_name": "DamDam🍖", "active_status": "inactive", "verifications": ["0x7e0573c91a9391ec8d4d0eb4dd47e3adffb5c26b"], "follower_count": 974, "custody_address": "0xa27d6ebea8b4c31321c2b4b6e129faa8617ef927", "following_count": 1381, "verified_addresses": {"eth_addresses": ["0x7e0573c91a9391ec8d4d0eb4dd47e3adffb5c26b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gracedaviesofficial/hello-adele?si=3853654dac9f4a9b94a8b32d92f246c7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (99767, '0x549e15f6f06402ce3b8542c2549345cf84babfa1', 0, 1, '2024-05-05 01:38:00+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ikxH4\"}"}', NULL), - (103534, '0x5a36861824d1461de57ad98bfe44933e56cce8dc', 0, 1, '2024-05-05 02:12:02+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 576, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 416, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gJwpSkwEc9Nefyuq9\"}"}', NULL), - (98312, '0xe2016abdefaa9a0d2849ee8fa84eac15596151ab', 0, 1, '2024-05-05 01:26:44+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qXSRd\"}"}', NULL), - (99574, '0x0a1635454c3a5b234e5e286364470fe67ad4753a', 0, 1, '2024-05-05 01:34:11+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wovDe\"}"}', NULL), - (102223, '0x407df267eaa40612b442568cf4fcbe89e05451be', 0, 1, '2024-05-05 01:57:35+00', 0, 9, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2098, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1819, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9zaZRoZJuWsSnm3w9\"}"}', NULL), - (106304, '0x4ad5b9a172da948a9ed4046de1ec37e4ed3a629a', 0, 1, '2024-05-05 02:29:59+00', 0, 1, '{"fid": 214570, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/cluwbae3c01kamhvy175prg45.png", "profile": {"bio": {"text": "Early adopter | Degentlemen #8570", "mentioned_profiles": []}}, "username": "cav4lier.eth", "power_badge": false, "display_name": "cav4lier🎩🐲", "active_status": "inactive", "verifications": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "follower_count": 1070, "custody_address": "0x6ff3403ac94b6d5b79584fc398008f682d2ff591", "following_count": 766, "verified_addresses": {"eth_addresses": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8YxyBG6K8pANMHGW6\"}"}', NULL), - (103144, '0x681e8597610dc44c8cdb9f8cebbfc63a358b58b7', 0, 1, '2024-05-05 02:09:34+00', 0, 12, '{"fid": 423039, "object": "user", "pfp_url": "https://i.imgur.com/vJ1Tpz7.jpg", "profile": {"bio": {"text": "Crypto beginner | Crossfiter", "mentioned_profiles": []}}, "username": "zzangu", "power_badge": false, "display_name": "zzangu", "active_status": "inactive", "verifications": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "follower_count": 1774, "custody_address": "0xe62def6bb2c4486aba21fdcaf64c88d734fa4646", "following_count": 1646, "verified_addresses": {"eth_addresses": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mrtexassoul/moments?si=c82cd7f36872476bbb47a2046ca0ebe8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (137327, '0xc93cdfee720b4170eb1b3f51bba11868e7d9d5bb', 0, 1, '2024-05-05 06:33:14+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oV42o\"}"}', NULL), - (98311, '0xc6c26a3343e88a21615fdc03b71edf8e2f96ba9b', 0, 1, '2024-05-05 01:27:21+00', 0, 0, '{"fid": 349228, "object": "user", "pfp_url": "https://i.imgur.com/lLBTHCy.jpg", "profile": {"bio": {"text": "I do cool stuff", "mentioned_profiles": []}}, "username": "crezno", "power_badge": false, "display_name": "Crezno", "active_status": "inactive", "verifications": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "follower_count": 131, "custody_address": "0x9eba3895b3e8e6d46f3df89fd20280b070706950", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/creznohip/the-reapers-oath\"}"}', NULL), - (97894, '0xbb610b10a40ca3f4c9d4571ac775d73caca6ea5c', 0, 1, '2024-05-05 01:24:53+00', 0, 4, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2098, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1819, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BQMVMnc4USzpcTVY6\"}"}', NULL), - (103934, '0xdbd70ca02da53ca57c80b969a5cd2b1ad7aa7fd9', 0, 1, '2024-05-05 02:15:21+00', 0, 2, '{"fid": 498079, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a19e253-d293-4df6-4ab2-d13406a3d000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "koachdave", "power_badge": false, "display_name": "Dave ", "active_status": "inactive", "verifications": ["0x05803c77427df62d65b4cef38c743580e0582963"], "follower_count": 2, "custody_address": "0xec6e1fd7510343eefd28f0c4473e2a0365370e2b", "following_count": 27, "verified_addresses": {"eth_addresses": ["0x05803c77427df62d65b4cef38c743580e0582963"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qoyidKvQmmvnJKaCA\"}"}', NULL), - (97653, '0x129c3cbfad129585c3677d4a581697c88d77d1bf', 0, 1, '2024-05-05 01:23:11+00', 0, 0, '{"fid": 419853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9bc6e4e3-bb45-40a2-8db9-38c6260e5f00/original", "profile": {"bio": {"text": "A society grows great when old men plant trees in whose shade they will never sit. Good people do things for other people. That''s it, The End. ", "mentioned_profiles": []}}, "username": "doomajigs", "power_badge": false, "display_name": "Doomajigs 🎩 🔵", "active_status": "inactive", "verifications": ["0x7baca18b8b632595dddb9e0b4bde13a857be2e43"], "follower_count": 210, "custody_address": "0x230930c6776b391928ec2e52724da89bf94d427b", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x7baca18b8b632595dddb9e0b4bde13a857be2e43"], "sol_addresses": ["3r971graD6n8RtSHtkAz2abWkJGM8ZUoSgbKoMbsLYxK"]}}', '{"{\"url\":\"https://on.soundcloud.com/Ygx8h85pHVYK6kxU7\"}"}', NULL), - (98310, '0x7b0d8b389b8126cdff7e630abc652027e90e1322', 0, 1, '2024-05-05 01:26:43+00', 0, 1, '{"fid": 316311, "object": "user", "pfp_url": "https://i.imgur.com/pOeNJeq.gif", "profile": {"bio": {"text": "딸기마을이장 / 한글마을 / 웃음마을 / 나눔에어드랍 / 딸기재단 (strawberry_trump@드라큘라)", "mentioned_profiles": []}}, "username": "agoda", "power_badge": false, "display_name": "김딸기 🍓", "active_status": "inactive", "verifications": ["0x614b070d71444268d5957756bd7aeccbe663051b"], "follower_count": 2447, "custody_address": "0x1902a3cb1db26409454e0af9eb2df6a698d1268c", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0x614b070d71444268d5957756bd7aeccbe663051b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gRGQTAZgGjwu6m8L7\"}"}', NULL), - (283233, '0x0b5d7e99538eda8f5775bc8003998d64dd6ab48f', 0, 1, '2024-05-05 18:21:33+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ian_kim/bigbang-last-dance-ian-cover?si=da6ab1fe1b7e47a082c2701b0ab59b10&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (110154, '0x86a637265ee06c5351dc2658e8984e87bc89d9e6', 0, 1, '2024-05-05 03:42:04+00', 0, 0, '{"fid": 398260, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7bb74ec9-bc56-4614-ce15-004499853000/original", "profile": {"bio": {"text": "explore the crypton world.", "mentioned_profiles": []}}, "username": "dfggzsl", "power_badge": false, "display_name": "dfg", "active_status": "inactive", "verifications": ["0x42c94ed7c35acb9296b02a356eb0e270837de9f8"], "follower_count": 6, "custody_address": "0x42c94ed7c35acb9296b02a356eb0e270837de9f8", "following_count": 94, "verified_addresses": {"eth_addresses": ["0x42c94ed7c35acb9296b02a356eb0e270837de9f8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/flashzzz/nostalgic-melodies?si=8f87eac930d34eb4864b060c1cf1862f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (113835, '0xfb9158f6d13790ba03731bd1245e5abf052b9bb8', 0, 1, '2024-05-05 04:21:31+00', 0, 1, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2497, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2513, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8xjdw\"}"}', NULL), - (99710, '0x7c16d4fe7365facea986608cd2b494fd293b3801', 0, 1, '2024-05-05 01:36:19+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nGhSX\"}"}', NULL), - (99765, '0x3f44a1f1259d29cbb773d2fe4dc82f14ade0d7e4', 0, 1, '2024-05-05 01:38:01+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ephE1\"}"}', NULL), - (283230, '0x1e5e50ecc52ef0abc916b1fefe6bc4bf46623355', 0, 1, '2024-05-05 18:21:17+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-551189977/bigbang-bad-boy?si=7c423f4b89604e72bb8b6ad9cebecd5a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (98497, '0x7b49b0b546b22e075ce6e924f696dfc760c07a2a', 0, 1, '2024-05-05 01:28:36+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3478, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6241, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/84nxK\"}"}', NULL), - (98496, '0xc3ed2c5b849600097e05fd9681eebc3adecc000b', 0, 1, '2024-05-05 01:28:13+00', 0, 0, '{"fid": 349228, "object": "user", "pfp_url": "https://i.imgur.com/lLBTHCy.jpg", "profile": {"bio": {"text": "I do cool stuff", "mentioned_profiles": []}}, "username": "crezno", "power_badge": false, "display_name": "Crezno", "active_status": "inactive", "verifications": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "follower_count": 131, "custody_address": "0x9eba3895b3e8e6d46f3df89fd20280b070706950", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/creznohip/spoopycastle-chronicles-the-fantom-rave\"}"}', NULL), - (104187, '0xda35357d0bb2070f8b716b404bfcdf60cfd3a5ad', 0, 1, '2024-05-05 02:17:03+00', 0, 0, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 886, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1010, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/officialhipst3r/the-chainsmokers-dont-let-me-down-ft-daya-hipster-edit?si=66070eb397cb4136ade510f7e24e85ef&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (99572, '0x16d764bc781f32c1d24b8c9562e7d10c8db55490', 0, 1, '2024-05-05 01:34:00+00', 0, 0, '{"fid": 409058, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c15dcb51-4870-4679-a255-0806c9188300/rectcrop3", "profile": {"bio": {"text": "🇰🇷🥑👍♻️🎩🍖\nDegen 1$ 📈🔥\nHam 1$ 📈🔥\n", "mentioned_profiles": []}}, "username": "jjury", "power_badge": false, "display_name": "Avo🎩🍖", "active_status": "inactive", "verifications": ["0x0fb4772a2e06dc905afd79bd94a10b950c692d8e"], "follower_count": 3924, "custody_address": "0xaa22c9696d2e0d81f202a17cb2a7890cc1d97044", "following_count": 2811, "verified_addresses": {"eth_addresses": ["0x0fb4772a2e06dc905afd79bd94a10b950c692d8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A3bm4wzcC7kFWZqv6\"}"}', NULL), - (103618, '0x4892e3c2af4314fb817aa359f757a7628d3ba2f4', 0, 1, '2024-05-05 02:13:34+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 576, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 416, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ftwZLMKUrx992f2q9\"}"}', NULL), - (98781, '0x27880443eca9ec81f9374b6fbbc9471863bdf10f', 0, 1, '2024-05-05 01:29:03+00', 0, 0, '{"fid": 404408, "object": "user", "pfp_url": "https://i.imgur.com/tJW0QTg.jpg", "profile": {"bio": {"text": "A Green Sheep living in Korea🐏 ,\nI mainly post about daily life and crypto.\nAlso an embedded and web full-stack developer, merging tech with daily life😊", "mentioned_profiles": []}}, "username": "greensheep", "power_badge": false, "display_name": "GreenSheep🐏🎩", "active_status": "inactive", "verifications": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "follower_count": 2098, "custody_address": "0x063a87a2b02fd6d99c6bd494d6d65a6503881570", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4rBoCpnlrW5c5F1hiYQ0GT?si=1ayAWfRYRBC-AjI7k1CNQQ&context=spotify%3Aalbum%3A2K41KAlW6n9bVlRCQPVcSZ\"}"}', NULL), - (99178, '0x985bd6412296bc6657aeb212360f11f709a37e9e', 0, 1, '2024-05-05 01:33:06+00', 0, 0, '{"fid": 404408, "object": "user", "pfp_url": "https://i.imgur.com/tJW0QTg.jpg", "profile": {"bio": {"text": "A Green Sheep living in Korea🐏 ,\nI mainly post about daily life and crypto.\nAlso an embedded and web full-stack developer, merging tech with daily life😊", "mentioned_profiles": []}}, "username": "greensheep", "power_badge": false, "display_name": "GreenSheep🐏🎩", "active_status": "inactive", "verifications": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "follower_count": 2098, "custody_address": "0x063a87a2b02fd6d99c6bd494d6d65a6503881570", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FP4iWotfwjQi2JUy9\"}"}', NULL), - (110253, '0x8150746222629f8d4302a284f93dc792381851e1', 0, 1, '2024-05-05 03:42:27+00', 0, 9, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2106, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1822, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zAudXpEEf6yUYAd88\"}"}', NULL), - (100694, '0xa5eec765da1f93cbfd909c43972cde8c241cbb86', 0, 1, '2024-05-05 01:45:05+00', 0, 5, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1823, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2181, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3GzYYAiGw2JhFheE7\"}"}', NULL), - (108456, '0x24ca80d4d53ed577da1638d34bdefea2740adc75', 0, 1, '2024-05-05 02:52:33+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 948, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bDh9vCrtVhfRSQgp9\"}"}', NULL), - (99571, '0x0ca0d05b9a6941a4cc1ad068a9fa79f22638a777', 0, 1, '2024-05-05 01:34:42+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7UxcN\"}"}', NULL), - (1172962, '0x33a1754c9b33a1b55ec599eb0b76b6d5d4d549f9', 0, 1, '2024-05-14 21:43:43+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 422, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 238, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1CGT5LV74SNzXFnVmTdAE8?si=66P0Y2VQS8Kf6IXMxurK1A&context=spotify%3Aalbum%3A6geXPbIGVA3lSoA9CrQGhR\"}"}', NULL), - (113804, '0x7025c1a664e724d923a82a6dd7f445687f24d0fe', 0, 1, '2024-05-05 04:20:37+00', 0, 3, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 756, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 1307, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sYfyA27zcrC9XBJYA\"}"}', NULL), - (99766, '0xf069190f08572d35d359e63891c0832ddad42ff2', 0, 1, '2024-05-05 01:37:43+00', 0, 0, '{"fid": 9856, "object": "user", "pfp_url": "https://i.imgur.com/GUSNauP.gif", "profile": {"bio": {"text": "crypto-anarchist · DeFi degen · DeSoc explorer, advisor · hosting /luo · writing 0xluo.eth.limo", "mentioned_profiles": []}}, "username": "0xluo.eth", "power_badge": true, "display_name": "0xLuo", "active_status": "inactive", "verifications": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "follower_count": 30523, "custody_address": "0xffe946d9c24ca4d6f785447a923c9e812e4e7b95", "following_count": 1252, "verified_addresses": {"eth_addresses": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "sol_addresses": ["4QKTgi7wnm6ATi1cvdfsUYhuX5HWbywPpoFoHKJJuB76"]}}', '{"{\"url\":\"https://open.spotify.com/track/09CtPGIpYB4BrO8qb1RGsF\"}"}', NULL), - (99647, '0xb2322c31da6e7da9eed5be6c72c5b64500401bba', 0, 1, '2024-05-05 01:35:32+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YXsbf\"}"}', NULL), - (98846, '0x1ab4a5ca7770f3ef9fbc8d1e4ce8377293a4fa7a', 0, 1, '2024-05-05 01:30:22+00', 0, 0, '{"fid": 256886, "object": "user", "pfp_url": "https://i.imgur.com/P7uxBwb.jpg", "profile": {"bio": {"text": "here to something", "mentioned_profiles": []}}, "username": "equinox", "power_badge": false, "display_name": "equinox", "active_status": "inactive", "verifications": ["0xca9fee553726eda29118cc5a539ee7c8791e3d57"], "follower_count": 194, "custody_address": "0x6d42a60b322f9b6fab5e049f488cf2fb35978278", "following_count": 322, "verified_addresses": {"eth_addresses": ["0xca9fee553726eda29118cc5a539ee7c8791e3d57"], "sol_addresses": ["22wRAZpxdrnpzhZdJuNiCYpZKpzob5viGFDZgDmpWScD"]}}', '{"{\"url\":\"https://soundcloud.com/sabrinacarpenter/sabrina-carpenter-espresso?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (98768, '0x5b4bea8a1ca1f6ff109ef2c249ac62dee2c8ac4b', 0, 1, '2024-05-05 01:29:27+00', 0, 14, '{"fid": 9856, "object": "user", "pfp_url": "https://i.imgur.com/GUSNauP.gif", "profile": {"bio": {"text": "crypto-anarchist · DeFi degen · DeSoc explorer, advisor · hosting /luo · writing 0xluo.eth.limo", "mentioned_profiles": []}}, "username": "0xluo.eth", "power_badge": true, "display_name": "0xLuo", "active_status": "inactive", "verifications": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "follower_count": 30529, "custody_address": "0xffe946d9c24ca4d6f785447a923c9e812e4e7b95", "following_count": 1252, "verified_addresses": {"eth_addresses": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "sol_addresses": ["4QKTgi7wnm6ATi1cvdfsUYhuX5HWbywPpoFoHKJJuB76"]}}', '{"{\"cast_id\":{\"fid\":503116,\"hash\":\"0xb95bea6ffc62d1a196d61c90828807e9079668b6\"}}","{\"url\":\"https://open.spotify.com/track/2K9Ovn1o2bTGqbsABGC6m3\"}"}', NULL), - (102537, '0xf1a5aa179b9a4494ac8679a980713a288a7e71e5', 0, 1, '2024-05-05 02:04:09+00', 0, 0, '{"fid": 425318, "object": "user", "pfp_url": "https://i.imgur.com/Rco8F4p.jpg", "profile": {"bio": {"text": "Crypto lover from SG🇸🇬\nI’m interested in crypto & NFT.\nLet’s share the info💎🚀✨", "mentioned_profiles": []}}, "username": "merlion-crypto", "power_badge": false, "display_name": "Merlion_EX🎩🔮🍖", "active_status": "inactive", "verifications": ["0x3e65e32affb64e91a107fde405e4da20a6ed3b4d"], "follower_count": 465, "custody_address": "0xb2c40a464df94d0e5dfe06b12783c428c6cfc853", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x3e65e32affb64e91a107fde405e4da20a6ed3b4d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/241LHzxP2d6QY7Bo8\"}"}', NULL), - (99648, '0x1314d99c5c3d25fc655d3f40b50ab1a708ecbfa9', 0, 1, '2024-05-05 01:35:49+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Gds6R\"}"}', NULL), - (110252, '0x7a369e362189ea0de0c1e4fc80b46454a991ad9a', 0, 1, '2024-05-05 03:42:25+00', 0, 1, '{"fid": 442638, "object": "user", "pfp_url": "https://i.imgur.com/D0GTBF4.jpg", "profile": {"bio": {"text": "\nI’m in Degen, Ton ecosys ✈️\ntalking to crypto, life\n🫡\n(Sometimes the reaction can be slow, please understand)\n\n전) 여의도 직장인", "mentioned_profiles": []}}, "username": "sonorus", "power_badge": false, "display_name": "sonorus", "active_status": "inactive", "verifications": ["0x99567e06b166c61153afca62bce095db5ffe64eb"], "follower_count": 1358, "custody_address": "0xdeae3f26f7ec54cd017e976d9457075383360d87", "following_count": 1668, "verified_addresses": {"eth_addresses": ["0x99567e06b166c61153afca62bce095db5ffe64eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9KVf87r4LBHmrQwL8\"}"}', NULL), - (283226, '0x71fedde94d10a86752f5a186d6586ff104d69cd4', 0, 1, '2024-05-05 18:21:25+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-581407908/full-album-bigbang-made?si=e677bbc7e8b747c3a1554d6f77dc8c7d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (101160, '0xf00d5fd67cde3a94edf4fede806805987b67e25e', 0, 1, '2024-05-05 01:50:16+00', 0, 4, '{"fid": 500195, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fa80f82-fb15-407a-33c8-969d51950600/original", "profile": {"bio": {"text": "나의 성장", "mentioned_profiles": []}}, "username": "ommu", "power_badge": false, "display_name": "오뮤🎩", "active_status": "inactive", "verifications": ["0x560bff187b3aeb91a05837bc92b69d7def5a54b7"], "follower_count": 879, "custody_address": "0x05afe574f4e4e91d61a04f082592eb6abb78d3e4", "following_count": 808, "verified_addresses": {"eth_addresses": ["0x560bff187b3aeb91a05837bc92b69d7def5a54b7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SywQX3KT7scYPzcB9\"}"}', NULL), - (99776, '0xdaff60ca63b34c30f1165ebef77aa9667c3403e3', 0, 1, '2024-05-05 01:37:49+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/a4S7W\"}"}', NULL), - (99768, '0xd95cd5788e703ccdab83177ac98714ede8c17da1', 0, 1, '2024-05-05 01:37:19+00', 0, 0, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1085, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 583, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LR6nFkBsMg8XyiJa8\"}"}', NULL), - (104574, '0xf5e91eaf592296d676ab2b03366af770968b0f04', 0, 1, '2024-05-05 02:17:35+00', 0, 0, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 614, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 914, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/101204/ayumu-imazu-obsessed-cover?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (105390, '0x84b4e88688d26eb3ec08c7560038ed7c70ed2573', 0, 1, '2024-05-05 02:24:58+00', 0, 0, '{"fid": 399428, "object": "user", "pfp_url": "https://i.imgur.com/tfk208K.jpg", "profile": {"bio": {"text": "I love digital marketing and nft", "mentioned_profiles": []}}, "username": "metanft", "power_badge": false, "display_name": "Meta Nft", "active_status": "inactive", "verifications": ["0x6db11a284803898b0bd4efb09ee8749fee36d00b"], "follower_count": 1342, "custody_address": "0x38319b54a45bc8e26f49990f00d1d469b662405d", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x6db11a284803898b0bd4efb09ee8749fee36d00b"], "sol_addresses": ["2eDfkekYbRXWwjcp5fKpr1ukxmpWhG4JL9h9ZQBSbSJw"]}}', '{"{\"url\":\"https://open.spotify.com/track/1HR2CTi0ytRJIcik1QKdOa\"}"}', NULL), - (105578, '0xbd6ca514ef02c45e45ccf177c8eae7d8aeeecbc6', 0, 1, '2024-05-05 02:26:38+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼..", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/snokey/udcv\"}"}', NULL), - (1160125, '0x00a96055a4cd1d9d949892d180ddb222c70d30aa', 0, 1, '2024-05-08 12:37:35+00', 0, 0, '{"fid": 196648, "object": "user", "pfp_url": "https://i.imgur.com/abAc1QU.gif", "profile": {"bio": {"text": "@talusnetwork", "mentioned_profiles": []}}, "username": "nonomnouns", "power_badge": true, "display_name": "Nonom⚫", "active_status": "inactive", "verifications": ["0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b"], "follower_count": 1219, "custody_address": "0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b", "following_count": 432, "verified_addresses": {"eth_addresses": ["0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3daf4CNGod9r7I0ING5fn9?si=tSnFglIxSIOZHKbjLF627w\"}"}', NULL), - (110125, '0x130049d2c68238b3fcb8c0cc01e0f35862e66f7e', 0, 1, '2024-05-05 03:40:31+00', 0, 0, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 886, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1010, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dzekomusic/the-chainsmokers-coldplay-something-just-like-this-dzeko-remix?si=b75d8988ae064e539ff40882cffffaa9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (110318, '0x5f1bd8207c9b4c0af04c206832222a20e5f0ccfa', 0, 1, '2024-05-05 03:44:19+00', 0, 2, '{"fid": 458718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05013181-a9e0-4836-da82-c3af4eb54e00/rectcrop3", "profile": {"bio": {"text": "Thank for follower 💓😘\n", "mentioned_profiles": []}}, "username": "armtwt", "power_badge": false, "display_name": "Ammnaka🎩🍖🔮", "active_status": "inactive", "verifications": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "follower_count": 674, "custody_address": "0x43f59acaec0a984686bd8121796af0bdc016eb08", "following_count": 836, "verified_addresses": {"eth_addresses": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5JMkYNBKZheftHXu6\"}"}', NULL), - (108608, '0x3531154a5440643ca1230e9e7da9dae95de0fc61', 0, 1, '2024-05-05 02:57:07+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 948, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ftto79yBkadMcQnR7\"}"}', NULL), - (99769, '0xedd7b437cb2da99a66895711e149214c914cd07f', 0, 1, '2024-05-05 01:37:26+00', 0, 0, '{"fid": 404408, "object": "user", "pfp_url": "https://i.imgur.com/tJW0QTg.jpg", "profile": {"bio": {"text": "A Green Sheep living in Korea🐏 ,\nI mainly post about daily life and crypto.\nAlso an embedded and web full-stack developer, merging tech with daily life😊", "mentioned_profiles": []}}, "username": "greensheep", "power_badge": false, "display_name": "GreenSheep🐏🎩", "active_status": "inactive", "verifications": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "follower_count": 2098, "custody_address": "0x063a87a2b02fd6d99c6bd494d6d65a6503881570", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JGbm218gwTefnjbn9\"}"}', NULL), - (99821, '0x9c6a4dc967364634fc4f20c30be6c24ebc4f3473', 0, 1, '2024-05-05 01:38:21+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/trMij\"}"}', NULL), - (99777, '0x93a4e319fbf47e83e1a0fd27cad2f7dc8a3c9eaf', 0, 1, '2024-05-05 01:37:38+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jKDuq\"}"}', NULL), - (114106, '0x0e20c1765a3afbdfa90e6aa873c8efc5d460f54c', 0, 1, '2024-05-05 04:22:50+00', 0, 1, '{"fid": 506580, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/572c2d31-0ed1-423c-b7a2-090c24f86800/original", "profile": {"bio": {"text": "✼ 𐒢ṅߙ୧ᒋ ߙħ୧ 𝔣٥ᒋ୧⳽𝔱 ✼ /forest ", "mentioned_profiles": []}}, "username": "!506580", "power_badge": false, "display_name": "Merkle Forest ", "active_status": "inactive", "verifications": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "follower_count": 3, "custody_address": "0x3a976421c702f965c970e8916b81e6b0846bbf94", "following_count": 69, "verified_addresses": {"eth_addresses": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "sol_addresses": []}}', '{"{\"url\":\"http://soundcloud.com/transmigration_records/tm019-b-skyark-when-it-pours-it-rainseternal-injections-underwater-dub-2444-mstr-mmm\"}"}', NULL), - (110319, '0x824a73394b616d29b0bfbee3af611bbd1ba44f96', 0, 1, '2024-05-05 03:43:47+00', 0, 7, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/anmol-rajoriya/ive-heya-1?si=6d47ff35f6a54339a3a841ce9713dda2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (99855, '0x520c69402cb4e55f2b79563b99278afb7559a770', 0, 1, '2024-05-05 01:39:54+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/39rbu\"}"}', NULL), - (99856, '0xf811f8648e8e341770bc64ac7701bf59acc5d588', 0, 1, '2024-05-05 01:39:38+00', 0, 1, '{"fid": 3046, "object": "user", "pfp_url": "https://i.imgur.com/4Ubynzy.gif", "profile": {"bio": {"text": "Design, art, nature and tech 🖼️ cyrus.website | Growing /plantbased 🔵🌼 /webtree 🌳 and nfp.garden 🌸 | Building /alltimehigh ᖽ", "mentioned_profiles": []}}, "username": "cyrus", "power_badge": true, "display_name": "cyrus 🎩 ᖽ 🍄", "active_status": "inactive", "verifications": ["0x4a7b17fbec1ecc14a00b351f9fb40b0c957e776b", "0xf75b89857cd1aed40f5b9cf39994775de25ad1f5"], "follower_count": 4206, "custody_address": "0xe38bfbe0b055c55cd8e951a87dae3411f0617340", "following_count": 773, "verified_addresses": {"eth_addresses": ["0x4a7b17fbec1ecc14a00b351f9fb40b0c957e776b", "0xf75b89857cd1aed40f5b9cf39994775de25ad1f5"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/kendrick-lamar-music/euphoria\"}"}', NULL), - (104749, '0xdaf819c35f2d171416adfbc6b6dd03c2377fe8a7', 0, 1, '2024-05-05 02:19:18+00', 0, 6, '{"fid": 402682, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreie2nrcfdnb4pyfypmmycwp6iflm4xx2262zpfbyl5qzoeo5scgjaa", "profile": {"bio": {"text": " Make the world better, love and peace, mindfulness ", "mentioned_profiles": []}}, "username": "gdragon", "power_badge": false, "display_name": "xxxibgdrgn", "active_status": "inactive", "verifications": ["0x2d2cadf39f7c1856fb15b8cb2d5a39808b2cbd89"], "follower_count": 2038, "custody_address": "0xa47ca87ec0a14d15f5c551ee02fc7889aa884b7b", "following_count": 1476, "verified_addresses": {"eth_addresses": ["0x2d2cadf39f7c1856fb15b8cb2d5a39808b2cbd89"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/f9wfFFPRYEfE3xhP7\"}"}', NULL), - (95241, '0xc42d5d9da7bc410d503c415267fbccf8735df39c', 0, 1, '2024-05-05 01:12:43+00', 0, 4, '{"fid": 404408, "object": "user", "pfp_url": "https://i.imgur.com/tJW0QTg.jpg", "profile": {"bio": {"text": "A Green Sheep living in Korea🐏 ,\nI mainly post about daily life and crypto.\nAlso an embedded and web full-stack developer, merging tech with daily life😊", "mentioned_profiles": []}}, "username": "greensheep", "power_badge": false, "display_name": "GreenSheep🐏🎩", "active_status": "inactive", "verifications": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "follower_count": 2099, "custody_address": "0x063a87a2b02fd6d99c6bd494d6d65a6503881570", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xe657a35bb94d9ca25e900259ce61798135f1edaf", "0x7b9ab9f84acad6b80269f145dc4d304ec509a2ce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6SU5PLvEAozLFwKRCI26NT?si=xXxaW4nKTtObMbJrCmajIA\"}"}', NULL), - (105560, '0x57f2e961ecaca6bd7f60185655bf258ebeeb2d00', 0, 1, '2024-05-05 02:26:43+00', 0, 0, '{"fid": 501056, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWhFgzb1WSkL5ohudhvAW6rA2ifv5LExtUFWJubVKPkmH?filename=.JPG", "profile": {"bio": {"text": "Hi, Call me Road🖤\n\n\nEnjoy & Imaigine !!!All the way\n\nand trading Crypto world♥\n\n\n\nBe Friendly bro :)\n\nMy zora dashboard\nhttps://zora.co/@roadyisgil", "mentioned_profiles": []}}, "username": "roadisgil", "power_badge": false, "display_name": "RJr🤍🔵🍖🎩", "active_status": "inactive", "verifications": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "follower_count": 736, "custody_address": "0x7fd417ea019f5fc7bde958ea596800c181fa3049", "following_count": 670, "verified_addresses": {"eth_addresses": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SD915\"}"}', NULL), - (106111, '0x2350310089b084aed99a393d3254f7316a17e39a', 0, 1, '2024-05-05 02:29:15+00', 0, 0, '{"fid": 428777, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigd4to3dckn5fs26sqvgfg7456qlvbdux5t7vd4iiqy4cup3o3344", "profile": {"bio": {"text": "Crypto user\n", "mentioned_profiles": []}}, "username": "lifehxc", "power_badge": false, "display_name": "lifehxc.eth", "active_status": "inactive", "verifications": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "follower_count": 330, "custody_address": "0xcab8c2dc88a35046e4c5480e31ec223faaee5fb9", "following_count": 323, "verified_addresses": {"eth_addresses": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/gustavo-lamas-6/delincuent-habits-tres-delincuentes-fernando-kaos-club-dj-39\"}"}', NULL), - (283227, '0x2bee9afdb89c413781dcfe1aa505b53a8952f35c', 0, 1, '2024-05-05 18:21:50+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t3l9pk658k80/aejp8gh6aaut?si=2412a7e44e374fe99f5e6457be5be704&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (114093, '0x22a022264f1cde00a8559021010d6f5d569fc2e5', 0, 1, '2024-05-05 04:22:41+00', 0, 13, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 615, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/poop-poop-828317186/bruno-mars-when-i-was-your-man?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (99852, '0x3ac352dbb3019a1916d5345fc8f5ee0620863dd2', 0, 1, '2024-05-05 01:40:02+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MdoyX\"}"}', NULL), - (99943, '0xf1a079039eb2e2c5ea4b527b954e671aad7c444f', 0, 1, '2024-05-05 01:40:51+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/inQLq\"}"}', NULL), - (102659, '0x73c01c2de7e65e872376f335af88c101e3d2914e', 0, 1, '2024-05-05 02:05:01+00', 0, 1, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7h2aJ\"}"}', NULL), - (62417, '0xe7b8848567d69dd6980a44fdb21582f6cd4c941f', 10, 1, '2024-05-04 23:24:34+00', 100, 13, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/ghost-in-my-hometown?referral_source=link\"}"}', NULL), - (99851, '0xee9c9a3b1e53a3b7854231ebe51b44685165f898', 0, 1, '2024-05-05 01:39:43+00', 0, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pe8QF\"}"}', NULL), - (99942, '0x2df1324226b60ee058e10e4d7ded7a04cfcb41de', 0, 1, '2024-05-05 01:41:08+00', 100, 0, '{"fid": 499948, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdvWoEeBB4esBZtsWWXEZxANYBKUVD5hezC857cAZG9q7?filename=2.gif", "profile": {"bio": {"text": "Pokemon Trainer🐔", "mentioned_profiles": []}}, "username": "pokemon-", "power_badge": false, "display_name": "Pokemon Trainer🐔", "active_status": "inactive", "verifications": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "follower_count": 1146, "custody_address": "0xf8dcb7cf7bac900b610588ac81f6a61248b7c2a8", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xf2c940e24bf38d2de618f3f4efba1030ebb91026"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VAWkZ\"}"}', NULL), - (110248, '0xd2520d63d931ef043f7cbed835decaaaadb87ab6', 0, 1, '2024-05-05 03:42:26+00', 0, 0, '{"fid": 316238, "object": "user", "pfp_url": "https://i.imgur.com/Fn4r5cV.png", "profile": {"bio": {"text": "ใครอยากเป็นเศรษฐี ?\n\nWho wants to be a millionaire?", "mentioned_profiles": []}}, "username": "nakanpro", "power_badge": false, "display_name": "🍖nakanpro🍖🔄🎩", "active_status": "inactive", "verifications": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "follower_count": 2269, "custody_address": "0xc6f8cec56d094d9ec265fab4c55241c9f51528a2", "following_count": 2241, "verified_addresses": {"eth_addresses": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nk-nakarin-keyura/free-good-day-lo-fi-trap-beats?si=e454afcdf6824170b0997a298165733b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (67490, '0xc2da9227b52545f3fe8fef1b3f21d3051592717f', 0, 1, '2024-05-04 23:39:15+00', 0, 1, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9123, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 17, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/a86ced5f-cb03-4ea7-8aee-ea3ebb61b177\"}","{\"url\":\"https://www.sound.xyz/harrywashere/new-you\"}"}', NULL), - (105378, '0x5eb630028af142abb33621ec17bf15721e30f882', 0, 1, '2024-05-05 02:25:03+00', 0, 0, '{"fid": 314162, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34f4fd5d-f900-4606-d56d-0c6d809a2900/original", "profile": {"bio": {"text": "/punpun\nʕ•ᴥ•ʔ \"Follow Back 1,000,000%\" (ˇ⊖ˇ)\n🇹🇭🙏🏻🇹🇭ตามมาตามกลับไม่จกตา🥰", "mentioned_profiles": []}}, "username": "punpun", "power_badge": false, "display_name": "PunPun 🐰🎩🍖 ⛓️", "active_status": "inactive", "verifications": ["0x82f5b0bd0036cc68915c806294bad95b104ab71c"], "follower_count": 1780, "custody_address": "0xc9fd5bfa858c3dbb71afe2211ef199e745e0befa", "following_count": 1765, "verified_addresses": {"eth_addresses": ["0x82f5b0bd0036cc68915c806294bad95b104ab71c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/watson-wichachai/near-dawn?si=518d37451b864409a47c3e2ec5e43938&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (107088, '0x4fd26cc1183fcf8d3f312ffb29f38f36e95f364f', 0, 1, '2024-05-05 02:32:45+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼..", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jigmet-246594150/breeze-b-jyun\"}"}', NULL), - (107025, '0xaeb7047fdb569a6451cebc42eb43f6fa94ca3095', 0, 1, '2024-05-05 02:31:55+00', 0, 0, '{"fid": 501056, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWhFgzb1WSkL5ohudhvAW6rA2ifv5LExtUFWJubVKPkmH?filename=.JPG", "profile": {"bio": {"text": "Hi, Call me Road🖤\n\n\nEnjoy & Imaigine !!!All the way\n\nand trading Crypto world♥\n\n\n\nBe Friendly bro :)\n\nMy zora dashboard\nhttps://zora.co/@roadyisgil", "mentioned_profiles": []}}, "username": "roadisgil", "power_badge": false, "display_name": "RJr🤍🔵🍖🎩", "active_status": "inactive", "verifications": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "follower_count": 736, "custody_address": "0x7fd417ea019f5fc7bde958ea596800c181fa3049", "following_count": 670, "verified_addresses": {"eth_addresses": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to The Night by HONNE on #SoundCloud https://on.soundcloud.com/LKanB\"}"}', NULL), - (117598, '0xc4d8cd5332a8fdeca6bd46545bdf2967ee784d5f', 0, 1, '2024-05-05 04:38:22+00', 0, 0, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/dyciQQmA7p9pmeoCA\"}"}', NULL), - (118332, '0xaa402a61678b545065021e472d23e40a2faca8d5', 0, 1, '2024-05-05 04:42:48+00', 0, 0, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "follower_count": 2085, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2448, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MnTSAXV2oHZ5kmNc9\"}"}', NULL), - (140686, '0x133f8bfd1780ca6e19e57ddd1b69247cc9681c13', 0, 1, '2024-05-05 07:32:53+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u4kWpiVGByYbSSKi7\"}"}', NULL), - (107228, '0x696e56e48911059356117549dc50b954a1d258aa', 0, 1, '2024-05-05 02:36:57+00', 0, 1, '{"fid": 414695, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/149fc4f7-13aa-4c1d-e40b-acc79346f200/original", "profile": {"bio": {"text": "Husband - artist - collector - degen - host of /seattlesports -\n\nhttps://linktr.ee/stevena509", "mentioned_profiles": []}}, "username": "stashbox", "power_badge": false, "display_name": "Steve 🎩", "active_status": "inactive", "verifications": ["0xd0e330332a3eaed62bb8f3e2cfd34624090dde97"], "follower_count": 202, "custody_address": "0xa974ec37472a08231f3a9361a32cd8f4a31a73a5", "following_count": 267, "verified_addresses": {"eth_addresses": ["0xd0e330332a3eaed62bb8f3e2cfd34624090dde97"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rjXFp\"}"}', NULL), - (107166, '0x49abd08e3512b834377b4875974e213a46665dca', 0, 1, '2024-05-05 02:36:18+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼..", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ciikki/baby-crush-album-version\"}"}', NULL), - (107165, '0xd4437c4f2f94894adc90cdfbe07edc2c5232fa8c', 0, 1, '2024-05-05 02:35:20+00', 0, 1, '{"fid": 232017, "object": "user", "pfp_url": "https://i.imgur.com/Cro9464.jpg", "profile": {"bio": {"text": "head of @base marketing", "mentioned_profiles": []}}, "username": "sarahzorah", "power_badge": true, "display_name": "Sarah", "active_status": "inactive", "verifications": ["0x0a593918bbb4ebd75c2261cf77c46c1381ee9102"], "follower_count": 2052, "custody_address": "0x9a69054156716088f9f8f3274e5279a1b8c9ba19", "following_count": 123, "verified_addresses": {"eth_addresses": ["0x0a593918bbb4ebd75c2261cf77c46c1381ee9102"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2UDARQiksl207HcSduDpov?si=CR3Ne4_WR7StDAyezOOIMQ&context=spotify%3Aplaylist%3A37i9dQZF1EQmPV0vrce2QZ\"}"}', NULL), - (107229, '0x7fbb2246a9719dfa99ad6c8f6f1e1577d561e8ca', 0, 1, '2024-05-05 02:37:20+00', 0, 0, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1839, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2321, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Wellerman by The Wellermen on #SoundCloud https://on.soundcloud.com/yH1LW\"}"}', NULL), - (116943, '0xfc8777462f235cc39b52aedef19fd5d1ca21c2e9', 0, 1, '2024-05-05 04:35:06+00', 0, 3, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/TvbLUw5XMEV1fYAt6\"}"}', NULL), - (137392, '0xbf28f2ea9e17364a069bbdd10172cfec1da7afc2', 0, 1, '2024-05-05 06:34:33+00', 0, 0, '{"fid": 272919, "object": "user", "pfp_url": "https://i.imgur.com/4mmaSLW.gif", "profile": {"bio": {"text": "Kinetic, Synthetic & New Media Art \n\nhttps://linktr.ee/betx9", "mentioned_profiles": []}}, "username": "p3tra", "power_badge": false, "display_name": "Petra🎩🐲🌱", "active_status": "inactive", "verifications": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "follower_count": 453, "custody_address": "0x1618a6bfa84714d845d9182a02292c99533d00a4", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vCQBg\"}"}', NULL), - (118333, '0xd1a27548ce2510b4e948aa4debb9d0a220fbcfce', 0, 1, '2024-05-05 04:43:05+00', 0, 0, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/atcc7DyN2u9bYzar8\"}"}', NULL), - (137873, '0x2d3cb7dbcf1af1d6aa33996b87292156792e6eb9', 0, 1, '2024-05-05 06:39:06+00', 0, 3, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1089, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 597, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha Drake - Push Ups de octobersveryown en #SoundCloud https://on.soundcloud.com/C3ueS\"}"}', NULL), - (117601, '0x73c10c87b0fb193cd3410cddbc28912c66a19719', 0, 1, '2024-05-05 04:37:56+00', 0, 1, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/PDjk5XAitxvEuePv7\"}"}', NULL), - (118331, '0x358068d1e90ab06a600ed44eeea46b848027c7c1', 0, 1, '2024-05-05 04:43:36+00', 0, 0, '{"fid": 506580, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/572c2d31-0ed1-423c-b7a2-090c24f86800/original", "profile": {"bio": {"text": "✼ 𐒢ṅߙ୧ᒋ ߙħ୧ 𝔣٥ᒋ୧⳽𝔱 ✼ /forest ", "mentioned_profiles": []}}, "username": "!506580", "power_badge": false, "display_name": "Merkle Forest ", "active_status": "inactive", "verifications": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "follower_count": 3, "custody_address": "0x3a976421c702f965c970e8916b81e6b0846bbf94", "following_count": 69, "verified_addresses": {"eth_addresses": ["0x67d326011d3806abd512bfe202a031e4d6766539"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/translusid/repulsive-force-brainwash\"}"}', NULL), - (115098, '0x3ab6f41fd9e337ff93ffff83b6e96ace4c283d5a', 0, 1, '2024-05-05 04:27:38+00', 0, 0, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3373, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3962, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/yrlocation3/ive-the-2nd-ep-ive-switch-1?si=90aaa4dfca13434e9a853b62e1bbc040&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (119737, '0x9a4bef0a1e45816d6b3887c0c3530197cfa11bd8', 0, 1, '2024-05-05 04:56:16+00', 0, 2, '{"fid": 219069, "object": "user", "pfp_url": "https://i.imgur.com/j2SXQEV.png", "profile": {"bio": {"text": "🎩 🍖", "mentioned_profiles": []}}, "username": "vietnd1201", "power_badge": false, "display_name": "Vietdart.eth 🎩 🔵 🍖 🐹", "active_status": "inactive", "verifications": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "follower_count": 360, "custody_address": "0x21f73438f3b1b00374054725a1c0d606831ecda9", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "sol_addresses": ["EuKhNC1Xqmmegj4AxxgqzzHSDPLYDDn29Aie2XKtXztA"]}}', '{"{\"url\":\"https://www.sound.xyz/noise/jadyn-violet-asleep-at-the-switch\"}"}', NULL), - (119456, '0xb861a7176fc710b3a0e4f18c98d68f376dd91f0d', 0, 1, '2024-05-05 04:53:48+00', 0, 0, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 615, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/mia-potente/neyo-so-sick?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (118334, '0x72a8c9ed5c112f6435faf6ea18e4326c444b753e', 0, 1, '2024-05-05 04:43:30+00', 0, 2, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 \nhost of /airdropkr 하꼬채널입니다 \naddicted to listening music", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 429, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 624, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6IVsYkP3RWt3AwMeHOgDFF?si=02dea54c2ce14c01\"}"}', NULL), - (110823, '0xec0af2faf1db3d71d889b0b9b01f32eaa765b808', 0, 1, '2024-05-05 03:48:03+00', 0, 0, '{"fid": 333405, "object": "user", "pfp_url": "https://i.imgur.com/J74HDvb.jpg", "profile": {"bio": {"text": "🌿Lens→ hey.xyz/u/cameturtle🌿 \n🕊️Twitter→ twitter.com/cameturtle🕊️", "mentioned_profiles": []}}, "username": "0xcameturtle", "power_badge": false, "display_name": "0xcameturtle", "active_status": "inactive", "verifications": ["0xb3d1e41f84acd0e77f83473aa62fc8560c2a3c0c"], "follower_count": 279, "custody_address": "0x37f6d4f9d27efc5d0c2a027e60dae983e6d2de5a", "following_count": 214, "verified_addresses": {"eth_addresses": ["0xb3d1e41f84acd0e77f83473aa62fc8560c2a3c0c"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/happymachine/square-musiq-dreaming-up-happy-machine-remix\"}"}', NULL), - (107385, '0x91c51c45dcb2f0ef61214ba4804451885339091a', 0, 1, '2024-05-05 02:39:37+00', 0, 0, '{"fid": 509205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e14ff0a-50ac-40ee-f958-fe4ca79fdf00/rectcrop3", "profile": {"bio": {"text": "Web3, crypto, food, travel", "mentioned_profiles": []}}, "username": "!509205", "power_badge": false, "display_name": "bbangcho", "active_status": "inactive", "verifications": ["0xd4199fa1a3f731cdd07876429820f7091425af9d"], "follower_count": 55, "custody_address": "0x07267a1d18f9a410d4a8e0bcd28289467dafa33c", "following_count": 276, "verified_addresses": {"eth_addresses": ["0xd4199fa1a3f731cdd07876429820f7091425af9d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MTvf9\"}"}', NULL), - (115194, '0x726c431ac8a7feabd5eac77d778a0612e6fec18d', 0, 1, '2024-05-05 04:28:24+00', 0, 0, '{"fid": 327431, "object": "user", "pfp_url": "https://i.imgur.com/iAXyA87.jpg", "profile": {"bio": {"text": "no more", "mentioned_profiles": []}}, "username": "adikur22", "power_badge": false, "display_name": "Martian☣️", "active_status": "inactive", "verifications": ["0x37d4c29cb18a47d039495d0ab949c0b4cbc5ce13"], "follower_count": 59, "custody_address": "0x854a6f9864414d51c0200e0e64f65f7177a69cf0", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x37d4c29cb18a47d039495d0ab949c0b4cbc5ce13"], "sol_addresses": ["CDXJfdfw7S4Qv33yL8LWA5gonseiVTRRtRTqfQuVm5Ez"]}}', '{"{\"url\":\"https://on.soundcloud.com/xpRrV5EZR62J6CbA8\"}"}', NULL), - (117603, '0xf75f02f931ab48153cb2e45c8d17e7b6331c0a09', 0, 1, '2024-05-05 04:39:06+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3374, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3962, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://open.spotify.com/track/51vRumtqbkNW9wrKfESwfu\"}"}', NULL), - (119980, '0x8e6bfcfb1ef21173c707ea14a9f6eef866c27bfa', 0, 1, '2024-05-05 04:57:10+00', 100, 3, '{"fid": 236317, "object": "user", "pfp_url": "https://i.imgur.com/KbFe4TW.jpg", "profile": {"bio": {"text": "Web3 Restless Hoarder\ninsomnia024.eth", "mentioned_profiles": []}}, "username": "charmander", "power_badge": false, "display_name": "Insomnia 🎩", "active_status": "inactive", "verifications": ["0xaa8c41d4b0c66709cf6f1487623e14e347545dbe"], "follower_count": 152, "custody_address": "0xd14dc4593a790d011e0bf33e023bf48832ae3ff4", "following_count": 585, "verified_addresses": {"eth_addresses": ["0xaa8c41d4b0c66709cf6f1487623e14e347545dbe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3iHez\"}"}', NULL), - (115392, '0x09ce85c8b4ef5c70f989031297d16a0fbe276116', 0, 1, '2024-05-05 04:29:12+00', 0, 0, '{"fid": 327431, "object": "user", "pfp_url": "https://i.imgur.com/iAXyA87.jpg", "profile": {"bio": {"text": "no more", "mentioned_profiles": []}}, "username": "adikur22", "power_badge": false, "display_name": "Martian☣️", "active_status": "inactive", "verifications": ["0x37d4c29cb18a47d039495d0ab949c0b4cbc5ce13"], "follower_count": 59, "custody_address": "0x854a6f9864414d51c0200e0e64f65f7177a69cf0", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x37d4c29cb18a47d039495d0ab949c0b4cbc5ce13"], "sol_addresses": ["CDXJfdfw7S4Qv33yL8LWA5gonseiVTRRtRTqfQuVm5Ez"]}}', '{"{\"url\":\"https://on.soundcloud.com/DM718s9i1zJ8utiN8\"}"}', NULL), - (137626, '0x137a57532fb53680968b3de57e05fcdb1ab8141d', 0, 1, '2024-05-05 06:36:16+00', 10, 14, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UF6aY\"}"}', NULL), - (118335, '0x0a4b1825d02e503c709f6584c81950eebeda2dca', 0, 1, '2024-05-05 04:43:11+00', 0, 0, '{"fid": 451906, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmNzBKky4RfFsNFgHCTJdaXWH2aUgGGVCkeWgGXDj6GB6P/4564.webp", "profile": {"bio": {"text": "Follow me - Follow back /TH🇹🇭\nDrakula : BJM", "mentioned_profiles": []}}, "username": "bjm", "power_badge": false, "display_name": "BJM", "active_status": "inactive", "verifications": ["0xd80f1b1d3e46179869d8ca5081ef173179c03aa3"], "follower_count": 342, "custody_address": "0x77e560f2f204725d72e07ec3734a232f45538812", "following_count": 511, "verified_addresses": {"eth_addresses": ["0xd80f1b1d3e46179869d8ca5081ef173179c03aa3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pqpJ2HAhNK7CfW4E9\"}"}', NULL), - (283234, '0x07b362fd87855cb579bf19275b68a2c91b34f6a3', 0, 1, '2024-05-05 18:22:01+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beatmaster1-1/bigbang-fantastic-baby-club?si=e3fbe9a447224ffabef2c19fec0bf78a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (107555, '0x2cc6f95f53faad1563ec6f15ee68045920cdd021', 0, 1, '2024-05-05 02:41:33+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼..", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chekparren/no-i-m-not-sorry\"}"}', NULL), - (119981, '0x37f443703a88216a5bbecc06341e6f416c3d6631', 0, 1, '2024-05-05 04:56:59+00', 0, 0, '{"fid": 479253, "object": "user", "pfp_url": "https://i.imgur.com/f2gnEq7.jpg", "profile": {"bio": {"text": "그게 뭐든 다 이루다_ERUDA_열정걸_초긍정에너지(With me, you have super power😲 Super positive energy✨️⚘️) 늘 응원해:)", "mentioned_profiles": []}}, "username": "eruda", "power_badge": false, "display_name": "ERUDA", "active_status": "inactive", "verifications": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "follower_count": 852, "custody_address": "0x2c72ca53218c08d77e61639cb2ccfa7d08403ff8", "following_count": 585, "verified_addresses": {"eth_addresses": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Lay It All on Me by johnny stimson on #SoundCloud https://on.soundcloud.com/eYBHT\"}"}', NULL), - (107089, '0x121f6403efce9aa8466354e295bf3eb96e20cffb', 0, 1, '2024-05-05 02:33:46+00', 0, 0, '{"fid": 501056, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWhFgzb1WSkL5ohudhvAW6rA2ifv5LExtUFWJubVKPkmH?filename=.JPG", "profile": {"bio": {"text": "Hi, Call me Road🖤\n\n\nEnjoy & Imaigine !!!All the way\n\nand trading Crypto world♥\n\n\n\nBe Friendly bro :)\n\nMy zora dashboard\nhttps://zora.co/@roadyisgil", "mentioned_profiles": []}}, "username": "roadisgil", "power_badge": false, "display_name": "RJr🤍🔵🍖🎩", "active_status": "inactive", "verifications": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "follower_count": 736, "custody_address": "0x7fd417ea019f5fc7bde958ea596800c181fa3049", "following_count": 670, "verified_addresses": {"eth_addresses": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Day 1 ◑ / Sometimes ◐, a playlist by HONNE on #SoundCloud https://on.soundcloud.com/UwAzV\"}"}', NULL), - (107690, '0xfd497cb3d271c04ce204c9318fda418bc1b687cf', 0, 1, '2024-05-05 02:43:54+00', 0, 0, '{"fid": 316238, "object": "user", "pfp_url": "https://i.imgur.com/Fn4r5cV.png", "profile": {"bio": {"text": "ใครอยากเป็นเศรษฐี ?\n\nWho wants to be a millionaire?", "mentioned_profiles": []}}, "username": "nakanpro", "power_badge": false, "display_name": "🍖nakanpro🍖🔄🎩", "active_status": "inactive", "verifications": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "follower_count": 2269, "custody_address": "0xc6f8cec56d094d9ec265fab4c55241c9f51528a2", "following_count": 2241, "verified_addresses": {"eth_addresses": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nymano/quand-la-pluie-tombe?in=user-636346752/sets/lofi-chill&si=839b2820d2a34b06a3a86dc77c961042&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (107382, '0xa3dd8725d2ed06e5c156d843cf23eeac4ca15e58', 0, 1, '2024-05-05 02:40:37+00', 0, 1, '{"fid": 382749, "object": "user", "pfp_url": "https://i.imgur.com/7MJOHmF.jpg", "profile": {"bio": {"text": "I love warpcast and degen\n주로 아침(출근길), 저녁(퇴근길), 야간반 활동합니다.\nhttps://zora.co/@ixtream", "mentioned_profiles": []}}, "username": "ixtream", "power_badge": false, "display_name": "ixtream🎩🍖", "active_status": "inactive", "verifications": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "follower_count": 2438, "custody_address": "0xda6f497cb157c676f9af0ba7f44cb4e8ef222502", "following_count": 2128, "verified_addresses": {"eth_addresses": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0cean_addict/9oe7iersbi6w\"}"}', NULL), - (107691, '0xe3fb9f247e66abe1062cfa0dbf52d44dce051f9e', 0, 1, '2024-05-05 02:43:33+00', 0, 4, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1839, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2321, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yH1LW\"}"}', NULL), - (127897, '0xc36807608bc922f96c31fdc2b8a6ae8bac72f38e', 0, 1, '2024-05-05 05:55:39+00', 0, 0, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 620, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 311, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h4gEG\"}"}', NULL), - (110947, '0x416368043e083b4907963da1f938ba60b36765f3', 0, 1, '2024-05-05 03:49:40+00', 0, 18, '{"fid": 340599, "object": "user", "pfp_url": "https://i.imgur.com/FLTGLXU.jpg", "profile": {"bio": {"text": "Finding peace through soundwaves 🌸 /vibecheck\n\n https://linktr.ee/smokeyymusic", "mentioned_profiles": []}}, "username": "!340599", "power_badge": true, "display_name": "Smokeyy", "active_status": "inactive", "verifications": ["0xdbd8c21abbaa205c0e87465f9d4695137727741c"], "follower_count": 190, "custody_address": "0xb74515f0038132fa18e8194b4071e64f5f4f5213", "following_count": 151, "verified_addresses": {"eth_addresses": ["0xdbd8c21abbaa205c0e87465f9d4695137727741c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/smokeyy/let-go?referral_source=link\"}"}', NULL), - (108304, '0xcae8f84c44371c250bc22811d6bd34976a551bac', 0, 1, '2024-05-05 02:51:10+00', 0, 1, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3393, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1933, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TLJry\"}"}', NULL), - (107754, '0x32df9921665fe9c7dc564b7acbe93797c1909618', 0, 1, '2024-05-05 02:44:17+00', 0, 0, '{"fid": 316238, "object": "user", "pfp_url": "https://i.imgur.com/Fn4r5cV.png", "profile": {"bio": {"text": "ใครอยากเป็นเศรษฐี ?\n\nWho wants to be a millionaire?", "mentioned_profiles": []}}, "username": "nakanpro", "power_badge": false, "display_name": "🍖nakanpro🍖🔄🎩", "active_status": "inactive", "verifications": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "follower_count": 2269, "custody_address": "0xc6f8cec56d094d9ec265fab4c55241c9f51528a2", "following_count": 2241, "verified_addresses": {"eth_addresses": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nymano/women?in=user-636346752/sets/lofi-chill&si=276f0563bd8149c6af76622f6908a0cc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108609, '0x36de1d9fa3edf1f6fc62891c36fe8541591e700b', 0, 1, '2024-05-05 02:56:47+00', 0, 1, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 948, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ftto79yBkadMcQnR7\"}"}', NULL), - (108936, '0x2fbd10539e826fe5e5be91c089ce781def371ccc', 0, 1, '2024-05-05 03:07:26+00', 0, 2, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼.. \nI love musics!!! ", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 620, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6SEolIp22t0DzeBfCBo3hr?si=d24036fb81d84fcf\"}"}', NULL), - (115218, '0xdfc1c40c01e8d8cde4fe2ba83f620967d2572255', 0, 1, '2024-05-05 04:28:35+00', 0, 0, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3373, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3962, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/l2share140/ive-eleven?si=26cae90254a146fd9c57445400cbd33f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (113137, '0x67b636c5e49c4c4d631e64eeb773184af5169605', 0, 1, '2024-05-05 04:07:19+00', 0, 0, '{"fid": 6804, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40cc77ce-0acf-451a-43b1-92a3d3da2400/original", "profile": {"bio": {"text": "family dude & toucher of grass 🌄\nlearning to build. elevator of others. enjoyoor of OG FC moments. /purple 🟣#127. cohost /fepe base64.tech \n ", "mentioned_profiles": []}}, "username": "g3rard.eth", "power_badge": true, "display_name": "g ⚪️🎩", "active_status": "inactive", "verifications": ["0xf34196597df209a04fc92b97071dcaabbc63f0e8"], "follower_count": 2245, "custody_address": "0x38eaa03bd222ba7e616ff2d14f2c499df3ef3214", "following_count": 1206, "verified_addresses": {"eth_addresses": ["0xf34196597df209a04fc92b97071dcaabbc63f0e8"], "sol_addresses": ["2RMiEQczAs7wNZ4uURtg5ZsidSckGP8UMURKvwVZhLoF"]}}', '{"{\"url\":\"https://www.sound.xyz/salemilese/crypto-boy?referral_source=link\"}"}', NULL), - (107692, '0xa9666872b2e8fb530d7cdd096064bfc46b34a7f2', 0, 1, '2024-05-05 02:43:14+00', 0, 1, '{"fid": 316238, "object": "user", "pfp_url": "https://i.imgur.com/Fn4r5cV.png", "profile": {"bio": {"text": "ใครอยากเป็นเศรษฐี ?\n\nWho wants to be a millionaire?", "mentioned_profiles": []}}, "username": "nakanpro", "power_badge": false, "display_name": "🍖nakanpro🍖🔄🎩", "active_status": "inactive", "verifications": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "follower_count": 2269, "custody_address": "0xc6f8cec56d094d9ec265fab4c55241c9f51528a2", "following_count": 2241, "verified_addresses": {"eth_addresses": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nymano/solitude?in=user-636346752/sets/lofi-chill&si=1f37f9284cda4e95a0acf48bfc73ac9c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (107839, '0x8feac1f2d83cd0841b9a378c14b298adf30c9d26', 0, 1, '2024-05-05 02:45:54+00', 0, 8, '{"fid": 474054, "object": "user", "pfp_url": "https://i.imgur.com/3KbcrxM.jpg", "profile": {"bio": {"text": "Degen💙🚀", "mentioned_profiles": []}}, "username": "mukka", "power_badge": false, "display_name": "mukka 🎩", "active_status": "inactive", "verifications": ["0x0264f2dbbfabb4c8a40aad20327c21e1d2d2f904"], "follower_count": 2456, "custody_address": "0xf2d77050b1ac5c0cfab7b3c9f06ce6e0758b28bc", "following_count": 1069, "verified_addresses": {"eth_addresses": ["0x0264f2dbbfabb4c8a40aad20327c21e1d2d2f904"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sebit_97/cover?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (107755, '0x0993bfa50daac4b3d0c17a40b70a6d29797ec9b2', 0, 1, '2024-05-05 02:44:58+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼.. \nI love musics!!! ", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 426, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6YEP6zok99jGL1PjUZ4Rik?si=00a95c0525364d0e\"}"}', NULL), - (107879, '0x4b2e834ba0da38b7285640856f747b68d77b2c5c', 0, 1, '2024-05-05 02:47:41+00', 0, 1, '{"fid": 505043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/efc5c7fd-c896-45dc-c031-566e6e239200/rectcrop3", "profile": {"bio": {"text": "F4F, 워린이, 장사하는 20대 까칠녀", "mentioned_profiles": []}}, "username": "devilangle", "power_badge": false, "display_name": "angelina", "active_status": "inactive", "verifications": ["0xc0a495d6eed30d3f1385649de4bdd7cb5c8fa02f"], "follower_count": 545, "custody_address": "0x393acb00ccf2d0d27fa9181e1f65966f4091ce2a", "following_count": 638, "verified_addresses": {"eth_addresses": ["0xc0a495d6eed30d3f1385649de4bdd7cb5c8fa02f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qM8RVdddJAdavdiD8\"}"}', NULL), - (107232, '0x949d6bc6c686d3e29b7b04671ddfd93f0eda6d9d', 0, 1, '2024-05-05 02:36:47+00', 0, 1, '{"fid": 2802, "object": "user", "pfp_url": "https://i.imgur.com/Hf9CCmq.jpg", "profile": {"bio": {"text": "Stay Curious // iixii // Lazer Technologies // CoinDesk", "mentioned_profiles": []}}, "username": "garrett", "power_badge": true, "display_name": "Garrett 🎩↑ᖽ", "active_status": "inactive", "verifications": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "follower_count": 8774, "custody_address": "0xb3b4c5d8a76b33d5db8f94b44444563b9038a7a3", "following_count": 1840, "verified_addresses": {"eth_addresses": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "sol_addresses": ["GBoV4dY33PwzvoTkCaHRwqAsAcBBv9qfgTXexqZBzopk"]}}', '{"{\"url\":\"https://on.soundcloud.com/xQDoA9gzgy5D4dvc9\"}"}', NULL), - (283232, '0x4aaaddfcf1c8c315aedad91731a2c75abc551bc8', 0, 1, '2024-05-05 18:22:02+00', 0, 0, '{"fid": 323337, "object": "user", "pfp_url": "https://i.imgur.com/0WRv5u5.jpg", "profile": {"bio": {"text": "I love crypto ", "mentioned_profiles": []}}, "username": "abh-dhni", "power_badge": false, "display_name": "Arousha🎩", "active_status": "inactive", "verifications": ["0xe5c68df4cf101705798b75b81295a046110e5262"], "follower_count": 1295, "custody_address": "0x0f6c37ed1a3c3a179c3f63c93424f00f12fecbdb", "following_count": 1514, "verified_addresses": {"eth_addresses": ["0xe5c68df4cf101705798b75b81295a046110e5262"], "sol_addresses": ["FGSiZibsjD6oWfTk3juPnNgNQcJe645QADE9LAVc37g5"]}}', '{"{\"url\":\"https://on.soundcloud.com/JxdrF55Fmze7dhyy8\"}"}', NULL), - (108895, '0x552882c2c9764c1e836ef5b80d71d743f43ea313', 0, 1, '2024-05-05 03:06:19+00', 0, 0, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 177, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1QwrhGl2I3D0aNdRQ5YFtm?si=FzkQVlKmRC67TA8sVLaUtg&context=spotify%3Aalbum%3A2KQqKgArVZJWQG0391gs5R\"}"}', NULL), - (107840, '0x043df22a763499fd68ed79265d663ed4c2e1757a', 0, 1, '2024-05-05 02:46:38+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1106, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 899, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NPGxFsAE7iYFiVMa6\"}"}', NULL), - (283223, '0x8b404e5be82bbf04d692da2b2fa4611997972c47', 0, 1, '2024-05-05 18:21:54+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chopplanet18/bigbang-loser?si=7c5f095050d64bc18ff00432d28d7598&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108061, '0x8dd7f0c04d79d9324ca88ca04f1e5988a219b6cc', 0, 1, '2024-05-05 02:50:15+00', 0, 1, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 177, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7wW4z\"}"}', NULL), - (108064, '0xdd73e5b1ced57c1154dd500098c5a40b3d6b52cb', 0, 1, '2024-05-05 02:48:29+00', 0, 1, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 177, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NkVoP\"}"}', NULL), - (108423, '0xcd382466ebb3e12a6c155a02b86c3e8fc74285f9', 0, 1, '2024-05-05 02:51:27+00', 0, 4, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1071, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1131, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/b7Nyu\"}"}', NULL), - (107822, '0x550a106b4bc464f8749a63e204a84347f24d6e0a', 0, 1, '2024-05-05 02:46:37+00', 0, 0, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 177, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ehy3f\"}"}', NULL), - (108062, '0x6069cb62c8444817a1f85eec49afde5425898acf', 0, 1, '2024-05-05 02:48:31+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1106, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 899, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uXciB23Up1fXEXcR8\"}"}', NULL), - (108735, '0x514e576846068afbf853389452f7043b899e155a', 0, 1, '2024-05-05 03:00:58+00', 0, 1, '{"fid": 414695, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/149fc4f7-13aa-4c1d-e40b-acc79346f200/original", "profile": {"bio": {"text": "Husband - artist - collector - degen - host of /seattlesports -\n\nhttps://linktr.ee/stevena509", "mentioned_profiles": []}}, "username": "stashbox", "power_badge": false, "display_name": "Steve 🎩", "active_status": "inactive", "verifications": ["0xd0e330332a3eaed62bb8f3e2cfd34624090dde97"], "follower_count": 202, "custody_address": "0xa974ec37472a08231f3a9361a32cd8f4a31a73a5", "following_count": 267, "verified_addresses": {"eth_addresses": ["0xd0e330332a3eaed62bb8f3e2cfd34624090dde97"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GiPV4\"}"}', NULL), - (115393, '0x59eccbd7f5fca9b012c0719017eb6f5f319e5e94', 0, 1, '2024-05-05 04:29:10+00', 0, 2, '{"fid": 451906, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmNzBKky4RfFsNFgHCTJdaXWH2aUgGGVCkeWgGXDj6GB6P/4564.webp", "profile": {"bio": {"text": "Follow me - Follow back /TH🇹🇭\nDrakula : BJM", "mentioned_profiles": []}}, "username": "bjm", "power_badge": false, "display_name": "BJM", "active_status": "inactive", "verifications": ["0xd80f1b1d3e46179869d8ca5081ef173179c03aa3"], "follower_count": 342, "custody_address": "0x77e560f2f204725d72e07ec3734a232f45538812", "following_count": 511, "verified_addresses": {"eth_addresses": ["0xd80f1b1d3e46179869d8ca5081ef173179c03aa3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VsHdg7yAkQ88zM348\"}"}', NULL), - (111676, '0x15089a1750cc07baab6f42f50d1db31d6e2abbf0', 0, 1, '2024-05-05 03:52:33+00', 0, 2, '{"fid": 408634, "object": "user", "pfp_url": "https://arweave.net/Fbdt5zfyzzi5INFf-9An0n7F3ZEM_NBnytJythExdf4/", "profile": {"bio": {"text": "100% Follow back TH\n", "mentioned_profiles": []}}, "username": "0xkh1n", "power_badge": false, "display_name": "0xKh1n", "active_status": "inactive", "verifications": ["0x93d7c80eee39bfe8655078077c72780f1c992bac"], "follower_count": 433, "custody_address": "0xfea6569ebbd1457226608e711810e7f715b10dc5", "following_count": 868, "verified_addresses": {"eth_addresses": ["0x93d7c80eee39bfe8655078077c72780f1c992bac"], "sol_addresses": ["G4xa3DShCcPw5rB5auCLxa3hFFzpQxNXB53UHVcfZUDN"]}}', '{"{\"url\":\"https://soundcloud.com/nobletune/rod-stewart-have-you-ever-seen?si=6fce9ca593cb47d895b4f1aa170496b7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108700, '0xd29b9a13e1efd2e000b5e7694e64ad159ff0d1e0', 0, 1, '2024-05-05 02:58:49+00', 0, 0, '{"fid": 333546, "object": "user", "pfp_url": "https://i.imgur.com/wkTuNjc.jpg", "profile": {"bio": {"text": "Airdrop hunting", "mentioned_profiles": []}}, "username": "456zaazaoo", "power_badge": false, "display_name": "The hunt🍖 🎩", "active_status": "inactive", "verifications": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "follower_count": 975, "custody_address": "0x76285063c9bbc8dcd4d22e0eaf96a10250cb8708", "following_count": 1259, "verified_addresses": {"eth_addresses": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bihar-pleasu/sets/one-year-ago-well-more-at-the?si=b36c430d150142e78556b8734edb1978&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108760, '0x99cabfb0a16e6a5956217e9e87af85980c0d9c5b', 1010, 1, '2024-05-05 03:01:55+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3150, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2671, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sarah-betts-507144752/love-keyshia-cole?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108791, '0x199bcf980b1c1eac7d5df0dc6901eb16afaebb07', 0, 1, '2024-05-05 03:02:31+00', 0, 1, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 948, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kybz6Lcho8B6Nzj28\"}"}', NULL), - (117604, '0x6cc515c820db3f017d71797b3938abe52ac03b94', 0, 1, '2024-05-05 04:38:38+00', 0, 2, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/z7AAP8jnmdcw9p6V6\"}"}', NULL), - (108759, '0x46affba9d9a49b3250f9fc9e4dbf2a5699cd054d', 0, 1, '2024-05-05 03:02:04+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 948, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kybz6Lcho8B6Nzj28\"}"}', NULL), - (283229, '0x5c7a35460a9c3a179efb62b66e3f4ba0992f5c07', 0, 1, '2024-05-05 18:22:05+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-323613664/bigbang-love-song-chubby-raccoon-2k21-bootleg?si=3c24bbde0f534a1896748ee013bf6662&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108792, '0x592e877bd03b6a3c5110ada2fdd321519881076e', 0, 1, '2024-05-05 03:03:01+00', 0, 1, '{"fid": 399724, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmfJMhpBgYsiAcefjywhwvJ945JkPEQqtENDzGu4CcemWf?filename=1.png", "profile": {"bio": {"text": "잠잘 때 빼곤 항상 상주하고 있어요.\n들러주셔서 감사합니다!", "mentioned_profiles": []}}, "username": "ressentiment", "power_badge": false, "display_name": "ressentiment 🎩🎩🎩", "active_status": "inactive", "verifications": ["0xa8d41cbf189511e7d274b6fe5bbc8c978fb2c439"], "follower_count": 2278, "custody_address": "0xab68c564e748c847e5bc30f10aaa9931aa6556fa", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0xa8d41cbf189511e7d274b6fe5bbc8c978fb2c439"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/satgotnick92/wendy-feat-lee-mujin-original-song-by-red-velvet?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109415, '0xc5e6b7a480cd0539ef80592ff04d4d51128e1d9f', 0, 1, '2024-05-05 03:22:55+00', 0, 0, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 177, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jcoJF\"}"}', NULL), - (109418, '0xee5489d5b65776dce8018fe4a7089bbcc5370d2a', 0, 1, '2024-05-05 03:22:15+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/kv4myorry38e/buzz-monologue?si=a11a115bff9d4462ba73773b15cd9858&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109095, '0x37418d72c892eff913146944345cd727769ca7f2', 0, 1, '2024-05-05 03:12:03+00', 0, 3, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 615, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 730, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/newjeans-bubble-gum?si=817136cc6c594bd193386eaae2635e1f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108857, '0x20e38ab1f6f0485e8bbd1405fb39bef8699a1c00', 0, 1, '2024-05-05 03:05:09+00', 0, 0, '{"fid": 297645, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b587adbe-6762-4997-5aa7-68bdec302c00/rectcrop3", "profile": {"bio": {"text": "Follow and turn on notifications for new mint, drop, free claim, news, etc.\nwe are so early\n\nX @santosh_sczha", "mentioned_profiles": []}}, "username": "qcxint", "power_badge": false, "display_name": "QCXINT 🎩🔮🍖", "active_status": "inactive", "verifications": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "follower_count": 1324, "custody_address": "0xdcc258a2ece6ba7e36416faf4d6d08f8b6ae2fba", "following_count": 1145, "verified_addresses": {"eth_addresses": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/queen-69312/bohemian-rhapsody-remastered-1\"}"}', NULL), - (108856, '0x33fdbda06fe996292331f2e80d946835e9279c9c', 0, 1, '2024-05-05 03:04:43+00', 0, 0, '{"fid": 445770, "object": "user", "pfp_url": "https://i.imgur.com/quddtx2.jpg", "profile": {"bio": {"text": "Airdrop hunter", "mentioned_profiles": []}}, "username": "kazzam", "power_badge": false, "display_name": "Azzam Kazzam", "active_status": "inactive", "verifications": ["0x976f7f5b7d0698128a7eaba472a82da175fff52c"], "follower_count": 12, "custody_address": "0x32615ca18459abb899d59060121679bccfa6a710", "following_count": 132, "verified_addresses": {"eth_addresses": ["0x976f7f5b7d0698128a7eaba472a82da175fff52c"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/emanuele-ferrara-40065987/darkside-alan-walker\"}"}', NULL), - (131297, '0xf77d18b1d540b46f3621aa01419042b5c0cf7b44', 0, 1, '2024-05-05 06:13:20+00', 0, 0, '{"fid": 318447, "object": "user", "pfp_url": "https://i.imgur.com/2s11bkG.jpg", "profile": {"bio": {"text": "Music, Literacy, Sport NFTs | 🐈 /catwalk", "mentioned_profiles": []}}, "username": "plantsnft", "power_badge": true, "display_name": "Plants ", "active_status": "inactive", "verifications": ["0x91942026918fd219c6b62f739c4dab80dd6673b6"], "follower_count": 796, "custody_address": "0x95212b422d5f60128ecd746cc9e0a5cd66014c81", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x91942026918fd219c6b62f739c4dab80dd6673b6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/offrami/wasting-my-time-with-you?referral_source=link\"}"}', NULL), - (928712, '0x42b9271f4211ef90c962f02c61a8c31774fbe89a', 0, 1, '2024-05-07 07:59:04+00', 0, 0, '{"fid": 501914, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b14740fd-c936-4695-d36d-2176896c5200/rectcrop3", "profile": {"bio": {"text": "base/onchain", "mentioned_profiles": []}}, "username": "masch87", "power_badge": false, "display_name": "masch87🎩🦄✅", "active_status": "inactive", "verifications": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "follower_count": 1418, "custody_address": "0xae6ce4dd57535388d8181f11fbc7696244f05ece", "following_count": 1958, "verified_addresses": {"eth_addresses": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki33/zico-feat-jennie-spot-1?si=da80c2ba5f9e4e30a14de2cdb022831a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108937, '0x01ac8c503563854498a1de89f8aa361f2d07d255', 0, 1, '2024-05-05 03:07:44+00', 0, 2, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 128, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 165, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbo/alive\"}"}', NULL), - (108896, '0x9d4fe633047a5d7c518d0b071561ad147308b6f2', 0, 1, '2024-05-05 03:05:55+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼..", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6qipnGLbzUsliXtsuwel8S?si=3744a28d395b43a8\"}"}', NULL), - (283231, '0xe7d7673b4cfd7232ee2b8af5cce3d12dc9af62f8', 0, 1, '2024-05-05 18:21:46+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/djjunk-japan/g-dragon-that-xx-xx-dj-junk?si=b01f808317e64ff4b0c7960faad56bbf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (108647, '0x31a69551c3dd4ce865016500a43b4388f15342d6', 0, 1, '2024-05-05 02:57:44+00', 0, 2, '{"fid": 423728, "object": "user", "pfp_url": "https://i.imgur.com/BU9RAZU.jpg", "profile": {"bio": {"text": "뭐 그냥 시부려볼게 소통해요~ 소통 좋아한다.. 라르로.. 소통 거 제육한접..ㅅ.. 아 여기가 아닌가? \n소통왕이 되고싶다.. 거 숙제 좀 내와라 찾아갈라니까", "mentioned_profiles": []}}, "username": "dummoring", "power_badge": false, "display_name": "dummoring", "active_status": "inactive", "verifications": ["0x82fdfe419dade531ed849bf92d21da23900622ca"], "follower_count": 2311, "custody_address": "0x0b35ef6b7be2d60f99f6db9b8ec9cf3816b92835", "following_count": 1068, "verified_addresses": {"eth_addresses": ["0x82fdfe419dade531ed849bf92d21da23900622ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hpstylez/50-cent-eminem-dr-dre-tupac?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://media1.giphy.com/media/D7z8JfNANqahW/giphy.gif?cid=4f4edd02e858ghz16o1of12zt3vizoutzyyss9pdfviisgi8&ep=v1_gifs_search&rid=giphy.gif\"}"}', NULL), - (137480, '0x36c6ce5fb213936a90b668d366c51d8dc3dc9e20', 0, 1, '2024-05-05 06:35:59+00', 0, 12, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gpg8h\"}"}', NULL), - (108793, '0x5bbbb9729fea5ef1364251682bac0c21795c25ec', 0, 1, '2024-05-05 03:02:22+00', 0, 1, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3150, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2671, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bossman-dlow/bossman-dlow-phil-jackson?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (111888, '0x7a090bfb9c540dbfd44e5890e997335e37b33aee', 0, 1, '2024-05-05 03:56:22+00', 0, 2, '{"fid": 408634, "object": "user", "pfp_url": "https://arweave.net/Fbdt5zfyzzi5INFf-9An0n7F3ZEM_NBnytJythExdf4/", "profile": {"bio": {"text": "100% Follow back TH\n", "mentioned_profiles": []}}, "username": "0xkh1n", "power_badge": false, "display_name": "0xKh1n", "active_status": "inactive", "verifications": ["0x93d7c80eee39bfe8655078077c72780f1c992bac"], "follower_count": 433, "custody_address": "0xfea6569ebbd1457226608e711810e7f715b10dc5", "following_count": 868, "verified_addresses": {"eth_addresses": ["0x93d7c80eee39bfe8655078077c72780f1c992bac"], "sol_addresses": ["G4xa3DShCcPw5rB5auCLxa3hFFzpQxNXB53UHVcfZUDN"]}}', '{"{\"url\":\"https://on.soundcloud.com/w8RKwyyUCWwC4atA7\"}"}', NULL), - (111889, '0xba5ac5e909bc2813e1858654d5e5fe701bfc8e24', 0, 1, '2024-05-05 03:56:19+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 741, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 293, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CfbewfxGUoTVdDJM8\"}"}', NULL), - (109040, '0x26613db7369e40664fa4095669bfdad453f98644', 0, 1, '2024-05-05 03:10:20+00', 0, 3, '{"fid": 379673, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/796a10d9-f28f-464d-f026-dee963f63300/rectcrop3", "profile": {"bio": {"text": "Can win\nhttps://gonish77.tistory.com/", "mentioned_profiles": []}}, "username": "gonish77", "power_badge": false, "display_name": "Goni🍖🎩", "active_status": "inactive", "verifications": ["0x944de1cc15d4916f68bbb018c4ae274141904a56"], "follower_count": 1490, "custody_address": "0xec7a92edf2b97ee65a70cd4fc80967da829bbc9c", "following_count": 1348, "verified_addresses": {"eth_addresses": ["0x944de1cc15d4916f68bbb018c4ae274141904a56"], "sol_addresses": ["486rh1UqhE9C8CqKwZB8rkEoWyXvQMuvR2p55izmQsZi"]}}', '{"{\"url\":\"https://soundcloud.com/wzfajehz6xoy/vbilhnxw9ls2\"}"}', NULL), - (160212, '0x0bd27b12b331fdb8ca1deba4c61a25e14da70f76', 0, 1, '2024-05-05 09:44:02+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1121, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 933, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n1xZRXkbpJL2aee68\"}"}', NULL), - (117427, '0x954bb986388f7a6359616e63adb997a94291f303', 0, 1, '2024-05-05 04:37:16+00', 0, 0, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/CTVAgyZLDL7HZTaA6\"}"}', NULL), - (152631, '0x3ebe8584136402409fecfef0a6a03e842fa29f3d', 0, 1, '2024-05-05 08:57:19+00', 0, 5, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1186, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 939, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4FmCUATNIarCQh72JYdvnm?si=iq5p-DiRT2q0IkyHdM9B_g\"}"}', NULL), - (109000, '0xe82e88aff0d1c1f642d2de70d269107a4a7f7295', 0, 1, '2024-05-05 03:09:08+00', 0, 1, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3150, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2671, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zunhozoon/s-s-a?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (211905, '0xbcdb196f832def07010c1c46b9de198f70a79ade', 0, 1, '2024-05-05 12:59:51+00', 0, 2, '{"fid": 501931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6eea1270-1cc8-457a-c547-fa04d19a4900/rectcrop3", "profile": {"bio": {"text": "Hi :)", "mentioned_profiles": []}}, "username": "eeaa", "power_badge": false, "display_name": "eeaa", "active_status": "inactive", "verifications": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "follower_count": 576, "custody_address": "0xd525a5cfdee1efeaf43f7f19594c20f7f22d4bdf", "following_count": 474, "verified_addresses": {"eth_addresses": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/oh-ty/ihu\"}"}', NULL), - (120012, '0xd997c85a03d7296d5566339cfa90f56a0b09c8e6', 0, 1, '2024-05-05 04:57:15+00', 0, 2, '{"fid": 219069, "object": "user", "pfp_url": "https://i.imgur.com/j2SXQEV.png", "profile": {"bio": {"text": "🎩 🍖", "mentioned_profiles": []}}, "username": "vietnd1201", "power_badge": false, "display_name": "Vietdart.eth 🎩 🔵 🍖 🐹", "active_status": "inactive", "verifications": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "follower_count": 360, "custody_address": "0x21f73438f3b1b00374054725a1c0d606831ecda9", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "sol_addresses": ["EuKhNC1Xqmmegj4AxxgqzzHSDPLYDDn29Aie2XKtXztA"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/down-the-drain\"}"}', NULL), - (123189, '0x11f84d74d8acd60ecae71d8429377d11c55f95b6', 0, 1, '2024-05-05 05:13:55+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1110, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 899, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cfzG4jHBw6mHxEwK6\"}"}', NULL), - (109038, '0xbbc8a89f1fcd84ffeee5c932dfeabe9201527063', 0, 1, '2024-05-05 03:11:12+00', 0, 2, '{"fid": 282463, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28a8fe0a-c596-4eef-2ed8-3ffcc359a900/original", "profile": {"bio": {"text": "@ciniz disciple | @binji.eth my crush | I love @pichi because of pichi pichi | @puffdood.eth tickler", "mentioned_profiles": []}}, "username": "shiguma", "power_badge": false, "display_name": "Shigubae♾️🎩🍉🍖🪶", "active_status": "inactive", "verifications": ["0xf83d1913ed56045a9ba28c863be6457f60ac747c", "0x308fecdd63233db3745a2c10c9489cdd44a26e36"], "follower_count": 595, "custody_address": "0x1c1662ea54f96b687f564977565eb35951126bc9", "following_count": 877, "verified_addresses": {"eth_addresses": ["0xf83d1913ed56045a9ba28c863be6457f60ac747c", "0x308fecdd63233db3745a2c10c9489cdd44a26e36"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5TZKpQFKCbIlWGD8DzHbC6?si=tAMyeK5pQdG3b8ZgflbmAQ\"}"}', NULL), - (108938, '0x349c143cb1ea4b3f8c017d65d053c5503376fee0', 0, 1, '2024-05-05 03:06:36+00', 0, 1, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼.. \nI love musics!!! ", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 427, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 620, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4dVR8jBG0RQ7jbdi8GRkyd?si=d070e9079b88408e\"}"}', NULL), - (119735, '0xc248b354a6862bf961b3c8b7b53203c6e7f5ea2c', 0, 1, '2024-05-05 04:56:00+00', 0, 2, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1987, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://soundcloud.com/pjwurhexitmq/we34lvnwgukk?si=df0b4ff4a83a4573a9db50ce54d8cd50&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (119982, '0x976bfff85f430c0261f3160b456339fc10b90411', 0, 1, '2024-05-05 04:57:17+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 743, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 294, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S2iCtAnuj2CMw7Yy9\"}"}', NULL), - (137871, '0x1085a32743bab5da5cbaa25d83aa1577d384269b', 0, 1, '2024-05-05 06:38:30+00', 20, 1, '{"fid": 421585, "object": "user", "pfp_url": "https://i.imgur.com/5LpF8d5.jpg", "profile": {"bio": {"text": "nothing but crypto", "mentioned_profiles": []}}, "username": "th1rt3n", "power_badge": false, "display_name": "dmitry", "active_status": "inactive", "verifications": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "follower_count": 594, "custody_address": "0x1762f00e1642ca50e913595285610358ca4c1903", "following_count": 456, "verified_addresses": {"eth_addresses": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "sol_addresses": ["FNLiqWzr8DXDyUYUbxUX4oefZ7ZQ4HzpiCp9j6JB5h2H"]}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109173, '0x3927ecb9a65253cf2e899d3754437e62b9733d64', 0, 1, '2024-05-05 03:15:06+00', 0, 3, '{"fid": 442638, "object": "user", "pfp_url": "https://i.imgur.com/D0GTBF4.jpg", "profile": {"bio": {"text": "\nI’m in Degen, Ton ecosys ✈️\ntalking to crypto, life\n🫡\n(Sometimes the reaction can be slow, please understand)\n\n전) 여의도 직장인", "mentioned_profiles": []}}, "username": "sonorus", "power_badge": false, "display_name": "sonorus", "active_status": "inactive", "verifications": ["0x99567e06b166c61153afca62bce095db5ffe64eb"], "follower_count": 1358, "custody_address": "0xdeae3f26f7ec54cd017e976d9457075383360d87", "following_count": 1667, "verified_addresses": {"eth_addresses": ["0x99567e06b166c61153afca62bce095db5ffe64eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sszkS2b4NbwivC6g6\"}"}', NULL), - (109093, '0xc3853527aa5de51cd683fbdb4856df29c4e9b59e', 0, 1, '2024-05-05 03:11:50+00', 0, 0, '{"fid": 343483, "object": "user", "pfp_url": "https://i.imgur.com/DBcLQOz.gif", "profile": {"bio": {"text": "YUH.\n/bluegrass /yuh /legends\n\n<3 to create, learn & meme wif frenz\n\n\n\nCheck out my vids on Drakula-------------🧛🩸\nhttps://drakula.app/user/92-?invite=kwPJkt", "mentioned_profiles": []}}, "username": "92-", "power_badge": true, "display_name": "92", "active_status": "inactive", "verifications": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "follower_count": 633, "custody_address": "0xbb89817c017b1a8ed688d52c429adffd25c5e184", "following_count": 282, "verified_addresses": {"eth_addresses": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "sol_addresses": ["9wgPd4UfGTYXEAXHGu4Dng7yBjjg36DYbMsvgKSBLCJS"]}}', '{"{\"url\":\"https://soundcloud.com/sierraferrell/i-could-drive-you-crazy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109174, '0x7d17b8a87e649aab7e42ce3d9b3deb8c021dd44e', 0, 1, '2024-05-05 03:14:42+00', 0, 3, '{"fid": 333546, "object": "user", "pfp_url": "https://i.imgur.com/wkTuNjc.jpg", "profile": {"bio": {"text": "Airdrop hunting", "mentioned_profiles": []}}, "username": "456zaazaoo", "power_badge": false, "display_name": "The hunt🍖 🎩", "active_status": "inactive", "verifications": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "follower_count": 975, "custody_address": "0x76285063c9bbc8dcd4d22e0eaf96a10250cb8708", "following_count": 1259, "verified_addresses": {"eth_addresses": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2OzhQlSqBEmt7hmkYxfT6m?si=z6FLwmMKSeqWI-n98lkaUw&context=spotify%3Aplaylist%3A37i9dQZEVXbNG2KDcFcKOF\"}"}', NULL), - (108996, '0x04cedb75a341c7840457b66e21927911b1b2dab8', 0, 1, '2024-05-05 03:09:40+00', 0, 0, '{"fid": 343483, "object": "user", "pfp_url": "https://i.imgur.com/DBcLQOz.gif", "profile": {"bio": {"text": "YUH.\n/bluegrass /yuh /legends\n\n<3 to create, learn & meme wif frenz\n\n\n\nCheck out my vids on Drakula-------------🧛🩸\nhttps://drakula.app/user/92-?invite=kwPJkt", "mentioned_profiles": []}}, "username": "92-", "power_badge": true, "display_name": "92", "active_status": "inactive", "verifications": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "follower_count": 633, "custody_address": "0xbb89817c017b1a8ed688d52c429adffd25c5e184", "following_count": 282, "verified_addresses": {"eth_addresses": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "sol_addresses": ["9wgPd4UfGTYXEAXHGu4Dng7yBjjg36DYbMsvgKSBLCJS"]}}', '{"{\"url\":\"https://soundcloud.com/sierraferrell/years?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (125349, '0x4edd7412d0951570b2c7a2bd9faf685648ad7902', 0, 1, '2024-05-05 05:27:09+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 \nhost of /airdropkr 하꼬채널입니다 \naddicted to listening music", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 429, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 624, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/031_punchnello/pretty-boy-fly\"}"}', NULL), - (112038, '0xdff861a688caf8525737dfc82ce06cef9e42c579', 0, 1, '2024-05-05 03:57:35+00', 0, 6, '{"fid": 506823, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ace6f27-df7e-4a7f-7907-9779c3954b00/rectcrop3", "profile": {"bio": {"text": "Hello ! \nCat, dog, crypto", "mentioned_profiles": []}}, "username": "!506823", "power_badge": false, "display_name": "lloco", "active_status": "inactive", "verifications": ["0x9098d27cbeec78f07859f685a260b8734f505810"], "follower_count": 864, "custody_address": "0x3eb6240f85e348fabf4482e1c6f28ee215b86a2e", "following_count": 871, "verified_addresses": {"eth_addresses": ["0x9098d27cbeec78f07859f685a260b8734f505810"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AaCRumwY294JztGd8\"}"}', NULL), - (283295, '0xa952e8704fda222bd0ee932fab2714ac9a2fb506', 0, 1, '2024-05-05 18:24:07+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gd_jiyong/feat?si=c511471008ba45038a0d2bac1041bafc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (117936, '0xe4332280a668c1fa4b927cd5e981e26761995972', 0, 1, '2024-05-05 04:39:09+00', 0, 0, '{"fid": 428492, "object": "user", "pfp_url": "https://i.imgur.com/gBRj7SC.jpg", "profile": {"bio": {"text": "i like cat🐈 \ndrakula\nhttps://drakula.app/user/gwon?invite=kQTKc7\n\n\n\n", "mentioned_profiles": []}}, "username": "gwon", "power_badge": false, "display_name": "Meow🐈 🐈 🐈 ", "active_status": "inactive", "verifications": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "follower_count": 3452, "custody_address": "0xdd5bcf2ca57a4dc98f1e154bff1c124c3d1682f3", "following_count": 2327, "verified_addresses": {"eth_addresses": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/djmick159/sets/lofi-sleep-rain-lofi-hip-hop?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109280, '0x473d85ffa88908584f62d659778ab4057a38ed00', 0, 1, '2024-05-05 03:19:24+00', 0, 1, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🍖🎩🔵", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1361, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1903, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/f7d2s0jwx3qs/buzz-mp-mp3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (118424, '0x52ae7ba3d91aca72cc6d5a2ec0faec5943e1759f', 0, 1, '2024-05-05 04:43:58+00', 0, 2, '{"fid": 292685, "object": "user", "pfp_url": "https://i.imgur.com/1YQWspD.jpg", "profile": {"bio": {"text": "Hi HAM & $DEGEN TH", "mentioned_profiles": []}}, "username": "normalget", "power_badge": false, "display_name": "Normalget🎩🍖🍖🔮🧀", "active_status": "inactive", "verifications": ["0xcaa28a80a3adbff3e5b90aa67942ac3ae58e0d37", "0xacdfe356807e70a13b7096f366bc8984eb00f038", "0x7daadf5f46779bfdaa5bcf7013bcbe24b6ecba5b"], "follower_count": 1803, "custody_address": "0x28318301db0ed6bdbeec0964a045e13b8dda8ffd", "following_count": 2101, "verified_addresses": {"eth_addresses": ["0xcaa28a80a3adbff3e5b90aa67942ac3ae58e0d37", "0xacdfe356807e70a13b7096f366bc8984eb00f038", "0x7daadf5f46779bfdaa5bcf7013bcbe24b6ecba5b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zh8nDUvsHRdcg9fs9\"}"}', NULL), - (109281, '0x5c66d53d2dc57432d4bab67417a3b0148040ee3b', 0, 1, '2024-05-05 03:19:24+00', 0, 0, '{"fid": 297645, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b587adbe-6762-4997-5aa7-68bdec302c00/rectcrop3", "profile": {"bio": {"text": "Follow and turn on notifications for new mint, drop, free claim, news, etc.\nwe are so early\n\nX @santosh_sczha", "mentioned_profiles": []}}, "username": "qcxint", "power_badge": false, "display_name": "QCXINT 🎩🔮🍖", "active_status": "inactive", "verifications": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "follower_count": 1324, "custody_address": "0xdcc258a2ece6ba7e36416faf4d6d08f8b6ae2fba", "following_count": 1145, "verified_addresses": {"eth_addresses": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dCrQa\"}"}', NULL), - (108999, '0x6d57e8e88089d6e0925c1bf8a3c0465fb9a61829', 0, 1, '2024-05-05 03:09:18+00', 0, 0, '{"fid": 343483, "object": "user", "pfp_url": "https://i.imgur.com/DBcLQOz.gif", "profile": {"bio": {"text": "YUH.\n/bluegrass /yuh /legends\n\n<3 to create, learn & meme wif frenz\n\n\n\nCheck out my vids on Drakula-------------🧛🩸\nhttps://drakula.app/user/92-?invite=kwPJkt", "mentioned_profiles": []}}, "username": "92-", "power_badge": true, "display_name": "92", "active_status": "inactive", "verifications": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "follower_count": 633, "custody_address": "0xbb89817c017b1a8ed688d52c429adffd25c5e184", "following_count": 282, "verified_addresses": {"eth_addresses": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "sol_addresses": ["9wgPd4UfGTYXEAXHGu4Dng7yBjjg36DYbMsvgKSBLCJS"]}}', '{"{\"url\":\"https://soundcloud.com/sierraferrell/i-could-drive-you-crazy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (138027, '0x9d6bfc2fbe928f37d791a97ffccc39fa5b91b1e8', 0, 1, '2024-05-05 06:39:51+00', 0, 25, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1638, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3q2987XcSbQpQIiLmD6z4T?si=75O2MuXWQP-khlnk967JIw\"}"}', NULL), - (109210, '0xfd1b2b977a8f8d7f74339f93443f1723dfabd79a', 0, 1, '2024-05-05 03:15:08+00', 0, 0, '{"fid": 343483, "object": "user", "pfp_url": "https://i.imgur.com/DBcLQOz.gif", "profile": {"bio": {"text": "YUH.\n/bluegrass /yuh /legends\n\n<3 to create, learn & meme wif frenz\n\n\n\nCheck out my vids on Drakula-------------🧛🩸\nhttps://drakula.app/user/92-?invite=kwPJkt", "mentioned_profiles": []}}, "username": "92-", "power_badge": true, "display_name": "92", "active_status": "inactive", "verifications": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "follower_count": 633, "custody_address": "0xbb89817c017b1a8ed688d52c429adffd25c5e184", "following_count": 282, "verified_addresses": {"eth_addresses": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "sol_addresses": ["9wgPd4UfGTYXEAXHGu4Dng7yBjjg36DYbMsvgKSBLCJS"]}}', '{"{\"url\":\"https://soundcloud.com/ourvinyl/tyler-childers-nose-on-the?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1165428, '0xe57ff83c69518b16cf8e29370a419fc4e59f7b3e', 0, 1, '2024-05-10 13:37:13+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/de83f4a2-2626-4b45-af8a-87eb614bff15\"}"}', NULL), - (212448, '0xab7980fa07aca15a4ad78997e0133022f3a2bc37', 0, 1, '2024-05-05 13:00:56+00', 0, 0, '{"fid": 413505, "object": "user", "pfp_url": "https://i.imgur.com/Qs5haUX.jpg", "profile": {"bio": {"text": "i''m the king of the world", "mentioned_profiles": []}}, "username": "teetr", "power_badge": false, "display_name": "teetr", "active_status": "inactive", "verifications": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "follower_count": 1256, "custody_address": "0x210e5c9b953144bcc69a2d4f9e46ca20a08f2c3f", "following_count": 1287, "verified_addresses": {"eth_addresses": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vUCKnQkEyWRx6TPW6\"}"}', NULL), - (109094, '0x012061f17eeb81e7e7e7476a9549440f5062a920', 0, 1, '2024-05-05 03:11:31+00', 0, 0, '{"fid": 297645, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b587adbe-6762-4997-5aa7-68bdec302c00/rectcrop3", "profile": {"bio": {"text": "Follow and turn on notifications for new mint, drop, free claim, news, etc.\nwe are so early\n\nX @santosh_sczha", "mentioned_profiles": []}}, "username": "qcxint", "power_badge": false, "display_name": "QCXINT 🎩🔮🍖", "active_status": "inactive", "verifications": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "follower_count": 1324, "custody_address": "0xdcc258a2ece6ba7e36416faf4d6d08f8b6ae2fba", "following_count": 1145, "verified_addresses": {"eth_addresses": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":503116,\"hash\":\"0xb95bea6ffc62d1a196d61c90828807e9079668b6\"}}","{\"url\":\"https://m.soundcloud.com/queen-69312/bohemian-rhapsody-remastered-1\"}"}', NULL), - (109414, '0x4c669207a579ee9cb48dabb61ffa3ec9c8e3c0c0', 0, 1, '2024-05-05 03:22:22+00', 0, 0, '{"fid": 297645, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b587adbe-6762-4997-5aa7-68bdec302c00/rectcrop3", "profile": {"bio": {"text": "Follow and turn on notifications for new mint, drop, free claim, news, etc.\nwe are so early\n\nX @santosh_sczha", "mentioned_profiles": []}}, "username": "qcxint", "power_badge": false, "display_name": "QCXINT 🎩🔮🍖", "active_status": "inactive", "verifications": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "follower_count": 1324, "custody_address": "0xdcc258a2ece6ba7e36416faf4d6d08f8b6ae2fba", "following_count": 1145, "verified_addresses": {"eth_addresses": ["0xa2129145a94f3920faf3de28b5fe613a7a3d19a8", "0x8f7e58c9dca2a42e4f7b677cd298de2e05462214"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Wj6Fz\"}"}', NULL), - (109322, '0xf391a84a086f6d2f47796ac832572e0ddc22b6dc', 0, 1, '2024-05-05 03:20:38+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/ben-cotti/superman-soul-by-rex-banner?si=9d703a19baef4e8a8d7daf44bf70d8e8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (121395, '0x23b5b2bd6e1955369237ef2e1a54aa6c71a8d2be', 0, 1, '2024-05-05 05:02:59+00', 0, 2, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 743, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 294, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fYexQZxSbtPRTmWA8\"}"}', NULL), - (112219, '0x98974ade043ce56b63690cde92b1b2c0935458fb', 0, 1, '2024-05-05 03:59:21+00', 0, 2, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2866, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3285, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/isduj1NE6iRYyx726\"}"}', NULL), - (120782, '0xda422e066a04a04f1ae9e741bfc506054fa0d53c', 0, 1, '2024-05-05 05:01:05+00', 0, 0, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🍖🎩🔵", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1364, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1904, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rzkika/beenzino-aqua-man?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (139739, '0xd02fb0e60f629f587ba4f0c25c34a4c54e0421bb', 0, 1, '2024-05-05 07:09:13+00', 0, 5, '{"fid": 406215, "object": "user", "pfp_url": "https://i.imgur.com/PAuuxCC.jpg", "profile": {"bio": {"text": "base/degen", "mentioned_profiles": []}}, "username": "redqueen", "power_badge": false, "display_name": "HARU", "active_status": "inactive", "verifications": ["0xec0279a732c2d621ebb49a8a562596eadc533247"], "follower_count": 2082, "custody_address": "0x90fe58c04bb0ea55b647fbf5b1cbb347a9791f38", "following_count": 1997, "verified_addresses": {"eth_addresses": ["0xec0279a732c2d621ebb49a8a562596eadc533247"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pratiwi-evie/last-goodbye?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (125300, '0xf4b7f012cfdece0911d2b5ab7a4a8ab588bc39bf', 0, 1, '2024-05-05 05:25:43+00', 0, 1, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "follower_count": 2088, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2449, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TjFQQHpK5xeVLMAD6\"}"}', NULL), - (109282, '0x94cf2383b9d3be631017ea56103d082811666b00', 0, 1, '2024-05-05 03:18:54+00', 0, 0, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 177, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GJpqZ\"}"}', NULL), - (109571, '0x9ed8436f3090950af152d69f42d08f17f21f132f', 0, 1, '2024-05-05 03:26:58+00', 0, 1, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1071, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1131, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TMkoD\"}"}', NULL), - (112435, '0xb4514c887cd658c26198fcdcb9ff6fd7a2423417', 0, 1, '2024-05-05 04:02:11+00', 0, 0, '{"fid": 408634, "object": "user", "pfp_url": "https://arweave.net/Fbdt5zfyzzi5INFf-9An0n7F3ZEM_NBnytJythExdf4/", "profile": {"bio": {"text": "100% Follow back TH\n", "mentioned_profiles": []}}, "username": "0xkh1n", "power_badge": false, "display_name": "0xKh1n", "active_status": "inactive", "verifications": ["0x93d7c80eee39bfe8655078077c72780f1c992bac"], "follower_count": 433, "custody_address": "0xfea6569ebbd1457226608e711810e7f715b10dc5", "following_count": 868, "verified_addresses": {"eth_addresses": ["0x93d7c80eee39bfe8655078077c72780f1c992bac"], "sol_addresses": ["G4xa3DShCcPw5rB5auCLxa3hFFzpQxNXB53UHVcfZUDN"]}}', '{"{\"url\":\"https://on.soundcloud.com/PR95QxxrgboDDBnc9\"}"}', NULL), - (109464, '0xbb49b285b469411eec7f720e02a6ebae4ee86a36', 0, 1, '2024-05-05 03:25:36+00', 0, 0, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 / 슈캐O \nhttps://t.me/mirror_note\nhost of /airdropkr 하꼬채널입니다 어서옵쇼.. \nI love musics!!! ", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 426, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chekparren/no-i-m-not-sorry\"}"}', NULL), - (109529, '0xc899eb1f78a484f6b43adcab17ea3a4507dc648a', 0, 1, '2024-05-05 03:26:47+00', 0, 0, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/zico-spot-feat-jennie?si=96a13cd1a82847c4b698d0a4ee1c191c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (116252, '0x56cdf62d7ca41c783e55d5dfe0b92ff00b3dd252', 0, 1, '2024-05-05 04:33:32+00', 0, 25, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1631, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1680, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6tohHT5sQRMjdWHMNn190u?si=TA6qDTGqQ6yzRx_LGWMLtg\"}"}', NULL), - (510603, '0x27ae6443a7cbdb9447b89040600fa016df358bb2', 0, 1, '2024-05-06 08:22:16+00', 0, 0, '{"fid": 469305, "object": "user", "pfp_url": "https://i.imgur.com/eIrhOrd.jpg", "profile": {"bio": {"text": "I want to thank everyone who clicked on me.\nI''m interested in crypto markets.\nI''m also interested in food and traveling.\nI wish you well.", "mentioned_profiles": []}}, "username": "jrebuild", "power_badge": false, "display_name": "jrebuild", "active_status": "inactive", "verifications": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "follower_count": 2096, "custody_address": "0x25d482ab85de61a33c7ec7985b255f64ddab73d0", "following_count": 2072, "verified_addresses": {"eth_addresses": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "sol_addresses": []}}', '{"{\"url\":\"연휴야 가지마 제발 ㅜㅠListen to brown eyes ( two things needed for the same) - 가지마 가지마 by E P W on #SoundCloud https://on.soundcloud.com/LJirQ\"}"}', NULL), - (991738, '0x00fd28073c555b7862f21bbf0cddf60627f9e431', 0, 1, '2024-05-07 11:27:19+00', 0, 0, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1476, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1624, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tygathemill/taeyeon-i-fine-why-11-11-mashup?si=a182fc302be848158a32294a2321d541&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109572, '0x3fa81271d9bc9c88123dab4fb97091185d83990e', 0, 1, '2024-05-05 03:27:04+00', 0, 0, '{"fid": 384868, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b93fdac-19c2-4298-9b96-aab53710a400/original", "profile": {"bio": {"text": "CHAMELEONIC 👅 pro /cs2 for nouns @esports fe + artist ✨️ building a prop /nouns ⌐◧-◧ -> nouns.gg (she/her 💌) NOW ON /alfafrens + /degen-punks", "mentioned_profiles": []}}, "username": "nounslunari.eth", "power_badge": true, "display_name": "テ riley luna ✨ ⌐◨-◨", "active_status": "inactive", "verifications": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "follower_count": 280, "custody_address": "0xf2ed7c31c86d89934f30f39852231e7042d744c8", "following_count": 380, "verified_addresses": {"eth_addresses": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/porter-robinson/knock-yourself-out-xd?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109579, '0x858cafdfacaa7e52fc28c7694981b81ecf98b451', 0, 1, '2024-05-05 03:27:24+00', 0, 0, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 177, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"Listen to No Ohttps://on.soundcloud.com/sv4kx\"}"}', NULL), - (120552, '0x49736ee9bec9b500f4669d38e53cb095303776a2', 0, 1, '2024-05-05 04:58:51+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 743, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 294, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GAvvMW6VULj5FgCL6\"}"}', NULL), - (109569, '0x8060a57f60d26797e840a885e51a12c14bf72718', 0, 1, '2024-05-05 03:28:02+00', 0, 0, '{"fid": 514742, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/998d4cfa-1e8a-4b54-0241-9b5881fbe000/rectcrop3", "profile": {"bio": {"text": "F4F 카페인 풀 충전", "mentioned_profiles": []}}, "username": "!514742", "power_badge": false, "display_name": "Monster", "active_status": "inactive", "verifications": ["0xf474eba8755cca9b51edb1d3c96979e06c655111"], "follower_count": 23, "custody_address": "0x5a82f1f02a2bb32f06c5e9bbfe1961f240029ac8", "following_count": 271, "verified_addresses": {"eth_addresses": ["0xf474eba8755cca9b51edb1d3c96979e06c655111"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/u7shannwflvs/yhurhlboekuf?si=b254e1ea1ff04342a78fe495a9e26ac0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109465, '0x6156516472c50dce041ad4bfd66bf328a7b42128', 0, 1, '2024-05-05 03:24:37+00', 0, 2, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/8sgg8rp4nfvc/monologue?si=e7e90f7ba30a4700881aa8ba4ff4e3d5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (120781, '0x45291e6cd3ec3096278f27d4969a8976fea0fb4d', 0, 1, '2024-05-05 05:01:01+00', 0, 3, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3379, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2652, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VwiprQ4Yt2DvKBaM7\"}"}', NULL), - (109852, '0x0f3d0a5c57a088e71093376e12deae3da8d0dd18', 0, 1, '2024-05-05 03:34:27+00', 0, 5, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 \nhost of /airdropkr 하꼬채널입니다 \naddicted to listening music", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 429, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 624, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3e1Q861G4urfgf7RAMNRdc\"}"}', NULL), - (109620, '0x2f2825724949ba823f3288055b12cedfd23bc761', 0, 1, '2024-05-05 03:28:14+00', 0, 0, '{"fid": 384868, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b93fdac-19c2-4298-9b96-aab53710a400/original", "profile": {"bio": {"text": "CHAMELEONIC 👅 pro /cs2 for nouns @esports fe + artist ✨️ building a prop /nouns ⌐◧-◧ -> nouns.gg (she/her 💌) NOW ON /alfafrens + /degen-punks", "mentioned_profiles": []}}, "username": "nounslunari.eth", "power_badge": true, "display_name": "テ riley luna ✨ ⌐◨-◨", "active_status": "inactive", "verifications": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "follower_count": 280, "custody_address": "0xf2ed7c31c86d89934f30f39852231e7042d744c8", "following_count": 380, "verified_addresses": {"eth_addresses": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/porter-robinson/cheerleader?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109416, '0x90ff909f16383acac2ad2fb857ddc73fbd849d95', 0, 1, '2024-05-05 03:21:58+00', 0, 0, '{"fid": 384868, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b93fdac-19c2-4298-9b96-aab53710a400/original", "profile": {"bio": {"text": "CHAMELEONIC 👅 pro /cs2 for nouns @esports fe + artist ✨️ building a prop /nouns ⌐◧-◧ -> nouns.gg (she/her 💌) NOW ON /alfafrens + /degen-punks", "mentioned_profiles": []}}, "username": "nounslunari.eth", "power_badge": true, "display_name": "テ riley luna ✨ ⌐◨-◨", "active_status": "inactive", "verifications": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "follower_count": 280, "custody_address": "0xf2ed7c31c86d89934f30f39852231e7042d744c8", "following_count": 380, "verified_addresses": {"eth_addresses": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/demotapes/wishing-well-with-reo-cragun?referral=0x56ebd346d5013a531105aaeeb574b31f003e11dd&referral_source=link\"}"}', NULL), - (121819, '0x30dfdf92719b0252839482308324fba94889f584', 0, 1, '2024-05-05 05:03:31+00', 0, 0, '{"fid": 236317, "object": "user", "pfp_url": "https://i.imgur.com/KbFe4TW.jpg", "profile": {"bio": {"text": "Web3 Restless Hoarder\ninsomnia024.eth", "mentioned_profiles": []}}, "username": "charmander", "power_badge": false, "display_name": "Insomnia 🎩", "active_status": "inactive", "verifications": ["0xaa8c41d4b0c66709cf6f1487623e14e347545dbe"], "follower_count": 152, "custody_address": "0xd14dc4593a790d011e0bf33e023bf48832ae3ff4", "following_count": 585, "verified_addresses": {"eth_addresses": ["0xaa8c41d4b0c66709cf6f1487623e14e347545dbe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dtx5b\"}"}', NULL), - (109625, '0x800edb86aa54a59a70ce725882da256f5aa6f9a2', 0, 1, '2024-05-05 03:28:32+00', 0, 1, '{"fid": 500300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/39c71e16-1dd3-40ec-0491-f015afaaea00/rectcrop3", "profile": {"bio": {"text": "I''m mad of all kinds of drinks 🍸", "mentioned_profiles": []}}, "username": "swoo", "power_badge": false, "display_name": "Drunken_Sia🎩", "active_status": "inactive", "verifications": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "follower_count": 332, "custody_address": "0x60069e3161a3d5b14d19c56724126c2a16161cef", "following_count": 363, "verified_addresses": {"eth_addresses": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qkCPR\"}"}', NULL), - (109039, '0xace3c8f20e41bcf11558f1892006771895626b08', 0, 1, '2024-05-05 03:10:36+00', 0, 0, '{"fid": 496478, "object": "user", "pfp_url": "https://i.imgur.com/W5DHtbw.jpeg", "profile": {"bio": {"text": "One awesome mutha", "mentioned_profiles": []}}, "username": "joyfriend", "power_badge": false, "display_name": "Joyfriend", "active_status": "inactive", "verifications": ["0x779851d2d320cdf8ed094e51ccda17f1920b0ae7"], "follower_count": 71, "custody_address": "0x867b5e6e3e4b9ab15ffeb53f7eb9bd7591473e61", "following_count": 299, "verified_addresses": {"eth_addresses": ["0x779851d2d320cdf8ed094e51ccda17f1920b0ae7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Aqlt4N5h6rUtKnd09VXpr?si=5m5t9MAHTLGrZWj3F4o8wA\"}"}', NULL), - (137872, '0x1b2780d30b3022c4c01649c0859ccdd6c76a75ca', 0, 1, '2024-05-05 06:39:01+00', 0, 1, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 \nhost of /airdropkr 하꼬채널입니다 \naddicted to listening music", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 432, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7pmLi2drbQTrVAjd8NCeDs?si=a13efbfea0e54004\"}"}', NULL), - (131292, '0x2b8fe50d8952d6a6ceae14150fb61e003c755dde', 13250, 1, '2024-05-05 06:13:28+00', 41, 26, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/my-parents-house?referral_source=link\"}"}', NULL), - (116584, '0x0baa1832739510605e87e2fad185bf12c7719c91', 0, 1, '2024-05-05 04:34:16+00', 0, 0, '{"fid": 428492, "object": "user", "pfp_url": "https://i.imgur.com/gBRj7SC.jpg", "profile": {"bio": {"text": "i like cat🐈 \ndrakula\nhttps://drakula.app/user/gwon?invite=kQTKc7\n\n\n\n", "mentioned_profiles": []}}, "username": "gwon", "power_badge": false, "display_name": "Meow🐈 🐈 🐈 ", "active_status": "inactive", "verifications": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "follower_count": 3452, "custody_address": "0xdd5bcf2ca57a4dc98f1e154bff1c124c3d1682f3", "following_count": 2327, "verified_addresses": {"eth_addresses": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/partyomo/partynextdoor-l-o-s-e-m-y-m-i?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (117937, '0x44a9e1c735c0303621ace3d7cfcc36c8998a06ef', 0, 1, '2024-05-05 04:39:18+00', 10, 0, '{"fid": 428492, "object": "user", "pfp_url": "https://i.imgur.com/gBRj7SC.jpg", "profile": {"bio": {"text": "i like cat🐈 \ndrakula\nhttps://drakula.app/user/gwon?invite=kQTKc7\n\n\n\n", "mentioned_profiles": []}}, "username": "gwon", "power_badge": false, "display_name": "Meow🐈 🐈 🐈 ", "active_status": "inactive", "verifications": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "follower_count": 3452, "custody_address": "0xdd5bcf2ca57a4dc98f1e154bff1c124c3d1682f3", "following_count": 2327, "verified_addresses": {"eth_addresses": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/woozlesband/sets/chillhop-radio-jazz-lofi-hip?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (166782, '0x21f788d4e493881cd4e3ed6b2ea50a573fc5fbae', 0, 1, '2024-05-05 10:04:38+00', 0, 0, '{"fid": 421747, "object": "user", "pfp_url": "https://arweave.net/YxR4twNiGosSuAU4QuqlH_M8-kTtL5Fvkt7k7T71v_0/", "profile": {"bio": {"text": "athlete✅", "mentioned_profiles": []}}, "username": "mamas", "power_badge": false, "display_name": "Mamas 🔹", "active_status": "inactive", "verifications": ["0x1666e46ca7257ce4cfbdb520e45f2224f084365d"], "follower_count": 1626, "custody_address": "0x709862049e6f5e527c1f6bcabe6ba34632a19cf9", "following_count": 2379, "verified_addresses": {"eth_addresses": ["0x1666e46ca7257ce4cfbdb520e45f2224f084365d"], "sol_addresses": ["4CVPbT4HCdCgz9kEYtFj8ZysuPvNLmJWU1wuKR5L2ngn"]}}', '{"{\"url\":\"https://on.soundcloud.com/t8axcS65pEzr9AQm6\"}"}', NULL), - (109623, '0x1accedf884622d506b3454bd050b31059d2a2587', 0, 1, '2024-05-05 03:29:00+00', 0, 0, '{"fid": 333546, "object": "user", "pfp_url": "https://i.imgur.com/wkTuNjc.jpg", "profile": {"bio": {"text": "Airdrop hunting", "mentioned_profiles": []}}, "username": "456zaazaoo", "power_badge": false, "display_name": "The hunt🍖 🎩", "active_status": "inactive", "verifications": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "follower_count": 975, "custody_address": "0x76285063c9bbc8dcd4d22e0eaf96a10250cb8708", "following_count": 1259, "verified_addresses": {"eth_addresses": ["0xac2cb05d001091f6ffea9111377710cb2efc55ae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dennis-bearr/dennis-baer-echoes-of-us?in=buzzing-playlists/sets/buzzing-pop&si=cc8c4da154354de69f4019e0a3bfe840&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (109583, '0x2feb512ca0daf22343307b93a5b3a9616c1919ae', 0, 1, '2024-05-05 03:27:34+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/user-21707321/newjeans-attention?si=ba539db19af24e78afda35e37e20deaf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (122916, '0x49d4fb07c357d808fd1062bc816c60e4c5ecdbe6', 0, 1, '2024-05-05 05:12:29+00', 0, 0, '{"fid": 501841, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb130c93-dd5d-4169-e986-8d6376e18000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kennyhowlah", "power_badge": false, "display_name": "KH.", "active_status": "inactive", "verifications": ["0x7774a3e918ebbe88c8d46a8fad0af506d00ad54b"], "follower_count": 11, "custody_address": "0x734b5f6ad96b8365bce01dd65e5b1965c301e958", "following_count": 86, "verified_addresses": {"eth_addresses": ["0x7774a3e918ebbe88c8d46a8fad0af506d00ad54b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=qaq--pVNRlSyyTuoshA_Kg\"}"}', NULL), - (139782, '0xf502e905e43851bfc067ceebd8a833875d985ab5', 0, 1, '2024-05-05 07:11:14+00', 0, 2, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GbX9JafXQcKjyNvU9\"}"}', NULL), - (109207, '0xc6da6047eaf8ea679780329d194174b15e73584c', 0, 1, '2024-05-05 03:15:40+00', 0, 2, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 273, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 330, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1FjITBDWT1DyZGiMaJvy2a?si=KkjRJOYySFmoYwc6DLSL4w\"}"}', NULL), - (121124, '0x991c16917349dd433c34a02f20c8ff64b437fca1', 0, 1, '2024-05-05 05:01:42+00', 0, 2, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🍖🎩🔵", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1364, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1904, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rzkika/beenzino-aqua-man?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (134497, '0x4ecc2f452a6a1751ed8bf85d3320fcfb761e6830', 0, 1, '2024-05-05 06:22:40+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BrZba\"}"}', NULL), - (125555, '0x38233c3399a9d1e5c66e3c1e4c936cb627e4cd57', 0, 1, '2024-05-05 05:30:32+00', 0, 0, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 620, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 311, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/8LHwp\"}"}', NULL), - (109627, '0x1a3538ef240db21bc9fa86a201f42b2a5f73ae86', 0, 1, '2024-05-05 03:28:27+00', 0, 1, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 614, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 914, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/music-1-beat/stephanie-poetri-i-love-you-3000?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (125729, '0x9ced9bbe0cfe3bf4dcd3b37d23aa1a469e484d80', 0, 1, '2024-05-05 05:31:40+00', 0, 4, '{"fid": 479253, "object": "user", "pfp_url": "https://i.imgur.com/f2gnEq7.jpg", "profile": {"bio": {"text": "그게 뭐든 다 이루다_ERUDA_열정걸_초긍정에너지(With me, you have super power😲 Super positive energy✨️⚘️) 늘 응원해:)", "mentioned_profiles": []}}, "username": "eruda", "power_badge": false, "display_name": "ERUDA", "active_status": "inactive", "verifications": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "follower_count": 855, "custody_address": "0x2c72ca53218c08d77e61639cb2ccfa7d08403ff8", "following_count": 585, "verified_addresses": {"eth_addresses": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ChswF\"}"}', NULL), - (138247, '0x6706ac2ed5fbb1b5d2348e0f210890d6f2b08d74', 0, 1, '2024-05-05 06:42:18+00', 0, 4, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2115, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1822, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gxA2AegPARhG4LKX6\"}"}', NULL), - (1173021, '0x323dc344b5c58fc2e63152f2c01c417af41331c7', 0, 1, '2024-05-14 22:24:02+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNot a single meme is mine probably\n\n\n\n\n\n\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 543, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/badley/fool?referral_source=link\"}"}', NULL), - (112971, '0x9d8ce465c6c1dbcee1d50a294ed8c9c7736d875a', 0, 1, '2024-05-05 04:05:30+00', 0, 0, '{"fid": 301437, "object": "user", "pfp_url": "https://i.imgur.com/8rQVKyi.jpg", "profile": {"bio": {"text": "I want more", "mentioned_profiles": []}}, "username": "wap30", "power_badge": false, "display_name": "Kajol 🎩\n🍖⛓️✅👾🔄", "active_status": "inactive", "verifications": ["0x82985c604c4259b99ba47c7994ef20609f5b3c0d"], "follower_count": 762, "custody_address": "0x0ade35a4bf23af5da9977bd3fd72aefdb8fd3c9e", "following_count": 951, "verified_addresses": {"eth_addresses": ["0x82985c604c4259b99ba47c7994ef20609f5b3c0d"], "sol_addresses": ["D1i83kpepmXo3UBEscVbXKqXissnyCVvwiGGuQaKo4mh"]}}', '{"{\"url\":\"https://on.soundcloud.com/dbE3ojiZiDhJ8ckW6\"}"}', NULL), - (109626, '0x8f819ac75031e5bf027a3490757c219a2109e13a', 0, 1, '2024-05-05 03:28:36+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3372, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 3958, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/user-779081343/newjeans-eta?si=c16aee636c7a4941a52b03af9b21fcda&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (112099, '0xc29cffe48254aea974379545d27066d987601005', 0, 1, '2024-05-05 03:58:19+00', 0, 2, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 \nhost of /airdropkr 하꼬채널입니다 \naddicted to listening music", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 429, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 624, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6KB2OPefadupVDnVNYq23A?si=bd96968adc2148c9\"}"}', NULL), - (125553, '0x7ce07c1dfa10eaf9ec5978fb752a6fe9b7d90541', 0, 1, '2024-05-05 05:29:40+00', 0, 3, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1408, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1724, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7sp5iTQjB7GHXX4TKrhOaO?si=VQpja8RpREOWYQd5wd1WBQ&context=spotify%3Aplaylist%3A37i9dQZF1DX4bUiDosd2wg\"}"}', NULL), - (118117, '0x40d8e43877961b1dd663adbf2323630129d45657', 0, 1, '2024-05-05 04:40:11+00', 0, 0, '{"fid": 428492, "object": "user", "pfp_url": "https://i.imgur.com/gBRj7SC.jpg", "profile": {"bio": {"text": "i like cat🐈 \ndrakula\nhttps://drakula.app/user/gwon?invite=kQTKc7\n\n\n\n", "mentioned_profiles": []}}, "username": "gwon", "power_badge": false, "display_name": "Meow🐈 🐈 🐈 ", "active_status": "inactive", "verifications": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "follower_count": 3452, "custody_address": "0xdd5bcf2ca57a4dc98f1e154bff1c124c3d1682f3", "following_count": 2327, "verified_addresses": {"eth_addresses": ["0x0f8c2cdf07447885f27e3f094b64dc90af681fbd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/premierhiphopdaily/toomanychances?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (123196, '0x46cd3d75e89cc3a7521761e11bef1484a6883e71', 0, 1, '2024-05-05 05:13:42+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1110, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 899, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cfzG4jHBw6mHxEwK6\"}"}', NULL), - (121121, '0x241cfa1899c4be0f8c401fab362c155b75f9a2f3', 0, 1, '2024-05-05 05:01:47+00', 0, 6, '{"fid": 404016, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78397f21-ea00-4517-9e4e-565a75008500/rectcrop3", "profile": {"bio": {"text": "Traveler✈️/Sailor⚓️/Trader⏳️/\nI love all nature.\nAll the pictures myself.\n모든 사진은 직접 찍었어요.\n받은건 감사히 돌려드리기.\n", "mentioned_profiles": []}}, "username": "namsan", "power_badge": false, "display_name": "NamKyoungsu🎩🍖🫂🔮", "active_status": "inactive", "verifications": ["0x4825bdddab18adfcd8b58c113923bfc50749d756"], "follower_count": 2511, "custody_address": "0x560b22f08ecd46e438f58a52224886110cf443bd", "following_count": 2470, "verified_addresses": {"eth_addresses": ["0x4825bdddab18adfcd8b58c113923bfc50749d756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ohb4jhiwsjkl/mc-feat?si=7e3699ea33c14e6b8bd6e600a6a4785b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (127844, '0xb437e6d3724d6c7d53a87e47f05247bea5fc0c6a', 0, 1, '2024-05-05 05:55:26+00', 0, 0, '{"fid": 425117, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ffa2806-e07f-4d46-1bd8-8fa9debacc00/rectcrop3", "profile": {"bio": {"text": "away", "mentioned_profiles": []}}, "username": "away", "power_badge": false, "display_name": "away", "active_status": "inactive", "verifications": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "follower_count": 1810, "custody_address": "0x0ae06a7d1fb20108b10f4e2ac171e512ccb8fbf4", "following_count": 1909, "verified_addresses": {"eth_addresses": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leon-bergmann-189378010/heart-on-my-sleeve\"}"}', NULL), - (125351, '0x7ac9468ba632a1189074d3654a5d8fffcc452004', 0, 1, '2024-05-05 05:27:11+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/degen-beginnings?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (125558, '0x582ba753eb73db1fbe538172321a2b37cda42263', 0, 1, '2024-05-05 05:29:49+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/you-have-all-the-weapons-you-need?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (118766, '0x31142867131b6b96796e47b4dac22f115bee188d', 0, 1, '2024-05-05 04:45:54+00', 0, 0, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/PwcUT6f9s1ysGdZMA\"}"}', NULL), - (118780, '0x9b63a749af62ed0a046a237997128c8cf42db0d5', 0, 1, '2024-05-05 04:46:03+00', 0, 5, '{"fid": 506823, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ace6f27-df7e-4a7f-7907-9779c3954b00/rectcrop3", "profile": {"bio": {"text": "Hello ! \nCat, dog, crypto", "mentioned_profiles": []}}, "username": "!506823", "power_badge": false, "display_name": "lloco", "active_status": "inactive", "verifications": ["0x9098d27cbeec78f07859f685a260b8734f505810"], "follower_count": 866, "custody_address": "0x3eb6240f85e348fabf4482e1c6f28ee215b86a2e", "following_count": 875, "verified_addresses": {"eth_addresses": ["0x9098d27cbeec78f07859f685a260b8734f505810"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Aa8yA6H9ZqWqqFUEA\"}"}', NULL), - (131295, '0x1f6ca2019da3b3ea82153bef8dff2bea7d7fa4a6', 0, 1, '2024-05-05 06:12:41+00', 0, 8, '{"fid": 418456, "object": "user", "pfp_url": "https://i.imgur.com/RK5wyHc.jpg", "profile": {"bio": {"text": "AI art / Full stack dev / Interested in crypto / Photograph", "mentioned_profiles": []}}, "username": "yoony12", "power_badge": false, "display_name": "Yoony12", "active_status": "inactive", "verifications": ["0x178dbcce09ac48e63e57507c003259657833553f"], "follower_count": 5342, "custody_address": "0x0c1b7263d19f3c6896670fa5cbf23f431b0188ef", "following_count": 5369, "verified_addresses": {"eth_addresses": ["0x178dbcce09ac48e63e57507c003259657833553f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5tEouf2s1SPwAIkOHnvWtQ\"}"}', NULL), - (122915, '0x6b17427e5aa40605f9cb6f4fe5a0d02d32d16b92', 0, 1, '2024-05-05 05:12:20+00', 0, 0, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "follower_count": 2088, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2449, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UZGB9neHJfj6s4FZ6\"}"}', NULL), - (243062, '0x3df2231518be79c18b4ebae2b4bc74f135a651b1', 0, 1, '2024-05-05 14:04:22+00', 0, 0, '{"fid": 501245, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c443c50f-bc83-4c2b-775b-24d411beed00/original", "profile": {"bio": {"text": "Bonjour, enchanté 🙌", "mentioned_profiles": []}}, "username": "narza", "power_badge": false, "display_name": "NARZA", "active_status": "inactive", "verifications": ["0x9eb4190a8a7cfcbd854ac86c0a7fe5c9351cfc20"], "follower_count": 57, "custody_address": "0x69d86773fc5c26edf719cfac0427a5a352817ab6", "following_count": 154, "verified_addresses": {"eth_addresses": ["0x9eb4190a8a7cfcbd854ac86c0a7fe5c9351cfc20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bart-ouwehand/up-town-funk?in=user-971230359/sets/playlist-bruno-mars&si=3f9290131fc441739068488b43720065&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (122660, '0x51791b506ac1c6565339b1bbd0c2a2217895f729', 0, 1, '2024-05-05 05:08:30+00', 0, 0, '{"fid": 404016, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78397f21-ea00-4517-9e4e-565a75008500/rectcrop3", "profile": {"bio": {"text": "Traveler✈️/Sailor⚓️/Trader⏳️/\nI love all nature.\nAll the pictures myself.\n모든 사진은 직접 찍었어요.\n받은건 감사히 돌려드리기.\n", "mentioned_profiles": []}}, "username": "namsan", "power_badge": false, "display_name": "NamKyoungsu🎩🍖🫂🔮", "active_status": "inactive", "verifications": ["0x4825bdddab18adfcd8b58c113923bfc50749d756"], "follower_count": 2511, "custody_address": "0x560b22f08ecd46e438f58a52224886110cf443bd", "following_count": 2470, "verified_addresses": {"eth_addresses": ["0x4825bdddab18adfcd8b58c113923bfc50749d756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ohb4jhiwsjkl/mc-feat?si=7e3699ea33c14e6b8bd6e600a6a4785b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (118781, '0xb2376abb3cfe1839edf78ba55003918b9538675a', 0, 1, '2024-05-05 04:46:17+00', 0, 0, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1986, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/yspVuMoLrMiHM34L6\"}"}', NULL), - (127670, '0x1f3a05a3ece8bc031bc92a9ad3323b11e0d0accd', 0, 1, '2024-05-05 05:52:14+00', 0, 1, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 490, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 147, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5JWBZZuhqKzLi7i4xDI6ln?si=UfOZ8tUBRuGunyPuvfl33A\"}"}', NULL), - (125463, '0x4c2839dffc51046475e88c7205b1f33f4da55e11', 0, 1, '2024-05-05 05:29:16+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/luvlok?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (122871, '0x335eb533129484ce8ca6c9fe6ed715a82f3df19d', 0, 1, '2024-05-05 05:11:39+00', 0, 4, '{"fid": 433866, "object": "user", "pfp_url": "https://i.imgur.com/lJtAWQF.jpg", "profile": {"bio": {"text": "Have a good day!!\nI like parenting and food, exercise!!", "mentioned_profiles": []}}, "username": "dooristar32", "power_badge": false, "display_name": "RARE-LOVER", "active_status": "inactive", "verifications": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "follower_count": 1799, "custody_address": "0xadd33e67c1876224068545e2497d535dad39027d", "following_count": 2186, "verified_addresses": {"eth_addresses": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eung-jin-kim/cover?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (121116, '0xfc2fc264137d47a8cb7621c0d2d6e7902b3c2fc4', 0, 1, '2024-05-05 05:02:16+00', 0, 3, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 743, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 294, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fYexQZxSbtPRTmWA8\"}"}', NULL), - (149835, '0x614c283843fbb1cb3804b06778e0eeb8c83125b7', 0, 1, '2024-05-05 08:40:58+00', 0, 0, '{"fid": 481256, "object": "user", "pfp_url": "https://i.imgur.com/83LkESp.jpg", "profile": {"bio": {"text": "You don''t have to be a spectator to win", "mentioned_profiles": []}}, "username": "hasti2004", "power_badge": false, "display_name": "Hasti", "active_status": "inactive", "verifications": ["0x38a97255e2d06d81a67fbb3d7cb98e85df93f15a"], "follower_count": 783, "custody_address": "0x31617c74e993796880195e6a5587d689fa4c910f", "following_count": 841, "verified_addresses": {"eth_addresses": ["0x38a97255e2d06d81a67fbb3d7cb98e85df93f15a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/osetta658790716/michael-kiwanuka-cold-little-heart-101-1?ref=clipboard&p=a&c=0&si=e14500417e894420ba269a1d17cc79df&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (166549, '0x14155c202fda1e60ec9f0906e6425cd32ce161fb', 0, 1, '2024-05-05 10:03:18+00', 0, 0, '{"fid": 421747, "object": "user", "pfp_url": "https://arweave.net/YxR4twNiGosSuAU4QuqlH_M8-kTtL5Fvkt7k7T71v_0/", "profile": {"bio": {"text": "athlete✅", "mentioned_profiles": []}}, "username": "mamas", "power_badge": false, "display_name": "Mamas 🔹", "active_status": "inactive", "verifications": ["0x1666e46ca7257ce4cfbdb520e45f2224f084365d"], "follower_count": 1626, "custody_address": "0x709862049e6f5e527c1f6bcabe6ba34632a19cf9", "following_count": 2379, "verified_addresses": {"eth_addresses": ["0x1666e46ca7257ce4cfbdb520e45f2224f084365d"], "sol_addresses": ["4CVPbT4HCdCgz9kEYtFj8ZysuPvNLmJWU1wuKR5L2ngn"]}}', '{"{\"url\":\"https://on.soundcloud.com/noHxZbcHQCdsjPP38\"}"}', NULL), - (118784, '0xd7f0010ce8e5b66ad1f4fa38e65498b7b344968a', 0, 1, '2024-05-05 04:46:59+00', 0, 3, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2497, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2513, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Aews7\"}"}', NULL), - (123988, '0x7c4ea353f3ccff84da55bdd7e1903166c7372ef6', 0, 1, '2024-05-05 05:17:05+00', 0, 6, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "follower_count": 2088, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2449, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AGucpuXWFubZdLiHA\"}"}', NULL), - (118763, '0xce01e0fd7b39828d658953e17f644cf6647e68fb', 0, 1, '2024-05-05 04:47:14+00', 0, 0, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 615, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/j-tajor/like-i-do?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (115618, '0xac6c60a4ead7f32ad35cfe0d9d8becef8461f831', 0, 1, '2024-05-05 04:29:57+00', 0, 11, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1631, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1680, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6tohHT5sQRMjdWHMNn190u?si=TA6qDTGqQ6yzRx_LGWMLtg\"}"}', NULL), - (125302, '0x2e7ce50a4e44ec6bca0099a097efd29f4e43530d', 0, 1, '2024-05-05 05:25:44+00', 0, 2, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1987, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://soundcloud.com/user-195013002/sets/yskns4ymvewi?si=11e40b9f681e4cbd8e84e003dd2c6168&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (127668, '0x823920e4777d65efef63348159347e0b17029ca3', 0, 1, '2024-05-05 05:52:49+00', 0, 1, '{"fid": 4877, "object": "user", "pfp_url": "https://i.seadn.io/gae/94XYn3n8kzy8GOg8jxmPETB-zTB6XMwTwUiotFD4yeUUKZQAMtstBkhHTFbInYyqHvcVnznOcz3xpHaQbfzc1_XzbhaTHaCqFFO1bg?w=500&auto=format", "profile": {"bio": {"text": "She/her nft_ish.twitter\nTalking *@! In /extracurriculars reminiscing in /gen-x and curating in /trish", "mentioned_profiles": []}}, "username": "trish", "power_badge": true, "display_name": "Trish🫧✈️🎩", "active_status": "inactive", "verifications": ["0x5f8b9b4541ecef965424f1db923806aad626add2"], "follower_count": 2902, "custody_address": "0xdd17dd5659db1524115bcd7e7717a212639675b4", "following_count": 1090, "verified_addresses": {"eth_addresses": ["0x5f8b9b4541ecef965424f1db923806aad626add2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2LJX62bph0MEH38ZWIlV9U?si=IZE15GsIR-u6QveqWEeIYg&context=spotify%3Aalbum%3A1nYAFtWlOyq3BCUUUqx9qF\"}"}', NULL), - (1159756, '0x43619d2b18f348308bc0f79dd5ae753c3876e30d', 0, 1, '2024-05-08 11:34:47+00', 10, 0, '{"fid": 399716, "object": "user", "pfp_url": "https://i.imgur.com/88xxNMw.jpg", "profile": {"bio": {"text": "日本に住んでます!\n三姉妹の母で、子どもたちと一緒にWeb3ライフを楽しんでいます♫\n\nMy name is Chocomama!🍫\nI am Japanese.\nI am a mother of three sisters.\nI enjoy the web3 life with my children ♫", "mentioned_profiles": []}}, "username": "chocomama", "power_badge": false, "display_name": "チョコママ🎩Chocomama🍖", "active_status": "inactive", "verifications": ["0xb1189f70f77a4d390edc7cc802d1e5bb17cacac5"], "follower_count": 803, "custody_address": "0x615784af074dbdf56e03a9f9d56d5842fba7e917", "following_count": 603, "verified_addresses": {"eth_addresses": ["0xb1189f70f77a4d390edc7cc802d1e5bb17cacac5"], "sol_addresses": ["9KHezfEBBgjb19c8bF7546ccKk7bUrW3j8fbzMPDo4R8"]}}', '{"{\"url\":\"https://open.spotify.com/track/72TTklcEwZA03XJtnJ9m7t?si=70s78vxCQFOEUyt6lVwg4g\"}"}', NULL), - (122911, '0xe5e3403b2f81e76fc14853cea8f9622f9f00dd2e', 0, 1, '2024-05-05 05:12:29+00', 0, 1, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3379, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2652, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9BkCVFmoRho5m2Ku5\"}"}', NULL), - (123965, '0xbd1c12a2dfcf691855b3e67bb57f1d5fdc11ad85', 0, 1, '2024-05-05 05:17:22+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1110, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 899, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZvFxvtKW7M8YDLQs9\"}"}', NULL), - (127983, '0x826eb12a456dbc5782fce63290560a98fdf4ebd6', 0, 1, '2024-05-05 06:00:00+00', 0, 4, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1833, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2193, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LDbue3pCd1pabd4EA\"}"}', NULL), - (122874, '0x0b3c7964ee313931b68654e6c10cc00402f6fb9c', 0, 1, '2024-05-05 05:10:46+00', 0, 2, '{"fid": 433866, "object": "user", "pfp_url": "https://i.imgur.com/lJtAWQF.jpg", "profile": {"bio": {"text": "Have a good day!!\nI like parenting and food, exercise!!", "mentioned_profiles": []}}, "username": "dooristar32", "power_badge": false, "display_name": "RARE-LOVER", "active_status": "inactive", "verifications": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "follower_count": 1799, "custody_address": "0xadd33e67c1876224068545e2497d535dad39027d", "following_count": 2186, "verified_addresses": {"eth_addresses": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/a6kpg7dymn2c/omuazpgykg25?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (123608, '0xb0e2169cd88d1c0e0db05d98a8ad1d1925cdc15d', 0, 1, '2024-05-05 05:15:48+00', 0, 1, '{"fid": 473229, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/87417634-34cf-4357-2e03-34ef09595f00/rectcrop3", "profile": {"bio": {"text": "I am interested in crypto world, video games and cinema", "mentioned_profiles": []}}, "username": "cybercash", "power_badge": false, "display_name": "Dahlia", "active_status": "inactive", "verifications": ["0xc955a77ea4b7a7118d1e821c3e0917bd574ded4d"], "follower_count": 896, "custody_address": "0xdd3c8e4fde5005751bfedbe8def169438facdb49", "following_count": 1347, "verified_addresses": {"eth_addresses": ["0xc955a77ea4b7a7118d1e821c3e0917bd574ded4d"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/nellyfurtado/say-it-right-main\"}"}', NULL), - (123188, '0x1300b69fea316447d605e502b90c1a859df74b3b', 0, 1, '2024-05-05 05:13:05+00', 0, 0, '{"fid": 513720, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb2f9779-f407-400a-8706-76317fe4ec00/rectcrop3", "profile": {"bio": {"text": "Plz F4F 🙏 🙏", "mentioned_profiles": []}}, "username": "!513720", "power_badge": false, "display_name": "Dakoda11", "active_status": "inactive", "verifications": ["0x8912e95bd369c4dba816ff9dcc1e0bf207bda168"], "follower_count": 19, "custody_address": "0x56c70de5830a5fea1eeff63ed9ef6b8232ebc4c8", "following_count": 253, "verified_addresses": {"eth_addresses": ["0x8912e95bd369c4dba816ff9dcc1e0bf207bda168"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/victoria-white-993585253/sets/legend-never-die?si=796caaf3af724d8387adeb5fa5169cd7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (127910, '0xd2458d0af93a5536a8781b8993ea18958fa0cd15', 0, 1, '2024-05-05 05:55:51+00', 0, 1, '{"fid": 4877, "object": "user", "pfp_url": "https://i.seadn.io/gae/94XYn3n8kzy8GOg8jxmPETB-zTB6XMwTwUiotFD4yeUUKZQAMtstBkhHTFbInYyqHvcVnznOcz3xpHaQbfzc1_XzbhaTHaCqFFO1bg?w=500&auto=format", "profile": {"bio": {"text": "She/her nft_ish.twitter\nTalking *@! In /extracurriculars reminiscing in /gen-x and curating in /trish", "mentioned_profiles": []}}, "username": "trish", "power_badge": true, "display_name": "Trish🫧✈️🎩", "active_status": "inactive", "verifications": ["0x5f8b9b4541ecef965424f1db923806aad626add2"], "follower_count": 2902, "custody_address": "0xdd17dd5659db1524115bcd7e7717a212639675b4", "following_count": 1090, "verified_addresses": {"eth_addresses": ["0x5f8b9b4541ecef965424f1db923806aad626add2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6ZSHwNQNyvdlFlCEGKU5WK?si=ujSebPhFTVS5jG4kNzQo5A&context=spotify%3Aalbum%3A1nYAFtWlOyq3BCUUUqx9qF\"}"}', NULL), - (139883, '0x9d085ea4a4d90de16cac137bd5af18d3b6c362de', 0, 1, '2024-05-05 07:14:08+00', 0, 3, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1089, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 597, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha 태연 To. X de yoxneris en #SoundCloud https://on.soundcloud.com/CTLfs\"}"}', NULL), - (123970, '0xb445f79583b3e9e7964b5ea143b7332f30f13221', 0, 1, '2024-05-05 05:17:09+00', 0, 0, '{"fid": 479253, "object": "user", "pfp_url": "https://i.imgur.com/f2gnEq7.jpg", "profile": {"bio": {"text": "그게 뭐든 다 이루다_ERUDA_열정걸_초긍정에너지(With me, you have super power😲 Super positive energy✨️⚘️) 늘 응원해:)", "mentioned_profiles": []}}, "username": "eruda", "power_badge": false, "display_name": "ERUDA", "active_status": "inactive", "verifications": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "follower_count": 852, "custody_address": "0x2c72ca53218c08d77e61639cb2ccfa7d08403ff8", "following_count": 585, "verified_addresses": {"eth_addresses": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Lay It All on Me by johnny stimson on #SoundCloud https://on.soundcloud.com/ZZKfB\"}"}', NULL), - (127845, '0x6192855d832a917a626ee434bc6efd0aac081b6c', 0, 1, '2024-05-05 05:54:59+00', 0, 1, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 1925, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 418, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8ndj3WqkiDapjeRR8\"}"}', NULL), - (125557, '0xa7952ff708eca5383e97527e59b43af54c7e4b73', 0, 1, '2024-05-05 05:29:39+00', 0, 2, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1312, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 680, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2fPvQfGQEZOKtJ9qXeL4x8?si=I7qw18GMTJya144hA4e6Xw\"}"}', NULL), - (283290, '0xf8a20cb1306a7c456b2de28ae27ff0eba4ab77c1', 0, 1, '2024-05-05 18:24:30+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/shxhrol-amy/stay?si=58cc63ea5598454e8570a23fcf4e9829&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (127071, '0x91d8882002b8629f7e56196f62225083131ac999', 0, 1, '2024-05-05 05:50:50+00', 0, 0, '{"fid": 301863, "object": "user", "pfp_url": "https://i.imgur.com/lStGPFz.gif", "profile": {"bio": {"text": "Noun Enthusiast", "mentioned_profiles": []}}, "username": "enzobase", "power_badge": false, "display_name": "enciodas 🎩", "active_status": "inactive", "verifications": ["0x1ad4e5802aa0172d46ecadd97fab8470c5bd4524"], "follower_count": 604, "custody_address": "0x7c6244512b22e943bd0aef54a9b02f6c7f3bd406", "following_count": 1156, "verified_addresses": {"eth_addresses": ["0x1ad4e5802aa0172d46ecadd97fab8470c5bd4524"], "sol_addresses": ["94CwPCKQyVxHZrUefrgjrBYkdUWsQ2PaqRNZZbmqLLMX"]}}', '{"{\"url\":\"https://open.spotify.com/track/3D46cXfwM4id5YfQbpTvKA?si=DUY7q6TUQ3KJ12QCo9JxFQ\"}"}', NULL), - (131296, '0x1e215073229ac5c4c83466b06d8083cb99794eb5', 0, 1, '2024-05-05 06:13:14+00', 0, 0, '{"fid": 511632, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52bbcfa9-dabc-4bc9-7d01-43db277d2d00/rectcrop3", "profile": {"bio": {"text": "Crypto Trader.\nDegen Holder.\nI love to communicate with you!!", "mentioned_profiles": []}}, "username": "!511632", "power_badge": false, "display_name": "Felix", "active_status": "inactive", "verifications": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "follower_count": 102, "custody_address": "0x397e2941abe6dbe389c5f25232c19cbc3cb76b75", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2sharebts2/bts-the-truth-untold-feat-steve-aoki?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (128059, '0x056c643a9c7d56c9a26108a6311298f26db092e3', 0, 1, '2024-05-05 06:00:11+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 744, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/75FWyUf77voKVfHr9\"}"}', NULL), - (131291, '0x75d1ff21672aefef5fa663157e124ae9d3403db6', 0, 1, '2024-05-05 06:13:23+00', 144, 0, '{"fid": 426283, "object": "user", "pfp_url": "https://i.imgur.com/ZBldj7v.jpg", "profile": {"bio": {"text": "Newbi", "mentioned_profiles": []}}, "username": "coindegen", "power_badge": false, "display_name": "Crypto_yeon", "active_status": "inactive", "verifications": ["0x55c5075596efa35c7311aa5f5b3620c3a5cdc5c2"], "follower_count": 394, "custody_address": "0x2aac807eb30a13ea7f7fea219e00c6d0142bb838", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x55c5075596efa35c7311aa5f5b3620c3a5cdc5c2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (125554, '0x9f676b6b6c8fbbc0dfcdfcdcab8735d0a1874715', 0, 1, '2024-05-05 05:29:59+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/farcastar?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (122209, '0x37062a1568b79bd864b9c57c4d2b81ea2e010ef6', 0, 1, '2024-05-05 05:04:56+00', 0, 0, '{"fid": 501841, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb130c93-dd5d-4169-e986-8d6376e18000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kennyhowlah", "power_badge": false, "display_name": "KH.", "active_status": "inactive", "verifications": ["0x7774a3e918ebbe88c8d46a8fad0af506d00ad54b"], "follower_count": 11, "custody_address": "0x734b5f6ad96b8365bce01dd65e5b1965c301e958", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x7774a3e918ebbe88c8d46a8fad0af506d00ad54b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=qaq--pVNRlSyyTuoshA_Kg\"}"}', NULL), - (241518, '0x7e9a863661f70500b0cceb7818fa525a0f80729e', 0, 1, '2024-05-05 14:03:15+00', 0, 0, '{"fid": 288345, "object": "user", "pfp_url": "https://i.imgur.com/FwGqpQ9.jpg", "profile": {"bio": {"text": " I want to learn various things\nBeing a Good Dad\n", "mentioned_profiles": []}}, "username": "gylee", "power_badge": false, "display_name": "Gygygy🍖🎩💧", "active_status": "inactive", "verifications": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "follower_count": 2533, "custody_address": "0xc02b424283200788e3059b9dec77711175743775", "following_count": 1945, "verified_addresses": {"eth_addresses": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrbaek/bye-bye-my-blue-full-album?si=a5a79fd2cd5f4897a4b1fb9228fee190&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (128040, '0x2630102221e1bdb175fa11fce7bd3177c8f4cc2a', 0, 1, '2024-05-05 06:00:55+00', 0, 1, '{"fid": 448944, "object": "user", "pfp_url": "https://arweave.net/vRw6Z4p2GvDcMQDW9iadHxThmdWTGjYu12gl_4Zm4rY/", "profile": {"bio": {"text": "A coder who loves crypto", "mentioned_profiles": []}}, "username": "mohammadjani", "power_badge": false, "display_name": "mohammadjani", "active_status": "inactive", "verifications": ["0x35acaeb4fb2238fcb24fd348214df589bf57ba85"], "follower_count": 678, "custody_address": "0x2c46f9f762ca957f354508ce1732ae0e349ae0d1", "following_count": 694, "verified_addresses": {"eth_addresses": ["0x35acaeb4fb2238fcb24fd348214df589bf57ba85"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A6eZMbRH7nJquWKs7\"}"}', NULL), - (109624, '0xab1570b3aac0d1b93a94199aff4ada7180ef5c27', 20, 1, '2024-05-05 03:28:40+00', 10, 19, '{"fid": 441314, "object": "user", "pfp_url": "https://i.imgur.com/1ENGdnt.jpg", "profile": {"bio": {"text": "dev/ web3", "mentioned_profiles": []}}, "username": "furik", "power_badge": false, "display_name": "JobZon🎩🔵🔮", "active_status": "inactive", "verifications": ["0xb10073db0f792f37d56b4eebf80480dbd957b872"], "follower_count": 489, "custody_address": "0x96cc65e2779d814adf90f7ea752104c86b79d628", "following_count": 361, "verified_addresses": {"eth_addresses": ["0xb10073db0f792f37d56b4eebf80480dbd957b872"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/persianswa/naro-maryam?referral=0x297541ca3200fb1d3fe16a49cecb2708b7a6f782&referral_source=link\"}"}', NULL), - (134499, '0xdc2d299707bcafd526399d7743f3b1c4cbf32ffb', 0, 1, '2024-05-05 06:22:24+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h3M42\"}"}', NULL), - (138470, '0x3687a788476b57d32331c20e874171dd09535a20', 0, 1, '2024-05-05 06:44:22+00', 0, 2, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 744, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamie-han-349985932/if-you-bts-jungkook-if-youking-of-masked-singer?si=e1b68e189cf44b1abd8e48b5568ebb6e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (124246, '0xd2b3199c94c5c73b39e3e7e397959d3a41abd7ab', 0, 1, '2024-05-05 05:18:46+00', 0, 0, '{"fid": 9318, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmPASmu4tqbgwuceqWtHbEZTrn24zsva1NDBxpfzEjVpQR/5451.png", "profile": {"bio": {"text": "subtraction speculation visualization\nHYPERPEOPLE & /dark-ops", "mentioned_profiles": []}}, "username": "catra.eth", "power_badge": true, "display_name": "catra", "active_status": "inactive", "verifications": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "follower_count": 713, "custody_address": "0xc656b9dc4fc21cb0a01d3efddb8a68c123ddc31b", "following_count": 179, "verified_addresses": {"eth_addresses": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "sol_addresses": ["DFqgM6sTHJknZ2NDPWA3PSFCeEEASZeLFyg6JWNaLcr1", "AKT6jmnPAvvKPiFNwsrLAdb8hMpHADWV5fr6TsGiNB7c"]}}', '{"{\"url\":\"https://soundcloud.com/theforgottenrec/kris-baha-double-helix-overdrive-kindcrime?si=a14138360d614e6ba8481a2404b76c7e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (149537, '0x852dfcadc9f0f2feeb4e168f5ec0f5e774fbe39b', 0, 1, '2024-05-05 08:39:24+00', 0, 2, '{"fid": 19379, "object": "user", "pfp_url": "https://i.imgur.com/c775G7X.jpg", "profile": {"bio": {"text": "come as you are", "mentioned_profiles": []}}, "username": "anobis", "power_badge": false, "display_name": "STING", "active_status": "inactive", "verifications": ["0x2bf30735f3e75937808eece8883cdc3e74107f56"], "follower_count": 1504, "custody_address": "0x6bf8844806976523f76d206d8c7608e07e139113", "following_count": 1416, "verified_addresses": {"eth_addresses": ["0x2bf30735f3e75937808eece8883cdc3e74107f56"], "sol_addresses": ["DaaLQV1q45BRdfhmqC63LjhvxgiBpu3jGxhoHMuRn3f"]}}', '{"{\"url\":\"https://on.soundcloud.com/AWc89\"}"}', NULL), - (132104, '0x660ced18e9376316a5e98a9ea637bec535a7a3e7', 0, 1, '2024-05-05 06:16:32+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1111, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 902, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2gNkQoHyQdQUrmQN7\"}"}', NULL), - (125559, '0x22052a3e5c8aa295e9db992b6262de04bfe82b25', 0, 1, '2024-05-05 05:30:23+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://i.imgur.com/Kp36KoH.jpg", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\n\nLive: \nhttps://www.unlonely.app/channels/ivc\n\nBuilding Hack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "follower_count": 1842, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 389, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/lapu-castles-in-the-sky?referral=0x98a9b1596f1837eb20669edd4409fdfb02ffadf0\"}"}', NULL), - (155344, '0x61d704df38d49ee3bc4cc7c4ae3f5b8377d92336', 0, 1, '2024-05-05 09:12:11+00', 0, 3, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2619, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3109, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bubtHgJaVXd1oA2s8\"}"}', NULL), - (139882, '0x42f2e22ef58b5cd13d6cee152b9d4ced0f4c12a4', 0, 1, '2024-05-05 07:14:31+00', 0, 2, '{"fid": 440299, "object": "user", "pfp_url": "https://i.imgur.com/PuZtmZr.jpg", "profile": {"bio": {"text": "🍀 All we have is good luck 🍀", "mentioned_profiles": []}}, "username": "small-potato", "power_badge": false, "display_name": "Smallpotato🎩🍖", "active_status": "inactive", "verifications": ["0xed8bd02dffd1e1f39757d3331effcc514a56f9a9"], "follower_count": 2219, "custody_address": "0x20e33be64f46e1defdd47c5906cfd7f8770a79a6", "following_count": 1859, "verified_addresses": {"eth_addresses": ["0xed8bd02dffd1e1f39757d3331effcc514a56f9a9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share92/yerin-baek-square-2017\"}"}', NULL), - (241517, '0x213732000d74c84e8678b5e045040bd1d6382cee', 0, 1, '2024-05-05 14:03:37+00', 0, 2, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3119, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2968, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QRLgq\"}"}', NULL), - (158539, '0xb545e2f74d5121f4de2f651e09ae4c0fe8bf2f0f', 0, 1, '2024-05-05 09:38:22+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2622, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3114, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iuJUyV8QF1TmbMRS9\"}"}', NULL), - (125350, '0x391f76e5e5a753fdcd302541dc8ad0e855425add', 0, 1, '2024-05-05 05:26:51+00', 0, 3, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3530, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1987, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://soundcloud.com/user-195013002/sets/yskns4ymvewi?si=11e40b9f681e4cbd8e84e003dd2c6168&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (132415, '0x9b10a9f94157b913849d73d78c4cfd546f89e8f4', 0, 1, '2024-05-05 06:17:40+00', 0, 0, '{"fid": 511632, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52bbcfa9-dabc-4bc9-7d01-43db277d2d00/rectcrop3", "profile": {"bio": {"text": "Crypto Trader.\nDegen Holder.\nI love to communicate with you!!", "mentioned_profiles": []}}, "username": "!511632", "power_badge": false, "display_name": "Felix", "active_status": "inactive", "verifications": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "follower_count": 104, "custody_address": "0x397e2941abe6dbe389c5f25232c19cbc3cb76b75", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2sharebts2/bts-the-truth-untold-feat-steve-aoki?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (128478, '0xeffe5a048f84c91372b7639ea98031c20174f4c2', 0, 1, '2024-05-05 06:02:28+00', 0, 6, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3380, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2652, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ELLYxZq12j9T5jXC7\"}"}', NULL), - (124243, '0xe93f084f4df37e886e01ff629af51020f8352ebe', 0, 1, '2024-05-05 05:19:35+00', 0, 3, '{"fid": 433866, "object": "user", "pfp_url": "https://i.imgur.com/lJtAWQF.jpg", "profile": {"bio": {"text": "Have a good day!!\nI like parenting and food, exercise!!", "mentioned_profiles": []}}, "username": "dooristar32", "power_badge": false, "display_name": "RARE-LOVER", "active_status": "inactive", "verifications": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "follower_count": 1799, "custody_address": "0xadd33e67c1876224068545e2497d535dad39027d", "following_count": 2186, "verified_addresses": {"eth_addresses": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (138467, '0x7edf650f6e97ff8691d6476e07c765f9ba2579db', 0, 1, '2024-05-05 06:43:55+00', 0, 1, '{"fid": 424820, "object": "user", "pfp_url": "https://i.imgur.com/7G84oTV.gif", "profile": {"bio": {"text": "Audio x Visual x Crypto = https://linktr.ee/Jburn", "mentioned_profiles": []}}, "username": "jburn", "power_badge": false, "display_name": "Jburn", "active_status": "inactive", "verifications": ["0x497a7dee2f13db161eb2fec060fa783cb041419f"], "follower_count": 483, "custody_address": "0xa301dfcd6b1067dacedc4308090058e593091789", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x497a7dee2f13db161eb2fec060fa783cb041419f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/burnjourney/let-em-go\"}"}', NULL), - (150284, '0x363f88a15c66d650597468b2b68782ee269ad0fa', 0, 1, '2024-05-05 08:42:55+00', 0, 0, '{"fid": 508697, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb796574-fdac-4ba0-21bc-b2f686014c00/original", "profile": {"bio": {"text": "Android developer. | \nIf you can dream it, you can do it.\n", "mentioned_profiles": []}}, "username": "!508697", "power_badge": false, "display_name": "Ashkan 🎩🔵🔮", "active_status": "inactive", "verifications": ["0x7b82c850f5acc730f880ccb472c2d5dfe1fe84ec"], "follower_count": 140, "custody_address": "0xb5a0c70a1adbf135d44a2af8cc00760169fa29f3", "following_count": 177, "verified_addresses": {"eth_addresses": ["0x7b82c850f5acc730f880ccb472c2d5dfe1fe84ec"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gmzfdnn/george-michael-careless?si=600852842c6d4f5c82ad3fc2cb215f23&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (134498, '0xedc3bcdee5975ecebdec5936f3af654c5bd9b755', 0, 1, '2024-05-05 06:22:31+00', 0, 0, '{"fid": 16043, "object": "user", "pfp_url": "https://i.imgur.com/O2magG5.jpg", "profile": {"bio": {"text": "wrote under the moniker LeftOfCenter for ChainNewscom, previous splitworks.", "mentioned_profiles": []}}, "username": "eloise", "power_badge": false, "display_name": "EloisΞ 🎩", "active_status": "inactive", "verifications": ["0xf9d4f6b83f0d227266c88d987d02031e4bfc4758", "0x2a2cd7400f922085b62ca9bd9ac0f16151f716ab"], "follower_count": 285, "custody_address": "0xf41424d56db1efcfc251e771e6bf6180132f3d01", "following_count": 448, "verified_addresses": {"eth_addresses": ["0xf9d4f6b83f0d227266c88d987d02031e4bfc4758", "0x2a2cd7400f922085b62ca9bd9ac0f16151f716ab"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5djCX0bDd96N89Ayv5Y8Y2\"}"}', NULL), - (283267, '0x310513b7b7641a05582cb1ca18080efab581f75d', 0, 1, '2024-05-05 18:22:50+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leenah-park/qvw3gmfcmbdc?si=2f9a39cb4f794b9d9b3733a2425d344a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (128412, '0x17518d5c8d62fe8d1da0cbad07f4de37f5e6e51d', 0, 1, '2024-05-05 06:02:08+00', 0, 2, '{"fid": 247238, "object": "user", "pfp_url": "https://i.imgur.com/2WDtgly.gif", "profile": {"bio": {"text": "1/1 \nEspecially Loud. Infectious Energy. \nGrowing and Building /thirdlayer\n& /greatest 🐐\nwww.thirdlayer.tips\nwww.staygoated.xyz\n\n", "mentioned_profiles": []}}, "username": "shiiiison", "power_badge": true, "display_name": "Shiiiison 🎩🐐", "active_status": "inactive", "verifications": ["0xcd879d4bc804ade51f73b5fd16b5005487c4fdc2", "0x1db2f40042d20e485032a652672f334ffe404e61", "0x9f78fd9c671641350e7c36559c9ecc047238372f"], "follower_count": 2066, "custody_address": "0x0873d3f5a45060cf503ae78737d7387b4d02ea56", "following_count": 205, "verified_addresses": {"eth_addresses": ["0xcd879d4bc804ade51f73b5fd16b5005487c4fdc2", "0x1db2f40042d20e485032a652672f334ffe404e61", "0x9f78fd9c671641350e7c36559c9ecc047238372f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/radiocampus/beats-in-space-723-jamie-xx-john-talabot\"}"}', NULL), - (243064, '0x82eb70bb3de6f4ad15e0be9a99dcc5b87761c32f', 0, 1, '2024-05-05 14:04:20+00', 0, 0, '{"fid": 288345, "object": "user", "pfp_url": "https://i.imgur.com/FwGqpQ9.jpg", "profile": {"bio": {"text": " I want to learn various things\nBeing a Good Dad\n", "mentioned_profiles": []}}, "username": "gylee", "power_badge": false, "display_name": "Gygygy🍖🎩💧", "active_status": "inactive", "verifications": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "follower_count": 2533, "custody_address": "0xc02b424283200788e3059b9dec77711175743775", "following_count": 1945, "verified_addresses": {"eth_addresses": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost13/moonmoon-marriage-because-this-is-my-first-life-ost-part-4?si=7af8dce4aba54061bf335b83a40a95c4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (402396, '0xfaba18250d663d4b207f94386f8474ff5d657877', 0, 1, '2024-05-06 04:58:13+00', 0, 4, '{"fid": 451675, "object": "user", "pfp_url": "https://i.imgur.com/TEZmq8F.jpg", "profile": {"bio": {"text": "I am try for life and very happy", "mentioned_profiles": []}}, "username": "rezakhan1364", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0x01ef38d0e8f41463fbb685d078c197236a0e52e9"], "follower_count": 1721, "custody_address": "0xf6ee39efdb14909da1e5b6121c5c67bc1cf0db31", "following_count": 1615, "verified_addresses": {"eth_addresses": ["0x01ef38d0e8f41463fbb685d078c197236a0e52e9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Dsq8nGsc1SAuZDEj6\"}"}', NULL), - (1173025, '0xe2a8c3355da30ecbeee334ecd654abf9c5213815', 0, 1, '2024-05-14 23:00:40+00', 0, 0, '{"fid": 196378, "object": "user", "pfp_url": "https://i.imgur.com/5kOLqhw.jpg", "profile": {"bio": {"text": "VP of Music - @cooprecs | Label Manager - Odyzey Music", "mentioned_profiles": []}}, "username": "jakeonchain.eth", "power_badge": true, "display_name": "Jakeonchain", "active_status": "inactive", "verifications": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "follower_count": 492, "custody_address": "0xdc6bc6aab5fad36088b8ed68ab248753cdf905bd", "following_count": 170, "verified_addresses": {"eth_addresses": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0XGSeTAcfOJa3WfVPAzX8H?si=bf655c8e36764435\"}"}', 'sonata'), - (138465, '0x6d1f3ea13b9f533907343b5317e05554e172530e', 0, 1, '2024-05-05 06:43:54+00', 0, 1, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 744, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/180314songforarmy?si=b74aa9d992b9491eac12cc65eda6901e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (160724, '0xbd1ca3ecafcfa964cd86793202b6ffd0de492c96', 0, 1, '2024-05-05 09:44:38+00', 0, 1, '{"fid": 19301, "object": "user", "pfp_url": "https://i.imgur.com/vRLKRPE.jpg", "profile": {"bio": {"text": "8 (: Im Real EmAD", "mentioned_profiles": []}}, "username": "emad", "power_badge": false, "display_name": "EmAd 🎩", "active_status": "inactive", "verifications": ["0xf96cb25227cf2d2473cccd4758e35f18273653b3"], "follower_count": 552, "custody_address": "0xa44f503ae2fa7222d3fd40d00af9d615ca0cb6d8", "following_count": 814, "verified_addresses": {"eth_addresses": ["0xf96cb25227cf2d2473cccd4758e35f18273653b3"], "sol_addresses": ["GkHJQZUMsVJG4ArknMgSxJm8FCQc654ezvpo6owR9LcC"]}}', '{"{\"url\":\"https://on.soundcloud.com/y3aQVtZXeNLr5vLg8\"}"}', NULL), - (161868, '0x3bd54cf5751a2ff95fd98cee7c75e30c10f2db3c', 0, 1, '2024-05-05 09:49:39+00', 0, 1, '{"fid": 236958, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/62b6b55e-93ea-4da3-d99c-470238a3fb00/original", "profile": {"bio": {"text": "life begins in Darkness\nPxl Glitch", "mentioned_profiles": []}}, "username": "edark", "power_badge": false, "display_name": "eDArk🎩🔵", "active_status": "inactive", "verifications": ["0x8bfd4114d4a266f696ad211f57fdfbacf7b3f513", "0x200d5dccd007256cd5ffa1c46c8359215a8a443c", "0xc0ae85cd4ba82cbc440b2f7633fcaf8f4b29bab1"], "follower_count": 164, "custody_address": "0x23fbee47d7277b44c54428bb7a3686aea7d89bff", "following_count": 293, "verified_addresses": {"eth_addresses": ["0x8bfd4114d4a266f696ad211f57fdfbacf7b3f513", "0x200d5dccd007256cd5ffa1c46c8359215a8a443c", "0xc0ae85cd4ba82cbc440b2f7633fcaf8f4b29bab1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jrhntngtn/dopplereffekt-porno-actress?in=darkscienceelectro/sets/dopplereffekt\"}"}', NULL), - (138469, '0x2b7c9a5e8e89956a6cf8c85663468d1c58d4ba11', 0, 1, '2024-05-05 06:44:14+00', 2, 13, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2606, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2185, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/willjaymusic/off-the-record\"}"}', NULL), - (136573, '0xd6720756d8111e0c9483bfb2abb5bed682daea6b', 0, 1, '2024-05-05 06:29:01+00', 0, 0, '{"fid": 236389, "object": "user", "pfp_url": "https://i.imgur.com/FXQWgpx.jpg", "profile": {"bio": {"text": "audio alchemist. ai experimentalist. music producer of the @vnderworld.\n\nnullhax.com", "mentioned_profiles": []}}, "username": "hax.eth", "power_badge": false, "display_name": "hax 🎩", "active_status": "inactive", "verifications": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "follower_count": 139, "custody_address": "0x70664c8bcf0314e13860c021db97e808cd000831", "following_count": 256, "verified_addresses": {"eth_addresses": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vnderworld/dry-heave\"}"}', NULL), - (283265, '0x769bf2f850bc39e49d3fc4d1ce3e518f1eda6430', 0, 1, '2024-05-05 18:23:22+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hwoniee/vvp1lzfvjydk?si=fd072b94fb5d4609a1eb672423140149&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (132416, '0xa900cdc45bd53c2c26481ec84ce9b650674af364', 0, 1, '2024-05-05 06:17:44+00', 0, 0, '{"fid": 513631, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9b7e5a8-ac18-41b8-8b0f-5e93691ce800/rectcrop3", "profile": {"bio": {"text": "F4F come on", "mentioned_profiles": []}}, "username": "!513631", "power_badge": false, "display_name": "Julia777", "active_status": "inactive", "verifications": ["0x1ea6258d92eda439fff00ba30f9abd971b2a27c5"], "follower_count": 20, "custody_address": "0xf4213d29be17866f38eff5b1cdfe94c79b07e607", "following_count": 96, "verified_addresses": {"eth_addresses": ["0x1ea6258d92eda439fff00ba30f9abd971b2a27c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/neuronmusic-1/paul-kim-rain?si=a8919b4ee43f476da7ee1131591eb055&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (126216, '0xc6a747f2a697631434c43ac07f3a1afbd2e1076a', 0, 1, '2024-05-05 05:34:41+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1462, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lilyeat/heliman?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (139747, '0xf7711468676f5023fc382914897973a923d89600', 0, 1, '2024-05-05 07:09:03+00', 0, 1, '{"fid": 391859, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/97b3489d-bb13-4048-dfff-8a10c77cd900/rectcrop3", "profile": {"bio": {"text": "Offchain SE, onchain Farcaster.——————\nBuilding cool stuffs————————————\nFarcaster 大家好—————————————", "mentioned_profiles": []}}, "username": "ithmz.eth", "power_badge": false, "display_name": "thmz 🔵🎩", "active_status": "inactive", "verifications": ["0xbdaac51cf15381b3dc90108c49c8211c1123b5a7"], "follower_count": 573, "custody_address": "0x3556ad6df05b7a02cc3bc3a34da121d9f716bb7d", "following_count": 272, "verified_addresses": {"eth_addresses": ["0xbdaac51cf15381b3dc90108c49c8211c1123b5a7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ru9qqhRkiRihSPmaA\"}"}', NULL), - (140583, '0x9241290e92f567ca423159136aecefd7b23c145d', 0, 1, '2024-05-05 07:30:38+00', 0, 1, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1322, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 682, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1BxfuPKGuaTgP7aM0Bbdwr?si=502e950e17ff4180\"}"}', NULL), - (139881, '0xd266deaffde718788d7a30834ca14a0c89483715', 0, 1, '2024-05-05 07:13:58+00', 0, 0, '{"fid": 501210, "object": "user", "pfp_url": "https://2d4ws7ngm6mugdd2llbbqsg2kxpchsuc4yssuvrklqzven45otdq.arweave.net/0PlpfaZnmUMMelrCGEjaVd4jyoLmJSpWKlwzUjeddMc/", "profile": {"bio": {"text": "\"Every day may not be good... but there’s something good in every day\"\n\nLet''s have fun together 🙂\n\nF4F, I''m following back\n\n난 한국을 사랑해", "mentioned_profiles": []}}, "username": "zorwell", "power_badge": false, "display_name": "Zorwell", "active_status": "inactive", "verifications": ["0x523c95b1a42427a222452b5cdfad48a608779996"], "follower_count": 381, "custody_address": "0xb68062418df7d179375e7c2ac831b293fc1db3ea", "following_count": 667, "verified_addresses": {"eth_addresses": ["0x523c95b1a42427a222452b5cdfad48a608779996"], "sol_addresses": ["48UgRz2J4jnPz815D5rpBkm6TjUBiVy62JSxLicp4LNU"]}}', '{"{\"url\":\"https://open.spotify.com/track/5dPieDOdlLfSLRBx91Zex2?si=8Q5ocCbXQNyKqZROvem08g\"}"}', NULL), - (124675, '0xd66cd069f864dff38ede137b64c0549a93580294', 0, 1, '2024-05-05 05:23:09+00', 0, 0, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 620, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 311, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"Listen to RADIO CRAZY2014 レキシ『狩りから稲作へ』 by rkstk on #SoundCloud https://on.soundcloud.com/5P3uF\"}"}', NULL), - (138956, '0x24b195258e4462a9b25974da90a41fc5a80adcb3', 0, 1, '2024-05-05 06:47:12+00', 0, 0, '{"fid": 228904, "object": "user", "pfp_url": "https://i.imgur.com/6TIYkPs.jpg", "profile": {"bio": {"text": "Optimism, Base and Superchain", "mentioned_profiles": []}}, "username": "letsmakeittogeth", "power_badge": true, "display_name": "Let''s Make It Together ", "active_status": "inactive", "verifications": ["0xb328d306c4bc5e55423df6c7185522c540765871", "0xbf4cc988c1bd49a365f5095a4835b14c085b182a"], "follower_count": 193, "custody_address": "0x07e54a4d4b6c37efd27ef76c2969b2db18c69b32", "following_count": 166, "verified_addresses": {"eth_addresses": ["0xb328d306c4bc5e55423df6c7185522c540765871", "0xbf4cc988c1bd49a365f5095a4835b14c085b182a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/txFnWfvVoEzarhhY7\"}"}', NULL), - (139705, '0x228fc38504e12c712266e41fc94ba95965afa0d4', 0, 1, '2024-05-05 07:08:16+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8160185b-0d34-4105-707e-64fb5b313600/original\"}","{\"url\":\"https://on.soundcloud.com/mN6HBdcvMpJRK7ns6\"}"}', NULL), - (283266, '0x2ee9f27d4282c9dd72f2967e1a847728e5009389', 0, 1, '2024-05-05 18:22:44+00', 0, 0, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1406, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/kj9Pxd346cP6CvCt9\"}"}', NULL), - (126002, '0x0364e36a4214d92ac2dba656b9f7e7a4f5ac70b3', 0, 1, '2024-05-05 05:33:32+00', 0, 3, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 631, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral_source=link\"}"}', NULL), - (139949, '0x2265da5dd5d18ea54d21c4c0481350d4792fde16', 0, 1, '2024-05-05 07:15:10+00', 10, 0, '{"fid": 512591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdc60244-d454-4841-b5cd-234f01583000/rectcrop3", "profile": {"bio": {"text": "Just normal person❤️\nInterested in cook \nand upload my dish''s pic 📸", "mentioned_profiles": []}}, "username": "!512591", "power_badge": false, "display_name": "Universe611", "active_status": "inactive", "verifications": ["0x0a1a262f7329136f9ae2ec3cedd577662b24bafa"], "follower_count": 96, "custody_address": "0xbe06c91b54890a1fbc89dc8960a6069360078bae", "following_count": 428, "verified_addresses": {"eth_addresses": ["0x0a1a262f7329136f9ae2ec3cedd577662b24bafa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aCpvM\"}"}', NULL), - (155343, '0x858010bef4c6a97fd16d4bd04fea02ffad6134d5', 0, 1, '2024-05-05 09:12:51+00', 0, 1, '{"fid": 449776, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1af8cdbc-55ea-4cab-b8a3-4151d75d7100/rectcrop3", "profile": {"bio": {"text": "Active in the field of crypto", "mentioned_profiles": []}}, "username": "hadiakbari", "power_badge": false, "display_name": "Hadiakbari🎩 🦕", "active_status": "inactive", "verifications": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "follower_count": 1011, "custody_address": "0x340b33d619dfb09ceb791810ffbe3db592a83414", "following_count": 1311, "verified_addresses": {"eth_addresses": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wxY5wUWW5rqDk25U6\"}"}', NULL), - (150943, '0x308ef2bd99e789cd860288ab0d41a61ed124bbd5', 0, 1, '2024-05-05 08:48:36+00', 0, 2, '{"fid": 419506, "object": "user", "pfp_url": "https://i.imgur.com/TaWGbTU.jpg", "profile": {"bio": {"text": "Someone new to crypto and love to learn about it", "mentioned_profiles": []}}, "username": "komeila", "power_badge": false, "display_name": "Komeil", "active_status": "inactive", "verifications": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "follower_count": 661, "custody_address": "0x04fc2472c81ca9978c5f46d8ee526d948c148879", "following_count": 941, "verified_addresses": {"eth_addresses": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Maniac by Conan Gray on #SoundCloud https://on.soundcloud.com/YKswD\"}"}', NULL), - (139783, '0x54e56eb8cbb2b80a67963d5ba47274e529547123', 0, 1, '2024-05-05 07:09:44+00', 0, 4, '{"fid": 506167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a791ac3a-65f2-4def-608c-59ae24c67400/rectcrop3", "profile": {"bio": {"text": "In crypto since 2017", "mentioned_profiles": []}}, "username": "onlydh", "power_badge": false, "display_name": "daniel", "active_status": "inactive", "verifications": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "follower_count": 745, "custody_address": "0x9c94baca26c8a6b031bdb5025963fcdac9f0eaa2", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jin-roh-353085509/kyzpaungqnbk?si=8724fd8e5b354ec391caa14e584d3f43&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (126319, '0x07e284b79956c89145af1cb1d3fe10ada191fda9', 0, 1, '2024-05-05 05:35:32+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1462, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ethan-307784150/yeat-lurkinglil-krazy-og-poppin-nutrition-in-switzerland-prod-trgc?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (128866, '0x51c6182be938d3ebcb18c658390f058e1c2eded2', 0, 1, '2024-05-05 06:05:32+00', 0, 0, '{"fid": 428725, "object": "user", "pfp_url": "https://i.imgur.com/IDDRKO7.jpg", "profile": {"bio": {"text": "Internationally exhibited artist. Living a life less ordinary. https://oncyber.io/line532", "mentioned_profiles": []}}, "username": "emmywalka", "power_badge": false, "display_name": "Emmy Walka", "active_status": "inactive", "verifications": ["0x24ba5ea4ab0d0f77f6a970c13e127232e68d84dd"], "follower_count": 97, "custody_address": "0x22398f03ed603529969942699b7821224983d024", "following_count": 163, "verified_addresses": {"eth_addresses": ["0x24ba5ea4ab0d0f77f6a970c13e127232e68d84dd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1QpybTT7CadO6tsUBnoukv?si=TPXDYtlTSMaumDWFN_yywA\"}"}', NULL), - (139017, '0x5e307fd5aef9a3fc5c579b9d87e5e6d638a4c6c7', 0, 1, '2024-05-05 06:50:03+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/epUcyMNLCAsyxKmk7\"}"}', NULL), - (283228, '0x2f636f247d9b78e1ca12d5dd1e2d074f8704c203', 0, 1, '2024-05-05 18:22:20+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/i6or7hubng2x/mp3-476640754?si=0ac3c747462f4d7e9bfcd22c3fc48cbc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (166297, '0x78197f806e3179a6d58a4a91b83b834a92d39636', 0, 1, '2024-05-05 10:01:30+00', 0, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1862, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/iKCjAf54HH7pS6xD8\"}"}', NULL), - (172026, '0x3425363de5d1d5f0ff15df61b61aacb0731e123a', 0, 1, '2024-05-05 10:24:08+00', 0, 0, '{"fid": 418390, "object": "user", "pfp_url": "https://i.imgur.com/jxBCQEJ.jpg", "profile": {"bio": {"text": "Alfa Frens channel 💖 알파프렌 구독 좋아요 💖\nhttps://www.alfafrens.com/channel/0x13ec875cda512d6644f48f7f7aaddb1026ce77de", "mentioned_profiles": []}}, "username": "aigirls", "power_badge": false, "display_name": "Ai Girls", "active_status": "inactive", "verifications": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "follower_count": 1341, "custody_address": "0xbc0b95ea996a84fc9956e96e598d305a9261964d", "following_count": 1695, "verified_addresses": {"eth_addresses": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alanwalker/sing-me-to-sleep-marshmello-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (136926, '0x07430125280de162a4ca76558c0aa729d1bd2167', 0, 1, '2024-05-05 06:31:40+00', 0, 1, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2115, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1822, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CPje7g3DU3JQbTnR7\"}"}', NULL), - (381761, '0x07f1072958103bf2086d155404a4905a821ec19d', 0, 1, '2024-05-06 04:04:20+00', 0, 4, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 752, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 830, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/search?q=%ED%88%AC%EC%97%90%EB%8B%88%EC%9B%90\"}"}', 'sonata'), - (139024, '0x89bf53c415087b3ebed0fe374c3091861aab4cc1', 0, 1, '2024-05-05 06:49:32+00', 0, 0, '{"fid": 343483, "object": "user", "pfp_url": "https://i.imgur.com/DBcLQOz.gif", "profile": {"bio": {"text": "YUH.\n/bluegrass /yuh /legends\n\n<3 to create, learn & meme wif frenz\n\n\n\nCheck out my vids on Drakula-------------🧛🩸\nhttps://drakula.app/user/92-?invite=kwPJkt", "mentioned_profiles": []}}, "username": "92-", "power_badge": true, "display_name": "92", "active_status": "inactive", "verifications": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "follower_count": 638, "custody_address": "0xbb89817c017b1a8ed688d52c429adffd25c5e184", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c"], "sol_addresses": ["9wgPd4UfGTYXEAXHGu4Dng7yBjjg36DYbMsvgKSBLCJS"]}}', '{"{\"url\":\"https://soundcloud.com/bellawhite-music/numbers-alt-version?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (139023, '0x6b908cd13a09503c755ae059b5178f5a78eca6b3', 0, 1, '2024-05-05 06:49:13+00', 0, 2, '{"fid": 381086, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee50b6a5-5320-4af2-87ad-b3d53079b300/rectcrop3", "profile": {"bio": {"text": "Film director and writer. Getting better every year and happy as it goes. \nLots of work can be seen on my website:\nmackandco.uk", "mentioned_profiles": []}}, "username": "jamiemccormack", "power_badge": true, "display_name": "Jamie McCormack", "active_status": "inactive", "verifications": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "follower_count": 146, "custody_address": "0xf810f1e885226cd165e10b11e3103c50986e5dc6", "following_count": 415, "verified_addresses": {"eth_addresses": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/40oMDrqiESAbKzfnK6avpB?si=wKnhuoGaQPqycWTCp9LAKw\"}"}', NULL), - (180827, '0x6fd89afeeb5374dbfb5cccd316c4ce08b6371c5f', 0, 1, '2024-05-05 11:46:40+00', 0, 0, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 949, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 892, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qZ98odASq6hM2GzY7\"}"}', NULL), - (419896, '0x43001963aa1d842ea900b772e05aae50eb2f397a', 0, 1, '2024-05-06 05:52:41+00', 0, 5, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1134, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1515, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/irakli-sajaia-1/pink-floyd-dark-side-of-the-moon?si=6fd1e9eef0b649889f5d87cfc7739e7a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (156124, '0xb6c63a3e0f3909e4c94a740c6140ee141ed277d1', 0, 1, '2024-05-05 09:16:07+00', 0, 1, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3385, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2652, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AqLtY4LstcHy3qmr5\"}"}', NULL), - (139111, '0xbc393c25286322c7ee25d2f78e18c93b7b0ef746', 0, 1, '2024-05-05 06:52:50+00', 0, 0, '{"fid": 425117, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ffa2806-e07f-4d46-1bd8-8fa9debacc00/rectcrop3", "profile": {"bio": {"text": "away", "mentioned_profiles": []}}, "username": "away", "power_badge": false, "display_name": "away", "active_status": "inactive", "verifications": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "follower_count": 1810, "custody_address": "0x0ae06a7d1fb20108b10f4e2ac171e512ccb8fbf4", "following_count": 1909, "verified_addresses": {"eth_addresses": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2ryKWNahDp5Nm1Fyv7J2S2?si=QoqWjSdmQmG4aZ9mi_suzg\"}"}', NULL), - (127788, '0x7ad95f9797f7c1ff27f7f6701ea14131dc1cfa0c', 0, 1, '2024-05-05 05:53:09+00', 0, 2, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1414, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eY1xg75bScxU4Shp6\"}"}', NULL), - (126435, '0x943ddbe7f034f70db8c28353f2acece2e4866764', 0, 1, '2024-05-05 05:38:55+00', 0, 0, '{"fid": 218265, "object": "user", "pfp_url": "https://i.imgur.com/jtDuN8C.jpg", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "j-j", "power_badge": false, "display_name": "jj", "active_status": "inactive", "verifications": ["0x5a38b2c6ee3ea3267abe1ede76f70d2a896f99dc"], "follower_count": 31, "custody_address": "0x33fbad29cf7a26b27de539e00afc592226f6e680", "following_count": 142, "verified_addresses": {"eth_addresses": ["0x5a38b2c6ee3ea3267abe1ede76f70d2a896f99dc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ZPeC07wnQMCVJ4FU6tee9?si=h4QBDK7OTTWsVGs68NdEeQ\"}"}', NULL), - (139948, '0xa2f85e62b09155474f626d6d5ebfcc9efd93b719', 0, 1, '2024-05-05 07:15:02+00', 0, 2, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BVgRhCcP1Qdfpi4W6\"}"}', NULL), - (132970, '0x6ca1bcff1d1d294cffc037135bd3c90ec1cdb817', 0, 1, '2024-05-05 06:18:30+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zLiod\"}"}', NULL), - (140584, '0xd79bee4be9c98d9d0042f33a254a2ffb71e7005c', 0, 1, '2024-05-05 07:31:01+00', 0, 1, '{"fid": 422412, "object": "user", "pfp_url": "https://i.imgur.com/QChIHhU.jpg", "profile": {"bio": {"text": "Losing money in a bull market", "mentioned_profiles": []}}, "username": "cryptocellaris", "power_badge": false, "display_name": "cryptocellaris 🎩", "active_status": "inactive", "verifications": ["0x8270e5cccb7e4cd47a49ce29ade9d39a5960d408"], "follower_count": 115, "custody_address": "0x6172a750e321b9008cd9afa403ca830cff872d0c", "following_count": 285, "verified_addresses": {"eth_addresses": ["0x8270e5cccb7e4cd47a49ce29ade9d39a5960d408"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5AyR5S32WREGvGtRyOYRTw?si=F9Mb2m2XRL6TMobS0Elh7w\"}"}', NULL), - (233124, '0xa6c40397fd802e2016ba65ff4d4cbe6eae3ebb4f', 0, 1, '2024-05-05 13:42:47+00', 0, 0, '{"fid": 239772, "object": "user", "pfp_url": "https://i.imgur.com/QFbg0GN.jpg", "profile": {"bio": {"text": "NFT CREATOR on Crypto", "mentioned_profiles": []}}, "username": "ohmaygot", "power_badge": false, "display_name": "$JUP JP 🎩🎩", "active_status": "inactive", "verifications": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "follower_count": 232, "custody_address": "0xcdb034f151b215297a81b7e64085597bd8e32ae4", "following_count": 756, "verified_addresses": {"eth_addresses": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "sol_addresses": ["FHRs2GSYnZsFjmoSvWpvvfyAdHre4jQPRih8Br6JkSZ2"]}}', '{"{\"url\":\"https://m.soundcloud.com/tommyrichmann/million-dollar-baby-vhs\"}"}', NULL), - (156397, '0xbd3edcb6a7b71fa421640455966da41efdaa3512', 0, 1, '2024-05-05 09:16:29+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2619, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3109, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xjosySCzYB3EC13A9\"}"}', NULL), - (135263, '0xeee10a828716177fbba342628f400f8f30a5569f', 0, 1, '2024-05-05 06:25:00+00', 0, 10, '{"fid": 298111, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9271a6e-c6f3-4e18-2730-9c245d5ae100/original", "profile": {"bio": {"text": "Musician and artist from the smallest largest city. https://audius.co/monist", "mentioned_profiles": []}}, "username": "monistmusic.eth", "power_badge": true, "display_name": "Monist 🎩🏳️‍🌈", "active_status": "inactive", "verifications": ["0x30fedb223ada290b7fadd9ad650aadab40365062"], "follower_count": 274, "custody_address": "0x019a1a9e803541226466e9e828d91d2da2024b34", "following_count": 220, "verified_addresses": {"eth_addresses": ["0x30fedb223ada290b7fadd9ad650aadab40365062"], "sol_addresses": ["GPZMR598WKP5oLhHFRf85GQ1DUnidBN5kcvuUatwDPj7"]}}', '{"{\"url\":\"https://www.sound.xyz/monist/polar\"}"}', NULL), - (132973, '0xfb5650b914ed3c9d60bf52cb7a3fe640eada5916', 0, 1, '2024-05-05 06:18:49+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1111, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 902, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"http://Sonata.tips\"}","{\"url\":\"https://on.soundcloud.com/2gNkQoHyQdQUrmQN7\"}"}', NULL), - (126348, '0x87c71a195fb9608f9b85a493aeae153f74184244', 0, 1, '2024-05-05 05:37:22+00', 0, 8, '{"fid": 18262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d18adbfc-1bd6-4bab-0887-858288a92900/rectcrop3", "profile": {"bio": {"text": "max bidding vibes and replies /replyguys\n\nlore /4you", "mentioned_profiles": []}}, "username": "droo4you", "power_badge": true, "display_name": "droober🔵🍖🗣️🎩☮️", "active_status": "inactive", "verifications": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "follower_count": 2243, "custody_address": "0x3a38f04a1b56ded7d9c7548a4c6fb206235ca8aa", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0ewurUrBfHTTWGlBurGUNo?si=eTf6jng1TNyDKpRWX7W-Fw\"}"}', NULL), - (421671, '0xef2323ab31359171e060745d1d5395ba37963db9', 0, 1, '2024-05-06 05:58:47+00', 0, 0, '{"fid": 354320, "object": "user", "pfp_url": "https://i.imgur.com/tb9DF6O.jpg", "profile": {"bio": {"text": "crypto trader\n--apex廃人--", "mentioned_profiles": []}}, "username": "eneb", "power_badge": false, "display_name": "eneb👻かも??", "active_status": "inactive", "verifications": ["0x7f4aca24a93b89859660b104e08ab3943569577a"], "follower_count": 168, "custody_address": "0x2f286de5552e8d8f758969a3c3a06a4d6c44f1a1", "following_count": 316, "verified_addresses": {"eth_addresses": ["0x7f4aca24a93b89859660b104e08ab3943569577a"], "sol_addresses": ["FLXiJN25oeHwnkjvXu4U1xG6ffP9eESf4EbhhaW7YZie"]}}', '{"{\"url\":\"https://soundcloud.com/hemlockernst/down?in=hemlockernst/sets/addicted-youth\"}"}', 'musicjp'), - (156398, '0x00174b341c9387fb366a852bc03f9937f337f221', 0, 1, '2024-05-05 09:16:37+00', 0, 0, '{"fid": 6906, "object": "user", "pfp_url": "https://i.imgur.com/54QzUqm.jpg", "profile": {"bio": {"text": "Music, film photography and crypto enthusiast ✨\n/framescollection 🖼️\ne/enj, enjoy/acc", "mentioned_profiles": []}}, "username": "agrislis.eth", "power_badge": true, "display_name": "Artyom Grislis 🥏", "active_status": "inactive", "verifications": ["0x354d4d759c49094f60d537bfd7177c05b70c20cc"], "follower_count": 2249, "custody_address": "0x33fb65cca82e2156d0efcb4f89e47cc4dadbcd04", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x354d4d759c49094f60d537bfd7177c05b70c20cc"], "sol_addresses": ["7VYuEbBDXAan6qfpgsPFC61SSRbUassdDYaV7NAEGTUX"]}}', '{"{\"url\":\"https://www.sound.xyz/raeisla/miles-and-miles?referral=0x354d4d759c49094f60d537bfd7177c05b70c20cc\"}"}', NULL), - (129094, '0xb42e6ab54bec7b05acd82ea3c314485aab0498b6', 0, 1, '2024-05-05 06:06:12+00', 0, 2, '{"fid": 230791, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/73d8ea4daf1112b702332a289dba1a22.png?w=500&auto=format", "profile": {"bio": {"text": "web2.0/E2.0 disillusioned – now learning on web3 \n🐕 frenchie dad", "mentioned_profiles": []}}, "username": "traukainehm", "power_badge": false, "display_name": "Kai", "active_status": "inactive", "verifications": ["0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38", "0x902a820b606a3b8807af1fc9b99840bc84d6c0c8"], "follower_count": 70, "custody_address": "0x393c9633f8380356e2bded86b8226477bf117fda", "following_count": 81, "verified_addresses": {"eth_addresses": ["0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38", "0x902a820b606a3b8807af1fc9b99840bc84d6c0c8"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/valeinallcaps/chill-like-that\"}"}', NULL), - (140549, '0x0365cc01e4f7df5d2f8ca7069251afc1f3a11af2', 0, 1, '2024-05-05 07:30:05+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4gSVIEdq1I3rSLwPTKTXxR?si=3TKB9_CEQTCr1BZyo0ihxA\"}"}', NULL), - (140033, '0xf1f48cff428114151ce448bcca829e9a7ee1ada3', 0, 1, '2024-05-05 07:17:57+00', 0, 2, '{"fid": 408943, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b41998a-2f83-4d58-1a29-2da1454ae600/rectcrop3", "profile": {"bio": {"text": "🎩 degenals 🎩 ", "mentioned_profiles": []}}, "username": "ppakgam", "power_badge": false, "display_name": "Pierre🎩", "active_status": "inactive", "verifications": ["0x143686e38929bd854e4e8183fd12e112cbd4480a"], "follower_count": 2332, "custody_address": "0xd9592aea2d8a1bd34b51a69686cbc081ec9250ee", "following_count": 2178, "verified_addresses": {"eth_addresses": ["0x143686e38929bd854e4e8183fd12e112cbd4480a"], "sol_addresses": ["FZtwH3dSQCTBW6DVQLNS9n1TPUspQAugZxashE2gGieA"]}}', '{"{\"url\":\"https://soundcloud.com/johnlegend/all-of-me-3?si=0aa1e7f52ef84a698d3b3138dc74afeb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (135429, '0x1e06bb2995400f804725cdad552d1cd731c06971', 0, 1, '2024-05-05 06:25:57+00', 0, 2, '{"fid": 298111, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9271a6e-c6f3-4e18-2730-9c245d5ae100/original", "profile": {"bio": {"text": "Musician and artist from the smallest largest city. https://audius.co/monist", "mentioned_profiles": []}}, "username": "monistmusic.eth", "power_badge": true, "display_name": "Monist 🎩🏳️‍🌈", "active_status": "inactive", "verifications": ["0x30fedb223ada290b7fadd9ad650aadab40365062"], "follower_count": 274, "custody_address": "0x019a1a9e803541226466e9e828d91d2da2024b34", "following_count": 220, "verified_addresses": {"eth_addresses": ["0x30fedb223ada290b7fadd9ad650aadab40365062"], "sol_addresses": ["GPZMR598WKP5oLhHFRf85GQ1DUnidBN5kcvuUatwDPj7"]}}', '{"{\"url\":\"https://www.sound.xyz/monist/polar\"}"}', NULL), - (160723, '0x5f73a7bb025fcf3be1cf6fa6577c914edbd6413b', 0, 1, '2024-05-05 09:44:39+00', 0, 0, '{"fid": 264690, "object": "user", "pfp_url": "https://i.imgur.com/abmdIi1.png", "profile": {"bio": {"text": "Sometimes I rhyme fast sometimes I rhyme slow. Vegan degen.", "mentioned_profiles": []}}, "username": "and42", "power_badge": false, "display_name": "and42🎩", "active_status": "inactive", "verifications": ["0x87af71ffa2051dc58bbc2da8fdacbc036b701788"], "follower_count": 445, "custody_address": "0x76094293cf91ac4bfac7580c7029492ad79522b0", "following_count": 692, "verified_addresses": {"eth_addresses": ["0x87af71ffa2051dc58bbc2da8fdacbc036b701788"], "sol_addresses": ["2f9dWdcZQt2wvDuELzTVHvzE64uPej9SuBvzR821g4Un"]}}', '{"{\"url\":\"https://soundcloud.com/dj_premier/work-this-out-1?si=c0f286323b3d4c40b8e32276ad2d9071&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (126217, '0xb3348e286a3a689b3fd715f29912a0504daa8f0e', 0, 1, '2024-05-05 05:34:53+00', 0, 1, '{"fid": 218265, "object": "user", "pfp_url": "https://i.imgur.com/jtDuN8C.jpg", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "j-j", "power_badge": false, "display_name": "jj", "active_status": "inactive", "verifications": ["0x5a38b2c6ee3ea3267abe1ede76f70d2a896f99dc"], "follower_count": 31, "custody_address": "0x33fbad29cf7a26b27de539e00afc592226f6e680", "following_count": 142, "verified_addresses": {"eth_addresses": ["0x5a38b2c6ee3ea3267abe1ede76f70d2a896f99dc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0NDUuWBh1ykEGtIBtD9tAm?si=QGrABsRaTci0XO3vD-SFfQ&context=spotify%3Aplaylist%3A4fCQQCfUw8mT4x1myi02LH\"}"}', NULL), - (158448, '0x08a60be59b2224898398f30ed1e789ab8ef34a8d', 0, 1, '2024-05-05 09:37:33+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2622, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3114, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iuJUyV8QF1TmbMRS9\"}"}', NULL), - (182609, '0xed7b13f3753021ba2df4bb43e00f4ca429912c4a', 0, 1, '2024-05-05 11:53:59+00', 0, 1, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 949, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 892, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4xmyKmYs7bUBypt29\"}"}', NULL), - (151325, '0x0af2e6d53751f825f23dc113e35d70c1541f38e1', 0, 1, '2024-05-05 08:50:31+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0VYhxVxH9ijmdHUKsON9Bk?si=8Fx4T2wfS4KbY_9OZrD_4Q\"}"}', NULL), - (133206, '0x1097b79441591a4e1b7c40f8ba2e9c70f33af56a', 0, 1, '2024-05-05 06:19:55+00', 0, 4, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/everybody-knows?referral_source=link\"}"}', NULL), - (1173035, '0xee0cb6c2dbc7e6d87d354ae1839b12d5abe2b815', 1000, 1, '2024-05-14 23:08:11+00', 0, 0, '{"fid": 196378, "object": "user", "pfp_url": "https://i.imgur.com/5kOLqhw.jpg", "profile": {"bio": {"text": "VP of Music - @cooprecs | Label Manager - Odyzey Music", "mentioned_profiles": []}}, "username": "jakeonchain.eth", "power_badge": true, "display_name": "Jakeonchain", "active_status": "inactive", "verifications": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "follower_count": 492, "custody_address": "0xdc6bc6aab5fad36088b8ed68ab248753cdf905bd", "following_count": 170, "verified_addresses": {"eth_addresses": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3sn7UM54xyAUjfR9rNxZwp?si=c20b51a89f114a6d\"}"}', 'bangers'), - (135633, '0xf4ca06894a2031cb1d9f74ce382a7729ed39e166', 0, 1, '2024-05-05 06:27:26+00', 0, 1, '{"fid": 236389, "object": "user", "pfp_url": "https://i.imgur.com/FXQWgpx.jpg", "profile": {"bio": {"text": "audio alchemist. ai experimentalist. music producer of the @vnderworld.\n\nnullhax.com", "mentioned_profiles": []}}, "username": "hax.eth", "power_badge": false, "display_name": "hax 🎩", "active_status": "inactive", "verifications": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "follower_count": 139, "custody_address": "0x70664c8bcf0314e13860c021db97e808cd000831", "following_count": 256, "verified_addresses": {"eth_addresses": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vnderworld/ground-loop\"}"}', NULL), - (126650, '0x845519dbcc85ae47331545215be9adf5bccba5da', 0, 1, '2024-05-05 05:46:24+00', 0, 4, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1199, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1159, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZHMXcTfsjgvBShxj7\"}"}', NULL), - (126553, '0x322a5d0e3797e0c7cf6397ffc33d39c3e23bc7e0', 0, 1, '2024-05-05 05:43:35+00', 0, 2, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2497, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2514, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 동일_야인(SBS_드라마_야인시대_OST) by kasminz on #SoundCloud https://on.soundcloud.com/Y9pgE\"}"}', NULL), - (151530, '0x41fa3c01c3429c49dce3d9b2e01023a89e009525', 0, 1, '2024-05-05 08:51:50+00', 0, 1, '{"fid": 511688, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ee884f6-6f5a-4114-e5d5-d0627a126c00/rectcrop3", "profile": {"bio": {"text": "swallow 💰", "mentioned_profiles": []}}, "username": "!511688", "power_badge": false, "display_name": "BlackRock", "active_status": "inactive", "verifications": ["0x459680ee096a52090209e25305fe8290923d6ad2"], "follower_count": 164, "custody_address": "0x2be300fac40878518b7ce6579cdb70786aeeab6d", "following_count": 181, "verified_addresses": {"eth_addresses": ["0x459680ee096a52090209e25305fe8290923d6ad2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t1RHsjvXDFgXQMrT6\"}"}', NULL), - (171053, '0xa8135788f42b6f6810a7f3e5c6b419a695f4ddd6', 0, 1, '2024-05-05 10:19:22+00', 0, 0, '{"fid": 508924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9577aec6-5fb8-45ba-c1c6-87264545fa00/rectcrop3", "profile": {"bio": {"text": "Patience is always a reward🙏💓", "mentioned_profiles": []}}, "username": "!508924", "power_badge": false, "display_name": "Daegu vk🎩🍖", "active_status": "inactive", "verifications": ["0xc73601486eaab127b05a878559c5bed2c7f3e125"], "follower_count": 162, "custody_address": "0xc59b85e5c22a172fa6bd51bb2aead61e1185a31f", "following_count": 397, "verified_addresses": {"eth_addresses": ["0xc73601486eaab127b05a878559c5bed2c7f3e125"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/axZdK\"}"}', NULL), - (166305, '0xd5e58acc55cd700a596b98a33ae366fcbd746127', 0, 1, '2024-05-05 10:01:21+00', 0, 0, '{"fid": 499468, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baca52c5-2b5b-4fdd-bab6-f554bcfb1300/original", "profile": {"bio": {"text": "Designer and Web3 Developer", "mentioned_profiles": []}}, "username": "yoonju", "power_badge": false, "display_name": "Yoon Ju", "active_status": "inactive", "verifications": ["0x2ff0fef5a2f4d4f803c15feacfa8c63df4bfbc8d"], "follower_count": 36, "custody_address": "0xcac0e18ebd1bb15e18b641272145bd88c252a208", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2ff0fef5a2f4d4f803c15feacfa8c63df4bfbc8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ozunapr/ozuna-bad-gyal-guay\"}"}', NULL), - (384248, '0xb2c6d65baea4f65e28b31ce373ca1fdea65dd9b9', 0, 1, '2024-05-06 04:09:39+00', 0, 0, '{"fid": 502049, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf5547fa-26c5-4e6a-c79f-fb509b567c00/rectcrop3", "profile": {"bio": {"text": "I''m hacker in Usa", "mentioned_profiles": []}}, "username": "welloworld", "power_badge": false, "display_name": "Codemania", "active_status": "inactive", "verifications": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "follower_count": 1618, "custody_address": "0x135ad7989e8ee71ad4f272e44d1eecd2278eecc8", "following_count": 773, "verified_addresses": {"eth_addresses": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/admkvqzyolkz/sets/beenzino-jazzyfact\"}"}', NULL), - (126591, '0x21fc608cfcf905165fb57c2706281dffa17e5ca4', 0, 1, '2024-05-05 05:44:56+00', 0, 1, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 620, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 311, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5P3uF\"}"}', NULL), - (151326, '0x6b9c8e1652caeac31393f12fc62156101bee09a3', 0, 1, '2024-05-05 08:50:21+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0VYhxVxH9ijmdHUKsON9Bk?si=8Fx4T2wfS4KbY_9OZrD_4Q\"}"}', NULL), - (133204, '0xb7e87a473cd9856a5ed09824970de6e1e476b82f', 0, 1, '2024-05-05 06:19:12+00', 0, 0, '{"fid": 16043, "object": "user", "pfp_url": "https://i.imgur.com/O2magG5.jpg", "profile": {"bio": {"text": "wrote under the moniker LeftOfCenter for ChainNewscom, previous splitworks.", "mentioned_profiles": []}}, "username": "eloise", "power_badge": false, "display_name": "EloisΞ 🎩", "active_status": "inactive", "verifications": ["0xf9d4f6b83f0d227266c88d987d02031e4bfc4758", "0x2a2cd7400f922085b62ca9bd9ac0f16151f716ab"], "follower_count": 285, "custody_address": "0xf41424d56db1efcfc251e771e6bf6180132f3d01", "following_count": 448, "verified_addresses": {"eth_addresses": ["0xf9d4f6b83f0d227266c88d987d02031e4bfc4758", "0x2a2cd7400f922085b62ca9bd9ac0f16151f716ab"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7grK9ykPiXAV8C2EbaH84K\"}"}', NULL), - (129234, '0xf18cb0ce6ed00c874adacf7e8050c1015898fbd8', 0, 1, '2024-05-05 06:07:51+00', 0, 2, '{"fid": 424820, "object": "user", "pfp_url": "https://i.imgur.com/7G84oTV.gif", "profile": {"bio": {"text": "Audio x Visual x Crypto = https://linktr.ee/Jburn", "mentioned_profiles": []}}, "username": "jburn", "power_badge": false, "display_name": "Jburn", "active_status": "inactive", "verifications": ["0x497a7dee2f13db161eb2fec060fa783cb041419f"], "follower_count": 483, "custody_address": "0xa301dfcd6b1067dacedc4308090058e593091789", "following_count": 263, "verified_addresses": {"eth_addresses": ["0x497a7dee2f13db161eb2fec060fa783cb041419f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/burnjourney/lorsor?si=4709c7dc52894513a2405baf133c519f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (129231, '0x076ad4424ddbbda9dd15554e62f4d55f13c4459c', 0, 1, '2024-05-05 06:07:11+00', 0, 4, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 707, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1071, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7XfGGTN3JSidBKVJ6\"}"}', NULL), - (139182, '0x14fd8f9c03832883ffc5c030b997a653fa8ab451', 0, 1, '2024-05-05 06:55:05+00', 0, 2, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 744, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dear-fairy/ariana-grande-playlist?si=1bf4610818b94989b3284ce176e3e482&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (132974, '0xbed5764455b7171c667c22b626de1cbbb4801cc3', 0, 1, '2024-05-05 06:18:13+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1109, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1021, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/1dSUiYNjblQ2Vd142K8kjn?si=KgtiUo6UTg2-C0lz3WqR6w&context=spotify%3Aartist%3A2MPHBxznH1fj59jbOWY38u\"}"}', NULL), - (129494, '0xf5eedcc0a964c711d5252df48bab9823476818a9', 0, 1, '2024-05-05 06:09:03+00', 0, 2, '{"fid": 230791, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/73d8ea4daf1112b702332a289dba1a22.png?w=500&auto=format", "profile": {"bio": {"text": "web2.0/E2.0 disillusioned – now learning on web3 \n🐕 frenchie dad", "mentioned_profiles": []}}, "username": "traukainehm", "power_badge": false, "display_name": "Kai", "active_status": "inactive", "verifications": ["0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38", "0x902a820b606a3b8807af1fc9b99840bc84d6c0c8"], "follower_count": 69, "custody_address": "0x393c9633f8380356e2bded86b8226477bf117fda", "following_count": 82, "verified_addresses": {"eth_addresses": ["0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38", "0x902a820b606a3b8807af1fc9b99840bc84d6c0c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kKkeuUQhVBC2rLSC7\"}"}', NULL), - (129484, '0x2c38fed088a70e7defd8cca8eca4e9d83646145b', 0, 1, '2024-05-05 06:08:39+00', 0, 5, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1414, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fkqHDeZtUDmfyytB8\"}"}', NULL), - (126649, '0x2c47a3a1d1c0929b28a9389ca33fca89102505c0', 0, 1, '2024-05-05 05:46:11+00', 0, 4, '{"fid": 502477, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4508045-fe7f-46b6-e8e0-f42a84990f00/rectcrop3", "profile": {"bio": {"text": "Peace, freedom, love", "mentioned_profiles": []}}, "username": "gungang", "power_badge": false, "display_name": "gungang", "active_status": "inactive", "verifications": ["0xb8c7a08071b391855f021542bc035af70249c677"], "follower_count": 731, "custody_address": "0x98a3dedc190bec2707178e90952593822a1f63a0", "following_count": 1443, "verified_addresses": {"eth_addresses": ["0xb8c7a08071b391855f021542bc035af70249c677"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/baek_a/t9jzopkpx91b\"}"}', NULL), - (126592, '0xc7f14dccc9a1a784fece2a8bfc0884de85b9fbf2', 0, 1, '2024-05-05 05:45:20+00', 0, 4, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1199, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1159, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YKTWSUUFb3c827Rb6\"}"}', NULL), - (133205, '0x3227689b10a9697d5d0726ea694e040860c988b7', 0, 1, '2024-05-05 06:19:34+00', 0, 1, '{"fid": 287750, "object": "user", "pfp_url": "https://i.imgur.com/17L41vu.gif", "profile": {"bio": {"text": "Digital Degen: My high-risk-seeking alter ego.\n\n👥🔵 Based People (Alpha + WL): twitter.com/i/communities/1781697487016759428", "mentioned_profiles": []}}, "username": "pixe1", "power_badge": true, "display_name": "▫️ ᴾⁱˣᵉ¹ 🔵", "active_status": "inactive", "verifications": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "follower_count": 603, "custody_address": "0xd7fc6444b0775535e9814b73a3812b351ae3d7d2", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rodwave/numb-1\"}"}', NULL), - (136762, '0x7cbe9c9f9549d3b620b8c0975f6418d953cb69c7', 0, 1, '2024-05-05 06:30:12+00', 0, 7, '{"fid": 347050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e474ba4a-29e5-4238-2e48-940936ddb900/rectcrop3", "profile": {"bio": {"text": "artist. cat. jazz fiend •\n\nhosting /whoa\n•\n\nhttps://linktr.ee/TruptyS", "mentioned_profiles": []}}, "username": "trupty", "power_badge": true, "display_name": "Trupty Somaiah 🎩🦉", "active_status": "inactive", "verifications": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "follower_count": 1843, "custody_address": "0x64116e340ae712b58060820f2f328023ddbedf0a", "following_count": 407, "verified_addresses": {"eth_addresses": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/19dce831-0b61-49ef-9fe9-d1656b5b7d00/original\"}","{\"url\":\"https://open.spotify.com/track/5J3Umj4aCqRGtX785vlyhK?si=nWTgnhd7QpSjXHyYrUmkWQ&context=spotify%3Aartist%3A1srvW9AP2k4GLhS3hlC3IN\"}"}', NULL), - (136572, '0xb114bce94f757dc8f3af576d26610f5515f21653', 0, 1, '2024-05-05 06:28:54+00', 0, 0, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 1927, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/seanjmundy/til-dawn-the-weeknd-moads-cover\"}"}', NULL), - (531003, '0xc23e66de6ba05377039e56378daacd98483e2623', 0, 1, '2024-05-06 09:34:26+00', 0, 0, '{"fid": 429365, "object": "user", "pfp_url": "https://i.imgur.com/iF8ZBO7.png", "profile": {"bio": {"text": "1 Degen = 1USD 기원 🔥\n⭐100% 답장 갑니다⭐\n우리 모두 부자됩시다🥳", "mentioned_profiles": []}}, "username": "chaejonghyun", "power_badge": false, "display_name": "Keep-going🍖🚀", "active_status": "inactive", "verifications": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "follower_count": 3654, "custody_address": "0x4fd1388a37021d7e12d422c0941df22d55a8672b", "following_count": 3876, "verified_addresses": {"eth_addresses": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/As3ZM\"}"}', NULL), - (129781, '0x7437733a8bef484c5d04f8a936978ecf3ca31b1a', 10, 1, '2024-05-05 06:10:41+00', 0, 4, '{"fid": 426609, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmU336RHtVfr1kciQcPhjeXe9A3tUAYaNe8feUMsV3LMnX?filename=DSC00075.JPG", "profile": {"bio": {"text": "Enjoy your life", "mentioned_profiles": []}}, "username": "lovmoon", "power_badge": false, "display_name": "namu", "active_status": "inactive", "verifications": ["0x0d95e0df118b20b316b670ef55273d4ffaddf5cd"], "follower_count": 1863, "custody_address": "0xd24ccaf24ad435b753c2bedb7e7db73023511c4e", "following_count": 1218, "verified_addresses": {"eth_addresses": ["0x0d95e0df118b20b316b670ef55273d4ffaddf5cd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lukasgraham/7-years?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (125762, '0xba893091d032c40efd17f1dd1113472031619d35', 0, 1, '2024-05-05 05:32:03+00', 0, 1, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 875, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/coldplay/in-my-place-acoustic?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (139019, '0xd9cd53c1be5b4606dced45477dccad06e4db56e8', 0, 1, '2024-05-05 06:49:45+00', 0, 3, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1264, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1153, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/672N8DGGTOLCOgWe0koX5g?si=lADbzQWyRXqqIwqZUNlNpQ&context=spotify%3Aplaylist%3A37i9dQZF1DXdTCdwCKzXwo\"}"}', NULL), - (5671, '0xd2950a6b7a4a2591750bf3707454d6a7816c6327', 10, 1, '2024-05-03 18:32:57+00', 0, 6, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1314, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 297, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/07fe2174-ae53-42ad-9b54-d79c4365568c?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (133430, '0x5d1a620aaab54b537f668ab71aeb55967907ba9d', 110, 1, '2024-05-05 06:20:52+00', 0, 17, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/new-york-without-me?referral_source=link\"}"}', NULL), - (151771, '0x934671cc345beb33f7af175d51fc3be518b80ae9', 0, 1, '2024-05-05 08:52:38+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/j7y9rmNXzgaQPVmz5\"}"}', NULL), - (140420, '0x659c4e8aebda7c83261d6b842aca92c71edded27', 0, 1, '2024-05-05 07:27:28+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gK59uY2BgJYT2PQr7\"}"}', NULL), - (129773, '0x95197a61027de3b157c757fada9ea89169751a8a', 0, 1, '2024-05-05 06:11:07+00', 0, 2, '{"fid": 230791, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/73d8ea4daf1112b702332a289dba1a22.png?w=500&auto=format", "profile": {"bio": {"text": "web2.0/E2.0 disillusioned – now learning on web3 \n🐕 frenchie dad", "mentioned_profiles": []}}, "username": "traukainehm", "power_badge": false, "display_name": "Kai", "active_status": "inactive", "verifications": ["0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38", "0x902a820b606a3b8807af1fc9b99840bc84d6c0c8"], "follower_count": 69, "custody_address": "0x393c9633f8380356e2bded86b8226477bf117fda", "following_count": 82, "verified_addresses": {"eth_addresses": ["0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38", "0x902a820b606a3b8807af1fc9b99840bc84d6c0c8"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":503116,\"hash\":\"0xb95bea6ffc62d1a196d61c90828807e9079668b6\"}}","{\"url\":\"https://on.soundcloud.com/kKkeuUQhVBC2rLSC7\"}"}', NULL), - (126646, '0xca9aafab05fcf7a27247304254fc12da8dcde8ab', 0, 1, '2024-05-05 05:45:37+00', 0, 5, '{"fid": 420603, "object": "user", "pfp_url": "https://i.imgur.com/2Q5Rp1Z.jpg", "profile": {"bio": {"text": "💎Degen, the most promising💎", "mentioned_profiles": []}}, "username": "nanhee", "power_badge": false, "display_name": "nanhee🎩", "active_status": "inactive", "verifications": ["0xc2621775957a51a4c11ae3d9fbdd008cc541a86a"], "follower_count": 1919, "custody_address": "0xd04ae944476aaa9eb212e3c09a8a2e8bfe92944f", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0xc2621775957a51a4c11ae3d9fbdd008cc541a86a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-909025878/beautiful-things-benson-boone\"}"}', NULL), - (133425, '0x5a4c9c177e0b271e2430dd7ee9886f38236d9b5e', 0, 1, '2024-05-05 06:20:41+00', 0, 1, '{"fid": 287750, "object": "user", "pfp_url": "https://i.imgur.com/17L41vu.gif", "profile": {"bio": {"text": "Digital Degen: My high-risk-seeking alter ego.\n\n👥🔵 Based People (Alpha + WL): twitter.com/i/communities/1781697487016759428", "mentioned_profiles": []}}, "username": "pixe1", "power_badge": true, "display_name": "▫️ ᴾⁱˣᵉ¹ 🔵", "active_status": "inactive", "verifications": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "follower_count": 603, "custody_address": "0xd7fc6444b0775535e9814b73a3812b351ae3d7d2", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nalyroofficial/vaidas-baumila-myliu-nalyro-remix?in=sc-playlists-eunon/sets/dance-energy\"}"}', NULL), - (139346, '0x29ec9486c69fb4cebacf82d3b4c68d46c68b6532', 0, 1, '2024-05-05 06:58:27+00', 0, 0, '{"fid": 439718, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\"", "mentioned_profiles": []}}, "username": "ssr", "power_badge": true, "display_name": "SSR🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "follower_count": 547, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 605, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mrw6HMf9Tov4Qo2cA\"}"}', NULL), - (138466, '0xc451b383a3bfd7130b96b1398266498c8ab341ca', 0, 1, '2024-05-05 06:44:47+00', 0, 1, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1264, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1153, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5fLaktcUZKBkWK8pGbUn7R?si=shKZNyylSTezab0RP_xRiA\"}"}', NULL), - (156583, '0xf60360d62fa73033d774b764a32e87b9cf44c00d', 0, 1, '2024-05-05 09:17:12+00', 0, 0, '{"fid": 9587, "object": "user", "pfp_url": "https://i.imgur.com/NvMW5xr.gif", "profile": {"bio": {"text": "Spaceman, software engineer 🚀", "mentioned_profiles": []}}, "username": "1damer", "power_badge": false, "display_name": "Daniil 🔄🎩🐲🐢", "active_status": "inactive", "verifications": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "follower_count": 268, "custody_address": "0x6b5ad0b9a447d33e78b25017b7540a0d2723dc4a", "following_count": 569, "verified_addresses": {"eth_addresses": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t_damer/sth-lofi?si=34e58dacceee48e1abb62a1f43033ccc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (165581, '0x4f60b6bcd8cf7ad130dba3c5fe420416bdd03e6d', 0, 1, '2024-05-05 09:59:24+00', 0, 2, '{"fid": 499468, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baca52c5-2b5b-4fdd-bab6-f554bcfb1300/original", "profile": {"bio": {"text": "Designer and Web3 Developer", "mentioned_profiles": []}}, "username": "yoonju", "power_badge": false, "display_name": "Yoon Ju", "active_status": "inactive", "verifications": ["0x2ff0fef5a2f4d4f803c15feacfa8c63df4bfbc8d"], "follower_count": 36, "custody_address": "0xcac0e18ebd1bb15e18b641272145bd88c252a208", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2ff0fef5a2f4d4f803c15feacfa8c63df4bfbc8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jackharlow/jack-harlow-lovin-on-me\"}"}', NULL), - (129775, '0x2b23dc811d176c2106ff143f41f0f71916ce06c0', 0, 1, '2024-05-05 06:11:30+00', 0, 2, '{"fid": 291971, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/clv3gdlza000p11ur11lqhqs1.png", "profile": {"bio": {"text": "Trade and Get New User Bonus: https://www.okx.com/join/megajayar | 🇵🇭", "mentioned_profiles": []}}, "username": "megajayar", "power_badge": true, "display_name": "Hermano 🎩🔮", "active_status": "inactive", "verifications": ["0x2ff673a287a816fc4089cc51933f32e8c16fd416"], "follower_count": 1201, "custody_address": "0x4b2e0ed72c23d25eb3da7a591996d34adf6e5909", "following_count": 368, "verified_addresses": {"eth_addresses": ["0x2ff673a287a816fc4089cc51933f32e8c16fd416"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3qhlB30KknSejmIvZZLjOD?si=Kp_WgwBQS06GZrFZQzJf9w&context=spotify%3Aplaylist%3A37i9dQZF1DXcZQSjptOQtk\"}"}', NULL), - (126717, '0x52390523852ec94bb64d9075b782e1cadfbb2167', 0, 1, '2024-05-05 05:48:18+00', 0, 5, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2497, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2514, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Y9pgE\"}"}', NULL), - (139379, '0xe574566f45b87803c17026c9b0466a8022a522e6', 0, 1, '2024-05-05 07:00:23+00', 0, 3, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1089, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 597, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha ILLIT(아일릿) - Magnetic de euning en #SoundCloud https://on.soundcloud.com/M6aWv\"}"}', NULL), - (139441, '0xa8cd51413caab39802e5d5fb01f541ad4ddb6877', 0, 1, '2024-05-05 07:02:11+00', 0, 0, '{"fid": 510817, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85427d20-d459-4f70-abe1-a4170c29e600/rectcrop3", "profile": {"bio": {"text": "💱", "mentioned_profiles": []}}, "username": "!510817", "power_badge": false, "display_name": "Ghost", "active_status": "inactive", "verifications": ["0x8f3668aaa99937506811d9e085cc26e51c363b73"], "follower_count": 9, "custody_address": "0xd7853ed8337e326cf840dc7a14e45db19c70bb4a", "following_count": 61, "verified_addresses": {"eth_addresses": ["0x8f3668aaa99937506811d9e085cc26e51c363b73"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2FDTHlrBguDzQkp7PVj16Q?si=CgblFWWfR-eHGIltBmzXNQ&context=spotify%3Aplaylist%3A37i9dQZF1DWUxNaiMJ01qn\"}"}', NULL), - (151765, '0x9b2578179cfb92fca7322a00f061e533c4040ceb', 0, 1, '2024-05-05 08:52:40+00', 0, 0, '{"fid": 363041, "object": "user", "pfp_url": "https://i.imgur.com/0zEMLbY.jpg", "profile": {"bio": {"text": "Between analog and digital worlds\n https://linktr.ee/paintre369", "mentioned_profiles": []}}, "username": "paintre369.eth", "power_badge": false, "display_name": "Felix Pensel", "active_status": "inactive", "verifications": ["0xf812408fc655530ae21e69c1ff8b6c3fe8828b63"], "follower_count": 268, "custody_address": "0x48c3feac31cd61b57859a64cd8e66c9c265483de", "following_count": 895, "verified_addresses": {"eth_addresses": ["0xf812408fc655530ae21e69c1ff8b6c3fe8828b63"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4ruIKAwWJqxz3llvIPI9af?si=9zU5guUQSx2ekWAPpY823A&context=spotify%3Aalbum%3A7AnDUzKjjnPvrxoN2ZOkQL\"}"}', NULL), - (203615, '0xbc8a7b25781547e2c5f6ca67750b1ce5ddeaadf9', 0, 1, '2024-05-05 12:42:19+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1311, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1269, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jay-advice/harry-potter-waltz-yule-ball-soundtrack-patrick-doyle?si=b1c78913fc46462f8c3c96424ae0ed72&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (76183, '0xb884119372cf905d5f0a8bd0962d3e7d0b371674', 1010, 1, '2024-05-05 00:06:20+00', 0, 6, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman @ farcon", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 480, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed\"}"}', 'sonata'), - (126718, '0x30cd06984bc910cd01be8f37a52834a2bed39638', 0, 1, '2024-05-05 05:47:55+00', 0, 0, '{"fid": 461302, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f20ea39c-42ac-43eb-912b-dc4e90c64e00/rectcrop3", "profile": {"bio": {"text": "Hello~", "mentioned_profiles": []}}, "username": "dd8", "power_badge": false, "display_name": "dd8", "active_status": "inactive", "verifications": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "follower_count": 2607, "custody_address": "0xaea1e717380b4d1722164a4cba18c50e059479c4", "following_count": 1998, "verified_addresses": {"eth_addresses": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/shaboozey/shaboozey-a-bar-song-tipsy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (133422, '0x4590fe95c27e802023e0dbd6a69ede31266ccee3', 0, 1, '2024-05-05 06:20:58+00', 0, 2, '{"fid": 287750, "object": "user", "pfp_url": "https://i.imgur.com/17L41vu.gif", "profile": {"bio": {"text": "Digital Degen: My high-risk-seeking alter ego.\n\n👥🔵 Based People (Alpha + WL): twitter.com/i/communities/1781697487016759428", "mentioned_profiles": []}}, "username": "pixe1", "power_badge": true, "display_name": "▫️ ᴾⁱˣᵉ¹ 🔵", "active_status": "inactive", "verifications": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "follower_count": 603, "custody_address": "0xd7fc6444b0775535e9814b73a3812b351ae3d7d2", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jettrec/ya-lublyu-tebya?in=sc-playlists-eunon/sets/dance-energy\"}"}', NULL), - (129782, '0x48543ca0f30eab903fcabf22e496039cc490179d', 0, 1, '2024-05-05 06:11:14+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 493, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0pgQVwI3EASJPbovhNC7Up?si=8PLNF2AoRjeqxni4X_yYmA\"}"}', NULL), - (139383, '0x5b89c17f1c802be10bd93ae3b3ad86d2f39141ad', 0, 1, '2024-05-05 07:00:24+00', 0, 7, '{"fid": 400234, "object": "user", "pfp_url": "https://i.imgur.com/I4wpiBh.jpg", "profile": {"bio": {"text": "깜박깜박 잊고 있다가 “아맞다!!!!!”\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n그래서 내 별명은 amadda 💕 아마따 💕\n", "mentioned_profiles": []}}, "username": "amadda", "power_badge": false, "display_name": "Amadda", "active_status": "inactive", "verifications": ["0xf483e2d4da3e190f1cd6fdc42adc87fc29b6e066"], "follower_count": 2147, "custody_address": "0x3f313dd8fb8a9a130bbbbf5da2b2aef0c95dde81", "following_count": 1883, "verified_addresses": {"eth_addresses": ["0xf483e2d4da3e190f1cd6fdc42adc87fc29b6e066"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GD1E9KRNBiJwt5RP7\"}"}', NULL), - (156676, '0x523049a16ff8580d2c474f2548fdcf85c9b7443d', 0, 1, '2024-05-05 09:18:59+00', 0, 0, '{"fid": 353481, "object": "user", "pfp_url": "https://i.imgur.com/Ezx0Q94.jpg", "profile": {"bio": {"text": "I''m a Japanese Anime geek, Graphic designer.\n/likewen host.", "mentioned_profiles": []}}, "username": "magia", "power_badge": false, "display_name": "Magia", "active_status": "inactive", "verifications": ["0x52691b5ab413863bac901f63cb7e2ce8ab7cc049"], "follower_count": 1579, "custody_address": "0x6b6b713b7f1d3d819ff393a68a35305cccf73464", "following_count": 546, "verified_addresses": {"eth_addresses": ["0x52691b5ab413863bac901f63cb7e2ce8ab7cc049"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/zenixls2/magia\"}"}', NULL), - (140188, '0x9697926f4e60cdbe1ab843e857715bfa2e8c95e0', 0, 1, '2024-05-05 07:21:01+00', 0, 2, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 622, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 739, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/absollutely/newjeans-hype-boy?si=e55bf866dce44f53a18be76d4b88b61b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (151760, '0x95c17b429f1cd9de0da98ea200d37c098b2948a2', 0, 1, '2024-05-05 08:52:56+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/j7y9rmNXzgaQPVmz5\"}"}', NULL), - (130635, '0xba54cbf94d0df90b07c22ca040964f5a3518bc27', 0, 1, '2024-05-05 06:11:36+00', 0, 3, '{"fid": 18274, "object": "user", "pfp_url": "https://i.imgur.com/v4NDt8y.jpg", "profile": {"bio": {"text": "OG Farcaster | Twitter: https://twitter.com/xCuongisreal", "mentioned_profiles": []}}, "username": "cuongisreal", "power_badge": false, "display_name": "Cuongisreal 🎩", "active_status": "inactive", "verifications": ["0x265f5a9b3181ef516d755cb890a24a98e7d641ce"], "follower_count": 953, "custody_address": "0x0779bff9da3c1adab9f8bef35c18d98110feb3a0", "following_count": 122, "verified_addresses": {"eth_addresses": ["0x265f5a9b3181ef516d755cb890a24a98e7d641ce"], "sol_addresses": ["8LU28ejuYbJGrFQ1o7uX3CZEiLdHAbJbUbFs4aN1G8qk"]}}', '{"{\"url\":\"https://soundcloud.com/discover/sets/personalized-tracks::ng-c-c-ng-398520465:1073463523\"}"}', NULL), - (126908, '0xf39cd3099bbfaee9ef53085df703ef37cf4609a0', 0, 1, '2024-05-05 05:49:18+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 490, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 147, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0pgQVwI3EASJPbovhNC7Up?si=J05nzZV1QNSAyMtVOIwHWg\"}"}', NULL), - (133424, '0x642bc1e1f876c7b99515c2637e24de1106b21828', 0, 1, '2024-05-05 06:20:22+00', 0, 1, '{"fid": 287750, "object": "user", "pfp_url": "https://i.imgur.com/17L41vu.gif", "profile": {"bio": {"text": "Digital Degen: My high-risk-seeking alter ego.\n\n👥🔵 Based People (Alpha + WL): twitter.com/i/communities/1781697487016759428", "mentioned_profiles": []}}, "username": "pixe1", "power_badge": true, "display_name": "▫️ ᴾⁱˣᵉ¹ 🔵", "active_status": "inactive", "verifications": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "follower_count": 603, "custody_address": "0xd7fc6444b0775535e9814b73a3812b351ae3d7d2", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nortkash/rihanna-sm-nortkash-5rock-remix\"}"}', NULL), - (419873, '0x7888b67bebc1762588bcc05b83b795ba58e4baca', 0, 1, '2024-05-06 05:53:07+00', 0, 2, '{"fid": 464228, "object": "user", "pfp_url": "https://i.imgur.com/JqKwmZQ.jpg", "profile": {"bio": {"text": "$DEGEN / 🍖 햄 / 좋아요🔥 / 리캐스트 🔥 / 댓글 🔥 / 한명도 빠짐없이 다 찾아가 2배로 돌려드립니다.\n -슈캐 유저- \n매일 운세 각종 정보 올립니다 ㅎㅎ\n선팔 주시면 끝까지 맞팔 갑니다!!", "mentioned_profiles": []}}, "username": "donjeollae", "power_badge": false, "display_name": "Donjeollae", "active_status": "inactive", "verifications": ["0xc88dcc00463576921fef35cf30e57590ca865b00"], "follower_count": 1916, "custody_address": "0x9a65f4c929f4fb0b369ab3280bbae247a6edfa7c", "following_count": 2166, "verified_addresses": {"eth_addresses": ["0xc88dcc00463576921fef35cf30e57590ca865b00"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/esensofficial/6xilzhi4cf8c?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (133436, '0xcbaa7c2c4f16ca533937c0b9b2b2699e74113ece', 0, 1, '2024-05-05 06:20:35+00', 0, 5, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/rich-and-famous?referral_source=link\"}"}', NULL), - (151881, '0x3f4fa02593b7053a2e918474703f454c427eed55', 0, 1, '2024-05-05 08:53:57+00', 0, 2, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1091, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 598, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha Sabrina Carpenter - Espresso de Sabrina Carpenter en #SoundCloud https://on.soundcloud.com/TUwUX\"}"}', NULL), - (140220, '0x283ce84b77b2c56c35d5914a14057aa952e24889', 0, 1, '2024-05-05 07:22:29+00', 0, 0, '{"fid": 499091, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d892d750-f391-476b-078f-cddc5278b500/rectcrop3", "profile": {"bio": {"text": "일상 & 코인", "mentioned_profiles": []}}, "username": "fuzzypaws", "power_badge": false, "display_name": "Fuzzypaws", "active_status": "inactive", "verifications": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "follower_count": 1221, "custody_address": "0x24b9ca359d7f4f1395e7d7b101e52b3f1784bcbb", "following_count": 1400, "verified_addresses": {"eth_addresses": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5xrtzzzikpG3BLbo4q1Yul?si=2f73c9c388444ace\"}"}', NULL), - (136571, '0x3a6569fba171e3ceb140bd74a38538a075396f6f', 0, 1, '2024-05-05 06:29:14+00', 0, 0, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 1927, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/seanjmundy/til-dawn-the-weeknd-moads-cover\"}"}', NULL), - (133428, '0xceddbf973bfae807664b0413c10d6dc3493c7828', 0, 1, '2024-05-05 06:20:19+00', 0, 20, '{"fid": 418456, "object": "user", "pfp_url": "https://i.imgur.com/RK5wyHc.jpg", "profile": {"bio": {"text": "AI art / Full stack dev / Interested in crypto / Photograph", "mentioned_profiles": []}}, "username": "yoony12", "power_badge": false, "display_name": "Yoony12", "active_status": "inactive", "verifications": ["0x178dbcce09ac48e63e57507c003259657833553f"], "follower_count": 5342, "custody_address": "0x0c1b7263d19f3c6896670fa5cbf23f431b0188ef", "following_count": 5369, "verified_addresses": {"eth_addresses": ["0x178dbcce09ac48e63e57507c003259657833553f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/H5ypH7LyL9QeYjeL8\"}"}', NULL), - (127076, '0xf8cad106a3bfbb056a07f651fae66c4a352bde18', 0, 1, '2024-05-05 05:50:05+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 490, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 147, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5JWBZZuhqKzLi7i4xDI6ln?si=UfOZ8tUBRuGunyPuvfl33A\"}"}', NULL), - (133433, '0xe00de1266616d47f960a12f3ddd33271de49b78e', 0, 1, '2024-05-05 06:20:53+00', 0, 2, '{"fid": 287750, "object": "user", "pfp_url": "https://i.imgur.com/17L41vu.gif", "profile": {"bio": {"text": "Digital Degen: My high-risk-seeking alter ego.\n\n👥🔵 Based People (Alpha + WL): twitter.com/i/communities/1781697487016759428", "mentioned_profiles": []}}, "username": "pixe1", "power_badge": true, "display_name": "▫️ ᴾⁱˣᵉ¹ 🔵", "active_status": "inactive", "verifications": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "follower_count": 603, "custody_address": "0xd7fc6444b0775535e9814b73a3812b351ae3d7d2", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vlonewex/emotional-fucked-up-feat-diecorre-unknooown?in=sc-playlists-eunon/sets/dance-energy\"}"}', NULL), - (140293, '0x4ca25b3326a2a9d6beda76223b295842d9e4675f', 0, 1, '2024-05-05 07:23:07+00', 0, 11, '{"fid": 290963, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/592df561-0353-4b9d-73b6-0615db1a3500/rectcrop3", "profile": {"bio": {"text": "Saman\nThe black man in the lonely city\nX @itssamanesi", "mentioned_profiles": []}}, "username": "amosaman", "power_badge": false, "display_name": "Amosaman 🎩", "active_status": "inactive", "verifications": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "follower_count": 1322, "custody_address": "0xd0b702784fc9d73ac1771d92e192695fb320148f", "following_count": 1400, "verified_addresses": {"eth_addresses": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "sol_addresses": ["3kbt8VCbeVFNMUJJ9bVtSvnthvG7yzdJUzNNuhWk2S9C"]}}', '{"{\"url\":\"https://soundcloud.com/hayedeh-music/sets/40-hayedeh-golden-songs-vol-1?si=4026df07c5484419a820b052743423f3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (133434, '0x87480f52721ffdeecec91854a059131c9f8e11b8', 0, 1, '2024-05-05 06:21:02+00', 0, 2, '{"fid": 287750, "object": "user", "pfp_url": "https://i.imgur.com/17L41vu.gif", "profile": {"bio": {"text": "Digital Degen: My high-risk-seeking alter ego.\n\n👥🔵 Based People (Alpha + WL): twitter.com/i/communities/1781697487016759428", "mentioned_profiles": []}}, "username": "pixe1", "power_badge": true, "display_name": "▫️ ᴾⁱˣᵉ¹ 🔵", "active_status": "inactive", "verifications": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "follower_count": 603, "custody_address": "0xd7fc6444b0775535e9814b73a3812b351ae3d7d2", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nastynickel/credit-card-debt?in=sc-playlists-eunon/sets/dance-energy\"}"}', NULL), - (1160126, '0x3f483c71f3f9ada00e29a8401142819f8a5d62c8', 2011, 1, '2024-05-08 07:00:36+00', 175, 299, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 254802, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 326, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/33below/33-below-presents-pusher\"}"}', 'sonata'), - (295658, '0x58bf779f7dce2d411470eb188bd3604b6adbd30e', 0, 1, '2024-05-05 20:11:18+00', 0, 2, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1128, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/3AakcP03TrRgFC2sLBtKi2?si=EWXcroihQPiMjfMAAEsDwQ&context=spotify%3Asearch%3Atami%2Bpep%2Blove\"}"}', NULL), - (130638, '0x9ba738866e5c9510e72975e6cb9fee6ca03b87c1', 0, 1, '2024-05-05 06:12:25+00', 0, 2, '{"fid": 18274, "object": "user", "pfp_url": "https://i.imgur.com/v4NDt8y.jpg", "profile": {"bio": {"text": "OG Farcaster | Twitter: https://twitter.com/xCuongisreal", "mentioned_profiles": []}}, "username": "cuongisreal", "power_badge": false, "display_name": "Cuongisreal 🎩", "active_status": "inactive", "verifications": ["0x265f5a9b3181ef516d755cb890a24a98e7d641ce"], "follower_count": 953, "custody_address": "0x0779bff9da3c1adab9f8bef35c18d98110feb3a0", "following_count": 122, "verified_addresses": {"eth_addresses": ["0x265f5a9b3181ef516d755cb890a24a98e7d641ce"], "sol_addresses": ["8LU28ejuYbJGrFQ1o7uX3CZEiLdHAbJbUbFs4aN1G8qk"]}}', '{"{\"url\":\"https://soundcloud.com/discover/sets/personalized-tracks::ng-c-c-ng-398520465:768951619\"}"}', NULL), - (1171198, '0xf2f64d6b780f33340c1b708f63b0cb15b4d1f9dc', 1000, 1, '2024-05-14 07:27:57+00', 0, 9, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 510, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 186, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4qC5yTM0EFqNYzluSsi2RO?si=a102a0f4875a4c69\"}"}', NULL), - (136764, '0xe1a9326be820a0080423cc9c8ed7cdb4c4db4e72', 0, 1, '2024-05-05 06:30:19+00', 0, 3, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 \nhost of /airdropkr 하꼬채널입니다 \naddicted to listening music", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 432, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3pRCHHfwYNVCOjWSrkGNw1?si=f61d8c5ce0e24f18\"}"}', NULL), - (139384, '0x34bce4bea25a92a53c592b87e30ad07bf0016980', 0, 1, '2024-05-05 07:01:26+00', 0, 0, '{"fid": 515330, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e84ff39-d17d-48a2-082c-8f75c6ef3d00/original", "profile": {"bio": {"text": "A player, even if he is not a player, remains a player©", "mentioned_profiles": []}}, "username": "!515330", "power_badge": false, "display_name": "Andrii", "active_status": "inactive", "verifications": ["0x8a140098bdbf48f6c7e2ed9fa41221408fb61d48"], "follower_count": 65, "custody_address": "0x4fc6a0a7c1e4ed78e16b578630b0c8429222ba96", "following_count": 142, "verified_addresses": {"eth_addresses": ["0x8a140098bdbf48f6c7e2ed9fa41221408fb61d48"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x8a140098bdbf48f6c7e2ed9fa41221408fb61d48\"}"}', NULL), - (203627, '0x3c2a69cc99cfe46308dd9dbce173b530f576d68a', 0, 1, '2024-05-05 12:42:57+00', 0, 0, '{"fid": 496665, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQLfrGWJ1KXBP5tPNrEhSQiBYGpzdCvy6DmgLxfwMVrJj?filename=.jpg", "profile": {"bio": {"text": "NewjeanSNKRS page", "mentioned_profiles": []}}, "username": "ruvv", "power_badge": false, "display_name": "NewjeanSNKRS", "active_status": "inactive", "verifications": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "follower_count": 1296, "custody_address": "0xfed77a68bf6da88aa0b78e904820451ebaecfc94", "following_count": 2174, "verified_addresses": {"eth_addresses": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VMD4ddqzEXwiGaGQA\"}"}', NULL), - (133429, '0x18cc97b18e01a01282c55cdf81d9170b3c2c85a9', 0, 1, '2024-05-05 06:20:13+00', 0, 4, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/heres-to-you?referral_source=link\"}"}', NULL), - (30791, '0x7799093df1b65fe3587e0913d320569e03106650', 11869, 1, '2024-05-04 21:42:32+00', 63, 25, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2916, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 264, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dyl/gm\"}"}', NULL), - (127366, '0xdb1037ff342c8d122b0f1d949143bcc7103aec4f', 0, 1, '2024-05-05 05:50:55+00', 0, 3, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1414, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eY1xg75bScxU4Shp6\"}"}', NULL), - (139552, '0xd96bc9477754fd1bb27c3c80cee6fe1bcd714b17', 0, 1, '2024-05-05 07:04:11+00', 0, 4, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 619, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 733, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/whakfld0d0d098/iu-love-wins-all?si=19a899b12bf84722aea100c6a1f4f952&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (133435, '0xfe74e7e10cbc09cee304c68e6b7269ce16f9e375', 0, 1, '2024-05-05 06:20:49+00', 0, 1, '{"fid": 287750, "object": "user", "pfp_url": "https://i.imgur.com/17L41vu.gif", "profile": {"bio": {"text": "Digital Degen: My high-risk-seeking alter ego.\n\n👥🔵 Based People (Alpha + WL): twitter.com/i/communities/1781697487016759428", "mentioned_profiles": []}}, "username": "pixe1", "power_badge": true, "display_name": "▫️ ᴾⁱˣᵉ¹ 🔵", "active_status": "inactive", "verifications": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "follower_count": 603, "custody_address": "0xd7fc6444b0775535e9814b73a3812b351ae3d7d2", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nemeryfonkproducer/shesaygoodbye?in=sc-playlists-eunon/sets/dance-energy\"}"}', NULL), - (167221, '0xde73d14145f3c398f6f0c5a0b116242aa3273d6c', 0, 1, '2024-05-05 10:07:28+00', 0, 0, '{"fid": 427338, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6cb8340a-2389-4f3b-bd9c-e60d55442d00/rectcrop3", "profile": {"bio": {"text": "Crypto is full of opportunities🐋", "mentioned_profiles": []}}, "username": "pezhi", "power_badge": false, "display_name": "Fury🍖🎩🔮", "active_status": "inactive", "verifications": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "follower_count": 660, "custody_address": "0xb2f39486457bd1831af3b50c1367bbdff9c8770a", "following_count": 1110, "verified_addresses": {"eth_addresses": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nlechoppa/nle-choppa-pistol-paccin-feat?si=6140fcd19d6a4f57bec43754429ba988&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (267, '0xa662176c5283adea92b8102ed11d73ef669cb47b', 1140, 1, '2024-05-01 15:19:16+00', 2, 19, '{"fid": 12871, "object": "user", "pfp_url": "https://i.imgur.com/qhh2olT.jpg", "profile": {"bio": {"text": "Writer at Invest in Music, Artist Relations at Sound.xyz, Music business student at Syracuse University’s Bandier Program", "mentioned_profiles": []}}, "username": "divesteamike", "power_badge": true, "display_name": "Michael DiVestea", "active_status": "inactive", "verifications": ["0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050"], "follower_count": 175, "custody_address": "0x96dbff07e0cc5f64047647a7183e3564c5df4f40", "following_count": 238, "verified_addresses": {"eth_addresses": ["0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050"], "sol_addresses": []}}', '{"{\"url\":\"http://newsletter.sound.xyz\"}"}', NULL), - (140102, '0xb261a0fb1a95758784f318c5abce9d73834a1924', 0, 1, '2024-05-05 07:20:07+00', 0, 1, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1090, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 597, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha viviz ♡ untie de roxy en #SoundCloud https://on.soundcloud.com/hcBw5\"}"}', NULL), - (140331, '0xa10ac614fcc42b0e2e10204d551e9fb118b61894', 0, 1, '2024-05-05 07:24:51+00', 0, 1, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1090, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 597, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha TIPSY (BONUS TRACK) de MISS LUXURY en #SoundCloud https://on.soundcloud.com/8gBCA\"}"}', NULL), - (129759, '0x7d9f149a342495e16a002c8f32869d5ab97dc3a1', 0, 1, '2024-05-05 06:10:35+00', 0, 1, '{"fid": 503095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3572045-464e-4732-c589-ede8161fda00/original", "profile": {"bio": {"text": "미러미러미러츙\nミラーチューン\n에드작중독말기환자 \nhost of /airdropkr 하꼬채널입니다 \naddicted to listening music", "mentioned_profiles": []}}, "username": "mirrorrevive", "power_badge": false, "display_name": "mirror ミラー", "active_status": "inactive", "verifications": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "follower_count": 429, "custody_address": "0x7383b813d3cf345683440249076d0557f6c025a7", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1mWN1USPKg632qQXG9sfDL?si=0912272b87c14d00\"}"}', NULL), - (139609, '0x5a60771c3bd4d75cfbdb26522ba8bc18586e7fc3', 0, 1, '2024-05-05 07:06:01+00', 0, 0, '{"fid": 394782, "object": "user", "pfp_url": "https://i.imgur.com/U8oOiB9.jpg", "profile": {"bio": {"text": "Bitcoin is the thing", "mentioned_profiles": []}}, "username": "bome", "power_badge": false, "display_name": "Bome", "active_status": "inactive", "verifications": ["0x6c7c0d4b7e3fa423cb6e04245011b967d21ea799"], "follower_count": 5, "custody_address": "0x3231261aa2dde6b4c036fa74a41b8d964650a140", "following_count": 71, "verified_addresses": {"eth_addresses": ["0x6c7c0d4b7e3fa423cb6e04245011b967d21ea799"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yfpUhnejbyeK6r6K9\"}"}', NULL), - (152632, '0xc545b05b64464d0d2d0537b4e1d2ff4d4d5f6152', 0, 1, '2024-05-05 08:58:07+00', 0, 1, '{"fid": 500879, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c247a503-bd73-489c-e499-3c70466d8a00/rectcrop3", "profile": {"bio": {"text": "다시 시작합니다!!\nI love son7\nKorea power🙇‍♂️", "mentioned_profiles": []}}, "username": "son7", "power_badge": false, "display_name": "SON.7.", "active_status": "inactive", "verifications": ["0xb3c22b56dbf97c2c39cdc09c71ccf1c6cf4ca041"], "follower_count": 1414, "custody_address": "0x9eb2b8d033a6ed033aca285dcbdbc3d96ce037f6", "following_count": 1537, "verified_addresses": {"eth_addresses": ["0xb3c22b56dbf97c2c39cdc09c71ccf1c6cf4ca041"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8SG2yEUGWg1xA3Mp9\"}"}', NULL), - (128060, '0x783616f320e09b9462fe3ba177a11f60b7b65958', 0, 1, '2024-05-05 06:00:58+00', 0, 4, '{"fid": 191780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a05cdc-baf0-4063-b7cf-f226e4b77d00/original", "profile": {"bio": {"text": "👋 creative coder and genart wannabe http://deca.art/agrimony | ex contributor @airswap", "mentioned_profiles": []}}, "username": "agrimony", "power_badge": true, "display_name": "agrimony↑🎩 q/tips", "active_status": "inactive", "verifications": ["0xb152df6b3646d04a3232821778277049ae21bb99", "0xdb3ec7b16fd60fb4fdb58a438bd8af57d8d3a91c"], "follower_count": 1995, "custody_address": "0xd8d373a3648a19e1c38ed765db820e907bb3ab4a", "following_count": 673, "verified_addresses": {"eth_addresses": ["0xb152df6b3646d04a3232821778277049ae21bb99", "0xdb3ec7b16fd60fb4fdb58a438bd8af57d8d3a91c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral_source=link\"}"}', NULL), - (167216, '0x95b81a168b23eef38961991d87ea2ebc47832baa', 0, 1, '2024-05-05 10:06:54+00', 0, 0, '{"fid": 427338, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6cb8340a-2389-4f3b-bd9c-e60d55442d00/rectcrop3", "profile": {"bio": {"text": "Crypto is full of opportunities🐋", "mentioned_profiles": []}}, "username": "pezhi", "power_badge": false, "display_name": "Fury🍖🎩🔮", "active_status": "inactive", "verifications": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "follower_count": 660, "custody_address": "0xb2f39486457bd1831af3b50c1367bbdff9c8770a", "following_count": 1110, "verified_addresses": {"eth_addresses": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nlechoppa/nle-choppa-pistol-paccin-feat?si=6140fcd19d6a4f57bec43754429ba988&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (140332, '0x1993ceeda9a9ff1010b9bc845a6b3dbe7a6e2b53', 0, 1, '2024-05-05 07:24:48+00', 0, 0, '{"fid": 7096, "object": "user", "pfp_url": "https://i.imgur.com/st0medD.png", "profile": {"bio": {"text": "Artist, Graphic Designer, Pixel Tinkerer.", "mentioned_profiles": []}}, "username": "blank", "power_badge": false, "display_name": "Cliff Blank", "active_status": "inactive", "verifications": ["0xd1898665a01a91ac10bd2c6cb1899336df34ac33"], "follower_count": 197, "custody_address": "0x87f8d8c5f62f13daf110f7ca4b2af232aab51bf0", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xd1898665a01a91ac10bd2c6cb1899336df34ac33"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EZ4oTMpK8BGLA8Xy7\"}"}', NULL), - (1172890, '0xcbfc3c56b034fdeb3dff77a962fb6e5f32041192', 3020, 1, '2024-05-14 19:48:45+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 421, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6ztI9zfPNMhocBJcXbeEqt?si=t-ZtZsohSEObPCMwHw_Y6Q\"}"}', NULL), - (140789, '0x185eb15b332231a1ec0e5d5686fa3b3744f0fe2f', 0, 1, '2024-05-05 07:34:41+00', 0, 1, '{"fid": 440299, "object": "user", "pfp_url": "https://i.imgur.com/PuZtmZr.jpg", "profile": {"bio": {"text": "🍀 All we have is good luck 🍀", "mentioned_profiles": []}}, "username": "small-potato", "power_badge": false, "display_name": "Smallpotato🎩🍖", "active_status": "inactive", "verifications": ["0xed8bd02dffd1e1f39757d3331effcc514a56f9a9"], "follower_count": 2219, "custody_address": "0x20e33be64f46e1defdd47c5906cfd7f8770a79a6", "following_count": 1859, "verified_addresses": {"eth_addresses": ["0xed8bd02dffd1e1f39757d3331effcc514a56f9a9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eZsy3Jt2quGk2kjt8\"}"}', NULL), - (139672, '0x4974065f2e7b072f04a7931f98a4c1d4a723731b', 0, 1, '2024-05-05 07:07:23+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mN6HBdcvMpJRK7ns6\"}"}', NULL), - (127365, '0xbf4ae239cabc1b962d9d96e353b2600649fe06ba', 0, 1, '2024-05-05 05:51:44+00', 0, 0, '{"fid": 301863, "object": "user", "pfp_url": "https://i.imgur.com/lStGPFz.gif", "profile": {"bio": {"text": "Noun Enthusiast", "mentioned_profiles": []}}, "username": "enzobase", "power_badge": false, "display_name": "enciodas 🎩", "active_status": "inactive", "verifications": ["0x1ad4e5802aa0172d46ecadd97fab8470c5bd4524"], "follower_count": 604, "custody_address": "0x7c6244512b22e943bd0aef54a9b02f6c7f3bd406", "following_count": 1156, "verified_addresses": {"eth_addresses": ["0x1ad4e5802aa0172d46ecadd97fab8470c5bd4524"], "sol_addresses": ["94CwPCKQyVxHZrUefrgjrBYkdUWsQ2PaqRNZZbmqLLMX"]}}', '{"{\"url\":\"https://open.spotify.com/track/0JWpbl3Ppr71ONy6VDP5vu?si=EguEpNv8R6aPKCoI_KpqBg\"}"}', NULL), - (131289, '0xd04456e32ed0782e7e7226797aca227e516bfed5', 0, 1, '2024-05-05 06:13:05+00', 0, 0, '{"fid": 290963, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/592df561-0353-4b9d-73b6-0615db1a3500/rectcrop3", "profile": {"bio": {"text": "Saman\nThe black man in the lonely city\nX @itssamanesi", "mentioned_profiles": []}}, "username": "amosaman", "power_badge": false, "display_name": "Amosaman 🎩", "active_status": "inactive", "verifications": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "follower_count": 1322, "custody_address": "0xd0b702784fc9d73ac1771d92e192695fb320148f", "following_count": 1398, "verified_addresses": {"eth_addresses": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "sol_addresses": ["3kbt8VCbeVFNMUJJ9bVtSvnthvG7yzdJUzNNuhWk2S9C"]}}', '{"{\"url\":\"https://soundcloud.com/vgkey464/wvnouiam45kp?si=225fd9862e104bc0a0632553fe5974be&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (124315, '0x68139517aed88c4b9d89ed4fc46b4a6c2054b2af', 0, 1, '2024-05-05 05:20:17+00', 0, 0, '{"fid": 9318, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmPASmu4tqbgwuceqWtHbEZTrn24zsva1NDBxpfzEjVpQR/5451.png", "profile": {"bio": {"text": "subtraction speculation visualization\nHYPERPEOPLE & /dark-ops", "mentioned_profiles": []}}, "username": "catra.eth", "power_badge": true, "display_name": "catra", "active_status": "inactive", "verifications": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "follower_count": 713, "custody_address": "0xc656b9dc4fc21cb0a01d3efddb8a68c123ddc31b", "following_count": 179, "verified_addresses": {"eth_addresses": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "sol_addresses": ["DFqgM6sTHJknZ2NDPWA3PSFCeEEASZeLFyg6JWNaLcr1", "AKT6jmnPAvvKPiFNwsrLAdb8hMpHADWV5fr6TsGiNB7c"]}}', '{"{\"url\":\"https://soundcloud.com/gabe-gurnsey/you-can-the-hacker-remix-official?si=73a7db12a3e14a5ebe4540298f97e816&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (131293, '0x471f47bed3c6b6ccbf41516c8eb30dd65a9c703a', 0, 1, '2024-05-05 06:13:27+00', 0, 4, '{"fid": 318447, "object": "user", "pfp_url": "https://i.imgur.com/2s11bkG.jpg", "profile": {"bio": {"text": "Music, Literacy, Sport NFTs | 🐈 /catwalk", "mentioned_profiles": []}}, "username": "plantsnft", "power_badge": true, "display_name": "Plants ", "active_status": "inactive", "verifications": ["0x91942026918fd219c6b62f739c4dab80dd6673b6"], "follower_count": 825, "custody_address": "0x95212b422d5f60128ecd746cc9e0a5cd66014c81", "following_count": 367, "verified_addresses": {"eth_addresses": ["0x91942026918fd219c6b62f739c4dab80dd6673b6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/offrami/wasting-my-time-with-you?referral_source=link\"}"}', NULL), - (134163, '0xeec5e56b5ed54209fcade8d134ab948b48e60bb5', 0, 1, '2024-05-05 06:22:07+00', 0, 0, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aRqew\"}"}', NULL), - (140489, '0xdf4c32ddafbfb344826bdc4a4c4117cec186447e', 0, 1, '2024-05-05 07:28:16+00', 0, 0, '{"fid": 508188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/624823aa-7d8a-48f1-d11c-233b4c7ad400/rectcrop3", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 853, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 877, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/songsthatarentonscbackup/frank-ocean-lost?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (140788, '0xe9d6da7e49f7eacbff19e9d4b8cbdc1bc3f3b96b', 0, 1, '2024-05-05 07:34:34+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1113, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zKe9LuiPuQWtYWPHA\"}"}', NULL), - (140776, '0xd3ae217ce19e4f8d66e8a4194776ea684f54b9e1', 0, 1, '2024-05-05 07:34:44+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5GdoVWihyGawpkgd8Y9ydx?si=PW1OEvKTQiGZ9G5gf-78Zw\"}"}', NULL), - (153024, '0xaf0ff055bedba057bad734694b04fd05c397ceac', 0, 1, '2024-05-05 08:58:56+00', 0, 1, '{"fid": 9587, "object": "user", "pfp_url": "https://i.imgur.com/NvMW5xr.gif", "profile": {"bio": {"text": "Spaceman, software engineer 🚀", "mentioned_profiles": []}}, "username": "1damer", "power_badge": false, "display_name": "Daniil 🔄🎩🐲🐢", "active_status": "inactive", "verifications": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "follower_count": 267, "custody_address": "0x6b5ad0b9a447d33e78b25017b7540a0d2723dc4a", "following_count": 566, "verified_addresses": {"eth_addresses": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t_damer/nimff-sinth-city\"}"}', NULL), - (156856, '0x1c078777b43eb491dfb6993446721edd90bc8307', 0, 1, '2024-05-05 09:19:27+00', 0, 4, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2619, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3109, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xjosySCzYB3EC13A9\"}"}', NULL), - (168452, '0x23c60723a439d9bebde2addda7e00c09b2d7d10c', 0, 1, '2024-05-05 10:11:21+00', 0, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1862, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/u3UfDFevRSaizaR9A\"}"}', NULL), - (172425, '0x6a5dfa6411b6efce50da4bd24086c5649718a25c', 0, 1, '2024-05-05 10:29:20+00', 0, 0, '{"fid": 373065, "object": "user", "pfp_url": "https://i.imgur.com/CiWzZGw.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "osazzzz", "power_badge": false, "display_name": "Osazzzz", "active_status": "inactive", "verifications": ["0xe533f15a1e690d312ddc59e6f3d23f8e5af72a39"], "follower_count": 12, "custody_address": "0x7f1dcdb5adbcce0e19e65ed0e3f65b6c4ea7986e", "following_count": 84, "verified_addresses": {"eth_addresses": ["0xe533f15a1e690d312ddc59e6f3d23f8e5af72a39"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/32HYphoaaPlTaR7KzOXhp1?si=ow3IKlPdTUGz6Ih9TKzJGg&context=spotify%3Asearch\"}"}', NULL), - (172027, '0x0470aff3f1c4bb0cf04d049f9da16db74a8963d4', 0, 1, '2024-05-05 10:23:45+00', 0, 0, '{"fid": 418390, "object": "user", "pfp_url": "https://i.imgur.com/jxBCQEJ.jpg", "profile": {"bio": {"text": "Alfa Frens channel 💖 알파프렌 구독 좋아요 💖\nhttps://www.alfafrens.com/channel/0x13ec875cda512d6644f48f7f7aaddb1026ce77de", "mentioned_profiles": []}}, "username": "aigirls", "power_badge": false, "display_name": "Ai Girls", "active_status": "inactive", "verifications": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "follower_count": 1341, "custody_address": "0xbc0b95ea996a84fc9956e96e598d305a9261964d", "following_count": 1695, "verified_addresses": {"eth_addresses": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alanwalker/alan-walker-peder-elias-putri-ariani-who-i-am?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (157098, '0x8c12c210c1fc946b832d38299f4148594857e4c3', 0, 1, '2024-05-05 09:21:08+00', 0, 2, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1120, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 925, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qGwfKhfrZhnBoBug9\"}"}', NULL), - (153023, '0x113a7099a7fe955ea16027db065d2da356005ffa', 0, 1, '2024-05-05 08:58:41+00', 0, 1, '{"fid": 436436, "object": "user", "pfp_url": "https://i.imgur.com/Y2x8hKp.jpg", "profile": {"bio": {"text": "Crypto. Geopolitics. Music. Travel. Tech.", "mentioned_profiles": []}}, "username": "onedayvk.eth", "power_badge": true, "display_name": "Oneday", "active_status": "inactive", "verifications": ["0x35a9a4fede2f889e3e2d8529722a233b7a6afea6"], "follower_count": 595, "custody_address": "0xd3d7aa87c93a1f0b7fa19c961873e58dff96b369", "following_count": 378, "verified_addresses": {"eth_addresses": ["0x35a9a4fede2f889e3e2d8529722a233b7a6afea6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=19da46c5aacb4d0d\"}"}', NULL), - (172369, '0x7afbea54d88b3e6c3d42cf7bd803c1bf8185a1ca', 0, 1, '2024-05-05 10:26:59+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"Listen to DAY6 - Love me or Leave me, Day And Night (해와 달처럼), Tick Tock by L2Share♫103 on #SoundCloud https://on.soundcloud.com/WPcEq\"}"}', NULL), - (140800, '0x674bde52d3617baef51e332c6aac3adb1f89d7e9', 0, 1, '2024-05-05 07:35:30+00', 0, 2, '{"fid": 293005, "object": "user", "pfp_url": "https://i.imgur.com/R0AWqSE.jpg", "profile": {"bio": {"text": "Reza", "mentioned_profiles": []}}, "username": "reza369", "power_badge": false, "display_name": "Reza 🎩🔵", "active_status": "inactive", "verifications": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "follower_count": 1577, "custody_address": "0xd16198f8af1e12a4987c19c9ba2c917b60587334", "following_count": 2203, "verified_addresses": {"eth_addresses": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "sol_addresses": ["6SNzFa67id6q142zMBVPqDJSebvExGp7FUWewTnnnE2C"]}}', '{"{\"url\":\"https://on.soundcloud.com/NgAdpPeNF7Wv9H5UA\"}"}', NULL), - (172358, '0x1bffcfb000bdd6362a981300292895f1c78b1aef', 0, 1, '2024-05-05 10:27:58+00', 0, 0, '{"fid": 410074, "object": "user", "pfp_url": "https://i.imgur.com/JRp6X6L.jpg", "profile": {"bio": {"text": "In art we trust", "mentioned_profiles": []}}, "username": "mariuscarl", "power_badge": false, "display_name": "Mariuscarl Ene", "active_status": "inactive", "verifications": ["0xa0f6ce829aea4a96de3eeaa695ad61085dba5c82"], "follower_count": 89, "custody_address": "0x7187fdca2e145380a33bda1c48aea6df1a9e6e86", "following_count": 118, "verified_addresses": {"eth_addresses": ["0xa0f6ce829aea4a96de3eeaa695ad61085dba5c82"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6vTGqmvYh20pPb7X51gxVm\"}"}', NULL), - (181732, '0x1d0b30fddb9fec5b5ff4a88c56287551dc317ff0', 0, 1, '2024-05-05 11:48:49+00', 0, 3, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3492, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 474, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Sy21nE88qF6PT4H18\"}"}', NULL), - (233996, '0x8d2173c8fb2f1d985b1bda094cf95d92ef2ae688', 0, 1, '2024-05-05 13:43:14+00', 0, 2, '{"fid": 501220, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36aeee53-0310-43a8-8e51-d754393b3900/rectcrop3", "profile": {"bio": {"text": "일단 난 슈캐 / 무지개 거울을 좋아하는 흑화된 그무언가 / 봇처럼 댓글 달면 답방 안가유🙏 저도 성심성의껏 적을게요 / f4f / momo AI / catizen / nine chronicles / degen / fingerstyle / fork guitar / K-music", "mentioned_profiles": []}}, "username": "cryptochoni", "power_badge": false, "display_name": "crypto CAT", "active_status": "inactive", "verifications": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "follower_count": 1244, "custody_address": "0x926a7eacdc09e92f80875fccb62b9030c452022f", "following_count": 1496, "verified_addresses": {"eth_addresses": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2FSU1e3bTZUYnyHz7\"}"}', NULL), - (454769, '0x1476fe9fba74e71ffa4b104dab53eb1ef25ece61', 0, 1, '2024-05-06 06:49:59+00', 0, 0, '{"fid": 310768, "object": "user", "pfp_url": "https://i.imgur.com/J4W6y32.jpg", "profile": {"bio": {"text": " catlover 😎🦾🐈", "mentioned_profiles": []}}, "username": "phoenixarnold", "power_badge": false, "display_name": "phoenix 🎩 ", "active_status": "inactive", "verifications": ["0xbde65bfaec402d8e61490a3f81ae139d7b97760e"], "follower_count": 1468, "custody_address": "0x93be66a434d28db8090fc3533eb39b258e6fed3c", "following_count": 2360, "verified_addresses": {"eth_addresses": ["0xbde65bfaec402d8e61490a3f81ae139d7b97760e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tXHH1\"}"}', 'no-channel'), - (171036, '0x7c317cbe0fbe67593f7f13ee78418707848ff64c', 0, 1, '2024-05-05 10:18:51+00', 0, 0, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 188, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 171, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/etillusion/beggin?si=c6acba17e2df4185a7eb0f5b4c7016b8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (166034, '0x566471497078706a79a948f869ef3e68f2dce68c', 0, 1, '2024-05-05 10:00:51+00', 0, 0, '{"fid": 499468, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baca52c5-2b5b-4fdd-bab6-f554bcfb1300/original", "profile": {"bio": {"text": "Designer and Web3 Developer", "mentioned_profiles": []}}, "username": "yoonju", "power_badge": false, "display_name": "Yoon Ju", "active_status": "inactive", "verifications": ["0x2ff0fef5a2f4d4f803c15feacfa8c63df4bfbc8d"], "follower_count": 36, "custody_address": "0xcac0e18ebd1bb15e18b641272145bd88c252a208", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2ff0fef5a2f4d4f803c15feacfa8c63df4bfbc8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-idgaf-feat-yeat\"}"}', NULL), - (140799, '0x015b6a3b21aac35577ee6646547d7bd33c4963e4', 0, 1, '2024-05-05 07:36:12+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4rXLjWdF2ZZpXCVTfWcshS?si=443QDWEbToupX9fchQkOKw\"}"}', NULL), - (157099, '0xf4728fd236a98257811b7f65be638b4320553b42', 0, 1, '2024-05-05 09:21:31+00', 0, 3, '{"fid": 366072, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69b83a69-1f91-4701-3e27-1064b3daed00/rectcrop3", "profile": {"bio": {"text": "안녕하세요 :)💗", "mentioned_profiles": []}}, "username": "heeju", "power_badge": false, "display_name": "heeju🎩", "active_status": "inactive", "verifications": ["0x93c71908a4af260cd080533e2947b0fd5a7cc5dc"], "follower_count": 931, "custody_address": "0x0a0c7cfb6aa8a3dd0fc7230e78f04dcc5af08e07", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x93c71908a4af260cd080533e2947b0fd5a7cc5dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Hw98J4kqPvwS6UNG7\"}"}', NULL), - (172240, '0x1aa2eaa7670801cbd71ee7c322c42525ee7713b5', 0, 1, '2024-05-05 10:26:09+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"Listen to DAY6 - Love me or Leave me, Day And Night (해와 달처럼), Tick Tock by L2Share♫103 on #SoundCloud https://on.soundcloud.com/pVQVz\"}"}', NULL), - (168451, '0xdb09bbc950778dc92f629009a8082fd8a37dd226', 0, 1, '2024-05-05 10:12:03+00', 0, 0, '{"fid": 321145, "object": "user", "pfp_url": "https://i.imgur.com/cl4S95D.jpg", "profile": {"bio": {"text": "Gabriel Böing, also known as \"KÖI\", is an Artist, Direktor and DREAMER from São Paulo, Brazil. Founding member of /seedcomputer | on-chain since 2021.", "mentioned_profiles": []}}, "username": "koi555", "power_badge": false, "display_name": "Gabriel KÖI", "active_status": "inactive", "verifications": ["0xc8d159f9a0d7299ea37aaef081cd3384f86557ad"], "follower_count": 328, "custody_address": "0x3242c71875fbffd2f18a9bbd81a3418e8e5e9721", "following_count": 243, "verified_addresses": {"eth_addresses": ["0xc8d159f9a0d7299ea37aaef081cd3384f86557ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nagual555/nagual555-no-titles?si=2c9151392de944949964190dd1302540\"}"}', NULL), - (171044, '0x1614a949d8512e8882199e9e4ae9b1e2b4c1f055', 0, 1, '2024-05-05 10:18:26+00', 0, 4, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1150, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 558, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mzy2r\"}"}', NULL), - (140830, '0x0b126e7e1a54b69903632bb36fa329136eedc5f9', 0, 1, '2024-05-05 07:36:29+00', 0, 0, '{"fid": 377481, "object": "user", "pfp_url": "https://i.imgur.com/CIIJvV6.jpg", "profile": {"bio": {"text": "a coder who loves crypto", "mentioned_profiles": []}}, "username": "hatef18", "power_badge": false, "display_name": "Hatef", "active_status": "inactive", "verifications": ["0xb0f84d687565c42b4ee45b6fce2844a51002d0b7"], "follower_count": 524, "custody_address": "0x2de4fa327dcfc0676fc97bdf065139fd64dcfa62", "following_count": 393, "verified_addresses": {"eth_addresses": ["0xb0f84d687565c42b4ee45b6fce2844a51002d0b7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/19ri5\"}"}', NULL), - (1129330, '0x446b9b3d193eed192d6dbb146ac929e8d295dbd6', 0, 1, '2024-05-07 18:29:51+00', 10, 2, '{"fid": 14193, "object": "user", "pfp_url": "https://i.imgur.com/5hOVzWm.png", "profile": {"bio": {"text": "I make music and occasionally point & click adv. games.", "mentioned_profiles": []}}, "username": "r4cerx", "power_badge": false, "display_name": "r4cerx 🎩🐲", "active_status": "inactive", "verifications": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "follower_count": 193, "custody_address": "0x22bfce4279cd025af37dac0cdad95b74e606bf88", "following_count": 105, "verified_addresses": {"eth_addresses": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/r4cerx/i-think-theyre-coming\"}"}', NULL), - (140585, '0xb52ad23b6d20a30a98edc15e645d97383c56197c', 0, 1, '2024-05-05 07:31:08+00', 0, 0, '{"fid": 11004, "object": "user", "pfp_url": "https://i.imgur.com/5FGxCDj.jpg", "profile": {"bio": {"text": "Visual artist and Photographer📸 \nhttps://linktr.ee/pornsoup\n\n/pornsoup", "mentioned_profiles": []}}, "username": "pornsoup", "power_badge": true, "display_name": "Pornsoup 🎩🔵", "active_status": "inactive", "verifications": ["0x5b23c893ab99fa6d9ff3532d10a9019cae06383e"], "follower_count": 1751, "custody_address": "0x43d730b46f229ee038836482a6bf060766b4272f", "following_count": 279, "verified_addresses": {"eth_addresses": ["0x5b23c893ab99fa6d9ff3532d10a9019cae06383e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eDEbvKzc6WipcFmF7\"}"}', NULL), - (140783, '0x45ef598209710fa3ce7e5ef846e81841cf4cabbc', 0, 1, '2024-05-05 07:34:40+00', 0, 0, '{"fid": 500809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7861217-86ed-41d0-359e-391353cd6700/original", "profile": {"bio": {"text": "I love kpop", "mentioned_profiles": []}}, "username": "melon99", "power_badge": false, "display_name": "melon99", "active_status": "inactive", "verifications": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "follower_count": 852, "custody_address": "0xf0a460f01a1c2a8174d399bd3e423eeb8e9701b3", "following_count": 836, "verified_addresses": {"eth_addresses": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4gOwpU4kMZZNDWkoHYUj1Z?si=4c6f016376024e73\"}"}', NULL), - (140828, '0x3756e1896ef34f8d8984474726c9511e6fe4eadf', 0, 1, '2024-05-05 07:37:07+00', 0, 6, '{"fid": 500809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7861217-86ed-41d0-359e-391353cd6700/original", "profile": {"bio": {"text": "I love kpop", "mentioned_profiles": []}}, "username": "melon99", "power_badge": false, "display_name": "melon99", "active_status": "inactive", "verifications": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "follower_count": 852, "custody_address": "0xf0a460f01a1c2a8174d399bd3e423eeb8e9701b3", "following_count": 836, "verified_addresses": {"eth_addresses": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4gOwpU4kMZZNDWkoHYUj1Z?si=af42c86bfe744a1c\"}"}', NULL), - (140826, '0xc65c92b598077a2c9cfeb2bd64b6aab00e5de8d4', 0, 1, '2024-05-05 07:36:41+00', 0, 0, '{"fid": 293005, "object": "user", "pfp_url": "https://i.imgur.com/R0AWqSE.jpg", "profile": {"bio": {"text": "Reza", "mentioned_profiles": []}}, "username": "reza369", "power_badge": false, "display_name": "Reza 🎩🔵", "active_status": "inactive", "verifications": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "follower_count": 1577, "custody_address": "0xd16198f8af1e12a4987c19c9ba2c917b60587334", "following_count": 2203, "verified_addresses": {"eth_addresses": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "sol_addresses": ["6SNzFa67id6q142zMBVPqDJSebvExGp7FUWewTnnnE2C"]}}', '{"{\"url\":\"https://on.soundcloud.com/NgAdpPeNF7Wv9H5UA\"}"}', NULL), - (153510, '0xb6c6ff20d253257551cdb78b41e255704da10908', 0, 1, '2024-05-05 09:01:17+00', 0, 0, '{"fid": 404215, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cfc9af5-8575-451b-d271-361f49fd7e00/rectcrop3", "profile": {"bio": {"text": "Koreans Love Warpcast", "mentioned_profiles": []}}, "username": "kingco88", "power_badge": false, "display_name": "kimgo88", "active_status": "inactive", "verifications": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "follower_count": 2706, "custody_address": "0xe7dc0bb80e93b20b24e057257dd8004942001d22", "following_count": 2190, "verified_addresses": {"eth_addresses": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/casablancarecs/ladyhawke-black-white-blue?ref=clipboard&p=a&c=0&si=c97d9e2c300647deb159d3d0d7d163e7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (141025, '0x259e181b4e8a5203e5631c481da9a9bf92509466', 0, 1, '2024-05-05 07:41:13+00', 0, 0, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1241, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1113, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pR4Jd938Dj12VrRY7\"}"}', NULL), - (177935, '0x30302904e57ef1e4851c0f3d8ba8966a4d39176b', 0, 1, '2024-05-05 11:31:14+00', 0, 0, '{"fid": 453716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b820d6d7-e6f7-4390-7ba4-16b3f4ebf300/rectcrop3", "profile": {"bio": {"text": "Have a happy day!🥰", "mentioned_profiles": []}}, "username": "jay02", "power_badge": false, "display_name": "bella🎩🍖", "active_status": "inactive", "verifications": ["0xe936e7ab13cb8bec56e0099c098589a07815b7b1"], "follower_count": 2468, "custody_address": "0xf77795ecc7684c412bf047b0a95205a2b7baebc4", "following_count": 2604, "verified_addresses": {"eth_addresses": ["0xe936e7ab13cb8bec56e0099c098589a07815b7b1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3VvY2\"}"}', NULL), - (140965, '0xa36870a439a4076607bf8af7b4b4730c507e7065', 0, 1, '2024-05-05 07:39:12+00', 0, 1, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1090, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 597, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha Canserbero - Es Epico de Eljustincriollo en #SoundCloud https://on.soundcloud.com/a967D\"}"}', NULL), - (140486, '0x67821195f07ba2628947b99da33a6ceaf9946d48', 0, 1, '2024-05-05 07:28:30+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0VgkVdmE4gld66l8iyGjgx?si=Fyf2X2jWQUmZlGKAQVo-Sg\"}"}', NULL), - (157100, '0xfc9ff010563c3db00ef9f00bcc64d23d13be5008', 0, 1, '2024-05-05 09:20:34+00', 0, 6, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1549, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1257, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gwtgn1zw7mhQMG9E6\"}"}', NULL), - (140894, '0x6462953fc4fea0fdaab269a2dae0077c821eaecf', 0, 1, '2024-05-05 07:38:35+00', 0, 1, '{"fid": 499091, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d892d750-f391-476b-078f-cddc5278b500/rectcrop3", "profile": {"bio": {"text": "일상 & 코인", "mentioned_profiles": []}}, "username": "fuzzypaws", "power_badge": false, "display_name": "Fuzzypaws", "active_status": "inactive", "verifications": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "follower_count": 1222, "custody_address": "0x24b9ca359d7f4f1395e7d7b101e52b3f1784bcbb", "following_count": 1400, "verified_addresses": {"eth_addresses": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5sdQOyqq2IDhvmx2lHOpwd?si=fa62be1026574906\"}"}', NULL), - (157158, '0xb430694fff4018261877f6c65d5035edc41a5387', 0, 1, '2024-05-05 09:22:35+00', 0, 0, '{"fid": 504189, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed1b4641-5bb2-449d-73b2-b267ab6d6600/rectcrop3", "profile": {"bio": {"text": "I love warpcast & degen ", "mentioned_profiles": []}}, "username": "1pyung", "power_badge": false, "display_name": "south-korea", "active_status": "inactive", "verifications": ["0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4"], "follower_count": 2176, "custody_address": "0x7f2a66208597d64c54c7fd4d72c1e808bac1b481", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/greedy03/newjeans\"}"}', NULL), - (153511, '0xf7c0c4c3a506e4e39104554cb4bc2bf87868db59', 0, 1, '2024-05-05 09:01:28+00', 0, 2, '{"fid": 404215, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cfc9af5-8575-451b-d271-361f49fd7e00/rectcrop3", "profile": {"bio": {"text": "Koreans Love Warpcast", "mentioned_profiles": []}}, "username": "kingco88", "power_badge": false, "display_name": "kimgo88", "active_status": "inactive", "verifications": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "follower_count": 2706, "custody_address": "0xe7dc0bb80e93b20b24e057257dd8004942001d22", "following_count": 2190, "verified_addresses": {"eth_addresses": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/casablancarecs/ladyhawke-black-white-blue?ref=clipboard&p=a&c=0&si=c97d9e2c300647deb159d3d0d7d163e7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (168453, '0x51ec7cbe87108bf6a01e17bdbd904f1003065e81', 0, 1, '2024-05-05 10:10:41+00', 0, 1, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖💎🎶", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1203, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 807, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VmE6Pd4qsJr4KxSs8\"}"}', NULL), - (141026, '0x75a71d48ec7ec26c96ec3afb8b2dfac0a5c7eafd', 0, 1, '2024-05-05 07:40:44+00', 0, 3, '{"fid": 499091, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d892d750-f391-476b-078f-cddc5278b500/rectcrop3", "profile": {"bio": {"text": "일상 & 코인", "mentioned_profiles": []}}, "username": "fuzzypaws", "power_badge": false, "display_name": "Fuzzypaws", "active_status": "inactive", "verifications": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "follower_count": 1222, "custody_address": "0x24b9ca359d7f4f1395e7d7b101e52b3f1784bcbb", "following_count": 1400, "verified_addresses": {"eth_addresses": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/70MpbU4MxraaC9n0Z0QdNA?si=752c96d31e3645ab\"}"}', NULL), - (140903, '0x674c01ba3fdb75b48858d688dd84a37a7217434b', 0, 1, '2024-05-05 07:38:44+00', 0, 1, '{"fid": 506311, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7cafab0e-a961-47a7-fa4d-1aca4236a100/rectcrop3", "profile": {"bio": {"text": "F4f Au life ", "mentioned_profiles": []}}, "username": "totoro-", "power_badge": false, "display_name": "Totoro", "active_status": "inactive", "verifications": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "follower_count": 516, "custody_address": "0x3a6c6aaf81924bd0f76f9420131f7a2c4e7d5586", "following_count": 826, "verified_addresses": {"eth_addresses": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mak-han-ren/sg-wannabe-lalala?si=43daf388c0414a1f8824b2756f3921eb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (140964, '0xc930a800f746ca6785ed529e549a580c37c40c1c', 0, 1, '2024-05-05 07:39:29+00', 0, 1, '{"fid": 6227, "object": "user", "pfp_url": "https://i.imgur.com/o4IhCMy.jpg", "profile": {"bio": {"text": "hacker @ackee, building, noob dev, hosting @farconnect in /prague ☻ ekinci.xyz", "mentioned_profiles": []}}, "username": "ekinci.eth", "power_badge": true, "display_name": "Emre Ekinci @ Far(away)con", "active_status": "inactive", "verifications": ["0x5f57c686bdbc03242c8fa723b80f0a6cdea79546"], "follower_count": 21875, "custody_address": "0x35b92ea9c3819766ec1fff8ddecec69028b0ac42", "following_count": 1164, "verified_addresses": {"eth_addresses": ["0x5f57c686bdbc03242c8fa723b80f0a6cdea79546"], "sol_addresses": ["AtimKW3BMKukj8WWXZzwWAhmFCFmjLxgF8Nz6Gakdvnj"]}}', '{"{\"url\":\"https://m.soundcloud.com/tovelo/disco-tits\"}"}', NULL), - (157249, '0x7d2bf3b93163e0583b709a1e464a70b8fb22f9a3', 0, 1, '2024-05-05 09:24:52+00', 0, 5, '{"fid": 366072, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69b83a69-1f91-4701-3e27-1064b3daed00/rectcrop3", "profile": {"bio": {"text": "안녕하세요 :)💗", "mentioned_profiles": []}}, "username": "heeju", "power_badge": false, "display_name": "heeju🎩", "active_status": "inactive", "verifications": ["0x93c71908a4af260cd080533e2947b0fd5a7cc5dc"], "follower_count": 931, "custody_address": "0x0a0c7cfb6aa8a3dd0fc7230e78f04dcc5af08e07", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x93c71908a4af260cd080533e2947b0fd5a7cc5dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gVjpQravXfS68WqV6\"}"}', NULL), - (153512, '0x6918bd39f30cece0a33668ee56770fd9e12c4db8', 0, 1, '2024-05-05 09:01:25+00', 0, 3, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1549, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1257, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Su22XNyfm5GzKUip8\"}"}', NULL), - (159766, '0xa9873ea83fb9128472c71f5a8f6f442a0c1b1f89', 0, 1, '2024-05-05 09:42:55+00', 0, 1, '{"fid": 501931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6eea1270-1cc8-457a-c547-fa04d19a4900/rectcrop3", "profile": {"bio": {"text": "Hi :)", "mentioned_profiles": []}}, "username": "eeaa", "power_badge": false, "display_name": "eeaa", "active_status": "inactive", "verifications": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "follower_count": 566, "custody_address": "0xd525a5cfdee1efeaf43f7f19594c20f7f22d4bdf", "following_count": 472, "verified_addresses": {"eth_addresses": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/matthew-torres-360862052/alan-walker-the-drum?si=ef91f7db683941e68dde97736c5c427c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (157254, '0x1b0b8610b9980ec290268bcafa6635b103ad24d3', 0, 1, '2024-05-05 09:24:02+00', 0, 0, '{"fid": 406560, "object": "user", "pfp_url": "https://i.imgur.com/uG3M36P.jpg", "profile": {"bio": {"text": "Communication and community strategist.\n\nObsessed w all things (new) internet,creativity, regen movements and meaning-making systems", "mentioned_profiles": []}}, "username": "brunnicorsato", "power_badge": false, "display_name": "Brunni", "active_status": "inactive", "verifications": ["0x7513484d5f89c91846b0a71e0a9d2d1d71047510"], "follower_count": 20, "custody_address": "0x10a313c996c232d318ad0c56a526c3e2b0f8c4fa", "following_count": 44, "verified_addresses": {"eth_addresses": ["0x7513484d5f89c91846b0a71e0a9d2d1d71047510"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XzqA9zmRv6sZZ913A\"}"}', NULL), - (1173034, '0x7f008a6944d591a291ab29d4ce4dcc0bc273bddc', 1000, 1, '2024-05-14 23:07:44+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30727, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2E58X9ghSiCpjV7fs90WsC?si=69e1638410f64b3c\"}"}', NULL), - (165580, '0x70189b399e5e3cb731cb95f86ee2b1ee43c4ae2c', 0, 1, '2024-05-05 09:59:50+00', 0, 1, '{"fid": 12920, "object": "user", "pfp_url": "https://openseauserdata.com/files/fbcc5c494954cdd42ed7895ff1c13543.svg", "profile": {"bio": {"text": "Building @InterfaceDapp", "mentioned_profiles": []}}, "username": "xemniz", "power_badge": false, "display_name": "xemniz ", "active_status": "inactive", "verifications": ["0xaf794df9a83e1d0260d8d900f9a2b2e576c06aa9"], "follower_count": 24, "custody_address": "0x9e13052a0ea4dbf3d0762a222d9bd4709c1a8843", "following_count": 97, "verified_addresses": {"eth_addresses": ["0xaf794df9a83e1d0260d8d900f9a2b2e576c06aa9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/xemniz/baby-day?si=4a39e58da3ab40729d95fdaf7fe6824a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173053, '0xa1f8e6974740080c292b592d21a2cb51d800435f', 1000, 1, '2024-05-14 23:22:00+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30732, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/29pviOcwzX0rbMmHQu8gSJ?si=f7b339f39be14eb8\"}"}', NULL), - (166035, '0x3aa71c84f6aacc7e21f6c0a7e4f95d7afd4c7a08', 0, 1, '2024-05-05 10:00:55+00', 0, 0, '{"fid": 424774, "object": "user", "pfp_url": "https://i.imgur.com/hKlLOFJ.jpg", "profile": {"bio": {"text": "I am Japanese and would like to communicate with you all.\nAnime🍡, Manga📖, Art🎨, Trade💹, Flower🌸, Pokemon, ogiri\n▼father of 3 kids", "mentioned_profiles": []}}, "username": "kutakuta1001", "power_badge": false, "display_name": "kutakuta1001🍡💉", "active_status": "inactive", "verifications": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "follower_count": 1162, "custody_address": "0x815126572cd6e50d6dd08be2d5289d87f394e80e", "following_count": 1359, "verified_addresses": {"eth_addresses": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "sol_addresses": ["8vdRYGZvottLVRgUraBH2kikvLuaPypY7dweuBSon6BR"]}}', '{"{\"url\":\"https://soundcloud.com/calpal80833/01-yasunori-mitsuda-chrono-cross-soundtrack-disc-1-cause-chrono-cross-the-scar-of-time?si=9e0031a84a664f728a77958ab821a602&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (181874, '0xae4b696560ba073aaed5d76f21b7e9f83e04f29f', 0, 1, '2024-05-05 11:50:23+00', 0, 0, '{"fid": 19314, "object": "user", "pfp_url": "https://i.imgur.com/aHwAywG.jpg", "profile": {"bio": {"text": "plɹoʍ oʇdʎɹɔ ǝɥʇ ǝʌo˥", "mentioned_profiles": []}}, "username": "vahiddihav", "power_badge": false, "display_name": "ᵥₐₕᵢd 🎩", "active_status": "inactive", "verifications": ["0x91c5e8e9f6d6de4cd6d3b9e9176a8b13e31569f8"], "follower_count": 1187, "custody_address": "0x91c5e8e9f6d6de4cd6d3b9e9176a8b13e31569f8", "following_count": 1467, "verified_addresses": {"eth_addresses": ["0x91c5e8e9f6d6de4cd6d3b9e9176a8b13e31569f8"], "sol_addresses": ["MwydMrxR4xPsYiahau8zopqnD2T3T3B7atNh4u8GwEJ"]}}', '{"{\"url\":\"https://soundcloud.com/diplo/diplo-sturgill-simpson-dove?ref=clipboard&p=a&c=0&si=7c7d6e168c29466f9564634ac71dd051&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (142033, '0x33c077bfb4200b0b6f1cb0f2c4d1163c3bb5bb62', 0, 1, '2024-05-05 07:46:57+00', 0, 2, '{"fid": 377481, "object": "user", "pfp_url": "https://i.imgur.com/CIIJvV6.jpg", "profile": {"bio": {"text": "a coder who loves crypto", "mentioned_profiles": []}}, "username": "hatef18", "power_badge": false, "display_name": "Hatef", "active_status": "inactive", "verifications": ["0xb0f84d687565c42b4ee45b6fce2844a51002d0b7"], "follower_count": 524, "custody_address": "0x2de4fa327dcfc0676fc97bdf065139fd64dcfa62", "following_count": 393, "verified_addresses": {"eth_addresses": ["0xb0f84d687565c42b4ee45b6fce2844a51002d0b7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/19ri5\"}"}', NULL), - (141724, '0xb23476439bbfd43605ed67c99b5fa80039967295', 0, 1, '2024-05-05 07:42:46+00', 0, 10, '{"fid": 417423, "object": "user", "pfp_url": "https://i.imgur.com/oAhYMLl.jpg", "profile": {"bio": {"text": "SW Dev turned Musician, Crypto Trader, EW Analyst. Basically a degen!\n\n- substack: ivaavi.substack.com", "mentioned_profiles": []}}, "username": "ivaavi", "power_badge": false, "display_name": "Ivaavi🎩", "active_status": "inactive", "verifications": ["0x86646054f1d16749b7832d0f111df44cf4a0d33f"], "follower_count": 78, "custody_address": "0x97fbe5634dc97cde6813a1b7ca4ee362c5521660", "following_count": 131, "verified_addresses": {"eth_addresses": ["0x86646054f1d16749b7832d0f111df44cf4a0d33f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dwkDYBQ3aCLwwK2G9\"}"}', NULL), - (141483, '0x466746f1c76f9c4ba906e945f4cba05ee2ddbd6f', 0, 1, '2024-05-05 07:41:48+00', 0, 8, '{"fid": 417423, "object": "user", "pfp_url": "https://i.imgur.com/oAhYMLl.jpg", "profile": {"bio": {"text": "SW Dev turned Musician, Crypto Trader, EW Analyst. Basically a degen!\n\n- substack: ivaavi.substack.com", "mentioned_profiles": []}}, "username": "ivaavi", "power_badge": false, "display_name": "Ivaavi🎩", "active_status": "inactive", "verifications": ["0x86646054f1d16749b7832d0f111df44cf4a0d33f"], "follower_count": 81, "custody_address": "0x97fbe5634dc97cde6813a1b7ca4ee362c5521660", "following_count": 134, "verified_addresses": {"eth_addresses": ["0x86646054f1d16749b7832d0f111df44cf4a0d33f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivaavi/teriyan\"}"}', NULL), - (203628, '0x315e2784f55f24257a52d62f4074f8ce3020c174', 0, 1, '2024-05-05 12:43:08+00', 0, 2, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1311, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1269, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jay-advice/harry-potter-waltz-yule-ball-soundtrack-patrick-doyle?si=b1c78913fc46462f8c3c96424ae0ed72&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (141808, '0x607f9b333d153a7967c3b148167febd03055ce09', 0, 1, '2024-05-05 07:44:22+00', 0, 0, '{"fid": 384553, "object": "user", "pfp_url": "https://i.imgur.com/EstoTHx.jpg", "profile": {"bio": {"text": "Web3 and NFT world enthusiasm , digging the crypto world ,Mechanical engineer and cat lover", "mentioned_profiles": []}}, "username": "pyro0079", "power_badge": false, "display_name": "Aris🎩🔮🔵🍖", "active_status": "inactive", "verifications": ["0x011ccc1f1f25d2ed4d60506eed621ddbc4318e1a"], "follower_count": 930, "custody_address": "0x636bb19429065fc267280b9b7ea252a91b3e774b", "following_count": 1732, "verified_addresses": {"eth_addresses": ["0x011ccc1f1f25d2ed4d60506eed621ddbc4318e1a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ethan_bortnick/hide-n-seek?si=6af576cfb9ca4499b37586bbec252f65&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (153379, '0x3364a691a4a9c926c625303b8ebc96e7b226ef90', 0, 1, '2024-05-05 09:00:42+00', 0, 3, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1120, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 925, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1DyqEeM66j45YqGg9\"}"}', NULL), - (157270, '0x9cc0e1fa85d462d75d2cb7b237768387400f1feb', 100, 1, '2024-05-05 09:23:09+00', 10, 13, '{"fid": 504189, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed1b4641-5bb2-449d-73b2-b267ab6d6600/rectcrop3", "profile": {"bio": {"text": "I love warpcast & degen ", "mentioned_profiles": []}}, "username": "1pyung", "power_badge": false, "display_name": "south-korea", "active_status": "inactive", "verifications": ["0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4"], "follower_count": 2176, "custody_address": "0x7f2a66208597d64c54c7fd4d72c1e808bac1b481", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/greedy03/newjeans\"}"}', NULL), - (140790, '0xc7c5fc6596c873828c51ddbaba7f54df172130a7', 0, 1, '2024-05-05 07:34:40+00', 0, 2, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b", "0x7db223a235b08629b0ed0ead6bab25b12982c79b", "0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 217, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 634, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b", "0x7db223a235b08629b0ed0ead6bab25b12982c79b", "0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-793543988-785076913/jvke-golden-hour?si=aad9bbf14a7a48b889397b56f13a0138&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (141812, '0x246190ee548f7243b578f9ae1909387d11f0c35f', 0, 1, '2024-05-05 07:44:27+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1117, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 917, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UY735vsaSDDhrDCy5\"}"}', NULL), - (142185, '0xc2f6f60ca9c93db08f791f3106b1525dae4feb30', 0, 1, '2024-05-05 07:47:45+00', 0, 3, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1117, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 917, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/w6nVhjsNa1eCe24U8\"}"}', NULL), - (172430, '0x424c7129ed47bb1967eda8252345ea78e585ed42', 0, 1, '2024-05-05 10:28:44+00', 0, 1, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/day6-love-me-or-leave-me-day-and-night-tick-tock?si=b947e0fd14564942af1589c19001e1ee&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (141726, '0xdb0ef0b5cc9e57bb477249d493cf2336a53789a5', 0, 1, '2024-05-05 07:43:00+00', 0, 12, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1241, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1113, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pR4Jd938Dj12VrRY7\"}"}', NULL), - (140771, '0x9d0b3e46234f894dce9ffa3a6d9dc5e58203a62f', 0, 1, '2024-05-05 07:34:31+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5GdoVWihyGawpkgd8Y9ydx?si=PW1OEvKTQiGZ9G5gf-78Zw\"}"}', NULL), - (141725, '0x85947234088614b2cdc294b2e6b187ddc2fa497b', 0, 1, '2024-05-05 07:43:21+00', 0, 1, '{"fid": 417423, "object": "user", "pfp_url": "https://i.imgur.com/oAhYMLl.jpg", "profile": {"bio": {"text": "SW Dev turned Musician, Crypto Trader, EW Analyst. Basically a degen!\n\n- substack: ivaavi.substack.com", "mentioned_profiles": []}}, "username": "ivaavi", "power_badge": false, "display_name": "Ivaavi🎩", "active_status": "inactive", "verifications": ["0x86646054f1d16749b7832d0f111df44cf4a0d33f"], "follower_count": 78, "custody_address": "0x97fbe5634dc97cde6813a1b7ca4ee362c5521660", "following_count": 131, "verified_addresses": {"eth_addresses": ["0x86646054f1d16749b7832d0f111df44cf4a0d33f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AV1sRXBPJNoZZsMZ9\"}"}', NULL), - (142450, '0x0ab1b37d9b173cb16755d631e689ba0a5d6c952c', 0, 1, '2024-05-05 07:52:34+00', 0, 4, '{"fid": 339174, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3d4bd97d-c889-4e90-4f98-fcfed4497600/original", "profile": {"bio": {"text": "Fun of crypto / /replyguys / Frontend dev 👨‍💻", "mentioned_profiles": []}}, "username": "wizzrdx", "power_badge": true, "display_name": "Wizzrd 🧙‍♂️🎩", "active_status": "inactive", "verifications": ["0x14af1e216f51704f5bbec7a30b37a9fb65f794c3"], "follower_count": 865, "custody_address": "0x654ee0b25186cdd4c7e38f5f9bdc413d52364541", "following_count": 154, "verified_addresses": {"eth_addresses": ["0x14af1e216f51704f5bbec7a30b37a9fb65f794c3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3ia3dJETSOllPsv3LJkE35?si=j1JHVgLWRd6h-Lp3Drt9SQ\"}"}', NULL), - (283294, '0x4e93f3a85cfcf0dbe5da5e085fe714971b0fed28', 0, 1, '2024-05-05 18:24:43+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-278590329/blackpink-forever-young-3d?si=99304b3f5dc842b79ad6abedc2d3fe2e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (142315, '0xf03c48c048b5f83af983f85a9d7463d90b3f44aa', 0, 1, '2024-05-05 07:50:49+00', 0, 0, '{"fid": 497740, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a0acfdf-c4e9-4e41-b673-da926c664500/rectcrop3", "profile": {"bio": {"text": "Love music, animals, NFT and Crypto", "mentioned_profiles": []}}, "username": "candy7", "power_badge": false, "display_name": "Candy", "active_status": "inactive", "verifications": ["0x3e0d2a8c7eb98a1c8ff3e2a5b4a6e4c0f5363bd5"], "follower_count": 506, "custody_address": "0x74f6bcd837b3c0cb148b641ae6cddaa9267b5a53", "following_count": 724, "verified_addresses": {"eth_addresses": ["0x3e0d2a8c7eb98a1c8ff3e2a5b4a6e4c0f5363bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SjmBv9Pu8SMTngQ17\"}"}', NULL), - (159764, '0x807df4480dedad5e9afccb5bc5099eb7bdef4074', 0, 1, '2024-05-05 09:43:00+00', 0, 4, '{"fid": 323021, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiglu6425tzwqqzolnnoqimdal7dg37auj5ikdvvjnrzlm2i4phd2u", "profile": {"bio": {"text": "Base ARMY\nIm trying to be useful here \nI love web3 evolution ", "mentioned_profiles": []}}, "username": "aryanshah", "power_badge": false, "display_name": "Aryan🎩🔵🍕", "active_status": "inactive", "verifications": ["0x5c70940b0f95609e9f82908f778136b46a7f3e22"], "follower_count": 2291, "custody_address": "0x0bb3b646762351798cd096a59130a6d67961d3c4", "following_count": 3100, "verified_addresses": {"eth_addresses": ["0x5c70940b0f95609e9f82908f778136b46a7f3e22"], "sol_addresses": ["24MC1gFU7k4cmWLnuDL3Qj7HJomk8AnWsYDhUFSZLGrn"]}}', '{"{\"url\":\"Listen to فتانه- بذارین برم من by naderkoleyni on #SoundCloud https://soundcloud.com/user-738265363/wwq6hbqsubin?ref=clipboard&p=a&c=0&si=9de9c9d4e1fa4eacbd1641d0769abad7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (144174, '0x2b3988a260ac6105faa341188ba0f1673b818853', 0, 1, '2024-05-05 08:05:00+00', 0, 2, '{"fid": 389058, "object": "user", "pfp_url": "https://arweave.net/YdbnHdl4jE_7C20USWwun1W-zZ6RIpbJ9ukK94mHFLk/", "profile": {"bio": {"text": "IT technician\nEnglish teacher\nkickboxer\nfootball fan\ncrypto fan", "mentioned_profiles": []}}, "username": "mowhitewolf", "power_badge": false, "display_name": "Mohamad Sedigh🎩👑", "active_status": "inactive", "verifications": ["0x606287e4fbf1d4fda67a3a0a6f822ee331c2fd75"], "follower_count": 672, "custody_address": "0xf874b30c7f85e7d4091d9f26ccb3613440799f51", "following_count": 380, "verified_addresses": {"eth_addresses": ["0x606287e4fbf1d4fda67a3a0a6f822ee331c2fd75"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/URfaiiZzp8vPKTNC8\"}"}', NULL), - (153783, '0x86255058b9fb5099fc79ec8dcb58c7001164a0de', 0, 1, '2024-05-05 09:03:42+00', 0, 1, '{"fid": 19379, "object": "user", "pfp_url": "https://i.imgur.com/c775G7X.jpg", "profile": {"bio": {"text": "come as you are", "mentioned_profiles": []}}, "username": "anobis", "power_badge": false, "display_name": "STING", "active_status": "inactive", "verifications": ["0x2bf30735f3e75937808eece8883cdc3e74107f56"], "follower_count": 1504, "custody_address": "0x6bf8844806976523f76d206d8c7608e07e139113", "following_count": 1416, "verified_addresses": {"eth_addresses": ["0x2bf30735f3e75937808eece8883cdc3e74107f56"], "sol_addresses": ["DaaLQV1q45BRdfhmqC63LjhvxgiBpu3jGxhoHMuRn3f"]}}', '{"{\"url\":\"Listen to Time by Hans Zimmer on #SoundCloud https://on.soundcloud.com/75oDF\"}"}', NULL), - (161852, '0x4c8123735c9bb0f9812b371fec675dbf06f1eaa1', 0, 1, '2024-05-05 09:49:06+00', 0, 1, '{"fid": 500766, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84adc320-eb68-4b3c-6841-434f34103c00/rectcrop3", "profile": {"bio": {"text": "Hi i am btc holder\nlove base chain", "mentioned_profiles": []}}, "username": "bugflea", "power_badge": false, "display_name": "Bug Flea", "active_status": "inactive", "verifications": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "follower_count": 1030, "custody_address": "0xe00948c3e45a725ef1a0e90b131f960d8644d0af", "following_count": 789, "verified_addresses": {"eth_addresses": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G4h9ZC6VXD7XPFu76\"}"}', NULL), - (283296, '0x3149e69c686119fdf7e2b71aad9a2823b1ad2f36', 0, 1, '2024-05-05 18:24:40+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rovyghany/pinkvenom?si=6db80389393a4fb8ad46541b9ee5215c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (142007, '0x347a2a97a70cab1defb7f4161e64f26c4d37ce31', 0, 1, '2024-05-05 07:45:33+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1117, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 917, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fdvXmUDNNNaeJ4k58\"}"}', NULL), - (143106, '0xa8bf44776167a53d6f2b7d08a2e84f69d0b4e023', 0, 1, '2024-05-05 07:57:58+00', 0, 3, '{"fid": 417708, "object": "user", "pfp_url": "https://i.imgur.com/QHqOpCC.jpg", "profile": {"bio": {"text": "A human from the crypto world", "mentioned_profiles": []}}, "username": "alitoork", "power_badge": false, "display_name": "alitoork🎩🍗🔵", "active_status": "inactive", "verifications": ["0xf0e436ed363115c9054eb1ea2225ce679920be7c"], "follower_count": 294, "custody_address": "0xadacfab14a8b1f85664681db12c0145fc9ab0bfa", "following_count": 336, "verified_addresses": {"eth_addresses": ["0xf0e436ed363115c9054eb1ea2225ce679920be7c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EcRyvm6UBz3yy85N9\"}"}', NULL), - (143822, '0xd1d61f4dad7962b7d8439abffd8d6568d79ebc9d', 0, 1, '2024-05-05 08:01:22+00', 0, 0, '{"fid": 512692, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1efd32d1-cca4-4345-0a6b-933f15d44500/rectcrop3", "profile": {"bio": {"text": "Crypto lover, yogini,", "mentioned_profiles": []}}, "username": "!512692", "power_badge": false, "display_name": "Eve", "active_status": "inactive", "verifications": ["0x9e364732b783715384af684d146b7cc5b682b107"], "follower_count": 41, "custody_address": "0x21009b0bad842a5466a44a66127704d93ee1815f", "following_count": 87, "verified_addresses": {"eth_addresses": ["0x9e364732b783715384af684d146b7cc5b682b107"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hYpmo\"}"}', NULL), - (143107, '0x65d6868b8faf224ceb164e23a223ed12aa5c7f96', 0, 1, '2024-05-05 07:57:13+00', 0, 3, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1117, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 917, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VEM5YwpJaAuW9B6P8\"}"}', NULL), - (177852, '0x674b7fc72fcf1665403677baf03cc2d323220ade', 0, 1, '2024-05-05 11:29:50+00', 0, 7, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3404, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1949, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ESQSv\"}"}', NULL), - (143846, '0xbbaeda69dba24bd8c5379ed84c61b358a886d08b', 0, 1, '2024-05-05 08:00:41+00', 0, 2, '{"fid": 323011, "object": "user", "pfp_url": "https://i.imgur.com/2rzrBZ5.gif", "profile": {"bio": {"text": "TECHNO X CRYPTO\nhttps://linktr.ee/christiancambas", "mentioned_profiles": []}}, "username": "christiancambas", "power_badge": true, "display_name": "Christian Cambas", "active_status": "inactive", "verifications": ["0xd6393a635a3b227020748821594a00c0da4f9019"], "follower_count": 180, "custody_address": "0x9be9b33b147ecd3fc6e388ce9bb1259cc975d5de", "following_count": 78, "verified_addresses": {"eth_addresses": ["0xd6393a635a3b227020748821594a00c0da4f9019"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5MmFMKe0VGaqlQ33KNy0KY?si=inF7tb4HQrOGeg5PrJbwzw\"}"}', NULL), - (144115, '0xd08ea2536f6dbc3a2cb8d4c7556ac7ff01d33726', 0, 1, '2024-05-05 08:03:39+00', 0, 3, '{"fid": 305150, "object": "user", "pfp_url": "https://i.imgur.com/YTpxlWF.jpg", "profile": {"bio": {"text": "I''m Makkusha, I''m 27. I''m a neurologist. I love to sing, read books and learn new things. I want to study languages.", "mentioned_profiles": []}}, "username": "tip-top", "power_badge": false, "display_name": "Makkusha 🎩🍿", "active_status": "inactive", "verifications": ["0xea1fff8d0c99a2b9405196c9a8edc56417072f4c"], "follower_count": 1444, "custody_address": "0xa1da88244c9aade6d8da29f1adbdb02ce30881d1", "following_count": 1591, "verified_addresses": {"eth_addresses": ["0xea1fff8d0c99a2b9405196c9a8edc56417072f4c"], "sol_addresses": ["DZ1cAQq6Py2wsRzPBUpmT8T7TfZm5c3ZpPnJUZ6SmBDg"]}}', '{"{\"url\":\"https://on.soundcloud.com/ktHMWgcmRngRt1bV7\"}"}', NULL), - (153873, '0x7162c7c19e376bf5756dd6d3966fed19eb9890c8', 0, 1, '2024-05-05 09:04:36+00', 0, 0, '{"fid": 376944, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigpbjdoapw5ydp2qktipxbo6rao6fmyivwifyr73z4rsrx2ugdgcq", "profile": {"bio": {"text": "animator & illustrator/Japan🎨🎨🎨 https://linktr.ee/fuffu_dazo 🎨 I will introduce anime materials to you with the #SAKUGA tag!🥳", "mentioned_profiles": []}}, "username": "fuffu", "power_badge": true, "display_name": "fuffu🌱🍖🎨🖼🌻☀️", "active_status": "inactive", "verifications": ["0xef6ed906193f25023df03e8e32591ee119418b19"], "follower_count": 2037, "custody_address": "0xf36682964903f57d6de0017b77b54b8958adb17c", "following_count": 1916, "verified_addresses": {"eth_addresses": ["0xef6ed906193f25023df03e8e32591ee119418b19"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7NJwrHiEgxQaM2PS8\"}"}', NULL), - (1173081, '0xddcd2e799e9a42af036fd3ed6691efa040ebf509', 0, 1, '2024-05-15 00:50:49+00', 0, 0, '{"fid": 256931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59072961-f3b2-43d7-4f9b-556d3a50dc00/original", "profile": {"bio": {"text": "𝕯𝖊𝖌𝖊𝖓𝖊𝖗𝖆𝖙𝖊 𝖈*𝖓𝖙 𝖘𝖊𝖈𝖔𝖓𝖉 𝖙𝖔 𝖓𝖔𝖓𝖊 // 𝖂𝖊𝖘𝖙 𝕳𝖆𝖒", "mentioned_profiles": []}}, "username": "catch0x22", "power_badge": true, "display_name": "Catch🎩💜", "active_status": "inactive", "verifications": ["0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11"], "follower_count": 1312, "custody_address": "0x80caf4b8c262827542c01a3f3c34bcb5cc34468b", "following_count": 1001, "verified_addresses": {"eth_addresses": ["0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4fKMaPlaPg6wywaPWGV1su?si=49233c8bb1384f31\"}"}', NULL), - (144918, '0x8024def4bdef55428c18735bff291ec58a64c43a', 0, 1, '2024-05-05 08:06:48+00', 0, 0, '{"fid": 16176, "object": "user", "pfp_url": "https://i.imgur.com/rco788k.gif", "profile": {"bio": {"text": "drakula:drakula.app/user/miin.eth\nX NftPinuts.twitter\nCH: /11 /degen-comment", "mentioned_profiles": []}}, "username": "miin.eth", "power_badge": false, "display_name": "miin", "active_status": "inactive", "verifications": ["0x7a7235e946b83213739950de0a71cac7651b0c36"], "follower_count": 5219, "custody_address": "0x1d3ca0c14adb274e44b1ab7553b7370ca0f6407d", "following_count": 949, "verified_addresses": {"eth_addresses": ["0x7a7235e946b83213739950de0a71cac7651b0c36"], "sol_addresses": ["6rZJ8yK7412PdZMDnu8PGd4gr3NwJQ84LRxGfgERCAWC"]}}', '{"{\"url\":\"https://soundcloud.com/tofubeats/i-can-feel-it-demo-20230203\"}"}', NULL), - (167516, '0xc4bd9a0bb783cacf0a6d36eb730d08a6df0ea699', 0, 1, '2024-05-05 10:07:50+00', 0, 2, '{"fid": 427338, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6cb8340a-2389-4f3b-bd9c-e60d55442d00/rectcrop3", "profile": {"bio": {"text": "Crypto is full of opportunities🐋", "mentioned_profiles": []}}, "username": "pezhi", "power_badge": false, "display_name": "Fury🍖🎩🔮", "active_status": "inactive", "verifications": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "follower_count": 660, "custody_address": "0xb2f39486457bd1831af3b50c1367bbdff9c8770a", "following_count": 1110, "verified_addresses": {"eth_addresses": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nlechoppa/nle-choppa-pistol-paccin-feat?si=517b031ab1a34bf6b43b4f95cf4c357d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283293, '0xbe46500c426630bef51bf3f220a61e0c126af823', 0, 1, '2024-05-05 18:24:49+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share81/kill-this-love?si=0018275eac024b7d8588bac879e08d2e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (143988, '0x7f3f8454e0c3dde8f35f36b753f5d66110672521', 0, 1, '2024-05-05 08:02:36+00', 0, 25, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2620, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2216, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kpopper-anonima-918196149/bts-fire\"}"}', NULL), - (144923, '0x318e4d94f614e271435542c5a1883524fe8bfd61', 0, 1, '2024-05-05 08:06:35+00', 0, 0, '{"fid": 16176, "object": "user", "pfp_url": "https://i.imgur.com/rco788k.gif", "profile": {"bio": {"text": "drakula:drakula.app/user/miin.eth\nX NftPinuts.twitter\nCH: /11 /degen-comment", "mentioned_profiles": []}}, "username": "miin.eth", "power_badge": false, "display_name": "miin", "active_status": "inactive", "verifications": ["0x7a7235e946b83213739950de0a71cac7651b0c36"], "follower_count": 5219, "custody_address": "0x1d3ca0c14adb274e44b1ab7553b7370ca0f6407d", "following_count": 949, "verified_addresses": {"eth_addresses": ["0x7a7235e946b83213739950de0a71cac7651b0c36"], "sol_addresses": ["6rZJ8yK7412PdZMDnu8PGd4gr3NwJQ84LRxGfgERCAWC"]}}', '{"{\"url\":\"https://soundcloud.com/tofubeats/i-can-feel-it-demo-20230203\"}"}', NULL), - (154204, '0x5bdf84314ae10fc3956a8097f9b1a860ac001eec', 0, 1, '2024-05-05 09:06:11+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2619, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3109, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KrybqGfR9LBJNSAh7\"}"}', NULL), - (283282, '0x6ac46f597dd72123b28df54e9d07c3d5797f8084', 0, 1, '2024-05-05 18:24:33+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/shxhrol-amy/playingwithfire?si=9ec6a37e1f3140c5a6c27bc3e1055a09&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (188127, '0xdb517754f3bb6d233114ab34337a06d4ef8a8fe7', 0, 1, '2024-05-05 12:14:15+00', 0, 0, '{"fid": 231533, "object": "user", "pfp_url": "https://i.imgur.com/heFlI8U.jpg", "profile": {"bio": {"text": "Freak that is trying to see love", "mentioned_profiles": []}}, "username": "dribble", "power_badge": false, "display_name": "Dribble 🎩", "active_status": "inactive", "verifications": ["0x0d36f3b293144d18667823635342e151468fe6f1"], "follower_count": 79, "custody_address": "0x1515e346bdcea6c153bad3e44b2d402c2ae38ff6", "following_count": 89, "verified_addresses": {"eth_addresses": ["0x0d36f3b293144d18667823635342e151468fe6f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tBawhBWkfxRuXBVv9\"}"}', NULL), - (165547, '0xe5f87e2f5ef3a857e478c35bf3d4d28a82abce63', 0, 1, '2024-05-05 09:58:59+00', 0, 0, '{"fid": 312211, "object": "user", "pfp_url": "https://i.imgur.com/qcWdD8B.jpg", "profile": {"bio": {"text": "Uncle trying to do my best on web3.\nI have been doing this in my own way, but I need information!\nFollow back 100%.", "mentioned_profiles": []}}, "username": "fujiweb3", "power_badge": false, "display_name": "fujiweb3🎩🧀🍕🍖", "active_status": "inactive", "verifications": ["0x48a2f743483dac0bb8973a22a3a7e55ad35022f3"], "follower_count": 940, "custody_address": "0x1128979959911d8e5234bb43473d138f1a5b204b", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x48a2f743483dac0bb8973a22a3a7e55ad35022f3"], "sol_addresses": ["DFm9idDV8nJ6AzRLigNxavh9nD3RGYhn9YDELV8SQcNw"]}}', '{"{\"url\":\"https://open.spotify.com/track/1s1WEQ4GqGSyN6dNUAzhPZ?si=Ggx0NCaRRkiCrqCMlGexWA&context=spotify%3Aalbum%3A4u3gRhBSD2osE2zfimvUfM\"}"}', NULL), - (182606, '0x9175e4492a40bdfefb2382bfd489a584f64bacfb', 0, 1, '2024-05-05 11:54:53+00', 0, 4, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1555, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1272, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Zu1viZ3Q7a9f7uXc8\"}"}', NULL), - (202366, '0xb3b9c7f3f266b748ad135a76849a459c4371d62d', 0, 1, '2024-05-05 12:39:40+00', 0, 1, '{"fid": 500970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b9ac51f6-4a2f-466b-945c-185d091fe400/rectcrop3", "profile": {"bio": {"text": "I‘m back", "mentioned_profiles": []}}, "username": "jhj", "power_badge": false, "display_name": "JHJ", "active_status": "inactive", "verifications": ["0xf42fd970012d4b5d2e5d369cd3a6bd68ccd11ced"], "follower_count": 1370, "custody_address": "0xceda2c01fc4164a03c72fc53e895248fabb99d03", "following_count": 699, "verified_addresses": {"eth_addresses": ["0xf42fd970012d4b5d2e5d369cd3a6bd68ccd11ced"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fGT5SwgjtejFs78u6\"}"}', NULL), - (168085, '0x17459042bfb8021525b759543bfe9257bd0030ac', 0, 1, '2024-05-05 10:10:46+00', 0, 2, '{"fid": 508993, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b49808b-598b-49ad-06f7-a642dd496900/rectcrop3", "profile": {"bio": {"text": "Roll of spider in $DEGEN world 🌎🕸️🕷️\nFresh meat 🍖 Air Angel galaxy 🌌👼\n-777 ", "mentioned_profiles": []}}, "username": "!508993", "power_badge": false, "display_name": "Erfan", "active_status": "inactive", "verifications": ["0x4bf758f2729371cf88597038ab808c9ba59a3c5a"], "follower_count": 537, "custody_address": "0xde8c4d37855bad052bab27242248a37bd464a8c6", "following_count": 1072, "verified_addresses": {"eth_addresses": ["0x4bf758f2729371cf88597038ab808c9ba59a3c5a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pweAGFsajnNfrkRr8\"}"}', NULL), - (144919, '0xe55eead579e5c7a84c82a045b60699491f156b98', 0, 1, '2024-05-05 08:06:43+00', 0, 0, '{"fid": 449776, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1af8cdbc-55ea-4cab-b8a3-4151d75d7100/rectcrop3", "profile": {"bio": {"text": "Active in the field of crypto", "mentioned_profiles": []}}, "username": "hadiakbari", "power_badge": false, "display_name": "Hadiakbari🎩 🦕", "active_status": "inactive", "verifications": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "follower_count": 1010, "custody_address": "0x340b33d619dfb09ceb791810ffbe3db592a83414", "following_count": 1311, "verified_addresses": {"eth_addresses": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EoGPt3dZpvZFPJuSA\"}"}', NULL), - (169053, '0xb0fb38135c6e0eaad4aa7532e89ef2a175d76770', 0, 1, '2024-05-05 10:13:20+00', 0, 1, '{"fid": 12495, "object": "user", "pfp_url": "https://i.imgur.com/tEF4Kqf.jpg", "profile": {"bio": {"text": "Landscape & Travel Photographer \n\nhttps://linktr.ee/korayozpalamutcu", "mentioned_profiles": []}}, "username": "korayozpalamutcu", "power_badge": false, "display_name": "Koray🎩", "active_status": "inactive", "verifications": ["0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec"], "follower_count": 642, "custody_address": "0x20893fe826efe9bf65bb2c56dae06cef48808eab", "following_count": 475, "verified_addresses": {"eth_addresses": ["0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4aIH8bjj0QdzasUFn3JVDD?si=LZHGghzST-eavMU5iPHxOQ\"}"}', NULL), - (162344, '0xa8fcc8b9c19314a653ca9c389d42b7139fb50b82', 0, 1, '2024-05-05 09:50:34+00', 0, 1, '{"fid": 344273, "object": "user", "pfp_url": "https://arweave.net/Sy2wDOreaO-gH2Rz4JtykdIW9CTvPJXR8JHwp1kvrnU/", "profile": {"bio": {"text": "404 err", "mentioned_profiles": []}}, "username": "mjmehdi1", "power_badge": false, "display_name": "Mehdi🔵🎩🔮 🔄", "active_status": "inactive", "verifications": ["0x2c119702a8fbdc94398bffbb319ef11b53fbb49a"], "follower_count": 1422, "custody_address": "0x06b88e681e44af998fb481db82eacddf5a288ab7", "following_count": 2007, "verified_addresses": {"eth_addresses": ["0x2c119702a8fbdc94398bffbb319ef11b53fbb49a"], "sol_addresses": ["FCU7x5t5WeNaWvif18YsTj6fzo72sbRFzDqYZ3DXzbNK"]}}', '{"{\"url\":\"https://soundcloud.com/user-515627655/sahar-ey-vay?si=32054a97217e48a9922f7359e106a56d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (148383, '0xd78411880e802a85b254293936068143510dc681', 0, 1, '2024-05-05 08:31:32+00', 0, 0, '{"fid": 348696, "object": "user", "pfp_url": "https://i.imgur.com/u3Wm5gf.jpg", "profile": {"bio": {"text": "Hi guys", "mentioned_profiles": []}}, "username": "davoti", "power_badge": false, "display_name": "Davoti 🎩🔮", "active_status": "inactive", "verifications": ["0xcfaafed6aa20e5e4c27ca8fb57a0852df1615b95"], "follower_count": 1918, "custody_address": "0x33e32face0d313abac81ac73b83599d1effa6f06", "following_count": 1732, "verified_addresses": {"eth_addresses": ["0xcfaafed6aa20e5e4c27ca8fb57a0852df1615b95"], "sol_addresses": ["6DJcKbwR888K4w9N21RgTX2aKgxWB8rJuLpXCktsufxR"]}}', '{"{\"url\":\"Listen to - by Sepidedam 4 | ۴ سپیده دم on #SoundCloud https://on.soundcloud.com/ngtJD\"}"}', NULL), - (147539, '0x56b54839ae0b48022564564b07c4df7c4f36bfb4', 0, 1, '2024-05-05 08:24:58+00', 0, 22, '{"fid": 418456, "object": "user", "pfp_url": "https://i.imgur.com/RK5wyHc.jpg", "profile": {"bio": {"text": "AI art / Full stack dev / Interested in crypto / Photograph", "mentioned_profiles": []}}, "username": "yoony12", "power_badge": false, "display_name": "Yoony12", "active_status": "inactive", "verifications": ["0x178dbcce09ac48e63e57507c003259657833553f"], "follower_count": 5363, "custody_address": "0x0c1b7263d19f3c6896670fa5cbf23f431b0188ef", "following_count": 5404, "verified_addresses": {"eth_addresses": ["0x178dbcce09ac48e63e57507c003259657833553f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ChkMS8OtdzJeqyybCc9R5\"}"}', NULL), - (154546, '0x33dcb8d2d69186c0b2bf6492c11062b57fa80986', 0, 1, '2024-05-05 09:07:39+00', 0, 2, '{"fid": 376944, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigpbjdoapw5ydp2qktipxbo6rao6fmyivwifyr73z4rsrx2ugdgcq", "profile": {"bio": {"text": "animator & illustrator/Japan🎨🎨🎨 https://linktr.ee/fuffu_dazo 🎨 I will introduce anime materials to you with the #SAKUGA tag!🥳", "mentioned_profiles": []}}, "username": "fuffu", "power_badge": true, "display_name": "fuffu🌱🍖🎨🖼🌻☀️", "active_status": "inactive", "verifications": ["0xef6ed906193f25023df03e8e32591ee119418b19"], "follower_count": 2037, "custody_address": "0xf36682964903f57d6de0017b77b54b8958adb17c", "following_count": 1916, "verified_addresses": {"eth_addresses": ["0xef6ed906193f25023df03e8e32591ee119418b19"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bXsHbbZZtZAAoiST6\"}"}', NULL), - (182055, '0xaf8f3728fcde535f78b0d25675b466db6b4be962', 0, 1, '2024-05-05 11:51:37+00', 0, 2, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "follower_count": 2103, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2457, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kD4cicD9vB4uudez8\"}"}', NULL), - (143074, '0x51025eb75082b870997d44b1d853dd4a65642746', 0, 1, '2024-05-05 07:56:31+00', 10, 3, '{"fid": 305150, "object": "user", "pfp_url": "https://i.imgur.com/YTpxlWF.jpg", "profile": {"bio": {"text": "I''m Makkusha, I''m 27. I''m a neurologist. I love to sing, read books and learn new things. I want to study languages.", "mentioned_profiles": []}}, "username": "tip-top", "power_badge": false, "display_name": "Makkusha 🎩🍿", "active_status": "inactive", "verifications": ["0xea1fff8d0c99a2b9405196c9a8edc56417072f4c"], "follower_count": 1444, "custody_address": "0xa1da88244c9aade6d8da29f1adbdb02ce30881d1", "following_count": 1591, "verified_addresses": {"eth_addresses": ["0xea1fff8d0c99a2b9405196c9a8edc56417072f4c"], "sol_addresses": ["DZ1cAQq6Py2wsRzPBUpmT8T7TfZm5c3ZpPnJUZ6SmBDg"]}}', '{"{\"url\":\"https://on.soundcloud.com/HQFZEFHn5e9XUcBg6\"}"}', NULL), - (146596, '0x82654ffe2f1e5eeaff06290100107751aee91d31', 0, 1, '2024-05-05 08:14:37+00', 0, 1, '{"fid": 384553, "object": "user", "pfp_url": "https://i.imgur.com/EstoTHx.jpg", "profile": {"bio": {"text": "Web3 and NFT world enthusiasm , digging the crypto world ,Mechanical engineer and cat lover", "mentioned_profiles": []}}, "username": "pyro0079", "power_badge": false, "display_name": "Aris🎩🔮🔵🍖", "active_status": "inactive", "verifications": ["0x011ccc1f1f25d2ed4d60506eed621ddbc4318e1a"], "follower_count": 930, "custody_address": "0x636bb19429065fc267280b9b7ea252a91b3e774b", "following_count": 1732, "verified_addresses": {"eth_addresses": ["0x011ccc1f1f25d2ed4d60506eed621ddbc4318e1a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ethan_bortnick/hide-n-seek?si=dd62a2b902b34e538cb635d37f587e5d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (162616, '0x51b89d635acbba999f74d11c64b62772950d5e3c', 0, 1, '2024-05-05 09:51:52+00', 0, 1, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 75, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 289, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0nhBKubnVz9yFNNprBniWz?si=-RiGJpYtQfWXWTIX1U0Q9g\"}"}', NULL), - (157526, '0x0a47c64ab50fa29566ab308c8ce3701f54605ad3', 0, 1, '2024-05-05 09:27:11+00', 0, 1, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1424, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1708, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WquuSjLY2qY454cv7\"}"}', NULL), - (154552, '0xb9a5efb3de7bc89f184c62421414cdefc8726a76', 0, 1, '2024-05-05 09:07:13+00', 0, 4, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2619, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3109, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KrybqGfR9LBJNSAh7\"}"}', NULL), - (183061, '0xc1607f483dfefb1001d2a884c3cd463269f5c9f9', 0, 1, '2024-05-05 11:55:36+00', 0, 0, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 722, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1jmGnmeagoXoYoBV7\"}"}', NULL), - (216592, '0x0dc17be3918b9fa7bfba7329b1cd99408ad153d5', 0, 1, '2024-05-05 13:09:21+00', 0, 0, '{"fid": 329190, "object": "user", "pfp_url": "https://i.imgur.com/h3o4Ntz.jpg", "profile": {"bio": {"text": "Nice to meet you. thank you.", "mentioned_profiles": []}}, "username": "komasugi", "power_badge": false, "display_name": "komasugi🎩🍖", "active_status": "inactive", "verifications": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "follower_count": 1210, "custody_address": "0x88ce15b0d31e50d0e3fcc1e64a782c2f6b87c3e6", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 안예은 - 상사화 by ʙʙ on #SoundCloud https://on.soundcloud.com/rPLNm\"}"}', NULL), - (154903, '0x9aca59b8616a8dd1add3fce2704befcf0886e635', 0, 1, '2024-05-05 09:10:38+00', 0, 1, '{"fid": 9587, "object": "user", "pfp_url": "https://i.imgur.com/NvMW5xr.gif", "profile": {"bio": {"text": "Spaceman, software engineer 🚀", "mentioned_profiles": []}}, "username": "1damer", "power_badge": false, "display_name": "Daniil 🔄🎩🐲🐢", "active_status": "inactive", "verifications": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "follower_count": 268, "custody_address": "0x6b5ad0b9a447d33e78b25017b7540a0d2723dc4a", "following_count": 569, "verified_addresses": {"eth_addresses": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/charalanahzard/stranger-things-v-hotline-miami-mix-retro-synthwave-live-mix?si=6273b598baed4034bcd2ddb54c0846cc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (147541, '0x7624d345d5f8a4d7e549581f015edb85f436e944', 0, 1, '2024-05-05 08:25:13+00', 0, 0, '{"fid": 508231, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/239719ef-6679-4892-470b-f538e3c2ad00/original", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "!508231", "power_badge": false, "display_name": "happyhappy", "active_status": "inactive", "verifications": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "follower_count": 53, "custody_address": "0x0ceadeaa7100c9b416e4899ff46307e507e461d6", "following_count": 176, "verified_addresses": {"eth_addresses": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nowhere_nowhere4/heart-to-heard?si=c93f2e3e97624ed4b6537767d3e383bb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (157519, '0xe32dbe33375a0f151085e9456c92a9666ebf1813', 0, 1, '2024-05-05 09:28:34+00', 0, 3, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1424, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1708, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cQhftGH2c6zzenUf6\"}"}', NULL), - (140446, '0x239dd9ead07de60b698d74960e13007f8380df5f', 0, 1, '2024-05-05 07:27:58+00', 0, 4, '{"fid": 189588, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8bede997-933d-4ae6-14f8-b9801fd5fb00/original", "profile": {"bio": {"text": "Dad of singer songwriter Gateway Girl. Ethereum and general crypto advocate.", "mentioned_profiles": []}}, "username": "signalone", "power_badge": false, "display_name": "Dave not at Farcon", "active_status": "inactive", "verifications": ["0x53cd119ae0bf1fdde5e778d29e873392fee07cca"], "follower_count": 6, "custody_address": "0x6d1907fc627ba7fd98a3430d2ed493dda95ecbe2", "following_count": 57, "verified_addresses": {"eth_addresses": ["0x53cd119ae0bf1fdde5e778d29e873392fee07cca"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/gatewaygirl/fed-up?referral=0xcb9c7ac0f635618421e6692f573511f9fa002a15\"}"}', NULL), - (162933, '0x9f7f5b8a5570a413cda168d89669ce053b8bf393', 0, 1, '2024-05-05 09:52:34+00', 0, 2, '{"fid": 267721, "object": "user", "pfp_url": "https://i.imgur.com/o67jKhJ.jpg", "profile": {"bio": {"text": "Medical doctor\n\nActive in cryptocurrency since 2014", "mentioned_profiles": []}}, "username": "hesamdavardoost", "power_badge": false, "display_name": "Hesam 🎩", "active_status": "inactive", "verifications": ["0x4509deb8ecac34003463c745f5df0e6931a86f3a"], "follower_count": 1913, "custody_address": "0x6c28bb236c8513cbf603695dcd828d94fef9d64f", "following_count": 1540, "verified_addresses": {"eth_addresses": ["0x4509deb8ecac34003463c745f5df0e6931a86f3a"], "sol_addresses": ["HU7qeATmraL47X3oZksmvY8rGGvng9Wgi2yWLHKottyt"]}}', '{"{\"url\":\"https://on.soundcloud.com/oDTW5BMVXAesRdwQ9\"}"}', NULL), - (212447, '0xe1ddfacd8a2114e9634d199e6cf3246f377e8c42', 0, 1, '2024-05-05 13:00:01+00', 0, 0, '{"fid": 9887, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c0ddbe-0796-46f9-2be0-4b421f0f6200/original", "profile": {"bio": {"text": "Indie, alt-electronic sounds to help cope with society slowly collapsing around us.", "mentioned_profiles": []}}, "username": "vividfeverdreams", "power_badge": false, "display_name": "Vivid Fever Dreams", "active_status": "inactive", "verifications": ["0xc9737651e2a88e2e3e8395ac98b4e3a360733369"], "follower_count": 91, "custody_address": "0xf1d22963f88dc7664a00b6482d9a1f1fb79e26d7", "following_count": 102, "verified_addresses": {"eth_addresses": ["0xc9737651e2a88e2e3e8395ac98b4e3a360733369"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2QfFXkZ5XpXD8Qxt8\"}"}', NULL), - (171051, '0x0290e1517350f10346b713cbbcb9cec96878804b', 0, 1, '2024-05-05 10:18:55+00', 0, 0, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 188, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 171, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/etillusion/beggin?si=c6acba17e2df4185a7eb0f5b4c7016b8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (161714, '0x017d6bb91b4d2c183bb19778e14f2acab2596c0d', 0, 1, '2024-05-05 09:48:43+00', 0, 1, '{"fid": 192426, "object": "user", "pfp_url": "https://arweave.net/sPQLrA_zrBh0RYmZf-HAyTRgq3mmRGhopKJVlsQ1BZw/", "profile": {"bio": {"text": "On this page I will……….NOTHING \nand i am Green 🟩🟩🟩🟢🟢🟢", "mentioned_profiles": []}}, "username": "spectrebtc2008", "power_badge": false, "display_name": "SpectreBTC2008⛓️", "active_status": "inactive", "verifications": ["0xb0477a50cafe4ce6d3f8f64a81cde4f42963755a"], "follower_count": 804, "custody_address": "0x5f3929dfec3e9eb3b79b9bc23f21567810b994a6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xb0477a50cafe4ce6d3f8f64a81cde4f42963755a"], "sol_addresses": ["CiHNnafKsRyG2mSpXQ4s3FhkZMhi772F1T9v7t5jHpZ7"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2f3e867a-29f6-428d-ceb7-5fc34224e300/original\"}","{\"url\":\"https://on.soundcloud.com/RWieD81E2f9kLQ6aA\"}"}', NULL), - (146449, '0xfb0bc5a484edbf59f9e218071899dd581451ff5d', 0, 1, '2024-05-05 08:13:32+00', 0, 5, '{"fid": 16176, "object": "user", "pfp_url": "https://i.imgur.com/rco788k.gif", "profile": {"bio": {"text": "drakula:drakula.app/user/miin.eth\nX NftPinuts.twitter\nCH: /11 /degen-comment", "mentioned_profiles": []}}, "username": "miin.eth", "power_badge": false, "display_name": "miin", "active_status": "inactive", "verifications": ["0x7a7235e946b83213739950de0a71cac7651b0c36"], "follower_count": 5218, "custody_address": "0x1d3ca0c14adb274e44b1ab7553b7370ca0f6407d", "following_count": 952, "verified_addresses": {"eth_addresses": ["0x7a7235e946b83213739950de0a71cac7651b0c36"], "sol_addresses": ["6rZJ8yK7412PdZMDnu8PGd4gr3NwJQ84LRxGfgERCAWC"]}}', '{"{\"url\":\"https://soundcloud.com/tofubeats/15-feat\"}"}', NULL), - (147214, '0x9d4e2bd41e01e1473d39fc21a0bda99485cc0835', 0, 1, '2024-05-05 08:18:36+00', 0, 0, '{"fid": 467826, "object": "user", "pfp_url": "https://i.imgur.com/0mhMbMF.jpg", "profile": {"bio": {"text": "A painter without an artist beret👩🏼‍🎨\n\nhttps://linktr.ee/basakcalisir", "mentioned_profiles": []}}, "username": "basakitto", "power_badge": false, "display_name": "Başak", "active_status": "inactive", "verifications": ["0x9746c2bbbbc13cf92d78e7818e9ffa4fef1f1e6e"], "follower_count": 190, "custody_address": "0xd45031155f0b45a2f55e55deda534650ba410d41", "following_count": 511, "verified_addresses": {"eth_addresses": ["0x9746c2bbbbc13cf92d78e7818e9ffa4fef1f1e6e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/61PINnmqnoF9cTFfbGu3by?si=I25qRkhmR4-PF83r7n0r0Q\"}"}', NULL), - (147215, '0x7e50714ff3e27f82e0a0068041e3cefa7feb9e67', 0, 1, '2024-05-05 08:19:13+00', 0, 5, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1206, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1165, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kdpapoUAYFedSkSF7\"}"}', NULL), - (147003, '0x48f8c115df4f3bbe81657e3329d642c8752c9441', 0, 1, '2024-05-05 08:17:38+00', 0, 0, '{"fid": 364012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b2966eb3-e264-40f1-e9ef-81834d9f9800/rectcrop3", "profile": {"bio": {"text": "I''m going to succeed, because I''m crazy enough to think I can😍", "mentioned_profiles": []}}, "username": "fatemeh64sh", "power_badge": false, "display_name": "fatemeh64sh🎩", "active_status": "inactive", "verifications": ["0xad945c428a6659b25a8f6b362fc99136f802091c", "0xad945c428a6659b25a8f6b362fc99136f802091c"], "follower_count": 498, "custody_address": "0xf8bcde5951742e8426520c77243a1eb5d305184a", "following_count": 1205, "verified_addresses": {"eth_addresses": ["0xad945c428a6659b25a8f6b362fc99136f802091c", "0xad945c428a6659b25a8f6b362fc99136f802091c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8PWEiRMLge9iT3tH8\"}"}', NULL), - (167785, '0xa74241927ecf12fa90a6d32601bc0edea0c60529', 0, 1, '2024-05-05 10:09:29+00', 0, 2, '{"fid": 508993, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b49808b-598b-49ad-06f7-a642dd496900/rectcrop3", "profile": {"bio": {"text": "Roll of spider in $DEGEN world 🌎🕸️🕷️\nFresh meat 🍖 Air Angel galaxy 🌌👼\n-777 ", "mentioned_profiles": []}}, "username": "!508993", "power_badge": false, "display_name": "Erfan", "active_status": "inactive", "verifications": ["0x4bf758f2729371cf88597038ab808c9ba59a3c5a"], "follower_count": 537, "custody_address": "0xde8c4d37855bad052bab27242248a37bd464a8c6", "following_count": 1072, "verified_addresses": {"eth_addresses": ["0x4bf758f2729371cf88597038ab808c9ba59a3c5a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EndFeAZGrW7pJMYR9\"}"}', NULL), - (172028, '0x0f4814a19127f716fc5c82345cc216336f1a770a', 0, 1, '2024-05-05 10:24:35+00', 0, 0, '{"fid": 418390, "object": "user", "pfp_url": "https://i.imgur.com/jxBCQEJ.jpg", "profile": {"bio": {"text": "Alfa Frens channel 💖 알파프렌 구독 좋아요 💖\nhttps://www.alfafrens.com/channel/0x13ec875cda512d6644f48f7f7aaddb1026ce77de", "mentioned_profiles": []}}, "username": "aigirls", "power_badge": false, "display_name": "Ai Girls", "active_status": "inactive", "verifications": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "follower_count": 1341, "custody_address": "0xbc0b95ea996a84fc9956e96e598d305a9261964d", "following_count": 1695, "verified_addresses": {"eth_addresses": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gagan-gupta-6/alan-walker-vs-coldplay-hymn-for-the-weekend-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (168686, '0x2665e65728c5a53bf6596072d8fe1bf6f13e20cf', 0, 1, '2024-05-05 10:12:29+00', 0, 0, '{"fid": 321145, "object": "user", "pfp_url": "https://i.imgur.com/cl4S95D.jpg", "profile": {"bio": {"text": "Gabriel Böing, also known as \"KÖI\", is an Artist, Direktor and DREAMER from São Paulo, Brazil. Founding member of /seedcomputer | on-chain since 2021.", "mentioned_profiles": []}}, "username": "koi555", "power_badge": false, "display_name": "Gabriel KÖI", "active_status": "inactive", "verifications": ["0xc8d159f9a0d7299ea37aaef081cd3384f86557ad"], "follower_count": 328, "custody_address": "0x3242c71875fbffd2f18a9bbd81a3418e8e5e9721", "following_count": 243, "verified_addresses": {"eth_addresses": ["0xc8d159f9a0d7299ea37aaef081cd3384f86557ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nagual555/nagual555-no-titles?si=2c9151392de944949964190dd1302540\"}"}', NULL), - (154906, '0xb998cee89e81ed91eced474460e1e265bb3fca38', 0, 1, '2024-05-05 09:10:15+00', 0, 1, '{"fid": 9587, "object": "user", "pfp_url": "https://i.imgur.com/NvMW5xr.gif", "profile": {"bio": {"text": "Spaceman, software engineer 🚀", "mentioned_profiles": []}}, "username": "1damer", "power_badge": false, "display_name": "Daniil 🔄🎩🐲🐢", "active_status": "inactive", "verifications": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "follower_count": 268, "custody_address": "0x6b5ad0b9a447d33e78b25017b7540a0d2723dc4a", "following_count": 569, "verified_addresses": {"eth_addresses": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t_damer/sth-lofi?si=6a0a3811883045ceb46104b7567d4a16&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (148116, '0x2c676c283f78c6f8a3474cec03ea1146ca9d6da4', 0, 1, '2024-05-05 08:27:58+00', 0, 0, '{"fid": 364012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b2966eb3-e264-40f1-e9ef-81834d9f9800/rectcrop3", "profile": {"bio": {"text": "I''m going to succeed, because I''m crazy enough to think I can😍", "mentioned_profiles": []}}, "username": "fatemeh64sh", "power_badge": false, "display_name": "fatemeh64sh🎩", "active_status": "inactive", "verifications": ["0xad945c428a6659b25a8f6b362fc99136f802091c", "0xad945c428a6659b25a8f6b362fc99136f802091c"], "follower_count": 498, "custody_address": "0xf8bcde5951742e8426520c77243a1eb5d305184a", "following_count": 1205, "verified_addresses": {"eth_addresses": ["0xad945c428a6659b25a8f6b362fc99136f802091c", "0xad945c428a6659b25a8f6b362fc99136f802091c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/F8NRwV2H3ymm2tAE8\"}"}', NULL), - (148114, '0xacee06b5434e68330b31c748fd3c68542d5f968c', 0, 1, '2024-05-05 08:28:31+00', 0, 0, '{"fid": 513515, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dadf0059-2a9f-4aa6-c98e-77491266b600/rectcrop3", "profile": {"bio": {"text": "SEC targets me 🥴", "mentioned_profiles": []}}, "username": "!513515", "power_badge": false, "display_name": "Justin Sun", "active_status": "inactive", "verifications": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "follower_count": 163, "custody_address": "0x649296858ac63a11f7765441099f8a22e0e5a1fa", "following_count": 189, "verified_addresses": {"eth_addresses": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Pgybc5pFn9DDQHav6\"}"}', NULL), - (183062, '0x35c0e92b73bfc46fdac5f29208d58841877cce63', 0, 1, '2024-05-05 11:55:13+00', 0, 5, '{"fid": 500110, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa024347-7666-45d4-cdfa-a4a80b07c100/rectcrop3", "profile": {"bio": {"text": "Dori", "mentioned_profiles": []}}, "username": "happydori", "power_badge": false, "display_name": "Dori🎩🍖", "active_status": "inactive", "verifications": ["0xdc4ae40db1ef9fe896315d85664597e7a1f63c06"], "follower_count": 1422, "custody_address": "0x38ec6731c474ecaf0afb1e2939f4ea4211df1d56", "following_count": 2058, "verified_addresses": {"eth_addresses": ["0xdc4ae40db1ef9fe896315d85664597e7a1f63c06"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vQMR4HsmZX4TFBFg8\"}"}', NULL), - (192780, '0xce4bd53e82c80c54552613e252e966b0cb5346d4', 0, 1, '2024-05-05 12:27:09+00', 0, 4, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2643, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2276, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/layans/seven\"}"}', NULL), - (197491, '0x0457cabb76da17ae3f08239666bbc609e94881bd', 0, 1, '2024-05-05 12:32:26+00', 0, 1, '{"fid": 501701, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99081801-c661-44ac-ec0a-dff6229f7500/rectcrop3", "profile": {"bio": {"text": "Thank u for visiting. \nHave a great day🍀 \n\n중고신입 뉴비 잘 부탁드려요🩵", "mentioned_profiles": []}}, "username": "leehu23", "power_badge": false, "display_name": "Unieeeee", "active_status": "inactive", "verifications": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "follower_count": 1186, "custody_address": "0x19aeb2932c76077fae10f8c6ea47fffd07c49cac", "following_count": 125, "verified_addresses": {"eth_addresses": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qqazumlaagxb/crush-ost-part-4-mp3\"}"}', NULL), - (157899, '0x9e1c044444c8a6e968dddb0ad6c34a3876542088', 0, 1, '2024-05-05 09:32:39+00', 0, 1, '{"fid": 505726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a7d0816-25e5-4016-f641-2fbfeebc7600/rectcrop3", "profile": {"bio": {"text": "I love Costco", "mentioned_profiles": []}}, "username": "lovemus", "power_badge": false, "display_name": "Costco", "active_status": "inactive", "verifications": ["0xcb0c7356e2a359ad168af298c109aa3aa41cef12"], "follower_count": 610, "custody_address": "0xdf7a4f4111ca0bc83d416de8280229b45cd42430", "following_count": 1315, "verified_addresses": {"eth_addresses": ["0xcb0c7356e2a359ad168af298c109aa3aa41cef12"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/shAHrf6EtBXpf45EA\"}"}', NULL), - (148117, '0xb89977ab4d6576bdbea38f00cc24cb3f24828ec5', 0, 1, '2024-05-05 08:28:00+00', 0, 1, '{"fid": 384553, "object": "user", "pfp_url": "https://i.imgur.com/EstoTHx.jpg", "profile": {"bio": {"text": "Web3 and NFT world enthusiasm , digging the crypto world ,Mechanical engineer and cat lover", "mentioned_profiles": []}}, "username": "pyro0079", "power_badge": false, "display_name": "Aris🎩🔮🔵🍖", "active_status": "inactive", "verifications": ["0x011ccc1f1f25d2ed4d60506eed621ddbc4318e1a"], "follower_count": 930, "custody_address": "0x636bb19429065fc267280b9b7ea252a91b3e774b", "following_count": 1732, "verified_addresses": {"eth_addresses": ["0x011ccc1f1f25d2ed4d60506eed621ddbc4318e1a"], "sol_addresses": []}}', '{"{\"url\":\"Listen to hide n seek by Ethan Bortnick on #SoundCloud https://soundcloud.com/ethan_bortnick/hide-n-seek?ref=clipboard&p=a&c=0&si=15d72e3023fb4c9cb0b4e1c6836181a8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (155153, '0x19fcf2f60d34d09de0b0a35dd9c5354556520251', 0, 1, '2024-05-05 09:11:03+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2619, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3109, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bubtHgJaVXd1oA2s8\"}"}', NULL), - (160213, '0x0dce77748c8e1553e47d24f7fa4c58bd637187bf', 0, 1, '2024-05-05 09:43:31+00', 0, 1, '{"fid": 421384, "object": "user", "pfp_url": "https://i.imgur.com/DhswHHw.jpg", "profile": {"bio": {"text": "crypto lover 🌋", "mentioned_profiles": []}}, "username": "nimauav9", "power_badge": false, "display_name": "nimauav9🔵🎩🍖", "active_status": "inactive", "verifications": ["0x2ed2c23f4026cb022034aeeeb48a813043151056"], "follower_count": 1243, "custody_address": "0x84c8b0d40bbab683bf9c971aaa12493ac9e189aa", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0x2ed2c23f4026cb022034aeeeb48a813043151056"], "sol_addresses": ["B3U1dBWCQ3EC2qMLc95wrYZeV5DSBky8CUf1VMm1e5fw"]}}', '{"{\"url\":\"https://on.soundcloud.com/CPL6UQi7z1UffALV7\"}"}', NULL), - (921233, '0x11ba4ca60c153f21d6040a1c71e23b054583351b', 0, 1, '2024-05-07 07:21:13+00', 0, 1, '{"fid": 428653, "object": "user", "pfp_url": "https://i.imgur.com/t3HbkB5.jpg", "profile": {"bio": {"text": "안녕하세요 ", "mentioned_profiles": []}}, "username": "ouol", "power_badge": false, "display_name": "Opao", "active_status": "inactive", "verifications": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "follower_count": 507, "custody_address": "0xdcd0b48bef59e22ef7506689aa61df35e9a9140c", "following_count": 551, "verified_addresses": {"eth_addresses": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yourknees/8ufwnxj0hie7\"}"}', 'sonata'), - (170123, '0x0efc8e8fefa44584a91fed25ad2e39d97117e1e2', 0, 1, '2024-05-05 10:15:57+00', 0, 0, '{"fid": 421585, "object": "user", "pfp_url": "https://i.imgur.com/5LpF8d5.jpg", "profile": {"bio": {"text": "nothing but crypto", "mentioned_profiles": []}}, "username": "th1rt3n", "power_badge": false, "display_name": "dmitry", "active_status": "inactive", "verifications": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "follower_count": 595, "custody_address": "0x1762f00e1642ca50e913595285610358ca4c1903", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "sol_addresses": ["FNLiqWzr8DXDyUYUbxUX4oefZ7ZQ4HzpiCp9j6JB5h2H"]}}', '{"{\"url\":\"https://on.soundcloud.com/4bneYSCcZD4rg4Ei6\"}"}', NULL), - (171649, '0xeca050bdf5e7214d3985c0a5328cb5ab72e78b73', 0, 1, '2024-05-05 10:22:07+00', 0, 0, '{"fid": 432080, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6573282d-aa86-4949-14f7-eff122a26f00/original", "profile": {"bio": {"text": "Building securitylabs.xyz\n\nPassionate about mathematical sociology simulations, dynamical systems and cryptographic protocols :)", "mentioned_profiles": []}}, "username": "flancaster", "power_badge": false, "display_name": "FelipeFlores.⌐◨-◨", "active_status": "inactive", "verifications": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "follower_count": 50, "custody_address": "0xfcfdecfc528dad0ba4e23940939eb8bca199b2be", "following_count": 26, "verified_addresses": {"eth_addresses": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/29iNhnoFkQBvOlUKn2io14?si=930e5cecb4954a18\"}"}', NULL), - (188009, '0x10534963deb687b7ccefcb20cd7bda5a1aeed79d', 0, 1, '2024-05-05 12:12:41+00', 0, 0, '{"fid": 508766, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed96a51a-422e-4a8c-95ae-4fe69e864900/original", "profile": {"bio": {"text": "1930년생 개띠 인사올립니다", "mentioned_profiles": []}}, "username": "!508766", "power_badge": false, "display_name": "할배👴", "active_status": "inactive", "verifications": ["0x48bf08eaf0eecf9ca3e89430c6431f5eb0577e98"], "follower_count": 337, "custody_address": "0x70030c751e657fcbe7b65ed9b2437d9a12087535", "following_count": 1793, "verified_addresses": {"eth_addresses": ["0x48bf08eaf0eecf9ca3e89430c6431f5eb0577e98"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cruze-guns/lelj9xpszskb?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (157371, '0x6901f84397050f32ae69f5bf2d0def08d706fc7e', 0, 1, '2024-05-05 09:25:03+00', 0, 1, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 75, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 289, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/471eUUcbGi51YG8mooiuYF?si=Lp8xPYbMSgS0axOaco9uFQ\"}"}', NULL), - (161328, '0x88d6740c3b1860eb3a93772b8c30dc58c58f694f', 0, 1, '2024-05-05 09:47:35+00', 0, 3, '{"fid": 391779, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49ccacbc-fa28-4d67-439d-b4ab40013900/rectcrop3", "profile": {"bio": {"text": "𝒜 ℊ𝒾𝓇ℓ 𝒾𝓃 𝓉ℎℯ 𝒸𝓇𝒴℘𝓉ℴ 𝓌ℴ𝓇ℓ𝒹🎈ɹǝʌol pooℲ🍻 𝖈𝖍𝖆𝖗𝖙𝖎𝖘𝖙 ✌️ρꪶꪖꪗꫀ𝕣🎮 切ない-˗ˏˋ ★ ˎˊ˗- Fid :391779", "mentioned_profiles": []}}, "username": "0xdazai.eth", "power_badge": false, "display_name": "𝔇𝔞𝔷𝔞𝔦🎩🍖🔄", "active_status": "inactive", "verifications": ["0xcf24b90c52c14c52ff4fc3928f231f5898716dd4", "0xe99ff7897b8a81f9f444ce5814f18f6a2009ba10"], "follower_count": 725, "custody_address": "0xe99ff7897b8a81f9f444ce5814f18f6a2009ba10", "following_count": 635, "verified_addresses": {"eth_addresses": ["0xcf24b90c52c14c52ff4fc3928f231f5898716dd4", "0xe99ff7897b8a81f9f444ce5814f18f6a2009ba10"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aBX1koCdd5ZGJGcHA\"}"}', NULL), - (148712, '0x60a0ac90c8686193cef37530a2ca0c47893835c6', 0, 1, '2024-05-05 08:32:02+00', 0, 5, '{"fid": 348696, "object": "user", "pfp_url": "https://i.imgur.com/u3Wm5gf.jpg", "profile": {"bio": {"text": "Hi guys", "mentioned_profiles": []}}, "username": "davoti", "power_badge": false, "display_name": "Davoti 🎩🔮", "active_status": "inactive", "verifications": ["0xcfaafed6aa20e5e4c27ca8fb57a0852df1615b95"], "follower_count": 1918, "custody_address": "0x33e32face0d313abac81ac73b83599d1effa6f06", "following_count": 1732, "verified_addresses": {"eth_addresses": ["0xcfaafed6aa20e5e4c27ca8fb57a0852df1615b95"], "sol_addresses": ["6DJcKbwR888K4w9N21RgTX2aKgxWB8rJuLpXCktsufxR"]}}', '{"{\"url\":\"Listen to محسن نامجو - جبرجغرافیایی by Sepidedam 4 | ۴ سپیده دم on #SoundCloud https://on.soundcloud.com/ngtJD\"}"}', NULL), - (147843, '0x29a0fca2f4bc6a7ed4f2c3e06b3f96196128401f', 0, 1, '2024-05-05 08:25:59+00', 0, 0, '{"fid": 508231, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/239719ef-6679-4892-470b-f538e3c2ad00/original", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "!508231", "power_badge": false, "display_name": "happyhappy", "active_status": "inactive", "verifications": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "follower_count": 53, "custody_address": "0x0ceadeaa7100c9b416e4899ff46307e507e461d6", "following_count": 176, "verified_addresses": {"eth_addresses": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nowhere_nowhere4/heart-to-heard?si=c93f2e3e97624ed4b6537767d3e383bb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (170124, '0x06580b289939ef9c3b67b8d5924c76ee355e382a', 0, 1, '2024-05-05 10:16:06+00', 0, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1862, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/3Ld7HGpXsYH4MG6h6\"}"}', NULL), - (181731, '0x978b42d4b5e78600700c2edd29a6ddfafb597303', 0, 1, '2024-05-05 11:49:17+00', 0, 3, '{"fid": 276047, "object": "user", "pfp_url": "https://arweave.net/5TpqUNyK7HUbVhuf3kr_wcnc-Y15o0lKUIMs7mTAlK8/", "profile": {"bio": {"text": "I love blokchain", "mentioned_profiles": []}}, "username": "jooker", "power_badge": false, "display_name": "Pouria🎩|🔵|🔮", "active_status": "inactive", "verifications": ["0xcbcd3e618612611a2ff7c7f984bd07449f8ba2f9"], "follower_count": 1603, "custody_address": "0xcba2873804bf3a4f3c789947567b27c3fd5f03e7", "following_count": 1345, "verified_addresses": {"eth_addresses": ["0xcbcd3e618612611a2ff7c7f984bd07449f8ba2f9"], "sol_addresses": ["8zZgTdTiee5nL9uNczbdPqpfs6d2mjSJCHTCnbWD6cJq"]}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/lose-yourself?si=bd57469d599f474c89e11043108bee35&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (208453, '0x4d15c43b7817bb5f273b5a0e75e611887f56a28c', 0, 1, '2024-05-05 12:53:17+00', 0, 3, '{"fid": 454238, "object": "user", "pfp_url": "https://i.imgur.com/3xSLH5h.jpg", "profile": {"bio": {"text": "Enjoy Warpcast together!", "mentioned_profiles": []}}, "username": "strive", "power_badge": false, "display_name": "StriveD", "active_status": "inactive", "verifications": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "follower_count": 2165, "custody_address": "0xa2bbc7337888cc53d4a80fbb14fae4fa4349e40d", "following_count": 2125, "verified_addresses": {"eth_addresses": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ma-nin/g-easy-ft-halsey-him-and-i-school-bus-remix\"}"}', NULL), - (148883, '0xcb9f3f21b3b84d06822c7379f09b5d70d9457d38', 0, 1, '2024-05-05 08:34:04+00', 0, 2, '{"fid": 513515, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dadf0059-2a9f-4aa6-c98e-77491266b600/rectcrop3", "profile": {"bio": {"text": "SEC targets me 🥴", "mentioned_profiles": []}}, "username": "!513515", "power_badge": false, "display_name": "Justin Sun", "active_status": "inactive", "verifications": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "follower_count": 165, "custody_address": "0x649296858ac63a11f7765441099f8a22e0e5a1fa", "following_count": 189, "verified_addresses": {"eth_addresses": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/calvinharris/miracle-with-ellie-goulding?ref=clipboard&p=i&c=0&si=34C5F99ABB284819BAB22C086D859EB9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (155155, '0x6380e74436f31334f2b84af73dd4abb2320db1f9', 0, 1, '2024-05-05 09:10:57+00', 0, 1, '{"fid": 9587, "object": "user", "pfp_url": "https://i.imgur.com/NvMW5xr.gif", "profile": {"bio": {"text": "Spaceman, software engineer 🚀", "mentioned_profiles": []}}, "username": "1damer", "power_badge": false, "display_name": "Daniil 🔄🎩🐲🐢", "active_status": "inactive", "verifications": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "follower_count": 268, "custody_address": "0x6b5ad0b9a447d33e78b25017b7540a0d2723dc4a", "following_count": 569, "verified_addresses": {"eth_addresses": ["0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e", "0xe95e08bac01e8a0a03836ad39619a2566fb6c324"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-15279189/sets/chillstep?si=59eebc1ac9a5479bb4d2b661d5b66c33&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (142589, '0x6b5d910f057f18d4811a2a19a7e44c36ddd97063', 0, 1, '2024-05-05 07:52:52+00', 0, 2, '{"fid": 328524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/15c4722a-a64d-4999-db6c-d488be1bb800/original", "profile": {"bio": {"text": "Why can''t we be frens?\n@pdf FID : 328524 ", "mentioned_profiles": []}}, "username": "pdf", "power_badge": false, "display_name": "Premiata Degen''s Floor ✪", "active_status": "inactive", "verifications": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "follower_count": 809, "custody_address": "0xeda5d99dce69824b44ad9a5eb6d7919d6496a176", "following_count": 1718, "verified_addresses": {"eth_addresses": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "sol_addresses": ["2kccAtADHM9qW8k8Ad9gFhpWteijVUbDb2fKsfN73VFZ"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8eb563d8-08cd-479e-3cfa-90020be94e00/original\"}","{\"url\":\"https://open.spotify.com/track/1FcUc6un64dEBZ53iFuO6M?si=d_nz75coQC20J6SZucQ9Aw&context=spotify%3Aalbum%3A1hngVRZt95TrqPqXoJzQ4A\"}"}', NULL), - (170125, '0xa80bfdbbf9c3594e7b46edc99f7a489831183ed5', 0, 1, '2024-05-05 10:16:47+00', 0, 24, '{"fid": 264615, "object": "user", "pfp_url": "https://i.imgur.com/qdeNMeA.jpg", "profile": {"bio": {"text": "Creator of piggy nft", "mentioned_profiles": []}}, "username": "bigdaddy21", "power_badge": false, "display_name": "Piggy ", "active_status": "inactive", "verifications": ["0x918991dae297d530c45829db90b0475eb8b8674a"], "follower_count": 3394, "custody_address": "0xad0407f8c861998266330f749f3b78df4e46072a", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x918991dae297d530c45829db90b0475eb8b8674a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vhfrG3MuyyicFvEj9\"}"}', NULL), - (147408, '0x8da92ba7c68907237c5b726d9f7512bf9b049832', 0, 1, '2024-05-05 08:21:15+00', 0, 2, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 75, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 289, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/12dU3vAh6AFoJkisorfoUl?si=cc440b62a2cc4c0a\"}"}', NULL), - (224998, '0x02d7e6caeb541228163b49c1d4be04375bf04ab9', 0, 1, '2024-05-05 13:26:43+00', 0, 2, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jaCCrPGoNvXTKuteA\"}"}', NULL), - (233999, '0x9f0624dc5e46e3ded3c5b7f922f5546b9e07650c', 0, 1, '2024-05-05 13:43:17+00', 0, 0, '{"fid": 499521, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/345fec63-3463-4c3c-7c70-9a85dd163100/original", "profile": {"bio": {"text": "AI MAKER /KOLLECTOR TEAM OG / HARDWORKING WORKER https://zora.co/@pixelmaster\n", "mentioned_profiles": []}}, "username": "pixelmaster", "power_badge": false, "display_name": "BLASTIOSE🍖", "active_status": "inactive", "verifications": ["0x253cde1f264329e997fceb4d577d1f0c1d2295c8"], "follower_count": 1061, "custody_address": "0x650319705b6831e4851e15ce1c6c981cedb45e63", "following_count": 638, "verified_addresses": {"eth_addresses": ["0x253cde1f264329e997fceb4d577d1f0c1d2295c8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rodwave/letter-from-houston\"}"}', NULL), - (352260, '0x9f2f16ea8b1398074f5d3718f5975e92d9149682', 0, 1, '2024-05-06 01:18:39+00', 0, 4, '{"fid": 416064, "object": "user", "pfp_url": "https://i.imgur.com/A6GEMtH.jpg", "profile": {"bio": {"text": "마지막 기회, 그거슨 바로 디젠. \n\n\nThe last chance, that''s Degen.", "mentioned_profiles": []}}, "username": "chchn2", "power_badge": false, "display_name": "chchn2", "active_status": "inactive", "verifications": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "follower_count": 2886, "custody_address": "0xc6576a3e4a013dede662fad6f93ab4e99ed36f51", "following_count": 2510, "verified_addresses": {"eth_addresses": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nakyong0202/drunken-tiger?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (188128, '0x1a9d1f3dd1514a74ed6685c61775d2f692f7191b', 0, 1, '2024-05-05 12:13:27+00', 0, 1, '{"fid": 501019, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3df06ecf-eea0-4295-2ba9-403d0ce7da00/rectcrop3", "profile": {"bio": {"text": "crypto lover", "mentioned_profiles": []}}, "username": "kiana75", "power_badge": false, "display_name": "kiana", "active_status": "inactive", "verifications": ["0x1c8eebfbe00cb04c54a55c77f6abcfc512414480"], "follower_count": 163, "custody_address": "0x958f44a710f3683cbd72df5702f1fdd22af306b0", "following_count": 200, "verified_addresses": {"eth_addresses": ["0x1c8eebfbe00cb04c54a55c77f6abcfc512414480"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamesblunt/goodbye-my-lover\"}"}', NULL), - (171664, '0xe2bc8da91b705e3778b6d4a73ba83e396073e738', 0, 1, '2024-05-05 10:20:52+00', 0, 0, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 188, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 171, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/etillusion/beggin?si=8eb98f5118b84db2a0b3dc41be151074&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (197490, '0xea9b51f46eb42c461770c8486ab46d1f1358c7db', 0, 1, '2024-05-05 12:32:58+00', 0, 0, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 631, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 749, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-565240779/bubblegum-newjeans?si=e40ba9d90447442195b1528150d7b838&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (183719, '0xf64e19f8de7c818b16ce35cd1df305ef1437e443', 0, 1, '2024-05-05 11:56:33+00', 0, 0, '{"fid": 470765, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a509407d-77b6-439f-7084-5899c4479a00/rectcrop3", "profile": {"bio": {"text": "aqua vs world", "mentioned_profiles": []}}, "username": "aquaaupa", "power_badge": false, "display_name": "smknbackw00ds❤️🫂", "active_status": "inactive", "verifications": ["0xfe96346a2752b8601c63f7a4e011df435b2b7136"], "follower_count": 1878, "custody_address": "0x75defd1b28d5c4f806d12cb8f87f36215d4721bc", "following_count": 1797, "verified_addresses": {"eth_addresses": ["0xfe96346a2752b8601c63f7a4e011df435b2b7136"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UsW52n2WvqoGNdYL7\"}"}', NULL), - (192784, '0xfcd86c3b81f52241981e15a336bad1a5a6c5c798', 0, 1, '2024-05-05 12:27:42+00', 0, 0, '{"fid": 423559, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdoXAH6xTKfiCR1qrdHcx5SaAANNXudS1YEmv27SPne8d?filename=.gif", "profile": {"bio": {"text": "F4F// Hi, I''m jonny :D Thank you for visiting. If you leave a trace, I''ll visit you! I hope you have a nice day in warpcast", "mentioned_profiles": []}}, "username": "jonnyjonny", "power_badge": false, "display_name": "Jonny", "active_status": "inactive", "verifications": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "follower_count": 1305, "custody_address": "0xde5d220b53d6015b7a6af20036a5673fbd30a3fe", "following_count": 2098, "verified_addresses": {"eth_addresses": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7x8dCjCr0x6x2lXKujYD34\"}"}', NULL), - (1172892, '0x1ed816a9938dbb37cd09c1e0179a211ccd6afee9', 2079, 1, '2024-05-14 19:49:35+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 421, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 238, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6oTshmafPagXMEZeLBzc6Y?si=9sl8_ADVTY-ZDh2aK9KQJw\"}"}', NULL), - (197492, '0x75a642c42c1b95167ccc6fc2cb363500eaf80a75', 0, 1, '2024-05-05 12:32:53+00', 0, 0, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1386, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-494014449-333647772/sets/rain?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (199842, '0x3f12cf982832901db75ecfdf7d4903fd632ab916', 0, 1, '2024-05-05 12:35:42+00', 0, 1, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 124, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WA1qA73PTfteuqb79\"}"}', NULL), - (173840, '0x971c89d02446d2d692da6aa00d2089ea3b11438c', 0, 1, '2024-05-05 10:40:17+00', 0, 3, '{"fid": 276637, "object": "user", "pfp_url": "https://i.imgur.com/RWPUdgs.jpg", "profile": {"bio": {"text": "Loves nature and climbing", "mentioned_profiles": []}}, "username": "miladershadi60", "power_badge": false, "display_name": "Milad 🎩", "active_status": "inactive", "verifications": ["0xcdc38f4c1ebccb80b7885d819365e897e2e4ad61"], "follower_count": 1983, "custody_address": "0x0d4a7546e60ee853bc14ea3fbde7d2e1e9b642a5", "following_count": 3393, "verified_addresses": {"eth_addresses": ["0xcdc38f4c1ebccb80b7885d819365e897e2e4ad61"], "sol_addresses": ["GKVnqytXGqDGbJnZ4u1yJK2rW8hguqTNh3eqFG62oHW1"]}}', '{"{\"url\":\"https://on.soundcloud.com/8N8a3KKNDFNja3ZBA\"}"}', NULL), - (173756, '0xd7e896a97834855ddb770af1a79894e0e225ef72', 0, 1, '2024-05-05 10:39:04+00', 0, 0, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 188, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 171, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sqvuwogxb30a/brown-eyed-girls-01-hold-the-1?si=5cad6329847c4aa1ae226a6c874fed72&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (172940, '0x70018cd950c5070708247f4eb538e57d83b32daa', 0, 1, '2024-05-05 10:31:07+00', 0, 3, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1549, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1262, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vUtE6f2Z7C6Bm5MN8\"}"}', NULL), - (172932, '0xe9ecb229e9c4d3f101cb60df9c599c57e6093da7', 0, 1, '2024-05-05 10:31:02+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fahizh0/day6-welcome-to-the-show-fahizh-remix-31?si=45306b33d7cc4db9812feaf862723f5b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (201640, '0xbead6e0d6a44ec0e601177a15efbddaba22d9477', 0, 1, '2024-05-05 12:39:26+00', 0, 1, '{"fid": 499542, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb868f92-a65c-4183-372a-97eabc778800/rectcrop3", "profile": {"bio": {"text": "다시 💕Thank you for your visiting to my cast 💜🎩", "mentioned_profiles": []}}, "username": "yumvely", "power_badge": false, "display_name": "Yumvely 🎩🍖🌟", "active_status": "inactive", "verifications": ["0xb0b4401de63f4d71c715dfb21362ca17588bc6df"], "follower_count": 1662, "custody_address": "0xa76fd6685530c93c4dfc490918c8bda8d68d003b", "following_count": 1894, "verified_addresses": {"eth_addresses": ["0xb0b4401de63f4d71c715dfb21362ca17588bc6df"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jQdg57QQP6LSvHNx5\"}"}', NULL), - (183722, '0x9514fd257e34a2687863972f75c2db89a79604bd', 0, 1, '2024-05-05 11:56:40+00', 0, 0, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 722, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1jmGnmeagoXoYoBV7\"}"}', NULL), - (1171322, '0x9ed210e0de0adb07f3a8a76eb07e8583fd127287', 3510, 1, '2024-05-14 17:00:33+00', 0, 0, '{"fid": 9135, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d4c3b0e-52dc-4e80-c166-862f2b200200/original", "profile": {"bio": {"text": "consistently curious | host of /art and /collector-walls | self-proclaimed ambassador of /higher | ex Sismo.io", "mentioned_profiles": []}}, "username": "kugusha.eth", "power_badge": true, "display_name": "kugusha ↑", "active_status": "inactive", "verifications": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "follower_count": 34704, "custody_address": "0x7ad6cbeaed607851ca0201faa835f01f123d5be6", "following_count": 719, "verified_addresses": {"eth_addresses": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2GxrNKugF82CnoRFbQfzPf?si=QLf-lyp6Qr2r0Yryvbsc_g&context=spotify%3Aplaylist%3A37i9dQZF1DXcBWIGoYBM5M\"}"}', NULL), - (211902, '0xde2b7f317458f1faa445f3618c87d4f8066e0ba4', 0, 1, '2024-05-05 12:59:03+00', 0, 2, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3535, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1998, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://soundcloud.com/jamescarterpresents/shape-of-you?si=b43d886023204bbfbe89be007d42beda&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (186264, '0x9d069161f97ee3986700bc79a5de0465d921f7ec', 0, 1, '2024-05-05 12:05:02+00', 0, 3, '{"fid": 472997, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ2i1YDjqg6f16wUJgNpqTqrtNQyUa18wMNC6B6uXNGmD?filename=KakaoTalk_20240419_025514877.png", "profile": {"bio": {"text": "It''s a place where I share my daily life I want to be close with you.Come and see me often Have a nice day!", "mentioned_profiles": []}}, "username": "jinkyo", "power_badge": false, "display_name": " Jaykay", "active_status": "inactive", "verifications": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "follower_count": 2990, "custody_address": "0x9359eee17224661c3bc0df15f8f3367ed0f1884c", "following_count": 2966, "verified_addresses": {"eth_addresses": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/iu-eight-prod-feat-suga-of-bts?in=yangho-choi/sets/rrreyhgkgry2&si=f676851545b943db993b2886c55ed755&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (171844, '0xa8ae6fae30c2459dcf8067c89c506d9849327fb3', 0, 1, '2024-05-05 10:23:14+00', 0, 0, '{"fid": 418390, "object": "user", "pfp_url": "https://i.imgur.com/jxBCQEJ.jpg", "profile": {"bio": {"text": "Alfa Frens channel 💖 알파프렌 구독 좋아요 💖\nhttps://www.alfafrens.com/channel/0x13ec875cda512d6644f48f7f7aaddb1026ce77de", "mentioned_profiles": []}}, "username": "aigirls", "power_badge": false, "display_name": "Ai Girls", "active_status": "inactive", "verifications": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "follower_count": 1341, "custody_address": "0xbc0b95ea996a84fc9956e96e598d305a9261964d", "following_count": 1695, "verified_addresses": {"eth_addresses": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alanwalker/alan-walker-yuqi-of-gi-dle-jvke-fire?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (234463, '0x2d25e97d0f5e5a0f76dd9e217c0f1eef157c41ea', 0, 1, '2024-05-05 13:45:30+00', 0, 7, '{"fid": 304523, "object": "user", "pfp_url": "https://i.imgur.com/NguS47l.jpg", "profile": {"bio": {"text": "Let that pain become your inspiration", "mentioned_profiles": []}}, "username": "sorouchhm", "power_badge": false, "display_name": "Sorouchh 🎩 🔵", "active_status": "inactive", "verifications": ["0xce6fb9f93084629394261e83371dfe2b224b71f0"], "follower_count": 1210, "custody_address": "0x03ebcc42f93f5b013428bedb4299069ebc6559b4", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xce6fb9f93084629394261e83371dfe2b224b71f0"], "sol_addresses": ["94WfcYkuFjPNxwGT8PHnBa3QgTxjKZns1wu4UcMRGfWF"]}}', '{"{\"url\":\"https://open.spotify.com/track/6bIPHR8AJG5HAcn9oF21Ma?si=a1f97b3ad7524d6d\"}"}', 'replyguys'), - (171647, '0x3368a89152be51e26fba03cd44c20d7b3ac71216', 0, 1, '2024-05-05 10:21:51+00', 0, 0, '{"fid": 418390, "object": "user", "pfp_url": "https://i.imgur.com/jxBCQEJ.jpg", "profile": {"bio": {"text": "Alfa Frens channel 💖 알파프렌 구독 좋아요 💖\nhttps://www.alfafrens.com/channel/0x13ec875cda512d6644f48f7f7aaddb1026ce77de", "mentioned_profiles": []}}, "username": "aigirls", "power_badge": false, "display_name": "Ai Girls", "active_status": "inactive", "verifications": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "follower_count": 1341, "custody_address": "0xbc0b95ea996a84fc9956e96e598d305a9261964d", "following_count": 1695, "verified_addresses": {"eth_addresses": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hupok/xz2thyu9fz1x?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (204301, '0xfad70121f8b9644d03f348c36cef245fbdbbb8af', 0, 1, '2024-05-05 12:43:36+00', 0, 1, '{"fid": 507319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/585701f0-9f84-4b85-e0e0-f8230c408a00/rectcrop3", "profile": {"bio": {"text": "Investing in crypto,gaming,ai, spatial computing, and freedom technology\n\nhttps://warpcast.com/songpa-parrot", "mentioned_profiles": []}}, "username": "!507319", "power_badge": false, "display_name": "Songparian", "active_status": "inactive", "verifications": ["0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff", "0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff"], "follower_count": 543, "custody_address": "0xe37b7ec6a063e78ae7d551f4a2119248ec6763aa", "following_count": 1515, "verified_addresses": {"eth_addresses": ["0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff", "0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cosmos-68404702/s4naye8czpb8?ref=clipboard&p=a&c=0&si=b3a7957ca7f0446ea643c750a44e5783&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (184341, '0xd70a3314d8ea8fad0f0af4b06086804c2b576ed3', 0, 1, '2024-05-05 11:59:25+00', 0, 0, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1209, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JYEmaZhMswHk1jFZA\"}"}', NULL), - (217366, '0x1e1bf767e59cffaf6bd782c9041f8cdd4110aebd', 0, 1, '2024-05-05 13:09:48+00', 0, 0, '{"fid": 420056, "object": "user", "pfp_url": "https://i.imgur.com/E5P7cKg.jpg", "profile": {"bio": {"text": "TSG Music is a Swedish record label.", "mentioned_profiles": []}}, "username": "tsgmusic", "power_badge": false, "display_name": "TSG Music ", "active_status": "inactive", "verifications": ["0x12ac0d5d5397471776ea096c6bbbcd60dd91173b"], "follower_count": 114, "custody_address": "0xefe3779c92751d62bd11f71b2ece85535f981d6f", "following_count": 398, "verified_addresses": {"eth_addresses": ["0x12ac0d5d5397471776ea096c6bbbcd60dd91173b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tsg-music/mix009\"}"}', NULL), - (940484, '0x50c52891c8244ab1f4c13a2ba9f00937adc43c7b', 0, 1, '2024-05-07 08:24:42+00', 0, 1, '{"fid": 425076, "object": "user", "pfp_url": "https://i.imgur.com/QanYYcP.jpg", "profile": {"bio": {"text": "F4F🖤조대리🖤맞디🖤", "mentioned_profiles": []}}, "username": "hyojuncast", "power_badge": false, "display_name": "HyojunKim", "active_status": "inactive", "verifications": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "follower_count": 1263, "custody_address": "0xf62c45992ff210140dfbda22bdef5377c16f9e9e", "following_count": 1295, "verified_addresses": {"eth_addresses": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-626300809/yanghongwon-4-seasons\"}"}', NULL), - (159701, '0xcd4e446897b152b4c72bbe011c0583ee77513a2c', 0, 1, '2024-05-05 09:41:12+00', 0, 1, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 75, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 289, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0yac0FPhLRH9i9lOng3f81?si=IU2QkSBNQjK7ybDNXi-RxA&context=spotify%3Aalbum%3A0MlTOiC5ZYKFGeZ8h3D4rd\"}"}', NULL), - (184342, '0xa98cdfe43c9556e62308ac277fd84433574db24c', 0, 1, '2024-05-05 11:59:15+00', 0, 2, '{"fid": 19314, "object": "user", "pfp_url": "https://i.imgur.com/aHwAywG.jpg", "profile": {"bio": {"text": "plɹoʍ oʇdʎɹɔ ǝɥʇ ǝʌo˥", "mentioned_profiles": []}}, "username": "vahiddihav", "power_badge": false, "display_name": "ᵥₐₕᵢd 🎩", "active_status": "inactive", "verifications": ["0x91c5e8e9f6d6de4cd6d3b9e9176a8b13e31569f8"], "follower_count": 1187, "custody_address": "0x91c5e8e9f6d6de4cd6d3b9e9176a8b13e31569f8", "following_count": 1467, "verified_addresses": {"eth_addresses": ["0x91c5e8e9f6d6de4cd6d3b9e9176a8b13e31569f8"], "sol_addresses": ["MwydMrxR4xPsYiahau8zopqnD2T3T3B7atNh4u8GwEJ"]}}', '{"{\"url\":\"Gypsy Queen by Chris Norman https://soundcloud.com/chris-norman-music/gypsy-queen\"}"}', NULL), - (184345, '0x2dd7bd3f1b5a3b5a36a794ea1f3fd9200c89ec41', 0, 1, '2024-05-05 11:58:35+00', 0, 0, '{"fid": 10971, "object": "user", "pfp_url": "https://i.seadn.io/gae/5Y51u8vlx73mQj6R7jObpdvC9nkdAIeMul8ErYUjbXEYC8luNtZs-nniFBATubJHAMv3HtA_G76IG5yDopU9sW9OtKDSoW0gm4TXvxA?w=500&auto=format", "profile": {"bio": {"text": "@usv | jared.xyz | formerly founder of groupme and fundera ", "mentioned_profiles": []}}, "username": "jaredhecht.eth", "power_badge": true, "display_name": "Jared Hecht", "active_status": "inactive", "verifications": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "follower_count": 292, "custody_address": "0xe363817e3eb0f4c3d5628142b63ea7b275a4491b", "following_count": 98, "verified_addresses": {"eth_addresses": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yFzX9CF9GerLyvBS9\"}"}', NULL), - (211901, '0x18edb240360d0c9b45a52e275f2466b5b3ddc80d', 0, 1, '2024-05-05 12:59:23+00', 0, 0, '{"fid": 500261, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d93120e4-9ca4-4c3c-29fd-3a268ab91f00/rectcrop3", "profile": {"bio": {"text": "Im actor is US, I will learn about America and talk about dramas, movies, and my daily life\n❤️US, Korea", "mentioned_profiles": []}}, "username": "actors-review", "power_badge": false, "display_name": "actor-review1", "active_status": "inactive", "verifications": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "follower_count": 1090, "custody_address": "0x99c7217798a58ce8ee28769d93c223d5de34c245", "following_count": 1546, "verified_addresses": {"eth_addresses": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4Edxy9Rcj8NY1coF9\"}"}', NULL), - (187118, '0x7434b92cfecf7c24bf3af8fe2006ad352cacd3d1', 0, 1, '2024-05-05 12:10:12+00', 0, 2, '{"fid": 461302, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f20ea39c-42ac-43eb-912b-dc4e90c64e00/rectcrop3", "profile": {"bio": {"text": "Hello~", "mentioned_profiles": []}}, "username": "dd8", "power_badge": false, "display_name": "dd8", "active_status": "inactive", "verifications": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "follower_count": 2617, "custody_address": "0xaea1e717380b4d1722164a4cba18c50e059479c4", "following_count": 2001, "verified_addresses": {"eth_addresses": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1f43xxrocu7r/h7ojvxemkrbn?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1171169, '0x4cb8a1fb95d801ba8d3080bb4cdf4a62d66b7992', 200, 1, '2024-05-14 15:34:41+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3PzsLpCMpHViX7vxPtf4uE?si=KZbpDngRT5GmerpMrPKOIg\"}"}', NULL), - (184343, '0x70ff8e128af4e54ec918e86f568c836840458524', 0, 1, '2024-05-05 11:58:44+00', 0, 2, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 727, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1086, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7hCNBVRhHzcsRAv0TQnOzq?si=I2tZ2yS8Te-qwH855ugdtw\"}"}', NULL), - (934786, '0x5460f765a6a4553360c85d0da5d5e4801cfb11a4', 0, 1, '2024-05-07 08:17:23+00', 0, 1, '{"fid": 470385, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac15cc05-6652-4678-793c-aef1f1c9c900/rectcrop3", "profile": {"bio": {"text": "\nAI enthusiast 💊 Linguistic nerd 🤓\nMeme lover \n\nDaily memes and jokes, stay tuned ", "mentioned_profiles": []}}, "username": "elliexbailey", "power_badge": false, "display_name": "Ellie Bailey 🎩⛓️🔵", "active_status": "inactive", "verifications": ["0x54de7bed1ea5fb7f48a82f4983f19c7a01927569"], "follower_count": 74, "custody_address": "0xb988acfae37398be4d5919e52778afc13669ff68", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x54de7bed1ea5fb7f48a82f4983f19c7a01927569"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gJPbyD4mnNLgnHqq6\"}"}', NULL), - (197497, '0x0d0e3defc8cd86abcef309a9131a1ca0d4e971ba', 0, 1, '2024-05-05 12:32:30+00', 0, 0, '{"fid": 374192, "object": "user", "pfp_url": "https://i.imgur.com/jG6RwlI.jpg", "profile": {"bio": {"text": "😫Stop whinning & Start winnig 😎\nThe Goals in oure live s Deserve to be Reached ", "mentioned_profiles": []}}, "username": "lastlight", "power_badge": false, "display_name": "Shayan 🎩 🔵 ⛓️ 🔮", "active_status": "inactive", "verifications": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "follower_count": 1211, "custody_address": "0xc256c0dc94d268052d65ca85247fd95033c0e7bf", "following_count": 1385, "verified_addresses": {"eth_addresses": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "sol_addresses": ["CCkNB1K4viy87HxawUNH95Y9Xy2gc2xW537RLBm8zN7K"]}}', '{"{\"url\":\"https://soundcloud.com/archiveofficial/black-and-blue?ref=clipboard&p=a&c=0&si=4f5fc961f66e4034b3c4080b12b7ea13&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (173162, '0x373c0c3dbbc545ba683e9a14b31be292263aec3f', 0, 1, '2024-05-05 10:32:32+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/day6-love-me-or-leave-me-day-and-night-tick-tock?si=7caef9508187488495c02c68010e5466&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (188636, '0x70fd0a379674a30d254385654a6e99fb03745164', 0, 1, '2024-05-05 12:17:16+00', 0, 0, '{"fid": 500839, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f3ca434-96aa-4bb9-6495-6ae249568400/rectcrop3", "profile": {"bio": {"text": "hello my name is amellia", "mentioned_profiles": []}}, "username": "amellia", "power_badge": false, "display_name": "amellia", "active_status": "inactive", "verifications": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "follower_count": 236, "custody_address": "0x9acfd223eb6f1deadc2984042d96f83fa0f4fe86", "following_count": 225, "verified_addresses": {"eth_addresses": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ti-n-th-o-cao-cao-d-n/kim-soo-hyun-way-home-ost-queen-of-tears-ost?in=trending-music-kr/sets/folk&si=0e4b31b80a994207adc7ac23146477a0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (188758, '0x207cd9e2cf891557023beea4dfc848f9839953f3', 0, 1, '2024-05-05 12:17:45+00', 0, 1, '{"fid": 453716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b820d6d7-e6f7-4390-7ba4-16b3f4ebf300/rectcrop3", "profile": {"bio": {"text": "Have a happy day!🥰", "mentioned_profiles": []}}, "username": "jay02", "power_badge": false, "display_name": "bella🎩🍖", "active_status": "inactive", "verifications": ["0xe936e7ab13cb8bec56e0099c098589a07815b7b1"], "follower_count": 2468, "custody_address": "0xf77795ecc7684c412bf047b0a95205a2b7baebc4", "following_count": 2604, "verified_addresses": {"eth_addresses": ["0xe936e7ab13cb8bec56e0099c098589a07815b7b1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VBvsR\"}"}', NULL), - (172733, '0xefde3e7b3fc0ea526b41623b5a91af598e77730e', 0, 1, '2024-05-05 10:30:11+00', 0, 2, '{"fid": 432080, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6573282d-aa86-4949-14f7-eff122a26f00/original", "profile": {"bio": {"text": "Building securitylabs.xyz\n\nPassionate about mathematical sociology simulations, dynamical systems and cryptographic protocols :)", "mentioned_profiles": []}}, "username": "flancaster", "power_badge": false, "display_name": "FelipeFlores.⌐◨-◨", "active_status": "inactive", "verifications": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "follower_count": 51, "custody_address": "0xfcfdecfc528dad0ba4e23940939eb8bca199b2be", "following_count": 28, "verified_addresses": {"eth_addresses": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/yoshiromare/kitsune-ft-duo-do\"}"}', NULL), - (233122, '0x56d5cb4f0d4be9cc42934ce3d9940b7b975d923a', 0, 1, '2024-05-05 13:43:05+00', 0, 0, '{"fid": 272919, "object": "user", "pfp_url": "https://i.imgur.com/4mmaSLW.gif", "profile": {"bio": {"text": "Kinetic, Synthetic & New Media Art \n\nhttps://linktr.ee/betx9", "mentioned_profiles": []}}, "username": "p3tra", "power_badge": false, "display_name": "Petra🎩🐲🌱", "active_status": "inactive", "verifications": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "follower_count": 454, "custody_address": "0x1618a6bfa84714d845d9182a02292c99533d00a4", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qP2fA\"}"}', NULL), - (192125, '0x01a8c09b4315d9d40ba4dabb030b6f9587e49f62', 0, 1, '2024-05-05 12:26:13+00', 0, 2, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 311, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 287, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Hcf4d\"}"}', NULL), - (189414, '0x261b47381b09f344c0ff923aec9cfd9979bb09f6', 0, 1, '2024-05-05 12:19:43+00', 0, 0, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 310, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 287, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 임창정 - 하루도 그대를 사랑하지 않은 적이 없었다 by :p on #SoundCloud https://on.soundcloud.com/Hcf4d\"}"}', NULL), - (173845, '0x919b670b82145da81caff479ad2a9728052544bb', 0, 1, '2024-05-05 10:41:25+00', 0, 2, '{"fid": 409492, "object": "user", "pfp_url": "https://i.imgur.com/JC34B3o.jpg", "profile": {"bio": {"text": "$Degen 🎩🎩 소소한 일상을 공유해요. 슈캐로 마구마구 !!", "mentioned_profiles": []}}, "username": "!409492", "power_badge": false, "display_name": "peach🎩", "active_status": "inactive", "verifications": ["0x3663d35b69d1a290515e3471b03c4d68ff9584bb"], "follower_count": 1291, "custody_address": "0x3ea24ce99c3526f28a947fb9b5ae8e62eb33b97e", "following_count": 1083, "verified_addresses": {"eth_addresses": ["0x3663d35b69d1a290515e3471b03c4d68ff9584bb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/syj595559/sets/6p2mgy6oynzr?si=644dd482161f4bf7898939390810fa09&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (199843, '0xad5c0dc841f11a650d961a62debf2005e097ff0f', 0, 1, '2024-05-05 12:35:33+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3107, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2624, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Leaving the Lot by KING HENDRICK$ on #SoundCloud https://on.soundcloud.com/yCMGV\"}"}', NULL), - (173194, '0xfbe003ff1eec04edb5c6fd5e4ab18f60813a92ee', 0, 1, '2024-05-05 10:32:44+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/day6-love-me-or-leave-me-day-and-night-tick-tock?si=7caef9508187488495c02c68010e5466&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (198220, '0x7e939485876786abaaa69c5bdf14a29839d1348e', 0, 1, '2024-05-05 12:33:58+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3107, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2624, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 김수현(KIM Soo Hyun) - Way Home 청혼 (눈물의 여왕 OST) Queen Of Tears OST by Huong_Karry on #SoundCloud https://on.soundcloud.com/tHc4X\"}"}', NULL), - (205005, '0x7d639fc03f0b4234040d064ee67788672ca043b2', 0, 1, '2024-05-05 12:46:02+00', 0, 0, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 321, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 539, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yumi-pies/anne-marie-2002-acoustic?si=47ef9614172a49e9951ff92865555c54&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (216584, '0x9fc17c41f95fd82855b346f6b6a54b76f99cb293', 0, 1, '2024-05-05 13:08:48+00', 0, 0, '{"fid": 501931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6eea1270-1cc8-457a-c547-fa04d19a4900/rectcrop3", "profile": {"bio": {"text": "Hi :)", "mentioned_profiles": []}}, "username": "eeaa", "power_badge": false, "display_name": "eeaa", "active_status": "inactive", "verifications": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "follower_count": 576, "custody_address": "0xd525a5cfdee1efeaf43f7f19594c20f7f22d4bdf", "following_count": 474, "verified_addresses": {"eth_addresses": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sonata.tips/\"}","{\"url\":\"https://soundcloud.com/discover\"}"}', NULL), - (172146, '0x4ffcf895d45b0122318bc99bd77413fc1e31ff6e', 0, 1, '2024-05-05 10:25:40+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"Listen to DAY6 - Love me or Leave me, Day And Night (해와 달처럼), Tick Tock by L2Share♫103 on #SoundCloud https://on.soundcloud.com/pVQVz\"}"}', NULL), - (173272, '0xe9b50e52ee9583b9cc423348aae79801abacea3a', 0, 1, '2024-05-05 10:34:19+00', 10, 14, '{"fid": 277944, "object": "user", "pfp_url": "https://i.imgur.com/Sv0s8B7.jpg", "profile": {"bio": {"text": "Surgun ♠️♦️♥️♣️", "mentioned_profiles": []}}, "username": "mansour", "power_badge": false, "display_name": "0xman 🎩 🔵 🍕🔮⛓️", "active_status": "inactive", "verifications": ["0x10e0eef65afde81e4452f249b57373beb4aaa1cf"], "follower_count": 1959, "custody_address": "0xc8aed1618c42d1d13d5734bd0bfbb6ab5741d7b7", "following_count": 2717, "verified_addresses": {"eth_addresses": ["0x10e0eef65afde81e4452f249b57373beb4aaa1cf"], "sol_addresses": ["F3qwS8bbiZnjUCqBXrE1gT6MtXmN4t6zLXQGvghCSVAW"]}}', '{"{\"url\":\"https://on.soundcloud.com/SbZNb\"}"}', NULL), - (173502, '0x879f50912b6b7b1fc6e6c55a066b84d2f898d335', 0, 1, '2024-05-05 10:35:39+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ihwak/day6-ywb-cover-by-ihwak?si=09e6e16839614b47b679f4a8b4233bb0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (173500, '0x9b5053c233f85090bb1edaf6da45037913253a91', 0, 1, '2024-05-05 10:35:55+00', 0, 0, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1185, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1357, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k2eFpVknLuehCGdP8\"}"}', NULL), - (171836, '0x8a7c6e8c0d0cec347867998ac5e01d66296f6eaf', 0, 1, '2024-05-05 10:23:03+00', 0, 1, '{"fid": 504151, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b30fd487-4e68-432d-9f59-b7197fb5e900/rectcrop3", "profile": {"bio": {"text": "https://linktr.ee/gorkemkeser", "mentioned_profiles": []}}, "username": "gorkemkeser", "power_badge": false, "display_name": "Görkem Keser", "active_status": "inactive", "verifications": ["0xb5648bfa0fe2eaa57a95562a8d236727afd78c80"], "follower_count": 81, "custody_address": "0x5d7cd7745e8493e93f3a9e217658028029d09654", "following_count": 205, "verified_addresses": {"eth_addresses": ["0xb5648bfa0fe2eaa57a95562a8d236727afd78c80"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":469659,\"hash\":\"0xfb6ba3c139445319e6dfbdf7460ffaac06a49a9f\"}}","{\"url\":\"https://open.spotify.com/track/3T1CEAG5ukgdqGvQuXWzqI?si=EMn4eHsfSMWiBr7zmQcyYQ\"}"}', NULL), - (173244, '0x04e5e7847dba553aea8c4a489fdaf9a490ba3bf6', 0, 1, '2024-05-05 10:34:08+00', 10, 0, '{"fid": 379809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/77ce271f-6c1e-4251-a70f-adbe876d3a00/rectcrop3", "profile": {"bio": {"text": "https://www.testnet.uncuts.app/cards/releases/1211", "mentioned_profiles": []}}, "username": "chocolat", "power_badge": false, "display_name": "Chocolat 🐻‍🎩🍖🔄👻", "active_status": "inactive", "verifications": ["0x3613da05428b2523b78ba608ee01692a0526ab86"], "follower_count": 854, "custody_address": "0xd0dfbb9d0a9ac80777f218b14a799232cf9e719c", "following_count": 996, "verified_addresses": {"eth_addresses": ["0x3613da05428b2523b78ba608ee01692a0526ab86"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Di1FxnvLjBbCtpjs9\"}"}', NULL), - (203622, '0x1f7f338a3f7d5eb47f4bda303222350d0fa1660b', 0, 1, '2024-05-05 12:41:56+00', 0, 2, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1869, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2332, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55ac2e6b-db77-45b3-9e42-0f65787bb900/original\"}","{\"url\":\"https://on.soundcloud.com/8sxvx\"}"}', NULL), - (1173013, '0xce2fe4926dcad2c451392b8c4abfd8262c253678', 2000, 1, '2024-05-14 21:59:34+00', 0, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3747, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 493, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6RUKPb4LETWmmr3iAEQktW?si=hLrsQcEjQuuANsq3lxNFKQ\"}"}', 'sonata'), - (172029, '0x42d21b5ba41b010972f9198e94eecf5a6d502793', 0, 1, '2024-05-05 10:24:31+00', 0, 2, '{"fid": 432080, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6573282d-aa86-4949-14f7-eff122a26f00/original", "profile": {"bio": {"text": "Building securitylabs.xyz\n\nPassionate about mathematical sociology simulations, dynamical systems and cryptographic protocols :)", "mentioned_profiles": []}}, "username": "flancaster", "power_badge": false, "display_name": "FelipeFlores.⌐◨-◨", "active_status": "inactive", "verifications": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "follower_count": 50, "custody_address": "0xfcfdecfc528dad0ba4e23940939eb8bca199b2be", "following_count": 26, "verified_addresses": {"eth_addresses": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rsesoundtrack/littleroot-town\"}"}', NULL), - (173267, '0x2bc11eaa05e3488908bbe047d1c24e75029611ea', 0, 1, '2024-05-05 10:35:25+00', 0, 0, '{"fid": 449096, "object": "user", "pfp_url": "https://i.imgur.com/uJUaygl.jpg", "profile": {"bio": {"text": "I am a nurse.", "mentioned_profiles": []}}, "username": "safail", "power_badge": false, "display_name": "Safail 🔵 🎩", "active_status": "inactive", "verifications": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "follower_count": 1168, "custody_address": "0x9d7ae0c0c43aea23ca1563b49fdddc611b5bdd7d", "following_count": 1957, "verified_addresses": {"eth_addresses": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PDVh4\"}"}', NULL), - (201642, '0x89632d990261657d01f60f2f5e034545127d8905', 0, 1, '2024-05-05 12:38:25+00', 0, 2, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 193, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 176, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/s2ioYZPDZZakGeVN8\"}"}', NULL), - (172148, '0x0c1b40764670ad7822760dee49fb3b33c090287f', 0, 1, '2024-05-05 10:25:38+00', 0, 1, '{"fid": 507775, "object": "user", "pfp_url": "https://arweave.net/xMkX3v_vk4LQRWFa9LZKXcUXG4KWOsGH6t3DJR7cRKw/", "profile": {"bio": {"text": "I enjoy the crypto market", "mentioned_profiles": []}}, "username": "!507775", "power_badge": false, "display_name": "Ali Mo", "active_status": "inactive", "verifications": ["0x81566f3b307160d14052a1ce0c5835a563cc39bf"], "follower_count": 9, "custody_address": "0x2943a6b1b1ebe3cde3462301a60b1bd8b5db231d", "following_count": 137, "verified_addresses": {"eth_addresses": ["0x81566f3b307160d14052a1ce0c5835a563cc39bf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zZRjpPeCbhy5awfW7\"}"}', NULL), - (198222, '0x6616afbea05e2352bebcc900a6f3bd4bdcb3b973', 0, 1, '2024-05-05 12:33:56+00', 0, 2, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1386, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-494014449-333647772/sets/rain?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (173270, '0x2955a4e281368621d6ed92f2433bebae08e33392', 0, 1, '2024-05-05 10:33:19+00', 0, 0, '{"fid": 373065, "object": "user", "pfp_url": "https://i.imgur.com/CiWzZGw.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "osazzzz", "power_badge": false, "display_name": "Osazzzz", "active_status": "inactive", "verifications": ["0xe533f15a1e690d312ddc59e6f3d23f8e5af72a39"], "follower_count": 12, "custody_address": "0x7f1dcdb5adbcce0e19e65ed0e3f65b6c4ea7986e", "following_count": 84, "verified_addresses": {"eth_addresses": ["0xe533f15a1e690d312ddc59e6f3d23f8e5af72a39"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5bh6Uoxkt8Jjzhr1C4ibiD?si=2TpU3BESR7iymmpDFGtIvg&context=spotify%3Asearch\"}"}', NULL), - (408959, '0xa3f246ce1129ddb6010c089d64bd36a98145dacb', 0, 1, '2024-05-06 05:19:55+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2648, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3125, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zBvpyxx7XebqMiQVA\"}"}', NULL), - (233992, '0x419a742d56b7753613b84cfbe86f3f5e9a099fdb', 0, 1, '2024-05-05 13:43:55+00', 0, 1, '{"fid": 272919, "object": "user", "pfp_url": "https://i.imgur.com/4mmaSLW.gif", "profile": {"bio": {"text": "Kinetic, Synthetic & New Media Art \n\nhttps://linktr.ee/betx9", "mentioned_profiles": []}}, "username": "p3tra", "power_badge": false, "display_name": "Petra🎩🐲🌱", "active_status": "inactive", "verifications": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "follower_count": 454, "custody_address": "0x1618a6bfa84714d845d9182a02292c99533d00a4", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7qzxw\"}"}', NULL), - (174091, '0xe2d6f81309ad83bb9bcf542b175f21c6c98617c2', 0, 1, '2024-05-05 10:41:48+00', 0, 0, '{"fid": 394930, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c62208a-db73-4e89-6e6d-8537be7df100/rectcrop3", "profile": {"bio": {"text": "Chasing Digital Dreams\nTop 100 replyguy", "mentioned_profiles": []}}, "username": "esish.eth", "power_badge": false, "display_name": "E30SH⛓️🎩", "active_status": "inactive", "verifications": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "follower_count": 1209, "custody_address": "0x1b6902812978e68b00ce878acc9d1ab42f4af60c", "following_count": 651, "verified_addresses": {"eth_addresses": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "sol_addresses": ["D1vLxcHLZ2w87wrTniAiDmdQoVMrqG1vsSoCU6uAuT9k"]}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=5FpojRr4RveHBdUWhUe1og\"}"}', NULL), - (172149, '0xdd99080adeb293ffd375868ebe73be27914668c0', 0, 1, '2024-05-05 10:25:03+00', 0, 0, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 188, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 171, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/etillusion/beggin?si=b4761cc759194dcb80258f43ed53c10a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173022, '0x9cc23437c26e9a1819b476d244e8b03ae4930e69', 100, 1, '2024-05-14 22:56:24+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1938, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 977, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/sana?referral_source=link\"}"}', 'soundxyz'), - (184858, '0x395b6e9116a22c1635a47ca043652acc4723e719', 0, 1, '2024-05-05 12:00:09+00', 0, 0, '{"fid": 418390, "object": "user", "pfp_url": "https://i.imgur.com/jxBCQEJ.jpg", "profile": {"bio": {"text": "Alfa Frens channel 💖 알파프렌 구독 좋아요 💖\nhttps://www.alfafrens.com/channel/0x13ec875cda512d6644f48f7f7aaddb1026ce77de", "mentioned_profiles": []}}, "username": "aigirls", "power_badge": false, "display_name": "Ai Girls", "active_status": "inactive", "verifications": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "follower_count": 1343, "custody_address": "0xbc0b95ea996a84fc9956e96e598d305a9261964d", "following_count": 1700, "verified_addresses": {"eth_addresses": ["0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/zico-spot-feat-jennie?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (174105, '0xea5990e3e1aecb29d94df1f62c5f849a4a17ba2a', 0, 1, '2024-05-05 10:41:47+00', 0, 1, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🟣🍖⛓🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 566, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 686, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thisismaneskin/gossip-feat-tom-morello\"}"}', NULL), - (174093, '0x59eddd8bed28aa0c72aad2231f9f713baae74ad3', 0, 1, '2024-05-05 10:42:05+00', 0, 1, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1208, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/V7n2M7cFH3Ga3Bpj7\"}"}', NULL), - (193417, '0x5c97acf6243faff5eba04d07f1229e0a89b0be43', 0, 1, '2024-05-05 12:28:41+00', 0, 0, '{"fid": 508363, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4053fde1-b0b4-46ae-160c-f504739b0000/original", "profile": {"bio": {"text": "\nI love to take reaction, recast and follow 🥰🥰", "mentioned_profiles": []}}, "username": "!508363", "power_badge": false, "display_name": "Bluemountain", "active_status": "inactive", "verifications": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "follower_count": 247, "custody_address": "0x8977ff600c1cb56333c1a376e876fc76d2177739", "following_count": 535, "verified_addresses": {"eth_addresses": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/deni-achmadzoel/taeyeon-if?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (199845, '0xd4f077230e50f50d7df3271294482bb9987a7c18', 0, 1, '2024-05-05 12:35:23+00', 0, 0, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1076, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1138, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4LbA6\"}"}', NULL), - (175245, '0x42f6a15add3cfa6d14248f5fc2969da5af71da83', 0, 1, '2024-05-05 10:51:06+00', 0, 0, '{"fid": 515320, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71f3cc2e-065e-439f-fc76-faee5c4e6a00/rectcrop3", "profile": {"bio": {"text": "Crypto, gambling, Premier league, ucl ,football fantasy", "mentioned_profiles": []}}, "username": "navid98", "power_badge": false, "display_name": "Navid", "active_status": "inactive", "verifications": ["0x72430cfc6cbead96b2ef218ce6791a394fb50bbe"], "follower_count": 23, "custody_address": "0x414a7e6e58658e239bb28dc5d550f641f203fa32", "following_count": 67, "verified_addresses": {"eth_addresses": ["0x72430cfc6cbead96b2ef218ce6791a394fb50bbe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zg5ee\"}"}', NULL), - (173501, '0x2cc384fb824281e3d6c192bc91d78248783978c8', 0, 1, '2024-05-05 10:35:45+00', 0, 1, '{"fid": 419719, "object": "user", "pfp_url": "https://i.imgur.com/jz2FAOc.jpg", "profile": {"bio": {"text": "Just do it bro🤙🏻", "mentioned_profiles": []}}, "username": "hshmansari47", "power_badge": false, "display_name": "Hashi🍖🎩👽", "active_status": "inactive", "verifications": ["0x119d7d618fd4f18232f22431021e5535da62d917"], "follower_count": 1574, "custody_address": "0x8589428efb2c790803f25c0579149425ea8da972", "following_count": 1617, "verified_addresses": {"eth_addresses": ["0x119d7d618fd4f18232f22431021e5535da62d917"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NSHPFwKkJ1UnhNtt7\"}"}', NULL), - (246817, '0x5e5aefaf704dd411582a93bd85d498c763be2d89', 0, 1, '2024-05-05 14:13:10+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1131, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 941, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HZn2FtWwozGmwqJC9\"}"}', NULL), - (175282, '0x2eeb1260f35aa356c625ad621c31e2cc4a11d2a1', 0, 1, '2024-05-05 10:51:33+00', 0, 2, '{"fid": 15431, "object": "user", "pfp_url": "https://i.imgur.com/o9DOv0w.jpg", "profile": {"bio": {"text": "music • multimedia • web3", "mentioned_profiles": []}}, "username": "mikestjean", "power_badge": false, "display_name": "mikestjean", "active_status": "inactive", "verifications": ["0xd3432463cf264f4def759ca6f8843d47dd00b2fd"], "follower_count": 56, "custody_address": "0xeb759daef284b77f4155e84267877f3cd8af897c", "following_count": 86, "verified_addresses": {"eth_addresses": ["0xd3432463cf264f4def759ca6f8843d47dd00b2fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/i7fk9CZMehu3h28QA\"}"}', NULL), - (259754, '0xa80a0e8e0c84ce6ce7f7bb950ae087fb53217872', 0, 1, '2024-05-05 15:32:43+00', 0, 1, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tungevaag/samsara-radio-edit?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (474889, '0xc76b2c26844a7f2b4126dac259e068b587df4b08', 0, 1, '2024-05-06 07:19:25+00', 0, 2, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 766, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v1fSz6G3yJ7FJCuN6\"}"}', NULL), - (173774, '0xe51ac8cfe33c436396406102a98992c328ae2748', 0, 1, '2024-05-05 10:38:55+00', 0, 1, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2177, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2524, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/victoria-antonelli-895773260/full-album-day6-fourever?si=afaa33cad50a4d79b87547cfbdee4e0f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (421484, '0x66cc86c7c93d476b1683bca7a54dbd028f3f32cb', 0, 1, '2024-05-06 05:57:27+00', 0, 2, '{"fid": 384997, "object": "user", "pfp_url": "https://i.imgur.com/7HGDaOg.jpg", "profile": {"bio": {"text": "Some kind of thing wandering on Web3\nJAPAESE", "mentioned_profiles": []}}, "username": "rosso2222", "power_badge": false, "display_name": "ROSSO🍕🎩🍖🔮🧀", "active_status": "inactive", "verifications": ["0xbeea50d91a3e0bf7ed39a4178af78bbaee578a59"], "follower_count": 368, "custody_address": "0x02e9b663cc9bbdee04510651f4a1a217b74ae00b", "following_count": 457, "verified_addresses": {"eth_addresses": ["0xbeea50d91a3e0bf7ed39a4178af78bbaee578a59"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VXXs3YrQBxUyEbRFA\"}"}', 'musicjp'), - (904318, '0x02119238a17e6da9db7bbb1a851283bff741090d', 0, 1, '2024-05-07 06:53:58+00', 0, 10, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ladyhawkeofficial/paris-is-burning\"}"}', NULL), - (200257, '0xe5d3edfecbe256a86e829f6052239fb19fda8965', 0, 1, '2024-05-05 12:36:52+00', 0, 0, '{"fid": 374192, "object": "user", "pfp_url": "https://i.imgur.com/jG6RwlI.jpg", "profile": {"bio": {"text": "😫Stop whinning & Start winnig 😎\nThe Goals in oure live s Deserve to be Reached ", "mentioned_profiles": []}}, "username": "lastlight", "power_badge": false, "display_name": "Shayan 🎩 🔵 ⛓️ 🔮", "active_status": "inactive", "verifications": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "follower_count": 1211, "custody_address": "0xc256c0dc94d268052d65ca85247fd95033c0e7bf", "following_count": 1385, "verified_addresses": {"eth_addresses": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "sol_addresses": ["CCkNB1K4viy87HxawUNH95Y9Xy2gc2xW537RLBm8zN7K"]}}', '{"{\"url\":\"https://on.soundcloud.com/YFPBa\"}"}', NULL), - (192779, '0x0e17be428325e2b5c9f799b19b15fe0a1b3d9a5d', 0, 1, '2024-05-05 12:26:58+00', 0, 0, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1705, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user856723439/sets/tony-rich-project-nobody-knows?si=5f5c8d8ee4024e67a651f6e5d3cee500&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (174724, '0xebe8e1aff313d4252b6ec0e8eda266b36da4b48b', 0, 1, '2024-05-05 10:48:16+00', 0, 2, '{"fid": 9192, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeihollepu4pkpzqhllac3naop2irz36arglodrsemx53vvalmjahka", "profile": {"bio": {"text": "Onchain Ticketing infrastructure - onopen.xyz. >5m tickets sold. Fixing ticketing for creators, organizers and systems. MA Phil. @poolsuite exec 🍸🪩", "mentioned_profiles": []}}, "username": "42", "power_badge": true, "display_name": "Sander | OPEN ✊🎟", "active_status": "inactive", "verifications": ["0x5a4de28b93deeb48f682336f5a91cc43b71964b2"], "follower_count": 608, "custody_address": "0x98ade15194c8d828e2e778b55f90b582e07b1639", "following_count": 640, "verified_addresses": {"eth_addresses": ["0x5a4de28b93deeb48f682336f5a91cc43b71964b2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6zyhESSIjM7T2ktjL3Tb8Z?si=FejnQt_TTuaAz-GvbTQNRg&context=spotify%3Aalbum%3A7yu5ozdJWDS0tjQV8jrdv4\"}"}', NULL), - (174593, '0xcbd6d2fbf4d44e3c214544c109ab226a9282a9a1', 0, 1, '2024-05-05 10:46:52+00', 0, 2, '{"fid": 394930, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c62208a-db73-4e89-6e6d-8537be7df100/rectcrop3", "profile": {"bio": {"text": "Chasing Digital Dreams\nTop 100 replyguy", "mentioned_profiles": []}}, "username": "esish.eth", "power_badge": false, "display_name": "E30SH⛓️🎩", "active_status": "inactive", "verifications": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "follower_count": 1209, "custody_address": "0x1b6902812978e68b00ce878acc9d1ab42f4af60c", "following_count": 652, "verified_addresses": {"eth_addresses": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "sol_addresses": ["D1vLxcHLZ2w87wrTniAiDmdQoVMrqG1vsSoCU6uAuT9k"]}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=5FpojRr4RveHBdUWhUe1og\"}"}', NULL), - (174740, '0x6ae0dcc4cbab75d71f8663e1d114160b1d168092', 0, 1, '2024-05-05 10:47:33+00', 0, 0, '{"fid": 328524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/15c4722a-a64d-4999-db6c-d488be1bb800/original", "profile": {"bio": {"text": "Why can''t we be frens?\n@pdf FID : 328524 ", "mentioned_profiles": []}}, "username": "pdf", "power_badge": false, "display_name": "Premiata Degen''s Floor ✪", "active_status": "inactive", "verifications": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "follower_count": 811, "custody_address": "0xeda5d99dce69824b44ad9a5eb6d7919d6496a176", "following_count": 1718, "verified_addresses": {"eth_addresses": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "sol_addresses": ["2kccAtADHM9qW8k8Ad9gFhpWteijVUbDb2fKsfN73VFZ"]}}', '{"{\"url\":\"https://soundcloud.com/sethcronin/sets/music-for-plants-vol-1?si=31c3b9f0b9634069a65b1868b197f200&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (198221, '0x99f34ee7925c73baecceaa518ba6084afdca9fd4', 0, 1, '2024-05-05 12:33:30+00', 0, 1, '{"fid": 374192, "object": "user", "pfp_url": "https://i.imgur.com/jG6RwlI.jpg", "profile": {"bio": {"text": "😫Stop whinning & Start winnig 😎\nThe Goals in oure live s Deserve to be Reached ", "mentioned_profiles": []}}, "username": "lastlight", "power_badge": false, "display_name": "Shayan 🎩 🔵 ⛓️ 🔮", "active_status": "inactive", "verifications": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "follower_count": 1211, "custody_address": "0xc256c0dc94d268052d65ca85247fd95033c0e7bf", "following_count": 1385, "verified_addresses": {"eth_addresses": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "sol_addresses": ["CCkNB1K4viy87HxawUNH95Y9Xy2gc2xW537RLBm8zN7K"]}}', '{"{\"url\":\"https://soundcloud.com/archiveofficial/black-and-blue?ref=clipboard&p=a&c=0&si=4f5fc961f66e4034b3c4080b12b7ea13&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (209025, '0xa186ca53e036a31522cc7537c41b3becea0482d3', 0, 1, '2024-05-05 12:53:28+00', 0, 0, '{"fid": 428653, "object": "user", "pfp_url": "https://i.imgur.com/t3HbkB5.jpg", "profile": {"bio": {"text": "안녕하세요 ", "mentioned_profiles": []}}, "username": "ouol", "power_badge": false, "display_name": "Opao", "active_status": "inactive", "verifications": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "follower_count": 503, "custody_address": "0xdcd0b48bef59e22ef7506689aa61df35e9a9140c", "following_count": 547, "verified_addresses": {"eth_addresses": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tayo_sound/cold-feet-1\"}"}', NULL), - (175000, '0xa08976974b11e3d462a9beec31fb9f4026b497b3', 0, 1, '2024-05-05 10:50:12+00', 0, 3, '{"fid": 328524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/15c4722a-a64d-4999-db6c-d488be1bb800/original", "profile": {"bio": {"text": "Why can''t we be frens?\n@pdf FID : 328524 ", "mentioned_profiles": []}}, "username": "pdf", "power_badge": false, "display_name": "Premiata Degen''s Floor ✪", "active_status": "inactive", "verifications": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "follower_count": 811, "custody_address": "0xeda5d99dce69824b44ad9a5eb6d7919d6496a176", "following_count": 1718, "verified_addresses": {"eth_addresses": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "sol_addresses": ["2kccAtADHM9qW8k8Ad9gFhpWteijVUbDb2fKsfN73VFZ"]}}', '{"{\"url\":\"https://soundcloud.com/victor-ramos-176/bob-marley-misty-morning-crisis-demos-kaya-78?si=7f55ff99049c401db4a148efb4f2a143&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (175284, '0x4edba969dcee03aecaa6ac2560cee39064f35c88', 0, 1, '2024-05-05 10:51:51+00', 0, 1, '{"fid": 432080, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6573282d-aa86-4949-14f7-eff122a26f00/original", "profile": {"bio": {"text": "Building securitylabs.xyz\n\nPassionate about mathematical sociology simulations, dynamical systems and cryptographic protocols :)", "mentioned_profiles": []}}, "username": "flancaster", "power_badge": false, "display_name": "FelipeFlores.⌐◨-◨", "active_status": "inactive", "verifications": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "follower_count": 50, "custody_address": "0xfcfdecfc528dad0ba4e23940939eb8bca199b2be", "following_count": 28, "verified_addresses": {"eth_addresses": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":432080,\"hash\":\"0xb75283fa031cbc34db78e460ef964b0d187b886b\"}}","{\"url\":\"https://soundcloud.com/hiep612/mortal-kombat-theme-song-original\"}"}', NULL), - (194344, '0xeb5c99308ffdbed007bbf2e5f2c475835942a192', 0, 1, '2024-05-05 12:29:05+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2626, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3115, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Hh598yMHRSj6fJbU6\"}"}', NULL), - (212990, '0xfacf7e1b40972cb290072682754117c4321e2798', 0, 1, '2024-05-05 13:01:20+00', 0, 0, '{"fid": 500261, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d93120e4-9ca4-4c3c-29fd-3a268ab91f00/rectcrop3", "profile": {"bio": {"text": "Im actor is US, I will learn about America and talk about dramas, movies, and my daily life\n❤️US, Korea", "mentioned_profiles": []}}, "username": "actors-review", "power_badge": false, "display_name": "actor-review1", "active_status": "inactive", "verifications": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "follower_count": 1090, "custody_address": "0x99c7217798a58ce8ee28769d93c223d5de34c245", "following_count": 1546, "verified_addresses": {"eth_addresses": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XFVo6rSpYRwJtP9F6\"}"}', NULL), - (212989, '0x129a4e4e9c8e37a1b5f541af374d5b378017d7b0', 0, 1, '2024-05-05 13:01:41+00', 0, 2, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ 팁주지마세요♡\nhttps://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2916, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2335, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nu76h\"}"}', NULL), - (234461, '0xb4112bb0a93bfed5ee20e6c6731238036b9f577d', 0, 1, '2024-05-05 13:45:02+00', 0, 1, '{"fid": 492179, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a8259f8-eb00-4717-1463-d7bf705a7600/rectcrop3", "profile": {"bio": {"text": " my interests GYM & dance", "mentioned_profiles": []}}, "username": "dorsaa", "power_badge": false, "display_name": "Dorsaa 🎩🔮🍖", "active_status": "inactive", "verifications": ["0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa"], "follower_count": 802, "custody_address": "0x71f1b470319dd28a8ca31f76749ea882bec9fe4b", "following_count": 452, "verified_addresses": {"eth_addresses": ["0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/toomajsalehi/soorakh-moosh\"}"}', NULL), - (233994, '0x386f7fc1c8d7bd64d640934a771ea702a265c6fc', 0, 1, '2024-05-05 13:43:42+00', 0, 0, '{"fid": 499521, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/345fec63-3463-4c3c-7c70-9a85dd163100/original", "profile": {"bio": {"text": "AI MAKER /KOLLECTOR TEAM OG / HARDWORKING WORKER https://zora.co/@pixelmaster\n", "mentioned_profiles": []}}, "username": "pixelmaster", "power_badge": false, "display_name": "BLASTIOSE🍖", "active_status": "inactive", "verifications": ["0x253cde1f264329e997fceb4d577d1f0c1d2295c8"], "follower_count": 1061, "custody_address": "0x650319705b6831e4851e15ce1c6c981cedb45e63", "following_count": 638, "verified_addresses": {"eth_addresses": ["0x253cde1f264329e997fceb4d577d1f0c1d2295c8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rodwave/shooting-star\"}"}', NULL), - (175351, '0xf5d12ec7dbd36dfda1520deab241b959f82db143', 0, 1, '2024-05-05 10:53:48+00', 0, 2, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2872, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3290, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pj5C3FQjCn8g65ik9\"}"}', NULL), - (178156, '0x1db73ed2bfad6af835226804f6965cf5c407a47d', 0, 1, '2024-05-05 11:34:48+00', 0, 0, '{"fid": 448704, "object": "user", "pfp_url": "https://i.imgur.com/7m1dvgv.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "shole", "power_badge": false, "display_name": "Sholepad", "active_status": "inactive", "verifications": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "follower_count": 287, "custody_address": "0x81970265d0fce1f2340d7f0bee06bf4d74bb9458", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rnAkmxp7DSDLqF4Q9\"}"}', NULL), - (175462, '0x82fe1c5fc7924f28d4d70afb892eccb87c36d84e', 0, 1, '2024-05-05 10:54:39+00', 0, 0, '{"fid": 15431, "object": "user", "pfp_url": "https://i.imgur.com/o9DOv0w.jpg", "profile": {"bio": {"text": "music • multimedia • web3", "mentioned_profiles": []}}, "username": "mikestjean", "power_badge": false, "display_name": "mikestjean", "active_status": "inactive", "verifications": ["0xd3432463cf264f4def759ca6f8843d47dd00b2fd"], "follower_count": 56, "custody_address": "0xeb759daef284b77f4155e84267877f3cd8af897c", "following_count": 86, "verified_addresses": {"eth_addresses": ["0xd3432463cf264f4def759ca6f8843d47dd00b2fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bcF9YUhLRdyFmESJ9\"}"}', NULL), - (189892, '0x05bd363d6298d3ab736a00bbbf80e5f13f13168e', 0, 1, '2024-05-05 12:20:45+00', 0, 0, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1009, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 984, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/second-copy/yorushika-just-a-sunny-day-for-you?si=35a5d6dc1087491c829c6cb47f7fcb59&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (176341, '0x1f5466e398bfeb3ec151eff7c81ac2bc82c02193', 0, 1, '2024-05-05 11:13:45+00', 0, 1, '{"fid": 286375, "object": "user", "pfp_url": "https://i.imgur.com/0lq7phu.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "hyo141", "power_badge": false, "display_name": "charlie141🎩🍖🔵", "active_status": "inactive", "verifications": ["0x3146183dadd7eecb6be75960ea3f03809bd66c6b"], "follower_count": 2314, "custody_address": "0x4303459fb96cdd39aed5d43fa44601b3243d8a3b", "following_count": 686, "verified_addresses": {"eth_addresses": ["0x3146183dadd7eecb6be75960ea3f03809bd66c6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/senya-moro/i-really-want-to-stay-at-your?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (185296, '0x045ce9a5b02d4dd129b9081a71692efeb9ed1b21', 0, 1, '2024-05-05 12:01:00+00', 0, 2, '{"fid": 472997, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ2i1YDjqg6f16wUJgNpqTqrtNQyUa18wMNC6B6uXNGmD?filename=KakaoTalk_20240419_025514877.png", "profile": {"bio": {"text": "It''s a place where I share my daily life I want to be close with you.Come and see me often Have a nice day!", "mentioned_profiles": []}}, "username": "jinkyo", "power_badge": false, "display_name": " Jaykay", "active_status": "inactive", "verifications": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "follower_count": 2990, "custody_address": "0x9359eee17224661c3bc0df15f8f3367ed0f1884c", "following_count": 2966, "verified_addresses": {"eth_addresses": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/iu-eight-prod-feat-suga-of-bts?in=yangho-choi/sets/rrreyhgkgry2&si=555a19090ed446eea1f806f4df6c4d08&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (174479, '0x74d96386d64e5d681697329a91757e0489831f95', 0, 1, '2024-05-05 10:45:59+00', 0, 0, '{"fid": 409492, "object": "user", "pfp_url": "https://i.imgur.com/JC34B3o.jpg", "profile": {"bio": {"text": "$Degen 🎩🎩 소소한 일상을 공유해요. 슈캐로 마구마구 !!", "mentioned_profiles": []}}, "username": "!409492", "power_badge": false, "display_name": "peach🎩", "active_status": "inactive", "verifications": ["0x3663d35b69d1a290515e3471b03c4d68ff9584bb"], "follower_count": 1291, "custody_address": "0x3ea24ce99c3526f28a947fb9b5ae8e62eb33b97e", "following_count": 1083, "verified_addresses": {"eth_addresses": ["0x3663d35b69d1a290515e3471b03c4d68ff9584bb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fsehfrj4zaoy/newjeans-all-playlist?si=e3b22c666d304aa88fdaecae9a3ff28a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (205004, '0x973578fd0b47f5d99cf9a4aa8bc7b593a1f3a10f', 0, 1, '2024-05-05 12:46:32+00', 0, 0, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3119, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2965, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Lee Mujin (이무진) - 비와 당신 (Rain and You) (Hospital Playlist 2 - 슬기로운 의사생활 시즌2 OST Part 1) by L2ShareOST14 on #SoundCloud https://on.soundcloud.com/wZMVM\"}"}', NULL), - (185299, '0x6c75498bdce1f994773684e184d2ebb5bdddd750', 0, 1, '2024-05-05 12:01:05+00', 0, 12, '{"fid": 500738, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac0ab18d-18ab-44ca-68b6-b047648a5800/rectcrop3", "profile": {"bio": {"text": "열심히 하는건 누구보다 자신 있습니다!\n슈퍼캐스트로 2배로 빠르게 보답하겠습니다🔥", "mentioned_profiles": []}}, "username": "premium191004", "power_badge": false, "display_name": "Degen_Moon", "active_status": "inactive", "verifications": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "follower_count": 1017, "custody_address": "0x86582a580e1ccd25fab0e894ba9598116df46d23", "following_count": 876, "verified_addresses": {"eth_addresses": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TmPB6T3mezGWLQSe7\"}"}', NULL), - (178357, '0xc7141ab556984c06b2349975fc3f0de0ae9f3db9', 0, 1, '2024-05-05 11:37:16+00', 0, 2, '{"fid": 448704, "object": "user", "pfp_url": "https://i.imgur.com/7m1dvgv.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "shole", "power_badge": false, "display_name": "Sholepad", "active_status": "inactive", "verifications": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "follower_count": 287, "custody_address": "0x81970265d0fce1f2340d7f0bee06bf4d74bb9458", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "sol_addresses": []}}', '{"{\"url\":\"Listen to You&Me by Lil Eri on #SoundCloud https://on.soundcloud.com/iJrvj\"}"}', NULL), - (198224, '0x0688ca5efc7aa34ffe9e612232175b642b948f03', 0, 1, '2024-05-05 12:34:00+00', 0, 0, '{"fid": 403159, "object": "user", "pfp_url": "https://i.imgur.com/APhu5uH.jpg", "profile": {"bio": {"text": "Hello, let’s all become rich with coins and travel the world.\n반사 100% 갑니다!!!!", "mentioned_profiles": []}}, "username": "alfen", "power_badge": false, "display_name": "Alfen / F4F", "active_status": "inactive", "verifications": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "follower_count": 2494, "custody_address": "0xa548a7f8235abfd83d32a79a3483c0dcddfc266e", "following_count": 2827, "verified_addresses": {"eth_addresses": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 버즈 Buzz -남자를 몰라 by Pedigrees on #SoundCloud https://on.soundcloud.com/zAYS4\"}"}', NULL), - (176299, '0x08836071636116b8c9aa7fdfe2e567428d5c2e44', 0, 1, '2024-05-05 11:13:14+00', 0, 1, '{"fid": 232303, "object": "user", "pfp_url": "https://i.imgur.com/w9kg5r6.jpg", "profile": {"bio": {"text": "Gmi", "mentioned_profiles": []}}, "username": "f-society.eth", "power_badge": false, "display_name": "F-society", "active_status": "inactive", "verifications": ["0x3e3672b23eb22946a31263d2d178bf0fb1f4bbfd"], "follower_count": 119, "custody_address": "0x6a40f71d7e9c38a858ab2ff6c78595382a7b64d8", "following_count": 218, "verified_addresses": {"eth_addresses": ["0x3e3672b23eb22946a31263d2d178bf0fb1f4bbfd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/stkGGtBUriuBEVsb7\"}"}', NULL), - (1161559, '0x9a091e6b89ed4695b24031a93b34c7521a5e6db4', 0, 1, '2024-05-09 00:23:55+00', 0, 0, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 313, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 261, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4E2XQPB1tO48Q7xtnXzDUG?si=6ES-9LplSK6oRqYdQN3VQg&context=spotify%3Aplaylist%3A2xnG5KJuEIN8oNF9Xdnrv0\"}"}', NULL), - (176203, '0x7d892459acf99d5eef4fe070d5f4657cd449897a', 0, 1, '2024-05-05 11:09:00+00', 0, 1, '{"fid": 258025, "object": "user", "pfp_url": "https://i.imgur.com/J6v5lPL.jpg", "profile": {"bio": {"text": " 𝓢𝓽𝓮𝓵𝓵𝓪𝓼 𝓼𝓹𝓮𝓬𝓽𝓪, 𝓮𝓽 𝓹𝓮𝓭𝓮𝓼 𝓲𝓷 𝓽𝓮𝓻𝓻𝓪 𝓽𝓮𝓷𝓮.\nAlphadrop", "mentioned_profiles": []}}, "username": "0xgrif", "power_badge": false, "display_name": "0xReizel🔵", "active_status": "inactive", "verifications": ["0xb3af8fbc63abaea31e0a4ddb268e15a9ab6dc67f", "0x36e11b45bac6e3b2fd940b0d077d72a8af704e4e"], "follower_count": 305, "custody_address": "0x589ee17d0d4cdff329034129f90d613fb5136bcd", "following_count": 29, "verified_addresses": {"eth_addresses": ["0xb3af8fbc63abaea31e0a4ddb268e15a9ab6dc67f", "0x36e11b45bac6e3b2fd940b0d077d72a8af704e4e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Z2FvDFZSDQ23s4BDqpWqZ?si=zq3owNYlQ8m8Q_xiQW_E5A\"}"}', NULL), - (225581, '0x76de20ae53ba2e943dd532bad90cf412630e9297', 0, 1, '2024-05-05 13:27:51+00', 0, 1, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1559, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1274, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gkaLmVod1i9ixkA37\"}"}', NULL), - (175246, '0x81f1ada1ed275d631a93bfc32b3efb11ad111f62', 0, 1, '2024-05-05 10:51:03+00', 0, 1, '{"fid": 513572, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2cfa741f-dac1-4b14-3b17-e910da27b600/original", "profile": {"bio": {"text": "Happy & Shiny 🫠", "mentioned_profiles": []}}, "username": "!513572", "power_badge": false, "display_name": "Blue ", "active_status": "inactive", "verifications": ["0x39c1a1e28aadbdac05454243048976546061128b"], "follower_count": 210, "custody_address": "0x39c1a1e28aadbdac05454243048976546061128b", "following_count": 489, "verified_addresses": {"eth_addresses": ["0x39c1a1e28aadbdac05454243048976546061128b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/direalshaggy/boombastic?si=a3b020b0c1734f59b21808bbf74ec0fe&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (190587, '0x45b057564f44df313ff335e34b3374e1e5122201', 0, 1, '2024-05-05 12:22:05+00', 0, 1, '{"fid": 408838, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/21959c30-6ffb-4d9d-53ad-64f0983b3600/original", "profile": {"bio": {"text": "조금 늦더라도 답장 갈게요\n Thank you so much💖 Let’s overcome these difficult times together. 🍀 우리는 굴하지 않아요!\n100% F4F, 3종, 🌈반사, 화력지원🔥", "mentioned_profiles": []}}, "username": "idearule", "power_badge": false, "display_name": "u_bin", "active_status": "inactive", "verifications": ["0x33d5fa63725fb6b739c96f7e0a62f4f58808f97f"], "follower_count": 2925, "custody_address": "0x1e4d60d70e5280c05ed222481eff040598f859fc", "following_count": 2852, "verified_addresses": {"eth_addresses": ["0x33d5fa63725fb6b739c96f7e0a62f4f58808f97f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thenoisyfreaks/mark-ronson-ft-bruno-mars-uptown-funk-the-noisy-freaks-ft-andrew-hunt-remix\"}"}', NULL), - (184859, '0x05f831d4f08718fdbd96453639845ae348f2b5f1', 0, 1, '2024-05-05 11:59:45+00', 0, 5, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 949, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 892, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R2dDCp1dyzHbiM5d8\"}"}', NULL), - (195249, '0x3d673dfd44be145ce7b45bbd461d19c3f14032bc', 0, 1, '2024-05-05 12:30:48+00', 0, 0, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2651, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2945, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/526fD9LiAEi3KKvhhYfWmm?si=762cfcd40bfd4903\"}"}', NULL), - (226176, '0xd5fbe8866eb4fda3051fb8e08db78d028cf8b456', 0, 1, '2024-05-05 13:28:49+00', 0, 1, '{"fid": 316433, "object": "user", "pfp_url": "https://i.imgur.com/Ui5famV.jpg", "profile": {"bio": {"text": "Turn your wounds into wistom ✨✨\n행복한 워캐인이 되어 보아요 🤘🤘", "mentioned_profiles": []}}, "username": "dechard", "power_badge": false, "display_name": "KaonasHi", "active_status": "inactive", "verifications": ["0xea2653aae908ac94d7529487f4b11dcf3f7b25c6"], "follower_count": 2713, "custody_address": "0x6beb45614d20efcc9ca728fd2eb829b95ba21c0e", "following_count": 3948, "verified_addresses": {"eth_addresses": ["0xea2653aae908ac94d7529487f4b11dcf3f7b25c6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-kr/sets/soul?si=2119141862574e6fb29eee4d8f773615&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (205007, '0xbfbf5b54fe40d0ce5ac92eb429238a3a06225ed3', 0, 1, '2024-05-05 12:46:55+00', 0, 0, '{"fid": 496665, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQLfrGWJ1KXBP5tPNrEhSQiBYGpzdCvy6DmgLxfwMVrJj?filename=.jpg", "profile": {"bio": {"text": "NewjeanSNKRS page", "mentioned_profiles": []}}, "username": "ruvv", "power_badge": false, "display_name": "NewjeanSNKRS", "active_status": "inactive", "verifications": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "follower_count": 1296, "custody_address": "0xfed77a68bf6da88aa0b78e904820451ebaecfc94", "following_count": 2174, "verified_addresses": {"eth_addresses": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VMD4ddqzEXwiGaGQA\"}"}', NULL), - (216586, '0xf6011195048ef0a316c19114ed643053f16db97d', 0, 1, '2024-05-05 13:08:42+00', 0, 3, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2652, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2945, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/xc5awfjbtmyh/yerin-baek-dance-on-you-2023?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (184857, '0xef2e580eb34f44971c198e1b179f6e7ccfedd520', 0, 1, '2024-05-05 11:59:51+00', 0, 4, '{"fid": 500345, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7194d65a-385a-4117-d0b8-9c9edd68e600/rectcrop3", "profile": {"bio": {"text": "Love Crypto, Stocks❤️", "mentioned_profiles": []}}, "username": "ehxin1234", "power_badge": false, "display_name": "ehXin🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "follower_count": 538, "custody_address": "0x9ff2214b14e4089191bb7b51a911d31073d0ebef", "following_count": 908, "verified_addresses": {"eth_addresses": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1ukyvyEeSg1odSQvhlRAIU?si=394045143fbb4c22\"}"}', NULL), - (178051, '0x7ac446f20f0eb097a97dafa48bd8222147db5c5d', 0, 1, '2024-05-05 11:32:53+00', 0, 0, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1385, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 346, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-360568339/whiskey-cola-and-tequila-tekk-remix\"}"}', NULL), - (178583, '0x99d8d0576368d620c4d17cbb325f0baa81b46164', 0, 1, '2024-05-05 11:38:03+00', 0, 0, '{"fid": 512807, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71fea5ce-dd27-4145-3057-64e202f0f100/rectcrop3", "profile": {"bio": {"text": "very beautiful and modest girl", "mentioned_profiles": []}}, "username": "!512807", "power_badge": false, "display_name": "Kris", "active_status": "inactive", "verifications": ["0x611827e5ed232cc25f7df66e7d036445eeb9b228"], "follower_count": 33, "custody_address": "0x97083e084cac537bed4e37d6c1dd2bce56db586f", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x611827e5ed232cc25f7df66e7d036445eeb9b228"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7j11kweUisnrtAuN6\"}"}', NULL), - (186262, '0xcbfe8404f7338797794ae9d7f4248dafa66c9982', 0, 1, '2024-05-05 12:04:35+00', 0, 0, '{"fid": 453716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b820d6d7-e6f7-4390-7ba4-16b3f4ebf300/rectcrop3", "profile": {"bio": {"text": "Have a happy day!🥰", "mentioned_profiles": []}}, "username": "jay02", "power_badge": false, "display_name": "bella🎩🍖", "active_status": "inactive", "verifications": ["0xe936e7ab13cb8bec56e0099c098589a07815b7b1"], "follower_count": 2468, "custody_address": "0xf77795ecc7684c412bf047b0a95205a2b7baebc4", "following_count": 2604, "verified_addresses": {"eth_addresses": ["0xe936e7ab13cb8bec56e0099c098589a07815b7b1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VBvsR\"}"}', NULL), - (175788, '0xe582d6bf2d453e81e5c8e99189bc3cf5250406ac', 0, 1, '2024-05-05 11:03:43+00', 0, 1, '{"fid": 404215, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cfc9af5-8575-451b-d271-361f49fd7e00/rectcrop3", "profile": {"bio": {"text": "Koreans Love Warpcast", "mentioned_profiles": []}}, "username": "kingco88", "power_badge": false, "display_name": "kimgo88", "active_status": "inactive", "verifications": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "follower_count": 2706, "custody_address": "0xe7dc0bb80e93b20b24e057257dd8004942001d22", "following_count": 2190, "verified_addresses": {"eth_addresses": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gvexnb8lxqzo/sets/hvhbao45xp6s?si=869bef6baf5e47458b50728c1529e2e1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (187617, '0xae3a48a32d4c51fcfbb79f75ffc16465913a0818', 0, 1, '2024-05-05 12:11:39+00', 0, 0, '{"fid": 508766, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed96a51a-422e-4a8c-95ae-4fe69e864900/original", "profile": {"bio": {"text": "1930년생 개띠 인사올립니다", "mentioned_profiles": []}}, "username": "!508766", "power_badge": false, "display_name": "할배👴", "active_status": "inactive", "verifications": ["0x48bf08eaf0eecf9ca3e89430c6431f5eb0577e98"], "follower_count": 337, "custody_address": "0x70030c751e657fcbe7b65ed9b2437d9a12087535", "following_count": 1793, "verified_addresses": {"eth_addresses": ["0x48bf08eaf0eecf9ca3e89430c6431f5eb0577e98"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/end-of-the-century-599107943/here-i-go-again?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (236524, '0x9274eee924887ab2ae74af1aa439fc35b5e0d93b', 0, 1, '2024-05-05 13:50:49+00', 0, 2, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1559, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1274, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iZYFw8RnvfJw5qug7\"}"}', NULL), - (178167, '0x5fa2bba0fe99648206c1aacb6d32ad9d07e1785c', 0, 1, '2024-05-05 11:33:09+00', 0, 1, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 276, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 331, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3bkJGk3kZ308GXKMTsVpaM?si=W0EcnKOvR_q2GycXI08cmQ\"}"}', NULL), - (199846, '0xe000978d747452e44e7f02e9a185d32bdc7ae5e2', 0, 1, '2024-05-05 12:35:30+00', 0, 0, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1416, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1724, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/e6w8olkrksj7/sets/blfe5i1fkytl?si=4dc022771add4846a3fd0d607248ab50&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (196267, '0x4fd4abac28ebdb10fa204b8f9c99a9796e3acc66', 0, 1, '2024-05-05 12:30:57+00', 0, 0, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1705, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n6P3eC4cYmrWfvFDA\"}"}', NULL), - (186263, '0xc072b58b893b93bdd678dceacd91ba5223cc6082', 0, 1, '2024-05-05 12:04:51+00', 0, 3, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "follower_count": 2106, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2460, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Nz4NSQXqq1JVECtt5\"}"}', NULL), - (205008, '0x57cdfc7b92ba590916869fe978d43261b54c954c', 0, 1, '2024-05-05 12:46:14+00', 0, 0, '{"fid": 500809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7861217-86ed-41d0-359e-391353cd6700/original", "profile": {"bio": {"text": "I love kpop", "mentioned_profiles": []}}, "username": "melon99", "power_badge": false, "display_name": "melon99", "active_status": "inactive", "verifications": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "follower_count": 861, "custody_address": "0xf0a460f01a1c2a8174d399bd3e423eeb8e9701b3", "following_count": 836, "verified_addresses": {"eth_addresses": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Q4HyLehVyOruIJ1bYA3LV\"}"}', NULL), - (198945, '0xfcb343504980f0e0933e0576f783c70f0d8cefa4', 0, 1, '2024-05-05 12:35:05+00', 0, 0, '{"fid": 374192, "object": "user", "pfp_url": "https://i.imgur.com/jG6RwlI.jpg", "profile": {"bio": {"text": "😫Stop whinning & Start winnig 😎\nThe Goals in oure live s Deserve to be Reached ", "mentioned_profiles": []}}, "username": "lastlight", "power_badge": false, "display_name": "Shayan 🎩 🔵 ⛓️ 🔮", "active_status": "inactive", "verifications": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "follower_count": 1211, "custody_address": "0xc256c0dc94d268052d65ca85247fd95033c0e7bf", "following_count": 1385, "verified_addresses": {"eth_addresses": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "sol_addresses": ["CCkNB1K4viy87HxawUNH95Y9Xy2gc2xW537RLBm8zN7K"]}}', '{"{\"url\":\"https://on.soundcloud.com/kheeT\"}"}', NULL), - (246577, '0x7362257d43bda7ad2161bf8325c243fbec019369', 0, 1, '2024-05-05 14:08:10+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/themarssaturnsound/8-ep-we-are-not?in=sc-playlists-jp/sets/freshest-chillest-beats&si=b4acf98f7ee04f33a3064a83cea883d7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (175904, '0x196b72a86783516d24ea6f240a93be7783faac9c', 0, 1, '2024-05-05 11:04:34+00', 0, 2, '{"fid": 404215, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cfc9af5-8575-451b-d271-361f49fd7e00/rectcrop3", "profile": {"bio": {"text": "Koreans Love Warpcast", "mentioned_profiles": []}}, "username": "kingco88", "power_badge": false, "display_name": "kimgo88", "active_status": "inactive", "verifications": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "follower_count": 2706, "custody_address": "0xe7dc0bb80e93b20b24e057257dd8004942001d22", "following_count": 2190, "verified_addresses": {"eth_addresses": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gvexnb8lxqzo/sets/hvhbao45xp6s?si=869bef6baf5e47458b50728c1529e2e1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (177759, '0xc2fb9c70ca4971ea07e084c4c88289d15846a43b', 0, 1, '2024-05-05 11:28:41+00', 0, 2, '{"fid": 494509, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c60c398c-14c8-4522-2c46-1dca3c4add00/rectcrop3", "profile": {"bio": {"text": "build your imagine..", "mentioned_profiles": []}}, "username": "spunky", "power_badge": false, "display_name": "spunky.eth", "active_status": "inactive", "verifications": ["0xdb03cfe4a7fda20487ea00a09a5624509b5506ca"], "follower_count": 5, "custody_address": "0xdb03cfe4a7fda20487ea00a09a5624509b5506ca", "following_count": 78, "verified_addresses": {"eth_addresses": ["0xdb03cfe4a7fda20487ea00a09a5624509b5506ca"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FxWDEYhbHKZqaZdK9\"}"}', NULL), - (247104, '0xebe7c29955f9b7deb36c797b95f621db751c0ebe', 0, 1, '2024-05-05 14:18:18+00', 0, 0, '{"fid": 501321, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca57c016-5e06-4a3d-72f9-4b3caf7d8e00/rectcrop3", "profile": {"bio": {"text": "I ♡ Warpcast", "mentioned_profiles": []}}, "username": "pac-man", "power_badge": false, "display_name": "Pac-Man ", "active_status": "inactive", "verifications": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "follower_count": 432, "custody_address": "0x60f94177f397b96045804dd97f914a2adbf04dd3", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 김범수 - 끝사랑 by yfddx on #SoundCloud https://on.soundcloud.com/xfWBx\"}"}', NULL), - (212988, '0xae8f08f8aa929635a4f66b65077fa21be54cf5b2', 0, 1, '2024-05-05 13:01:21+00', 0, 1, '{"fid": 454238, "object": "user", "pfp_url": "https://i.imgur.com/3xSLH5h.jpg", "profile": {"bio": {"text": "Enjoy Warpcast together!", "mentioned_profiles": []}}, "username": "strive", "power_badge": false, "display_name": "StriveD", "active_status": "inactive", "verifications": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "follower_count": 2167, "custody_address": "0xa2bbc7337888cc53d4a80fbb14fae4fa4349e40d", "following_count": 2126, "verified_addresses": {"eth_addresses": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ma-nin/g-easy-ft-halsey-him-and-i-school-bus-remix\"}"}', NULL), - (210044, '0x50f54988018b8a297895c34c4943fa92681ee1a2', 0, 1, '2024-05-05 12:54:52+00', 0, 1, '{"fid": 428653, "object": "user", "pfp_url": "https://i.imgur.com/t3HbkB5.jpg", "profile": {"bio": {"text": "안녕하세요 ", "mentioned_profiles": []}}, "username": "ouol", "power_badge": false, "display_name": "Opao", "active_status": "inactive", "verifications": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "follower_count": 503, "custody_address": "0xdcd0b48bef59e22ef7506689aa61df35e9a9140c", "following_count": 547, "verified_addresses": {"eth_addresses": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tayo_sound/cold-feet-1\"}"}', NULL), - (175767, '0x1aae5d71faf4c074870d63640258b9ab2b810d84', 0, 1, '2024-05-05 11:03:52+00', 0, 15, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 1981, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2830, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0UaaFmF3xUwMjnuAHBq7qL?si=JOQ5UplXQJSg92KxBD3XaQ&pi=wZ5YRcekRxWdB\"}"}', NULL), - (216589, '0x4bc0df0e68d2f9936f86a6c731c489ec031c9e72', 0, 1, '2024-05-05 13:08:29+00', 0, 1, '{"fid": 413505, "object": "user", "pfp_url": "https://i.imgur.com/Qs5haUX.jpg", "profile": {"bio": {"text": "i''m the king of the world", "mentioned_profiles": []}}, "username": "teetr", "power_badge": false, "display_name": "teetr", "active_status": "inactive", "verifications": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "follower_count": 1256, "custody_address": "0x210e5c9b953144bcc69a2d4f9e46ca20a08f2c3f", "following_count": 1287, "verified_addresses": {"eth_addresses": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/puXy1StqQvdaRkiy5\"}"}', NULL), - (217364, '0xe12004a45f1305936b9c959c6f7ffe97e128861b', 0, 1, '2024-05-05 13:10:05+00', 0, 5, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1120, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1063, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qqazumlaagxb/ost-part-3-mp3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (224992, '0x5fa94a487bf5f2aad84ba1bf73005e23fe6c7539', 0, 1, '2024-05-05 13:27:07+00', 0, 0, '{"fid": 329190, "object": "user", "pfp_url": "https://i.imgur.com/h3o4Ntz.jpg", "profile": {"bio": {"text": "Nice to meet you. thank you.", "mentioned_profiles": []}}, "username": "komasugi", "power_badge": false, "display_name": "komasugi🎩🍖", "active_status": "inactive", "verifications": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "follower_count": 1210, "custody_address": "0x88ce15b0d31e50d0e3fcc1e64a782c2f6b87c3e6", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/p9re0qw18pal/znppcxnad2rv?si=a9b3ab79c697470ca1c97d0ffc10d869&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (176017, '0xe43280521a47542d59012ce34d784add77fd2d59', 0, 1, '2024-05-05 11:06:05+00', 0, 13, '{"fid": 408838, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/21959c30-6ffb-4d9d-53ad-64f0983b3600/original", "profile": {"bio": {"text": "조금 늦더라도 답장 갈게요\n Thank you so much💖 Let’s overcome these difficult times together. 🍀 우리는 굴하지 않아요!\n100% F4F, 3종, 🌈반사, 화력지원🔥", "mentioned_profiles": []}}, "username": "idearule", "power_badge": false, "display_name": "u_bin", "active_status": "inactive", "verifications": ["0x33d5fa63725fb6b739c96f7e0a62f4f58808f97f"], "follower_count": 2925, "custody_address": "0x1e4d60d70e5280c05ed222481eff040598f859fc", "following_count": 2852, "verified_addresses": {"eth_addresses": ["0x33d5fa63725fb6b739c96f7e0a62f4f58808f97f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamescarterpresents/shape-of-you\"}"}', NULL), - (176234, '0x2d99ca32475144cd8ffaab4abd04f3648dcd4732', 0, 1, '2024-05-05 11:10:46+00', 0, 1, '{"fid": 258025, "object": "user", "pfp_url": "https://i.imgur.com/J6v5lPL.jpg", "profile": {"bio": {"text": " 𝓢𝓽𝓮𝓵𝓵𝓪𝓼 𝓼𝓹𝓮𝓬𝓽𝓪, 𝓮𝓽 𝓹𝓮𝓭𝓮𝓼 𝓲𝓷 𝓽𝓮𝓻𝓻𝓪 𝓽𝓮𝓷𝓮.\nAlphadrop", "mentioned_profiles": []}}, "username": "0xgrif", "power_badge": false, "display_name": "0xReizel🔵", "active_status": "inactive", "verifications": ["0xb3af8fbc63abaea31e0a4ddb268e15a9ab6dc67f", "0x36e11b45bac6e3b2fd940b0d077d72a8af704e4e"], "follower_count": 305, "custody_address": "0x589ee17d0d4cdff329034129f90d613fb5136bcd", "following_count": 29, "verified_addresses": {"eth_addresses": ["0xb3af8fbc63abaea31e0a4ddb268e15a9ab6dc67f", "0x36e11b45bac6e3b2fd940b0d077d72a8af704e4e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1AT5viFqaGU9Hu5smdNlgB?si=DpPsDcCLRUWhZ7Sp5xNyTQ\"}"}', NULL), - (210043, '0x3efb1aeda67837e2571b8e5c2008337ce71df312', 0, 1, '2024-05-05 12:54:31+00', 0, 0, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3119, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2965, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/W1YLP\"}"}', NULL), - (175906, '0x69c61f6f96c2a6e3c1e75bd44f44c289fd306d0b', 0, 1, '2024-05-05 11:04:26+00', 0, 0, '{"fid": 15230, "object": "user", "pfp_url": "https://i.imgur.com/WOFsV3M.gif", "profile": {"bio": {"text": "Sneakerhead, Web3, Bike NYC, Orthopedic Surgeon Sports Medicine, \nFollow /orthocast channel for the latest in orthopedics! paragraph.xyz/@arthrokinetix", "mentioned_profiles": []}}, "username": "kj", "power_badge": false, "display_name": "KPJMD", "active_status": "inactive", "verifications": ["0x137878d2e1ca1739e3f584bdf43741a739df3e7f", "0x7eb4655fda4e8cbc716af595bb961c29ddea58f1"], "follower_count": 201, "custody_address": "0x424b36dc42ddb10dfe75bf9188972e5d8c9475b5", "following_count": 65, "verified_addresses": {"eth_addresses": ["0x137878d2e1ca1739e3f584bdf43741a739df3e7f", "0x7eb4655fda4e8cbc716af595bb961c29ddea58f1"], "sol_addresses": ["CbC38wfEN2AXR9eFkiTMRGCJVVgPF1gt69tfodENaNwf"]}}', '{"{\"url\":\"https://soundcloud.com/wu-tang-clan-official/reunited\"}"}', NULL), - (454757, '0x3c2fa0ad26282081683ebfcce71947087d30dff2', 0, 1, '2024-05-06 06:50:31+00', 0, 1, '{"fid": 380504, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeic5ar7c4mrrkj2oz6j36a6afefh7a5rdimzlepkkeozrti3ws636u", "profile": {"bio": {"text": "what you think about me is what I am", "mentioned_profiles": []}}, "username": "colderine", "power_badge": false, "display_name": "Colderine 🎩🍖☔", "active_status": "inactive", "verifications": ["0x1464728dc12e635e15c250981c047eb888e44dd6"], "follower_count": 675, "custody_address": "0xd163c704410e9b880d0f819631b8990704771c50", "following_count": 184, "verified_addresses": {"eth_addresses": ["0x1464728dc12e635e15c250981c047eb888e44dd6"], "sol_addresses": ["5oo2TYAQXVfvioLce6rbSTQC8KvpAimUghg25YsATqYJ"]}}', '{"{\"url\":\"https://on.soundcloud.com/1QbUa\"}"}', NULL), - (164866, '0x7aa37760b4d0b8dc77dcc908a26a50cd85cc7eb6', 0, 1, '2024-05-05 09:58:23+00', 0, 6, '{"fid": 490133, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7307f7c7-4ac7-4a56-8928-2a5d12677e00/rectcrop3", "profile": {"bio": {"text": "New bie . Don’t see me !", "mentioned_profiles": []}}, "username": "wem", "power_badge": false, "display_name": "Thani | 𝕏™", "active_status": "inactive", "verifications": ["0x42eabe5e25cc092eae837961be75bd5dfe182969"], "follower_count": 1, "custody_address": "0x93525735e4242b7a24fb1a80f99c3f159db74809", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x42eabe5e25cc092eae837961be75bd5dfe182969"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/sadye/pretty-traumatized\"}"}', NULL), - (226553, '0x07df5da7c3046a1670e9ed81ece707999fdac0c1', 0, 1, '2024-05-05 13:30:00+00', 0, 5, '{"fid": 323975, "object": "user", "pfp_url": "https://i.imgur.com/aHyJtGw.jpg", "profile": {"bio": {"text": "너와 나의 연결고리. \n매너있게 재미있게 즐겁게 소통해요.\n좋은 정보 공유하도록 노력할께요~", "mentioned_profiles": []}}, "username": "daonpapa", "power_badge": false, "display_name": "Onpapa🎩", "active_status": "inactive", "verifications": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "follower_count": 1601, "custody_address": "0x9f09e9d1b492398f7f5d2a3d780eca0ed24af007", "following_count": 2898, "verified_addresses": {"eth_addresses": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0WHzRzinRoUzW7vX7xhSLD?si=7079a299093d41f6\"}"}', 'sonata'), - (191140, '0xe719095d7a89d8b10147e57cf1a4d8d5654f9959', 0, 1, '2024-05-05 12:22:31+00', 2, 1, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3404, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1949, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JT8vg\"}"}', NULL), - (176366, '0x4e3f76fe6a3e3c701cff0c55844f8dbcc898975e', 0, 1, '2024-05-05 11:15:09+00', 0, 2, '{"fid": 500766, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84adc320-eb68-4b3c-6841-434f34103c00/rectcrop3", "profile": {"bio": {"text": "Hi i am btc holder\nlove base chain", "mentioned_profiles": []}}, "username": "bugflea", "power_badge": false, "display_name": "Bug Flea", "active_status": "inactive", "verifications": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "follower_count": 1031, "custody_address": "0xe00948c3e45a725ef1a0e90b131f960d8644d0af", "following_count": 789, "verified_addresses": {"eth_addresses": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G8vNRhY4qaNnrqPm8\"}"}', NULL), - (178904, '0xc69971f3a3e45f68cd5625d3ad13d410153bc095', 0, 1, '2024-05-05 11:39:34+00', 0, 0, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 722, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9gDbCUptQcDPPKh37\"}"}', NULL), - (214999, '0x4be86d4d93d07837029d5fcb28e02fc7c73741b8', 0, 1, '2024-05-05 13:04:58+00', 0, 0, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 457, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 759, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 임창정 - 소주한잔 (cover) by YSKM on #SoundCloud https://on.soundcloud.com/c6seh\"}"}', NULL), - (177851, '0x73c87b0bc103b8ea63a5ddf59c5edcf0868df688', 100, 1, '2024-05-05 11:30:14+00', 0, 0, '{"fid": 453489, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/611a6f69-2d95-443b-166a-b2ad44e35a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "6reder", "power_badge": false, "display_name": "Hoosein", "active_status": "inactive", "verifications": ["0xcadf8999361237362d9bd0f02331c24231e3f86f"], "follower_count": 478, "custody_address": "0x37b3afea116c12ca72b515c944d9607f3c2bc38e", "following_count": 1351, "verified_addresses": {"eth_addresses": ["0xcadf8999361237362d9bd0f02331c24231e3f86f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vgkey464/wvnouiam45kp\"}"}', NULL), - (191141, '0xbc7e56de0afce5f985d789686c90cff28306ef3b', 0, 1, '2024-05-05 12:22:31+00', 0, 0, '{"fid": 503301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd149365-f560-4f73-074e-96f79e694d00/rectcrop3", "profile": {"bio": {"text": "Novice crypto investor |\nWife | CXO @ a startup |\nWork hard play harder!💗", "mentioned_profiles": []}}, "username": "woodrose", "power_badge": false, "display_name": "woodrose", "active_status": "inactive", "verifications": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "follower_count": 1009, "custody_address": "0x40a5d849f9631932cdd264d48cd37289c003afd2", "following_count": 1109, "verified_addresses": {"eth_addresses": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kfRtvf9D7HKF5N7S6\"}"}', NULL), - (540452, '0x5e5b1dde34597d66337e3857a13c7072dab9837f', 0, 1, '2024-05-06 09:54:30+00', 0, 0, '{"fid": 424774, "object": "user", "pfp_url": "https://i.imgur.com/hKlLOFJ.jpg", "profile": {"bio": {"text": "I am Japanese and would like to communicate with you all.\nAnime🍡, Manga📖, Art🎨, Trade💹, Flower🌸, Pokemon, ogiri\n▼father of 3 kids", "mentioned_profiles": []}}, "username": "kutakuta1001", "power_badge": false, "display_name": "kutakuta1001🍡💉", "active_status": "inactive", "verifications": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "follower_count": 1198, "custody_address": "0x815126572cd6e50d6dd08be2d5289d87f394e80e", "following_count": 1384, "verified_addresses": {"eth_addresses": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "sol_addresses": ["8vdRYGZvottLVRgUraBH2kikvLuaPypY7dweuBSon6BR"]}}', '{"{\"url\":\"https://on.soundcloud.com/Focdv\"}"}', 'anime-manga'), - (210045, '0x0ef1993f029e90a0f263b0f59dab96467a01b30e', 0, 1, '2024-05-05 12:54:37+00', 0, 2, '{"fid": 355023, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0c09cf45-0663-4cd7-f92b-6413317d2300/rectcrop3", "profile": {"bio": {"text": "\nvintagebus3\n", "mentioned_profiles": []}}, "username": "vintagebus", "power_badge": false, "display_name": "vintagebus3", "active_status": "inactive", "verifications": ["0xb5ca0b9730ce5a3414f798efdd2e4c354baa7353"], "follower_count": 2399, "custody_address": "0x05ed827972cbfd320f971c63abc0f845065e0eb6", "following_count": 2161, "verified_addresses": {"eth_addresses": ["0xb5ca0b9730ce5a3414f798efdd2e4c354baa7353"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EBpuGHSoq4fx7eZu6\"}"}', NULL), - (239492, '0x340f865adb5923678c87232b03f0b9597ae27c81', 0, 1, '2024-05-05 13:57:02+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2349, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4108, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kloocrew/minijeans \"}"}', NULL), - (175636, '0x431ada4e6901fd82d2e4a290e8150b1054bb36d6', 0, 1, '2024-05-05 10:59:10+00', 0, 2, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1862, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/3geobuf1RYocmmvF9\"}"}', NULL), - (175905, '0x1b610027c152054ee0df61189c675b3196eb2e9d', 0, 1, '2024-05-05 11:04:51+00', 0, 0, '{"fid": 258025, "object": "user", "pfp_url": "https://i.imgur.com/J6v5lPL.jpg", "profile": {"bio": {"text": " 𝓢𝓽𝓮𝓵𝓵𝓪𝓼 𝓼𝓹𝓮𝓬𝓽𝓪, 𝓮𝓽 𝓹𝓮𝓭𝓮𝓼 𝓲𝓷 𝓽𝓮𝓻𝓻𝓪 𝓽𝓮𝓷𝓮.\nAlphadrop", "mentioned_profiles": []}}, "username": "0xgrif", "power_badge": false, "display_name": "0xReizel🔵", "active_status": "inactive", "verifications": ["0xb3af8fbc63abaea31e0a4ddb268e15a9ab6dc67f", "0x36e11b45bac6e3b2fd940b0d077d72a8af704e4e"], "follower_count": 305, "custody_address": "0x589ee17d0d4cdff329034129f90d613fb5136bcd", "following_count": 29, "verified_addresses": {"eth_addresses": ["0xb3af8fbc63abaea31e0a4ddb268e15a9ab6dc67f", "0x36e11b45bac6e3b2fd940b0d077d72a8af704e4e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Z2FvDFZSDQ23s4BDqpWqZ?si=Wj0WckWkQxmKDraJSYcxrQ\"}"}', NULL), - (176637, '0xf49878013ea5d9c70176a8700f5ed9e6e70a3763', 410, 1, '2024-05-05 11:16:45+00', 30, 25, '{"fid": 500766, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84adc320-eb68-4b3c-6841-434f34103c00/rectcrop3", "profile": {"bio": {"text": "Hi i am btc holder\nlove base chain", "mentioned_profiles": []}}, "username": "bugflea", "power_badge": false, "display_name": "Bug Flea", "active_status": "inactive", "verifications": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "follower_count": 1031, "custody_address": "0xe00948c3e45a725ef1a0e90b131f960d8644d0af", "following_count": 789, "verified_addresses": {"eth_addresses": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eFKsmMF6ch8RiJUC7\"}"}', NULL), - (203621, '0xd135f440ccd3e1d6b42b6986a57ca535f1eff807', 0, 1, '2024-05-05 12:42:34+00', 0, 0, '{"fid": 507319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/585701f0-9f84-4b85-e0e0-f8230c408a00/rectcrop3", "profile": {"bio": {"text": "Investing in crypto,gaming,ai, spatial computing, and freedom technology\n\nhttps://warpcast.com/songpa-parrot", "mentioned_profiles": []}}, "username": "!507319", "power_badge": false, "display_name": "Songparian", "active_status": "inactive", "verifications": ["0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff", "0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff"], "follower_count": 543, "custody_address": "0xe37b7ec6a063e78ae7d551f4a2119248ec6763aa", "following_count": 1515, "verified_addresses": {"eth_addresses": ["0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff", "0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cosmos-68404702/s4naye8czpb8?ref=clipboard&p=a&c=0&si=b3a7957ca7f0446ea643c750a44e5783&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (390583, '0x9cf73b0342889289973e6bb58fb785ba73e8a523', 0, 1, '2024-05-06 04:26:33+00', 0, 1, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2356, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4119, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5Waw6\"}"}', 'sonata'), - (210818, '0x44eb2296a039014face1869fb3a8288072e1426e', 0, 1, '2024-05-05 12:57:49+00', 0, 1, '{"fid": 348007, "object": "user", "pfp_url": "https://i.imgur.com/ujwL86q.jpg", "profile": {"bio": {"text": "Risk taker, Crypto lover, Web 3.0 supporter", "mentioned_profiles": []}}, "username": "bkklove", "power_badge": false, "display_name": "Meens", "active_status": "inactive", "verifications": ["0xf2e91a77746d3197ce4b8d35e086d2174c4ffd9e"], "follower_count": 1028, "custody_address": "0x7810072fde2459c60ac280e2a97b60bd418e33ad", "following_count": 550, "verified_addresses": {"eth_addresses": ["0xf2e91a77746d3197ce4b8d35e086d2174c4ffd9e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/samsmithworld/lay-me-down?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (366357, '0xfab696c1b10c4aaaec044a93eff16d8151af60cf', 0, 1, '2024-05-06 03:00:43+00', 0, 3, '{"fid": 403159, "object": "user", "pfp_url": "https://i.imgur.com/APhu5uH.jpg", "profile": {"bio": {"text": "Hello, let’s all become rich with coins and travel the world.\n반사 100% 갑니다!!!!", "mentioned_profiles": []}}, "username": "alfen", "power_badge": false, "display_name": "Alfen / F4F", "active_status": "inactive", "verifications": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "follower_count": 2495, "custody_address": "0xa548a7f8235abfd83d32a79a3483c0dcddfc266e", "following_count": 2828, "verified_addresses": {"eth_addresses": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WNNRQ\"}"}', 'sonata'), - (231378, '0xb1af3dcecb48058498e44963621ecaf9c0ed45d2', 0, 1, '2024-05-05 13:39:54+00', 0, 1, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SenVvieBoFpwxYmm9\"}"}', NULL), - (176406, '0xd5dcbc73d7e5102d478423e5d581e2c4766a6f61', 0, 1, '2024-05-05 11:15:36+00', 0, 1, '{"fid": 442638, "object": "user", "pfp_url": "https://i.imgur.com/D0GTBF4.jpg", "profile": {"bio": {"text": "\nI’m in Degen, Ton ecosys ✈️\ntalking to crypto, life\n🫡\n(Sometimes the reaction can be slow, please understand)\n\n전) 여의도 직장인", "mentioned_profiles": []}}, "username": "sonorus", "power_badge": false, "display_name": "sonorus", "active_status": "inactive", "verifications": ["0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb"], "follower_count": 1359, "custody_address": "0xdeae3f26f7ec54cd017e976d9457075383360d87", "following_count": 1672, "verified_addresses": {"eth_addresses": ["0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/imfpVaCKhY5TdXCWA\"}"}', NULL), - (215569, '0x10d166042671c64c68d668a1a5f391683fb81660', 0, 1, '2024-05-05 13:06:28+00', 0, 0, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 457, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 759, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 임창정 소주한잔 라이브 (2키↑) by Jeieon on #SoundCloud https://on.soundcloud.com/CBDfd\"}"}', NULL), - (243059, '0x2b657df74c4ad720c5e1d2c05567c0642a4f2d10', 0, 1, '2024-05-05 14:04:42+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1131, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 941, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jg61f4g1C6dZm2yn6\"}"}', NULL), - (226847, '0x4e546dff573bf466f7ad27647b18002a6342676c', 0, 1, '2024-05-05 13:30:55+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-jp/sets/freshest-chillest-beats?si=6f990b9d8a9a4fc3a7b78c44d2169cf1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (736339, '0x4507a15bd4bd84755b87a9a7fba2594b53cdcf18', 0, 1, '2024-05-06 21:57:01+00', 0, 0, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 183, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 528, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K1Z3jkN9fv9SCFir9\"}"}', 'sonata'), - (229541, '0xd531b43030d0c61da6f3d60895fe8fe6d4e3da2e', 0, 1, '2024-05-05 13:35:00+00', 0, 1, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1388, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 964, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tchiruels8pp/sets/90a1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (228726, '0xac29b8f36d3a0fff252601904b543f402c0f925f', 0, 1, '2024-05-05 13:33:40+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-108660097/aikagi-yani-melancholy-k4nji?in=trending-music-jp/sets/pop&si=95e6b9905ef449aabcd3fefe8f5086e8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (226175, '0x24b7d0638c247e4f53052dee39c1ed586ff945a1', 0, 1, '2024-05-05 13:28:22+00', 0, 1, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ze4Qehfjpi7V4raF8\"}"}', NULL), - (674352, '0x330b87fce081b3c944e450301f99c9f1a88aba06', 0, 1, '2024-05-06 16:06:25+00', 0, 1, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 404, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3613WqZRMMxo5yAKfGxFQd?si=tkGTfU4YQta_3GZig6arMg\"}"}', NULL), - (234460, '0x50cc40b823cbc829e2e701b9d91fcdbd49dc540a', 0, 1, '2024-05-05 13:45:19+00', 0, 0, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2916, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2335, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/USMV3\"}"}', NULL), - (246814, '0xe268fd48d2cd0460090c5172079164c84dfc1927', 0, 1, '2024-05-05 14:12:58+00', 0, 0, '{"fid": 501182, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e010cef1-de7c-4453-d183-c7c1e2a94100/rectcrop3", "profile": {"bio": {"text": "Traveler who want to share my daily lives and areas of interest with various people 💓 F4F 🚀", "mentioned_profiles": []}}, "username": "betterman-kim", "power_badge": false, "display_name": "betterman-kim 🎩 🔵 🚀", "active_status": "inactive", "verifications": ["0xf038ff660d990a1db0fd7c80eb6687f6d63bcd8e"], "follower_count": 507, "custody_address": "0xdbfee5b65148dc0b4e9a3b984a66dd6b758d3bd2", "following_count": 628, "verified_addresses": {"eth_addresses": ["0xf038ff660d990a1db0fd7c80eb6687f6d63bcd8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Tb221\"}"}', NULL), - (210817, '0xd9969c9a04cbbc1e87990654914b049433ec06de', 0, 1, '2024-05-05 12:56:57+00', 0, 1, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3535, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 1998, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://soundcloud.com/bcutbcup/bbptw1bzfzcr?si=a9fe79c805884f9db11766802ee9c11a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (173843, '0x5c4bad61f4137ca1f93ea3dbab9f1c5a28ab15de', 0, 1, '2024-05-05 10:39:22+00', 0, 0, '{"fid": 484619, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a742e67b-a7ff-4d0d-c6d5-c0f3e2054800/original", "profile": {"bio": {"text": "I am a student .", "mentioned_profiles": []}}, "username": "soumyashaw", "power_badge": false, "display_name": "Soumya", "active_status": "inactive", "verifications": ["0x6cd2bbb806b308c9c9792bbb6d803fe8d0eede75"], "follower_count": 14, "custody_address": "0x7310abcf1ba7068cd1c3ea13a431d8f29b78c382", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x6cd2bbb806b308c9c9792bbb6d803fe8d0eede75"], "sol_addresses": ["FUkiEZnscCmjCPfetpduMZFSa436RbiLvQ4y9aXQgbkM"]}}', '{"{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral=0x6cd2bbb806b308c9c9792bbb6d803fe8d0eede75&referral_source=link\"}"}', NULL), - (228730, '0x3cf1d13387ed8b3b5bae82cbf1253da224705fed', 0, 1, '2024-05-05 13:32:36+00', 0, 3, '{"fid": 492423, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWam5yoCBhtMXsNgsXHV2SeEZWAZhKqquGBFgB95vRNPA?filename=.jpg", "profile": {"bio": {"text": "나는 봇이 아니에요!! 살려줘요 ㅠㅠㅠ", "mentioned_profiles": []}}, "username": "kimchoi", "power_badge": false, "display_name": "kimchoi", "active_status": "inactive", "verifications": ["0x75e4daa70bb3c0a52f4db6d7e92d348240bb20d0"], "follower_count": 409, "custody_address": "0xea1542219a2762bd5ed2e6b65c24420b638dbbe1", "following_count": 259, "verified_addresses": {"eth_addresses": ["0x75e4daa70bb3c0a52f4db6d7e92d348240bb20d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/402kdogg/figured-out-ig-its_cxmren?in=sc-playlists-kr/sets/air-guitar&si=71d5cc950cd843debf3ab55f61f2a417&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (216591, '0xb8b3529461011d671a5247fee57d8524a9e5b8f4', 0, 1, '2024-05-05 13:08:46+00', 0, 1, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 457, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 760, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CBDfd\"}"}', NULL), - (226844, '0x2f9b346a339fe5e7122340c5c67f5215d9afaead', 0, 1, '2024-05-05 13:29:36+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8kEc2gqFgJecfS2u5\"}"}', NULL), - (201075, '0x53a115cfb8f0627ce6013bc2576f578b500378ed', 0, 1, '2024-05-05 12:38:23+00', 0, 0, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1705, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n6P3eC4cYmrWfvFDA\"}"}', NULL), - (198943, '0x128f60fd597edf5665e0b4d5e83c7ff7732e56cf', 0, 1, '2024-05-05 12:34:49+00', 0, 0, '{"fid": 231533, "object": "user", "pfp_url": "https://i.imgur.com/heFlI8U.jpg", "profile": {"bio": {"text": "Freak that is trying to see love", "mentioned_profiles": []}}, "username": "dribble", "power_badge": false, "display_name": "Dribble 🎩", "active_status": "inactive", "verifications": ["0x0d36f3b293144d18667823635342e151468fe6f1"], "follower_count": 79, "custody_address": "0x1515e346bdcea6c153bad3e44b2d402c2ae38ff6", "following_count": 89, "verified_addresses": {"eth_addresses": ["0x0d36f3b293144d18667823635342e151468fe6f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tBawhBWkfxRuXBVv9\"}"}', NULL), - (191157, '0xe6ad62bfe9edf70d063c45ca673d2f1fe2068c47', 0, 1, '2024-05-05 12:22:42+00', 0, 0, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 311, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 287, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 임창정 - 하루도 그대를 사랑하지 않은 적이 없었다 by :p on #SoundCloud https://on.soundcloud.com/Hcf4d\"}"}', NULL), - (201071, '0x4b6f695e18f557b811e7cbe750c4336dd9a143fd', 0, 1, '2024-05-05 12:37:51+00', 0, 20, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2664, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2950, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/526fD9LiAEi3KKvhhYfWmm?si=1437a0643b9d4a31\"}"}', 'sonata'), - (205574, '0xe1c6c1ebb3bdd588fad3f6c1974b22fe81d1b10b', 0, 1, '2024-05-05 12:47:02+00', 0, 0, '{"fid": 374192, "object": "user", "pfp_url": "https://i.imgur.com/jG6RwlI.jpg", "profile": {"bio": {"text": "😫Stop whinning & Start winnig 😎\nThe Goals in oure live s Deserve to be Reached ", "mentioned_profiles": []}}, "username": "lastlight", "power_badge": false, "display_name": "Shayan 🎩 🔵 ⛓️ 🔮", "active_status": "inactive", "verifications": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "follower_count": 1211, "custody_address": "0xc256c0dc94d268052d65ca85247fd95033c0e7bf", "following_count": 1385, "verified_addresses": {"eth_addresses": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "sol_addresses": ["CCkNB1K4viy87HxawUNH95Y9Xy2gc2xW537RLBm8zN7K"]}}', '{"{\"url\":\"https://on.soundcloud.com/xb9TH\"}"}', NULL), - (655585, '0xbdf50e242e0da14530978f1d2b74acc58057b476', 0, 1, '2024-05-06 14:50:03+00', 0, 7, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1296, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0wkjxnktozdy/ozsawhkjh0r7?si=55949b9749ca45d3afde5742711f6bec&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (200266, '0x1b31c205af9ee4e34c6aa7a74ff7b6082b5ca0d4', 0, 1, '2024-05-05 12:36:41+00', 0, 0, '{"fid": 508766, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed96a51a-422e-4a8c-95ae-4fe69e864900/original", "profile": {"bio": {"text": "1930년생 개띠 인사올립니다", "mentioned_profiles": []}}, "username": "!508766", "power_badge": false, "display_name": "할배👴", "active_status": "inactive", "verifications": ["0x48bf08eaf0eecf9ca3e89430c6431f5eb0577e98"], "follower_count": 343, "custody_address": "0x70030c751e657fcbe7b65ed9b2437d9a12087535", "following_count": 1793, "verified_addresses": {"eth_addresses": ["0x48bf08eaf0eecf9ca3e89430c6431f5eb0577e98"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user566732222/nseqc5dkdc3e?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (178168, '0x19bf7f46d76fc6e0b915b804461632b5c6e250ac', 0, 1, '2024-05-05 11:34:30+00', 0, 0, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2120, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nGqZ2PRe4YU7z4Uz9\"}"}', NULL), - (178157, '0x89397376383242194c95b38b20961d2f9ddc8351', 260, 1, '2024-05-05 11:33:22+00', 0, 1, '{"fid": 376144, "object": "user", "pfp_url": "https://arm22i2isixk3waiiw53vakcpyofspalzlxpjgleh5gmhohrbqbq.arweave.net/BFmtI0iSLq3YCEW7uoFCfhxZPAvK7vSZZD9Mw7jxDAM/", "profile": {"bio": {"text": "love crypto \n\nhard worker \n\nnever give up", "mentioned_profiles": []}}, "username": "pouryagholami", "power_badge": false, "display_name": "pourya gholami🎩👑", "active_status": "inactive", "verifications": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "follower_count": 1091, "custody_address": "0x45912cea45d90d71a0808b305d7edac73985743b", "following_count": 1931, "verified_addresses": {"eth_addresses": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "sol_addresses": ["EysELknAFZbd8GoKsnYLei4DWyZojpVqEPg6fxtfX196"]}}', '{"{\"url\":\"https://soundcloud.com/h3dayati/hiphopologist-solo-mazandaran?ref=clipboard&p=i&c=0&si=419CA707941E4D2C9A07E86BE473A9C0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (226846, '0x6795f860a23aeba7305488c1fe0bd39e81478b57', 0, 1, '2024-05-05 13:29:58+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Mr2CWZybjJDDfC4P6\"}"}', NULL), - (217998, '0xdbf6fcec238044ce3b5c88c2683c005aae412d42', 0, 1, '2024-05-05 13:11:35+00', 0, 2, '{"fid": 355023, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0c09cf45-0663-4cd7-f92b-6413317d2300/rectcrop3", "profile": {"bio": {"text": "\nvintagebus3\n", "mentioned_profiles": []}}, "username": "vintagebus", "power_badge": false, "display_name": "vintagebus3", "active_status": "inactive", "verifications": ["0xb5ca0b9730ce5a3414f798efdd2e4c354baa7353"], "follower_count": 2400, "custody_address": "0x05ed827972cbfd320f971c63abc0f845065e0eb6", "following_count": 2161, "verified_addresses": {"eth_addresses": ["0xb5ca0b9730ce5a3414f798efdd2e4c354baa7353"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bqCB8AwCUMaFGrHx7\"}"}', NULL), - (215568, '0x60287ead23c0fe19f1a06172a9f487fad6c5a7d7', 0, 1, '2024-05-05 13:06:55+00', 0, 0, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 321, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 539, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yumi-pies/anne-marie-2002-acoustic?si=06b323c732624109acb5a5d4e7728491&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (217365, '0x0d865b862dcf8950b72923bebd601560ad7329d8', 0, 1, '2024-05-05 13:09:55+00', 0, 0, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 321, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 539, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-607574668/hx68nvixjvfs?si=4ee6d265e5ac47a592b4fac917cb1123&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (217363, '0x949282a4bdd1cc5970b099ff3b2eb87cdb8fb8f9', 0, 1, '2024-05-05 13:10:36+00', 0, 0, '{"fid": 413505, "object": "user", "pfp_url": "https://i.imgur.com/Qs5haUX.jpg", "profile": {"bio": {"text": "i''m the king of the world", "mentioned_profiles": []}}, "username": "teetr", "power_badge": false, "display_name": "teetr", "active_status": "inactive", "verifications": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "follower_count": 1256, "custody_address": "0x210e5c9b953144bcc69a2d4f9e46ca20a08f2c3f", "following_count": 1287, "verified_addresses": {"eth_addresses": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fZ6dpPpNTkEyqifp6\"}"}', NULL), - (187120, '0x543c09d3ca2b0b341bdcc464c0ec5b28c8a29142', 0, 1, '2024-05-05 12:09:49+00', 0, 0, '{"fid": 501019, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3df06ecf-eea0-4295-2ba9-403d0ce7da00/rectcrop3", "profile": {"bio": {"text": "crypto lover", "mentioned_profiles": []}}, "username": "kiana75", "power_badge": false, "display_name": "kiana", "active_status": "inactive", "verifications": ["0x1c8eebfbe00cb04c54a55c77f6abcfc512414480"], "follower_count": 164, "custody_address": "0x958f44a710f3683cbd72df5702f1fdd22af306b0", "following_count": 200, "verified_addresses": {"eth_addresses": ["0x1c8eebfbe00cb04c54a55c77f6abcfc512414480"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamesblunt/goodbye-my-lover\"}"}', NULL), - (179505, '0xa7390e50b0ea8a603085b6d4d0de366c24c07e03', 0, 1, '2024-05-05 11:42:02+00', 0, 1, '{"fid": 14563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40a9a384-770a-4ac2-3890-822275958a00/rectcrop3", "profile": {"bio": {"text": "A prompt introduction:\n\nA BACKDROP OF A DIAPHANOUS CLEAR SKY BLUE, YELLOW AND SCINTILLA OF CARNELIAN FADED BLACK 5AM DAWN SUNRISE AGAINST THE DARK SEA \n ", "mentioned_profiles": []}}, "username": "project5am", "power_badge": false, "display_name": "Project 5am ", "active_status": "inactive", "verifications": ["0xf7c4fe80da81377487b702bc13d1f876c14966e7"], "follower_count": 105, "custody_address": "0x2f64324ba80fcff1a175b92fcdf7652908273d1d", "following_count": 79, "verified_addresses": {"eth_addresses": ["0xf7c4fe80da81377487b702bc13d1f876c14966e7"], "sol_addresses": ["EAqGmGCnS9VnYL8xGbaF9rf7SBXhQg5ck22oeGduuwyr"]}}', '{"{\"url\":\"https://on.soundcloud.com/ABqACagwXXsVC4397\"}"}', NULL), - (201070, '0x3cba20613745e274cb5484d377d0a2282b936b39', 0, 1, '2024-05-05 12:38:23+00', 0, 1, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 949, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 892, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PzLVC6mWscKSPpDE9\"}"}', NULL), - (206476, '0xc8c744a7385f4c841e2ad5afde3a73278dd475ec', 0, 1, '2024-05-05 12:48:05+00', 0, 0, '{"fid": 502237, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71cac03a-2086-40ba-73c3-720e90bc9c00/rectcrop3", "profile": {"bio": {"text": "Sometimes its not meant to be", "mentioned_profiles": []}}, "username": "pozkhand", "power_badge": false, "display_name": "Pozi", "active_status": "inactive", "verifications": ["0xdd7860cbd0e81f60764e5ecfe36bf0d880ac517b"], "follower_count": 137, "custody_address": "0xf901dbd9eb090d6534937bca644c9dd2da52e854", "following_count": 199, "verified_addresses": {"eth_addresses": ["0xdd7860cbd0e81f60764e5ecfe36bf0d880ac517b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Don Toliver - No Pole by Don Toliver on #SoundCloud https://on.soundcloud.com/MD1wv\"}"}', NULL), - (196269, '0xbd48e0fe685c095e03425fd461330ca4ac8a031f', 0, 1, '2024-05-05 12:30:59+00', 0, 0, '{"fid": 403159, "object": "user", "pfp_url": "https://i.imgur.com/APhu5uH.jpg", "profile": {"bio": {"text": "Hello, let’s all become rich with coins and travel the world.\n반사 100% 갑니다!!!!", "mentioned_profiles": []}}, "username": "alfen", "power_badge": false, "display_name": "Alfen / F4F", "active_status": "inactive", "verifications": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "follower_count": 2494, "custody_address": "0xa548a7f8235abfd83d32a79a3483c0dcddfc266e", "following_count": 2827, "verified_addresses": {"eth_addresses": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zAYS4\"}"}', NULL), - (191619, '0xfa96ab938402544c881b2579336b53c5a8b12226', 0, 1, '2024-05-05 12:23:11+00', 0, 0, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 765, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 1310, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/d6QMki15rwVZfY647\"}"}', NULL), - (210468, '0x06b11b7bee892be9b68c61e296a5df6b13f683b8', 0, 1, '2024-05-05 12:56:23+00', 0, 0, '{"fid": 428653, "object": "user", "pfp_url": "https://i.imgur.com/t3HbkB5.jpg", "profile": {"bio": {"text": "안녕하세요 ", "mentioned_profiles": []}}, "username": "ouol", "power_badge": false, "display_name": "Opao", "active_status": "inactive", "verifications": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "follower_count": 503, "custody_address": "0xdcd0b48bef59e22ef7506689aa61df35e9a9140c", "following_count": 547, "verified_addresses": {"eth_addresses": ["0x4d0ce8dfecd6a0a81af979dae92688e3c0079246"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tayo_sound/cold-feet-1\"}"}', NULL), - (233993, '0xd73fa226249449fb9dcd26fdf9f930d1b19812e8', 0, 1, '2024-05-05 13:43:37+00', 0, 0, '{"fid": 272919, "object": "user", "pfp_url": "https://i.imgur.com/4mmaSLW.gif", "profile": {"bio": {"text": "Kinetic, Synthetic & New Media Art \n\nhttps://linktr.ee/betx9", "mentioned_profiles": []}}, "username": "p3tra", "power_badge": false, "display_name": "Petra🎩🐲🌱", "active_status": "inactive", "verifications": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "follower_count": 454, "custody_address": "0x1618a6bfa84714d845d9182a02292c99533d00a4", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x1a49138ccb61c50d72a44a299f6c74c690f6c67f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2s6D5\"}"}', NULL), - (187367, '0x37cb76d7385a6a1c8e023d3f755d804253b7eb70', 0, 1, '2024-05-05 12:07:16+00', 0, 9, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 955, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 956, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4p0aRX6U77LV48n0tWvYoV?si=M9V-AgbMS9uwZ9eL8W4O9w\"}"}', 'sonata'), - (180394, '0xc2d06e808a197256fbfd09c2715aa63130f3ce91', 0, 1, '2024-05-05 11:46:28+00', 0, 0, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2651, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2945, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-737513648/and-july?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (192113, '0xa47a280aeb88aaaf8f663e603447a268d26482fa', 0, 1, '2024-05-05 12:26:08+00', 0, 4, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2188, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2193, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xhfDa\"}"}', NULL), - (180829, '0xa2ce00c8b031ccc0e666871f2f82fbda65303a9f', 0, 1, '2024-05-05 11:47:28+00', 0, 1, '{"fid": 14563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40a9a384-770a-4ac2-3890-822275958a00/rectcrop3", "profile": {"bio": {"text": "A prompt introduction:\n\nA BACKDROP OF A DIAPHANOUS CLEAR SKY BLUE, YELLOW AND SCINTILLA OF CARNELIAN FADED BLACK 5AM DAWN SUNRISE AGAINST THE DARK SEA \n ", "mentioned_profiles": []}}, "username": "project5am", "power_badge": false, "display_name": "Project 5am ", "active_status": "inactive", "verifications": ["0xf7c4fe80da81377487b702bc13d1f876c14966e7"], "follower_count": 105, "custody_address": "0x2f64324ba80fcff1a175b92fcdf7652908273d1d", "following_count": 79, "verified_addresses": {"eth_addresses": ["0xf7c4fe80da81377487b702bc13d1f876c14966e7"], "sol_addresses": ["EAqGmGCnS9VnYL8xGbaF9rf7SBXhQg5ck22oeGduuwyr"]}}', '{"{\"url\":\"https://on.soundcloud.com/af3cShCD3brZWdMm7\"}"}', NULL), - (226853, '0x2c3c556cd128cf58cfc2cc4a37397e259a42f3a4', 0, 1, '2024-05-05 13:29:53+00', 0, 3, '{"fid": 500839, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f3ca434-96aa-4bb9-6495-6ae249568400/rectcrop3", "profile": {"bio": {"text": "hello my name is amellia", "mentioned_profiles": []}}, "username": "amellia", "power_badge": false, "display_name": "amellia", "active_status": "inactive", "verifications": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "follower_count": 238, "custody_address": "0x9acfd223eb6f1deadc2984042d96f83fa0f4fe86", "following_count": 225, "verified_addresses": {"eth_addresses": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/miu-107609886/mili-string-theocracy-library-of-ruina-theme-song?si=4d292373b32c4433ab8250a47442b69f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (192122, '0xf32f13aa1b447fede9bb9611e4ec3ec7b73bd6a9', 0, 1, '2024-05-05 12:26:42+00', 0, 0, '{"fid": 508363, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4053fde1-b0b4-46ae-160c-f504739b0000/original", "profile": {"bio": {"text": "\nI love to take reaction, recast and follow 🥰🥰", "mentioned_profiles": []}}, "username": "!508363", "power_badge": false, "display_name": "Bluemountain", "active_status": "inactive", "verifications": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "follower_count": 247, "custody_address": "0x8977ff600c1cb56333c1a376e876fc76d2177739", "following_count": 535, "verified_addresses": {"eth_addresses": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/deni-achmadzoel/taeyeon-if?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (454786, '0x444ebf9d4a3427ceb468a8d9181b9d8940fcc1b2', 0, 1, '2024-05-06 06:50:32+00', 0, 1, '{"fid": 407128, "object": "user", "pfp_url": "https://i.imgur.com/cEarSGQ.jpg", "profile": {"bio": {"text": "MD., Ph.D.\ncrypto, NFT collector \nなんとなく慣れてきました", "mentioned_profiles": []}}, "username": "scrypto3", "power_badge": false, "display_name": "Scrypto🎩🔮🔵🦄", "active_status": "inactive", "verifications": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "follower_count": 654, "custody_address": "0x3dfe27594d0d2d3180dfce17109a282e3018c0df", "following_count": 626, "verified_addresses": {"eth_addresses": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UctkzxbsXChUhNhJ9\"}"}', NULL), - (196270, '0xd61e7ea767e91a3fe027ba1d57099df859bb560b', 0, 1, '2024-05-05 12:31:14+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2626, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3115, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Hh598yMHRSj6fJbU6\"}"}', NULL), - (192114, '0x2889c0add05c729a2e6380298a62d5e9cf2e0236', 0, 1, '2024-05-05 12:26:37+00', 0, 0, '{"fid": 423559, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdoXAH6xTKfiCR1qrdHcx5SaAANNXudS1YEmv27SPne8d?filename=.gif", "profile": {"bio": {"text": "F4F// Hi, I''m jonny :D Thank you for visiting. If you leave a trace, I''ll visit you! I hope you have a nice day in warpcast", "mentioned_profiles": []}}, "username": "jonnyjonny", "power_badge": false, "display_name": "Jonny", "active_status": "inactive", "verifications": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "follower_count": 1305, "custody_address": "0xde5d220b53d6015b7a6af20036a5673fbd30a3fe", "following_count": 2098, "verified_addresses": {"eth_addresses": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7x8dCjCr0x6x2lXKujYD34\"}"}', NULL), - (187369, '0x12bbb2ab2a97ad9b080a6c78efdf50e8b398bd57', 0, 1, '2024-05-05 12:11:05+00', 0, 3, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3084, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3687, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/i-nation-926804921/high-hopes-cover-by-isaiah-minott-original-by-panic-at-the-disco?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (180147, '0x0c49bef92a575b13bf133793998ace821c0cbfeb', 0, 1, '2024-05-05 11:44:59+00', 0, 0, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1385, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 346, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eutrepe/megpoid-gumi-cosmos\"}"}', NULL), - (210814, '0xeda64ef283d1d5a2bb15de18e2d8735d83087497', 0, 1, '2024-05-05 12:57:41+00', 0, 0, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ 팁주지마세요♡\nhttps://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2916, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2335, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Unforgettable by Paul Blanco on #SoundCloud https://on.soundcloud.com/nu76h\"}"}', NULL), - (201072, '0x862212f2c036ca81f02e3acabf85b4c959f76c39', 0, 1, '2024-05-05 12:38:18+00', 0, 0, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 768, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 855, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qo43wt1vhqxt/2yqslykdd1kz?si=683c00006eed4e5a9b7dc1f6fd2493f9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (206475, '0x6adb3c567f2a79c8fa6ef6d3ab8509768301cfff', 0, 1, '2024-05-05 12:48:27+00', 0, 1, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1705, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/97WVGXJZhx9FVFcA9\"}"}', NULL), - (236847, '0xd8e36d35b46cabceb8418fa5610f668f8943ed02', 0, 1, '2024-05-05 13:52:54+00', 0, 1, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 223, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 397, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/in-ur-mind/last-flight-feat-w1fxxxx?in=trending-music-jp/sets/pop&si=8996a547b41e499eb9eb462dca3f7fa5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (246747, '0x4158d74455a63268550ec8d1d9d87d3ea535d042', 0, 1, '2024-05-05 14:09:24+00', 0, 3, '{"fid": 385387, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d5095a2-50ef-41e8-e8f0-5fbc144ed200/original", "profile": {"bio": {"text": "lawyer but (probably) not your lawyer - WSGR & Gunderson alum / on-chain since EtherDelta / CtG S2 finalist", "mentioned_profiles": []}}, "username": "vizualobserver", "power_badge": false, "display_name": "Viz", "active_status": "inactive", "verifications": ["0x09641015fb8b08388a7367b946e634d37dddffaa"], "follower_count": 179, "custody_address": "0xb9d78931f736fa9018b78d9b373fe8587be6a96a", "following_count": 421, "verified_addresses": {"eth_addresses": ["0x09641015fb8b08388a7367b946e634d37dddffaa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1fOZXNcJRMzkW0pUTw2U2P\"}"}', NULL), - (206834, '0xbc1a3745815c4ef5e910b2fe5188dc17b69bf4bf', 0, 1, '2024-05-05 12:49:13+00', 0, 3, '{"fid": 407281, "object": "user", "pfp_url": "https://i.imgur.com/ujCy6Yx.jpg", "profile": {"bio": {"text": "리액션 끝까지 찾아가요 / 댓글 하나하나 다 찾아내요", "mentioned_profiles": []}}, "username": "yeonn", "power_badge": false, "display_name": "Kakashi", "active_status": "inactive", "verifications": ["0x085b88ef607cc3978b91f9317591f9f2aef5992e"], "follower_count": 3319, "custody_address": "0x261bf95b130d0b4a83417338d9a6c825d6b5e9d8", "following_count": 2447, "verified_addresses": {"eth_addresses": ["0x085b88ef607cc3978b91f9317591f9f2aef5992e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AUAjauUcJhRT6fkG7\"}"}', NULL), - (210816, '0x0a1a7195d0f291361b04abe2a344eee356eaad6a', 0, 1, '2024-05-05 12:57:07+00', 0, 0, '{"fid": 413505, "object": "user", "pfp_url": "https://i.imgur.com/Qs5haUX.jpg", "profile": {"bio": {"text": "i''m the king of the world", "mentioned_profiles": []}}, "username": "teetr", "power_badge": false, "display_name": "teetr", "active_status": "inactive", "verifications": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "follower_count": 1256, "custody_address": "0x210e5c9b953144bcc69a2d4f9e46ca20a08f2c3f", "following_count": 1287, "verified_addresses": {"eth_addresses": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hEWYrqsiq7aF2YWi9\"}"}', NULL), - (210048, '0x6d877e08ac5b10dd104cb7f8d33857066400c0fe', 0, 1, '2024-05-05 12:55:17+00', 0, 2, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1120, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1063, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/2bsv7jsbvcrc/yunchan-lim-rachmaninoff?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1172922, '0x7924e6269c1abb9f8c9bf00b7e1593130b7bdb55', 4010, 1, '2024-05-14 20:46:01+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 11126, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/f1db73b0-efea-4c61-a582-7c5fe94c87c2\"}","{\"url\":\"https://www.sound.xyz/lnrz/robbery-sstrm-2xp\"}"}', NULL), - (260016, '0xb0d1edc2c3fc779febb01abb908868b7b282e39b', 0, 1, '2024-05-05 15:33:59+00', 0, 5, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 77, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8PKLaeLpJcioefcz5\"}"}', NULL), - (260005, '0x608fcaeb1debda403159bfd40b6dc4a8ea0defec', 0, 1, '2024-05-05 15:34:02+00', 0, 6, '{"fid": 507380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d510649c-984d-4ac8-82c2-1a6f09457e00/original", "profile": {"bio": {"text": "Movies and art lover", "mentioned_profiles": []}}, "username": "!507380", "power_badge": false, "display_name": "Anchor", "active_status": "inactive", "verifications": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76"], "follower_count": 71, "custody_address": "0xba4430479cce3480d93e3fd91c9bcfcd37ee5b3c", "following_count": 396, "verified_addresses": {"eth_addresses": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gq91jkWLpUVHwcgw8\"}"}', NULL), - (200261, '0xf71b2aefc0675e7f6585374e112e0fcc9c4e7d83', 0, 1, '2024-05-05 12:36:28+00', 0, 2, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1416, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1724, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/e6w8olkrksj7/sets/blfe5i1fkytl?si=4dc022771add4846a3fd0d607248ab50&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (208183, '0x91a087e24ad92c8ba8d2f531f80eaef0a2309974', 0, 1, '2024-05-05 12:51:53+00', 0, 0, '{"fid": 433866, "object": "user", "pfp_url": "https://i.imgur.com/lJtAWQF.jpg", "profile": {"bio": {"text": "Have a good day!!\nI like parenting and food, exercise!!", "mentioned_profiles": []}}, "username": "dooristar32", "power_badge": false, "display_name": "RARE-LOVER", "active_status": "inactive", "verifications": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "follower_count": 1819, "custody_address": "0xadd33e67c1876224068545e2497d535dad39027d", "following_count": 2211, "verified_addresses": {"eth_addresses": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "sol_addresses": []}}', '{"{\"url\":\"저녁반 잠깨고 새벽까지 달려보자아!!!https://soundcloud.com/cande1228/hcc26pfhsbc2?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (179493, '0x07b2c5ac060fff573f1b4c0e1ea142c9055b6c3c', 0, 1, '2024-05-05 11:41:54+00', 0, 1, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 277, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 331, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Jap1JcOpXnjdm3aLIc4KC?si=LQ0-ZDA6StayODrlZLJNkQ\"}"}', NULL), - (246816, '0xacce95addd27a26aa0767c6ee233deb593753a02', 0, 1, '2024-05-05 14:12:18+00', 0, 0, '{"fid": 421100, "object": "user", "pfp_url": "https://i.imgur.com/2QEH8Mn.jpg", "profile": {"bio": {"text": "I loved tried and mining", "mentioned_profiles": []}}, "username": "rasoul128482", "power_badge": false, "display_name": "Rasoulrahimi", "active_status": "inactive", "verifications": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "follower_count": 457, "custody_address": "0x09371cab91c71adaad513b1b0a0284e67f1012bb", "following_count": 477, "verified_addresses": {"eth_addresses": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beta-t/sets/mahasti?si=ddd65382cc6e40949b7ca39010cbdfc9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (201073, '0x190604308cbe21ab8e55c20d94d017e06507d5f2', 0, 1, '2024-05-05 12:37:31+00', 0, 0, '{"fid": 4205, "object": "user", "pfp_url": "https://i.imgur.com/fVfy02g.jpg", "profile": {"bio": {"text": "Host at /howtofindaparty. Trying to make life more fun. ", "mentioned_profiles": []}}, "username": "johnsonator", "power_badge": false, "display_name": "Nia ✈️", "active_status": "inactive", "verifications": ["0xf1cdbdaf9849959de3b6ede5012a52aa4aef2db7"], "follower_count": 112, "custody_address": "0x1d94f94e2043fee033e72ef6cacdc33ff6bffdb3", "following_count": 208, "verified_addresses": {"eth_addresses": ["0xf1cdbdaf9849959de3b6ede5012a52aa4aef2db7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DpekmGFUXh8wsUMa7\"}"}', NULL), - (215212, '0x15b9241cccd16d8d07490f7786ddc5fe177c3320', 0, 1, '2024-05-05 13:05:20+00', 0, 2, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1120, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1063, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/arrange_song4/feat?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (215263, '0xc3cd3715801af91d37c88905a434b392c91f282a', 0, 1, '2024-05-05 13:05:33+00', 0, 1, '{"fid": 194233, "object": "user", "pfp_url": "https://i.imgur.com/68Af7up.jpg", "profile": {"bio": {"text": "Solo Investor\nDeFi Farmer\nDegen explorer ", "mentioned_profiles": []}}, "username": "oxcryptopanda", "power_badge": true, "display_name": "CryptoPanda🎩", "active_status": "inactive", "verifications": ["0x0bebe2165de412e7925ab8352e36f3b0493dd3b9"], "follower_count": 661, "custody_address": "0x8765805e0c6aa73dbc9c4fe2cf94560bb4ecd142", "following_count": 151, "verified_addresses": {"eth_addresses": ["0x0bebe2165de412e7925ab8352e36f3b0493dd3b9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/xcelencia/chimbita?referral=0x0bebe2165de412e7925ab8352e36f3b0493dd3b9&referral_source=link\"}"}', NULL), - (231868, '0xfbb8c535e72d6121578e13700401fbd7095fb638', 0, 1, '2024-05-05 13:40:56+00', 0, 0, '{"fid": 499521, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/345fec63-3463-4c3c-7c70-9a85dd163100/original", "profile": {"bio": {"text": "AI MAKER /KOLLECTOR TEAM OG / HARDWORKING WORKER https://zora.co/@pixelmaster\n", "mentioned_profiles": []}}, "username": "pixelmaster", "power_badge": false, "display_name": "BLASTIOSE🍖", "active_status": "inactive", "verifications": ["0x253cde1f264329e997fceb4d577d1f0c1d2295c8"], "follower_count": 1061, "custody_address": "0x650319705b6831e4851e15ce1c6c981cedb45e63", "following_count": 638, "verified_addresses": {"eth_addresses": ["0x253cde1f264329e997fceb4d577d1f0c1d2295c8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rodwave/fuck-the-world\"}"}', NULL), - (476448, '0xb67bc918c13b2e1298f15a5c93706b607f2e2915', 0, 1, '2024-05-06 07:21:05+00', 0, 0, '{"fid": 446876, "object": "user", "pfp_url": "https://i.imgur.com/5rNMCDn.jpg", "profile": {"bio": {"text": "Help each other", "mentioned_profiles": []}}, "username": "arashjalilian", "power_badge": false, "display_name": "Arash Jalilian", "active_status": "inactive", "verifications": ["0xdafb102c3529583312382850587e1d082f91d168"], "follower_count": 1060, "custody_address": "0xb526e7f791891ff15cb46ca1b75a7013a9bf8e1c", "following_count": 1456, "verified_addresses": {"eth_addresses": ["0xdafb102c3529583312382850587e1d082f91d168"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Nemibinam Invara by Sina Sae on #SoundCloud https://on.soundcloud.com/WFwrC\"}"}', NULL), - (215570, '0x70b6e9c0e84506c1546b2576ccb2810636fe12e1', 0, 1, '2024-05-05 13:06:34+00', 0, 0, '{"fid": 418469, "object": "user", "pfp_url": "https://i.imgur.com/sW5HOQG.jpg", "profile": {"bio": {"text": "맞팔 조대리 100% Follow me~~", "mentioned_profiles": []}}, "username": "yangkezang", "power_badge": false, "display_name": "f4f _100% Yangkezang 🍖", "active_status": "inactive", "verifications": ["0x9f2792c09bc7afcf28698d434137af53243f62ae"], "follower_count": 2155, "custody_address": "0x6b195a26122617688e11bbfb4362fc181a3ed692", "following_count": 2412, "verified_addresses": {"eth_addresses": ["0x9f2792c09bc7afcf28698d434137af53243f62ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rnXcSCWwM8jrk4YA9\"}"}', NULL), - (208184, '0x59a84eb3719d3f67aeca084aec8f2bd209441bdd', 0, 1, '2024-05-05 12:51:15+00', 0, 0, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 722, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xC9VSoRcVZbbXod3A\"}"}', NULL), - (201076, '0xec738881f94ba0b173bf186f24b95ff1822b0be1', 0, 1, '2024-05-05 12:37:33+00', 10, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1865, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/xtL8JhtJ8sVR6wmFA\"}"}', NULL), - (233997, '0x143f98491b36351d4ff5083d21136d318edd5b8b', 0, 1, '2024-05-05 13:44:16+00', 0, 1, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gNG94JSjgfFctq7x8\"}"}', NULL), - (236831, '0x0a00707bb1ce4059a8df44c4b7c6227c148f7327', 0, 1, '2024-05-05 13:52:33+00', 0, 1, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 223, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 397, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mc-ocean-750659725/bereal-feat-xero-na-lossfy?in=trending-music-jp/sets/pop&si=430193a1bda0482c9769aabf0e0ec2c5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (229930, '0x2a090fef4aaeb39527c2d8cb9e471bcb1214c0a9', 0, 1, '2024-05-05 13:35:40+00', 0, 0, '{"fid": 289659, "object": "user", "pfp_url": "https://i.imgur.com/9GD5dX1.jpg", "profile": {"bio": {"text": "Zora → https://zora.co/@yojizzang // Alfafrens → https://www.alfafrens.com/channel/0xd37c250cd60ca1aed0178515afd5b49b1188d97c", "mentioned_profiles": []}}, "username": "yojizzang", "power_badge": false, "display_name": "yojizzang🍀", "active_status": "inactive", "verifications": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "follower_count": 3133, "custody_address": "0x0466acd0e5f6c6c644f99b9cb4a841dec03d4d8d", "following_count": 2704, "verified_addresses": {"eth_addresses": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/saebyeokk/illit-magnetic\"}"}', NULL), - (208185, '0xdddf1269aea2284f62e1f5ff6b3388e8b8ee8482', 0, 1, '2024-05-05 12:51:48+00', 0, 0, '{"fid": 496665, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQLfrGWJ1KXBP5tPNrEhSQiBYGpzdCvy6DmgLxfwMVrJj?filename=.jpg", "profile": {"bio": {"text": "NewjeanSNKRS page", "mentioned_profiles": []}}, "username": "ruvv", "power_badge": false, "display_name": "NewjeanSNKRS", "active_status": "inactive", "verifications": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "follower_count": 1296, "custody_address": "0xfed77a68bf6da88aa0b78e904820451ebaecfc94", "following_count": 2174, "verified_addresses": {"eth_addresses": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3yWAR5q6voXmN7y47\"}"}', NULL), - (201641, '0xa645fbe3ca949a3dac21ef70b880185233758575', 0, 1, '2024-05-05 12:39:34+00', 0, 2, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 457, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 759, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 헤이즈 (Heize) - 비도 오고 그래서 (You, Clouds, Rain)(Feat. 신용재) by arrange_song4 on #SoundCloud https://on.soundcloud.com/UrhQm\"}"}', NULL), - (228443, '0x3e8882340842506da00118d300f935cc94521c3d', 0, 1, '2024-05-05 13:33:12+00', 0, 6, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2538, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1685, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6JeleVHUHrdvgiFESE33ZU?si=02a9c9552ffa4576\"}"}', 'sonata'), - (210821, '0x8eed1bc98ef4a32e68983ef692dec8aaef86cd3a', 0, 1, '2024-05-05 12:57:41+00', 0, 0, '{"fid": 500261, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d93120e4-9ca4-4c3c-29fd-3a268ab91f00/rectcrop3", "profile": {"bio": {"text": "Im actor is US, I will learn about America and talk about dramas, movies, and my daily life\n❤️US, Korea", "mentioned_profiles": []}}, "username": "actors-review", "power_badge": false, "display_name": "actor-review1", "active_status": "inactive", "verifications": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "follower_count": 1090, "custody_address": "0x99c7217798a58ce8ee28769d93c223d5de34c245", "following_count": 1546, "verified_addresses": {"eth_addresses": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xMi1hDgNwchCEDKG6\"}"}', NULL), - (217361, '0x974fb799643d835ce7e219c90f64e4c1082e7470', 0, 1, '2024-05-05 13:10:27+00', 0, 1, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1240, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 905, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lucy-152635109/2022a1?si=a2952eb766e64b8a9b61c3c71b4d171f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (215804, '0x3b688acc94a525abfaf0e8b15669a1887d0a5445', 0, 1, '2024-05-05 13:08:16+00', 0, 0, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 313, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 299, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YwU9b\"}"}', NULL), - (167523, '0xba46b7c99c6f48d8ce5f77ea5017cf2351588955', 0, 1, '2024-05-05 10:08:05+00', 0, 1, '{"fid": 219069, "object": "user", "pfp_url": "https://i.imgur.com/j2SXQEV.png", "profile": {"bio": {"text": "🎩 🍖", "mentioned_profiles": []}}, "username": "vietnd1201", "power_badge": false, "display_name": "Vietdart.eth 🎩 🔵 🍖 🐹", "active_status": "inactive", "verifications": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "follower_count": 360, "custody_address": "0x21f73438f3b1b00374054725a1c0d606831ecda9", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "sol_addresses": ["EuKhNC1Xqmmegj4AxxgqzzHSDPLYDDn29Aie2XKtXztA"]}}', '{"{\"url\":\"https://www.sound.xyz/rohki/horizon\"}"}', NULL), - (219164, '0x2562ac9985c7afe989f9d8690419b491ae5c344f', 0, 1, '2024-05-05 13:14:44+00', 0, 4, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 631, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 751, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-565240779/bubblegum-newjeans?si=098fec1881584816902c08a39960e8ce&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (228724, '0x40468bf88681cd9483d960bc44f8b8629681ecbf', 0, 1, '2024-05-05 13:33:48+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-492424644/illit-magnetic?in=trending-music-jp/sets/pop&si=6ee25e83bd814ae4b5c7954fccb74188&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (218001, '0x743550708107be5f57b1d00798e52f13e6a416f2', 0, 1, '2024-05-05 13:10:57+00', 0, 2, '{"fid": 435513, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/086bb923-eea3-4af4-b4ce-06be6ac17700/rectcrop3", "profile": {"bio": {"text": "I love Oh duck 🐤 Copyright ©️ by Oh duck ", "mentioned_profiles": []}}, "username": "sia08", "power_badge": false, "display_name": "Ori🫂", "active_status": "inactive", "verifications": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "follower_count": 1265, "custody_address": "0x547f99de111a162591527e4e0d0a14ed68024e2c", "following_count": 1022, "verified_addresses": {"eth_addresses": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yeahofficial_icecreamsubteam/beautiful-crush-goblin-ost-part4?in=najibebpseii%2Fsets%2Fost-1\"}"}', NULL), - (180801, '0xb09213a75eafe7206a388e619436b775632a6afe', 0, 1, '2024-05-05 11:47:21+00', 0, 1, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 722, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3INsYP1Y8GG4qJvBsKCdXC?si=0lPivh4DQ4qPPHp4QgRO5Q\"}"}', NULL), - (226173, '0xdd01491987e91979e2576dbdd6ebfd89c69a0589', 0, 1, '2024-05-05 13:29:04+00', 0, 0, '{"fid": 3115, "object": "user", "pfp_url": "https://i.imgur.com/q1Rk1Yp.jpg", "profile": {"bio": {"text": "/outcasters /music /vvbs /channeling ", "mentioned_profiles": []}}, "username": "ghostlinkz.eth", "power_badge": true, "display_name": "ildi", "active_status": "inactive", "verifications": ["0x05ff7cc8b490b38898744037f951f3247673c2ed"], "follower_count": 36147, "custody_address": "0x218ea80280a139e7e835744bbd3a4ade6b5f7c0d", "following_count": 1316, "verified_addresses": {"eth_addresses": ["0x05ff7cc8b490b38898744037f951f3247673c2ed"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QojUowdFh3Vm4KEe8\"}"}', NULL), - (246579, '0xdb8e49d845a8c2fa5f08143792ff1500df52ff8d', 0, 1, '2024-05-05 14:06:01+00', 0, 3, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1847, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2205, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1zk3gsZae8Jm8kJfA\"}"}', NULL), - (247166, '0xcd9a77f27927015c5b07a1cfcd7bd51bb08fa4a6', 0, 1, '2024-05-05 14:19:09+00', 0, 1, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "follower_count": 1421, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1087, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/nJHuYm7dqNQ45CM5A\"}"}', NULL), - (228729, '0x3b2cad1b8566f61b34267e082f89dba61eeb8cbb', 0, 1, '2024-05-05 13:32:47+00', 0, 1, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4Dj8KXTzFfd2iaKh8\"}"}', NULL), - (196268, '0x76fa637f38cfad71cecc21f9d4d1b83873493fd1', 0, 1, '2024-05-05 12:31:17+00', 0, 7, '{"fid": 423559, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdoXAH6xTKfiCR1qrdHcx5SaAANNXudS1YEmv27SPne8d?filename=.gif", "profile": {"bio": {"text": "F4F// Hi, I''m jonny :D Thank you for visiting. If you leave a trace, I''ll visit you! I hope you have a nice day in warpcast", "mentioned_profiles": []}}, "username": "jonnyjonny", "power_badge": false, "display_name": "Jonny", "active_status": "inactive", "verifications": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "follower_count": 1306, "custody_address": "0xde5d220b53d6015b7a6af20036a5673fbd30a3fe", "following_count": 2125, "verified_addresses": {"eth_addresses": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7x8dCjCr0x6x2lXKujYD34\"}"}', 'sonata'), - (218002, '0x046778a7b807f22dbd2a5b4592d757e545ce1c44', 0, 1, '2024-05-05 13:11:29+00', 0, 3, '{"fid": 329190, "object": "user", "pfp_url": "https://i.imgur.com/h3o4Ntz.jpg", "profile": {"bio": {"text": "Nice to meet you. thank you.", "mentioned_profiles": []}}, "username": "komasugi", "power_badge": false, "display_name": "komasugi🎩🍖", "active_status": "inactive", "verifications": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "follower_count": 1210, "custody_address": "0x88ce15b0d31e50d0e3fcc1e64a782c2f6b87c3e6", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 안예은 - 상사화 by ʙʙ on #SoundCloud https://on.soundcloud.com/rPLNm\"}"}', NULL), - (228734, '0xeb0adf9bb2e3b2ca0c44ce7c423478ba083ab715', 0, 1, '2024-05-05 13:33:03+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-97648274/mix-708-2-wav?in=trending-music-jp/sets/pop&si=e2f567148de544d28c10fb7612daad66&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (260300, '0xf905063bb02897953a41fb64e5ab16a80787541a', 0, 1, '2024-05-05 15:36:32+00', 0, 2, '{"fid": 398319, "object": "user", "pfp_url": "https://i.imgur.com/FcIQL9V.gif", "profile": {"bio": {"text": "Crypto触り始めて7年目。\n\nこれまでに溶かした資金は数知れず😇\nそろそろ爆益お願いします🤤\n\n", "mentioned_profiles": []}}, "username": "blacrypto", "power_badge": false, "display_name": "Black🎩🔄", "active_status": "inactive", "verifications": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "follower_count": 442, "custody_address": "0x395ddab687c4a838569dab0758997779750dd7e9", "following_count": 368, "verified_addresses": {"eth_addresses": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4X0TDyQEo16YNvShu3NSB0?si=2Eggkpn8QA-DRAsLJTVjCA&context=spotify%3Aalbum%3A5PR7prY91BRjab9nnUwbUo\"}"}', NULL), - (229928, '0xed7c4bbcbf646038426e71a864228dfb3748f0da', 0, 1, '2024-05-05 13:35:40+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PxSzUoDXvk8j9DUM7\"}"}', NULL), - (246818, '0xf288d91a5ab797ebbb2336c5b7e37fc2f5d530f6', 0, 1, '2024-05-05 14:12:26+00', 0, 3, '{"fid": 472997, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ2i1YDjqg6f16wUJgNpqTqrtNQyUa18wMNC6B6uXNGmD?filename=KakaoTalk_20240419_025514877.png", "profile": {"bio": {"text": "It''s a place where I share my daily life I want to be close with you.Come and see me often Have a nice day!", "mentioned_profiles": []}}, "username": "jinkyo", "power_badge": false, "display_name": " Jaykay", "active_status": "inactive", "verifications": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "follower_count": 2989, "custody_address": "0x9359eee17224661c3bc0df15f8f3367ed0f1884c", "following_count": 2966, "verified_addresses": {"eth_addresses": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/iu-eight-prod-feat-suga-of-bts?in=yangho-choi/sets/rrreyhgkgry2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (219172, '0x9fde7087e92e70b85d7e18fdf6bc48da4fd5b281', 0, 1, '2024-05-05 13:14:48+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2916, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2335, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wqkfW\"}"}', NULL), - (228733, '0x883a58b1b8771d0c8bdc28d962579b94ab68608f', 0, 1, '2024-05-05 13:33:20+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/juliana-780022726/sheesh-babymonster?in=trending-music-jp/sets/pop&si=1ebe651cd6284892871764f62b6bf68f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (219649, '0xd783214396bede61f86043d97a0a4759a3834999', 0, 1, '2024-05-05 13:15:12+00', 0, 0, '{"fid": 287674, "object": "user", "pfp_url": "https://i.imgur.com/eKRHQek.jpg", "profile": {"bio": {"text": "Hi~ I''m choi who wants to make many friends~ Please be friends with me!\nso glad to meet u every friends.", "mentioned_profiles": []}}, "username": "choihy", "power_badge": false, "display_name": "choichoi🎩", "active_status": "inactive", "verifications": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "follower_count": 979, "custody_address": "0xee9478fcdcbee02652b2dc62f13e0344fed8d3b9", "following_count": 1174, "verified_addresses": {"eth_addresses": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "sol_addresses": ["AcNwE2N4LmVCcJJ2Ct7RCGiHBqm43BmgPGs1H8RLWt75"]}}', '{"{\"url\":\"https://on.soundcloud.com/32ZPcaiWp8syUBeP8\"}"}', NULL), - (227804, '0x4c0d6ddacb27acd96a0d25170130e8bf7c5db45c', 0, 1, '2024-05-05 13:31:08+00', 0, 0, '{"fid": 329190, "object": "user", "pfp_url": "https://i.imgur.com/h3o4Ntz.jpg", "profile": {"bio": {"text": "Nice to meet you. thank you.", "mentioned_profiles": []}}, "username": "komasugi", "power_badge": false, "display_name": "komasugi🎩🍖", "active_status": "inactive", "verifications": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "follower_count": 1210, "custody_address": "0x88ce15b0d31e50d0e3fcc1e64a782c2f6b87c3e6", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki4/x-3?si=ed02f352a72a46f8b5925c5cfa3c7061&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (219892, '0xa92d4ada09a18afef24a749fbe13bdff1542c471', 0, 1, '2024-05-05 13:16:06+00', 0, 1, '{"fid": 503328, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59e830e-0465-490d-c526-b964d43c5900/rectcrop3", "profile": {"bio": {"text": "Dr.kk 3배 폭격맨 💣🫡🔥무조건 갑니다\nDr.k", "mentioned_profiles": []}}, "username": "hh7035881", "power_badge": false, "display_name": "Dr.kk", "active_status": "inactive", "verifications": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "follower_count": 1348, "custody_address": "0x2cc415f9dfa832bd167eb5d5d1c42e144d868c40", "following_count": 1368, "verified_addresses": {"eth_addresses": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/53CqBJADR1Yr3B7w9\"}"}', NULL), - (228725, '0xbe67b58c5d30eed915efa6b5ecfead2b58f95cb7', 0, 1, '2024-05-05 13:33:45+00', 0, 1, '{"fid": 504968, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a64799a-97b7-4279-8166-7879e590a800/rectcrop3", "profile": {"bio": {"text": "i am conquer", "mentioned_profiles": []}}, "username": "borjigintemujin", "power_badge": false, "display_name": "TemuJin🎩🍖", "active_status": "inactive", "verifications": ["0xf55c54c399a4d3fa4735e8d399f676a39c91ec8a"], "follower_count": 69, "custody_address": "0xcccfcfd81eb837d014139ae226efd289bf75a77d", "following_count": 129, "verified_addresses": {"eth_addresses": ["0xf55c54c399a4d3fa4735e8d399f676a39c91ec8a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/starlight-sky/lucia-10?in=bpwabzjznlcz/sets/q8dbxugeyrup&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (235125, '0x5c64732c4befeba97febbfa0695cf0bc9871c559', 0, 1, '2024-05-05 13:46:14+00', 0, 2, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 727, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1086, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5T8EDUDqKcs6OSOwEsfqG7?si=mOzbAb0XS8mR0jb7TfFkTw\"}"}', NULL), - (221183, '0x529a4c0d1582d7ac3ce5f6bffec2c37d60073cea', 0, 1, '2024-05-05 13:20:37+00', 0, 4, '{"fid": 503328, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59e830e-0465-490d-c526-b964d43c5900/rectcrop3", "profile": {"bio": {"text": "Dr.kk 3배 폭격맨 💣🫡🔥무조건 갑니다\nDr.k", "mentioned_profiles": []}}, "username": "hh7035881", "power_badge": false, "display_name": "Dr.kk", "active_status": "inactive", "verifications": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "follower_count": 1348, "custody_address": "0x2cc415f9dfa832bd167eb5d5d1c42e144d868c40", "following_count": 1368, "verified_addresses": {"eth_addresses": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uAhZoAZPCaSdceoZ9\"}"}', NULL), - (221185, '0xb0e09a1c8ec076d50bd61caaa74a09999bb6f3e3', 0, 1, '2024-05-05 13:20:36+00', 0, 3, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 458, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 760, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u6C6b\"}"}', NULL), - (220516, '0x0a5e1f2a4622be2d73a172feeda411015655830f', 0, 1, '2024-05-05 13:18:27+00', 0, 0, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 457, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 760, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 윤하 (Younha) - 우산 (Umbrella) by aikupabbo on #SoundCloud https://on.soundcloud.com/u6C6b\"}"}', NULL), - (228265, '0xec183fed84daacb08bc3cc03d3c186c3274dd7f6', 0, 1, '2024-05-05 13:32:04+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2916, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2335, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6w2cE\"}"}', NULL), - (246743, '0xc08c0b0e05440e62562afd67cdf85276ee9fb474', 0, 1, '2024-05-05 14:09:34+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1131, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 941, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Y5ijosXFrDPtMHK78\"}"}', NULL), - (1172893, '0xcfb790b45949e4ee13b076866b288824b0213105', 5010, 1, '2024-05-14 19:49:55+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 421, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 238, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77EwsTh7jz9khxVQK7gFBW?si=uBs-je4-R7eSta2Rr54b0g\"}"}', NULL), - (228442, '0xb226e500b2895c341158f54a604f9ff817110cb1', 0, 1, '2024-05-05 13:32:34+00', 0, 0, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1201, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 948, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4y9PBVP1yDvL6Efur0IXoO?si=af9a5b67589c40cc\"}"}', NULL), - (247171, '0xd1ca618ef3f2ad9289c623e484493e9e1ee2e0a2', 0, 1, '2024-05-05 14:18:59+00', 0, 0, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "follower_count": 1421, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1087, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/nJHuYm7dqNQ45CM5A\"}"}', NULL), - (220103, '0x3364c33b0718f46adf645f4b894b517a5f79747d', 0, 1, '2024-05-05 13:17:56+00', 0, 1, '{"fid": 287674, "object": "user", "pfp_url": "https://i.imgur.com/eKRHQek.jpg", "profile": {"bio": {"text": "Hi~ I''m choi who wants to make many friends~ Please be friends with me!\nso glad to meet u every friends.", "mentioned_profiles": []}}, "username": "choihy", "power_badge": false, "display_name": "choichoi🎩", "active_status": "inactive", "verifications": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "follower_count": 979, "custody_address": "0xee9478fcdcbee02652b2dc62f13e0344fed8d3b9", "following_count": 1174, "verified_addresses": {"eth_addresses": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "sol_addresses": ["AcNwE2N4LmVCcJJ2Ct7RCGiHBqm43BmgPGs1H8RLWt75"]}}', '{"{\"url\":\"https://on.soundcloud.com/32ZPcaiWp8syUBeP8\"}"}', NULL), - (239567, '0x229dc303eff595810111f990fa38e6023b5763ee', 0, 1, '2024-05-05 13:58:32+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2349, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4108, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kloocrew/minijeans\"}"}', NULL), - (236523, '0xe1480ee773ebd9461cf1d1b47453aa4e308bedf1', 0, 1, '2024-05-05 13:50:46+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2916, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2335, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6WUzg\"}"}', NULL), - (230623, '0xc3f1fa88253cd6fd24d113813a6ededa33cb4165', 0, 1, '2024-05-05 13:37:19+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Cb5GZnRZLo9USyaG8\"}"}', NULL), - (260006, '0xc852a1bcd492965e8123771ec2948ff55a98172a', 0, 1, '2024-05-05 15:34:28+00', 0, 0, '{"fid": 265597, "object": "user", "pfp_url": "https://i.imgur.com/4oW3yZ9.gif", "profile": {"bio": {"text": "Japanese🇯🇵 \nlike ▶︎ BCG、エアドロ、お酒🍶、犬🐶\n沢山いいね、リキャストしていきます👍\n", "mentioned_profiles": []}}, "username": "ginsan", "power_badge": false, "display_name": "ginsan.degen🎩🔮", "active_status": "inactive", "verifications": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "follower_count": 1135, "custody_address": "0xe4c97bd2e6864247d76555c72e624c6113343c9b", "following_count": 541, "verified_addresses": {"eth_addresses": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "sol_addresses": ["5vmkrAHfaLYDP4kdt7HUph6rPLk6Z1xhj8sPPLNy9w7e"]}}', '{"{\"url\":\"https://open.spotify.com/track/65GxdiR96H94nMoRhPe9bv?si=93TXPAI7SzSNjelJTKkHhQ&context=spotify%3Aalbum%3A7JZveGo3ddNZRVoQlrU1E2\"}"}', NULL), - (235516, '0x4ee4bd3c3533ef147d0b6ae4a65fdc195aec1000', 0, 1, '2024-05-05 13:47:40+00', 0, 0, '{"fid": 501245, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c443c50f-bc83-4c2b-775b-24d411beed00/original", "profile": {"bio": {"text": "Bonjour, enchanté 🙌", "mentioned_profiles": []}}, "username": "narza", "power_badge": false, "display_name": "NARZA", "active_status": "inactive", "verifications": ["0x9eb4190a8a7cfcbd854ac86c0a7fe5c9351cfc20"], "follower_count": 57, "custody_address": "0x69d86773fc5c26edf719cfac0427a5a352817ab6", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x9eb4190a8a7cfcbd854ac86c0a7fe5c9351cfc20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bart-ouwehand/up-town-funk?in=user-971230359/sets/playlist-bruno-mars&si=6bfdb4c797c645ffad3ce4bb1e63bba0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (237277, '0xa7cc648ff07d553ed693d62d1f169f14ff66188b', 0, 1, '2024-05-05 13:53:44+00', 0, 2, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 223, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 397, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-788854717/shape-of-love-ft-angelize?in=trending-music-jp/sets/pop&si=97b13b37281e4dcfbfabc643434c0676&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (222894, '0x65e44e020dae33d5f19294155cb1540aca8a4551', 0, 1, '2024-05-05 13:22:53+00', 0, 1, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1188, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1359, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Em7hr\"}"}', NULL), - (222194, '0x994717cff70e69b3dd7c6d31dbe5745b567debd5', 0, 1, '2024-05-05 13:21:54+00', 0, 1, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o29pzGRbWjPAYro2A\"}"}', NULL), - (235537, '0x53b22a169857c7f8d4cb846a5ee1b2528ea2533f', 0, 1, '2024-05-05 13:47:05+00', 0, 1, '{"fid": 492179, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a8259f8-eb00-4717-1463-d7bf705a7600/rectcrop3", "profile": {"bio": {"text": " my interests GYM & dance", "mentioned_profiles": []}}, "username": "dorsaa", "power_badge": false, "display_name": "Dorsaa 🎩🔮🍖", "active_status": "inactive", "verifications": ["0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa"], "follower_count": 802, "custody_address": "0x71f1b470319dd28a8ca31f76749ea882bec9fe4b", "following_count": 452, "verified_addresses": {"eth_addresses": ["0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/toomajsalehi/tifus\"}"}', NULL), - (229542, '0xd2b230057022b3342c48e285ea29a27b0e7d2d5b', 0, 1, '2024-05-05 13:34:56+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 782, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/pop\"}"}', NULL), - (239491, '0xd9cc4091d2bbd400a97b07f28c6a3aaabb1fc5f4', 0, 1, '2024-05-05 13:57:02+00', 0, 0, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2016, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2588, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3ZSEH2vWUZ33ixc99\"}"}', NULL), - (117, '0xe6c904cff638478a16b7213a0eff4571bf4086b2', 1020, 1, '2024-05-01 19:34:44+00', 0, 25, '{"fid": 24, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa920810-fa1b-4f36-7daf-c53f837e2900/rectcrop3", "profile": {"bio": {"text": "@variant", "mentioned_profiles": []}}, "username": "jesse", "power_badge": true, "display_name": "Jesse Walden", "active_status": "inactive", "verifications": ["0xe7925d190aea9279400cd9a005e33ceb9389cc2b"], "follower_count": 24350, "custody_address": "0x5c2dc0bbd218a34dfd472b52004cb3776f311df2", "following_count": 217, "verified_addresses": {"eth_addresses": ["0xe7925d190aea9279400cd9a005e33ceb9389cc2b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1awcU1rB5JCcaXCosQwo93?si=aZ2kcs0dTRuaQXeYz1bfEA\"}"}', NULL), - (228727, '0x2b45b2a1e860661b768a41c2219e541721151b8d', 0, 1, '2024-05-05 13:33:09+00', 0, 0, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/rolling-stone?referral_source=link\"}"}', NULL), - (259506, '0x57f1124ee64facd5cda8eb813f3ba9cfe2a1fbaf', 0, 1, '2024-05-05 15:31:42+00', 0, 3, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 669, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1149, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-284070760/sets/blackpink?si=897118434855456b98a931576025f033&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (222196, '0x4bc016058b326aa35335ee7f95a96c1381aba06d', 0, 1, '2024-05-05 13:22:46+00', 0, 2, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 770, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 855, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XDKD4AEXT5TLycKw8\"}"}', NULL), - (231861, '0x99529716c09daba2ff44050136aff828898f5cd6', 0, 1, '2024-05-05 13:39:59+00', 0, 0, '{"fid": 239772, "object": "user", "pfp_url": "https://i.imgur.com/QFbg0GN.jpg", "profile": {"bio": {"text": "NFT CREATOR on Crypto", "mentioned_profiles": []}}, "username": "ohmaygot", "power_badge": false, "display_name": "$JUP JP 🎩🎩", "active_status": "inactive", "verifications": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "follower_count": 232, "custody_address": "0xcdb034f151b215297a81b7e64085597bd8e32ae4", "following_count": 756, "verified_addresses": {"eth_addresses": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "sol_addresses": ["FHRs2GSYnZsFjmoSvWpvvfyAdHre4jQPRih8Br6JkSZ2"]}}', '{"{\"url\":\"https://m.soundcloud.com/tommyrichmann/million-dollar-baby-vhs\"}"}', NULL), - (246674, '0xb289bacc4b0dbd996428bcd6026b4794c378bdc8', 0, 1, '2024-05-05 14:09:47+00', 0, 1, '{"fid": 503362, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d1112a4-9242-451e-6ff5-7a3724983500/rectcrop3", "profile": {"bio": {"text": "Nice to meet you. I LOVE Warpcast.", "mentioned_profiles": []}}, "username": "dailydaily", "power_badge": false, "display_name": "DamDam🍖", "active_status": "inactive", "verifications": ["0x7e0573c91a9391ec8d4d0eb4dd47e3adffb5c26b"], "follower_count": 974, "custody_address": "0xa27d6ebea8b4c31321c2b4b6e129faa8617ef927", "following_count": 1381, "verified_addresses": {"eth_addresses": ["0x7e0573c91a9391ec8d4d0eb4dd47e3adffb5c26b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cardell/imagine-remastered?in=user-442050681-623389884/sets/let-it-be-the-beatles&si=86280d2630e04501af016a8744879228&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (229540, '0x16775499325dc601f6ceb3a49780146c2abc7217', 0, 1, '2024-05-05 13:35:14+00', 0, 0, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 1985, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2836, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Crush(크러쉬) - 미안해 미워해 사랑해(Love You With All My Heart) (눈물의 여왕 OST) Queen of Tears OST Part 4 by 🐯 on #SoundCloud https://on.soundcloud.com/fSUqJ\"}"}', NULL), - (247055, '0xf18ad25f85b94ae16b01b3f456ffdc194cf7607c', 0, 1, '2024-05-05 14:16:51+00', 0, 5, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 1944, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 1873, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rob-noordeloos/frank-sinatra-new-york-new-york?si=56cfbc9b2c6144f3bec60fe014b833c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (230624, '0x6313db704cbc73af114e4184aa01e3d02a6815ff', 0, 1, '2024-05-05 13:36:49+00', 20, 25, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2990, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 269, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/famous_dyl/sets/internet-legend-1\"}"}', NULL), - (239062, '0x62a8f03bdb87acaf5cb3a21689c5e0c47dc1d156', 0, 1, '2024-05-05 13:55:05+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2349, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4108, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok?utm_source=clipboard&utm_campaign=wtshare&utm_medium=widget&utm_content=https%253A%252F%252Fsoundcloud.com%252Fyrlocation2%252Fon6kq4ylok\"}"}', NULL), - (231084, '0x909e6ee6360526277657d7f57ae0393d4aa0890a', 0, 1, '2024-05-05 13:37:57+00', 0, 0, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 722, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YoBdoCgUJnay6z16A\"}"}', NULL), - (223649, '0xba91698468bfe2d5cd1d290cb57f60daf19d7e5a', 0, 1, '2024-05-05 13:24:50+00', 0, 2, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fNqzprHhKyfuQRbq9\"}"}', NULL), - (223650, '0x01c43d53a88458d0b44b1bf4afeab89492bd3e7b', 0, 1, '2024-05-05 13:24:18+00', 0, 1, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1240, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 905, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lucy-152635109/2022a1?si=8c38b6902ad44d75b2d1b040cad261e3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283339, '0x291c827a36fbdfddef454f030c824b66aa4e95e6', 0, 1, '2024-05-05 18:25:41+00', 0, 1, '{"fid": 501820, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60e10659-76b4-4660-8806-1b456771d300/rectcrop3", "profile": {"bio": {"text": "From online to on-chain", "mentioned_profiles": []}}, "username": "b24d", "power_badge": false, "display_name": "Kuny", "active_status": "inactive", "verifications": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "follower_count": 1028, "custody_address": "0x19073cd6a24bd9f4479367b98868184b06e502f1", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/g4LuwaV87vdszaAD9\"}"}', NULL), - (236675, '0x4aa182a763289cda7673fca1d590a1f177c29268', 0, 1, '2024-05-05 13:51:33+00', 0, 1, '{"fid": 501220, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36aeee53-0310-43a8-8e51-d754393b3900/rectcrop3", "profile": {"bio": {"text": "일단 난 슈캐 / 무지개 거울을 좋아하는 흑화된 그무언가 / 봇처럼 댓글 달면 답방 안가유🙏 저도 성심성의껏 적을게요 / f4f / momo AI / catizen / nine chronicles / degen / fingerstyle / fork guitar / K-music", "mentioned_profiles": []}}, "username": "cryptochoni", "power_badge": false, "display_name": "crypto CAT", "active_status": "inactive", "verifications": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "follower_count": 1244, "custody_address": "0x926a7eacdc09e92f80875fccb62b9030c452022f", "following_count": 1496, "verified_addresses": {"eth_addresses": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hySHt6visRqwbBkA8\"}"}', NULL), - (239061, '0x3d6bc36597155d4691cb709bd794f9e8bad0367b', 0, 1, '2024-05-05 13:55:12+00', 0, 1, '{"fid": 287674, "object": "user", "pfp_url": "https://i.imgur.com/eKRHQek.jpg", "profile": {"bio": {"text": "Hi~ I''m choi who wants to make many friends~ Please be friends with me!\nso glad to meet u every friends.", "mentioned_profiles": []}}, "username": "choihy", "power_badge": false, "display_name": "choichoi🎩", "active_status": "inactive", "verifications": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "follower_count": 984, "custody_address": "0xee9478fcdcbee02652b2dc62f13e0344fed8d3b9", "following_count": 1175, "verified_addresses": {"eth_addresses": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "sol_addresses": ["AcNwE2N4LmVCcJJ2Ct7RCGiHBqm43BmgPGs1H8RLWt75"]}}', '{"{\"url\":\"https://on.soundcloud.com/n92XnYXAPBB1GgqJ7\"}"}', NULL), - (239249, '0x051c195ae881d32a7b47ef48a43f6d9b71ac63f7', 4322, 1, '2024-05-05 13:56:17+00', 10, 1, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": false, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1877, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 965, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/mimosax\"}"}', 'soundxyz'), - (237273, '0xf2b06d247e29eabb425f8dc0ff540ae532e8c50f', 0, 1, '2024-05-05 13:53:11+00', 0, 7, '{"fid": 323975, "object": "user", "pfp_url": "https://i.imgur.com/aHyJtGw.jpg", "profile": {"bio": {"text": "너와 나의 연결고리. \n매너있게 재미있게 즐겁게 소통해요.\n좋은 정보 공유하도록 노력할께요~", "mentioned_profiles": []}}, "username": "daonpapa", "power_badge": false, "display_name": "Onpapa🎩", "active_status": "inactive", "verifications": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "follower_count": 1601, "custody_address": "0x9f09e9d1b492398f7f5d2a3d780eca0ed24af007", "following_count": 2898, "verified_addresses": {"eth_addresses": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1q2FtQw2oNrX0GGlnw0RoI?si=69b03750c72d4326\"}"}', 'sonata'), - (231359, '0xda7cd70aabd9ae9045cdf730aa77857afc853c58', 0, 1, '2024-05-05 13:39:27+00', 0, 1, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 631, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 751, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/doharim/orcbt93xzyxi?si=2845a8bae9d940f1a6d14d1f61635a74&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing \"}"}', NULL), - (1173151, '0x6bedb5a2019d558456700eb1e6043e2c04d72c4e', 2000, 1, '2024-05-15 02:47:24+00', 0, 0, '{"fid": 17507, "object": "user", "pfp_url": "https://i.imgur.com/QuGGLaR.jpg", "profile": {"bio": {"text": "enjoy crypto\nFID : 17507", "mentioned_profiles": []}}, "username": "cryptonomori.eth", "power_badge": true, "display_name": "cryptonomori 🎩", "active_status": "inactive", "verifications": ["0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5", "0xe15c7575b6efa56ec9355e36fba650cdc92738b5"], "follower_count": 3902, "custody_address": "0xc77943cb5e6127e9af06baece3c58b2df18d7f11", "following_count": 878, "verified_addresses": {"eth_addresses": ["0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5", "0xe15c7575b6efa56ec9355e36fba650cdc92738b5"], "sol_addresses": ["6wCArP7GvQPF1dDPakpAPfr8ubifpmEZqkCB8m1YV1ib"]}}', '{"{\"url\":\"https://open.spotify.com/track/2ucLfayUd834lTgopY8gtG?si=tlslAwLRTIeu9QNkMmLy2w\"}"}', NULL), - (247101, '0x6b01e28f6928a04b77b4cfecd5ccd5c5f960c1f1', 0, 1, '2024-05-05 14:18:54+00', 0, 0, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000% 댓글❤️, 좋아요❤️\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2477, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2344, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-932548637/imase-night-dancer?si=d0561c6a15774318af096feb0a348938&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (246711, '0xe4fb0ad63bc58dc64bb73af2d55b2099f131d416', 0, 1, '2024-05-05 14:11:09+00', 0, 0, '{"fid": 472997, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ2i1YDjqg6f16wUJgNpqTqrtNQyUa18wMNC6B6uXNGmD?filename=KakaoTalk_20240419_025514877.png", "profile": {"bio": {"text": "It''s a place where I share my daily life I want to be close with you.Come and see me often Have a nice day!", "mentioned_profiles": []}}, "username": "jinkyo", "power_badge": false, "display_name": " Jaykay", "active_status": "inactive", "verifications": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "follower_count": 2989, "custody_address": "0x9359eee17224661c3bc0df15f8f3367ed0f1884c", "following_count": 2966, "verified_addresses": {"eth_addresses": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/iu-eight-prod-feat-suga-of-bts?in=yangho-choi/sets/rrreyhgkgry2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247054, '0x2b9160c89b0b839078ca43cd6d7433753696152b', 0, 1, '2024-05-05 14:16:54+00', 0, 2, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1513, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2412, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vQP6DkCjoPZDUgb27\"}"}', NULL), - (260137, '0x3b39f244bec56d98382137e5aaf4d4c14c39288b', 0, 1, '2024-05-05 15:34:43+00', 0, 6, '{"fid": 469305, "object": "user", "pfp_url": "https://i.imgur.com/eIrhOrd.jpg", "profile": {"bio": {"text": "I want to thank everyone who clicked on me.\nI''m interested in crypto markets.\nI''m also interested in food and traveling.\nI wish you well.", "mentioned_profiles": []}}, "username": "jrebuild", "power_badge": false, "display_name": "jrebuild", "active_status": "inactive", "verifications": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "follower_count": 2070, "custody_address": "0x25d482ab85de61a33c7ec7985b255f64ddab73d0", "following_count": 2032, "verified_addresses": {"eth_addresses": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AYHo2\"}"}', NULL), - (627056, '0x6250753808ff999a23e3930a9e46c7342d3814ce', 0, 1, '2024-05-06 13:41:23+00', 0, 1, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2146, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1880, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"밤에 어울리는 띵곡 https://on.soundcloud.com/seFUUrYHuGnsPiZ76\"}"}', NULL), - (1173158, '0xdb94933ba83387bb974fe30ae1506b7bd0cf1e1e', 1000, 1, '2024-05-15 03:12:44+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 328, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 267, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2WGcpz55A2vrvh6foEGCNL?si=0j-nlF0GR1OP4RuPJQET6w&context=spotify%3Aartist%3A0NIPkIjTV8mB795yEIiPYL\"}"}', 'bangers'), - (235882, '0xff90692e96c1de23f7996204cd6e0eff9cdf5219', 0, 1, '2024-05-05 13:48:10+00', 0, 0, '{"fid": 492179, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a8259f8-eb00-4717-1463-d7bf705a7600/rectcrop3", "profile": {"bio": {"text": " my interests GYM & dance", "mentioned_profiles": []}}, "username": "dorsaa", "power_badge": false, "display_name": "Dorsaa 🎩🔮🍖", "active_status": "inactive", "verifications": ["0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa"], "follower_count": 802, "custody_address": "0x71f1b470319dd28a8ca31f76749ea882bec9fe4b", "following_count": 452, "verified_addresses": {"eth_addresses": ["0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa", "0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/toomajsalehi/faal\"}"}', NULL), - (219647, '0x589217f0e60be3afcb938bacc4cd357e4023526f', 0, 1, '2024-05-05 13:15:59+00', 0, 0, '{"fid": 208417, "object": "user", "pfp_url": "https://i.imgur.com/p98eUv0.jpg", "profile": {"bio": {"text": "GRAMMY, B’s of streams, chart toppers. \nMore soon…", "mentioned_profiles": []}}, "username": "pwk", "power_badge": false, "display_name": "0xTrapchat", "active_status": "inactive", "verifications": ["0xc485712b3d7873d39928719b15d9bbdb92288d1c"], "follower_count": 56, "custody_address": "0xc4f366cfafd1012f7a60da2d0db206eb5f0b8ea5", "following_count": 123, "verified_addresses": {"eth_addresses": ["0xc485712b3d7873d39928719b15d9bbdb92288d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5IyOYclKa9w9sjEeewNDmu?si=Pi-8Oi-4SJ-YRIim-lzW-w\"}"}', NULL), - (237274, '0x7db55f64c7ddb9b9891cd92301b8b9a4fbf10771', 0, 1, '2024-05-05 13:53:13+00', 0, 2, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 223, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 397, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/foxy-yukina/mp3?in=trending-music-jp/sets/pop&si=3d41a216fc914f4a945760cea749dfb5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (259755, '0xe5e05d23ff640af55275d8d54f2bf6744f90ffcd', 0, 1, '2024-05-05 15:33:20+00', 0, 2, '{"fid": 500216, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2150447d-3010-4ac1-d0af-80b82f949300/rectcrop3", "profile": {"bio": {"text": "$Degen 1$ 🌙\nFollow me :)", "mentioned_profiles": []}}, "username": "bitsla0928", "power_badge": false, "display_name": "SLA🔥", "active_status": "inactive", "verifications": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "follower_count": 879, "custody_address": "0xa8a47f59700d7727ffd26ae2aaccc37239e50e94", "following_count": 939, "verified_addresses": {"eth_addresses": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-793543988-785076913/honne-day-2?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247003, '0x4fbed1ca806824fb009db8455ea3c04213b12ea3', 0, 1, '2024-05-05 14:16:02+00', 0, 1, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 319, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 310, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zyhC4\"}"}', NULL), - (247001, '0xe9e33a9f76d2095258f6ff3a7405599118bcc7e1', 0, 1, '2024-05-05 14:16:44+00', 0, 0, '{"fid": 500224, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85166db0-7cef-4835-1505-9ee383294000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "devilsangjin", "power_badge": false, "display_name": "TigerSJ", "active_status": "inactive", "verifications": ["0x756f87ec958315bed6e8c50e02361302e0c64868"], "follower_count": 2648, "custody_address": "0xd7e9d23fec930ea7fd49417583fe89a961c4f9ea", "following_count": 6100, "verified_addresses": {"eth_addresses": ["0x756f87ec958315bed6e8c50e02361302e0c64868"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/b8hjlqb3ym8p/gaqaokng6erq?si=aecd0d48647048bf8feef25f3433454f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (260015, '0x094bfd686030f9eb46cf8a5a0c5c8de8161273db', 1000, 1, '2024-05-05 15:34:39+00', 0, 2, '{"fid": 386033, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc22dd9a-a03a-44fd-6684-a283b4933500/original", "profile": {"bio": {"text": "HAM HAM🍖 / Frame developer\nFrom DEG server", "mentioned_profiles": []}}, "username": "chiffon-m", "power_badge": false, "display_name": "sifonM🎩🍖🔵🟢", "active_status": "inactive", "verifications": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "follower_count": 633, "custody_address": "0xecf66086803983f13e85754591fedc58891fd70c", "following_count": 657, "verified_addresses": {"eth_addresses": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Qb4hD\"}"}', NULL), - (235881, '0xa788d9415d40ee1fcbe5898a1333a549edfbce98', 0, 1, '2024-05-05 13:48:00+00', 0, 0, '{"fid": 501245, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c443c50f-bc83-4c2b-775b-24d411beed00/original", "profile": {"bio": {"text": "Bonjour, enchanté 🙌", "mentioned_profiles": []}}, "username": "narza", "power_badge": false, "display_name": "NARZA", "active_status": "inactive", "verifications": ["0x9eb4190a8a7cfcbd854ac86c0a7fe5c9351cfc20"], "follower_count": 57, "custody_address": "0x69d86773fc5c26edf719cfac0427a5a352817ab6", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x9eb4190a8a7cfcbd854ac86c0a7fe5c9351cfc20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bart-ouwehand/up-town-funk?in=user-971230359/sets/playlist-bruno-mars&si=6bfdb4c797c645ffad3ce4bb1e63bba0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (232533, '0x6be5c668cf1f1ec76593cf903bd5def3d28840ed', 0, 1, '2024-05-05 13:41:10+00', 0, 18, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 631, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 751, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musiic_time/choi-yu-ree-wandering-youth?si=5d1d1a6a5a334f428a7002af86fe4a94&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (232536, '0xecfbbd2c565759a685cb323cd9a93d5cc1bb34ae', 0, 1, '2024-05-05 13:41:44+00', 0, 0, '{"fid": 239772, "object": "user", "pfp_url": "https://i.imgur.com/QFbg0GN.jpg", "profile": {"bio": {"text": "NFT CREATOR on Crypto", "mentioned_profiles": []}}, "username": "ohmaygot", "power_badge": false, "display_name": "$JUP JP 🎩🎩", "active_status": "inactive", "verifications": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "follower_count": 232, "custody_address": "0xcdb034f151b215297a81b7e64085597bd8e32ae4", "following_count": 756, "verified_addresses": {"eth_addresses": ["0x000009df76cd34aa2133900bff2b488d2c2fa4b3"], "sol_addresses": ["FHRs2GSYnZsFjmoSvWpvvfyAdHre4jQPRih8Br6JkSZ2"]}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby-vhs\"}"}', NULL), - (232531, '0x3ef382718ab6aec0ddc9edc4f291170fda476b8e', 0, 1, '2024-05-05 13:41:57+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1719, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UJmUBqCY1ELeqqQY7\"}"}', NULL), - (232534, '0xe1dc0c55c1a62e663ec1ad83d97b4a1eaff835ef', 0, 1, '2024-05-05 13:41:21+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1131, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 939, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9shw6s7XL2DM1PYV8\"}"}', NULL), - (239063, '0xeaa6e181c2186db3e8bbe14a2ad1c89380297cc9', 0, 1, '2024-05-05 13:55:23+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2349, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4108, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok \"}"}', NULL), - (247053, '0xdf5655fe47c52a919a6aab576f63f2f996589ee8', 100, 1, '2024-05-05 14:16:56+00', 0, 7, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "follower_count": 1421, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1087, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/nJHuYm7dqNQ45CM5A\"}"}', NULL), - (231864, '0x791b2d71e07e71ca01d367b8e7cd1e4d9ded4cfe', 0, 1, '2024-05-05 13:40:20+00', 0, 0, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1240, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 905, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki32/bssseventeen-ost-queen-of-tears-ost-part-1?si=76ae0df3248f434b98524550cfc9b678&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (356565, '0x694e238c86a3f338ac3ebfe5370bf78e6180e71d', 0, 1, '2024-05-06 01:46:59+00', 0, 0, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3855, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3283, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Don''t Go Insane & DPR IAN by toru on #SoundCloud https://on.soundcloud.com/GjTHD\"}"}', NULL), - (239250, '0x0abcbc628f23413a2fad1de4d01feb331ca30bb1', 0, 1, '2024-05-05 13:55:57+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1361, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1876, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3eUpSxjt67V76Pwp7\"}"}', NULL), - (237276, '0xd5efa3e535d4c3e29a0ea5351cae69d64ac85711', 0, 1, '2024-05-05 13:53:02+00', 0, 2, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 223, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 397, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sijalofficial/ey-jan?in=trending-music-jp/sets/pop&si=7bf7732ca8aa43d1a6fe2116aabe1c19&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (424028, '0x005f6a4d37e8664949671f171d0913384708cc90', 0, 1, '2024-05-06 06:03:15+00', 0, 1, '{"fid": 496665, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQLfrGWJ1KXBP5tPNrEhSQiBYGpzdCvy6DmgLxfwMVrJj?filename=.jpg", "profile": {"bio": {"text": "NewjeanSNKRS page", "mentioned_profiles": []}}, "username": "ruvv", "power_badge": false, "display_name": "NewjeanSNKRS", "active_status": "inactive", "verifications": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "follower_count": 1305, "custody_address": "0xfed77a68bf6da88aa0b78e904820451ebaecfc94", "following_count": 2186, "verified_addresses": {"eth_addresses": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xgMDB\"}"}', 'sonata'), - (260394, '0x10a17f56bb4a6200e3894c73ac7e2ac8caf70468', 0, 1, '2024-05-05 15:37:36+00', 0, 2, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 669, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1149, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kato-tabaghua/ray-charles-ellie-my-love?si=6f9d7c6d30c3484ba09c8786fe5818b3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (172241, '0xbead9cad4e4839596cfc72975b8d87ccc53570f8', 0, 1, '2024-05-05 10:26:03+00', 0, 2, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/quacklemore/a-million-reasons-remix-feat-balloutcrypto-and-msfathom?referral=0x8218224ebb7abf7dbaffdf0fed571b8280d99485&referral_source=link\"}"}', NULL), - (1165440, '0x9c5e0623528f4ea9ef793fe500a31a10c452b285', 120, 1, '2024-05-10 14:38:37+00', 10, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/picnic\"}"}', NULL), - (247327, '0x6643a532bb5b3ca4d7b0cbfce7b1c72903f62ab7', 0, 1, '2024-05-05 14:23:06+00', 0, 0, '{"fid": 507418, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4f3029e3-eeba-4fce-34f4-e41174dcc100/rectcrop3", "profile": {"bio": {"text": "Hi there :)", "mentioned_profiles": []}}, "username": "!507418", "power_badge": false, "display_name": "Dargu", "active_status": "inactive", "verifications": ["0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25"], "follower_count": 10, "custody_address": "0x895b210f11472d801a0f113e6f1284caeb01f305", "following_count": 82, "verified_addresses": {"eth_addresses": ["0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25", "0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/poop-poop-828317186/bruno-mars-when-i-was-your-man?in=user-971230359/sets/playlist-bruno-mars&si=a6e0f2707e3f4401a39dcb8a5e851eed&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (356564, '0xbd88d084b16b056eda192753d6ceb04f976fdf47', 0, 1, '2024-05-06 01:47:24+00', 0, 2, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3855, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3283, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/GjTHD\"}"}', NULL), - (247274, '0xce0e583f829cc0629ee19365e265a89da783a867', 0, 1, '2024-05-05 14:22:02+00', 0, 1, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2165, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 722, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9JyF9gYuMgBdLKck6\"}"}', NULL), - (266203, '0x3837d8c8f5101a6b26e797dec6ad46c31cfdf58f', 0, 1, '2024-05-05 16:16:33+00', 0, 0, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2527, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1684, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0tZbIJd9rPKlhqAr2ov3gH?si=3d9aa093313a43e4\"}"}', NULL), - (265667, '0xb7f44012f47bbcf78b6d119858490e5c59d388c0', 0, 1, '2024-05-05 16:12:10+00', 0, 1, '{"fid": 501056, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWhFgzb1WSkL5ohudhvAW6rA2ifv5LExtUFWJubVKPkmH?filename=.JPG", "profile": {"bio": {"text": "Hi, Call me Road🖤\n\n\nEnjoy & Imaigine !!!All the way\n\nand trading Crypto world♥\n\n\n\nBe Friendly bro :)\n\nMy zora dashboard\nhttps://zora.co/@roadyisgil", "mentioned_profiles": []}}, "username": "roadisgil", "power_badge": false, "display_name": "RJr🤍🔵🍖🎩", "active_status": "inactive", "verifications": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "follower_count": 763, "custody_address": "0x7fd417ea019f5fc7bde958ea596800c181fa3049", "following_count": 681, "verified_addresses": {"eth_addresses": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MHqK6\"}"}', NULL), - (265911, '0xf16b8a40a5bd097e0c98fe62d85285c47ff14a84', 0, 1, '2024-05-05 16:15:29+00', 0, 1, '{"fid": 500371, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7acbb460-b029-47f7-a44d-549b4b8eeb00/rectcrop3", "profile": {"bio": {"text": "Warpcast is good🌸\nLet''s go together🩵\n슈캐 신입 인사드려용", "mentioned_profiles": []}}, "username": "10poon", "power_badge": false, "display_name": "🌈 10poon🎩", "active_status": "inactive", "verifications": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "follower_count": 1743, "custody_address": "0xc4594cf253dcfd3d97b1d03b4045278b7b64bfa7", "following_count": 2791, "verified_addresses": {"eth_addresses": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ca5c69a-ae9c-4d77-9a18-63f4bfc4a200/original\"}","{\"url\":\"https://soundcloud.com/awfulpianosound/yiruma-river-flows-in-you?si=ef5eb54c383a4431b4c2987b802e3193&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (265909, '0x61f07ef89985e9926737901e57cb522878812143', 0, 1, '2024-05-05 16:14:29+00', 0, 0, '{"fid": 290640, "object": "user", "pfp_url": "https://i.imgur.com/O5ZNI75.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "jjjjjuuuuu", "power_badge": false, "display_name": "jjjjjuuuuu🎩🍖", "active_status": "inactive", "verifications": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "follower_count": 979, "custody_address": "0xc6ff0a3a40b66452b33aa97efb339d5bf3f21f9d", "following_count": 496, "verified_addresses": {"eth_addresses": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imnotminda/midas-touch-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (255754, '0x40987fe34b99b9b760d26744a3cd4c2c8c685f41', 0, 1, '2024-05-05 15:06:36+00', 0, 1, '{"fid": 461302, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f20ea39c-42ac-43eb-912b-dc4e90c64e00/rectcrop3", "profile": {"bio": {"text": "Hello~", "mentioned_profiles": []}}, "username": "dd8", "power_badge": false, "display_name": "dd8", "active_status": "inactive", "verifications": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "follower_count": 2622, "custody_address": "0xaea1e717380b4d1722164a4cba18c50e059479c4", "following_count": 2003, "verified_addresses": {"eth_addresses": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musiic_time/ibnjzfkhjv27?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173113, '0x5ed73850ccb0fd165cb30aa14e52eacac00095ad', 3000, 1, '2024-05-15 02:15:44+00', 10, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 842, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 724, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ihatetheworld/vaundy-2\"}"}', NULL), - (249403, '0xc947f0a0f108f46439cd3e9fcd9c0ba9305df3a3', 0, 1, '2024-05-05 14:45:36+00', 0, 3, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2509, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2516, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JxTJv\"}"}', NULL), - (282949, '0xac16a91e00574114a4707f61e91d3a6cd4ef2f82', 0, 1, '2024-05-05 18:15:16+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 499, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3brN0QclQGpGXxsLlIYGaL?si=pbQP2u9BQVaU2E0nJXek_Q&context=spotify%3Aplaylist%3A37i9dQZF1E8BrEVv4EScLH\"}","{\"url\":\"https://open.spotify.com/track/47c6dQcj4AvaCBx0dohNUW?si=exS5JgEgT5W4vXnjIvVJ1g&context=spotify%3Aplaylist%3A37i9dQZF1E8BrEVv4EScLH\"}"}', NULL), - (247381, '0x0a22638191a5aace20b6e6317a7fb67113d7a267', 0, 1, '2024-05-05 14:24:40+00', 0, 0, '{"fid": 501321, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca57c016-5e06-4a3d-72f9-4b3caf7d8e00/rectcrop3", "profile": {"bio": {"text": "I ♡ Warpcast", "mentioned_profiles": []}}, "username": "pac-man", "power_badge": false, "display_name": "Pac-Man ", "active_status": "inactive", "verifications": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "follower_count": 432, "custody_address": "0x60f94177f397b96045804dd97f914a2adbf04dd3", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 미아(迷兒) 박정현 On & On by feelyoon on #SoundCloud https://on.soundcloud.com/zhEka\"}"}', NULL), - (247493, '0xe06b645182a856a2960267f11a3223f1ab2f960c', 0, 1, '2024-05-05 14:27:20+00', 0, 0, '{"fid": 506048, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2239ef37-7c06-4dc1-9c89-8e124f301b00/rectcrop3", "profile": {"bio": {"text": "I love Warpcast !", "mentioned_profiles": []}}, "username": "jyp-41", "power_badge": false, "display_name": "jyp-41", "active_status": "inactive", "verifications": ["0xf7d760e82256e6674218ca0b5ad75b8dee987ab5"], "follower_count": 82, "custody_address": "0xffa59babce2d4d4d73b6468dacb2b30302fd9fa1", "following_count": 98, "verified_addresses": {"eth_addresses": ["0xf7d760e82256e6674218ca0b5ad75b8dee987ab5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ynBRDVSfEVz8RspQ7\"}"}', NULL), - (247449, '0x9c63ac1ed2bfb8dc4200f4f9e0dd53cfb8817e48', 0, 1, '2024-05-05 14:25:46+00', 1, 13, '{"fid": 392169, "object": "user", "pfp_url": "https://i.imgur.com/HUcVa4D.jpg", "profile": {"bio": {"text": "I work in a farm and here i’ll show my daily routine.", "mentioned_profiles": []}}, "username": "juanmirendak", "power_badge": false, "display_name": "Juan Mirenda", "active_status": "inactive", "verifications": ["0x9fca2c3634208458a2c214c36da601a371e9caa3"], "follower_count": 137, "custody_address": "0xfd8727419f5e3a8727a455828d9c4556793aefd9", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x9fca2c3634208458a2c214c36da601a371e9caa3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2kXkaplZ6HdXz5XYBtdunj?si=sjHBKj8pSeejPxJbzIqcZQ\"}"}', 'albumoftheday'), - (247382, '0x99d8dfac5eaa9172a6a62a232d0c43b00b0f2796', 0, 1, '2024-05-05 14:23:51+00', 0, 1, '{"fid": 501321, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca57c016-5e06-4a3d-72f9-4b3caf7d8e00/rectcrop3", "profile": {"bio": {"text": "I ♡ Warpcast", "mentioned_profiles": []}}, "username": "pac-man", "power_badge": false, "display_name": "Pac-Man ", "active_status": "inactive", "verifications": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "follower_count": 432, "custody_address": "0x60f94177f397b96045804dd97f914a2adbf04dd3", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 미아(迷兒) 박정현 On & On by feelyoon on #SoundCloud https://on.soundcloud.com/zhEka\"}"}', NULL), - (265912, '0x4bad2b309591093d354f25823603e38053a84a16', 0, 1, '2024-05-05 16:14:56+00', 0, 0, '{"fid": 499109, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ffbfd95-f8b1-45ec-4924-0e040757fa00/original", "profile": {"bio": {"text": "조아요만눌러도 가요 ^^", "mentioned_profiles": []}}, "username": "rizzel", "power_badge": false, "display_name": "rizzel", "active_status": "inactive", "verifications": ["0x41dd6696fc637b81d10198a43a0e19f57c29d02e"], "follower_count": 766, "custody_address": "0x095cac266248cbd20c4a640bc2a07e6d217dc46f", "following_count": 664, "verified_addresses": {"eth_addresses": ["0x41dd6696fc637b81d10198a43a0e19f57c29d02e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sandkardhoho/yang-da-il-dear-you-from-me?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283377, '0xe3f575548af43bf929f5d6b922735540af23555c', 0, 1, '2024-05-05 18:26:13+00', 0, 0, '{"fid": 501946, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "https://zora.co/@masoud1", "mentioned_profiles": []}}, "username": "masoud69", "power_badge": false, "display_name": "KAJDOM.eth🍖🦄", "active_status": "inactive", "verifications": ["0xe95ae04c78c20073009985055470e2e420ad79b3"], "follower_count": 277, "custody_address": "0x052032c7cfc754463bb795be0e7b176732eeb1cf", "following_count": 372, "verified_addresses": {"eth_addresses": ["0xe95ae04c78c20073009985055470e2e420ad79b3"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Digital Rey - Last Wish (normal) by Egor_Gora on #SoundCloud https://on.soundcloud.com/fvY7x\"}"}', NULL), - (247170, '0x5d325526c9738e73ea989b491f89dd79581aa62a', 0, 1, '2024-05-05 14:19:35+00', 0, 0, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 993, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1129, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/notstudy/way7aotwjnbd?si=60c8c0905c8f48808e7110ffe99847e9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283341, '0x50f1bb3343603b4608049798191b2f1ce07fef60', 0, 1, '2024-05-05 18:25:45+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/juncoco/jennie-you-me-edm-mash-up?si=1cc544b225c3465badb1f5e4557c9228&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283340, '0x795ad0c699b51732b22441d488ed574d29bb2ccf', 0, 1, '2024-05-05 18:25:35+00', 0, 0, '{"fid": 443238, "object": "user", "pfp_url": "https://i.imgur.com/xEwARlc.jpg", "profile": {"bio": {"text": "A logic guy with an eye to the future", "mentioned_profiles": []}}, "username": "0xdondan", "power_badge": false, "display_name": "DonPablo", "active_status": "inactive", "verifications": ["0x46011ab45660180f0a23b75c00e60b43d88ba299"], "follower_count": 835, "custody_address": "0xc1a3a2858fed922f289afdf629c95f6ad6fba7b6", "following_count": 1053, "verified_addresses": {"eth_addresses": ["0x46011ab45660180f0a23b75c00e60b43d88ba299"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/kiyarash3tar/in-love\"}"}', NULL), - (259759, '0x5a721140bb86e0a2248925537b4a2331d031c342', 0, 1, '2024-05-05 15:32:04+00', 0, 1, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/schwd/fxxk-it-bigbang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247103, '0x61763a63719695d7b814f2e90c71ba07d0a3d91d', 0, 1, '2024-05-05 14:18:55+00', 0, 0, '{"fid": 501321, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca57c016-5e06-4a3d-72f9-4b3caf7d8e00/rectcrop3", "profile": {"bio": {"text": "I ♡ Warpcast", "mentioned_profiles": []}}, "username": "pac-man", "power_badge": false, "display_name": "Pac-Man ", "active_status": "inactive", "verifications": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "follower_count": 432, "custody_address": "0x60f94177f397b96045804dd97f914a2adbf04dd3", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 김범수 - 끝사랑 by yfddx on #SoundCloud https://on.soundcloud.com/xfWBx\"}"}', NULL), - (259757, '0xdf458f5c070e12413616942b776b5acd1ee84953', 0, 1, '2024-05-05 15:33:11+00', 0, 5, '{"fid": 413717, "object": "user", "pfp_url": "https://i.imgur.com/VOOiRWF.jpg", "profile": {"bio": {"text": "Hi, nice to meet you.💞\nfood photography/South Korea 🇰🇷 \nFollow/f4f/follow4follow\n먹캐스터, 음식, 일상, 여행, Degen, base\n\n맞팔은 댓글달아주시면 늦어도갑니다🫂\n", "mentioned_profiles": []}}, "username": "ggomde", "power_badge": false, "display_name": "ggomdeFoody🎩 ", "active_status": "inactive", "verifications": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "follower_count": 2633, "custody_address": "0xeef0262fd74c8474d1f5724ac2d0eaa2769f281a", "following_count": 2529, "verified_addresses": {"eth_addresses": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-360542346/b6vryevrp75g?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268817, '0xb6c94e6b040cf862afd80fcafdcbe902e4426cfd', 100, 1, '2024-05-05 16:34:34+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bass-822677338/thundercat-a-fans-mail-tron-song-suite-ii?in=hweepain/sets/choices&si=6b7abc332c9b4aaead9dd7fb5bb02493&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283342, '0x3730946550c1d489b131e3994357190c7f0b3c50', 0, 1, '2024-05-05 18:25:16+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/danpiamuzik/le-sserafim-fearless-yg-style-ver?si=37000a2bd8824052b4e8567825b5a80b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (269047, '0x07ed425876954572d427371f870e9d3327772000', 0, 1, '2024-05-05 16:36:33+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user540691/pelas-sombras?in=hweepain/sets/choices&si=e1a8b073cbb942cebd411c919af925cd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (269071, '0xe92b733b14aa0907515bd72361b343a9d9b82a9a', 0, 1, '2024-05-05 16:36:22+00', 0, 2, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 400, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 355, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/56v8WEnGzLByGsDAXDiv4d?si=3f50a8218e0d495a\"}"}', NULL), - (269203, '0x677b9a2e1adcd37be690bec5a830b7ab803caa6d', 0, 1, '2024-05-05 16:41:10+00', 0, 1, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1034, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/14nd2iDMM9B73mPn6\"}"}', NULL), - (283374, '0x9d06c5d45a09c1de74e4bfa730bd8185802bea34', 0, 1, '2024-05-05 18:26:13+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/topmusicasrecords/blackpink-born-pink-official-audio?si=83a270d7abbd4b72b7c53c534f1daa57&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283379, '0x4853b4b04c51c459da62fadf41c1acebb51b1b55', 0, 1, '2024-05-05 18:26:25+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kanemadgf/solo?si=d3934fe6393b424f951841ca1adbad17&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (265908, '0xbc1b1f3879028925e66b2867cffda2ccde8b75ec', 0, 1, '2024-05-05 16:14:54+00', 0, 1, '{"fid": 398319, "object": "user", "pfp_url": "https://i.imgur.com/FcIQL9V.gif", "profile": {"bio": {"text": "Crypto触り始めて7年目。\n\nこれまでに溶かした資金は数知れず😇\nそろそろ爆益お願いします🤤\n\n", "mentioned_profiles": []}}, "username": "blacrypto", "power_badge": false, "display_name": "Black🎩🔄", "active_status": "inactive", "verifications": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "follower_count": 439, "custody_address": "0x395ddab687c4a838569dab0758997779750dd7e9", "following_count": 364, "verified_addresses": {"eth_addresses": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/roZp2kYiPRd5WvNF8\"}"}', NULL), - (283338, '0xcd773d771e1aef7e7e70cae2ed2d8be8f2d5a0d6', 0, 1, '2024-05-05 18:25:24+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bellstringmusic/blackpink-lovesick-girls-bellstring-remix-1?si=e7fe5bf955d4421793d23ce991cb6d79&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247326, '0x2992e6d749151e4d05af9c02dd446be0a54ec55f', 0, 1, '2024-05-05 14:22:53+00', 0, 0, '{"fid": 421100, "object": "user", "pfp_url": "https://i.imgur.com/2QEH8Mn.jpg", "profile": {"bio": {"text": "I loved tried and mining", "mentioned_profiles": []}}, "username": "rasoul128482", "power_badge": false, "display_name": "Rasoulrahimi", "active_status": "inactive", "verifications": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "follower_count": 457, "custody_address": "0x09371cab91c71adaad513b1b0a0284e67f1012bb", "following_count": 477, "verified_addresses": {"eth_addresses": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beta-t/sets/mahasti?si=31002af034654773a60dc98398ba29d1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247465, '0x5d79fa76bdffb1be04b25b11e5b3a39226dd250e', 0, 1, '2024-05-05 14:25:57+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1131, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 941, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xmaEuHUG2MJ6migr8\"}"}', NULL), - (1173095, '0x6dc7b87f2bc7d63c2c82eb55f169bbc81395018b', 1000, 1, '2024-05-15 01:40:28+00', 0, 0, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product at grayscale.com 🏴‍☠️ all opines my own", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌹 Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23841, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 645, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7572f4f-e67f-479e-b8ef-921c202eb200/original\"}","{\"url\":\"https://open.spotify.com/track/2N5zMZX7YeL1tico8oQxa9?si=o9q0eJ8-T9SFcazBasTdaw\"}"}', NULL), - (269112, '0x5cd5b66fde952b228f1aa618d0a4fbad84ed4143', 0, 1, '2024-05-05 16:37:57+00', 0, 5, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2183, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2529, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v7VQV\"}"}', NULL), - (247275, '0xea361798993e531a2898b942f5bcbbafbefe6329', 0, 1, '2024-05-05 14:21:50+00', 0, 0, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2478, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2344, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musiic_time/crucial-star-fallen-leaves?si=799576dabf1d443ba530e4a5d574be6f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283378, '0x9de9f14f3b385558ec847757dda29e9ba6d2f2f6', 0, 1, '2024-05-05 18:26:20+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/normshim/whistle?si=b56325afd6f042ab853ef1462f6bb35f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (266204, '0x55316b96b413bdfdd985d644f84df43169bcc433', 0, 1, '2024-05-05 16:16:17+00', 0, 1, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 669, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1149, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1rzcgfopi2hc/sets/awoagjz9d40o?si=d5179f08c27042038206a77c60b57df2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (269140, '0xfecec8a4a457c47c7a22f72685c1ea3d72c7756d', 20, 1, '2024-05-05 16:38:18+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-242100207/hoho-ni-yoru-no-akari-the?in=hweepain/sets/choices&si=678576380a714902bc41de320b674af9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (269224, '0x9ec30b3c4f63cc6e4821cf7c0f978cf8c1c8c238', 0, 1, '2024-05-05 16:40:50+00', 0, 0, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1211, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WQ9viiF4qSxMFgvy9\"}"}', NULL), - (271378, '0x9091ba6fee6c987954869e4b78b9bced964a93ef', 0, 1, '2024-05-05 16:53:17+00', 0, 0, '{"fid": 211018, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc081d98-68b8-4327-40cd-de328e011400/rectcrop3", "profile": {"bio": {"text": "Musician | Photographer | Artist", "mentioned_profiles": []}}, "username": "carlathepoet", "power_badge": false, "display_name": "Not Carla The Poet", "active_status": "inactive", "verifications": ["0xe4e8d6650a8dc5ebf91f9ee563d71378483d90c3"], "follower_count": 58, "custody_address": "0x23c05eb02ea669252f478dab02a3f3a88b90e0d7", "following_count": 55, "verified_addresses": {"eth_addresses": ["0xe4e8d6650a8dc5ebf91f9ee563d71378483d90c3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Xnrc6jTukLmJZGah9\"}"}', NULL), - (269227, '0x791fcffb20c6a201557e7e16968bac6404440c30', 0, 1, '2024-05-05 16:39:58+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-231008386/sade-hang-on-to-your-love-allure-remix?in=hweepain/sets/choices&si=edd61a60c1ca466cb431c66ece371e65&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (274513, '0xee35f60fcce4521b9539d4a492ef520683bb56b3', 0, 1, '2024-05-05 17:20:32+00', 0, 0, '{"fid": 500912, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/31844d3a-aecb-46be-a6a5-2d3fe7719800/rectcrop3", "profile": {"bio": {"text": "Bitcoin Degen", "mentioned_profiles": []}}, "username": "sukkyu777", "power_badge": false, "display_name": "Bulls🎩🍖🔵", "active_status": "inactive", "verifications": ["0xab66d8a0efd407420b9da172edb30450b501147b"], "follower_count": 1378, "custody_address": "0xb52763552683e00845f8c028ef0b9f47e3a36ee1", "following_count": 1893, "verified_addresses": {"eth_addresses": ["0xab66d8a0efd407420b9da172edb30450b501147b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bD87nsVngHETK2K3A\"}"}', NULL), - (247794, '0xf6bed2cd364a5ce66c9aefb03dcd408d8444c1d8', 0, 1, '2024-05-05 14:34:10+00', 0, 3, '{"fid": 500216, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2150447d-3010-4ac1-d0af-80b82f949300/rectcrop3", "profile": {"bio": {"text": "$Degen 1$ 🌙\nFollow me :)", "mentioned_profiles": []}}, "username": "bitsla0928", "power_badge": false, "display_name": "SLA🔥", "active_status": "inactive", "verifications": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "follower_count": 899, "custody_address": "0xa8a47f59700d7727ffd26ae2aaccc37239e50e94", "following_count": 968, "verified_addresses": {"eth_addresses": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/34HSEUn4YGAFBW9OHGIkU7?si=7PVPS_V1Sh-cExK2V7Jg2w\"}"}', NULL), - (260594, '0xe74c748414b77e0376dde1152378f5199c259d50', 0, 1, '2024-05-05 15:38:35+00', 0, 0, '{"fid": 500371, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7acbb460-b029-47f7-a44d-549b4b8eeb00/rectcrop3", "profile": {"bio": {"text": "Warpcast is good🌸\nLet''s go together🩵\n슈캐 신입 인사드려용", "mentioned_profiles": []}}, "username": "10poon", "power_badge": false, "display_name": "🌈 10poon🎩", "active_status": "inactive", "verifications": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "follower_count": 1739, "custody_address": "0xc4594cf253dcfd3d97b1d03b4045278b7b64bfa7", "following_count": 2790, "verified_addresses": {"eth_addresses": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/awfulpianosound/yiruma-river-flows-in-you?si=ef5eb54c383a4431b4c2987b802e3193&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247721, '0x16d75051e54fc4c390823ebf9f5fd82c2ab3f9b1', 0, 1, '2024-05-05 14:33:12+00', 0, 0, '{"fid": 501321, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca57c016-5e06-4a3d-72f9-4b3caf7d8e00/rectcrop3", "profile": {"bio": {"text": "I ♡ Warpcast", "mentioned_profiles": []}}, "username": "pac-man", "power_badge": false, "display_name": "Pac-Man ", "active_status": "inactive", "verifications": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "follower_count": 432, "custody_address": "0x60f94177f397b96045804dd97f914a2adbf04dd3", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jszqf\"}"}', NULL), - (1173079, '0x222831218ebcaf101e48d4968d2c87528d0bd65e', 1000, 1, '2024-05-15 00:30:05+00', 0, 0, '{"fid": 3609, "object": "user", "pfp_url": "https://i.imgur.com/DAbyZ9R.png", "profile": {"bio": {"text": "/music co-host | BD Consulting at trustswap.org | Music DAO founder everwave.xyz | ex telco.in co-founder | writing on web3 & culture mirror.xyz/alixkun.eth", "mentioned_profiles": []}}, "username": "alixkun", "power_badge": true, "display_name": "alixkun🎩🍡", "active_status": "inactive", "verifications": ["0x18190f18098fa97f36e398a26be613cb2c1c2eb0"], "follower_count": 1030, "custody_address": "0x34fa4fcdb1dc98bc4fd987ed486bf72040a81dea", "following_count": 222, "verified_addresses": {"eth_addresses": ["0x18190f18098fa97f36e398a26be613cb2c1c2eb0"], "sol_addresses": ["C2spVmfBuvPLQXArKTbQvpMi1iN1VRM8SDrz5hJNipX4"]}}', '{"{\"url\":\"https://open.spotify.com/track/55du1FmzJKFaTfdGDWqRej?si=5f4fa7a274a64907\"}"}', 'everwave'), - (247612, '0x50e59c813cafeb7c769c2a00871ab4b8bd7814b7', 0, 1, '2024-05-05 14:30:03+00', 0, 1, '{"fid": 498222, "object": "user", "pfp_url": "https://i.imgur.com/MXOoh5U.jpeg", "profile": {"bio": {"text": "There is always an escape route", "mentioned_profiles": []}}, "username": "navid82", "power_badge": false, "display_name": "Navid", "active_status": "inactive", "verifications": ["0x85214a191345cd1baa815ef33141330e9ec443ab"], "follower_count": 523, "custody_address": "0xcdf7359584fae3435301324a77de042631394549", "following_count": 723, "verified_addresses": {"eth_addresses": ["0x85214a191345cd1baa815ef33141330e9ec443ab"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/squired/rtc?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (266365, '0xbc6acb6b32b196c69f4bfc6db8ac6b71989f2e5a', 0, 1, '2024-05-05 16:16:41+00', 0, 0, '{"fid": 406381, "object": "user", "pfp_url": "https://i.imgur.com/bH5XsDO.jpg", "profile": {"bio": {"text": "디젠 🎩 Gazua!!! 댓글주시면 무조건 100% 갑니다용:) 소통 환영합니다♡ https://zora.co/@djlove0307 ", "mentioned_profiles": []}}, "username": "djlove0307", "power_badge": false, "display_name": "Crypto trader_brown", "active_status": "inactive", "verifications": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "follower_count": 3257, "custody_address": "0xd3a2bf2e59de9f1a6dbb8aa72059b47a4651d703", "following_count": 3369, "verified_addresses": {"eth_addresses": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/edsheeran/shape-of-you?in=crypto-trader_brown/sets/my-favoriate-song&si=a89aa6c471cd4fce82a429ac64b8b4f3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (269225, '0xadfa786038cbe09ede7d6260d56b204ecac010c8', 0, 1, '2024-05-05 16:40:51+00', 0, 0, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 263, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 449, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bNwJ5\"}"}', NULL), - (283343, '0xfdb771cb07646a9a2df46ec2435bfa3f23790531', 0, 1, '2024-05-05 18:25:09+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bolbbalgan4/blackpink-boombayahinstrumental?si=0c40270b67384f019829689f66c00e6b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (260595, '0xe9cb1cd500e7359a9caf5bd7889f33a12349a57d', 0, 1, '2024-05-05 15:38:56+00', 0, 0, '{"fid": 406381, "object": "user", "pfp_url": "https://i.imgur.com/bH5XsDO.jpg", "profile": {"bio": {"text": "디젠 🎩 Gazua!!! 댓글주시면 무조건 100% 갑니다용:) 소통 환영합니다♡ https://zora.co/@djlove0307 ", "mentioned_profiles": []}}, "username": "djlove0307", "power_badge": false, "display_name": "Crypto trader_brown", "active_status": "inactive", "verifications": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "follower_count": 3250, "custody_address": "0xd3a2bf2e59de9f1a6dbb8aa72059b47a4651d703", "following_count": 3366, "verified_addresses": {"eth_addresses": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/edsheeran/shape-of-you?si=52d40c2edbf74761a5b4253b7ac04a82&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247614, '0x68a808cd86d854e3c53d2c627acba53d28a1c83f', 0, 1, '2024-05-05 14:29:38+00', 0, 0, '{"fid": 498222, "object": "user", "pfp_url": "https://i.imgur.com/MXOoh5U.jpeg", "profile": {"bio": {"text": "There is always an escape route", "mentioned_profiles": []}}, "username": "navid82", "power_badge": false, "display_name": "Navid", "active_status": "inactive", "verifications": ["0x85214a191345cd1baa815ef33141330e9ec443ab"], "follower_count": 523, "custody_address": "0xcdf7359584fae3435301324a77de042631394549", "following_count": 723, "verified_addresses": {"eth_addresses": ["0x85214a191345cd1baa815ef33141330e9ec443ab"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/squired/rtc?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (260815, '0x131a3904e6ac6b6494dd5de00d3f06ce3eb30972', 0, 1, '2024-05-05 15:40:49+00', 0, 2, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 903, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1030, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/theoceansown/cold-aint-for-me?si=c9c83f3e6a354d08a9807dc0396689ab&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (266501, '0x00af690be94228ffb7d0a26294140176225b694b', 0, 1, '2024-05-05 16:18:45+00', 0, 2, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2527, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1684, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0tZbIJd9rPKlhqAr2ov3gH?si=3d9aa093313a43e4\"}"}', NULL), - (1173169, '0xe7b49e279f738953f419a7aee244265883c810bf', 0, 1, '2024-05-15 04:35:55+00', 0, 0, '{"fid": 296207, "object": "user", "pfp_url": "https://i.imgur.com/7sZisKv.gif", "profile": {"bio": {"text": "Painting narratives through the arts of cinematography and sound.\n‏‏‎ ‎‎\nlynkfire.com/jeffmihaly | host /cinematica", "mentioned_profiles": []}}, "username": "jeffmihaly", "power_badge": true, "display_name": "Jeff Mihaly 🎞🎼🎩", "active_status": "inactive", "verifications": ["0x08e0a3e752d1338c0f02b986b9504f1009a962ca", "0x08e0a3e752d1338c0f02b986b9504f1009a962ca"], "follower_count": 3241, "custody_address": "0xd6f7a23d45b80c5eca9696575ad8088092458587", "following_count": 475, "verified_addresses": {"eth_addresses": ["0x08e0a3e752d1338c0f02b986b9504f1009a962ca", "0x08e0a3e752d1338c0f02b986b9504f1009a962ca"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/33Bzf3HAzVRKBUC6qkuzUO?si=3acfe00cee70461b\"}"}', 'soundtracks'), - (260938, '0x06ee89aad18a57ef000051ef706d649b98bfc729', 0, 1, '2024-05-05 15:43:46+00', 0, 3, '{"fid": 501042, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dcf025cd-87b7-4555-31f0-8dee3a450400/rectcrop3", "profile": {"bio": {"text": "Thank you♥︎맞팔부탁해요. 아시져?바로 달려갑니다", "mentioned_profiles": []}}, "username": "bbangbbunee", "power_badge": false, "display_name": "Dayjin", "active_status": "inactive", "verifications": ["0xa6a1f2381186192422da4f3932ffa1462f72da79"], "follower_count": 2311, "custody_address": "0x8f01ff0856f0ef59bb3b2258db323f26679c634a", "following_count": 2898, "verified_addresses": {"eth_addresses": ["0xa6a1f2381186192422da4f3932ffa1462f72da79"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KkquU\"}"}', NULL), - (266498, '0x2638e60f346aecff10c489f8d7a5c0e34c83b3f4', 0, 1, '2024-05-05 16:17:52+00', 0, 0, '{"fid": 193746, "object": "user", "pfp_url": "https://i.imgur.com/qV0WoeH.jpg", "profile": {"bio": {"text": "猫の恩返しに出てくるナトルが好きです。\nMy creative inspiration comes down at 5~9 PM every day.", "mentioned_profiles": []}}, "username": "luca5642.eth", "power_badge": false, "display_name": "luca🎩🔵👻", "active_status": "inactive", "verifications": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "follower_count": 1288, "custody_address": "0xfcb46afe791a0ff441ecb78341664676e6c9a599", "following_count": 1096, "verified_addresses": {"eth_addresses": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nmiM3DAUwH7QMWsp7\"}"}', NULL), - (260769, '0xd77596c39e6840dacbc24a65273f74ed67e731dc', 0, 1, '2024-05-05 15:39:17+00', 0, 0, '{"fid": 499091, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d892d750-f391-476b-078f-cddc5278b500/rectcrop3", "profile": {"bio": {"text": "일상 & 코인", "mentioned_profiles": []}}, "username": "fuzzypaws", "power_badge": false, "display_name": "Fuzzypaws", "active_status": "inactive", "verifications": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "follower_count": 1238, "custody_address": "0x24b9ca359d7f4f1395e7d7b101e52b3f1784bcbb", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3QQyaBhRNcDmqpWRssT7dh\"}"}', NULL), - (249407, '0x8ffb49faa9095b8a6ebf066d5a42cc46f9729566', 0, 1, '2024-05-05 14:45:04+00', 0, 1, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1192, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1359, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ktXJv\"}"}', NULL), - (260884, '0x13ce3b61e4bd1527a61406f25e629d6359da8d66', 0, 1, '2024-05-05 15:42:24+00', 0, 3, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1515, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2426, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mb8Rm6N5Ue9tz9Fx9\"}"}', NULL), - (368779, '0x756d1e8c45dc9811d2b3699a7e5cf2f68742aabc', 0, 1, '2024-05-06 03:20:02+00', 0, 2, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wsHh7nHtiRdytLWF7\"}"}', NULL), - (271561, '0x77a20cfe27f07c39bdb84dd522ebacf44c942cd2', 0, 1, '2024-05-05 16:54:31+00', 0, 1, '{"fid": 20280, "object": "user", "pfp_url": "https://i.imgur.com/rqID0sS.jpg", "profile": {"bio": {"text": "The worth living place", "mentioned_profiles": []}}, "username": "aquacity", "power_badge": false, "display_name": "Aquacity", "active_status": "inactive", "verifications": ["0xe04168a3fc8bbf87dff5bef46985e56eb82ed721"], "follower_count": 739, "custody_address": "0x5ed7f1c68717cdc7dacf3017fd85feb661db678c", "following_count": 667, "verified_addresses": {"eth_addresses": ["0xe04168a3fc8bbf87dff5bef46985e56eb82ed721"], "sol_addresses": ["CBTtUe6aVRyduNJ8FooKXHeHUso77xa8U5pXhrmY236S"]}}', '{"{\"url\":\"https://soundcloud.com/didalicious/adam-levine-lost-stars-begin\"}"}', NULL), - (269226, '0x8de9092bb1065ad678e408163713cbe6e7900aff', 0, 1, '2024-05-05 16:41:05+00', 0, 0, '{"fid": 195221, "object": "user", "pfp_url": "https://i.imgur.com/8jEbfsG.jpg", "profile": {"bio": {"text": "When moon, when lambo, wen ser?", "mentioned_profiles": []}}, "username": "wenser", "power_badge": false, "display_name": "WenSer?", "active_status": "inactive", "verifications": ["0xc21a5ee89d306353e065a6dd5779470de395dbac"], "follower_count": 991, "custody_address": "0x639cf8804348189aaf63057e578a920398ea6072", "following_count": 797, "verified_addresses": {"eth_addresses": ["0xc21a5ee89d306353e065a6dd5779470de395dbac"], "sol_addresses": ["A1ypBprxkEEj94BTkm6LgsQ1eHpYhiYnaDUc8W5iT7Kv"]}}', '{"{\"url\":\"https://soundcloud.com/themarias/ruthless-1\"}"}', NULL), - (275491, '0x636b8e6e5caef0c5d63298f236f5063cf8f519a1', 0, 1, '2024-05-05 17:37:07+00', 0, 0, '{"fid": 500524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8dfd467-cfa4-4c54-2177-354ec2f15700/rectcrop3", "profile": {"bio": {"text": "Hi my name is chloejin", "mentioned_profiles": []}}, "username": "choichoisla", "power_badge": false, "display_name": "Chloejin", "active_status": "inactive", "verifications": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "follower_count": 41, "custody_address": "0xef3be36580a61c8b605f27a5ebbb2a97031a6208", "following_count": 36, "verified_addresses": {"eth_addresses": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uarTLjnAQshM2CED7\"}"}', NULL), - (275362, '0xdb9eba4e0efdbbdc4155afc28c4f869a5817f42f', 0, 1, '2024-05-05 17:34:45+00', 0, 3, '{"fid": 507380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d510649c-984d-4ac8-82c2-1a6f09457e00/original", "profile": {"bio": {"text": "Movies and art lover", "mentioned_profiles": []}}, "username": "!507380", "power_badge": false, "display_name": "Anchor", "active_status": "inactive", "verifications": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76"], "follower_count": 72, "custody_address": "0xba4430479cce3480d93e3fd91c9bcfcd37ee5b3c", "following_count": 400, "verified_addresses": {"eth_addresses": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eMFbZi38sWXd2uw8A\"}"}', NULL), - (274551, '0x517ee3624fbfe73d314f796521bff035f6c71154', 0, 1, '2024-05-05 17:23:05+00', 0, 5, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2602, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KTtDg\"}"}', NULL), - (260885, '0x9f9562e1dd83c6d487337b68dddf164b5c0813f4', 0, 1, '2024-05-05 15:42:32+00', 0, 1, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 277, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 705, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/zico-spot-feat-jennie?si=81f5cc85c52240cbb45017d47cb5e618&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (247797, '0x83fd1aa7d671e2a58b8febe9acca8e3eb46819f0', 0, 1, '2024-05-05 14:33:44+00', 0, 0, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/boywithuke/toxic?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (260813, '0x7ec0d9c76c8f700dc7f1f5f9027c2170adeef718', 0, 1, '2024-05-05 15:41:02+00', 0, 15, '{"fid": 500216, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2150447d-3010-4ac1-d0af-80b82f949300/rectcrop3", "profile": {"bio": {"text": "$Degen 1$ 🌙\nFollow me :)", "mentioned_profiles": []}}, "username": "bitsla0928", "power_badge": false, "display_name": "SLA🔥", "active_status": "inactive", "verifications": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "follower_count": 899, "custody_address": "0xa8a47f59700d7727ffd26ae2aaccc37239e50e94", "following_count": 968, "verified_addresses": {"eth_addresses": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5XYLfeazJvy74KQKujqxjZ?si=7f7f229422864d57\"}"}', 'sonata'), - (283529, '0x07e2468f0747c9ea3778e56a641f535316ef6172', 0, 1, '2024-05-05 18:27:18+00', 0, 0, '{"fid": 443238, "object": "user", "pfp_url": "https://i.imgur.com/xEwARlc.jpg", "profile": {"bio": {"text": "A logic guy with an eye to the future", "mentioned_profiles": []}}, "username": "0xdondan", "power_badge": false, "display_name": "DonPablo", "active_status": "inactive", "verifications": ["0x46011ab45660180f0a23b75c00e60b43d88ba299"], "follower_count": 835, "custody_address": "0xc1a3a2858fed922f289afdf629c95f6ad6fba7b6", "following_count": 1053, "verified_addresses": {"eth_addresses": ["0x46011ab45660180f0a23b75c00e60b43d88ba299"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/kiyarash3tar/in-love\"}"}', NULL), - (283537, '0xe150deb59b88dbfb15841f3f1588af4a3c804e9c', 0, 1, '2024-05-05 18:27:50+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/sets/d-2?si=cbde2219cd3d4e0680e0a755a878334f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284408, '0x66c762ab20da6855be47cd70b27a4c150d4378c4', 0, 1, '2024-05-05 18:47:15+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-385819292/fzrdgei6sagw?si=e92faa1b6b794c8bb61c9de9fa1d7df4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283533, '0x343a6d3e988a3a1d6cfaf1f864ab507bc457b4dc', 0, 1, '2024-05-05 18:27:14+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/babytaemni/sets/blackpink-kill-this-love?si=5128d9c155964fe39be8bef6d0a66209&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173171, '0x14e01f97f690e3bbcd8eb1d2f953800e9a4830ce', 0, 1, '2024-05-15 04:53:46+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2661, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 780, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6tmK6JUHU34AiElPojK6ZE\"}"}', 'housemusic'), - (248158, '0xd8dc5485a033c3d2298fbb0f7a5b5e08360016a9', 0, 1, '2024-05-05 14:35:24+00', 0, 0, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1437, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1712, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SxVNVD7N1Rtb97qy7\"}"}', NULL), - (247801, '0xb2cb2e05218ed684472b777e065d65ca8a030134', 0, 1, '2024-05-05 14:33:50+00', 0, 1, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2351, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2246, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/s25GRkQcuubotnmC8\"}"}', NULL), - (283535, '0x9672c5937b4f1245d8d27a7a85303da8bb2bf02d', 0, 1, '2024-05-05 18:28:03+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/sets/fake-love-airplane-pt-2?si=462fe3a3cff2493585a269d11584146d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173172, '0x894c27a85d2f54badc5c29a3f916198892c20a83', 0, 1, '2024-05-15 05:13:00+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2661, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 780, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4MeecysyFxcUiILhE15pok\"}"}', 'techno'), - (275606, '0x7fdccddce4fd93ab5d68aeeb28e0bd723cdd876a', 0, 1, '2024-05-05 17:40:42+00', 0, 0, '{"fid": 424820, "object": "user", "pfp_url": "https://i.imgur.com/7G84oTV.gif", "profile": {"bio": {"text": "Audio x Visual x Crypto = https://linktr.ee/Jburn", "mentioned_profiles": []}}, "username": "jburn", "power_badge": false, "display_name": "Jburn", "active_status": "inactive", "verifications": ["0x497a7dee2f13db161eb2fec060fa783cb041419f"], "follower_count": 486, "custody_address": "0xa301dfcd6b1067dacedc4308090058e593091789", "following_count": 264, "verified_addresses": {"eth_addresses": ["0x497a7dee2f13db161eb2fec060fa783cb041419f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/burnjourney/sets/last-spotify-album-ever\"}"}', NULL), - (260880, '0x6e54cd702db7f63172b19bee046f8ad8ea512ffa', 0, 1, '2024-05-05 15:42:06+00', 0, 1, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 903, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1030, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nickraymondg/benjamin-francis-leftwich-shine-kygo-remix-free-download?si=adf81710ba674c0585c8d049eb3fbaa6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (280790, '0x5579f5eb47fbc5883c0b6cf670b013cdc9e96933', 0, 1, '2024-05-05 18:03:01+00', 0, 2, '{"fid": 401736, "object": "user", "pfp_url": "https://i.imgur.com/fi9yxl1.jpg", "profile": {"bio": {"text": "/book-reader\nBe beautiful in your own way\n\n", "mentioned_profiles": []}}, "username": "yasamannn79", "power_badge": false, "display_name": "Yasi🎩 🔄", "active_status": "inactive", "verifications": ["0x7e19f07a79f7efa7c4793289bf750cab8f5d8231"], "follower_count": 4372, "custody_address": "0x1c18aa7240537a452c59fd01f30261f3a4e9c025", "following_count": 4857, "verified_addresses": {"eth_addresses": ["0x7e19f07a79f7efa7c4793289bf750cab8f5d8231"], "sol_addresses": ["Tpy2DefjKFVsRMJa3TSJdTM8USVeFpigMSf5XS5SGRm"]}}', '{"{\"url\":\"https://on.soundcloud.com/zTL2oUaZaYk8o9Ys6\"}"}', NULL), - (248157, '0x3669824e61b24298d603003bf204d78b66114d2e', 10000, 1, '2024-05-05 14:36:48+00', 0, 20, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bensonboone/beautiful-things?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (260768, '0x75c6f0b00f6b20ed8fc56bcb8858694593c8def4', 0, 1, '2024-05-05 15:39:25+00', 0, 4, '{"fid": 10095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fe2684b-a804-4268-ef87-33883f377b00/rectcrop3", "profile": {"bio": {"text": "artist, curator, yogi 💗 hosting /itan-world and /pidgin 🌍 co-hosting /crystals 💎 https://linktr.ee/juujuumama", "mentioned_profiles": []}}, "username": "juujuumama", "power_badge": true, "display_name": "sierra folashade 🎩🍖", "active_status": "inactive", "verifications": ["0x657c1f8421ae93e88fb3171f019779e87b0263ca", "0xfd9bc4707961125f6becd693de62af68b5b51e4f"], "follower_count": 2495, "custody_address": "0x0d03a0431d26e6d17715445ea147cc3597b084cd", "following_count": 1915, "verified_addresses": {"eth_addresses": ["0x657c1f8421ae93e88fb3171f019779e87b0263ca", "0xfd9bc4707961125f6becd693de62af68b5b51e4f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Y8PRiBMczgHn3edpbCkfb?si=fSgx99joREOltOLYUbtGig&context=spotify%3Aartist%3A4oQyXxDBq8FBhsjjS7MbcM\"}"}', 'pidgin'), - (248163, '0xbe73add285ab829c6c3d07c3fbe7f04853f3ec7c', 0, 1, '2024-05-05 14:36:16+00', 0, 4, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2351, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2246, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MxynufLuAMjUiPZH8\"}"}', NULL), - (283536, '0x4de86cf7dc04a34d79b72bcfc3c2f6cb353d68b0', 0, 1, '2024-05-05 18:27:10+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bmnmuxic/sets/blackpink-all-in-one-remix?si=486d315195394a3ba0da67e81a8bd8ef&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (319815, '0x886dc9d7da4e17b202dcb45bae692d8f4d26036f', 0, 1, '2024-05-05 21:36:35+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 593, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/dezabelmusic/who-knew?ref=clipboard&p=a&c=0&si=57085559f3e24da3b1a91358d34f67a8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (356838, '0x811bb8b15dabd121e6c0096a4161275c212431f0', 22, 1, '2024-05-06 01:50:05+00', 0, 1, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 27, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QSnX9jUf7MTzt6au7\"}"}', 'bgm'), - (320306, '0x69dc93657063bcea4d647f85f330a17ff8939be7', 0, 1, '2024-05-05 21:39:37+00', 0, 4, '{"fid": 510185, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/379fe8d6-dc04-4d5a-d58a-47626dfbc200/rectcrop3", "profile": {"bio": {"text": "16.6%", "mentioned_profiles": []}}, "username": "!510185", "power_badge": false, "display_name": "Mahzyar [🎩 🍖 🔵]", "active_status": "inactive", "verifications": ["0x8b569f047e123361a9b33d95a307e5839ea45254", "0x8b569f047e123361a9b33d95a307e5839ea45254", "0x8b569f047e123361a9b33d95a307e5839ea45254", "0x8b569f047e123361a9b33d95a307e5839ea45254"], "follower_count": 256, "custody_address": "0x62b7c08f16a387e2eb350b34d6006f310b6fd311", "following_count": 375, "verified_addresses": {"eth_addresses": ["0x8b569f047e123361a9b33d95a307e5839ea45254", "0x8b569f047e123361a9b33d95a307e5839ea45254", "0x8b569f047e123361a9b33d95a307e5839ea45254", "0x8b569f047e123361a9b33d95a307e5839ea45254"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ngwuAVPALE4ESGpMA\"}"}', NULL), - (730027, '0x1a1bf1ed046ad05640196f334e01d7c15c866a1b', 0, 1, '2024-05-06 20:50:44+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2634, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2453, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xYNa2\"}"}', 'sonata'), - (248164, '0xda2bd93d2e5032a7d9cb15e77c8093d8fdfe4e3e', 0, 1, '2024-05-05 14:35:13+00', 0, 9, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/boywithuke/toxic?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (177059, '0xd68c8c9798b8e2409e56de8b4090a06a0b603cec', 100, 1, '2024-05-05 11:25:01+00', 0, 1, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/losi/libre?referral=0x8218224ebb7abf7dbaffdf0fed571b8280d99485&referral_source=link\"}"}', NULL), - (274041, '0x4b3ba1c1e06e4d78489d2aabb0d9ca46babf1f58', 0, 1, '2024-05-05 17:16:29+00', 0, 1, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 624, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 315, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/seira-kariya/cslgobzyb5sb\"}"}', NULL), - (275932, '0x04cfc45f959e636459f83a983a7c8a974682d9af', 0, 1, '2024-05-05 17:43:12+00', 0, 0, '{"fid": 190348, "object": "user", "pfp_url": "https://i.imgur.com/MFwswT2.jpg", "profile": {"bio": {"text": "Married + 1, Primary care physician, Eth enthusiast, Rocketpool node operator, Poodle maxi", "mentioned_profiles": []}}, "username": "thewatcher", "power_badge": false, "display_name": "Nachshol.eth", "active_status": "inactive", "verifications": ["0xa3d82d8a3a412a69a57079f72079a7357b6f4bec"], "follower_count": 29, "custody_address": "0x4e229b8807c0c1a64e2fea6b74fc3b4894f78414", "following_count": 79, "verified_addresses": {"eth_addresses": ["0xa3d82d8a3a412a69a57079f72079a7357b6f4bec"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/023H4I7HJnxRqsc9cqeFKV?si=mTjITFt2QHWFUIrjfM4Xrw\"}"}', 'tropical-house'), - (266500, '0x2746107d48f5e319dbfb7bd28b87d48e9217ba8f', 0, 1, '2024-05-05 16:18:10+00', 0, 0, '{"fid": 406381, "object": "user", "pfp_url": "https://i.imgur.com/bH5XsDO.jpg", "profile": {"bio": {"text": "디젠 🎩 Gazua!!! 댓글주시면 무조건 100% 갑니다용:) 소통 환영합니다♡ https://zora.co/@djlove0307 ", "mentioned_profiles": []}}, "username": "djlove0307", "power_badge": false, "display_name": "Crypto trader_brown", "active_status": "inactive", "verifications": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "follower_count": 3257, "custody_address": "0xd3a2bf2e59de9f1a6dbb8aa72059b47a4651d703", "following_count": 3369, "verified_addresses": {"eth_addresses": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/edsheeran/shape-of-you?in=crypto-trader_brown/sets/my-favoriate-song&si=9d48f601fd6b46b78f113c3d8572fc34&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (267193, '0xc61ae01fe1f85e69d224c951c9d1c561b08e1110', 0, 1, '2024-05-05 16:24:06+00', 0, 8, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 360, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 162, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/05QGJav2nGJ9qdQ3vG9A9t?si=cc024b8671ea48b6\"}"}', NULL), - (283538, '0x1f66942829cb73203db8c59449ac0fb16c403a2a', 0, 1, '2024-05-05 18:27:30+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/babytaemni/sets/blackpink-square-one?si=bd7563b371104598b1fcc717387c8bf6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (248204, '0x55a3b1f5a356dd624cc0ef2cdbe9610d7482e28c', 0, 1, '2024-05-05 14:37:30+00', 0, 0, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bensonboone/beautiful-things?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (248209, '0xc6a006ae687e732628f31349d2ace7fc66cc04ab', 0, 1, '2024-05-05 14:38:27+00', 0, 0, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bensonboone/slow-it-down?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (248210, '0xb10373f643e070c48a0058c30b09a85aca6cdbbb', 0, 1, '2024-05-05 14:37:49+00', 0, 1, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bensonboone/slow-it-down?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (261001, '0xe2aa74a30888e3feed9f1026d0064116e58132d5', 0, 1, '2024-05-05 15:44:13+00', 0, 3, '{"fid": 379723, "object": "user", "pfp_url": "https://i.imgur.com/qz4ePGa.jpg", "profile": {"bio": {"text": "Hardly working on 워캐스트!", "mentioned_profiles": []}}, "username": "kimnoru", "power_badge": false, "display_name": "Kimnoru", "active_status": "inactive", "verifications": ["0x3a722183008048deefd8e1b2d248bf26f627be88"], "follower_count": 1453, "custody_address": "0xd69aac90b35ecde5b4e9f7f736c1a38ac03d6649", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0x3a722183008048deefd8e1b2d248bf26f627be88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lfjr9nqi3hy9/nxehfocpwwhq?si=c8da4ef2ecad4a0aae6f0591f21b9399&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (258657, '0xdcd8d5b19fcc8cf6d6e0ccc3d871dfdcd89f57b0', 0, 1, '2024-05-05 15:27:42+00', 0, 1, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1161, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 557, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JhPDj\"}"}', NULL), - (256900, '0x3ce0184247c8a46c7c02d200cbf5b22a664993d3', 0, 1, '2024-05-05 15:12:30+00', 0, 3, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2478, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2344, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EuZRyx8YXESCGNjr6\"}"}', NULL), - (266971, '0x592076e9f2e3dded7a0e4a07e82da75477bbec8e', 0, 1, '2024-05-05 16:20:04+00', 0, 1, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1192, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1365, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tZKWY\"}"}', NULL), - (274393, '0x5a5ef2924dd91bb3ab4ffd41e36703e61f7f721d', 0, 1, '2024-05-05 17:17:59+00', 0, 0, '{"fid": 381369, "object": "user", "pfp_url": "https://i.imgur.com/HTsXsT4.jpg", "profile": {"bio": {"text": "Foodie !\nBASE LOVER !\nCrazy for Mechanical Engineering and NFT\nMINT NFT https://zora.co/@siks", "mentioned_profiles": []}}, "username": "siks", "power_badge": false, "display_name": "Nick", "active_status": "inactive", "verifications": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "follower_count": 2765, "custody_address": "0x5d501482f5320c139ccbc94ad43b10238508e2b2", "following_count": 2853, "verified_addresses": {"eth_addresses": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SBrHnxWLa5uFKSRX9\"}"}', NULL), - (247803, '0x77d277723ea5afe473912e892edd91fd4d1dff88', 0, 1, '2024-05-05 14:34:05+00', 0, 0, '{"fid": 511805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75f05623-168c-43f4-b88e-1979a2c5d300/rectcrop3", "profile": {"bio": {"text": "Hello :) I''m K", "mentioned_profiles": []}}, "username": "!511805", "power_badge": false, "display_name": "Maroon3", "active_status": "inactive", "verifications": ["0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5", "0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5", "0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5", "0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5"], "follower_count": 17, "custody_address": "0xdd32992c0421ef1416ba9cc79488bfa54cd3d520", "following_count": 81, "verified_addresses": {"eth_addresses": ["0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5", "0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5", "0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5", "0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mr-killer/bruno-mars-just-the-way-you?si=5522dae2eb7140e9b2a9ba079b58f2a0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (248201, '0x8a19c1c158a1875c5fda60bd4e5bc90329bce955', 0, 1, '2024-05-05 14:38:55+00', 0, 5, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 1982, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2826, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nelly-official/dilemma?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (248560, '0x8617d324375481b739dd868e6da0e7d467e6a719', 0, 1, '2024-05-05 14:40:59+00', 0, 0, '{"fid": 426079, "object": "user", "pfp_url": "https://i.imgur.com/btavMHT.jpg", "profile": {"bio": {"text": "x > +", "mentioned_profiles": []}}, "username": "heyden", "power_badge": false, "display_name": "heyden", "active_status": "inactive", "verifications": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "follower_count": 2348, "custody_address": "0x578a54f0694def6e374a86204efa3a8445a4e2f5", "following_count": 2676, "verified_addresses": {"eth_addresses": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "sol_addresses": []}}', '{"{\"url\":\"아일릿 진짜 사랑스러움 그 자체…😍 https://on.soundcloud.com/aabKiWuJZ1FmgDgr5\"}"}', NULL), - (248511, '0x4c38f8ea07a852ed33eb177a8a13144e66591b9b', 0, 1, '2024-05-05 14:39:34+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1136, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 942, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SxpxKaxXEyXrMEdo8\"}"}', NULL), - (248562, '0x28eeeec2cc227a970a28eddd1ca201b1dd0c59dc', 0, 1, '2024-05-05 14:41:02+00', 0, 1, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "follower_count": 1421, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1087, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/xWUg1di53BC4yVP86\"}"}', NULL), - (260939, '0xf6b8d80fad5012c3aedc4b52394dbffcc01493b9', 0, 1, '2024-05-05 15:43:05+00', 0, 0, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1236, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1250, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/search?q=tape%20machines%203d\"}"}', NULL), - (372290, '0xb9d8b3854752b1114a0d85dc43c392ab9d3861e7', 0, 1, '2024-05-06 03:38:34+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 좋은날 - 정준일 by seung hwan hong on #SoundCloud https://on.soundcloud.com/XELZL\"}"}', NULL), - (261254, '0xea3e23cefbb7c12f75562974899e7f00b31e7b5a', 0, 1, '2024-05-05 15:48:55+00', 0, 1, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 770, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 1311, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R5Bdb5MxFzntMYxE8\"}"}', NULL), - (259087, '0xfaee1258c81648f137a69a853ccfb96bb4ed426f', 0, 1, '2024-05-05 15:30:02+00', 0, 2, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1448, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1144, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rs3zGswphFrTMBKdA\"}"}', NULL), - (283527, '0x8f02ea46d50833a7cb99424f948e5cf420794d0f', 0, 1, '2024-05-05 18:27:19+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/babytaemni/sets/blackpink-square-up?si=da6d6fe870704e53b33afacbc0390268&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (266980, '0xe193e61d1891bfb3822ce9284673425a4942bb12', 0, 1, '2024-05-05 16:20:19+00', 0, 1, '{"fid": 406381, "object": "user", "pfp_url": "https://i.imgur.com/bH5XsDO.jpg", "profile": {"bio": {"text": "디젠 🎩 Gazua!!! 댓글주시면 무조건 100% 갑니다용:) 소통 환영합니다♡ https://zora.co/@djlove0307 ", "mentioned_profiles": []}}, "username": "djlove0307", "power_badge": false, "display_name": "Crypto trader_brown", "active_status": "inactive", "verifications": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "follower_count": 3257, "custody_address": "0xd3a2bf2e59de9f1a6dbb8aa72059b47a4651d703", "following_count": 3369, "verified_addresses": {"eth_addresses": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/edsheeran/shape-of-you?in=crypto-trader_brown/sets/my-favoriate-song&si=9d48f601fd6b46b78f113c3d8572fc34&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283523, '0x7563941953a11f2cf52e7cc379364c1a438b2fed', 0, 1, '2024-05-05 18:28:22+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share/sets/bts-map-of-the-soul-persona?si=2602ecc6fa8a4ccaa4b8cb176787fd02&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (261257, '0x8d756e8c79227cbad2dd8f809a917203821850e9', 0, 1, '2024-05-05 15:48:58+00', 0, 1, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1347, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1539, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/m7RZnQb92tP3rRhK8\"}"}', NULL), - (283660, '0xe86bcf06f8a42045bcad5f207a3976672c14d61a', 0, 1, '2024-05-05 18:29:15+00', 0, 0, '{"fid": 501820, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60e10659-76b4-4660-8806-1b456771d300/rectcrop3", "profile": {"bio": {"text": "From online to on-chain", "mentioned_profiles": []}}, "username": "b24d", "power_badge": false, "display_name": "Kuny", "active_status": "inactive", "verifications": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "follower_count": 1028, "custody_address": "0x19073cd6a24bd9f4479367b98868184b06e502f1", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K4SCSvXcf6WmUKVf7\"}"}', NULL), - (248165, '0x80d25c9c070b2617971104bc0cafd8fd07cadf27', 0, 1, '2024-05-05 14:35:29+00', 0, 1, '{"fid": 5745, "object": "user", "pfp_url": "https://i.seadn.io/gae/relGaxEk1GBsp7eHmNTb8GODwhLmCeFF5wi36l1K2QKpzpTdc8OZnO724PN6sSOisMP_zga5SmLdvdal6p7GtGiW0SfgVYJ_wN9xQw?w=500&auto=format", "profile": {"bio": {"text": "Investing in early-stage onchain finance projects @ UDHC.com | \nPrev. MakerDAO 🌹|\nFailed actor, racer, footballer", "mentioned_profiles": []}}, "username": "coulter", "power_badge": true, "display_name": "Coulter", "active_status": "inactive", "verifications": ["0xf159dc86d3989f76e3ee343bb30e672bc081bb88"], "follower_count": 1262, "custody_address": "0x014fffb62fbc1925f4cd3592d6064e52bdfeb47c", "following_count": 685, "verified_addresses": {"eth_addresses": ["0xf159dc86d3989f76e3ee343bb30e672bc081bb88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/metroboomin/bbl-drizzy-bpm-150-mp3\"}"}', NULL), - (249314, '0x6760b27e8293bde58442034afce1595ac8c76f75', 100, 1, '2024-05-05 14:44:28+00', 10, 80, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2664, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2950, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2efYQoAm94FE9vwP2mk0R7?si=09eeb0728ecb4beb\"}"}', 'sonata'), - (248678, '0x42066862bb79a7f217cd6bf79747e0129a4fa8d2', 0, 1, '2024-05-05 14:41:40+00', 0, 1, '{"fid": 500216, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2150447d-3010-4ac1-d0af-80b82f949300/rectcrop3", "profile": {"bio": {"text": "$Degen 1$ 🌙\nFollow me :)", "mentioned_profiles": []}}, "username": "bitsla0928", "power_badge": false, "display_name": "SLA🔥", "active_status": "inactive", "verifications": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "follower_count": 878, "custody_address": "0xa8a47f59700d7727ffd26ae2aaccc37239e50e94", "following_count": 938, "verified_addresses": {"eth_addresses": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/georgecredit/george-boat-prod-by-deepshower?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (249019, '0xdbaca29d480f86e15693d700e0ab9c500c85ac4a', 0, 1, '2024-05-05 14:43:03+00', 0, 1, '{"fid": 426079, "object": "user", "pfp_url": "https://i.imgur.com/btavMHT.jpg", "profile": {"bio": {"text": "x > +", "mentioned_profiles": []}}, "username": "heyden", "power_badge": false, "display_name": "heyden", "active_status": "inactive", "verifications": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "follower_count": 2348, "custody_address": "0x578a54f0694def6e374a86204efa3a8445a4e2f5", "following_count": 2676, "verified_addresses": {"eth_addresses": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DYW5vPmwx3Jx3VFD6\"}"}', NULL), - (249017, '0x54312de7ce4ab4b1fed756d5bf01de92975b7d03', 0, 1, '2024-05-05 14:42:45+00', 0, 3, '{"fid": 486310, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6071787-b9ac-49a8-f2da-15e311df5e00/rectcrop3", "profile": {"bio": {"text": "F4F 마띠🎩 햄🍖 인간 비타민🍋🍋🍋💛", "mentioned_profiles": []}}, "username": "jennyan", "power_badge": false, "display_name": "J🎩🍋", "active_status": "inactive", "verifications": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "follower_count": 1527, "custody_address": "0xacd0c2b19213be2deaaee6700483b03f545ab108", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/newjeans-bubble-gum?si=d8156102762f4a5f90f28dc13f068fa9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (249313, '0xbe9e25d674dad3479d9af5b0bcbcd015a7c39185', 0, 1, '2024-05-05 14:44:11+00', 0, 0, '{"fid": 500224, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85166db0-7cef-4835-1505-9ee383294000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "devilsangjin", "power_badge": false, "display_name": "TigerSJ", "active_status": "inactive", "verifications": ["0x756f87ec958315bed6e8c50e02361302e0c64868"], "follower_count": 2648, "custody_address": "0xd7e9d23fec930ea7fd49417583fe89a961c4f9ea", "following_count": 6100, "verified_addresses": {"eth_addresses": ["0x756f87ec958315bed6e8c50e02361302e0c64868"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tinker-ben/stayc-so-what?in=qzodsb95twtg/sets/hfbafw9lo721&si=710d394ce1de4f27839be854595ca916&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (267046, '0xf3a755e5a8fdcd8d0e1f1d3d504fc6574b3450d2', 0, 1, '2024-05-05 16:21:11+00', 0, 4, '{"fid": 505708, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80a4dfd8-d4fc-476e-0a06-cbd66f6d3500/rectcrop3", "profile": {"bio": {"text": "it''s a newstart with coffee😃\n🔆같이 키워봅시다🔆무럭 무럭👍\n", "mentioned_profiles": []}}, "username": "withcoffee", "power_badge": false, "display_name": "WITHcoffee", "active_status": "inactive", "verifications": ["0x06820f9584291334d38ff09c832b560c16263a60"], "follower_count": 1198, "custody_address": "0x6f1b557b5fabdd13789e3b99b56af838ab06617f", "following_count": 1873, "verified_addresses": {"eth_addresses": ["0x06820f9584291334d38ff09c832b560c16263a60"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LF23WCtZd9ghfLmc7\"}"}', NULL), - (283525, '0x3ab22af0c77c33621a522681e751e2dc4561bcce', 0, 1, '2024-05-05 18:27:33+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/babytaemni/sets/blackpink-square-two?si=248e4d5ce0a94509ac605792523ba937&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (249933, '0xfc9dd1080ea322ed4d95bbd455ce0912adce0b64', 0, 1, '2024-05-05 14:48:47+00', 0, 8, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 1946, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 1876, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/frank-sinatra/im-a-fool-to-want-you-6?si=d009254d45294e039ea12347fc9e0a13&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (249404, '0x00907c95a45b13a4d4392b906e8ae8559cdf0b7d', 0, 1, '2024-05-05 14:45:36+00', 0, 2, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1564, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1286, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Xzf9zodyWcbKpjJr5\"}"}', NULL), - (261459, '0x5ae12fa6c2769fc7073e4f6d1e75a73186a2af8f', 0, 1, '2024-05-05 15:50:46+00', 0, 1, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 669, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1149, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kato-tabaghua/ray-charles-ellie-my-love?si=3a2dd49afbe14274958d7893658cc2c2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (249934, '0x59b726f508e16b424995a4e9076929d15cc36e0f', 0, 1, '2024-05-05 14:48:40+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1136, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 942, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zPDSHACiBLqKefxG9\"}"}', NULL), - (281211, '0xe189e7188bdf869cbcb6e8e7adde47a337295ee8', 0, 1, '2024-05-05 18:04:58+00', 0, 0, '{"fid": 516301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/764869e0-b192-4427-b58a-310158533c00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!516301", "power_badge": false, "display_name": "Emma", "active_status": "inactive", "verifications": ["0x783756aa282530cc87c019381f279701971dd55c"], "follower_count": 22, "custody_address": "0x4efbda857e4e276b53f5bb4e90e4369b7768cb8f", "following_count": 65, "verified_addresses": {"eth_addresses": ["0x783756aa282530cc87c019381f279701971dd55c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tYT9QTxZzpX1yAaR7\"}"}', NULL), - (249412, '0xcada1586e509a9bb1d7c513dd065e24bb574cd0a', 0, 1, '2024-05-05 14:45:06+00', 0, 4, '{"fid": 500224, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85166db0-7cef-4835-1505-9ee383294000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "devilsangjin", "power_badge": false, "display_name": "TigerSJ", "active_status": "inactive", "verifications": ["0x756f87ec958315bed6e8c50e02361302e0c64868"], "follower_count": 2648, "custody_address": "0xd7e9d23fec930ea7fd49417583fe89a961c4f9ea", "following_count": 6100, "verified_addresses": {"eth_addresses": ["0x756f87ec958315bed6e8c50e02361302e0c64868"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tinker-ben/stayc-so-what?in=qzodsb95twtg/sets/hfbafw9lo721&si=710d394ce1de4f27839be854595ca916&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (267100, '0xac4b86933751975b641b0402530f820d165d9d8b', 0, 1, '2024-05-05 16:22:07+00', 0, 2, '{"fid": 499783, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05055ae3-170a-477e-d00b-f66c154eb700/original", "profile": {"bio": {"text": "Building /uniklabs. Based in Los Fomos /los-fomos fm host • \nNext-gen IPs are Web3-native w/ a ''skin in the character'' community & a networked virtual economy", "mentioned_profiles": []}}, "username": "tako-unik", "power_badge": false, "display_name": "Tako Unik 🌶️", "active_status": "inactive", "verifications": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "follower_count": 29, "custody_address": "0x96c633f9d1b6c20586bae7fd36ea4bf8f7a1bcf9", "following_count": 64, "verified_addresses": {"eth_addresses": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4cVHMHgmWgudD399ZdhQ3L?si=e2b2f81aded84630\"}"}', 'los-fomos'), - (214518, '0x7e6eece2120277ef96378fc079b34309a5babac0', 0, 1, '2024-05-05 13:03:41+00', 0, 0, '{"fid": 194233, "object": "user", "pfp_url": "https://i.imgur.com/68Af7up.jpg", "profile": {"bio": {"text": "Solo Investor\nDeFi Farmer\nDegen explorer ", "mentioned_profiles": []}}, "username": "oxcryptopanda", "power_badge": true, "display_name": "CryptoPanda🎩", "active_status": "inactive", "verifications": ["0x0bebe2165de412e7925ab8352e36f3b0493dd3b9"], "follower_count": 661, "custody_address": "0x8765805e0c6aa73dbc9c4fe2cf94560bb4ecd142", "following_count": 151, "verified_addresses": {"eth_addresses": ["0x0bebe2165de412e7925ab8352e36f3b0493dd3b9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x0bebe2165de412e7925ab8352e36f3b0493dd3b9&referral_source=link\"}"}', NULL), - (267180, '0x7171105e6846bb157b13146c1b9ba3d793e95330', 0, 1, '2024-05-05 16:23:23+00', 0, 1, '{"fid": 403043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7807c4e6-b0ee-4bf5-8651-bb1fe9b76700/rectcrop3", "profile": {"bio": {"text": "Enjoy daily life 😊", "mentioned_profiles": []}}, "username": "axria", "power_badge": false, "display_name": "axria", "active_status": "inactive", "verifications": ["0xb0006e914b778e35946a2dc05954785e8d90c2a2", "0x20fe84bd1696429c67d0d9bda2c3e8490f073416"], "follower_count": 1369, "custody_address": "0x953a778aca242142921a1a196acd536348a61f9d", "following_count": 1265, "verified_addresses": {"eth_addresses": ["0xb0006e914b778e35946a2dc05954785e8d90c2a2", "0x20fe84bd1696429c67d0d9bda2c3e8490f073416"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rk6G7mMy8ZW3y6Qg7\"}"}', NULL), - (261462, '0x3d7551531c74d6efaa5574c0ce677d184976429e', 0, 1, '2024-05-05 15:50:29+00', 0, 0, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1030, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lauvsongs/paris-in-the-rain-1?si=36ccb75f45954ca9bb318d85f591692e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283661, '0x804bf084605671609f77a7817c9ccd0d38bb1cf0', 0, 1, '2024-05-05 18:29:00+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hopeside/sets/bts-love-yourself-tour-in-seoul?si=a01b5e8d04d144edbb621e45030bea63&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (994798, '0x71b7ebcdf66f825b78b0930d953e9b04a4e927d6', 0, 1, '2024-05-07 11:41:18+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1427, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1937, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ceRFg1bVU8Y8rgcG7\"}"}', NULL), - (269712, '0x72e4b95c6cc65e0f778b75738adc9d4832dea4f1', 0, 1, '2024-05-05 16:41:31+00', 20, 2, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1427, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1737, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iYghSMhovukuu3SL7\"}"}', NULL), - (271716, '0x967ac05df74fe5b5d8ced620be702165b0d41f8d', 0, 1, '2024-05-05 16:55:36+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l-y-n-d-y-b-o-y-s/taeko-ohnuki?si=ff613c4f121e42eb9eec1e58fefb5df8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (251263, '0x5b81cb5fa8fad66f6d3263f4658c7843e899a3f5', 0, 1, '2024-05-05 14:51:42+00', 0, 1, '{"fid": 508575, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb3389ba-81bc-42db-3e0d-387741f91c00/rectcrop3", "profile": {"bio": {"text": "I standup for you. like reply quote ~ for you", "mentioned_profiles": []}}, "username": "!508575", "power_badge": false, "display_name": "Marcokim2", "active_status": "inactive", "verifications": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "follower_count": 393, "custody_address": "0x6a44ba7ae013effc69f9590a2d950252d28909c9", "following_count": 743, "verified_addresses": {"eth_addresses": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Blasterjaxx & Timmy Trumpet - Narco ⚾️ by Maxximize Records on #SoundCloud https://on.soundcloud.com/pWTBm\"}"}', NULL), - (250546, '0xd6a58221ebed08877ef3ffe7ac19a9f5b576fd4c', 0, 1, '2024-05-05 14:49:19+00', 0, 4, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1515, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2426, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YdnebSH2gE5d7ufu9\"}"}', NULL), - (261720, '0x4f8457dcb9f6e255b2b1ad3b547e68a2966d7b3a', 0, 1, '2024-05-05 15:51:03+00', 0, 11, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1288, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 1991, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2ZJ28Rm7OXMYJshLtp5uff?si=55871a57498f469b\"}"}', 'sonata'), - (250542, '0xe90f6979a372176bb0b1569c27ab209ea585f809', 0, 1, '2024-05-05 14:49:50+00', 0, 0, '{"fid": 486199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9df915a-b4f6-470e-53c4-da38875c4e00/original", "profile": {"bio": {"text": "Be careful, Everyone", "mentioned_profiles": []}}, "username": "joyeehyun", "power_badge": false, "display_name": "Joyeehyun", "active_status": "inactive", "verifications": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "follower_count": 1042, "custody_address": "0xc614ea305d00db50186fcf44457d651bb38c9765", "following_count": 745, "verified_addresses": {"eth_addresses": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mohamedwsaleem1999/oasis-dont-look-back-in-anger?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (250544, '0x8ef00df4caf1486933b14f50ff22da39b39d6c87', 0, 1, '2024-05-05 14:49:16+00', 0, 0, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2478, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2344, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BT75hDTfsL3ZRhNy8\"}"}', NULL), - (250543, '0xde6a4772930896991e2672150ddd5979b174a53d', 0, 1, '2024-05-05 14:49:17+00', 0, 4, '{"fid": 323599, "object": "user", "pfp_url": "https://i.imgur.com/ki2KU7o.jpg", "profile": {"bio": {"text": "Musician - Frequency lover -Crypto/Trader", "mentioned_profiles": []}}, "username": "bezu", "power_badge": false, "display_name": "Bezu 🎩🎤", "active_status": "inactive", "verifications": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "follower_count": 177, "custody_address": "0x35d6859e780f030894cc3d070792a503badafe36", "following_count": 488, "verified_addresses": {"eth_addresses": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6jmc9xnc6QdM5x2Uj04T6m?si=K887C6vYQ8e9t1XjNbq_Iw\"}"}', NULL), - (1173170, '0x496506c87ae52b70687924a33bed42569d93d270', 1000, 1, '2024-05-15 04:41:04+00', 0, 0, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🎩 ", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1154, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1006, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5lBKGuWoDoNXd0r4sICyK2?si=c32a593de7bb4414\"}"}', 'clique-tracks'), - (249438, '0x37e93e12a00315a57f1d5900e10f2880801ba425', 0, 1, '2024-05-05 14:45:47+00', 0, 2, '{"fid": 417203, "object": "user", "pfp_url": "https://i.imgur.com/U0jXYDx.jpg", "profile": {"bio": {"text": "반가워요^^ 열심히 소통할께요 ^^\n좋아요! 댓글! 맞팔! 초선! 반사 :)\n\n", "mentioned_profiles": []}}, "username": "bkbl", "power_badge": false, "display_name": "Bkbl ", "active_status": "inactive", "verifications": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "follower_count": 2300, "custody_address": "0xe9405bfa3a9c004fe826dde1a595d06d7b142e27", "following_count": 1217, "verified_addresses": {"eth_addresses": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki25/full-album-jung-kook-golden?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (251264, '0xc7a9df4f02422461bd201a815f80cca440b92782', 0, 1, '2024-05-05 14:52:15+00', 0, 4, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1252, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1123, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yRbsVPa26NkWFCmE9\"}"}', NULL), - (274465, '0x1703a8183fb83e29f8606bcebb68dacfdca5224a', 0, 1, '2024-05-05 17:18:12+00', 0, 1, '{"fid": 500912, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/31844d3a-aecb-46be-a6a5-2d3fe7719800/rectcrop3", "profile": {"bio": {"text": "Bitcoin Degen", "mentioned_profiles": []}}, "username": "sukkyu777", "power_badge": false, "display_name": "Bulls🎩🍖🔵", "active_status": "inactive", "verifications": ["0xab66d8a0efd407420b9da172edb30450b501147b"], "follower_count": 1378, "custody_address": "0xb52763552683e00845f8c028ef0b9f47e3a36ee1", "following_count": 1893, "verified_addresses": {"eth_addresses": ["0xab66d8a0efd407420b9da172edb30450b501147b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/44wdltc5vbqw/ak47\"}"}', NULL), - (269713, '0x5bbb3fc02c14b5d3d09ea3ac65f0f65a64c6edab', 0, 1, '2024-05-05 16:41:50+00', 0, 0, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 265, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 456, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bNwJ5\"}"}', NULL), - (283721, '0x750df52484ef702640df26b247855fc569a74b2c', 0, 1, '2024-05-05 18:29:48+00', 0, 0, '{"fid": 451949, "object": "user", "pfp_url": "https://i.imgur.com/ZbJrg7X.jpg", "profile": {"bio": {"text": "In Love with 🌵", "mentioned_profiles": []}}, "username": "cactuss", "power_badge": false, "display_name": "Cactus ", "active_status": "inactive", "verifications": ["0x25ae5bee0404e99014ff66457f5103153f2d5c07"], "follower_count": 813, "custody_address": "0xd3ac23b7fe1797f19194e68ba627b31773068ce5", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x25ae5bee0404e99014ff66457f5103153f2d5c07"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Sparks - Coldplay by Mac Levine on #SoundCloud https://on.soundcloud.com/8tP1e\"}"}', NULL), - (276089, '0xbcd0fd4ee88b9c07cd69d81df98c9fc72b9e3949', 0, 1, '2024-05-05 17:45:02+00', 0, 0, '{"fid": 3406, "object": "user", "pfp_url": "https://i.imgur.com/2cPwRQV.jpg", "profile": {"bio": {"text": "Conversation Artist l Director of Media @shillr", "mentioned_profiles": []}}, "username": "boona", "power_badge": true, "display_name": "Boona 🎩", "active_status": "inactive", "verifications": ["0xbc1e0021f9d22582b34b584b8516dff417e7ab71"], "follower_count": 1404, "custody_address": "0x6d55f969373541fdb37e55d23eec1c9bd4cb7033", "following_count": 695, "verified_addresses": {"eth_addresses": ["0xbc1e0021f9d22582b34b584b8516dff417e7ab71"], "sol_addresses": ["HNVoyZLPb71rATBM6bNJjQubmXCUk1ZbqNHzfbcaxYpB"]}}', '{"{\"url\":\"https://m.soundcloud.com/seanjmundy/sanctus\"}"}', NULL), - (283534, '0x4fae2323cc4613d26359f25bb464020c2a271a8e', 0, 1, '2024-05-05 18:28:17+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share/sets/bts-map-of-the-soul-7?si=247f05da41354e0c8cd268487f0dad57&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283753, '0x200f8e89246518128a8e42f8b70a2be8d10df95b', 0, 1, '2024-05-05 18:31:32+00', 0, 0, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2376, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1608, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dF2S3c8H7dncuDMk8\"}"}', NULL), - (261722, '0xcac0e86ce702375d0193a44542faad9f2da6d2c2', 0, 1, '2024-05-05 15:51:09+00', 0, 1, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 281, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 721, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trusthee_hotmail/762rnkbkzh5g?si=3a7b0881b2684d7cb9cc23be457b871b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (249939, '0x233e1eb9bd537073083af08dd9038eb5f63af8e8', 0, 1, '2024-05-05 14:48:22+00', 0, 0, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 60, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 41, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"http://www.sound.xyz/nessytherilla\"}"}', NULL), - (251710, '0xb31b8710d84752370f1cd408df31b2633d0f8019', 0, 1, '2024-05-05 14:54:43+00', 0, 0, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 128, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 372, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7SShNGd3e83gjAUz9\"}"}', NULL), - (251612, '0xe4cedd243631ba55b3311e49181ae721389ac95d', 0, 1, '2024-05-05 14:52:56+00', 0, 1, '{"fid": 323201, "object": "user", "pfp_url": "https://i.imgur.com/zP0yf1t.jpg", "profile": {"bio": {"text": "I want to know crypto", "mentioned_profiles": []}}, "username": "bakkah", "power_badge": false, "display_name": "BakkaH🎩🍖", "active_status": "inactive", "verifications": ["0x9d17e6017d50a82bd6fbd6b4c4d634fa16477987"], "follower_count": 1487, "custody_address": "0x4893c7ef0f9437116080422b1d200449f0fdea07", "following_count": 1963, "verified_addresses": {"eth_addresses": ["0x9d17e6017d50a82bd6fbd6b4c4d634fa16477987"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost20/kwon-jin-ah-be-melodramatic-ost-part-1?si=5352f3d217d24c9f9b152e870c3cfd9a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (249952, '0x2e050d91af31ad5fc48867946410275bf269bd8a', 0, 1, '2024-05-05 14:48:18+00', 0, 0, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "follower_count": 1422, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1088, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/kPiQUjiKrgAxT1gp8\"}"}', NULL), - (335449, '0x50e27a70b2fb552c66a068cff1f6a844ae149a3d', 0, 1, '2024-05-05 23:16:38+00', 0, 1, '{"fid": 401089, "object": "user", "pfp_url": "https://i.imgur.com/MSOsm4E.jpg", "profile": {"bio": {"text": "a traveler who dreams of economic freedom\nLike&Reply&Recast❣️\n맞팔환영😊 3종은 언제나 환영입니다🥰\n비투카🍓 감사합니다! Thx to @ilpyung\n", "mentioned_profiles": []}}, "username": "bettermankim", "power_badge": false, "display_name": "bettermankim", "active_status": "inactive", "verifications": ["0x846dc81911f51c4b649e9a6b8d2b6d450729e1d9"], "follower_count": 1201, "custody_address": "0x68d323c95ea471714ad2a142ced07efe1e97c023", "following_count": 1197, "verified_addresses": {"eth_addresses": ["0x846dc81911f51c4b649e9a6b8d2b6d450729e1d9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/s4A7s\"}"}', 'sonata'), - (357185, '0xa32a12579c2a4e921c941ae4ff4ece21b742fd1a', 0, 1, '2024-05-06 01:55:10+00', 0, 1, '{"fid": 379695, "object": "user", "pfp_url": "https://i.imgur.com/eZVr8AJ.jpg", "profile": {"bio": {"text": "✏️Writer Suim,\nLife is mostly empty. We each fill that part with something. What are you filling in?", "mentioned_profiles": []}}, "username": "poke00", "power_badge": false, "display_name": "Suimbatoz", "active_status": "inactive", "verifications": ["0xa72b08366c9f06787a3293bf292a2322314d04e2"], "follower_count": 2966, "custody_address": "0xc913935fd0414329589d46762412883fbcf971b6", "following_count": 1965, "verified_addresses": {"eth_addresses": ["0xa72b08366c9f06787a3293bf292a2322314d04e2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MnJJrHdp9SyzdWPS6\"}"}', 'sonata'), - (346005, '0x39ca2375b0a3b5d1851944d2d53cb04775544be0', 0, 1, '2024-05-06 00:23:41+00', 0, 0, '{"fid": 191751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4dc71ec-9c59-42b9-5687-510c52dfe100/original", "profile": {"bio": {"text": "...", "mentioned_profiles": []}}, "username": "seoulraa", "power_badge": false, "display_name": "seoulraa", "active_status": "inactive", "verifications": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "follower_count": 26, "custody_address": "0xbee4eac0d0bcb4334a034dfa44eb3a96e3b81a9b", "following_count": 37, "verified_addresses": {"eth_addresses": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/seoulraa.eth/post/48a101c7-f2f6-4ff8-972e-013b3baf8255\"}"}', NULL), - (252020, '0x919af9f0d72edf27a7aee6c7fe5ad37e7351be54', 0, 1, '2024-05-05 14:55:13+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1136, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 942, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/N9nTB2Sz9C5tWHXk9\"}"}', NULL), - (259088, '0xc99b4aab4d28c36b09a08fdb6f3f4dde03e1ff4b', 0, 1, '2024-05-05 15:29:56+00', 0, 0, '{"fid": 426426, "object": "user", "pfp_url": "https://i.imgur.com/fIJnVyV.jpg", "profile": {"bio": {"text": "my AIart & photography", "mentioned_profiles": []}}, "username": "samaneh", "power_badge": false, "display_name": "Samaneh AI art 🎩 ", "active_status": "inactive", "verifications": ["0x9961d02489bdb014f85db0fd76390eb0fa88e750"], "follower_count": 1463, "custody_address": "0x97f3db160b0b66561442b891c1413faaf054cc2d", "following_count": 1404, "verified_addresses": {"eth_addresses": ["0x9961d02489bdb014f85db0fd76390eb0fa88e750"], "sol_addresses": ["Tpvrnj8VSAyYJorr3JU7AqxucScNoM9ECK7cEWZ6Y3e"]}}', '{"{\"url\":\"https://on.soundcloud.com/kKVyUDRsbZxrPMKf9\"}"}', NULL), - (269714, '0x746b83380eafb45bec9b85ae4ce8080ae7301830', 0, 1, '2024-05-05 16:41:33+00', 0, 4, '{"fid": 2802, "object": "user", "pfp_url": "https://i.imgur.com/Hf9CCmq.jpg", "profile": {"bio": {"text": "Stay Curious // iixii // Lazer Technologies // CoinDesk", "mentioned_profiles": []}}, "username": "garrett", "power_badge": true, "display_name": "Garrett 🎩↑ᖽ", "active_status": "inactive", "verifications": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "follower_count": 8817, "custody_address": "0xb3b4c5d8a76b33d5db8f94b44444563b9038a7a3", "following_count": 1850, "verified_addresses": {"eth_addresses": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "sol_addresses": ["GBoV4dY33PwzvoTkCaHRwqAsAcBBv9qfgTXexqZBzopk"]}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=F_JcKyq7QzOP4ELDNPPQhg&context=spotify%3Aalbum%3A5JjnoGJyOxfSZUZtk2rRwZ\"}"}', NULL), - (269719, '0x73f3fd49a3e640d7e5189db9e4ff8ff457615a4e', 0, 1, '2024-05-05 16:41:41+00', 0, 0, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2377, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1605, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JpHaDTi2Qm369ypK6\"}"}', NULL), - (283659, '0x250e4f4bb3e1b929aa38573e5ceec30919d1ede5', 0, 1, '2024-05-05 18:28:33+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/babytaemni/sets/bts-love-yourself-tear?si=2e2f1ac9c48e41f6aa0d05001fd93e47&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160330, '0x81053a7306ff0a00f4d45eabe3eb2e2b85251f99', 0, 1, '2024-05-08 20:50:38+00', 0, 0, '{"fid": 12036, "object": "user", "pfp_url": "https://i.imgur.com/G0JZ74M.jpg", "profile": {"bio": {"text": "Artist | Digital Alchemist \n\nbeacons.ai/benalistair", "mentioned_profiles": []}}, "username": "benalistair", "power_badge": true, "display_name": "Benjamin Alistair ", "active_status": "inactive", "verifications": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "follower_count": 285, "custody_address": "0xdf99e8dfff593e38d1f32e594ee485ed615ce0fa", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3FFBiGnryiOpGccofXl4gc\"}"}', NULL), - (334902, '0x5c912519dfbf0e5681882c9167b9faa678cdd5fb', 0, 1, '2024-05-05 23:06:08+00', 0, 1, '{"fid": 451903, "object": "user", "pfp_url": "https://i.imgur.com/U5GDK40.jpg", "profile": {"bio": {"text": "A Doctor with big dreams…", "mentioned_profiles": []}}, "username": "h3samgorjypto", "power_badge": false, "display_name": "Hesam", "active_status": "inactive", "verifications": ["0x4c521c3839b3de4332646cafa7f85a6abd614d04", "0x2cf3b1a52b0b2642b7b99a98200089c98fb3a591"], "follower_count": 1557, "custody_address": "0xe3850cae1ea551d718b7f82ee0da25bb272e8aca", "following_count": 1744, "verified_addresses": {"eth_addresses": ["0x4c521c3839b3de4332646cafa7f85a6abd614d04", "0x2cf3b1a52b0b2642b7b99a98200089c98fb3a591"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nada-jihad/russ-goodbye?ref=clipboard&p=i&c=0&si=10DBCFF5EC5A4DFAB559F54752531D9D&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160331, '0xcd205c88a198e964c745ad4695e807cde1a193be', 0, 1, '2024-05-08 20:50:23+00', 0, 0, '{"fid": 12036, "object": "user", "pfp_url": "https://i.imgur.com/G0JZ74M.jpg", "profile": {"bio": {"text": "Artist | Digital Alchemist \n\nbeacons.ai/benalistair", "mentioned_profiles": []}}, "username": "benalistair", "power_badge": true, "display_name": "Benjamin Alistair ", "active_status": "inactive", "verifications": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "follower_count": 285, "custody_address": "0xdf99e8dfff593e38d1f32e594ee485ed615ce0fa", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3mOpQK7vZIvhLxpVpv03pn\"}"}', NULL), - (317583, '0xaf18db5df4656b516090d97eadbefde75dd85005', 0, 1, '2024-05-05 21:29:37+00', 0, 0, '{"fid": 207400, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/Qmf79k2yYv6eFKN6huoDtpcSCebax3YT47WeyiaHaAUPWH", "profile": {"bio": {"text": "Development & operations, *never legal or financial advice, https://basepaint.xyz/mint?referrer=0xaaDd6D24EDe8ab75aCc3FBA496C3b41A9E663689 \nPlease be grateful. ", "mentioned_profiles": []}}, "username": "dev0ps", "power_badge": false, "display_name": "dev0ps - coastalconsulting.eth -", "active_status": "inactive", "verifications": ["0x141851ca7ffbead76491b365c3515bf5bfd9efed", "0xaadd6d24ede8ab75acc3fba496c3b41a9e663689", "0x51f47622856f24ed640f70400fa7aa583f04efee", "0x86ea1e8f576331baf33f5a84c6e90d3b59cb594c", "0x006c087fdc9783d1ab34cd156adfb0b51f74bc04"], "follower_count": 665, "custody_address": "0xe792891212a7c59b798788bc5379fc91768ee2d0", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0x141851ca7ffbead76491b365c3515bf5bfd9efed", "0xaadd6d24ede8ab75acc3fba496c3b41a9e663689", "0x51f47622856f24ed640f70400fa7aa583f04efee", "0x86ea1e8f576331baf33f5a84c6e90d3b59cb594c", "0x006c087fdc9783d1ab34cd156adfb0b51f74bc04"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gs4pthnRdJVsqKC3A\"}","{\"url\":\"https://on.soundcloud.com/Txh3zMV6Cv8yPo2S9\"}"}', NULL), - (283720, '0x1b2ae1b9a313de736953d29736de0b706ab3f756', 0, 1, '2024-05-05 18:30:37+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jiehe-won/mc-the-max-1?si=42a77b572203419cb9266dd2b999ca78&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283719, '0xcf7276e7bbdd56c9467d8e5e2ca1bfe935045855', 0, 1, '2024-05-05 18:30:40+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-657581291/vllo-2-m4a?si=aee310d7d0d744e69de4bf5bf20a9c01&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (335390, '0x4bae508e0cf48f2791414581570a5bf6b12587bd', 0, 1, '2024-05-05 23:14:47+00', 0, 1, '{"fid": 419915, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f869715-6ece-4b8b-23eb-4e0cb8351200/rectcrop3", "profile": {"bio": {"text": "I want to love and smile.\n\n#맞팔 #맞디젠", "mentioned_profiles": []}}, "username": "haisabu", "power_badge": false, "display_name": "Lee.dy", "active_status": "inactive", "verifications": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "follower_count": 2439, "custody_address": "0x014ed62b7fc75b742801098a46d216b9ebc59ca5", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-406895952/way-maker-2?si=2249c43b819843a4bcb655d8dba16851&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (228266, '0x14c165b14f5a0426363797402e3edb06ec79e715', 0, 1, '2024-05-05 13:32:05+00', 0, 0, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/down-the-drain?referral=0x8218224ebb7abf7dbaffdf0fed571b8280d99485&referral_source=link\"}"}', NULL), - (346003, '0x034820130ee43876dd6c876abc5d2e4d15e1aef8', 0, 1, '2024-05-06 00:24:20+00', 0, 4, '{"fid": 508575, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb3389ba-81bc-42db-3e0d-387741f91c00/rectcrop3", "profile": {"bio": {"text": "I standup for you. like reply quote ~ for you", "mentioned_profiles": []}}, "username": "!508575", "power_badge": false, "display_name": "Marcokim2", "active_status": "inactive", "verifications": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "follower_count": 415, "custody_address": "0x6a44ba7ae013effc69f9590a2d950252d28909c9", "following_count": 796, "verified_addresses": {"eth_addresses": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Adele - Easy On Me by Raylene.. on #SoundCloud https://on.soundcloud.com/5Lr3K\"}"}', NULL), - (1160321, '0xd78928c26b8f75743f35031eae817f68c08a85d8', 0, 1, '2024-05-08 20:32:40+00', 0, 0, '{"fid": 12036, "object": "user", "pfp_url": "https://i.imgur.com/G0JZ74M.jpg", "profile": {"bio": {"text": "Artist | Digital Alchemist \n\nbeacons.ai/benalistair", "mentioned_profiles": []}}, "username": "benalistair", "power_badge": true, "display_name": "Benjamin Alistair ", "active_status": "inactive", "verifications": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "follower_count": 285, "custody_address": "0xdf99e8dfff593e38d1f32e594ee485ed615ce0fa", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1WNIMXpLKoUkre1vKRcVSf\"}"}', NULL), - (261961, '0xd37814f9754fe264b48976ed898a9334521a8c65', 0, 1, '2024-05-05 15:53:28+00', 0, 0, '{"fid": 265597, "object": "user", "pfp_url": "https://i.imgur.com/4oW3yZ9.gif", "profile": {"bio": {"text": "Japanese🇯🇵 \nlike ▶︎ BCG、エアドロ、お酒🍶、犬🐶\n沢山いいね、リキャストしていきます👍\n", "mentioned_profiles": []}}, "username": "ginsan", "power_badge": false, "display_name": "ginsan.degen🎩🔮", "active_status": "inactive", "verifications": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "follower_count": 1123, "custody_address": "0xe4c97bd2e6864247d76555c72e624c6113343c9b", "following_count": 532, "verified_addresses": {"eth_addresses": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "sol_addresses": ["5vmkrAHfaLYDP4kdt7HUph6rPLk6Z1xhj8sPPLNy9w7e"]}}', '{"{\"url\":\"https://on.soundcloud.com/utxTR4mgVw7GB8fT9\"}"}', NULL), - (267195, '0x842fcbe7db4cabda3b23ce8a2bab128c788f74e2', 0, 1, '2024-05-05 16:24:07+00', 0, 1, '{"fid": 403043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7807c4e6-b0ee-4bf5-8651-bb1fe9b76700/rectcrop3", "profile": {"bio": {"text": "Enjoy daily life 😊", "mentioned_profiles": []}}, "username": "axria", "power_badge": false, "display_name": "axria", "active_status": "inactive", "verifications": ["0xb0006e914b778e35946a2dc05954785e8d90c2a2", "0x20fe84bd1696429c67d0d9bda2c3e8490f073416"], "follower_count": 1369, "custody_address": "0x953a778aca242142921a1a196acd536348a61f9d", "following_count": 1265, "verified_addresses": {"eth_addresses": ["0xb0006e914b778e35946a2dc05954785e8d90c2a2", "0x20fe84bd1696429c67d0d9bda2c3e8490f073416"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rk6G7mMy8ZW3y6Qg7\"}"}', NULL), - (269813, '0x7b2746e52bc66f0658f1d6ec94b6017ace731590', 0, 1, '2024-05-05 16:42:37+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/skrillex/skrillex-missy-elliott-mr-oizo-ratata?si=10b9f3d18e89451a96af4eaff64fead9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (252577, '0xb2acb7a9d59b09025c89a21b95eae1be9de23819', 0, 1, '2024-05-05 14:58:09+00', 0, 1, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 1982, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2826, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CHSUjJ8stDQb73n78\"}"}', NULL), - (271717, '0x33745361b9a65ab6d6c174dd8d614499d925424f', 0, 1, '2024-05-05 16:56:14+00', 0, 0, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2377, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1605, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RR3FsaK3xrtsSRMk6\"}"}', NULL), - (273411, '0x2f3ace2b171e49627abbec9324e3e36bdfc7c850', 0, 1, '2024-05-05 17:10:31+00', 0, 2, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Royal 44 - 할 것 (Rustic⚡️ Remix)[Free] by RUSTIC AND BBMIK(🇰🇷) on #SoundCloud https://on.soundcloud.com/qXfMH\"}"}', NULL), - (274467, '0xf27ae4b890c1b95ba6efea83c7155fbd89e21d1f', 0, 1, '2024-05-05 17:18:45+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2602, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EwYKZ. @sonata\"}"}', NULL), - (269814, '0x9ab5a3d83b8dd60c60302e4e288d8cd990274d9c', 10, 1, '2024-05-05 16:43:42+00', 0, 1, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 624, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 315, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/neo-lite-604126448/yoasobi-idol\"}"}', NULL), - (267426, '0x3207dabdd52c5f1afb15560b0d0bf2cfa720641f', 0, 1, '2024-05-05 16:25:20+00', 0, 1, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1350, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1539, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vanasounds/stay-justin-bieber-the-kid-laroi-vana-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (254405, '0xd08a6b47f430d4f87753c411715f75571a2ec6f1', 0, 1, '2024-05-05 15:00:44+00', 0, 6, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1744, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 875, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/young-wook-nam/ngupyfc1x5bs?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (273547, '0x7af82e2dfdafd21673d28f666887d3b7abaecc74', 0, 1, '2024-05-05 17:11:11+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Royal 44 - 할 것 (Rustic⚡️ Remix)[Free] by RUSTIC AND BBMIK(🇰🇷) on #SoundCloud https://on.soundcloud.com/qXfMH\"}"}', NULL), - (283722, '0xb0d0ef7b6ea41472320aade1297bde9af54ebb6e', 0, 1, '2024-05-05 18:30:26+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jyeon-2/mc-the-max-original?si=23b0fa42b15f456ba680c50051caea2d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (273551, '0x2700b872953e352412f5c656e473395ff7585607', 0, 1, '2024-05-05 17:10:58+00', 0, 2, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Royal 44 - 할 것 (Rustic⚡️ Remix)[Free] by RUSTIC AND BBMIK(🇰🇷) on #SoundCloud https://on.soundcloud.com/qXfMH\"}"}', NULL), - (32486, '0x623be01eca41dde00c7f8254bd5b6ed3a1a1a6e7', 9750, 1, '2024-05-04 21:44:03+00', 174, 25, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2916, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 264, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dyl/dyor\"}"}', NULL), - (261159, '0xc526fb95cb0ebedc39464b5455eff3bcc02c6b48', 0, 1, '2024-05-05 15:47:29+00', 0, 0, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 278, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 713, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/didlybom/ryuichi-sakamoto-merry-christmas-mr-lawrence?si=21eefa234d524e4285770d5d4fcc0bd0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (262139, '0x5664a191c913344823b2230974d740bea2cd6059', 0, 1, '2024-05-05 15:55:03+00', 0, 1, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1448, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1144, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/geaRZ9XoZCJtP67B8\"}"}', NULL), - (254406, '0x30dfb0fe4723bfefb31995a44d42722147d2e9c7', 0, 1, '2024-05-05 15:00:34+00', 0, 7, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/coumiitii-la-aiss-1/3d-print-tape-machines-feat-jowen-aissa-belhaddad-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160334, '0x7efa17b6540a651513ea9df1f52e6702fe124019', 0, 1, '2024-05-08 20:50:06+00', 0, 0, '{"fid": 12036, "object": "user", "pfp_url": "https://i.imgur.com/G0JZ74M.jpg", "profile": {"bio": {"text": "Artist | Digital Alchemist \n\nbeacons.ai/benalistair", "mentioned_profiles": []}}, "username": "benalistair", "power_badge": true, "display_name": "Benjamin Alistair ", "active_status": "inactive", "verifications": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "follower_count": 285, "custody_address": "0xdf99e8dfff593e38d1f32e594ee485ed615ce0fa", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0TSv6wAaTRpFzAb7w3rljV?si=1f0c434aee724791\"}"}', NULL), - (267446, '0x67b255e5f92d17a811afb1ab54a3ad49552c9888', 0, 1, '2024-05-05 16:24:32+00', 0, 0, '{"fid": 488178, "object": "user", "pfp_url": "https://arweave.net/Ivf6-9lCvCYvkviClgp_qpRmkp8BxAWy0Hjp-wcMYXQ/", "profile": {"bio": {"text": "investing in web3, onchain, /base", "mentioned_profiles": []}}, "username": "nikdmello", "power_badge": true, "display_name": "Niko 🎩", "active_status": "inactive", "verifications": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "follower_count": 241, "custody_address": "0x8062371c6cecd5d28fcd3c4c7928a348189bb55f", "following_count": 188, "verified_addresses": {"eth_addresses": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/futureisnow/sets/we-still-dont-trust-you-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (271848, '0xb0afd4324773cb25cbde6fdb0e2b61dd08eee999', 0, 1, '2024-05-05 16:57:11+00', 0, 0, '{"fid": 17879, "object": "user", "pfp_url": "https://i.imgur.com/ZEiffdm.jpg", "profile": {"bio": {"text": "Web3 Game / NFT \n\nTwitter(X): https://twitter.com/uhohoi5/ (凍結中🧊)\n新垢: https://twitter.com/tyoriso02\nDorakula: https://drakula.app/user/tyoriso", "mentioned_profiles": []}}, "username": "tyoriso", "power_badge": false, "display_name": "tyoriso👻🎩🔄🔮🍖", "active_status": "inactive", "verifications": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "follower_count": 887, "custody_address": "0x1493c7d5eeeac5ebcfe1877c3c57c6ae40385f29", "following_count": 854, "verified_addresses": {"eth_addresses": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xkM1KkVz2CW972UaA\"}"}', NULL), - (269975, '0x923bf7819d9929f4ff1c9fd7a638db4b3ff420fa', 0, 1, '2024-05-05 16:44:04+00', 0, 1, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2377, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1605, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JpHaDTi2Qm369ypK6\"}"}', NULL), - (283758, '0x4d88055fa2813efa13d0b5d774c9d097f94c61ea', 0, 1, '2024-05-05 18:31:16+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rpx4jo7yfjxk/sets/bnt8ksdjslwy?si=9963438b4ee84e3488454051be654876&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (254407, '0x8c3ac67f5fe6069ed6243e2b75f5b00045128d5d', 0, 1, '2024-05-05 15:00:33+00', 0, 2, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2478, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2344, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9S6SBH4At5aFJYU7A\"}"}', NULL), - (261960, '0xa57cd842b7f00f11bc454012706d59020691e3c3', 0, 1, '2024-05-05 15:53:17+00', 0, 0, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1448, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1144, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4jcnEEQcsBYaRzqV8\"}"}', NULL), - (267448, '0xb964b2150cba40284b4aa25f924da526ca76f485', 0, 1, '2024-05-05 16:25:28+00', 0, 1, '{"fid": 488178, "object": "user", "pfp_url": "https://arweave.net/Ivf6-9lCvCYvkviClgp_qpRmkp8BxAWy0Hjp-wcMYXQ/", "profile": {"bio": {"text": "investing in web3, onchain, /base", "mentioned_profiles": []}}, "username": "nikdmello", "power_badge": true, "display_name": "Niko 🎩", "active_status": "inactive", "verifications": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "follower_count": 241, "custody_address": "0x8062371c6cecd5d28fcd3c4c7928a348189bb55f", "following_count": 188, "verified_addresses": {"eth_addresses": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6R5qkFa5t2w49rem9\"}"}', NULL), - (269976, '0xb9424a85aeca923ae42fd13798628c1e23901e28', 0, 1, '2024-05-05 16:43:56+00', 0, 2, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hweepain/sets/kpm/s-je8cg2EpsNo?si=cabb4b7bf1e7486fb18913422d3213c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (271849, '0x278af0f9387c9353f528dac8f2b862a502711c98', 0, 1, '2024-05-05 16:57:20+00', 0, 0, '{"fid": 20283, "object": "user", "pfp_url": "https://i.imgur.com/p0INYR8.jpg", "profile": {"bio": {"text": "Do your best with your little family, everything else will eventually come! <3 <3 <3", "mentioned_profiles": []}}, "username": "safira", "power_badge": false, "display_name": "Safira", "active_status": "inactive", "verifications": ["0x07ef0d75c2a7a7ebc2ee8d449efd8542abd53a8c"], "follower_count": 1004, "custody_address": "0xf1b87851cdd465e79d3584f01ec6c943fd56dc92", "following_count": 794, "verified_addresses": {"eth_addresses": ["0x07ef0d75c2a7a7ebc2ee8d449efd8542abd53a8c"], "sol_addresses": ["GxdgpjNgJVqViUVHEeNjLuibDUVV1ccdbzozF9v2jqii"]}}', '{"{\"url\":\"https://soundcloud.com/l2share001/gone\"}"}', NULL), - (335893, '0xf38a1bef4595cd4f46b0f8c3341cc83a3453af65', 0, 1, '2024-05-05 23:18:50+00', 0, 1, '{"fid": 419915, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f869715-6ece-4b8b-23eb-4e0cb8351200/rectcrop3", "profile": {"bio": {"text": "I want to love and smile.\n\n#맞팔 #맞디젠", "mentioned_profiles": []}}, "username": "haisabu", "power_badge": false, "display_name": "Lee.dy", "active_status": "inactive", "verifications": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "follower_count": 2439, "custody_address": "0x014ed62b7fc75b742801098a46d216b9ebc59ca5", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hillsong-worship/never-walk-alone-studio-feat?si=7378d42e2083426b94782e8d21955714&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (629045, '0x30cb7ca8d878ae5406c45d91472b87b6284c1888', 0, 1, '2024-05-06 13:46:03+00', 0, 5, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1782, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 910, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Db2qmfszCLTRbpxRA\"}"}', NULL), - (262126, '0x966f1f261c97e591ca030406d8f0bc3fb0d3887b', 0, 1, '2024-05-05 15:55:05+00', 0, 0, '{"fid": 406381, "object": "user", "pfp_url": "https://i.imgur.com/bH5XsDO.jpg", "profile": {"bio": {"text": "디젠 🎩 Gazua!!! 댓글주시면 무조건 100% 갑니다용:) 소통 환영합니다♡ https://zora.co/@djlove0307 ", "mentioned_profiles": []}}, "username": "djlove0307", "power_badge": false, "display_name": "Crypto trader_brown", "active_status": "inactive", "verifications": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "follower_count": 3250, "custody_address": "0xd3a2bf2e59de9f1a6dbb8aa72059b47a4651d703", "following_count": 3366, "verified_addresses": {"eth_addresses": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/edsheeran/shape-of-you?si=0dcb2fd3de33413d827c92842f10ea31&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (253212, '0x1a8a71ba2fd630b48861e49087f05b4ad31fb4ca', 0, 1, '2024-05-05 14:58:44+00', 0, 4, '{"fid": 508082, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09e1b144-51f7-4e45-e20c-e6c0a2c33600/rectcrop3", "profile": {"bio": {"text": "팔루우 해주시면 맞팔 고고^^\n교감하며 서로 아픔을 이겨봐요♡♡♡", "mentioned_profiles": []}}, "username": "!508082", "power_badge": false, "display_name": "greenever", "active_status": "inactive", "verifications": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "follower_count": 757, "custody_address": "0xd37464128c23cb688dedb4972b43394fedfdcce8", "following_count": 844, "verified_addresses": {"eth_addresses": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/p0oanvhsbx0j/tomboy?si=ac823f79b0434ca9b347331dd49449c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (267450, '0x7c0b009b902ffabb980a254a67661c6e4c81a94e', 0, 1, '2024-05-05 16:24:33+00', 0, 0, '{"fid": 293002, "object": "user", "pfp_url": "https://i.imgur.com/G0oCCiL.jpg", "profile": {"bio": {"text": "\"웃음은 최고의 치료제다.\" - Charlie Chaplin\n그러나 금융치료도 만만치 않다 - asqpsa\nhttps://zora.co/@asqpsa\n", "mentioned_profiles": []}}, "username": "asqpsa", "power_badge": false, "display_name": "jaeseung lee", "active_status": "inactive", "verifications": ["0x334d6609bebda38b838a0aaa0aacdd2bf0c7a0d1", "0x87c57f919769ac84fd437ed984226e721aea8493"], "follower_count": 977, "custody_address": "0x1eacefed15436a097cdc94a2a0c375557af947d3", "following_count": 1511, "verified_addresses": {"eth_addresses": ["0x334d6609bebda38b838a0aaa0aacdd2bf0c7a0d1", "0x87c57f919769ac84fd437ed984226e721aea8493"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-55808555/dinosaur-akmu?si=533b42533e1c457fa7f99472cc5ca0c0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (269978, '0x3a2c218058cbe7e7c75de36ef2e7e711dd2092c2', 0, 1, '2024-05-05 16:43:57+00', 0, 2, '{"fid": 195221, "object": "user", "pfp_url": "https://i.imgur.com/8jEbfsG.jpg", "profile": {"bio": {"text": "When moon, when lambo, wen ser?", "mentioned_profiles": []}}, "username": "wenser", "power_badge": false, "display_name": "WenSer?", "active_status": "inactive", "verifications": ["0xc21a5ee89d306353e065a6dd5779470de395dbac"], "follower_count": 991, "custody_address": "0x639cf8804348189aaf63057e578a920398ea6072", "following_count": 797, "verified_addresses": {"eth_addresses": ["0xc21a5ee89d306353e065a6dd5779470de395dbac"], "sol_addresses": ["A1ypBprxkEEj94BTkm6LgsQ1eHpYhiYnaDUc8W5iT7Kv"]}}', '{"{\"url\":\"https://soundcloud.com/themarias/ruthless-1\"}"}', NULL), - (271851, '0xac7ade20460d2f5f59543476afd8d89518a95688', 0, 1, '2024-05-05 16:57:00+00', 0, 0, '{"fid": 20362, "object": "user", "pfp_url": "https://i.imgur.com/9VjAzY3.jpg", "profile": {"bio": {"text": "In Blockchain We Trust. \nAirdrop & Retroactive Channel: https://t.me/allincrypto_channel", "mentioned_profiles": []}}, "username": "allincrypto", "power_badge": false, "display_name": "All In Crypto 🌿 A.I.C.", "active_status": "inactive", "verifications": ["0x59e7afd1c4246f28bdf2323016098b9be03d032b"], "follower_count": 1049, "custody_address": "0xfa31898adcd18ecb93bc2697eeaf793e3f42caaf", "following_count": 2284, "verified_addresses": {"eth_addresses": ["0x59e7afd1c4246f28bdf2323016098b9be03d032b"], "sol_addresses": ["C1DHxXiu9ZKBxi6DJF9QXYmJZwxWz2NXY64bzn3YcCeH"]}}', '{"{\"url\":\"https://soundcloud.com/wellsbook/kodaline-all-i-want-acoustic\"}"}', NULL), - (271850, '0x5c8cbf4fe1c649427a520120345771e868406b3f', 0, 1, '2024-05-05 16:56:34+00', 0, 0, '{"fid": 17879, "object": "user", "pfp_url": "https://i.imgur.com/ZEiffdm.jpg", "profile": {"bio": {"text": "Web3 Game / NFT \n\nTwitter(X): https://twitter.com/uhohoi5/ (凍結中🧊)\n新垢: https://twitter.com/tyoriso02\nDorakula: https://drakula.app/user/tyoriso", "mentioned_profiles": []}}, "username": "tyoriso", "power_badge": false, "display_name": "tyoriso👻🎩🔄🔮🍖", "active_status": "inactive", "verifications": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "follower_count": 887, "custody_address": "0x1493c7d5eeeac5ebcfe1877c3c57c6ae40385f29", "following_count": 854, "verified_addresses": {"eth_addresses": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xkM1KkVz2CW972UaA\"}"}', NULL), - (272914, '0x587793330dd462948a0cb67398786cc0bcea6d20', 0, 1, '2024-05-05 17:03:21+00', 0, 0, '{"fid": 5516, "object": "user", "pfp_url": "https://i.imgur.com/g7qWYhr.png", "profile": {"bio": {"text": "Casting thoughts about decentralization and magic", "mentioned_profiles": []}}, "username": "sky", "power_badge": true, "display_name": "Sky @ Farcon", "active_status": "inactive", "verifications": ["0xb68a6a83cfca2e7fde2aa5749b85e753f55d58cd"], "follower_count": 296, "custody_address": "0x49f5627d6ac0f3ce1444debd8c94f2d5cd876494", "following_count": 290, "verified_addresses": {"eth_addresses": ["0xb68a6a83cfca2e7fde2aa5749b85e753f55d58cd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NFfJuwh91wE5s37B6\"}"}', NULL), - (253213, '0xfdbe4d0340ada3f855e6906bffe638e4740a0853', 0, 1, '2024-05-05 14:58:46+00', 0, 0, '{"fid": 14563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40a9a384-770a-4ac2-3890-822275958a00/rectcrop3", "profile": {"bio": {"text": "A prompt introduction:\n\nA BACKDROP OF A DIAPHANOUS CLEAR SKY BLUE, YELLOW AND SCINTILLA OF CARNELIAN FADED BLACK 5AM DAWN SUNRISE AGAINST THE DARK SEA \n ", "mentioned_profiles": []}}, "username": "project5am", "power_badge": false, "display_name": "Project 5am ", "active_status": "inactive", "verifications": ["0xf7c4fe80da81377487b702bc13d1f876c14966e7", "0xcf2ef8e79769e9106ccb24b6d01acc7603132d40"], "follower_count": 105, "custody_address": "0x2f64324ba80fcff1a175b92fcdf7652908273d1d", "following_count": 81, "verified_addresses": {"eth_addresses": ["0xf7c4fe80da81377487b702bc13d1f876c14966e7", "0xcf2ef8e79769e9106ccb24b6d01acc7603132d40"], "sol_addresses": ["EAqGmGCnS9VnYL8xGbaF9rf7SBXhQg5ck22oeGduuwyr"]}}', '{"{\"url\":\"https://on.soundcloud.com/yNDWtVwNkD4eECip7\"}"}', NULL), - (270380, '0x9b102942a0d63ce69fcdfa2fbeb1d1194814ea3a', 0, 1, '2024-05-05 16:46:38+00', 0, 0, '{"fid": 396687, "object": "user", "pfp_url": "https://i.imgur.com/IYIoK9X.jpg", "profile": {"bio": {"text": "✨Visual Artistisn’t 💖\nFounder of MUTA (alternative cultural centre for kids, youth & adults)\n", "mentioned_profiles": []}}, "username": "tatytorre", "power_badge": false, "display_name": "Taty Torre ", "active_status": "inactive", "verifications": ["0x3a09a30fb3b4b44817976e503a9a89ee4eebeafd"], "follower_count": 200, "custody_address": "0x78c7ca27efbc2688fdc0ae71b1427c5e28242f7f", "following_count": 367, "verified_addresses": {"eth_addresses": ["0x3a09a30fb3b4b44817976e503a9a89ee4eebeafd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/34rRFl0bz9PocxWuO2ca5J?si=fsghknL6TJC4f4M_RipjSA\"}"}', NULL), - (284411, '0x192b71db21372806415c2a6870ce4c4d834cb945', 0, 1, '2024-05-05 18:47:08+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-261737983/i-wont-love?si=626f6f22dbf245df9314d262f62eb0e5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (271856, '0x342dff63e0ece0e7c52db8a2eca9e06f3c592694', 0, 1, '2024-05-05 16:56:26+00', 0, 2, '{"fid": 417936, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a22d3f19-15c6-43af-d8d0-ae3ba053fd00/rectcrop3", "profile": {"bio": {"text": "[🤗] Nice to meet you all! Always be healthy and happy!🙆‍♀️ ", "mentioned_profiles": []}}, "username": "busanlyk", "power_badge": false, "display_name": "kyoung♥ ", "active_status": "inactive", "verifications": ["0x85f489adf3ce25ad81824856e5712791944fe0ac"], "follower_count": 2437, "custody_address": "0x7f7082a23fe17accc2f73e8ace5b78e45ddf477b", "following_count": 1419, "verified_addresses": {"eth_addresses": ["0x85f489adf3ce25ad81824856e5712791944fe0ac"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eDMTZBMwU4siAozM8\"}"}', NULL), - (254959, '0x35b7b7223c407fd8191fa6e029ff2fbe8db23e19', 0, 1, '2024-05-05 15:01:53+00', 0, 4, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1744, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 875, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove3/ygcztp7eq0sx?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283756, '0xe13d0b86feb09d971f2b45d90d5546e9330183bd', 0, 1, '2024-05-05 18:30:54+00', 0, 0, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1406, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/kj9Pxd346cP6CvCt9\"}"}', NULL), - (423701, '0x18e9ee9b10845afd28a1799cd71e7e525e08848e', 0, 1, '2024-05-06 06:02:17+00', 0, 1, '{"fid": 389058, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiadgqpq5wwfelyjrw4ga3pugpycjiegikoigpv7np4qx7rnge3oke", "profile": {"bio": {"text": "IT technician\nEnglish teacher\nkickboxer\nfootball fan\ncrypto fan", "mentioned_profiles": []}}, "username": "mowhitewolf", "power_badge": false, "display_name": "Mohamad Sedigh🎩👑", "active_status": "inactive", "verifications": ["0x606287e4fbf1d4fda67a3a0a6f822ee331c2fd75"], "follower_count": 674, "custody_address": "0xf874b30c7f85e7d4091d9f26ccb3613440799f51", "following_count": 380, "verified_addresses": {"eth_addresses": ["0x606287e4fbf1d4fda67a3a0a6f822ee331c2fd75"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kYrqQfRxjc5Yu1kV7\"}"}', NULL), - (1173057, '0xd278b493210f4f76ac511710037f052533e21ec0', 2000, 1, '2024-05-14 23:38:07+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30732, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6WTFHKrnZpwEBLRS10Ylqs?si=553ade5d9306437d\"}"}', NULL), - (254958, '0x47e52e9444bdc4c361341619d67806b507537fa2', 0, 1, '2024-05-05 15:01:54+00', 0, 7, '{"fid": 192631, "object": "user", "pfp_url": "https://arweave.net/ecbDmMZsi8L1cy_V9DP9-Gdhd-WDATr3pELoHUKd4GQ/", "profile": {"bio": {"text": "GM:)\nCrypoto Wanderer", "mentioned_profiles": []}}, "username": "nanamika", "power_badge": false, "display_name": "↑nanamika↑", "active_status": "inactive", "verifications": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "follower_count": 1015, "custody_address": "0xce9779bb8be935083bf80ef70ffedeb2b095e4c6", "following_count": 1352, "verified_addresses": {"eth_addresses": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "sol_addresses": ["EeMPV4WxJm3Pd2Cy3JZaTX6EtkLBJK4XiEeMkaH6tBQA"]}}', '{"{\"url\":\"https://open.spotify.com/track/6dOuGvcJs9hzjhqPsZzIOl?si=JR1ntvlWRLm_RCJ0n2Rv6w\"}"}', NULL), - (283757, '0x14b165f767c99579fdf060f74a657066336c3587', 0, 1, '2024-05-05 18:30:44+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-657581291/vllo-2-m4a?si=aee310d7d0d744e69de4bf5bf20a9c01&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (270161, '0x7f40b32fe383371f8f969e67a98bbc43f2b9557e', 0, 1, '2024-05-05 16:45:29+00', 0, 0, '{"fid": 506652, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0dac9999-5848-489a-63bb-823c91b27f00/rectcrop3", "profile": {"bio": {"text": "Be happy always :)", "mentioned_profiles": []}}, "username": "!506652", "power_badge": false, "display_name": "HAPPY_CSY", "active_status": "inactive", "verifications": ["0x6c74c90a7bc3052ee9fc67b0b9bb1f2fb9a9d2f8"], "follower_count": 153, "custody_address": "0xabce61780eebfd89d6e350fe17e5d0e0888abc52", "following_count": 217, "verified_addresses": {"eth_addresses": ["0x6c74c90a7bc3052ee9fc67b0b9bb1f2fb9a9d2f8"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 로이킴 - 잘 지내자, 우리 by wonderfulday on #SoundCloud https://on.soundcloud.com/xsL71\"}"}', NULL), - (267797, '0x9cf986efca928b00532a93471b1353d5986a3e4a', 0, 1, '2024-05-05 16:26:56+00', 0, 1, '{"fid": 506652, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0dac9999-5848-489a-63bb-823c91b27f00/rectcrop3", "profile": {"bio": {"text": "Be happy always :)", "mentioned_profiles": []}}, "username": "!506652", "power_badge": false, "display_name": "HAPPY_CSY", "active_status": "inactive", "verifications": ["0x6c74c90a7bc3052ee9fc67b0b9bb1f2fb9a9d2f8"], "follower_count": 153, "custody_address": "0xabce61780eebfd89d6e350fe17e5d0e0888abc52", "following_count": 217, "verified_addresses": {"eth_addresses": ["0x6c74c90a7bc3052ee9fc67b0b9bb1f2fb9a9d2f8"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 로이킴 - 잘 지내자, 우리 (여름날 우리 X 로이킴) by 맥주 사랑8 on #SoundCloud https://on.soundcloud.com/j2HCh\"}"}', NULL), - (1173042, '0xb7b645549421d341eb919c87440a7df5f7cb55c9', 2500, 1, '2024-05-14 23:09:20+00', 0, 0, '{"fid": 196378, "object": "user", "pfp_url": "https://i.imgur.com/5kOLqhw.jpg", "profile": {"bio": {"text": "VP of Music - @cooprecs | Label Manager - Odyzey Music", "mentioned_profiles": []}}, "username": "jakeonchain.eth", "power_badge": true, "display_name": "Jakeonchain", "active_status": "inactive", "verifications": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "follower_count": 492, "custody_address": "0xdc6bc6aab5fad36088b8ed68ab248753cdf905bd", "following_count": 170, "verified_addresses": {"eth_addresses": ["0x9143aa81feddda4e7528863ae062908c3add016b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3sn7UM54xyAUjfR9rNxZwp?si=c20b51a89f114a6d\"}"}', NULL), - (274042, '0x4efa205d3b49eb5af6180a81533f42e1061a5c02', 0, 1, '2024-05-05 17:16:27+00', 0, 1, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1749, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 883, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EZ6Je2RSX9S8xHjm9\"}"}', NULL), - (271969, '0x53b6bebe4c9ac1760b53d74198727a024607e848', 0, 1, '2024-05-05 16:57:39+00', 0, 0, '{"fid": 195224, "object": "user", "pfp_url": "https://i.imgur.com/qFXB1kT.jpg", "profile": {"bio": {"text": "Thỏ Bảy Màu Entertainment.", "mentioned_profiles": []}}, "username": "thobaymau", "power_badge": false, "display_name": "Thỏ Bảy Màu", "active_status": "inactive", "verifications": ["0x1b17fdcb7293f2268eb29850a1221ea4eca6fcbf"], "follower_count": 594, "custody_address": "0xcb24bf758068c9b66ec31057718053bf77246af9", "following_count": 595, "verified_addresses": {"eth_addresses": ["0x1b17fdcb7293f2268eb29850a1221ea4eca6fcbf"], "sol_addresses": ["8yRVecJHczrf93rixkaKtYYKswR9w1zNAP1v1p33KxKc"]}}', '{"{\"url\":\"https://soundcloud.com/cloudynguyen/cham\"}"}', NULL), - (276840, '0x97e9e87e88e136bad7fe642fb6fe19c307fcf54a', 0, 1, '2024-05-05 17:47:06+00', 0, 0, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 24, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 117, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rKpcFiSLc8gJz6d4A\"}"}', NULL), - (253214, '0xf3e112067c834367cad6ae5df6ecd66033ccda82', 0, 1, '2024-05-05 14:58:37+00', 0, 5, '{"fid": 499881, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e49f02d2-a431-4686-8a7d-c892deb0a400/rectcrop3", "profile": {"bio": {"text": "crypto, design, cat, anime, jelly", "mentioned_profiles": []}}, "username": "ha-ri-bo", "power_badge": false, "display_name": "Haribo🍭", "active_status": "inactive", "verifications": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "follower_count": 775, "custody_address": "0xa276999a2aa7d23d74589378094f7ac37ae3f0e1", "following_count": 1522, "verified_addresses": {"eth_addresses": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/f231ww1xky4j/lady-kenshi-yonezu-cover-by-lilpa?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268083, '0x4937ab0baf466f2363dfb60460037623d3ce1241', 0, 1, '2024-05-05 16:28:22+00', 0, 2, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2649, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2736, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9Z3MHyv4XBukKUVn6\"}"}', NULL), - (261260, '0x001a99aa741f61914f4f1c970824fb447fe0d87a', 0, 1, '2024-05-05 15:48:38+00', 0, 2, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 669, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1149, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/park-jihoon-ruby-lee/bts-yet-to-come?si=2219da72f3b34d77bd39d8fb81e369fb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (267101, '0x351db8084567c99f7365e7c73dffa3cc702ecbdc', 0, 1, '2024-05-05 16:21:59+00', 0, 1, '{"fid": 293002, "object": "user", "pfp_url": "https://i.imgur.com/G0oCCiL.jpg", "profile": {"bio": {"text": "\"웃음은 최고의 치료제다.\" - Charlie Chaplin\n그러나 금융치료도 만만치 않다 - asqpsa\nhttps://zora.co/@asqpsa\n", "mentioned_profiles": []}}, "username": "asqpsa", "power_badge": false, "display_name": "jaeseung lee", "active_status": "inactive", "verifications": ["0x334d6609bebda38b838a0aaa0aacdd2bf0c7a0d1", "0x87c57f919769ac84fd437ed984226e721aea8493"], "follower_count": 977, "custody_address": "0x1eacefed15436a097cdc94a2a0c375557af947d3", "following_count": 1511, "verified_addresses": {"eth_addresses": ["0x334d6609bebda38b838a0aaa0aacdd2bf0c7a0d1", "0x87c57f919769ac84fd437ed984226e721aea8493"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-653400436/all-about-that-bass-meghan-trainor-vs-wiley-c-in-the-h-xtra-bass-mashup?si=723052e11f0742ebbb7a8421f42b386c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (271082, '0x296cbdd1a0d82dfd5a6acdeb62fbf0e9312e1a05', 10, 1, '2024-05-05 16:50:40+00', 0, 3, '{"fid": 201043, "object": "user", "pfp_url": "https://i.imgur.com/UyDS3lo.jpg", "profile": {"bio": {"text": "Artist | Listen to ‘Libre’ 🪽🎶 https://open.spotify.com/track/7gSBx3QBKkIK2X5XMQAzTJ?si=myiR_yvNR3mT3uUSxfLsZA&context=spotif", "mentioned_profiles": []}}, "username": "iamlosi", "power_badge": true, "display_name": "Losi🎩🎤", "active_status": "inactive", "verifications": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "follower_count": 346, "custody_address": "0x9d6e47eaa5f4b44b83827fc97e7a8e157b3f2386", "following_count": 192, "verified_addresses": {"eth_addresses": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/losi/libre?referral_source=link\"}"}', NULL), - (272515, '0xa25f5350cde2ee4d8ad2bba3e449ed1795240fce', 0, 1, '2024-05-05 16:59:48+00', 0, 0, '{"fid": 5516, "object": "user", "pfp_url": "https://i.imgur.com/g7qWYhr.png", "profile": {"bio": {"text": "Casting thoughts about decentralization and magic", "mentioned_profiles": []}}, "username": "sky", "power_badge": true, "display_name": "Sky @ Farcon", "active_status": "inactive", "verifications": ["0xb68a6a83cfca2e7fde2aa5749b85e753f55d58cd"], "follower_count": 296, "custody_address": "0x49f5627d6ac0f3ce1444debd8c94f2d5cd876494", "following_count": 290, "verified_addresses": {"eth_addresses": ["0xb68a6a83cfca2e7fde2aa5749b85e753f55d58cd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LBmK9xHFxJZEYJpq6\"}"}', NULL), - (421479, '0x3576ab089cb91d26b3ca05e00a3503fc37ffe9a9', 0, 1, '2024-05-06 05:58:10+00', 0, 11, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3933, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2224, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mCouNeFE2tpwsNpeA\"}"}', 'sonata'), - (255992, '0x023a8a0264eb3c9f85abd4497f6fd6bd7ada38da', 0, 1, '2024-05-05 15:06:58+00', 0, 0, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1232, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1245, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/coumiitii-la-aiss-1/3d-print-tape-machines-feat-jowen-aissa-belhaddad-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (254952, '0x75115e8258d2f8aa6e7136ec3d498743ae972dac', 0, 1, '2024-05-05 15:01:37+00', 0, 2, '{"fid": 386033, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc22dd9a-a03a-44fd-6684-a283b4933500/original", "profile": {"bio": {"text": "HAM HAM🍖 / Frame developer\nFrom DEG server", "mentioned_profiles": []}}, "username": "chiffon-m", "power_badge": false, "display_name": "sifonM🎩🍖🔵🟢", "active_status": "inactive", "verifications": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "follower_count": 641, "custody_address": "0xecf66086803983f13e85754591fedc58891fd70c", "following_count": 657, "verified_addresses": {"eth_addresses": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4hmANbtjOh6rvClB4eQegF?si=JvSgZCzfQEeycfHKYvR85g\"}"}', NULL), - (262787, '0x6ba1a9f7b2875ea0ede9e8ccfaee872c587ea475', 0, 1, '2024-05-05 15:58:30+00', 0, 3, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 282, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 721, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/angela20111234/sets/9mzmiduxztz2?si=ed5a032336b445b4b50e7282e9af1c0c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (255995, '0xe10f9edab459121e327c10544fefcf426e1b1987', 0, 1, '2024-05-05 15:07:28+00', 0, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/629745e0-bd0d-48f3-750c-638fa7effc00/original", "profile": {"bio": {"text": "breadwinnaaaaa | /degen-punks | I host /banter", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩⛓️‍💥", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 237, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 81, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://on.soundcloud.com/oiLSHB4aS6iF4Xbg8\"}"}', NULL), - (255429, '0x2067afec7492e4a6be890ac4c0fc58a6eab593a6', 0, 1, '2024-05-05 15:04:54+00', 0, 1, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 128, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 372, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sZyVE7fAyRfTzmgu9\"}"}', NULL), - (255208, '0xe1ac7a8ec68aae04bc94494aa7d4869c4ac5c268', 0, 1, '2024-05-05 15:04:36+00', 0, 0, '{"fid": 500414, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e154aa8c-1e34-4a7c-9048-c34ccbb3a300/rectcrop3", "profile": {"bio": {"text": "🌟 일상의 작은 이야기부터 깊은 대화에 이르기까지, 가볍고 편안하게 소통하는 것을 즐깁니다. 🎈함께 이야기를 나누며 즐거운 시간을 보내요. 😊 https://zora.co/@ke_y", "mentioned_profiles": []}}, "username": "beom", "power_badge": false, "display_name": "Key", "active_status": "inactive", "verifications": ["0xa3a13043206f573ea0aad7cec75b111e000e9d1c"], "follower_count": 624, "custody_address": "0x81e21e7c12df858d2fc877fb43e120a6892ce22a", "following_count": 607, "verified_addresses": {"eth_addresses": ["0xa3a13043206f573ea0aad7cec75b111e000e9d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u5NqBmPo2F5yT6RL8\"}"}', NULL), - (262582, '0xd1eed2aad6458935516676f95dcc1997cfac12d7', 0, 1, '2024-05-05 15:57:04+00', 0, 1, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 281, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 721, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yan-faye-318075207/so-soo-bin-iii-be-your-star?si=2997aa7ad05546f298d28e185e6fcf81&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (262891, '0x43a66942cf94d0555abb1bf9a1722bf287279e1d', 0, 1, '2024-05-05 16:00:00+00', 0, 0, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 622, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 314, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chaoticxz/yoasobi-yuusha\"}"}', NULL), - (267809, '0xa38f0713aac5affe7fc558ca2d0b8140849cbb86', 0, 1, '2024-05-05 16:26:39+00', 0, 4, '{"fid": 406381, "object": "user", "pfp_url": "https://i.imgur.com/bH5XsDO.jpg", "profile": {"bio": {"text": "디젠 🎩 Gazua!!! 댓글주시면 무조건 100% 갑니다용:) 소통 환영합니다♡ https://zora.co/@djlove0307 ", "mentioned_profiles": []}}, "username": "djlove0307", "power_badge": false, "display_name": "Crypto trader_brown", "active_status": "inactive", "verifications": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "follower_count": 3257, "custody_address": "0xd3a2bf2e59de9f1a6dbb8aa72059b47a4651d703", "following_count": 3369, "verified_addresses": {"eth_addresses": ["0xb4bb3e9ef680eceb61fd811fb2d974e56709657a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/edsheeran/shape-of-you?in=crypto-trader_brown/sets/my-favoriate-song&si=f375d217186446bda4804867893d94ed&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (256127, '0x95193f49060f8a3d4817b77b09b39a0c7a1f8099', 0, 1, '2024-05-05 15:08:28+00', 0, 0, '{"fid": 500371, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7acbb460-b029-47f7-a44d-549b4b8eeb00/rectcrop3", "profile": {"bio": {"text": "Warpcast is good🌸\nLet''s go together🩵\n슈캐 신입 인사드려용", "mentioned_profiles": []}}, "username": "10poon", "power_badge": false, "display_name": "🌈 10poon🎩", "active_status": "inactive", "verifications": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "follower_count": 1736, "custody_address": "0xc4594cf253dcfd3d97b1d03b4045278b7b64bfa7", "following_count": 2785, "verified_addresses": {"eth_addresses": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/awfulpianosound/yiruma-river-flows-in-you?si=ef5eb54c383a4431b4c2987b802e3193&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (274702, '0xda68b427db53d0ddcba542dd0e64cbf56662d62c', 0, 1, '2024-05-05 17:27:05+00', 0, 1, '{"fid": 461302, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f20ea39c-42ac-43eb-912b-dc4e90c64e00/rectcrop3", "profile": {"bio": {"text": "Hello~", "mentioned_profiles": []}}, "username": "dd8", "power_badge": false, "display_name": "dd8", "active_status": "inactive", "verifications": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "follower_count": 2631, "custody_address": "0xaea1e717380b4d1722164a4cba18c50e059479c4", "following_count": 2005, "verified_addresses": {"eth_addresses": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3rAgzy731xsRXVYu8\"}"}', NULL), - (270379, '0x5f462e953025fffeb4c13c1a235e5fd95c1ff992', 0, 1, '2024-05-05 16:46:49+00', 0, 2, '{"fid": 393047, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d466d08e-47ce-4a92-cb7c-04a1e2cfa600/original", "profile": {"bio": {"text": "Otter is my fren 🦦💜 | Crypto 💰 | Funny art 🎨 | Pro-warpcaster ♾️ | Loving people who have a sense of humor 👑 ", "mentioned_profiles": []}}, "username": "seaotter-queen", "power_badge": false, "display_name": "Sea otter🦦💜 ", "active_status": "inactive", "verifications": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "follower_count": 3083, "custody_address": "0xd338d15b6526fce37a0ce3a1a046200ea3bd9e7a", "following_count": 1296, "verified_addresses": {"eth_addresses": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "sol_addresses": ["8eqT4DEY5foT9DMNhCFqGPYi7MnWo893XQFNxJnsyYPx"]}}', '{"{\"url\":\"https://soundcloud.com/tom-kruszona/sets/peggy-gu?si=00915f7edd194e55ae112e4786c83479&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283847, '0xbbbf7b47e53b4f7bee958ea5f2873c46d366c0dc', 0, 1, '2024-05-05 18:33:08+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chocoskin/if-you-love-me-ns?si=33703cd69d2040d1b3162b8fcf112515&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283827, '0x465b60f3703e1e674c397f98238c6e7eee163a0a', 0, 1, '2024-05-05 18:32:47+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tichan106/on-it-bo?si=13a8685237bc423293f6ea0ca139e26f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (356623, '0x86f38490db6cf1ad3a3270064d2300ed638defd7', 0, 1, '2024-05-06 01:47:53+00', 0, 0, '{"fid": 508363, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4053fde1-b0b4-46ae-160c-f504739b0000/original", "profile": {"bio": {"text": "\nI love to take reaction, recast and follow 🥰🥰", "mentioned_profiles": []}}, "username": "!508363", "power_badge": false, "display_name": "Bluemountain", "active_status": "inactive", "verifications": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "follower_count": 253, "custody_address": "0x8977ff600c1cb56333c1a376e876fc76d2177739", "following_count": 536, "verified_addresses": {"eth_addresses": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/00-00-766169038/big-bang-haru-haru?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (270445, '0x9ed278989252781f6533179db157ff2111f1244c', 0, 1, '2024-05-05 16:47:35+00', 0, 1, '{"fid": 254339, "object": "user", "pfp_url": "https://i.imgur.com/PRerC7u.jpg", "profile": {"bio": {"text": "お削りと麻雀が好きなアカウントです❗️\n初心者ですが宜しくお願いします🙏\nXもやってます‼️\nhttps://x.com/shun__xyz", "mentioned_profiles": []}}, "username": "shunchan", "power_badge": false, "display_name": "Shunchan🎩🥏🍖🔵", "active_status": "inactive", "verifications": ["0xa85bd2bff15565b9653fdba9aedf355d5352da13"], "follower_count": 609, "custody_address": "0xbd448d0dfab7e79cb9f7c109aa3d5f4c182b949d", "following_count": 410, "verified_addresses": {"eth_addresses": ["0xa85bd2bff15565b9653fdba9aedf355d5352da13"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K4X8S2uitrxvGd8d9\"}"}', NULL), - (262893, '0x634b3e0d146de87585358838eef2597ba06985a3', 0, 1, '2024-05-05 15:59:20+00', 0, 0, '{"fid": 265597, "object": "user", "pfp_url": "https://i.imgur.com/4oW3yZ9.gif", "profile": {"bio": {"text": "Japanese🇯🇵 \nlike ▶︎ BCG、エアドロ、お酒🍶、犬🐶\n沢山いいね、リキャストしていきます👍\n", "mentioned_profiles": []}}, "username": "ginsan", "power_badge": false, "display_name": "ginsan.degen🎩🔮", "active_status": "inactive", "verifications": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "follower_count": 1123, "custody_address": "0xe4c97bd2e6864247d76555c72e624c6113343c9b", "following_count": 532, "verified_addresses": {"eth_addresses": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "sol_addresses": ["5vmkrAHfaLYDP4kdt7HUph6rPLk6Z1xhj8sPPLNy9w7e"]}}', '{"{\"url\":\"https://on.soundcloud.com/yNdBnuAaZDS2UnPK6\"}"}', NULL), - (256126, '0x41cc310ff92891cb15137f7f3f6755e6be60bfee', 0, 1, '2024-05-05 15:08:20+00', 0, 1, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1568, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1288, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AifDL7N8q3kw8GsPA\"}"}', NULL), - (256230, '0x575f8acbf8bfbb2114f677c0f626aece9d52f803', 0, 1, '2024-05-05 15:09:49+00', 0, 1, '{"fid": 404215, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1cfc9af5-8575-451b-d271-361f49fd7e00/rectcrop3", "profile": {"bio": {"text": "Koreans Love Warpcast", "mentioned_profiles": []}}, "username": "kingco88", "power_badge": false, "display_name": "kimgo88", "active_status": "inactive", "verifications": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "follower_count": 2704, "custody_address": "0xe7dc0bb80e93b20b24e057257dd8004942001d22", "following_count": 2190, "verified_addresses": {"eth_addresses": ["0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fm_freemusic/exciting-morning-easy-listening-background-music-free-download\"}"}', NULL), - (271972, '0x26dff0fbd6b0bdb347bb7b02d19cd583a49973be', 130, 1, '2024-05-05 16:57:34+00', 0, 2, '{"fid": 381093, "object": "user", "pfp_url": "https://i.imgur.com/LQq52dG.gif", "profile": {"bio": {"text": "Creating art brings joy, ☀️ anfitrión de /art-es \n💎 supporting /undrgrnd - NFT, AI, art, music - haikus", "mentioned_profiles": []}}, "username": "heyake", "power_badge": true, "display_name": "Ake", "active_status": "inactive", "verifications": ["0x59ed4b96db0cf824b10e31eb477e174c08c6bdd5", "0xefd6bb8adbf45f3b55c1799e0f83c0d19f620165"], "follower_count": 266, "custody_address": "0x8551cf40248488c2b1466107458def5f57127c23", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x59ed4b96db0cf824b10e31eb477e174c08c6bdd5", "0xefd6bb8adbf45f3b55c1799e0f83c0d19f620165"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1103musik/sets/berlin-underground-deep-house-tech-house-techno-minimal\"}"}', NULL), - (256477, '0x264a3460c4b1d2af45a2ec9add7b3d9e8f0b69e7', 0, 1, '2024-05-05 15:11:14+00', 0, 5, '{"fid": 447691, "object": "user", "pfp_url": "https://i.imgur.com/HuigBmC.jpg", "profile": {"bio": {"text": "💕 ❤️ 🌸 F4F | 빛반사 | 맞팔 💕 ❤️ 🌸\n\n30분내 바로 반사때려버리는 여시코깽이 같은련,, (관심있는건 아님)", "mentioned_profiles": []}}, "username": "bloodtrail", "power_badge": false, "display_name": "Bloodtrail🎩 ", "active_status": "inactive", "verifications": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "follower_count": 2848, "custody_address": "0x684564b6ab9ec5f77fb1c755c22812b0b7569e9c", "following_count": 3023, "verified_addresses": {"eth_addresses": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p417iTtCMRJgrsCM9\"}"}', NULL), - (272913, '0xf69d3caf75d193782604033312c80836d5fb7e17', 0, 1, '2024-05-05 17:03:36+00', 0, 1, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2377, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1605, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RW1eLwtT2Qt77VK16\"}"}', NULL), - (272784, '0x11c9c615d62dcd3cac8cc0399adf5329e49ecd6f', 0, 1, '2024-05-05 17:03:03+00', 0, 3, '{"fid": 381369, "object": "user", "pfp_url": "https://i.imgur.com/HTsXsT4.jpg", "profile": {"bio": {"text": "Foodie !\nBASE LOVER !\nCrazy for Mechanical Engineering and NFT\nMINT NFT https://zora.co/@siks", "mentioned_profiles": []}}, "username": "siks", "power_badge": false, "display_name": "Nick", "active_status": "inactive", "verifications": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "follower_count": 2765, "custody_address": "0x5d501482f5320c139ccbc94ad43b10238508e2b2", "following_count": 2853, "verified_addresses": {"eth_addresses": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alanwalker/faded-slushii-remix-1\"}"}', NULL), - (268119, '0xd2a698ee1b25a046b4c08e2decc153bdafa85f1e', 0, 1, '2024-05-05 16:29:19+00', 0, 2, '{"fid": 426622, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSVPrv6F9zX1KSuuefPBw9eVajjHe6RELzf93RbCTbVe9?filename=photo_2024-04-23_12-19-11.jpg", "profile": {"bio": {"text": "워캐스트 / 슈퍼캐스트 화이팅 / 우리 모두 좋은 결과 얻어갔으면 좋겠어요 : )", "mentioned_profiles": []}}, "username": "daenamu", "power_badge": false, "display_name": "유호 🔥/🫂", "active_status": "inactive", "verifications": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "follower_count": 2024, "custody_address": "0x58db626491d5343348259ee3d9b65fc00b3879f7", "following_count": 2183, "verified_addresses": {"eth_addresses": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/charlieputh/attention-acoustic-official-audio?si=d55878b638cc4d589e4dee6bc2cf95a5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268082, '0x2ea4f186a3420a4f0d653c0ef87534c115b88f50', 0, 1, '2024-05-05 16:28:27+00', 0, 1, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 631, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"http://soundcloud.com\"}","{\"url\":\"http://sound.xyz\"}"}', NULL), - (263156, '0x26a4fe4dd00a79431ad398d09a99eca73b572d17', 0, 1, '2024-05-05 16:01:26+00', 0, 3, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1848, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2206, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EuqwXX8VkavWHgzKA\"}"}', NULL), - (1173114, '0x17e0e55e656f2ec715f5c7e91168440beda171f6', 3000, 1, '2024-05-15 02:20:00+00', 10, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3750, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 493, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2742b59e-814f-4d8f-af67-8afe8052e800/original\"}","{\"url\":\"https://open.spotify.com/track/7mLJwAZidHg2NCZekzBb5k?si=paxSV456T8KoD3vDlOLf_Q\"}"}', 'anime-manga'), - (270422, '0xaff297eef71138d1fd21a1ff4781fe7bc1076251', 0, 1, '2024-05-05 16:47:23+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1364, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1876, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aFEg6U2Q7aVx5fue7\"}"}', NULL), - (283829, '0x1f2f79d569d3845a96bbe10511bcc2b6d393450e', 0, 1, '2024-05-05 18:31:52+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-956215782/sets/0oisrcrdejw4?si=884da4a1de114f54962225cbe69a3c8c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (357070, '0xc46b2c016e0bfee277fe9256c725157f6b67e174', 0, 1, '2024-05-06 01:52:22+00', 0, 2, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3110, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2627, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2FpSR\"}"}', 'sonata'), - (256233, '0x3da927d2633d581369b20cb4f1b20fa87313b454', 0, 1, '2024-05-05 15:08:55+00', 0, 2, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1094, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 584, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DvBVuz4ViGygeDTp7\"}"}', NULL), - (283754, '0xbf7384ed58da9d1db780786053bbf17f9fd2e5a2', 0, 1, '2024-05-05 18:31:27+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bjvosam/5peneskavui7?si=fcbe109fe0754318aba60d9216821954&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (263157, '0x5dc6244fe2400f96e5f84b7a0d39598769877e7e', 0, 1, '2024-05-05 16:01:20+00', 0, 0, '{"fid": 413717, "object": "user", "pfp_url": "https://i.imgur.com/VOOiRWF.jpg", "profile": {"bio": {"text": "Hi, nice to meet you.💞\nfood photography/South Korea 🇰🇷 \nFollow/f4f/follow4follow\n먹캐스터, 음식, 일상, 여행, Degen, base\n\n맞팔은 댓글달아주시면 늦어도갑니다🫂\n", "mentioned_profiles": []}}, "username": "ggomde", "power_badge": false, "display_name": "ggomdeFoody🎩 ", "active_status": "inactive", "verifications": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "follower_count": 2637, "custody_address": "0xeef0262fd74c8474d1f5724ac2d0eaa2769f281a", "following_count": 2536, "verified_addresses": {"eth_addresses": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-360542346/b6vryevrp75g?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (274468, '0x1055af57d8f644f6fb7844cb29bdb993004e12df', 0, 1, '2024-05-05 17:18:08+00', 0, 4, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1749, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 883, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8WCmfCGp2vEz81Cy5\"}"}', NULL), - (268120, '0xc0af8ae47f39d2c65a8af865a646b114c4483415', 0, 1, '2024-05-05 16:29:09+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/davsvm/breakbot-8-bit-love?si=01561dfd162740549d60cb5ffe536667&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (274812, '0x53e16a5743368960e11ea5ea1a4827184d4b4549', 0, 1, '2024-05-05 17:30:07+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2602, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6rdAS\"}"}', NULL), - (275304, '0x8fcd0dafddcb435670dd88c5cb1ae1ab4a4a4364', 0, 1, '2024-05-05 17:34:23+00', 0, 0, '{"fid": 428666, "object": "user", "pfp_url": "https://i.imgur.com/SYXkR8Y.jpg", "profile": {"bio": {"text": "일상공유하는 새로운공간 💙🩵💜\n새로운 사람들과의 만남 💙🩵💜", "mentioned_profiles": []}}, "username": "blue9", "power_badge": false, "display_name": "Blue9🩵💙", "active_status": "inactive", "verifications": ["0xab2787ce8b79cb8a94fbbf712e03cc5a5078bc41"], "follower_count": 2129, "custody_address": "0x65432b79520c2e25255f173ef8a01e6f1b565aec", "following_count": 2222, "verified_addresses": {"eth_addresses": ["0xab2787ce8b79cb8a94fbbf712e03cc5a5078bc41"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dheyRrA3SnN6jfcH6\"}"}', NULL), - (278037, '0xeb5e796ead80f0daed6dec44ae482cec592d523a', 0, 1, '2024-05-05 17:50:20+00', 0, 4, '{"fid": 420496, "object": "user", "pfp_url": "https://arweave.net/hybVP8E28-VL9xBSwLQl1Gc16w8AAaTx_xFFcBk4qTI/", "profile": {"bio": {"text": "In rel with crypto 🫶🏻❤️😎", "mentioned_profiles": []}}, "username": "3pehr", "power_badge": false, "display_name": "3pehr 🔄🎩 ", "active_status": "inactive", "verifications": ["0x54d07de68808476d7b00a23fed829e58967e5310"], "follower_count": 1575, "custody_address": "0xe7b5d4db6c5aff9c9f913abbec8ce03c911b279d", "following_count": 1711, "verified_addresses": {"eth_addresses": ["0x54d07de68808476d7b00a23fed829e58967e5310"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xH2zTdnDQKG8YwRC6\"}"}', NULL), - (256901, '0xff6ce06884d5c7422e98b32f9dedf3c7f9090f8c', 0, 1, '2024-05-05 15:13:26+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2349, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4108, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki29/yuqi-freak-1?in=moonbyulkiki33/sets/yuqi-yuq1 \"}"}', NULL), - (257662, '0x4816f7919dfda8cb5c38dfe0cb8f10eb54d17e62', 0, 1, '2024-05-05 15:18:01+00', 0, 0, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 719, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1073, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gr68eS2KCrvNNhyD9\"}"}', NULL), - (270381, '0x6a5b161111cf1eeebd5a59a219f64d75827b682e', 0, 1, '2024-05-05 16:46:09+00', 10, 3, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2649, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2736, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Vgj3RdonVYdCUM8z6\"}"}', NULL), - (273355, '0xa66a684561b7f63b88e3445db325ed7360d80eae', 0, 1, '2024-05-05 17:09:20+00', 0, 1, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rain-sun-231018648/shiki-no-uta-samurai-champloo-ending-loop-1-hour?si=96ad65e40db446cdb5e3619be434689e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (270832, '0x67e4786de286773b1b0a00b1c3d2b33798b9d7ff', 0, 1, '2024-05-05 16:48:53+00', 0, 3, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2377, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1605, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G6CuwqaMYfifVcve9\"}"}', NULL), - (270907, '0x5dc09bb8bf33705cb86ea29b71a366be1d83c902', 0, 1, '2024-05-05 16:50:06+00', 0, 6, '{"fid": 501031, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/607e33f6-cda1-404b-5745-b489a5f57d00/rectcrop3", "profile": {"bio": {"text": "Let''s have fun talking!!Welcome anytime~😊소통은 언제나 즐거워~~♡언제든지 놀러오세요~~점찍고 돌아왔다!!! 복수할끄얏!!! 쉿!!!", "mentioned_profiles": []}}, "username": "radiant-mut7", "power_badge": false, "display_name": "Mut", "active_status": "inactive", "verifications": ["0xcc6e7d78fb55e1fa8d534a416cb6ab95abbed2a9"], "follower_count": 1253, "custody_address": "0x86cae105fe5574a01837314e14357969bf90ba6e", "following_count": 1616, "verified_addresses": {"eth_addresses": ["0xcc6e7d78fb55e1fa8d534a416cb6ab95abbed2a9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QtWQsEuT2vnVTZaB9\"}"}', NULL), - (271091, '0x5708de02a2225ec4310dba79751d174cc8a4f827', 0, 1, '2024-05-05 16:50:42+00', 0, 2, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "downshift $ ▯ 🎩🍖✨↑", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3126, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 558, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bitsjams/kendrick-lamar-humble-skrillex-remix-vs-graves-ghosts-bits-mashup\"}"}', NULL), - (263801, '0x770de43e441f7a5d4f0fdd6419dfc039a7507b75', 0, 1, '2024-05-05 16:04:19+00', 0, 2, '{"fid": 505708, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80a4dfd8-d4fc-476e-0a06-cbd66f6d3500/rectcrop3", "profile": {"bio": {"text": "it''s a newstart with coffee😃\n🔆같이 키워봅시다🔆무럭 무럭👍\n", "mentioned_profiles": []}}, "username": "withcoffee", "power_badge": false, "display_name": "WITHcoffee", "active_status": "inactive", "verifications": ["0x06820f9584291334d38ff09c832b560c16263a60"], "follower_count": 1198, "custody_address": "0x6f1b557b5fabdd13789e3b99b56af838ab06617f", "following_count": 1873, "verified_addresses": {"eth_addresses": ["0x06820f9584291334d38ff09c832b560c16263a60"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aikupabbo/younha-umbrella?si=0ee201d91566483e99773bb1b65f8b17&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268437, '0xcf8025a3450ef0aa446259f7be5ff6d26608ec8e', 0, 1, '2024-05-05 16:32:14+00', 0, 0, '{"fid": 488178, "object": "user", "pfp_url": "https://arweave.net/Ivf6-9lCvCYvkviClgp_qpRmkp8BxAWy0Hjp-wcMYXQ/", "profile": {"bio": {"text": "investing in web3, onchain, /base", "mentioned_profiles": []}}, "username": "nikdmello", "power_badge": true, "display_name": "Niko 🎩", "active_status": "inactive", "verifications": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "follower_count": 242, "custody_address": "0x8062371c6cecd5d28fcd3c4c7928a348189bb55f", "following_count": 189, "verified_addresses": {"eth_addresses": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/futureisnow/future-metro-boomin-all-to?in=futureisnow/sets/we-still-dont-trust-you-1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (256301, '0x2b0dac730f74fdc24e76c8cd5827b4d06d0791ef', 0, 1, '2024-05-05 15:10:03+00', 0, 4, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1245, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 909, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki28/roy-kim-whenever-wherever-x-my-demon-ost-part-2?si=27a704119b7a4bc6929fbda6ef900f08&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (263804, '0x637f6369c817fde6d7b652dac5a094b894879a22', 0, 1, '2024-05-05 16:03:51+00', 0, 1, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1030, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/discover/sets/artist-stations:8148851\"}"}', NULL), - (268438, '0xe2e3a13a631da3b2d5b6008be84ff81fa47d571c', 0, 1, '2024-05-05 16:31:16+00', 0, 0, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tanukimusic/tanuki-babybaby-fc-ep-free?in=hweepain/sets/choices&si=01561dfd162740549d60cb5ffe536667&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268449, '0x33bb3f75a538ffe18a1d2da625d0c36bc2bacf01', 0, 1, '2024-05-05 16:32:24+00', 0, 1, '{"fid": 425117, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ffa2806-e07f-4d46-1bd8-8fa9debacc00/rectcrop3", "profile": {"bio": {"text": "away", "mentioned_profiles": []}}, "username": "away", "power_badge": false, "display_name": "away", "active_status": "inactive", "verifications": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "follower_count": 1818, "custody_address": "0x0ae06a7d1fb20108b10f4e2ac171e512ccb8fbf4", "following_count": 1927, "verified_addresses": {"eth_addresses": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XJ6VhQjvdnPVjBot9\"}"}', NULL), - (272915, '0xfb029792e0fd368e94e6b351537b5c287ca99116', 0, 1, '2024-05-05 17:03:10+00', 0, 0, '{"fid": 506652, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0dac9999-5848-489a-63bb-823c91b27f00/rectcrop3", "profile": {"bio": {"text": "Be happy always :)", "mentioned_profiles": []}}, "username": "!506652", "power_badge": false, "display_name": "HAPPY_CSY", "active_status": "inactive", "verifications": ["0x6c74c90a7bc3052ee9fc67b0b9bb1f2fb9a9d2f8"], "follower_count": 153, "custody_address": "0xabce61780eebfd89d6e350fe17e5d0e0888abc52", "following_count": 217, "verified_addresses": {"eth_addresses": ["0x6c74c90a7bc3052ee9fc67b0b9bb1f2fb9a9d2f8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xsL71\"}"}', NULL), - (283850, '0x30d1671148d35d8a009d73b4745bb37eda0ee92e', 0, 1, '2024-05-05 18:33:28+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ap4zljw02nzh/sets/kpop-girlgroup-playlist?si=6b9368e6c668418488b6c8de2fa584e3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (256814, '0x5e335aca3701e363fdfa3d78c3b1e625dbe524f0', 0, 1, '2024-05-05 15:12:08+00', 0, 1, '{"fid": 343971, "object": "user", "pfp_url": "https://i.imgur.com/GWICAfH.jpg", "profile": {"bio": {"text": "I want to see farcaster grow from Japan.\nart/music lover", "mentioned_profiles": []}}, "username": "chielilybell0110", "power_badge": false, "display_name": "chielilybell🎩🔮🍖", "active_status": "inactive", "verifications": ["0x8b67305dcd897d380498bf38c9a1992bfafab763"], "follower_count": 1298, "custody_address": "0xcf16c0e28dcb5e82f0b9a77a46d6594e6ecb816d", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x8b67305dcd897d380498bf38c9a1992bfafab763"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moiz-s-patrick/lauryn-hill-killing-me-softly\"}"}', NULL), - (264045, '0xb721a0cf0b9912a1cc9356623f196c78c6ccefed', 0, 1, '2024-05-05 16:05:34+00', 0, 2, '{"fid": 413717, "object": "user", "pfp_url": "https://i.imgur.com/VOOiRWF.jpg", "profile": {"bio": {"text": "Hi, nice to meet you.💞\nfood photography/South Korea 🇰🇷 \nFollow/f4f/follow4follow\n먹캐스터, 음식, 일상, 여행, Degen, base\n\n맞팔은 댓글달아주시면 늦어도갑니다🫂\n", "mentioned_profiles": []}}, "username": "ggomde", "power_badge": false, "display_name": "ggomdeFoody🎩 ", "active_status": "inactive", "verifications": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "follower_count": 2637, "custody_address": "0xeef0262fd74c8474d1f5724ac2d0eaa2769f281a", "following_count": 2536, "verified_addresses": {"eth_addresses": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok\"}"}', NULL), - (256819, '0x5c02d9fd322f00a363b9961e16af538569e67159', 0, 1, '2024-05-05 15:11:48+00', 0, 1, '{"fid": 469871, "object": "user", "pfp_url": "https://i.imgur.com/l9VSggW.jpg", "profile": {"bio": {"text": "I’m Askerkhan. 🙋🏻‍♂️\nI''m 27.🎩\nI''m an IT specialist 👨🏻‍💻\nI''m interested in crypto, food and cats.🪙🍔🐈‍⬛\n", "mentioned_profiles": []}}, "username": "khan05", "power_badge": false, "display_name": "Askerkhan 🎩🍿", "active_status": "inactive", "verifications": ["0x2d6fdee7cff50805cb11062860f9f64e6b859242"], "follower_count": 1151, "custody_address": "0x06f171f7a0473d2193b2920c6665e6c88b77e2f4", "following_count": 2155, "verified_addresses": {"eth_addresses": ["0x2d6fdee7cff50805cb11062860f9f64e6b859242"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n3kATJPr5i26AW5i9\"}"}', NULL), - (256820, '0x777c98ebc421fbae3a8eea9199a02389532981c8', 0, 1, '2024-05-05 15:11:57+00', 0, 2, '{"fid": 503284, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d596ed7e-c85c-4777-1fd4-a3e5e520be00/rectcrop3", "profile": {"bio": {"text": "/healing-archive Photography | film | cat lover ", "mentioned_profiles": []}}, "username": "irohaa", "power_badge": false, "display_name": "irohaa𑁤📸🐱", "active_status": "inactive", "verifications": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "follower_count": 590, "custody_address": "0xcfc2606c3651b7513908e59dcb4538d03093ddb7", "following_count": 759, "verified_addresses": {"eth_addresses": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eyMoPGaRVFXhBvZFA\"}"}', NULL), - (256232, '0x1a43258ba2bd2c215c3506a6f6c2986aca990ee0', 0, 1, '2024-05-05 15:09:04+00', 0, 5, '{"fid": 291929, "object": "user", "pfp_url": "https://i.imgur.com/npPhh5b.jpg", "profile": {"bio": {"text": "There are no shortcuts to any place worth going ", "mentioned_profiles": []}}, "username": "jinhoshin", "power_badge": false, "display_name": "Jinhoshin", "active_status": "inactive", "verifications": ["0x6bb3163d7520efc6d3aae151811831ca6686739f"], "follower_count": 1919, "custody_address": "0x1ef3753e341dda4acde5d6f25370330796b2d8ab", "following_count": 1229, "verified_addresses": {"eth_addresses": ["0x6bb3163d7520efc6d3aae151811831ca6686739f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Nix9d\"}"}', NULL), - (255996, '0x4f77ed6d8e6d7b3f0747943424bf330c18d375cc', 0, 1, '2024-05-05 15:07:25+00', 0, 0, '{"fid": 23074, "object": "user", "pfp_url": "https://i.imgur.com/7ffrMZd.jpg", "profile": {"bio": {"text": "filmo.eth.co / personne.eth.co / lecoffre.eth.co 😇\nJoined Farcaster before it was cool.\nNot early enough to be called OG.\nThe Plague #443 - FID 35383773", "mentioned_profiles": []}}, "username": "filmo", "power_badge": false, "display_name": "Le Filmopathe 🎭🎩", "active_status": "inactive", "verifications": ["0x4c47ab777f1f64d1f3d6efbf1cc7ab5a5224af4a"], "follower_count": 432, "custody_address": "0x9c282cf2f12f6592eb391cb3406fb24a391a80ab", "following_count": 622, "verified_addresses": {"eth_addresses": ["0x4c47ab777f1f64d1f3d6efbf1cc7ab5a5224af4a"], "sol_addresses": ["AUCZf2bCy92cf3JsRXf3LGu8D83bFoNWkULRX4KsePi6"]}}', '{"{\"url\":\"https://www.sound.xyz/raeisla/thank-you-im-sorry-i-love-you\"}"}', NULL), - (257378, '0x03351cf8e968112f03339d99eba1153ef6d34a8f', 0, 1, '2024-05-05 15:14:37+00', 0, 2, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 77, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2sY0M3k69oAYz7EOPVRFjo?si=AOZe7gTaTBGjKe2HUssR7w\"}"}', NULL), - (257658, '0xb9acc2b6725ce0e289f5d1a63edf7ea1b6df1caa', 0, 1, '2024-05-05 15:18:18+00', 0, 1, '{"fid": 501896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23f227ba-6847-4352-22a5-017d03310900/rectcrop3", "profile": {"bio": {"text": "hi!! i look forward to your kind cooperation❣️", "mentioned_profiles": []}}, "username": "yuruyuru", "power_badge": false, "display_name": "yuruyuru", "active_status": "inactive", "verifications": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "follower_count": 1731, "custody_address": "0x2a9a19de7beb1ff14bad1f67ddaddd417f1077de", "following_count": 1373, "verified_addresses": {"eth_addresses": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PVtyfjtu8Js27fHM6\"}"}', NULL), - (257659, '0xf8649324ade10f3f4d105f7b00378b7e81ef8393', 0, 1, '2024-05-05 15:18:00+00', 0, 0, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 77, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6y0Etr2KJr0sdcEp7ajoUK?si=k03pS6dNR8qoXHDC8WeVsg\"}"}', NULL), - (257379, '0xd20f33a38ca01a2a31680f16f4b28188a041e720', 0, 1, '2024-05-05 15:14:40+00', 0, 5, '{"fid": 486262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e88d9a9-4e89-49e1-c131-7e5c2f0e4d00/original", "profile": {"bio": {"text": "Hey~ guys 😍like ❣️recast 🔄reply \n💌is good👍 ", "mentioned_profiles": []}}, "username": "yuchanism", "power_badge": false, "display_name": "유차니즘🌈", "active_status": "inactive", "verifications": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "follower_count": 1945, "custody_address": "0xdf28316ba634e3fecdd5c74d269feb378695d1cb", "following_count": 461, "verified_addresses": {"eth_addresses": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4362b84-3f87-4a5a-59d0-3c48868e4d00/original\"}","{\"url\":\"https://on.soundcloud.com/m2tpM69KWjeYRxME7\"}"}', NULL), - (258563, '0xd7c814ed69c83a9e319a2e708b747641c123e41d', 0, 1, '2024-05-05 15:25:59+00', 0, 0, '{"fid": 500809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7861217-86ed-41d0-359e-391353cd6700/original", "profile": {"bio": {"text": "I love kpop", "mentioned_profiles": []}}, "username": "melon99", "power_badge": false, "display_name": "melon99", "active_status": "inactive", "verifications": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "follower_count": 861, "custody_address": "0xf0a460f01a1c2a8174d399bd3e423eeb8e9701b3", "following_count": 836, "verified_addresses": {"eth_addresses": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3r8RuvgbX9s7ammBn07D3W\"}"}', NULL), - (273802, '0x05eccc1550ad8f9636bc45540339f464f496a1ad', 0, 1, '2024-05-05 17:12:58+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"Listen https://on.soundcloud.com/MXEdZ\"}"}', NULL), - (275207, '0x675d1fb2db20595e0ccdc95d4c71ca9aad954fb6', 0, 1, '2024-05-05 17:31:16+00', 0, 0, '{"fid": 433641, "object": "user", "pfp_url": "https://i.imgur.com/M5ipBUB.jpg", "profile": {"bio": {"text": "Jesus is Lord", "mentioned_profiles": []}}, "username": "dsun", "power_badge": false, "display_name": "dsun", "active_status": "inactive", "verifications": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "follower_count": 11, "custody_address": "0x70b592d73c768671a8587e903df8bd94aa98fa39", "following_count": 60, "verified_addresses": {"eth_addresses": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/macayres/sets/drive-slow?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268586, '0xf056e71c4b16d4d6aca8128be8b15f035bc05c56', 0, 1, '2024-05-05 16:32:39+00', 0, 1, '{"fid": 291550, "object": "user", "pfp_url": "https://i.imgur.com/CKWEo2s.jpg", "profile": {"bio": {"text": "F4F 조대리 바로 갑니다!\n$DEGEN ", "mentioned_profiles": []}}, "username": "porsche911", "power_badge": false, "display_name": "porsche911🎩🍖", "active_status": "inactive", "verifications": ["0xae12698b39c5b6ab301b5fb6d4bffc9ae093ceae"], "follower_count": 781, "custody_address": "0x99bc00deddc9a602de92ec4d2be553e294578f0c", "following_count": 1500, "verified_addresses": {"eth_addresses": ["0xae12698b39c5b6ab301b5fb6d4bffc9ae093ceae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/connorpricemusic/connor-price-tommy-royale-overnight?si=4b0b659763db4231923f60912491cc1f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (264672, '0x35a23e977861fc5baddfbe5e2da9aa096d3f25ff', 0, 1, '2024-05-05 16:07:16+00', 0, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1866, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1543, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/Jg3j1qRU1i8PYPDV9\"}"}', NULL), - (283828, '0x800fff26376bff63c639ca3e270880a94eec3997', 0, 1, '2024-05-05 18:32:26+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user462366434/jay-park-limousine-feat-krnfx?si=c9cd894ad2a64fdea5a68ca808ef55f2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (258198, '0xeb7faea59012d13757691698eab525aa5de80cc0', 0, 1, '2024-05-05 15:20:02+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1136, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 942, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tELYrhL9bDXbKaW18\"}"}', NULL), - (283848, '0x645254303276896519b422ff3afa078c2af6479b', 0, 1, '2024-05-05 18:32:18+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lemodimusic/sets/jay-park-playlist?si=a5001856ef0f4072b805a6249c043fc6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (52733, '0x39155d491feab512013f16fa338c3f76df587459', 0, 1, '2024-05-04 23:01:38+00', 0, 1, '{"fid": 268878, "object": "user", "pfp_url": "https://i.imgur.com/g5Bl6JV.jpg", "profile": {"bio": {"text": "onchain music\n\nhttps://drakula.app/user/serboy", "mentioned_profiles": []}}, "username": "serboy", "power_badge": true, "display_name": "serboy", "active_status": "inactive", "verifications": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "follower_count": 140, "custody_address": "0x693d7059bcec34abd383feaf75d3026fa698530c", "following_count": 123, "verified_addresses": {"eth_addresses": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/serboy/melancolica-feat-heybela\"}"}', NULL), - (264457, '0x48cd184a7daf73473af12aa38f4a3bfe042b9bb6', 0, 1, '2024-05-05 16:06:36+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 35, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/for-thy-lonely-heart?referral_source=link\"}"}', 'daily-art-mint'), - (257854, '0x6fb0b5ac24a0b0a94fd561684d8fa3c8dc865745', 0, 1, '2024-05-05 15:19:05+00', 0, 3, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1748, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 883, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-573836455/the-black-skirts-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (278574, '0xbd4587756a6605c0cad92529a4d63fcc42e28f31', 0, 1, '2024-05-05 17:52:45+00', 0, 4, '{"fid": 449096, "object": "user", "pfp_url": "https://i.imgur.com/uJUaygl.jpg", "profile": {"bio": {"text": "I am a nurse.", "mentioned_profiles": []}}, "username": "safail", "power_badge": false, "display_name": "Safail 🔵 🎩", "active_status": "inactive", "verifications": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "follower_count": 1176, "custody_address": "0x9d7ae0c0c43aea23ca1563b49fdddc611b5bdd7d", "following_count": 1965, "verified_addresses": {"eth_addresses": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pjv6X\"}"}', NULL), - (283825, '0x80d6fd5613f3a6dfa643f7b8278196b2d8cf9dab', 0, 1, '2024-05-05 18:32:29+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user462366434/jay-park-limousine-feat-krnfx?si=c9cd894ad2a64fdea5a68ca808ef55f2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (275208, '0x7ec7aab876a3c3f38aa2f1bcb06de0e35232dbe7', 0, 1, '2024-05-05 17:31:47+00', 0, 5, '{"fid": 406815, "object": "user", "pfp_url": "https://i.imgur.com/j0lCl8I.jpg", "profile": {"bio": {"text": "Hello everyone. Let''s enjoy COIN, DEGEN, https://zora.co/@eiza", "mentioned_profiles": []}}, "username": "eiza", "power_badge": false, "display_name": "EIZA_JEONG", "active_status": "inactive", "verifications": ["0x31330d2f5d714c04f6b0f6ed4d5fe0cad405f6e4"], "follower_count": 3524, "custody_address": "0x0edb7182d5959e5fc0bcd2b63da8623eb10c63e7", "following_count": 1995, "verified_addresses": {"eth_addresses": ["0x31330d2f5d714c04f6b0f6ed4d5fe0cad405f6e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PBPrspRfyAbJHT1w7\"}"}', NULL), - (264458, '0xbce3c7339b525650457615e477ec90dc68135453', 0, 1, '2024-05-05 16:06:09+00', 0, 4, '{"fid": 500986, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a96d3b22-0ba7-4c81-5171-af59cbda1800/rectcrop3", "profile": {"bio": {"text": "달콤한 초코초코예요❤️🤎\n잘부탁해용😘", "mentioned_profiles": []}}, "username": "chocochoco", "power_badge": false, "display_name": "초코초코🍩🍫🎩", "active_status": "inactive", "verifications": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "follower_count": 1304, "custody_address": "0x3f370379ba03bd08832fb6f0ec20151a34cf914f", "following_count": 738, "verified_addresses": {"eth_addresses": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ku87cnKK581NVjgAA\"}"}', NULL), - (283857, '0x5e918142c764968c3b609f8ded42bd3c15bf03a3', 0, 1, '2024-05-05 18:34:13+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ynyizzmmqaj9/sets/y2k?si=582b612c269344ca86dce7133c45436a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (278584, '0x3e10700355ea49ad157de84aa5fe7690cf973828', 0, 1, '2024-05-05 17:52:53+00', 0, 0, '{"fid": 420496, "object": "user", "pfp_url": "https://arweave.net/hybVP8E28-VL9xBSwLQl1Gc16w8AAaTx_xFFcBk4qTI/", "profile": {"bio": {"text": "In rel with crypto 🫶🏻❤️😎", "mentioned_profiles": []}}, "username": "3pehr", "power_badge": false, "display_name": "3pehr 🔄🎩 ", "active_status": "inactive", "verifications": ["0x54d07de68808476d7b00a23fed829e58967e5310"], "follower_count": 1575, "custody_address": "0xe7b5d4db6c5aff9c9f913abbec8ce03c911b279d", "following_count": 1711, "verified_addresses": {"eth_addresses": ["0x54d07de68808476d7b00a23fed829e58967e5310"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DnK41kpMV8RXAC8k8\"}"}', NULL), - (264676, '0x5bf7b6d8482e8216f3f931aede87759d03248ad9', 0, 1, '2024-05-05 16:07:51+00', 0, 1, '{"fid": 488178, "object": "user", "pfp_url": "https://arweave.net/Ivf6-9lCvCYvkviClgp_qpRmkp8BxAWy0Hjp-wcMYXQ/", "profile": {"bio": {"text": "investing in web3, onchain, /base", "mentioned_profiles": []}}, "username": "nikdmello", "power_badge": true, "display_name": "Niko 🎩", "active_status": "inactive", "verifications": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "follower_count": 241, "custody_address": "0x8062371c6cecd5d28fcd3c4c7928a348189bb55f", "following_count": 188, "verified_addresses": {"eth_addresses": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/00n83h3zn2IrySO4Q4aTrG?si=7ade89e42760435a\"}"}', NULL), - (284373, '0x19eb6eaaf632a300490508f7ca63d85abb08a6a3', 0, 1, '2024-05-05 18:45:41+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/assdfghjkl8/09-feat-for-brown-eyed-soul?si=ad6f5c19958b47389ad466a42f699ee6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283856, '0xb7f1bda512669c29d77ad68281bf56432174c2cf', 0, 1, '2024-05-05 18:33:38+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/crdrv72siq5r/sets/b8cfkpszxd5g?si=69428467c12e4b0faa87e00e33d7ed76&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (273805, '0x8c655d00b223266ba0be9f6a9cbd0556ff1b1217', 0, 1, '2024-05-05 17:12:35+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 다이나믹 듀오 - 죽일 놈 (Guilty) by Audiosurf 2 Scoreboard on #SoundClohttps://on.soundcloud.com/MXEdZ\"}"}', NULL), - (284366, '0x95e958c52fc2ee78a5a3437c0251ead94fe4c9eb', 0, 1, '2024-05-05 18:46:21+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thatzkid/ring-my-bell-feat-of-brown?si=f446864a99d84f4184f2974586306cf0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (272916, '0x33d7d90021511a28477e361a7b41c0513ccc9afa', 0, 1, '2024-05-05 17:03:37+00', 0, 2, '{"fid": 421100, "object": "user", "pfp_url": "https://i.imgur.com/2QEH8Mn.jpg", "profile": {"bio": {"text": "I loved tried and mining", "mentioned_profiles": []}}, "username": "rasoul128482", "power_badge": false, "display_name": "RasoulRahimi🎩🍖", "active_status": "inactive", "verifications": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "follower_count": 464, "custody_address": "0x09371cab91c71adaad513b1b0a0284e67f1012bb", "following_count": 528, "verified_addresses": {"eth_addresses": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alex-giza/bitch-please-snoop-x-drdre-x-tupac-x-ja-rule-x-dmx-x-xzibit-ft-nate-dogg-biggie-big-l-x-eminem?si=17815ec32fcd457b8f6dbd2ec3da2043&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173083, '0xf3bc973dd1f8e98d4851167871c2a1df4cd96937', 100, 1, '2024-05-15 01:08:57+00', 0, 0, '{"fid": 4375, "object": "user", "pfp_url": "https://i.imgur.com/fV5FWdH.png", "profile": {"bio": {"text": "janitor@ /middle-mgmt // web3 law stuff //\nfree Ross // free Assange // ☮︎ Ξ\n\nlovelight.eth.limo", "mentioned_profiles": []}}, "username": "resipsa", "power_badge": true, "display_name": "res ipsa ☺︎", "active_status": "inactive", "verifications": ["0x0d74d273a4d2971e7cb8e7acb25ccfe149e37465"], "follower_count": 1936, "custody_address": "0xf55d80f2f5ff2289a4bdb286b2b3dbc70f763068", "following_count": 432, "verified_addresses": {"eth_addresses": ["0x0d74d273a4d2971e7cb8e7acb25ccfe149e37465"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7dHowm9WlK1gOuEuM0bd7m?si=ou75xLBBTdG_jzIEl-ArLQ\"}"}', NULL), - (336168, '0xf32e565a3417922d2626b14e6e90caf60d97574b', 0, 1, '2024-05-05 23:20:29+00', 10, 2, '{"fid": 503328, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59e830e-0465-490d-c526-b964d43c5900/rectcrop3", "profile": {"bio": {"text": "Dr.kk 3배 폭격맨 💣🫡🔥무조건 갑니다\nDr.k", "mentioned_profiles": []}}, "username": "hh7035881", "power_badge": false, "display_name": "Dr.kk", "active_status": "inactive", "verifications": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "follower_count": 1354, "custody_address": "0x2cc415f9dfa832bd167eb5d5d1c42e144d868c40", "following_count": 1421, "verified_addresses": {"eth_addresses": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1FYmRDrgMrS7Ap1r7\"}"}', 'sonata'), - (258335, '0xc6b3f56ede1cc3aedc289325789370cbf2f5540c', 0, 1, '2024-05-05 15:22:28+00', 0, 1, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 584, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 271, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4ge7H2m35Cd9rLtmESnGiy?si=Us5hqTjZTOunGopWFe207w\"}"}', 'nowplaying'), - (1173082, '0x831ffc942ff75339fb2843f55c3f889a1353c7d1', 100, 1, '2024-05-15 00:52:07+00', 0, 0, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4262, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 511, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6xRNqXP3baPR9buXr8vreM?si=GmlplBxpS1S2CUrbkhuT6g\"}"}', NULL), - (257661, '0x8407163019868faf93d18b25256d077bf76eca01', 0, 1, '2024-05-05 15:18:25+00', 0, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1867, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1543, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/Ty9y4sGGoqsYCT5v8\"}"}', NULL), - (284410, '0x71a13bcabe7313e02f224e45d990397044ea367f', 0, 1, '2024-05-05 18:47:01+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/6iyhtubrsdbr/tnbjcjr8z7bq?si=7aeab537ee4f4a1e9855db82b0714b58&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (258393, '0xd06cf1d5344368c03255818b23d35313edacda79', 0, 1, '2024-05-05 15:22:56+00', 0, 4, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ration21/shaun-lunisolar-ration-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268818, '0x3f2afb2d16219482287fb28b039478e4ea90b6a8', 0, 1, '2024-05-05 16:34:19+00', 0, 6, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1288, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 1991, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2kyVQg00pphEufGT59M2XH?si=96894d6d81174424\"}"}', 'sonata'), - (336356, '0xbc9a2b5998c60d2ebf3f4e039c96cc3860e14e80', 0, 1, '2024-05-05 23:21:43+00', 0, 7, '{"fid": 300064, "object": "user", "pfp_url": "https://i.imgur.com/QMN2rZi.jpg", "profile": {"bio": {"text": "Partner @ archetype.fund\n", "mentioned_profiles": []}}, "username": "dberenzon", "power_badge": false, "display_name": "Dmitriy Berenzon", "active_status": "inactive", "verifications": ["0xc391ef2402c50e44d75245838e17f17e5cb2a3ae"], "follower_count": 111, "custody_address": "0x69c8f5eeb5dbae255ecce748b4bca483e233b41e", "following_count": 120, "verified_addresses": {"eth_addresses": ["0xc391ef2402c50e44d75245838e17f17e5cb2a3ae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby?si=84653ced752d4f7f9fd379fe1024af87&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283858, '0x576e3638be6a487a642be25fc9a15f1a87a0826b', 0, 1, '2024-05-05 18:34:18+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/84-951551043/sets/zxugmh0silqk?si=048713c11a4d487e80cfcc23b43a51ea&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (259086, '0x022ac718383413c53bd2aeb1899b8af368a2cbd9', 0, 1, '2024-05-05 15:29:24+00', 0, 10, '{"fid": 503284, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d596ed7e-c85c-4777-1fd4-a3e5e520be00/rectcrop3", "profile": {"bio": {"text": "/healing-archive Photography | film | cat lover ", "mentioned_profiles": []}}, "username": "irohaa", "power_badge": false, "display_name": "irohaa𑁤📸🐱", "active_status": "inactive", "verifications": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "follower_count": 607, "custody_address": "0xcfc2606c3651b7513908e59dcb4538d03093ddb7", "following_count": 771, "verified_addresses": {"eth_addresses": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Cd17G3oNQ34OWUwS8ZxfR?si=H-Yw9rtBQ1GGp903xkeTcw\"}"}', 'sonata'), - (258872, '0x875beff9395df8d4b6d98d7bb8c4a566c5919cca', 0, 1, '2024-05-05 15:27:57+00', 0, 1, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dzekomusic/the-chainsmokers-coldplay-something-just-like-this-dzeko-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283843, '0x06b91f2ee65ae90238f23686f689956315c8fb35', 0, 1, '2024-05-05 18:32:18+00', 0, 1, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 293, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 729, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/raechel-725588223/sets/nthzsbzurfkz?si=11b5de81df8e4ddb8284b6ee5d71212e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283893, '0xf5632ddd733102ef23a1a2862f6bf7354984b00c', 0, 1, '2024-05-05 18:35:00+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nntrnrykkuko/6lw4h5ozovnc?si=3470412a37524a4493dc0f3ff612d882&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (265158, '0xcb6b9629fdc679f9137af939cfd01f2f2c2491a4', 0, 1, '2024-05-05 16:09:17+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 35, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/for-thy-lonely-heart?referral_source=link\"}"}', 'djs'), - (357341, '0xdd79b1de9a9f6c3ce6a3f747c303e4b450fa0ed5', 0, 1, '2024-05-06 01:58:22+00', 50, 0, '{"fid": 386033, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc22dd9a-a03a-44fd-6684-a283b4933500/original", "profile": {"bio": {"text": "HAM HAM🍖 / Frame developer\nFrom DEG server", "mentioned_profiles": []}}, "username": "chiffon-m", "power_badge": false, "display_name": "sifonM🎩🍖🔵🟢", "active_status": "inactive", "verifications": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "follower_count": 639, "custody_address": "0xecf66086803983f13e85754591fedc58891fd70c", "following_count": 657, "verified_addresses": {"eth_addresses": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gengennui2-rr/flnyh35ytkga\"}"}', NULL), - (258676, '0xc4cf4b9b543abb54d775b8a09190b15c1974743c', 0, 1, '2024-05-05 15:27:32+00', 0, 0, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2120, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WVyWdiCvaPGU4Se89\"}"}', NULL), - (258675, '0xa9e222cc0c9a9d780cbb26b3c769c2b48d06434f', 0, 1, '2024-05-05 15:27:45+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2349, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4108, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki33/full-album-yuqi-yuq1?in=moonbyulkiki33/sets/yuqi-yuq1&si=512e88bb3bbe4249bbe2658daeba98f6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (256231, '0xb27652223cceabcad4a7108363aaf1fa153722b5', 0, 1, '2024-05-05 15:09:50+00', 0, 0, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 77, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1FTSo4v6BOZH9QxKc3MbVM?si=HPiN3YSLRmik-ejNDqrIzQ\"}"}', NULL), - (258561, '0x5a985a34651395f5734331f45be196d27cb3fe4d', 0, 1, '2024-05-05 15:26:17+00', 0, 0, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fairgamesongs/charlie-puth-jungkook-left-and-right-fair-game-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (257853, '0xe212b35d588c8c5b96f54c40e4e7859082b502c7', 0, 1, '2024-05-05 15:18:49+00', 0, 4, '{"fid": 208481, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/450a859e-80a1-4e70-bf71-17c4c159ca00/rectcrop3", "profile": {"bio": {"text": "💠father\n• /tattoo \n• psychonaut \n• creative\n• visual mathematic flow💠\n\n\nwww.accsemblecorporis.com >remember the future \n/medicinemusic", "mentioned_profiles": []}}, "username": "accsemble", "power_badge": true, "display_name": "accsemble🎩🐲", "active_status": "inactive", "verifications": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "follower_count": 341, "custody_address": "0xb0d6aff9edda81016e202ca85d7b9fcefeb82f70", "following_count": 185, "verified_addresses": {"eth_addresses": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/f4fx3UByijgNqJQz5\"}"}', NULL), - (265163, '0xb4e3752be1a8974bfb3b308ecd11a14fcbb1c782', 0, 1, '2024-05-05 16:09:26+00', 0, 2, '{"fid": 505708, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/80a4dfd8-d4fc-476e-0a06-cbd66f6d3500/rectcrop3", "profile": {"bio": {"text": "it''s a newstart with coffee😃\n🔆같이 키워봅시다🔆무럭 무럭👍\n", "mentioned_profiles": []}}, "username": "withcoffee", "power_badge": false, "display_name": "WITHcoffee", "active_status": "inactive", "verifications": ["0x06820f9584291334d38ff09c832b560c16263a60"], "follower_count": 1198, "custody_address": "0x6f1b557b5fabdd13789e3b99b56af838ab06617f", "following_count": 1873, "verified_addresses": {"eth_addresses": ["0x06820f9584291334d38ff09c832b560c16263a60"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/minhyung-kang-644857540/sets/wefwh5kf9opb?si=110ad36ad2674f9bbaf40ffa668001d0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (258392, '0x005f80be3d2f59b05478797ecac32ebbebabbd5f', 0, 1, '2024-05-05 15:23:12+00', 0, 1, '{"fid": 384415, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifxxg2cizy3v7f4tfm2kgthk5ahpyacl53f4iqk67jcbwgzdk6tou", "profile": {"bio": {"text": "Multidisciplinary Artist • Guitar/Bass/Synth Player • Creative Director • DeFi lover • Crypto Virtuoso • A Catcher in The Rye… And Above All I’m a Man. ✨", "mentioned_profiles": []}}, "username": "alirezakh", "power_badge": false, "display_name": "The Alireza ᖽ🥷🏼", "active_status": "inactive", "verifications": ["0xe35f4e993fa02345d9e58f6d9c12272273945d3e"], "follower_count": 508, "custody_address": "0xca237adb637fc628d317f5f1c5e2522e1ea22ddd", "following_count": 276, "verified_addresses": {"eth_addresses": ["0xe35f4e993fa02345d9e58f6d9c12272273945d3e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/m83/midnight-city?ref=clipboard&p=i&c=0&si=8433BD0D7EE14722A1648A6DD07A735D&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (258674, '0x7f7db092a1a86d8fb8391de74691a88ab4fe33aa', 0, 1, '2024-05-05 15:27:28+00', 0, 1, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/r3hab/the-chainsmokers-halsey-closer-r3hab-remix-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (258523, '0x3ba8bb2a0b1f89746c9c7a3fae00e9d8719aac28', 0, 1, '2024-05-05 15:25:19+00', 0, 0, '{"fid": 508188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66ab94f4-7c32-4c5d-ce26-7a5d245ce200/rectcrop3", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 885, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 889, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/otakar-kr-l/burn-the-house-down?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268985, '0x149f19f130aeaa1bbf3290850f4a4fca81ab0879', 0, 1, '2024-05-05 16:35:19+00', 0, 0, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 400, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 355, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5xrtzzzikpG3BLbo4q1Yul?si=93b3dfc5be354ec1\"}"}', NULL), - (258658, '0xe649e8ebc4e0c1f2ac1ef7c47426954ff481dfcc', 0, 1, '2024-05-05 15:27:36+00', 0, 0, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 669, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1149, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/baileybaker/ed-sheeran-thinking-out-loud?si=bd427007344f49b8a6c510c76253ac36&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (258673, '0x5c46b86cfe9ae5ca3fbadb4ef10dabf5b8546a33', 0, 1, '2024-05-05 15:27:07+00', 0, 0, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 994, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1129, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/reason4breathing/ccgjnxjtl2kp?si=ab88d6665d944e9ea524190284ad2e51&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (273795, '0x275044ff687a484fe5dd5edea4cc715066fcfd24', 0, 1, '2024-05-05 17:12:42+00', 0, 0, '{"fid": 211018, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc081d98-68b8-4327-40cd-de328e011400/rectcrop3", "profile": {"bio": {"text": "Musician | Photographer | Artist", "mentioned_profiles": []}}, "username": "carlathepoet", "power_badge": false, "display_name": "Not Carla The Poet", "active_status": "inactive", "verifications": ["0xe4e8d6650a8dc5ebf91f9ee563d71378483d90c3"], "follower_count": 58, "custody_address": "0x23c05eb02ea669252f478dab02a3f3a88b90e0d7", "following_count": 55, "verified_addresses": {"eth_addresses": ["0xe4e8d6650a8dc5ebf91f9ee563d71378483d90c3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nVoFqGkxGUmPhFrF9\"}"}', NULL), - (354106, '0x5b4b4f5c29b814140db815c0ed191169bf5358d9', 0, 1, '2024-05-06 01:33:05+00', 0, 2, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 424, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 287, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4Mbc2ZwqQxNRTq7U6\"}"}', 'sonata'), - (273934, '0xb73e0fa2365e46d4f4b61b7f1fdd46c4148b66b9', 0, 1, '2024-05-05 17:14:35+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2597, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\" https://soundcloud.com/dVBvf\"}"}', NULL), - (258562, '0x83c929ef406e15cc40f27934c4782e09dafce575', 0, 1, '2024-05-05 15:26:13+00', 0, 0, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 77, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nYXbBwXB5DQTn3ze7\"}"}', NULL), - (258871, '0x167679cbda9a3461637742db4c9f627ba75cc178', 0, 1, '2024-05-05 15:28:56+00', 0, 0, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 669, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1149, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vautdiscovery/ed-sheeran-thinking-out-loud-live-on-jools-holland?si=83e34a3451d747a6af7e5feb7acc4506&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (278787, '0x0ab5b25fadfcd4e1044758c0643221a8e21810c2', 0, 1, '2024-05-05 17:53:24+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 379, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/pablocostas/gary-moore-the-prophet\"}"}', NULL), - (275360, '0x0049fb28ad6cfc1b9b8d67e2b18ef35928fa90f2', 0, 1, '2024-05-05 17:35:38+00', 0, 7, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2602, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2428, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6rdAS\"}"}', NULL), - (284374, '0x39a5885e00de17228df8d3b96cfd8faf48a8d1a2', 0, 1, '2024-05-05 18:45:45+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/e-p-w/brown-eyes-two-things-needed-1?si=3974e66cfd894345bae4530ad5ad0a01&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283896, '0x859ec9e82c59503fc36b141938a121edd412efc4', 0, 1, '2024-05-05 18:35:08+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ph2bllugy01j/sets/klifdpgrkpfa?si=1dd42076e05b4f7bbb64975a2d1b5c5d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (265165, '0xa9ef20ffd49ae50af4e785447c0110bb2e75eef1', 0, 1, '2024-05-05 16:08:27+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 125, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 163, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/tycho/ingress-burning-man-sunrise-set-2017\"}"}', NULL), - (258861, '0x8536afc99d17b7a8754b38f87647e2607cb4ec3f', 0, 1, '2024-05-05 15:28:07+00', 0, 0, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3255430-232e-4b8b-9f9b-797e16e0fd00/rectcrop3", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 77, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9CnPqR3n9rYxTf8a8\"}"}', NULL), - (259085, '0x8f1f41fc5d328a7cd4316f511b7b8ba24f91e15b', 0, 1, '2024-05-05 15:29:38+00', 0, 2, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3094, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3688, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share84/ateez-wave?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (259494, '0x304a30269b88726aba15834a2cfd6b89934cd4ab', 1000, 1, '2024-05-05 15:31:36+00', 0, 2, '{"fid": 343971, "object": "user", "pfp_url": "https://i.imgur.com/GWICAfH.jpg", "profile": {"bio": {"text": "I want to see farcaster grow from Japan.\nart/music lover", "mentioned_profiles": []}}, "username": "chielilybell0110", "power_badge": false, "display_name": "chielilybell🎩🔮🍖", "active_status": "inactive", "verifications": ["0x8b67305dcd897d380498bf38c9a1992bfafab763"], "follower_count": 1298, "custody_address": "0xcf16c0e28dcb5e82f0b9a77a46d6594e6ecb816d", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x8b67305dcd897d380498bf38c9a1992bfafab763"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/yota-kakuda/tokyo-jihen-yota-kakuda-edit\"}"}', NULL), - (259493, '0x4287e67ad2b783f2e8d361e5a6bec9c1cd2a5345', 0, 1, '2024-05-05 15:31:32+00', 0, 2, '{"fid": 290640, "object": "user", "pfp_url": "https://i.imgur.com/O5ZNI75.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "jjjjjuuuuu", "power_badge": false, "display_name": "jjjjjuuuuu🎩🍖", "active_status": "inactive", "verifications": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "follower_count": 979, "custody_address": "0xc6ff0a3a40b66452b33aa97efb339d5bf3f21f9d", "following_count": 495, "verified_addresses": {"eth_addresses": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rararasputree/fantasy-meiko-nakahara-1983?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268814, '0xf681ef398f53f19608e7ba357a7832609d994b96', 0, 1, '2024-05-05 16:33:38+00', 0, 1, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 235, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bass-822677338/thundercat-a-fans-mail-tron-song-suite-ii?in=hweepain/sets/choices&si=6b7abc332c9b4aaead9dd7fb5bb02493&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (271379, '0x26da03085108f84c142aec7368b3a35b131320c1', 0, 1, '2024-05-05 16:53:32+00', 0, 1, '{"fid": 389318, "object": "user", "pfp_url": "https://i.imgur.com/tdvTm0m.jpg", "profile": {"bio": {"text": "Hello💙\n꿈은 멀리 있지 않다🌸 바로 지금 내 눈앞!", "mentioned_profiles": []}}, "username": "skrud3399", "power_badge": false, "display_name": "kkott_mariban🎩🍖", "active_status": "inactive", "verifications": ["0x4b304bd0133127f2f76b4c7e04b619cdb1c3fa5c"], "follower_count": 1852, "custody_address": "0x8085d8dde495f41e78678b5aad2ca1c5f180d79b", "following_count": 1635, "verified_addresses": {"eth_addresses": ["0x4b304bd0133127f2f76b4c7e04b619cdb1c3fa5c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jxnscCye1uxQn23W8\"}"}', NULL), - (265756, '0xaf0374ba3faf5bccd81b1fd04be8a6c580721536', 0, 1, '2024-05-05 16:14:05+00', 0, 0, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1866, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1543, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/7VpY7ukQFwza5ZD59\"}"}', NULL), - (265655, '0x31590444e9fd3b682fc19ef0c1ce219ccf530045', 0, 1, '2024-05-05 16:11:42+00', 0, 1, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 772, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 1311, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qvRv6tm4BrDtnYi46\"}"}', NULL), - (265702, '0xc2273a5db62153a23be07da852f906288d1931dd', 0, 1, '2024-05-05 16:13:21+00', 0, 0, '{"fid": 499109, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ffbfd95-f8b1-45ec-4924-0e040757fa00/original", "profile": {"bio": {"text": "조아요만눌러도 가요 ^^", "mentioned_profiles": []}}, "username": "rizzel", "power_badge": false, "display_name": "rizzel", "active_status": "inactive", "verifications": ["0x41dd6696fc637b81d10198a43a0e19f57c29d02e"], "follower_count": 766, "custody_address": "0x095cac266248cbd20c4a640bc2a07e6d217dc46f", "following_count": 664, "verified_addresses": {"eth_addresses": ["0x41dd6696fc637b81d10198a43a0e19f57c29d02e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sandkardhoho/yang-da-il-dear-you-from-me?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (922290, '0x63bd8fd3bb2d42d4075ad472a88e008116a5dc24', 0, 1, '2024-05-07 07:24:16+00', 0, 4, '{"fid": 503541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7bd157f-1901-484d-4e68-9a2d9c7abe00/rectcrop3", "profile": {"bio": {"text": "✔️소소한 일상공유✔️소소한 행복🍀 \n\n✔️The best is yet to come🔥", "mentioned_profiles": []}}, "username": "jmggang", "power_badge": false, "display_name": "PassionJM", "active_status": "inactive", "verifications": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "follower_count": 898, "custody_address": "0x3e587e88dca50b6e3f0b99f2645fefbb283ebe7d", "following_count": 922, "verified_addresses": {"eth_addresses": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/44vqKcfhYf9aW8oE7\"}"}', 'sonata'), - (283898, '0xabbe6e56c9a9eb80aa4e5e82430d913f6419d2ed', 0, 1, '2024-05-05 18:35:20+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/e7kox8ac6awd/sets/05dk8tw2uq13?si=f56c270ec84349968f903ef15910bce5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (265708, '0xb060f08b543cf423b37106151fc6195c2623d94c', 0, 1, '2024-05-05 16:12:42+00', 0, 0, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2649, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2736, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u7BmK7WJ5D7PeCS96\"}"}', NULL), - (283902, '0xab385f901a0a32c15b1617a0e0fbf40df8f55e42', 0, 1, '2024-05-05 18:35:04+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qfnnes7mnbb9/sets/ynhjb8itdcdi?si=f23303185ff147d98b86e82f0e8e8424&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268994, '0xb0493b8a7bc18a774eef4b7cf4fc03b399f28bec', 0, 1, '2024-05-05 16:35:49+00', 0, 0, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 394, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 334, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/56v8WEnGzLByGsDAXDiv4d?si=3f50a8218e0d495a\"}"}', NULL), - (283900, '0x28643b39f2052d5595eda79110a2ff54a94135cd', 0, 1, '2024-05-05 18:34:44+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/xpyjmhei5xoy/sets/bgm-st?si=80a8c288e9714bd0bdffd72337cb8951&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (674974, '0x08ecf2627b83a970f2180662d16a6ab218fbfaad', 0, 1, '2024-05-06 16:10:09+00', 0, 0, '{"fid": 491462, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f37f288c-17b8-461d-5675-95640156a900/original", "profile": {"bio": {"text": "Interesting to getting money", "mentioned_profiles": []}}, "username": "bannoo", "power_badge": false, "display_name": "Bannoo", "active_status": "inactive", "verifications": ["0x9ed3a8db7e0b9f13dc76b47fac7ef946b6ca42b2"], "follower_count": 343, "custody_address": "0xaf6c8d9d28e741d59eaa4117f0aac63c7ff93a5d", "following_count": 831, "verified_addresses": {"eth_addresses": ["0x9ed3a8db7e0b9f13dc76b47fac7ef946b6ca42b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hans-ole-j-rgensen/sets/jessica-folcker-jessica?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'checkin'), - (265666, '0x3f5b47599c7a678c593998b8d5e0f7649e562258', 0, 1, '2024-05-05 16:11:26+00', 0, 8, '{"fid": 509433, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca5fc429-4470-4ae4-865e-3fdc1005c700/rectcrop3", "profile": {"bio": {"text": "I love travel ❤\nLove talking with friends ❤\nLove sharing information ❤\nFollow me❤", "mentioned_profiles": []}}, "username": "!509433", "power_badge": false, "display_name": "Reeyuaa", "active_status": "inactive", "verifications": ["0x07004a13f78c13dd8e6678414dd33a2fd7c407f4"], "follower_count": 304, "custody_address": "0x7ef03131810cff12771418f50a68b339ffdf075f", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x07004a13f78c13dd8e6678414dd33a2fd7c407f4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6XQHlsNu6so4PdglFkJQRJ?si=7NwUIjShQfa9UUWPBlA6JA\"}"}', NULL), - (283899, '0x8689bbacdfc44d1464e3bda1abbdb3e0542e860c', 0, 1, '2024-05-05 18:35:24+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/e7kox8ac6awd/sets/05dk8tw2uq13?si=f56c270ec84349968f903ef15910bce5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (273282, '0x4a6d3e1e30ff6a0f794d932c7628a6a6290bc9fd', 0, 1, '2024-05-05 17:06:38+00', 50, 1, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 1942, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/seanjmundy/sanctus\"}"}', NULL), - (273353, '0x57cc0f893f054a19cb17a1953200d2217d3cc287', 0, 1, '2024-05-05 17:08:12+00', 0, 0, '{"fid": 17879, "object": "user", "pfp_url": "https://i.imgur.com/ZEiffdm.jpg", "profile": {"bio": {"text": "Web3 Game / NFT \n\nTwitter(X): https://twitter.com/uhohoi5/ (凍結中🧊)\n新垢: https://twitter.com/tyoriso02\nDorakula: https://drakula.app/user/tyoriso", "mentioned_profiles": []}}, "username": "tyoriso", "power_badge": false, "display_name": "tyoriso👻🎩🔄🔮🍖", "active_status": "inactive", "verifications": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "follower_count": 887, "custody_address": "0x1493c7d5eeeac5ebcfe1877c3c57c6ae40385f29", "following_count": 854, "verified_addresses": {"eth_addresses": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eHEDi1csRWaPJitR9\"}"}', NULL), - (283901, '0xdaafaad1f6b642d771e79eaa5152d3587e293756', 0, 1, '2024-05-05 18:34:50+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-223699013/sets/f8f3vwaojc1s?si=867dfbb622cd491b8cf16bada3eb5012&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (275302, '0xfe8f5eba34efeef9ee76c13d4a25f1baa1899b2f', 0, 1, '2024-05-05 17:33:57+00', 0, 0, '{"fid": 512773, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7684d554-0eec-4f7e-cada-b4c0e9004a00/rectcrop3", "profile": {"bio": {"text": "Hello❤️❤️\n\nI wish you all good health and happiness.\n\nLet''s all be rich.", "mentioned_profiles": []}}, "username": "!512773", "power_badge": false, "display_name": "Happyforyou", "active_status": "inactive", "verifications": ["0xf8204e783aecb664694b645e5459582d2e3bc083", "0xe0bd010be165fc0acde016fc7048f695731d8053"], "follower_count": 105, "custody_address": "0x035643f71380a717f6192e16d1d12caa42eef073", "following_count": 282, "verified_addresses": {"eth_addresses": ["0xf8204e783aecb664694b645e5459582d2e3bc083", "0xe0bd010be165fc0acde016fc7048f695731d8053"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/officialmaxmusic/max-still-new-york-feat-joey-bada?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (275607, '0x5e37cf5e88d6f0bb5452efe4081d5ad760760f6c', 0, 1, '2024-05-05 17:41:18+00', 0, 0, '{"fid": 291140, "object": "user", "pfp_url": "https://i.imgur.com/Xwdx5DY.gif", "profile": {"bio": {"text": "F4F 몽말인디 알디?😊\nDrakula 👇 👇 👇 \nhttps://drakula.app/user/9bro\n", "mentioned_profiles": []}}, "username": "9bro", "power_badge": false, "display_name": "9rohem", "active_status": "inactive", "verifications": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "follower_count": 2881, "custody_address": "0xa6c71b45173d0ef675c910a85afefa539a69b101", "following_count": 1956, "verified_addresses": {"eth_addresses": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aespaofficial/spicy?si=20f7f47b61904a6781bfcf4f41ccdcf3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283894, '0xc1c233687e86542aeb31aaf0d2a2350ff5ce6b68', 0, 1, '2024-05-05 18:35:38+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/benjamaporn-chuadsalung/mc-feat?si=caa678c5680146029cc96a6671c2d539&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283897, '0x8b3f7bfc0e2c81eea2eb876139f707a60721f914', 0, 1, '2024-05-05 18:35:44+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mnt4alj1dpyy/02-mc-feat?si=1aa38b1592394dccb71e7f748ac8b639&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160319, '0x078af9bb0ac931f3c79dceba46e1a81c2f75f739', 0, 1, '2024-05-08 20:45:21+00', 0, 1, '{"fid": 12036, "object": "user", "pfp_url": "https://i.imgur.com/G0JZ74M.jpg", "profile": {"bio": {"text": "Artist | Digital Alchemist \n\nbeacons.ai/benalistair", "mentioned_profiles": []}}, "username": "benalistair", "power_badge": true, "display_name": "Benjamin Alistair ", "active_status": "inactive", "verifications": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "follower_count": 285, "custody_address": "0xdf99e8dfff593e38d1f32e594ee485ed615ce0fa", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/benalistair/late-night\"}"}', NULL), - (357071, '0xba32e6d8df86a6fd129920bd5016872154d6a63b', 22, 1, '2024-05-06 01:52:57+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1133, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1508, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share92/yerin-baek-0310?si=9bfc37c1cd334b188bb5c65b980ad54a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (356688, '0x601d39ced24c6ebb694bc66c1ccbe0be5cd6e78d', 0, 1, '2024-05-06 01:49:04+00', 0, 1, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 818, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 928, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NCDJ2QTUGae1ieKg6\"}"}', NULL), - (283895, '0xce7f5a37ee48f515e61dd0439b99f45fc109c5f5', 0, 1, '2024-05-05 18:34:56+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sj01f9bpjddb/sets/2000a1?si=64e95c30d70a45dcb81a6f4d31c2a7a4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (276088, '0x1004ac1b0a44467626941942e74508ebe2534c62', 0, 1, '2024-05-05 17:44:45+00', 0, 6, '{"fid": 323021, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiglu6425tzwqqzolnnoqimdal7dg37auj5ikdvvjnrzlm2i4phd2u", "profile": {"bio": {"text": "Base ARMY\nIm trying to be useful here \nI love web3 evolution ", "mentioned_profiles": []}}, "username": "aryanshah", "power_badge": false, "display_name": "Aryan🎩🔵🍕", "active_status": "inactive", "verifications": ["0x5c70940b0f95609e9f82908f778136b46a7f3e22"], "follower_count": 2301, "custody_address": "0x0bb3b646762351798cd096a59130a6d67961d3c4", "following_count": 3102, "verified_addresses": {"eth_addresses": ["0x5c70940b0f95609e9f82908f778136b46a7f3e22"], "sol_addresses": ["24MC1gFU7k4cmWLnuDL3Qj7HJomk8AnWsYDhUFSZLGrn"]}}', '{"{\"url\":\"Listen to حصین و حمید صفت کبک Kabk [@NewMusic]بهترین موزیک ها در@mhoseinmdd by mohammad hosein mohammaddoost on #SoundCloud https://on.soundcloud.com/t3ND2\"}"}', NULL), - (284630, '0xa41dd6bf5e0713a1a51f279f40aef35603de6edc', 0, 1, '2024-05-05 18:48:10+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/4rdxhzrjshei/goodbye-mp3?si=0bcf4926207342269e31da361781ad9a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283755, '0xecd9bce2068641e7807e29af12d809998c400672', 100, 1, '2024-05-05 18:31:44+00', 0, 3, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 416, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 424, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4rznnFpPIGET8lWpR5wZJ5?si=444665285dbb4637\"}"}', 'albumoftheday'), - (319812, '0xcbc8b90a597ae7440855a9fe4f6c8962bc4115a3', 0, 1, '2024-05-05 21:37:05+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 593, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/noranotes/shades-of-goodbye?ref=clipboard&p=a&c=0&si=3184c2832e0347638216fd7602165a02&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284618, '0x620bdd07cd156d88a6368ad7497d674ebabca690', 0, 1, '2024-05-05 18:48:16+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jiyojung77/003-1?si=a3f52e0257b0401dae646ff0e6710696&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (275211, '0xf008806e9dc26ad7ed07ea03863c940142ff4d51', 0, 1, '2024-05-05 17:32:09+00', 0, 0, '{"fid": 512773, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7684d554-0eec-4f7e-cada-b4c0e9004a00/rectcrop3", "profile": {"bio": {"text": "Hello❤️❤️\n\nI wish you all good health and happiness.\n\nLet''s all be rich.", "mentioned_profiles": []}}, "username": "!512773", "power_badge": false, "display_name": "Happyforyou", "active_status": "inactive", "verifications": ["0xf8204e783aecb664694b645e5459582d2e3bc083", "0xe0bd010be165fc0acde016fc7048f695731d8053"], "follower_count": 105, "custody_address": "0x035643f71380a717f6192e16d1d12caa42eef073", "following_count": 282, "verified_addresses": {"eth_addresses": ["0xf8204e783aecb664694b645e5459582d2e3bc083", "0xe0bd010be165fc0acde016fc7048f695731d8053"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musicbyblanks/what-you-got-ayo?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283949, '0xa886a201fe734d1337c14dd9fc2168dec267c5ea', 0, 1, '2024-05-05 18:36:59+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pongpangexol/yoon-mi-rae-school-2015-who?si=1fafd6b53fe64adcaf2f0e4e5caefe30&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283955, '0xca9c21fa465d4aa34744102c6acbd289200b4be7', 0, 1, '2024-05-05 18:36:42+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/frisson_dnb/yoon-mi-rae-black-happiness?si=48992780368c42f3bd1468677a7ca43b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (357187, '0xa5522a69f6e59e2a905737ac8eb7ca7e98d6a4d9', 0, 1, '2024-05-06 01:55:14+00', 0, 5, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3133, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2969, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/H8nCn\"}"}', 'sonata'), - (319797, '0x02644e7b6d168ba98f5fc9d674021b75b0e08fe2', 0, 1, '2024-05-05 21:36:46+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 593, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/michaelgeroww/mine?ref=clipboard&p=a&c=0&si=7d0f2e9f1dd4460c84d9995bd65dbd5c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284621, '0x99fd18e00ecea9f6a59c2a4565815287225aa245', 0, 1, '2024-05-05 18:48:04+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-902649010/flac?si=6f5722b737ed4d389f313ed5ccc71ce1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (384103, '0xdcbc4834ffe7d65523efe0f4712594553619875d', 0, 1, '2024-05-06 04:08:30+00', 0, 2, '{"fid": 501169, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a5e704c-06c8-48ca-ec18-588c83ac3700/rectcrop3", "profile": {"bio": {"text": "Top Amateur", "mentioned_profiles": []}}, "username": "haejing", "power_badge": false, "display_name": "haejing🎩🍖", "active_status": "inactive", "verifications": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "follower_count": 1216, "custody_address": "0x68ea6421d2795e06f41e54fe856b8ab596127379", "following_count": 610, "verified_addresses": {"eth_addresses": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NFgXtaDbDsV5h69JA\"}"}', NULL), - (276836, '0xfc0d0a583a377c323f8f9f844116aa27e51adfaa', 0, 1, '2024-05-05 17:46:58+00', 0, 0, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4937b3e-c7b7-4a50-e3f5-d3c06acf0300/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 78, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 291, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cdBQzHo3CiG9vVoo7\"}"}', NULL), - (283947, '0x1acee91e2d0ce0e368e5810f5e7d2f3e985fb597', 0, 1, '2024-05-05 18:36:37+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/clouddnnyy/t-1?si=74728b2dcc0d48aa9946a8a4344d2733&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (277344, '0x0b67bff38c3e9b6a6a4b2ac8e4732b50a78008c2', 0, 1, '2024-05-05 17:47:35+00', 0, 0, '{"fid": 291140, "object": "user", "pfp_url": "https://i.imgur.com/Xwdx5DY.gif", "profile": {"bio": {"text": "F4F 몽말인디 알디?😊\nDrakula 👇 👇 👇 \nhttps://drakula.app/user/9bro\n", "mentioned_profiles": []}}, "username": "9bro", "power_badge": false, "display_name": "9rohem", "active_status": "inactive", "verifications": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "follower_count": 2881, "custody_address": "0xa6c71b45173d0ef675c910a85afefa539a69b101", "following_count": 1956, "verified_addresses": {"eth_addresses": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share131/aespa-next-level-1?si=f79a3d4e36e74022bc5673371650d77b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283950, '0x8384def188fa35a95a8eb4ea9407fba8e3c7def6', 0, 1, '2024-05-05 18:36:47+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user8020331/tv-feat-of-10cm-t?si=304cadd3f6b04e3db2036fc855af9c88&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284625, '0x8f5882a5810f12eabe471cfcb4a65d932c2c97a1', 0, 1, '2024-05-05 18:48:23+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/54JKnDB3CzVu8wNAOM27BI?si=e176eec0b6dc4e28\"}"}', NULL), - (540445, '0xfdbb888ba382ff4d48dccb39d9d602e922ec5ae4', 0, 1, '2024-05-06 09:54:29+00', 0, 2, '{"fid": 439362, "object": "user", "pfp_url": "https://i.imgur.com/HwYnYQY.jpg", "profile": {"bio": {"text": "Life is live", "mentioned_profiles": []}}, "username": "moji21", "power_badge": false, "display_name": "Mojtaba🎩🍖", "active_status": "inactive", "verifications": ["0xfae69f3ba41a4b7bce0f8b993768de6b0f304b2e"], "follower_count": 2356, "custody_address": "0xafe12f922a6703fa266c8ca6facac05c70b102dc", "following_count": 3338, "verified_addresses": {"eth_addresses": ["0xfae69f3ba41a4b7bce0f8b993768de6b0f304b2e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pinegroveband/need-2-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165437, '0x95e2fb3ee72f9f24c31c513a44244ebb79b89088', 10, 1, '2024-05-10 14:38:25+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/marea\"}"}', NULL), - (284617, '0x9b7de331931df68daac2dc3bd2f459b5af2ecbb9', 0, 1, '2024-05-05 18:48:22+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ecimel-ca/parkhyoshin-breathmv?si=12d6af4f395f4403a6a1e6f20b762381&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283948, '0xd3a2921c8891bbf8d68e1e44b8d78ead173748eb', 0, 1, '2024-05-05 18:36:31+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qkrals-88/t-as-time-goes-by?si=8bad86ceddca4dd9b939716f8510a45a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284628, '0x63b29efa7baf43b2f594322a3359a00ca2934a08', 0, 1, '2024-05-05 18:48:28+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pwnn3s242jay/park-hyo-shin?si=c8798fc29ec04b12a594893edc584b55&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283954, '0x63fcaf500d954622dd9b34eab5b8549dc4b20aed', 0, 1, '2024-05-05 18:36:34+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost23/yoonmirae-flower-crash-landing-on-you-ost-part-2?si=0272eee75fa84b00bc088c800b0e7b8d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283951, '0xe46d5a402a55ca95e22c6ae821a9fc03ae366d81', 0, 1, '2024-05-05 18:37:31+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki33/full-album-seventeen-17-is-right-here?si=3119646b43c148cd882af190a356c218&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (278313, '0x408e87cdcfc4df627bef674eab37f11a7e7048eb', 0, 1, '2024-05-05 17:51:11+00', 0, 2, '{"fid": 364866, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3db414b-d8dc-4eda-dacd-1a9833fd1d00/original", "profile": {"bio": {"text": "Japanese Creative Director who lived in Bangkok for 20 years and came back with an Asian brain 🇹🇭🇯🇵/フォロバ95%\nhttps://yoneken.xyz/\n/graphic\n/mattari\n/picknews", "mentioned_profiles": []}}, "username": "yoneken", "power_badge": false, "display_name": "YoNeKeN⚫🎩🔮🍖", "active_status": "inactive", "verifications": ["0x60702925f9966df283d10509ef36ffbaae1f4ca5", "0xb0958af4673e50ecb7e68b97a8b34bd4627366c4"], "follower_count": 605, "custody_address": "0x8ca92fe4586427b99537113157d500f290d354fd", "following_count": 607, "verified_addresses": {"eth_addresses": ["0x60702925f9966df283d10509ef36ffbaae1f4ca5", "0xb0958af4673e50ecb7e68b97a8b34bd4627366c4"], "sol_addresses": ["9hkD75TipWZcEoNjcLDvdEUCdS7yychVfK6RgZvwsiDC"]}}', '{"{\"url\":\"https://open.spotify.com/track/6gSalwEvVQfSFiqgwfyITp?si=HxMYW2eQTnuyh8ngnuORxQ\"}"}', NULL), - (284840, '0x07908afb496155956821f1fecc5cfcab2b2dc172', 0, 1, '2024-05-05 18:51:49+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/taejun-kim-118707377/mc-feat-mp3?si=10a22d56fffb45938f399e55c0daba3b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1165438, '0x2834ff7b17e571303fd5b2cbf4d335bd2c57ae62', 10, 1, '2024-05-10 14:38:17+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/kush\"}"}', NULL), - (540438, '0x9ad7e0112b061523644703aebfc36434d8c5dd83', 0, 1, '2024-05-06 09:54:06+00', 0, 2, '{"fid": 413826, "object": "user", "pfp_url": "https://i.imgur.com/PuNxXm9.jpg", "profile": {"bio": {"text": "I like crypto", "mentioned_profiles": []}}, "username": "shily", "power_badge": false, "display_name": "Shily🔵🍖🧀🎩", "active_status": "inactive", "verifications": ["0x814465b484b60fbf50ee7a14142e845d4043bf4d"], "follower_count": 1752, "custody_address": "0x50ff82c6c6d4ddaf1259fc73e994721dc6218a45", "following_count": 1479, "verified_addresses": {"eth_addresses": ["0x814465b484b60fbf50ee7a14142e845d4043bf4d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gkzhYVBxCfv67fHh7\"}"}', NULL), - (278791, '0x620bea7763a45bccbcae36bda14ad69038709301', 0, 1, '2024-05-05 17:53:33+00', 0, 4, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 499, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4G1qRhOk1YY0kewtMaCrMC?si=BVbwv5YaSYCewGfgEUtRHg\"}"}', NULL), - (283952, '0xbab3dbc54bf45f06bb329cb03971f59a629f9b7d', 0, 1, '2024-05-05 18:36:33+00', 0, 0, '{"fid": 453912, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37a3c862-97c0-4445-4a33-9dbb259b1800/rectcrop3", "profile": {"bio": {"text": "Hello, my name is Anthony Duque, I am Venezuelan, I was born in 1999. I like to listen to music and play RPGs.", "mentioned_profiles": []}}, "username": "itsduque", "power_badge": false, "display_name": "Anthony🚀🥷", "active_status": "inactive", "verifications": ["0xec2dd18e6d6d814fbb3e7a48ced0e3352344e5a0"], "follower_count": 110, "custody_address": "0x12f4f8ce5a8a37e0064d257499c785f897398657", "following_count": 277, "verified_addresses": {"eth_addresses": ["0xec2dd18e6d6d814fbb3e7a48ced0e3352344e5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rcNKq7T3MDhovMyZ7\"}"}', NULL), - (278576, '0xeeb666e6b2fadca6ab4aac3111e128096f91ef68', 0, 1, '2024-05-05 17:52:38+00', 0, 2, '{"fid": 291140, "object": "user", "pfp_url": "https://i.imgur.com/Xwdx5DY.gif", "profile": {"bio": {"text": "F4F 몽말인디 알디?😊\nDrakula 👇 👇 👇 \nhttps://drakula.app/user/9bro\n", "mentioned_profiles": []}}, "username": "9bro", "power_badge": false, "display_name": "9rohem", "active_status": "inactive", "verifications": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "follower_count": 2881, "custody_address": "0xa6c71b45173d0ef675c910a85afefa539a69b101", "following_count": 1956, "verified_addresses": {"eth_addresses": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share131/aespa-next-level-1?si=210fd4d899874c3e8434849ebbe2112f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (277650, '0x60ad33e20176514806a036f07894140ea2e93cb1', 0, 1, '2024-05-05 17:49:19+00', 0, 3, '{"fid": 386015, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiakboqrtodndz725wpgcy5kcucfzvjfsduukhgif423lfa673t66m", "profile": {"bio": {"text": "Medical student", "mentioned_profiles": []}}, "username": "mohamad592", "power_badge": false, "display_name": "Mo🍖ad 🎩⬆️🍩 ⛓️", "active_status": "inactive", "verifications": ["0xd24df79bd6588a9f16205a4976ee1a7c0faccebb"], "follower_count": 793, "custody_address": "0xb9f537ee1672bf81cf6ed5983f7ec6377f8dc1d2", "following_count": 1847, "verified_addresses": {"eth_addresses": ["0xd24df79bd6588a9f16205a4976ee1a7c0faccebb"], "sol_addresses": ["CqPAPrdGZgftrC8kB7HQfZTHEKNC7TVj8KBP3Y1V4qcA"]}}', '{"{\"url\":\"https://on.soundcloud.com/18UD7uqozy8aQQq79\"}"}', NULL), - (284613, '0xfee7361e0b3fda2b8c69b79c07900a704b87ced4', 0, 1, '2024-05-05 18:48:36+00', 0, 1, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dfs-1201/pahjfo1vlbd8?si=cfd6ff258bba4ff8a4dea0a677abe7fb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283991, '0xc46d643efc385d04bcc6db5aaf2126f145d08e25', 0, 1, '2024-05-05 18:37:48+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki32/bssseventeen-ost-queen-of-tears-ost-part-1?si=eea109ce64f949c5be56042014260836&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284837, '0x50a0ae62422267149bbe1114cf27feb8072700b9', 0, 1, '2024-05-05 18:51:43+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/58JkIC1jK1NZNSJeLXfpWt?si=3f0c1c93d38c485d\"}"}', NULL), - (278932, '0x5bbe9b5c59fcf33b91e4da752b19749af5d8a2d4', 0, 1, '2024-05-05 17:54:52+00', 0, 2, '{"fid": 444424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/608b538c-474a-4a8f-9c21-e0eb8cea5c00/rectcrop3", "profile": {"bio": {"text": "Medical Doctor💉\nFinancial Pro 🎓\nAthlete 💪", "mentioned_profiles": []}}, "username": "bigmag", "power_badge": false, "display_name": "Call Me Doc🩺🎩🧑‍⚕️", "active_status": "inactive", "verifications": ["0x9f50a374c0081668971cb32fd5c0c550e559834a", "0x9f50a374c0081668971cb32fd5c0c550e559834a"], "follower_count": 301, "custody_address": "0xd44a2bc255ac76ed6c88844e5ef407159d6615be", "following_count": 356, "verified_addresses": {"eth_addresses": ["0x9f50a374c0081668971cb32fd5c0c550e559834a", "0x9f50a374c0081668971cb32fd5c0c550e559834a"], "sol_addresses": ["291GwzPvxNrbMTvvga8yrLPimkDbmRUjCwckdckdyEvR"]}}', '{"{\"url\":\"https://m.soundcloud.com/slowedreeverb/slipknot-duality-1\"}"}', NULL), - (283989, '0x43e82ee8d365a450aae1b56e8ca08025a974b34f', 0, 1, '2024-05-05 18:38:04+00', 0, 0, '{"fid": 393047, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d466d08e-47ce-4a92-cb7c-04a1e2cfa600/original", "profile": {"bio": {"text": "Otter is my fren 🦦💜 | Crypto 💰 | Funny art 🎨 | Pro-warpcaster ♾️ | Loving people who have a sense of humor 👑 ", "mentioned_profiles": []}}, "username": "seaotter-queen", "power_badge": false, "display_name": "Sea otter🦦💜 ", "active_status": "inactive", "verifications": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "follower_count": 3088, "custody_address": "0xd338d15b6526fce37a0ce3a1a046200ea3bd9e7a", "following_count": 1299, "verified_addresses": {"eth_addresses": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "sol_addresses": ["8eqT4DEY5foT9DMNhCFqGPYi7MnWo893XQFNxJnsyYPx"]}}', '{"{\"url\":\"https://soundcloud.com/joachim-nielsen-3/peggy-gou-nanana-it-goes-like-speed-up?si=d5fa8febe2844fecb55cb81207ba8b58&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283953, '0x1619b228db9bea6aaa70d3dbc00a546a2c8f39e1', 0, 1, '2024-05-05 18:37:18+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-474225600/sets/pi40334q4h82?si=45b4a2dd8d9a47e9abe69832ec560618&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283992, '0x2502b1200d1403fdc100b9c9bb8dd6c93d61c926', 0, 1, '2024-05-05 18:37:57+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iew-v-828617851/bss-just-do-it?si=d79dd5c0512f4a8cb3bf59ad43f0e17b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283986, '0xeb6adce867dde6c47daeba54204e39aa22237701', 0, 1, '2024-05-05 18:38:41+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-971230359/sets/playlist-bruno-mars?si=76be4616c4ae47c48f506c747db322a2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284627, '0x5b09b085589e6ca9fbda9c23d3c96965a26de078', 0, 1, '2024-05-05 18:48:35+00', 0, 0, '{"fid": 393047, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d466d08e-47ce-4a92-cb7c-04a1e2cfa600/original", "profile": {"bio": {"text": "Otter is my fren 🦦💜 | Crypto 💰 | Funny art 🎨 | Pro-warpcaster ♾️ | Loving people who have a sense of humor 👑 ", "mentioned_profiles": []}}, "username": "seaotter-queen", "power_badge": false, "display_name": "Sea otter🦦💜 ", "active_status": "inactive", "verifications": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "follower_count": 3088, "custody_address": "0xd338d15b6526fce37a0ce3a1a046200ea3bd9e7a", "following_count": 1299, "verified_addresses": {"eth_addresses": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "sol_addresses": ["8eqT4DEY5foT9DMNhCFqGPYi7MnWo893XQFNxJnsyYPx"]}}', '{"{\"url\":\"https://soundcloud.com/subdelirium/one-summers-day-joe-hisaishi?si=669b83fbb1b8458aa65ba109dbd74291&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283990, '0xd0d920befdd55b90751bc44fa849af564f80e148', 0, 1, '2024-05-05 18:37:52+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/amxbz5tvv0gp/7-remix-feat-peder-elias?si=4da9a61e226040ba9fabdda5f1929303&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283987, '0x5117a66b3c8a375cbf4144ce118c7fd1693b4b5e', 0, 1, '2024-05-05 18:38:06+00', 0, 1, '{"fid": 237763, "object": "user", "pfp_url": "https://i.imgur.com/xMlNksi.jpg", "profile": {"bio": {"text": "Adventuring through web3", "mentioned_profiles": []}}, "username": "0xadventurer", "power_badge": false, "display_name": "0xadventurer", "active_status": "inactive", "verifications": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "follower_count": 62, "custody_address": "0x2ce9b30eee00b8bcb204a1b9976db7316c21b4f1", "following_count": 218, "verified_addresses": {"eth_addresses": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aEmSapph1J4hHdqy8\"}"}', NULL), - (284629, '0x47af72280ea50db953d5ab2ca7595d4d56e681c6', 0, 1, '2024-05-05 18:48:00+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pelix_yoon/jlgyjpyemvtd?si=d7c6129b89474558b265439968ab436b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (283988, '0x566a2f736c7cab4e4d980c26578b5a72867cd0c6', 0, 1, '2024-05-05 18:38:01+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/novellistening/seventeen-feat-trap-edm-remix-prod-novel-5?si=ce21ff0330e64ccfa68346e901cdcbbc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284833, '0x75364c9807a3421658ab1787c8662574c21e0bcd', 0, 1, '2024-05-05 18:51:15+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2z4U9d5OAA4YLNXoCgioxo?si=367cf0fcfd9048c7\"}"}', NULL), - (284822, '0xb7389889170aadd974308af9bf3e5bec2c061f51', 0, 1, '2024-05-05 18:51:23+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1jlG3KJ3gdYmhfuySFfpO1?si=3f6f89706c904ff2\"}"}', NULL), - (284768, '0xef20fa3d52b088614181168de5b227fe065cba50', 0, 1, '2024-05-05 18:50:38+00', 0, 0, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2MMRWb4gn8mwpK5RLlPtl5?si=365dc357635342fa\"}"}', NULL), - (279902, '0x224b0a17071840bd8be0daad9505e747cdb94a42', 0, 1, '2024-05-05 17:56:31+00', 0, 0, '{"fid": 444424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/608b538c-474a-4a8f-9c21-e0eb8cea5c00/rectcrop3", "profile": {"bio": {"text": "Medical Doctor💉\nFinancial Pro 🎓\nAthlete 💪", "mentioned_profiles": []}}, "username": "bigmag", "power_badge": false, "display_name": "Call Me Doc🩺🎩🧑‍⚕️", "active_status": "inactive", "verifications": ["0x9f50a374c0081668971cb32fd5c0c550e559834a", "0x9f50a374c0081668971cb32fd5c0c550e559834a"], "follower_count": 301, "custody_address": "0xd44a2bc255ac76ed6c88844e5ef407159d6615be", "following_count": 356, "verified_addresses": {"eth_addresses": ["0x9f50a374c0081668971cb32fd5c0c550e559834a", "0x9f50a374c0081668971cb32fd5c0c550e559834a"], "sol_addresses": ["291GwzPvxNrbMTvvga8yrLPimkDbmRUjCwckdckdyEvR"]}}', '{"{\"url\":\"https://m.soundcloud.com/user-726706277/rammstein-mein-herz-brennt-extended-version\"}"}', NULL), - (278793, '0xae66a29d538ebcb0fed200a1f597037bc3787923', 0, 1, '2024-05-05 17:53:53+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 378, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 627, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/pablocostas/gary-moore-the-prophet\"}"}', NULL), - (280233, '0xb9a827e24a85b4659667b1dd035ab5af33d36869', 0, 1, '2024-05-05 17:58:08+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 379, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/parismusicmusic/hotel-california-originally-1\"}"}', NULL), - (279484, '0x47d67341f73344633eee667874e2fac8522f3f09', 0, 1, '2024-05-05 17:55:19+00', 0, 0, '{"fid": 405239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c7163af-201c-4247-4309-84bd13852700/rectcrop3", "profile": {"bio": {"text": "Be a voice, Not an echo!💎\nCrypto lover", "mentioned_profiles": []}}, "username": "omidji25", "power_badge": false, "display_name": "Omid 🎩", "active_status": "inactive", "verifications": ["0x7295997ceff17d184e7a8cc2f9422165a4070112"], "follower_count": 328, "custody_address": "0xa678689b05e7e08d902bb334e92cfa170ffb85eb", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x7295997ceff17d184e7a8cc2f9422165a4070112"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Faanmj5pGvz8htfk7\"}"}', NULL), - (357331, '0x99a0eeedbe71c56cb39457a64f9e46409abe06b3', 22, 1, '2024-05-06 01:57:29+00', 0, 1, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 1992, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2827, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/charlieputh/left-and-right-feat-jung-kook?si=2402a6fb35df448f8b3421a98c94f91c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (363621, '0x08aa7fdfed69ee49a02942ada33591ced12da50f', 0, 1, '2024-05-06 02:37:59+00', 0, 3, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1151, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 968, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oYzSS53iswdPXiNV7\"}"}', 'sonata'), - (384270, '0x780930c8b63468d20a12f3a3b84373fa5e6a42ad', 0, 1, '2024-05-06 04:09:55+00', 0, 0, '{"fid": 502049, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf5547fa-26c5-4e6a-c79f-fb509b567c00/rectcrop3", "profile": {"bio": {"text": "I''m hacker in Usa", "mentioned_profiles": []}}, "username": "welloworld", "power_badge": false, "display_name": "Codemania", "active_status": "inactive", "verifications": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "follower_count": 1618, "custody_address": "0x135ad7989e8ee71ad4f272e44d1eecd2278eecc8", "following_count": 773, "verified_addresses": {"eth_addresses": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/iu-love-wins-all\"}"}', NULL), - (336525, '0xbe21a06aa24fbc077410ba39adf20e88ff30cbcc', 0, 1, '2024-05-05 23:23:32+00', 0, 2, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2096, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2637, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85684bb7-2490-4585-5395-0de54debb100/original\"}","{\"url\":\"https://on.soundcloud.com/DuJaV\"}"}', 'sonata'), - (283946, '0x7cbc6e93e74d4c041c3dcb3594d64802a981d47a', 0, 1, '2024-05-05 18:37:24+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-288509220/sets/e?si=ade52b64e999446ebbd1d754ee403148&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284095, '0x9f67c448e01a86b37c656527cb7ffc1e600ea463', 0, 1, '2024-05-05 18:38:55+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yt6lrtaf199g/sets/hlxuedd7vitd?si=844cd989347d4a8a9ffa816322ab3a2a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284766, '0xea33c86dc680376ea9176a50c08cad554c04644f', 0, 1, '2024-05-05 18:50:57+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/feelyoon/on-on?si=bf86eff1063543599ae991b3604d3fd1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (319816, '0x556094172e054f3140af899e87432efd2dabcbe8', 0, 1, '2024-05-05 21:36:11+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 593, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/allegra-jordyn/catch-me-if-you-can?ref=clipboard&p=a&c=0&si=134e178908b24386a748d4511993a667&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (730239, '0x3c96a498759e03e7b3ba947c1f010671291bce91', 0, 1, '2024-05-06 20:51:34+00', 0, 2, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2634, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2453, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5YJSd\"}"}', 'sonata'), - (350350, '0x05005e4ccb0ff816af5559ae79c95cd926d3cae0', 0, 1, '2024-05-06 01:02:44+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (279904, '0xbce25377c35b093b662a7213763028a91732aea7', 0, 1, '2024-05-05 17:57:01+00', 0, 0, '{"fid": 414095, "object": "user", "pfp_url": "https://i.imgur.com/f1IiJJR.jpg", "profile": {"bio": {"text": "Electrical engineer seeking for the meaning of life...\nBut sometimes, you just have to enjoy the ride 🤓", "mentioned_profiles": []}}, "username": "erfan-nia", "power_badge": false, "display_name": "Erfan", "active_status": "inactive", "verifications": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "follower_count": 955, "custody_address": "0x6b517b43809b0fce8623d0654ca3d1e451b0117b", "following_count": 745, "verified_addresses": {"eth_addresses": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/imaginedragons/eyes-closed\"}"}', NULL), - (284767, '0xf2b82318616d23dde1b1c2bb1df6f5173c6c538e', 0, 1, '2024-05-05 18:50:48+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musicwindows/lena-park-ps-i-love-you?si=12de570bcc014bf2be071f24baa0fa57&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (280267, '0x6e778d28872fbfc9cb4103bc87ab426d119ac2a5', 0, 1, '2024-05-05 17:58:15+00', 0, 1, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 78, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 241, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/davyd/invictus-ft-yoshiro-mare-melodic-mix\"}"}', NULL), - (280485, '0x9dac227be9a68f3c2d9cee4d2bee8c4bdca1ce66', 0, 1, '2024-05-05 18:00:14+00', 0, 0, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2376, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1608, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UKShwCUbg4YB8G5x7\"}"}', NULL), - (280697, '0xa90feef7c87d4aa1d9553bebb52c73631c88e120', 0, 1, '2024-05-05 18:01:20+00', 0, 0, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1406, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/kj9Pxd346cP6CvCt9\"}"}', NULL), - (284094, '0xb689ed5a0b5289960398061566df15e1f1adae27', 0, 1, '2024-05-05 18:40:12+00', 0, 0, '{"fid": 458404, "object": "user", "pfp_url": "https://i.imgur.com/yHpvwyC.jpg", "profile": {"bio": {"text": "Music, films, books, rugby, bàsquet. Engineer, MBA. Visca la Terra Lliure! Gironí i català. Tsool, Stooges, 13th Floor Elevators, The Velvet Underground, ...", "mentioned_profiles": []}}, "username": "jpoubaez", "power_badge": false, "display_name": "Joan", "active_status": "inactive", "verifications": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "follower_count": 49, "custody_address": "0x7ff5f4af616edc48203d36bb2325848f44e15e46", "following_count": 155, "verified_addresses": {"eth_addresses": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0pv0BK6vaPflpUJ8aVP69G?si=ikOBjBVRSjuZT6j4vmxTQg\"}"}', NULL), - (357681, '0x02709b597f4b2e4332e64e3399226a8703542ed2', 0, 1, '2024-05-06 02:01:46+00', 0, 1, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3855, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3283, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Electronic, a playlist by Trending Music on #SoundCloud https://on.soundcloud.com/95g54\"}"}', NULL), - (280484, '0xab2a9fe5e6e928e9cd3035aeae2cbf596c07464e', 0, 1, '2024-05-05 18:00:11+00', 0, 0, '{"fid": 414095, "object": "user", "pfp_url": "https://i.imgur.com/f1IiJJR.jpg", "profile": {"bio": {"text": "Electrical engineer seeking for the meaning of life...\nBut sometimes, you just have to enjoy the ride 🤓", "mentioned_profiles": []}}, "username": "erfan-nia", "power_badge": false, "display_name": "Erfan", "active_status": "inactive", "verifications": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "follower_count": 955, "custody_address": "0x6b517b43809b0fce8623d0654ca3d1e451b0117b", "following_count": 746, "verified_addresses": {"eth_addresses": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/imaginedragons/eyes-closed\"}"}', NULL), - (280234, '0x9300706198736086a9823af00baf89cf0c854912', 0, 1, '2024-05-05 17:57:54+00', 0, 0, '{"fid": 444424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/608b538c-474a-4a8f-9c21-e0eb8cea5c00/rectcrop3", "profile": {"bio": {"text": "Medical Doctor💉\nFinancial Pro 🎓\nAthlete 💪", "mentioned_profiles": []}}, "username": "bigmag", "power_badge": false, "display_name": "Call Me Doc🩺🎩🧑‍⚕️", "active_status": "inactive", "verifications": ["0x9f50a374c0081668971cb32fd5c0c550e559834a", "0x9f50a374c0081668971cb32fd5c0c550e559834a"], "follower_count": 301, "custody_address": "0xd44a2bc255ac76ed6c88844e5ef407159d6615be", "following_count": 356, "verified_addresses": {"eth_addresses": ["0x9f50a374c0081668971cb32fd5c0c550e559834a", "0x9f50a374c0081668971cb32fd5c0c550e559834a"], "sol_addresses": ["291GwzPvxNrbMTvvga8yrLPimkDbmRUjCwckdckdyEvR"]}}', '{"{\"url\":\"https://m.soundcloud.com/marrucino/another-brick-in-the-wall-pink\"}"}', NULL), - (336531, '0x0c262829d3bc6774cc51594b7ccbbee9048cc2c7', 0, 1, '2024-05-05 23:23:17+00', 0, 0, '{"fid": 15230, "object": "user", "pfp_url": "https://i.imgur.com/WOFsV3M.gif", "profile": {"bio": {"text": "Sneakerhead, Web3, Bike NYC, Orthopedic Surgeon Sports Medicine, \nFollow /orthocast channel for the latest in orthopedics! paragraph.xyz/@arthrokinetix", "mentioned_profiles": []}}, "username": "kj", "power_badge": false, "display_name": "KPJMD", "active_status": "inactive", "verifications": ["0x137878d2e1ca1739e3f584bdf43741a739df3e7f", "0x7eb4655fda4e8cbc716af595bb961c29ddea58f1"], "follower_count": 202, "custody_address": "0x424b36dc42ddb10dfe75bf9188972e5d8c9475b5", "following_count": 65, "verified_addresses": {"eth_addresses": ["0x137878d2e1ca1739e3f584bdf43741a739df3e7f", "0x7eb4655fda4e8cbc716af595bb961c29ddea58f1"], "sol_addresses": ["CbC38wfEN2AXR9eFkiTMRGCJVVgPF1gt69tfodENaNwf"]}}', '{"{\"url\":\"https://soundcloud.com/search?q=kendrick%20lamar\"}"}', NULL), - (284158, '0x915dedee56f3a7ca781462fb7671ffee8654681e', 0, 1, '2024-05-05 18:40:55+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-372532518/g-i-dle-tomboy?si=ff5be7770a02418a95e3e0ee87bfce9d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284152, '0xf41924fc2eacf512aa301d998945ac6e2b1269a4', 0, 1, '2024-05-05 18:41:34+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/huothgmry5gh/c9fmwhpriuqn?si=88ce8655bb924107980f36e489787f4e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (319814, '0x404ebc5a985a471d3c7b233a3dbf7fb13cc2a397', 0, 1, '2024-05-05 21:36:23+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 593, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/dennis-bearr/dennis-baer-echoes-of-us?ref=clipboard&p=a&c=0&si=1a3a6258f0ca4db49b2689a820fd2bf6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (454098, '0xfa3a10e23abc86673d4e97a80a346526eaa5dd1e', 0, 1, '2024-05-06 06:49:33+00', 0, 5, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2517, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ccmgz\"}"}', 'sonata'), - (284155, '0x387adbb4f52c723cbb4c072ab659a04492420688', 0, 1, '2024-05-05 18:40:47+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki18/g-i-dle-miyeon-ost-my-dearest?si=aac647dee4c8483f907fe1152f7f3570&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (280773, '0x1c32fb36b03ecc111b669bf4774a83eea09735e2', 0, 1, '2024-05-05 18:02:44+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 379, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/beto-caprera/metallica-mama-said-rain\"}"}', NULL), - (320307, '0x49a41dc1ec23d72aa413c6d0685317c6a69c3f56', 0, 1, '2024-05-05 21:39:04+00', 0, 1, '{"fid": 483652, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/53485f7c-92d2-4163-cb6b-dd02983c2d00/rectcrop3", "profile": {"bio": {"text": "Living life one adventure at a time. \n\nInterested in modeling, Crypto & Trading\n\nFollow = follow back", "mentioned_profiles": []}}, "username": "matrix2", "power_badge": false, "display_name": "Adrina", "active_status": "inactive", "verifications": ["0x24601188b00c2131ff6f77e2694932a8281e69d7"], "follower_count": 532, "custody_address": "0x6cf1ce061de96578d814649e372e877af170eb8e", "following_count": 569, "verified_addresses": {"eth_addresses": ["0x24601188b00c2131ff6f77e2694932a8281e69d7"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Pink Floyd - Another Brick In The Wall(Mus.Ge) by permweri on #SoundCloud https://on.soundcloud.com/YK942\"}"}', NULL), - (284775, '0x3a25041dcaf05c495576a226e79bb7fc89575872', 0, 1, '2024-05-05 18:50:58+00', 0, 0, '{"fid": 404623, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibnvpblu2ehtow3ydq74ixe7ifbzkbwi2oz6rwx42mlaf5nn52uk4", "profile": {"bio": {"text": "No Risk, No Porsche 911 ", "mentioned_profiles": []}}, "username": "imhassanrezaei", "power_badge": false, "display_name": "Ha$$aN 👽🔄🎩", "active_status": "inactive", "verifications": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "follower_count": 1430, "custody_address": "0xd313785101ba70375b352462cfd38885f02429b6", "following_count": 1686, "verified_addresses": {"eth_addresses": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/r5pqPdet82jPggx7A\"}"}', NULL), - (519294, '0x28c6babed6007cffad2b07140c36e3710ce04b1e', 0, 1, '2024-05-06 08:54:06+00', 0, 3, '{"fid": 379722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2036467f-9180-461e-520e-380741901700/rectcrop3", "profile": {"bio": {"text": "I Love Hanni Pham! & NewJeans Lover.🐰❤️\nWe are so early!!!🚀🚀 Ham party letgo🍖", "mentioned_profiles": []}}, "username": "9yuu", "power_badge": false, "display_name": "Hanni Pham🍖🔵⛓️", "active_status": "inactive", "verifications": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "follower_count": 2640, "custody_address": "0xdc4948ac5d6eff31726d6d3461867d5b700333cf", "following_count": 2688, "verified_addresses": {"eth_addresses": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2pYS3JUpvFgyYsJK6\"}"}', NULL), - (284772, '0xcd1256e79275694ecc5d3af330dbb8c75e6c0998', 0, 1, '2024-05-05 18:49:34+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0IktbUcnAGrvD03AWnz3Q8?si=dfbc499a8a55446b\"}"}', NULL), - (284769, '0xe6b37d297edbf3a488bb10c8ed1184c87d5ea9e9', 0, 1, '2024-05-05 18:50:57+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5xEM5hIgJ1jjgcEBfpkt2F?si=8c6291365cd942bf\"}"}', NULL), - (1173206, '0x1870507ce55bc2e01026206fdb587610c705343b', 0, 1, '2024-05-15 10:33:47+00', 0, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 850, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 728, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/search?q=maroon%205%E3%80%80sugar\"}"}', NULL), - (284162, '0xa8b046f9695614f4ba60e63c5e226332747a3303', 0, 1, '2024-05-05 18:41:29+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cosmos-68404702/s4naye8czpb8?si=a54ac6f4005e4b8c99bd9e3bebd7a8c8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284156, '0x28dfc9fdfdbdda5d537db38be1387eca8cf7e52b', 0, 1, '2024-05-05 18:40:39+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bimrc9ynemix/g-i-dle-fate-6?si=98d638e2c13a442d81bf56647383d1c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (281817, '0xd12c38297da13f68883cb030e033d09587e30da2', 0, 1, '2024-05-05 18:08:31+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-492424644/illit-magnetic?in=trending-music-kr/sets/pop\"}"}', NULL), - (281819, '0x369cfdaface2dff62b087c09074edcd3979420be', 0, 1, '2024-05-05 18:08:26+00', 0, 0, '{"fid": 476773, "object": "user", "pfp_url": "https://i.imgur.com/7Y4kw05.jpg", "profile": {"bio": {"text": "It is enough to be kind", "mentioned_profiles": []}}, "username": "afsh", "power_badge": false, "display_name": "Afsh", "active_status": "inactive", "verifications": ["0x62e9d424e4c583ef585b3e69e713716eb7cdcb81"], "follower_count": 666, "custody_address": "0xf8d5ca237bf32f5dcdc0462503d9c1bcb5264334", "following_count": 759, "verified_addresses": {"eth_addresses": ["0x62e9d424e4c583ef585b3e69e713716eb7cdcb81"], "sol_addresses": ["9wn3XFJkTbTLiS4NrHRVHszqTFHtWd2vEuEwWTFPmTme"]}}', '{"{\"url\":\"https://m.soundcloud.com/treesofeternity/black-ocean?in=treesofeternity%2Fsets%2Fhour-of-the-nightingale-1\"}"}', NULL), - (281853, '0xdab39790ab281a11508a4edb8021790412995be6', 0, 1, '2024-05-05 18:09:47+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/love-blackpink-307127669/tws-ohmymy-7s?si=5722d7cd702044c1b66c88f025a40e4c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284770, '0xf1d17ec3eef7b9412ea68ee24b3ce347100b4f0a', 0, 1, '2024-05-05 18:49:19+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1EzrEOXmMH3G43AXT1y7pA?si=41d8485ca0014fb4\"}"}', NULL), - (284773, '0x9500107b0777f8b10ae40418aad39bf5ed750c03', 0, 1, '2024-05-05 18:50:35+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lcarus/05-feat-128?si=aa93c3d111ce49e68033bf55b095bdd3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (280789, '0x5b1367196a61a593e3487939859cd6be4e6ec27c', 0, 1, '2024-05-05 18:02:00+00', 0, 1, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1406, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/kj9Pxd346cP6CvCt9\"}"}', NULL), - (284771, '0xad28fb9e6315263bc9759eacc35039b6a7de8d1c', 0, 1, '2024-05-05 18:50:25+00', 0, 0, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7rrmHHc1kY9vkIZnXrcH7T?si=494ce905d6db437d\"}"}', NULL), - (284157, '0x22e8e532caba74f4a5127068c79aaeac72b4a126', 0, 1, '2024-05-05 18:41:26+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user448826392/tdaohzfiypaw?si=5086c533a45b4398b806b84eecf68487&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284163, '0xe5cfc35542b579868f915bed5ca9bb1225ac2c36', 0, 1, '2024-05-05 18:41:08+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki7/gi-dle-queencard-1?si=a7c3ccae39364447901a384a85cf8565&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (529568, '0xe51ee3e4acf8625c87f70a1e5e78393076f5b945', 0, 1, '2024-05-06 09:32:34+00', 0, 1, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12🎩 ✪ ", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4367, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5052, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8m6zbSEwWBNTb2F3A\"}"}', NULL), - (320313, '0xa62403fcdce59495716986e0f9631b86e0a25335', 0, 1, '2024-05-05 21:38:27+00', 0, 9, '{"fid": 449301, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreibovradvohaeu53sjhal37kvvaszwdbf5hd4uiyf4lsf7bqu2q6yy", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "milad47", "power_badge": false, "display_name": "Milad.Eth🍖🎩🦕🥷🔄", "active_status": "inactive", "verifications": ["0x29ec3409729ff4cbed66d69a88ac94234b8c0ca1", "0x9e8d4c9ff8605f8aa322d3b99c89f5e7b6a18598"], "follower_count": 739, "custody_address": "0x90f1e85d700a9e7b724aaaa2dfd9d20da1a3b4da", "following_count": 1145, "verified_addresses": {"eth_addresses": ["0x29ec3409729ff4cbed66d69a88ac94234b8c0ca1", "0x9e8d4c9ff8605f8aa322d3b99c89f5e7b6a18598"], "sol_addresses": ["DYp14v5CpZd37hgjmUHsPK9UgbBwsJiY2BAUNjfFFjci"]}}', '{"{\"url\":\"https://open.spotify.com/track/3i5qVV8azKqGFK4Gzdt5YS?si=aPhZ0HdTQWGpWAAzATLl2A&context=spotify%3Aplaylist%3A37i9dQZF1F0sijgNaJdgit\"}"}', NULL), - (356898, '0xb220a8e94d513e82c8d952d3252bf17c0150758f', 0, 1, '2024-05-06 01:50:54+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3110, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2627, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to No Tomorrow - 창모 (CHANGMO), Lobonabeat!, Shyboiitobii (샤이보이토비), SMUGGLERS [Live] by 𝒊𝒕''𝒔 𝒎𝒐𝒏𝒅𝒂𝒚 𝒔𝒔𝒊𝒃𝒂𝒍 ! on #SoundCloud https://on.soundcloud.com/2FpSR\"}"}', NULL), - (284780, '0xf70c1199ba02c0c38c3712cf9d043ef3c56a7072', 0, 1, '2024-05-05 18:49:41+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/en01337/v5dh0br6tfrb?si=151e5cda75564109a64c5169732da7f7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284159, '0x79277c047b81b1488964e8b87a06b0f025e3fa08', 0, 1, '2024-05-05 18:40:50+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bimrc9ynemix/ost-3?si=188a17a704c14284b18f6f6be97b502d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (280488, '0x061bbdf3f752537638cb08f177b767e01d19bb92', 0, 1, '2024-05-05 18:00:30+00', 0, 0, '{"fid": 503968, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b152c50-0a91-4c22-b35a-2de0d116d600/rectcrop3", "profile": {"bio": {"text": "Hi I''m Yasi❤️\n\nphotographer of urban subjects\n\n🟩\n⬜\n🟥\n\n\n\n", "mentioned_profiles": []}}, "username": "yasnazariel", "power_badge": false, "display_name": "Yasnazariel", "active_status": "inactive", "verifications": ["0xc1fc90b93c150a7bb81960b97ee4bbd8d2205f29"], "follower_count": 51, "custody_address": "0xc1fc90b93c150a7bb81960b97ee4bbd8d2205f29", "following_count": 139, "verified_addresses": {"eth_addresses": ["0xc1fc90b93c150a7bb81960b97ee4bbd8d2205f29"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/symlmusic/fear-of-the-water-tape?ref=clipboard&p=a&c=0&si=e43fce41a51b43f3a4c7b44c642ead1e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (280970, '0xe65a45399746c490aab42eb77ab07e17dcc0f0b5', 0, 1, '2024-05-05 18:04:11+00', 0, 0, '{"fid": 516301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/764869e0-b192-4427-b58a-310158533c00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!516301", "power_badge": false, "display_name": "Emma", "active_status": "inactive", "verifications": ["0x783756aa282530cc87c019381f279701971dd55c"], "follower_count": 22, "custody_address": "0x4efbda857e4e276b53f5bb4e90e4369b7768cb8f", "following_count": 65, "verified_addresses": {"eth_addresses": ["0x783756aa282530cc87c019381f279701971dd55c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tYT9QTxZzpX1yAaR7\"}"}', NULL), - (284774, '0x3cce75608a4dc47548c0adddcc4be5f95f7a8f8d', 0, 1, '2024-05-05 18:49:53+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/whilethemusiclasts/o9yo71rqkbb8?si=aeabb39bf4ed40d68200f6aa75f954e5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284826, '0xa629d93d049bc59d3eecaee37f266f4d5d7d54b3', 0, 1, '2024-05-05 18:52:03+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5uQROmYN9fdsVuiVhDlnBZ?si=01586cdd003e4330\"}"}', NULL), - (321215, '0xbd7615894caa5bf431578d3120a005d61691df9d', 0, 1, '2024-05-05 21:43:09+00', 0, 2, '{"fid": 404484, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c6287da-30eb-4f7b-dfc2-ab68682fcf00/rectcrop3", "profile": {"bio": {"text": "Crypto lover", "mentioned_profiles": []}}, "username": "sinaasadi78", "power_badge": false, "display_name": "Sardar🔄 🎩🍖🐐", "active_status": "inactive", "verifications": ["0x771ff39074ad0bceade2eb85e6a56e167ff7474c", "0xbeb5a8641eec87983f008d0ddd8907d05983b9ae"], "follower_count": 2154, "custody_address": "0xbeb5a8641eec87983f008d0ddd8907d05983b9ae", "following_count": 655, "verified_addresses": {"eth_addresses": ["0x771ff39074ad0bceade2eb85e6a56e167ff7474c", "0xbeb5a8641eec87983f008d0ddd8907d05983b9ae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby-vhs?utm_source=mobi&utm_campaign=social_sharing\"}"}', NULL), - (284160, '0xbf53b9cb1de51d040ed59871d7b216b2f4aa82b8', 0, 1, '2024-05-05 18:41:05+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imvelou/g-idle-nxde?si=92a46a1912e54958b568aa72bd48dad2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (280776, '0x5233abd596e0bdc7897ab66bb051c1f6811365a1', 0, 1, '2024-05-05 18:03:10+00', 0, 0, '{"fid": 427494, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b4bcb186-97c1-4a29-6f2f-dc8901ac4300/rectcrop3", "profile": {"bio": {"text": "A place for new technology and a new future, be strong to keep going", "mentioned_profiles": []}}, "username": "solliy", "power_badge": false, "display_name": "Solly", "active_status": "inactive", "verifications": ["0xcdcdb39ab745be836613cbdbdb4e32a5b96f7253", "0xcdcdb39ab745be836613cbdbdb4e32a5b96f7253"], "follower_count": 249, "custody_address": "0xca669048429de600350525455bc797e7e554c7c6", "following_count": 171, "verified_addresses": {"eth_addresses": ["0xcdcdb39ab745be836613cbdbdb4e32a5b96f7253", "0xcdcdb39ab745be836613cbdbdb4e32a5b96f7253"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NFAPm\"}"}', NULL), - (281943, '0x2810ca3099da175be5d31099f2c00955bfa62db9', 0, 1, '2024-05-05 18:10:29+00', 0, 0, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 751, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1102, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/99RcPiBv4nFEEp3J8\"}"}', NULL), - (321444, '0x659fa282656596337bfea9cc8cb26b1f95e7bdb0', 0, 1, '2024-05-05 21:45:25+00', 0, 4, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12🎩 ✪ ", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5051, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Q3Nay6rkiZpUAG4eA\"}"}', NULL), - (284779, '0xdc837fb2ddbd9145792f886e88b2506c4ef3f735', 0, 1, '2024-05-05 18:49:48+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bong-sun-kim-1/memories-2?si=3b0579ac63c64baf9a521ed0cac224d3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284776, '0x36095755bfef2a24bef6b4a1f8f2cff156e3c04b', 0, 1, '2024-05-05 18:49:37+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ta2jian-241487429/duet-with?si=c2eb652cc48a4e58ac87cdc7e113bda0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284835, '0x6289a8f06b4e5bf5906c1cfa76166e9d4a3fa43e', 0, 1, '2024-05-05 18:51:53+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Dvkj6JhhA12EX05fT7y2e?si=cbacf65be98f4db6\"}"}', NULL), - (280788, '0xe5b7804f44f13f63bb0e52cc973b2de263c2eaeb', 0, 1, '2024-05-05 18:02:25+00', 0, 0, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2376, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1608, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KQohyzXYUwQcqfsG9\"}"}', NULL), - (280687, '0x6ac315b8af10dc7933e0fa7deeb68b8bb32e9222', 0, 1, '2024-05-05 18:01:41+00', 0, 0, '{"fid": 503968, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b152c50-0a91-4c22-b35a-2de0d116d600/rectcrop3", "profile": {"bio": {"text": "Hi I''m Yasi❤️\n\nphotographer of urban subjects\n\n🟩\n⬜\n🟥\n\n\n\n", "mentioned_profiles": []}}, "username": "yasnazariel", "power_badge": false, "display_name": "Yasnazariel", "active_status": "inactive", "verifications": ["0xc1fc90b93c150a7bb81960b97ee4bbd8d2205f29"], "follower_count": 51, "custody_address": "0xc1fc90b93c150a7bb81960b97ee4bbd8d2205f29", "following_count": 139, "verified_addresses": {"eth_addresses": ["0xc1fc90b93c150a7bb81960b97ee4bbd8d2205f29"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Fear Of The Water by SYML on #SoundCloud https://soundcloud.com/symlmusic/fear-of-the-water-tape?ref=clipboard&p=a&c=0&si=e43fce41a51b43f3a4c7b44c642ead1e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (321504, '0xd70cb07dd3e6d469d6921af9acfaf8f893b53caf', 0, 1, '2024-05-05 21:47:43+00', 0, 0, '{"fid": 436819, "object": "user", "pfp_url": "https://2jukrz4coow5njxjuld44cc6skw5bdusjzhcw2f3qzp3tnlppajq.arweave.net/0mio54Jzrdam6aLHzghekq3QjpJOTitou4ZfubVveBM/", "profile": {"bio": {"text": "Interested in the decentralized and Blockchain world\nClimber\nNature Lover\n\n", "mentioned_profiles": []}}, "username": "0xariantq", "power_badge": false, "display_name": "0xAriantq 🔄 🎩", "active_status": "inactive", "verifications": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "follower_count": 690, "custody_address": "0x2b237b7c0bdd2ea29b2a55388f9d0279e9c39d2f", "following_count": 818, "verified_addresses": {"eth_addresses": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bdZ182mUM4a93UBk8\"}"}', NULL), - (281851, '0xdefb4b37a96b26e6b11808f774e72dbf5128c0f9', 0, 1, '2024-05-05 18:09:56+00', 0, 0, '{"fid": 403251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d409d731-1fa0-4200-c644-ddfbe0f82300/rectcrop3", "profile": {"bio": {"text": "Forex trader\nLets do this together ", "mentioned_profiles": []}}, "username": "cthulhuawakenn", "power_badge": false, "display_name": "Namdar 🎩", "active_status": "inactive", "verifications": ["0xe2431fa4822dca8655f5f6fa0ac06a01234d9e8a"], "follower_count": 721, "custody_address": "0xb5c78c57519c0726dad52494ea7680e312d5fef5", "following_count": 526, "verified_addresses": {"eth_addresses": ["0xe2431fa4822dca8655f5f6fa0ac06a01234d9e8a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XTLpWZKKHpsARcQP9\"}"}', NULL), - (284202, '0x9cd382c00e9a857c460d34b5e9246fb2f261baa8', 0, 1, '2024-05-05 18:41:56+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user448826392/f16o2rm7hzyk?si=301ee31d84294c798f7e219570bc1cdf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (336927, '0xc91e5f79a0752e2547d0ee3976bf92a104cce387', 0, 1, '2024-05-05 23:26:16+00', 0, 3, '{"fid": 419915, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f869715-6ece-4b8b-23eb-4e0cb8351200/rectcrop3", "profile": {"bio": {"text": "I want to love and smile.\n\n#맞팔 #맞디젠", "mentioned_profiles": []}}, "username": "haisabu", "power_badge": false, "display_name": "Lee.dy", "active_status": "inactive", "verifications": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "follower_count": 2439, "custody_address": "0x014ed62b7fc75b742801098a46d216b9ebc59ca5", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jwardmusic/god-i-look-to-you-bethel-live?si=7f1e4c5a13044dc9a680d65659d22f2d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (309017, '0x02375d65240d7e8e4eac98b7f77f97101206f0d9', 0, 1, '2024-05-05 20:55:13+00', 0, 0, '{"fid": 509757, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/881ef337-cf4f-42af-346e-33498b814800/rectcrop3", "profile": {"bio": {"text": "the future\ncrypto", "mentioned_profiles": []}}, "username": "!509757", "power_badge": false, "display_name": "Bobono", "active_status": "inactive", "verifications": ["0x0b4c44335327475934152a782fc43e15cca97a34"], "follower_count": 71, "custody_address": "0xc7d0a9cafdf942483103da44155eb24bb85864dd", "following_count": 145, "verified_addresses": {"eth_addresses": ["0x0b4c44335327475934152a782fc43e15cca97a34"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qsMfuhz8AvxqtCyA7\"}"}', NULL), - (281852, '0xb328ba5268ac5ec8b9c4ec46ec205af5b37f950d', 0, 1, '2024-05-05 18:09:28+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ads343vkytdo/tws?si=768d2ebe88794b288712cf4b9288d20d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (281942, '0x988210c54980dd15d165080ce8a1829db8c1e17d', 0, 1, '2024-05-05 18:11:31+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/daechwita?si=6b501716825d4b5eac5e5021ce1e1723&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282359, '0xb711ee008b47fcf00e319b8ec2db1b2f8f78ad93', 0, 1, '2024-05-05 18:13:53+00', 0, 0, '{"fid": 453912, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/37a3c862-97c0-4445-4a33-9dbb259b1800/rectcrop3", "profile": {"bio": {"text": "Hello, my name is Anthony Duque, I am Venezuelan, I was born in 1999. I like to listen to music and play RPGs.", "mentioned_profiles": []}}, "username": "itsduque", "power_badge": false, "display_name": "Anthony🚀🥷", "active_status": "inactive", "verifications": ["0xec2dd18e6d6d814fbb3e7a48ced0e3352344e5a0"], "follower_count": 110, "custody_address": "0x12f4f8ce5a8a37e0064d257499c785f897398657", "following_count": 277, "verified_addresses": {"eth_addresses": ["0xec2dd18e6d6d814fbb3e7a48ced0e3352344e5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iAHqTpvNs2spb7xVA\"}"}', NULL), - (282274, '0x3038f6dad02a8f7270583b78d73742c1720c2ea4', 0, 1, '2024-05-05 18:13:38+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok?si=5cd1a22a24ff4bd5b7b895095ce1659d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282047, '0x0a1aadf12debc54ffc43a085f77b33f48a0cba39', 0, 1, '2024-05-05 18:12:01+00', 0, 0, '{"fid": 500922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a212f45-d02f-40d3-27e5-c998de75a500/rectcrop3", "profile": {"bio": {"text": "🌈 Yogurt🍦 🌈 $DEGEN 🌈", "mentioned_profiles": []}}, "username": "grapes", "power_badge": false, "display_name": "Black Yogurt 🎩🍖💎🎵", "active_status": "inactive", "verifications": ["0xbbdf2441782e6fd2f62ff5ba53abc8907b79c109"], "follower_count": 1630, "custody_address": "0xa34eaf0e020f431f5a1fff32656f1529c1c399f2", "following_count": 1462, "verified_addresses": {"eth_addresses": ["0xbbdf2441782e6fd2f62ff5ba53abc8907b79c109"], "sol_addresses": ["GemWiahv9xt5w2vanmH1zKu2ZMDFGYUZJ2HRadK83DaS"]}}', '{"{\"url\":\"https://on.soundcloud.com/mb63f16M64F5aGX58\"}"}', NULL), - (284203, '0xe511988961a8da1c90520f85224deb8633815f05', 0, 1, '2024-05-05 18:42:02+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user448826392/xrnp93zr8xtq?si=83e726d04ab243bf842878d1d3cc6805&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284206, '0x73733d35abf0b240ac49f38e6b4f9d4b9825c69a', 0, 1, '2024-05-05 18:42:16+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user448826392/love-affair?si=4bd98ff6559249059594b0090323a8b9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (281850, '0xb92233c09f31f6464c226f04a9b07a3b8f382270', 0, 1, '2024-05-05 18:10:07+00', 0, 0, '{"fid": 436149, "object": "user", "pfp_url": "https://resolve.mercle.xyz/ipfs/bafkreihfmwvgaujzhk4agmif6nwyeaa72l5uzmehhpj4mvmqf6rwvfkwbi", "profile": {"bio": {"text": "Web3 Gamer 🎮 NFT Enthusiasm 🖼️ Forex Trader 📈\n\nFamily lover 💖", "mentioned_profiles": []}}, "username": "satoshimh", "power_badge": false, "display_name": "🎩 Satoshimh 🍖🔵🔄", "active_status": "inactive", "verifications": ["0x195e607869276ec4603e9945fb35c1dff88b77ad", "0xdf43c2b7bb4829f97839bfd89767fe8241cc4aba"], "follower_count": 717, "custody_address": "0x50f1fda88595f621c727448f0144d216cf3bd210", "following_count": 599, "verified_addresses": {"eth_addresses": ["0x195e607869276ec4603e9945fb35c1dff88b77ad", "0xdf43c2b7bb4829f97839bfd89767fe8241cc4aba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/lose-yourself?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (336778, '0x481eb76a801fdb0bda45f866052caf7e28162181', 0, 1, '2024-05-05 23:24:56+00', 0, 5, '{"fid": 425915, "object": "user", "pfp_url": "https://i.imgur.com/Mlu6njb.png", "profile": {"bio": {"text": "Hi, I''m POVI 🐻‍❄️✨ \nWould you be my friend? 🐻‍❄️✨✨\nT2T ", "mentioned_profiles": []}}, "username": "povi", "power_badge": false, "display_name": "Povi🐻‍❄️", "active_status": "inactive", "verifications": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "follower_count": 3442, "custody_address": "0x066d863acc9e5464adbf6fb4eac6ec02d40bcd6f", "following_count": 2230, "verified_addresses": {"eth_addresses": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share44/bigbang-last-dance?in=gqclhyvofheg/sets/s4jkk3qg1bnr&si=c7dfd6ec1a894cfeaab9a30f30f465bc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284210, '0x1394f41957d5d4ebec673f39e7bc3f0f74fe0aba', 0, 1, '2024-05-05 18:41:52+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/11025-398911344/sets/0p5zzxz2wkvh?si=bf3e8add63024da0916852c10dbe4310&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (303296, '0xb6a7b3913c38dd85dfb462efea22d3e6cb936f43', 0, 1, '2024-05-05 20:40:57+00', 0, 2, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 382, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/rizky-rilos/queen-bohemian-rhapsody\"}"}', NULL), - (284208, '0x9040625f95f30d957cb6a91711b681c7b65ce56d', 0, 1, '2024-05-05 18:42:32+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/nptg3lnptr1f?si=bd0db14bc2d24649981214d2a88f76b3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (309882, '0x612801eb50cd60efc2928b59c5fb5dfa1c2176bf', 0, 1, '2024-05-05 20:58:55+00', 0, 2, '{"fid": 460806, "object": "user", "pfp_url": "https://i.imgur.com/QD8fIic.jpg", "profile": {"bio": {"text": "I''m mmad bigdlo", "mentioned_profiles": []}}, "username": "mmadbigdlo", "power_badge": false, "display_name": "🍖💊((mmad))🦕🦕", "active_status": "inactive", "verifications": ["0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a"], "follower_count": 612, "custody_address": "0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a", "following_count": 532, "verified_addresses": {"eth_addresses": ["0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S2s3GKT7oLfhhx617\"}"}', NULL), - (309452, '0x2deb5127cd4cbce837224ebaba07bcdc11a0c251', 0, 1, '2024-05-05 20:57:36+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 384, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/michel-thibault-1/serge-reggiani-litalien\"}"}', NULL), - (284207, '0x21659b5aa60867d7885c751ff40e6f9b9520ed0d', 0, 1, '2024-05-05 18:41:41+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user448826392/again?si=f51e5a34cef341e78bb1786dd71399fd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284205, '0xfd66b4716a0a9490b700433e5d2bc527efce9efe', 0, 1, '2024-05-05 18:42:06+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/jed-feat?si=0a02bc23fad74878be8fcd1885233831&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282430, '0xe631152e690c3a0000bcae550422519fade0faf4', 0, 1, '2024-05-05 18:16:26+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user8284479/someday-iu?si=a16dffc490634d1bab9bb51c59a7a820&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282426, '0x2849072e2931ab9bcbcb0bbb8cf1e9d6257f7ffe', 0, 1, '2024-05-05 18:16:37+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/orichibii/good-day-iu?si=fcfe008d873a43ed8f983cdbaf256eaf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284832, '0xaad90902ab5eb1735dc9d8c05510d03f8359d714', 0, 1, '2024-05-05 18:51:13+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nothing_happen/1998a?si=4a9f35f0990940969a034596d0a9db82&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (285759, '0xcd85809ec1b8c3eb86d967f0d949996c2c4d7e40', 1010, 1, '2024-05-05 19:08:02+00', 0, 9, '{"fid": 355618, "object": "user", "pfp_url": "https://i.imgur.com/caKXLRN.jpg", "profile": {"bio": {"text": "Tech geek person and love to share my experience with others \nLove to hang out with friends and have fun\nI love crypto😍", "mentioned_profiles": []}}, "username": "saeedbolouri", "power_badge": false, "display_name": "JUPITER(🍖 🔄 🎩 🔵🔮)", "active_status": "inactive", "verifications": ["0x0ccb1abb72002355331c521d4994e360ede35fba"], "follower_count": 1434, "custody_address": "0x8ce456c039ce52170a29ffb9e913c29cb3d9ef16", "following_count": 1647, "verified_addresses": {"eth_addresses": ["0x0ccb1abb72002355331c521d4994e360ede35fba"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/47wvcYKrpHW4zmCQA\"}"}', NULL), - (282429, '0x2ff0084fc077123977835f0825d4f5a4eff0e8a8', 0, 1, '2024-05-05 18:16:14+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kanokwan-lanyot/iu-1?si=caa1fd01432842e9af9c72171c14eedd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284209, '0x7b05d19eec2718733ff8b041f9a4a6fa4a43be9c', 0, 1, '2024-05-05 18:41:49+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pjwurhexitmq/we34lvnwgukk?si=eeed2b74a1b840a49ff79989b814ce26&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (285882, '0x3b9ee6ef5319111b1008233e4fcea48839f2ef91', 0, 1, '2024-05-05 19:08:48+00', 0, 0, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/hapcV9hecLJqW7Dp9\"}"}', NULL), - (282360, '0xa52174034afa4435351faedaf2ec4bc2044e2188', 0, 1, '2024-05-05 18:13:53+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/absollutely/newjeans-hype-boy?si=c10b9582318b4e06b7f7dcf534536a63&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284306, '0xa280675c3139d7799e87c2463895c57a6b21f22c', 0, 1, '2024-05-05 18:44:47+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/danielle-cinderey/brown-eyes?si=2e4df8bcd032411c96d8f3d7e4075e71&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284309, '0x2e5675021df77bb7232a1cfef2054ef129b5a58e', 0, 1, '2024-05-05 18:45:03+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user2555394/mzciyzp71ypj?si=0bbd9f40ebe04cdcbe456e3e097c1670&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284312, '0xe116e52014d3c27e6518ba731e00975cb1639fb1', 0, 1, '2024-05-05 18:45:33+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki23/na-ul-mp3?si=c33e99d091434c9ebd6d197cd2f91c31&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (288564, '0xfdb993285755d4c9c389a47de22086dfe59480ae', 0, 1, '2024-05-05 19:31:51+00', 0, 2, '{"fid": 445373, "object": "user", "pfp_url": "https://i.imgur.com/s4xsCCA.jpg", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "mohsnm67", "power_badge": false, "display_name": "Mohsnm67", "active_status": "inactive", "verifications": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "follower_count": 400, "custody_address": "0x9763bc0145d396ad8f818d7f335ae6669c6fd8d1", "following_count": 1168, "verified_addresses": {"eth_addresses": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "sol_addresses": ["Ca91orTihwQoUkP6GsYX1SR7dGzjVrCLWxL4oCeKaZyJ"]}}', '{"{\"url\":\"https://on.soundcloud.com/G89MeBEGqV88cfF67\"}"}', NULL), - (282428, '0x7af3d97c6c069c3747bdd1292c79a5a479076fd8', 0, 1, '2024-05-05 18:16:03+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ankko0103/mhiusi58lx3g?si=fe17632156324e829604b9bc3d008d5e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282424, '0x11dbd7bb1e20015f3fda5e9416b7c6b85a2e4d3e', 0, 1, '2024-05-05 18:16:00+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yongsik-kim-129815277/iu-shopper?si=c2d880d08d6f434c9e09c6128f401129&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284204, '0x4b739acb161435c443c77be1acabfdc98fc7309a', 0, 1, '2024-05-05 18:42:11+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove7/ypn97lufl0vg?si=a985f6944d014d71abaeac8596e7dcb2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (321505, '0x0dd4dc421dca889e55487c61bcc2cdd5e15b5ee3', 0, 1, '2024-05-05 21:46:00+00', 0, 0, '{"fid": 207400, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/Qmf79k2yYv6eFKN6huoDtpcSCebax3YT47WeyiaHaAUPWH", "profile": {"bio": {"text": "Development & operations, *never legal or financial advice, https://basepaint.xyz/mint?referrer=0xaaDd6D24EDe8ab75aCc3FBA496C3b41A9E663689 \nPlease be grateful. ", "mentioned_profiles": []}}, "username": "dev0ps", "power_badge": false, "display_name": "dev0ps - coastalconsulting.eth -", "active_status": "inactive", "verifications": ["0x141851ca7ffbead76491b365c3515bf5bfd9efed", "0xaadd6d24ede8ab75acc3fba496c3b41a9e663689", "0x51f47622856f24ed640f70400fa7aa583f04efee", "0x86ea1e8f576331baf33f5a84c6e90d3b59cb594c", "0x006c087fdc9783d1ab34cd156adfb0b51f74bc04"], "follower_count": 665, "custody_address": "0xe792891212a7c59b798788bc5379fc91768ee2d0", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0x141851ca7ffbead76491b365c3515bf5bfd9efed", "0xaadd6d24ede8ab75acc3fba496c3b41a9e663689", "0x51f47622856f24ed640f70400fa7aa583f04efee", "0x86ea1e8f576331baf33f5a84c6e90d3b59cb594c", "0x006c087fdc9783d1ab34cd156adfb0b51f74bc04"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oYRKGvYHWkhRj6eo7\"}"}', NULL), - (284311, '0x9c8fb29052f9307515ec67ac57760f61cf7885d1', 0, 1, '2024-05-05 18:44:44+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pedigrees/1-2a?si=5ecc14859f4c48a48d025e988a23dece&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284308, '0xc5602f85083c478f7c04cd57dc2137018ac0eee4', 0, 1, '2024-05-05 18:44:51+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/reason4breathing/with-coffee?si=0acab6447d864430ab5fb22f17415786&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284310, '0x24e8a07f61befd9686b3d202cd2a656760db01d2', 0, 1, '2024-05-05 18:44:59+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/i01hkluw2jqj/brown-eyes-for-you?si=edef41e7b189465baa51cac085f1e849&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282427, '0x26e82a668916d36c12643f42ddd83e8894cab667', 0, 1, '2024-05-05 18:15:51+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/iu-eight-prod-feat-suga-of-bts?si=ac807f5747334b7eaedee5d7f60d9659&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (305824, '0x99464cd9165f5164859b9f6b299702c7f430cec5', 0, 1, '2024-05-05 20:49:19+00', 10, 13, '{"fid": 500929, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e050c542-26df-4863-c30d-0ad2dafb4b00/original", "profile": {"bio": {"text": "I love traveling and cooking❤️", "mentioned_profiles": []}}, "username": "nyaongnyaong", "power_badge": false, "display_name": "nyaong🐱", "active_status": "inactive", "verifications": ["0xbc362d817c49c6258f00e8dafb067668fc860733"], "follower_count": 1144, "custody_address": "0x58e56efafb95ef3e831bbf5d4ea74b0252833ba0", "following_count": 959, "verified_addresses": {"eth_addresses": ["0xbc362d817c49c6258f00e8dafb067668fc860733"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vSq6v\"}"}', NULL), - (282393, '0x44bd9314d2f4687854cebabb652748f82d303446', 0, 1, '2024-05-05 18:14:52+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-954106028/full-album-newjeans-new-jeans?si=d0e133cc513c4da5bcec93e7dad9f432&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284305, '0x9cc13613bd3b1778ef527f2404af317f27d11c17', 0, 1, '2024-05-05 18:45:25+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aangucup/naul-you-in-the-same-time?si=a94ec17a31f64cbabcea896060396dc3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (285962, '0x7342e79fed8c7949393ef7b07fdf5b58fde6d45e', 0, 1, '2024-05-05 19:09:50+00', 0, 1, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/hapcV9hecLJqW7Dp9\"}"}', NULL), - (286179, '0xa3135110021b56ab16af8bb3a338702867c7de56', 0, 1, '2024-05-05 19:12:39+00', 0, 3, '{"fid": 509630, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f29dd4c1-0806-4ac5-d747-4682329ddc00/rectcrop3", "profile": {"bio": {"text": "😎", "mentioned_profiles": []}}, "username": "!509630", "power_badge": false, "display_name": "Yasa", "active_status": "inactive", "verifications": ["0x726772eb950aa116d57d1ecec008fe1f8417cd0b"], "follower_count": 208, "custody_address": "0x4a8ddadea255bace24c8b37ed6b3dc1852f1ac7a", "following_count": 260, "verified_addresses": {"eth_addresses": ["0x726772eb950aa116d57d1ecec008fe1f8417cd0b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nzkqduzUSrT5F9HB9\"}"}', NULL), - (284307, '0x54aadec3831f94f12016ef49b5ab68c48bb251f7', 0, 1, '2024-05-05 18:45:28+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kimsg88/epbjjl9gufjp?si=f58e047970cb48759f4e0bbb71dd947d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284365, '0xb560539c414d10e93bf4b91498a7fcde3b2dc2b4', 0, 1, '2024-05-05 18:46:31+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ta2jian-241487429/brown-eyes-for-you?si=c39044b8d34f4e758025f452dc6a2c27&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282431, '0xa16ad75a421f058cf49eca1f80a752869f31cb69', 0, 1, '2024-05-05 18:16:33+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0wkjxnktozdy/ozsawhkjh0r7?si=ea716a6d78fd40b897c607eb4f0be267&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284372, '0x8f8bbc2f2fb05afe3fe2020c0e79b46055f46cdd', 0, 1, '2024-05-05 18:46:19+00', 0, 0, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1689, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1297, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/oxr5aonjrSKyuT2H6\"}"}', NULL), - (288753, '0xb987f8187f08c8f65eba00c81b43f7787e394eef', 0, 1, '2024-05-05 19:32:53+00', 0, 1, '{"fid": 445373, "object": "user", "pfp_url": "https://i.imgur.com/s4xsCCA.jpg", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "mohsnm67", "power_badge": false, "display_name": "Mohsnm67", "active_status": "inactive", "verifications": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "follower_count": 400, "custody_address": "0x9763bc0145d396ad8f818d7f335ae6669c6fd8d1", "following_count": 1168, "verified_addresses": {"eth_addresses": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "sol_addresses": ["Ca91orTihwQoUkP6GsYX1SR7dGzjVrCLWxL4oCeKaZyJ"]}}', '{"{\"url\":\"https://on.soundcloud.com/naEkQw9xGD2jHi5D8\"}"}', NULL), - (285975, '0x7d07e93791a5bb22159e69fcf7836147053c8999', 0, 1, '2024-05-05 19:12:02+00', 0, 0, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/cpRmAr5Y4eADyXUh9\"}"}', NULL), - (291516, '0x72ad7ff8db6ed74e4f7bf4efa0606819ef6249c1', 0, 1, '2024-05-05 19:52:22+00', 0, 0, '{"fid": 329280, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7101c14a-d35c-4902-8ef5-f45870354700/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "vitalikgalardo", "power_badge": false, "display_name": "Vitalik ↑↑🎩🍖🔥↑↑", "active_status": "inactive", "verifications": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "follower_count": 1152, "custody_address": "0x97d214f79db5b98d4ff851fbf0cd37602ea9ace2", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "sol_addresses": ["7J9ZvdQAsRx6Thi5SDqGRFYJhVxkt2HpG4jj1v12uDhu"]}}', '{"{\"url\":\"https://m.soundcloud.com/zezeteap-1/kodetagar-ali-ahmadiani\"}"}', NULL), - (282668, '0xe3e59e23a251a6e761bf8d30d01fb519481f836e', 0, 1, '2024-05-05 18:17:00+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/od7t4qhl9xmk/celebrity?si=3acdfe6303a84a88875057a5fa2c6145&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282425, '0x828f1dfe8112cdac0286093b4db423571f25d4de', 0, 1, '2024-05-05 18:16:43+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1206-747981606/feat-nagging-lyrics-m4a?si=da3f32b2a99a4c8798a3e2dbd4c4de67&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282821, '0xf2b4466aa9f9cf3dc0e4f8b496c467cf0f8c308d', 0, 1, '2024-05-05 18:18:14+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share102/iu-my-sea?si=be0fadf2cdc64c61b44f84d47148747b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282824, '0x4b8f427f9245bd9f3500e9e924d4fda57f29a188', 0, 1, '2024-05-05 18:18:34+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leggotunglei/qxndc72j85et?si=1956d74ae5de434d86edc298dd451a27&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (289202, '0xe03f021f687ad206841af464e15fcc62f148f6e7', 0, 1, '2024-05-05 19:36:39+00', 0, 4, '{"fid": 310768, "object": "user", "pfp_url": "https://i.imgur.com/J4W6y32.jpg", "profile": {"bio": {"text": " catlover 😎🦾🐈", "mentioned_profiles": []}}, "username": "phoenixarnold", "power_badge": false, "display_name": "phoenix 🎩 ", "active_status": "inactive", "verifications": ["0xbde65bfaec402d8e61490a3f81ae139d7b97760e"], "follower_count": 1466, "custody_address": "0x93be66a434d28db8090fc3533eb39b258e6fed3c", "following_count": 2358, "verified_addresses": {"eth_addresses": ["0xbde65bfaec402d8e61490a3f81ae139d7b97760e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nK5Es3cvm9J4qHvJ8\"}"}', NULL), - (286180, '0x5790dd9e4e3e4b2b69dc54bb737ea4907f76d848', 0, 1, '2024-05-05 19:13:15+00', 0, 2, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/FV2DPuMTJUTCvvjo6\"}"}', NULL), - (292169, '0x97227ec602a770ec379c4815cfed1d5a6db1fc46', 0, 1, '2024-05-05 19:54:57+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 382, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/taylorswiftofficial/love-story-taylors-version\"}"}', NULL), - (282680, '0xdfdd08335f02a2e0ac049a67d31d731641cb64ab', 0, 1, '2024-05-05 18:17:43+00', 0, 0, '{"fid": 421661, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "Digital connoisseur :))) Of course, this is a joke. Pixl art - sovereign. Higher -\nOur Free nft on zora : https://rb.gy/88dflc 🌀\n\nOur channel : /2009", "mentioned_profiles": []}}, "username": "satoushi", "power_badge": true, "display_name": "Satoshi 🎩", "active_status": "inactive", "verifications": ["0x928a8918d31941fb6b7b1f5456964a8bcbcb2435"], "follower_count": 5436, "custody_address": "0xdf41d138d2995f787bc7eee02cdd960b41d9c75f", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0x928a8918d31941fb6b7b1f5456964a8bcbcb2435"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musikconnections/sting-shape-of-my-heart?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282673, '0xd1158aac6d1815112a00c7d7e485ef8f0a258a87', 0, 1, '2024-05-05 18:17:52+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nutcha-thongkanya/mv-high4-iu-not-spring-love-or?si=b12ab65a3d9143b78bea43f0d9a241c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (135258, '0x693db3525fdb6d488c27c59b01578434815997df', 0, 1, '2024-05-05 06:25:16+00', 10, 25, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3481, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6243, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XzCQu\"}"}', NULL), - (284370, '0x595657bce555b6cea2d119b30542cae058480a34', 0, 1, '2024-05-05 18:46:13+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fj97qjxk9o97/bhyxdszrlv7w?si=954116da966a40709d986149ba58c9cf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (419422, '0xd61b42459af0fdc2d5c17db88f071bbffd32ef8a', 0, 1, '2024-05-06 05:51:41+00', 0, 1, '{"fid": 464228, "object": "user", "pfp_url": "https://i.imgur.com/JqKwmZQ.jpg", "profile": {"bio": {"text": "$DEGEN / 🍖 햄 / 좋아요🔥 / 리캐스트 🔥 / 댓글 🔥 / 한명도 빠짐없이 다 찾아가 2배로 돌려드립니다.\n -슈캐 유저- \n매일 운세 각종 정보 올립니다 ㅎㅎ\n선팔 주시면 끝까지 맞팔 갑니다!!", "mentioned_profiles": []}}, "username": "donjeollae", "power_badge": false, "display_name": "Donjeollae", "active_status": "inactive", "verifications": ["0xc88dcc00463576921fef35cf30e57590ca865b00"], "follower_count": 1916, "custody_address": "0x9a65f4c929f4fb0b369ab3280bbae247a6edfa7c", "following_count": 2166, "verified_addresses": {"eth_addresses": ["0xc88dcc00463576921fef35cf30e57590ca865b00"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/esensofficial/6xilzhi4cf8c?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282820, '0x5fab5ee60f02a695611fd0c6186927987f5eefac', 0, 1, '2024-05-05 18:13:42+00', 0, 0, '{"fid": 263333, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d75eeb67-c37e-4b98-f466-5dfc18ea2700/rectcrop3", "profile": {"bio": {"text": "not a developer but I am building meaningful relationships on base ", "mentioned_profiles": []}}, "username": "fatcop", "power_badge": true, "display_name": "colfax", "active_status": "inactive", "verifications": ["0xe97022e3e50ac76d20f5138141d79f65acf3bc82"], "follower_count": 901, "custody_address": "0x6aa3e8275ba2dff662f420b45ab1e6bca96c0e43", "following_count": 346, "verified_addresses": {"eth_addresses": ["0xe97022e3e50ac76d20f5138141d79f65acf3bc82"], "sol_addresses": ["Eqx6jbzNUUivZqUxCudJqVSTwJ2rGSqRvwgyxfovEFXs"]}}', '{"{\"url\":\"https://open.spotify.com/track/7F9DZz2WVrPLHCQMG4oSGs?si=vk7qoVY_QPaZNY9niAsFTA&context=spotify%3Aalbum%3A3UrUNyumXYfBUynAvcyMC9\"}"}', NULL), - (284839, '0x5f59816af28bab8c8301682b69452776a285e908', 0, 1, '2024-05-05 18:51:20+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/py0klhsrf6xy/kwzxldivdb0n?si=be6d7b2ec5854124845dc61876b335b3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (368241, '0x1f12b6fb3c8d8bf1a7751b067ef207450ff8bdbb', 0, 1, '2024-05-06 03:12:31+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/indie?si=8a00ab7aa4f147cdb078b684faee131c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282825, '0x55239f17a6a46cb4b5a0ba9c546bda58b246b876', 0, 1, '2024-05-05 18:18:42+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rovyghany/ganadara?si=71f3b31f28174f208f7c9008daa159b7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350349, '0xf95457e51ef6b40b5a4fd94e911a825d5bd48d91', 0, 1, '2024-05-06 01:03:04+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (358224, '0x3c6d65b560bbab791fb949911865920a09890de1', 22, 1, '2024-05-06 02:04:22+00', 0, 0, '{"fid": 515814, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ad4ee3-bf45-485e-09fa-79f489e28a00/rectcrop3", "profile": {"bio": {"text": "Follow for Follow back", "mentioned_profiles": []}}, "username": "!515814", "power_badge": false, "display_name": "Ayesha", "active_status": "inactive", "verifications": ["0x4bfb6a85c1db4a556e6fe04231f3c053570c6b05"], "follower_count": 62, "custody_address": "0x4bfb6a85c1db4a556e6fe04231f3c053570c6b05", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x4bfb6a85c1db4a556e6fe04231f3c053570c6b05"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-21121943/sets/flowz-dilione\"}"}', NULL), - (365534, '0x52aadf569d697ca040f23106d0fc8488b56a1835', 0, 1, '2024-05-06 02:55:58+00', 0, 1, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 792, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 900, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qo43wt1vhqxt/2yqslykdd1kz?si=4ad0aff5fe46452f9f19efd0c3516634&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (384286, '0xadc3925c6019cf0fb3b9a23545ff1b6750f2457f', 0, 1, '2024-05-06 04:09:20+00', 0, 0, '{"fid": 502049, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf5547fa-26c5-4e6a-c79f-fb509b567c00/rectcrop3", "profile": {"bio": {"text": "I''m hacker in Usa", "mentioned_profiles": []}}, "username": "welloworld", "power_badge": false, "display_name": "Codemania", "active_status": "inactive", "verifications": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "follower_count": 1618, "custody_address": "0x135ad7989e8ee71ad4f272e44d1eecd2278eecc8", "following_count": 773, "verified_addresses": {"eth_addresses": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/admkvqzyolkz/sets/beenzino-jazzyfact\"}"}', NULL), - (923604, '0x56796b9efb63ffdbceea8a67181760ca13faa8df', 0, 1, '2024-05-07 07:29:43+00', 0, 0, '{"fid": 379522, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6a4a9ff-5b30-4656-52c9-02c048649000/original", "profile": {"bio": {"text": "Music Producer 🧞‍♂️ @studio19.eth 🎹 /studio19 Label3 💽 My music is here 🌀 www.sound.xyz/pochi", "mentioned_profiles": []}}, "username": "pochisempere.eth", "power_badge": false, "display_name": "Pochi Sempere 🎩🔵", "active_status": "inactive", "verifications": ["0xa6d713d765fc5405869e040db1b1cd83208fc30b"], "follower_count": 391, "custody_address": "0xfa6096b5d0047861e105ab211cde5a8ce8f72bc3", "following_count": 251, "verified_addresses": {"eth_addresses": ["0xa6d713d765fc5405869e040db1b1cd83208fc30b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pochisempere/tek-it-3\"}"}', NULL), - (351206, '0xca1d11216dcf7ec3375e7255d81645883db6f0b8', 0, 1, '2024-05-06 01:07:03+00', 0, 0, '{"fid": 421263, "object": "user", "pfp_url": "https://i.imgur.com/2cZqMxc.jpg", "profile": {"bio": {"text": "Textile and NFT artist exploring mixed-media art - blending physical textures with digital realms through AI 🖼️❤️‍🔥\n\nlinktr.ee/we4vingw0rlds", "mentioned_profiles": []}}, "username": "we4vingw0rlds", "power_badge": false, "display_name": "we4vingw0rlds ☁️🎩🔵", "active_status": "inactive", "verifications": ["0x1f7df402de23b87499a6272c44344a5ac265f270"], "follower_count": 364, "custody_address": "0xf99a77d1fd8f06fd488adb45179c43d2c6149151", "following_count": 894, "verified_addresses": {"eth_addresses": ["0x1f7df402de23b87499a6272c44344a5ac265f270"], "sol_addresses": ["EU3UhWhbK13nfdwHJXRND74LqxBjbZ5ygkRMSeWZ12cq"]}}', '{"{\"url\":\"https://open.spotify.com/track/1bhpub6BolgKXDD7iMkYTZ?si=nI32oELUTyCrzkGitX9e6w\"}"}', NULL), - (282670, '0x613a7bdcaf96d504a2eb397a976f403b17ce4fb9', 0, 1, '2024-05-05 18:16:49+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 891, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/irka07xygaxw/d14rsywu9amd?si=cf618fd9fcab452ea80f26248bc79889&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (321795, '0x15aafd70f59537c3544da7dd0969d81cde087fca', 0, 1, '2024-05-05 21:49:35+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 759, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 305, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8enWXwxCd673hZQQA\"}"}', NULL), - (284404, '0x0b045322e7812c767704a0148497f11d4e21abec', 0, 1, '2024-05-05 18:46:56+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chayminchan/i-wont-love?si=fddd49d9727d48c2bac0447143173eb9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (289214, '0x117cab9c0d8ac64f65e76a5f0a553122242b8350', 0, 1, '2024-05-05 19:36:30+00', 0, 0, '{"fid": 445373, "object": "user", "pfp_url": "https://i.imgur.com/s4xsCCA.jpg", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "mohsnm67", "power_badge": false, "display_name": "Mohsnm67", "active_status": "inactive", "verifications": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "follower_count": 400, "custody_address": "0x9763bc0145d396ad8f818d7f335ae6669c6fd8d1", "following_count": 1168, "verified_addresses": {"eth_addresses": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "sol_addresses": ["Ca91orTihwQoUkP6GsYX1SR7dGzjVrCLWxL4oCeKaZyJ"]}}', '{"{\"url\":\"https://on.soundcloud.com/mZJBNDmVbLrfncmC6\"}"}', NULL), - (286338, '0x18e4de0d28f092bb35d989281bdbed581749fc95', 0, 1, '2024-05-05 19:14:14+00', 0, 2, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/vHBD3uF424YiNyvS8\"}"}', NULL), - (292649, '0xbc80cdd29fe2d0bc13d49d1bfe62e2dd35ea74ec', 0, 1, '2024-05-05 19:57:14+00', 0, 2, '{"fid": 421467, "object": "user", "pfp_url": "https://6hrxmabxaouiekhnxdedyqrume3e6onkgalrotsfhw6dj6db4naa.arweave.net/8eN2ADcDqIIo7bjIPEI0YTZPOaowFxdORT28NPhh40A/", "profile": {"bio": {"text": "Runner Dentist ", "mentioned_profiles": []}}, "username": "drkarkas", "power_badge": false, "display_name": "Amir", "active_status": "inactive", "verifications": ["0x572974d21e48b0057b53c78579e1abcd3f2506f6"], "follower_count": 333, "custody_address": "0x9e0bd8bd16a32048ec0498bd0328c4f66f1d4e17", "following_count": 280, "verified_addresses": {"eth_addresses": ["0x572974d21e48b0057b53c78579e1abcd3f2506f6"], "sol_addresses": ["EyDrhtHapXY62WMTGyWUfYMEbJVXzDHHFwx8jwsNBu4H"]}}', '{"{\"url\":\"https://on.soundcloud.com/oP4mozHtvYSjeLwm8\"}"}', NULL), - (310229, '0x118ab76c97eec69e26097e004a5e0f0d345d1c3b', 0, 1, '2024-05-05 20:59:37+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 384, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/search?q=kat%20frankie\"}"}', NULL), - (337247, '0x5e2233ae12286643e19a18a80d046c96a74693cf', 0, 1, '2024-05-05 23:27:53+00', 0, 1, '{"fid": 419915, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f869715-6ece-4b8b-23eb-4e0cb8351200/rectcrop3", "profile": {"bio": {"text": "I want to love and smile.\n\n#맞팔 #맞디젠", "mentioned_profiles": []}}, "username": "haisabu", "power_badge": false, "display_name": "Lee.dy", "active_status": "inactive", "verifications": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "follower_count": 2439, "custody_address": "0x014ed62b7fc75b742801098a46d216b9ebc59ca5", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xecd376b6a1721beec3b322f110813a4f3773e161"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jwardmusic/god-i-look-to-you-bethel-live?si=7f1e4c5a13044dc9a680d65659d22f2d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (357921, '0x8eae46e903413acf4a0585a005b1a5417e0be42b', 0, 1, '2024-05-06 02:02:21+00', 0, 1, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2125, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U1Sf6CQEjzurBJPD9\"}"}', NULL), - (344286, '0x5a11a1ef78f07c5bc0be3e5a383c3485096d7751', 0, 1, '2024-05-06 00:09:36+00', 0, 5, '{"fid": 340819, "object": "user", "pfp_url": "https://i.imgur.com/6EdMb5r.jpg", "profile": {"bio": {"text": "follow /beatmaking | \"nft superstar\". multidisciplinary artist. creator\nhttps://www.sound.xyz/fabrii2k -\nhttps://zora.co/@fabrii2k", "mentioned_profiles": []}}, "username": "fabrii.eth", "power_badge": false, "display_name": "fabrii 🎩", "active_status": "inactive", "verifications": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "follower_count": 625, "custody_address": "0x0b3d285feb1ed3fa3012580e340e7047ff5bcb3d", "following_count": 461, "verified_addresses": {"eth_addresses": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fabrii2k/another-day-in-the-matrix\"}"}', NULL), - (322085, '0x568757a4abb2d8646cec258cebdd42e97eb59275', 0, 1, '2024-05-05 21:52:34+00', 0, 0, '{"fid": 407128, "object": "user", "pfp_url": "https://i.imgur.com/cEarSGQ.jpg", "profile": {"bio": {"text": "MD., Ph.D.\ncrypto, NFT collector \nなんとなく慣れてきました", "mentioned_profiles": []}}, "username": "scrypto3", "power_badge": false, "display_name": "Scrypto🎩🔮🔵🦄", "active_status": "inactive", "verifications": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "follower_count": 651, "custody_address": "0x3dfe27594d0d2d3180dfce17109a282e3018c0df", "following_count": 625, "verified_addresses": {"eth_addresses": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Wz3C8hoCskkzJTPz9\"}"}', NULL), - (286430, '0xf4fe16ee9ceea47630f87eda87c9289602dfd18c', 0, 1, '2024-05-05 19:15:09+00', 0, 2, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1480, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/nU4V7VB6f7G98yFcA\"}"}', NULL), - (345614, '0x84cb0f91c7a272819b895c2faaa26d1918353bf0', 0, 1, '2024-05-06 00:20:35+00', 0, 4, '{"fid": 492423, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWam5yoCBhtMXsNgsXHV2SeEZWAZhKqquGBFgB95vRNPA?filename=.jpg", "profile": {"bio": {"text": "나는 봇이 아니에요!! 살려줘요 ㅠㅠㅠ", "mentioned_profiles": []}}, "username": "kimchoi", "power_badge": false, "display_name": "kimchoi", "active_status": "inactive", "verifications": ["0x75e4daa70bb3c0a52f4db6d7e92d348240bb20d0"], "follower_count": 411, "custody_address": "0xea1542219a2762bd5ed2e6b65c24420b638dbbe1", "following_count": 259, "verified_addresses": {"eth_addresses": ["0x75e4daa70bb3c0a52f4db6d7e92d348240bb20d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/buzzing-playlists/sets/buzzing-pop?si=8f49c3af39fc4fcfb2189f0c057e084c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (365541, '0x2bb5db44d0360c3d553dfd9a0b5691bb5278d25a', 0, 1, '2024-05-06 02:56:04+00', 0, 1, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JQzvJ4GarpMXxJo67\"}"}', NULL), - (346243, '0xbf54015a2f8864a2436ae022e00c46d5631cec57', 0, 1, '2024-05-06 00:25:29+00', 0, 1, '{"fid": 507844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59f08b40-5d75-4b4e-37e4-48df05af0300/rectcrop3", "profile": {"bio": {"text": "새로 시작했어요!\nF4F 맞팔가요🧡\n동물 좋아하는 워친 모여랏!!\n🐇🐿🐭🐤🪿🦆", "mentioned_profiles": []}}, "username": "!507844", "power_badge": false, "display_name": "Smile_Dawn", "active_status": "inactive", "verifications": ["0x2c4e186b3f81942da171bc3180a7303039243046"], "follower_count": 262, "custody_address": "0x9bc10e235141d3f716f2d470c2a39176f83908c9", "following_count": 437, "verified_addresses": {"eth_addresses": ["0x2c4e186b3f81942da171bc3180a7303039243046"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1nGCg\"}"}', 'sonata'), - (337986, '0x7c326a76df9046141e70555de70cc87c93aac02a', 0, 1, '2024-05-05 23:30:36+00', 0, 1, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 905, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kygo/ed-sheeran-passenger-no?si=f249beae510f4424ba13e7caa3800557&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351982, '0xe661b74f95de19615796592142bdecba86f871f6', 0, 1, '2024-05-06 01:14:44+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351980, '0x2150abd533fcbf732c6b8db46b01c6db8d8a4c42', 0, 1, '2024-05-06 01:15:16+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-idgaf-feat-yeat?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173188, '0x9e89d7224560c696460e16188b80f6065382d5b0', 0, 1, '2024-05-15 06:56:37+00', 0, 3, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 575, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 467, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/38JwWfvPoTpTyaoR7\"}"}', 'sonata'), - (348593, '0xa981ee5ef59be1009c1e9dbc45504343f3f10de5', 0, 1, '2024-05-06 00:48:33+00', 0, 1, '{"fid": 8080, "object": "user", "pfp_url": "https://i.imgur.com/UCtnuFF.png", "profile": {"bio": {"text": "Chaotic good | building /precog 🪼 and writing at /petra\n |\nMonk at buildermonastery.com", "mentioned_profiles": []}}, "username": "0xpetra", "power_badge": true, "display_name": "Petra 🪼 ⊙", "active_status": "inactive", "verifications": ["0x9fc3b33884e1d056a8ca979833d686abd267f9f8", "0xb854e5c4ff9a848211d1ae0a34793d2f5e8f60da"], "follower_count": 927, "custody_address": "0xd3d912f3ac07268bf521265959d044ccc8fab0c2", "following_count": 270, "verified_addresses": {"eth_addresses": ["0x9fc3b33884e1d056a8ca979833d686abd267f9f8", "0xb854e5c4ff9a848211d1ae0a34793d2f5e8f60da"], "sol_addresses": ["7HjJx3S4vkXY6UzFFCe7mM1HKXXzHSw8Vrz1pmhQdLPz"]}}', '{"{\"url\":\"https://open.spotify.com/track/4eijCHExCy4mmggrhhiEeN?si=_mBV1qV3TqWRhapeZwmPZA&context=spotify%3Aalbum%3A6aGKLN1RkJ9LlnWjEJK77i\"}"}', NULL), - (286640, '0x880e228edd8e5201c25725275ff0df70f6ad7647', 0, 1, '2024-05-05 19:16:31+00', 0, 5, '{"fid": 451696, "object": "user", "pfp_url": "https://i.imgur.com/rEltg8O.jpg", "profile": {"bio": {"text": "I love Fitness and art, crypto and also kitten", "mentioned_profiles": []}}, "username": "mandana75", "power_badge": false, "display_name": "Mandana", "active_status": "inactive", "verifications": ["0x626c6f633acc7174430f250b258d9bd72084189c"], "follower_count": 1084, "custody_address": "0xbba845babdb1b3ce9e8286d72523c20b5f5e843c", "following_count": 1005, "verified_addresses": {"eth_addresses": ["0x626c6f633acc7174430f250b258d9bd72084189c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/enriqueiglesias/el-bano-feat-bad-bunny\"}"}', NULL), - (358498, '0x4df2f8ef68c368d4e34f15f3bb9310e6c362c3e2', 0, 1, '2024-05-06 02:06:10+00', 0, 0, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1692, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1297, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/kB67nhpGP2Z6tHMc9\"}"}', NULL), - (363389, '0x2fe25177906d4468adf38e4a5e3f0500aedf7bdd', 0, 1, '2024-05-06 02:34:15+00', 0, 1, '{"fid": 379974, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02be51e3-973e-443d-4df9-d8a9b39f3500/original", "profile": {"bio": {"text": "Hi . Im Wachiizz , im from Thailand . nice to meet u all . 😊🙏", "mentioned_profiles": []}}, "username": "wachiizz", "power_badge": false, "display_name": "Wachiizz🔄 🎩🍖", "active_status": "inactive", "verifications": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "follower_count": 621, "custody_address": "0x854d6376017c91822b2ba8e3c46dc2e25ac8b092", "following_count": 924, "verified_addresses": {"eth_addresses": ["0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443"], "sol_addresses": ["52jLcVZdST168cE9jFB6qukRu8DXUkjtX2FpJZKKKMWX"]}}', '{"{\"url\":\"https://soundcloud.com/khang-inh-640903699/justin-bieber-peaches?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (358495, '0x50b21c12ae3ca3f7376154692346bc0837211fde', 0, 1, '2024-05-06 02:06:43+00', 0, 0, '{"fid": 248532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2843a55-6e10-4831-d18c-0246e29acf00/rectcrop3", "profile": {"bio": {"text": "Trader also like NFT🤡", "mentioned_profiles": []}}, "username": "mesiban", "power_badge": false, "display_name": "Melori", "active_status": "inactive", "verifications": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "follower_count": 1383, "custody_address": "0x86ba576f71ec9462e3e68ef61026c177eafdc1c3", "following_count": 1536, "verified_addresses": {"eth_addresses": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "sol_addresses": ["8X2EPnpX6aLo4GEuLvLQiDrQ9JZq3ZSAaVTrPnCmooDk"]}}', '{"{\"url\":\"https://on.soundcloud.com/9bGnTtQMVR6Y4iL17\"}"}', NULL), - (292651, '0xf55d409db735369497ed70e3bbd9d3058f8e41f4', 0, 1, '2024-05-05 19:57:11+00', 0, 7, '{"fid": 439083, "object": "user", "pfp_url": "https://i.imgur.com/kQR4keG.jpg", "profile": {"bio": {"text": "Everything is made of energy and consciousness..🧘‍♀️🪷💫", "mentioned_profiles": []}}, "username": "parisss", "power_badge": false, "display_name": "Parisash", "active_status": "inactive", "verifications": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "follower_count": 1039, "custody_address": "0x42751c21c4721d754a8be4b50390e988e30a33ec", "following_count": 1154, "verified_addresses": {"eth_addresses": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VpKawXmwygkaW6jr8\"}"}', NULL), - (358365, '0x7eae68c87e4e2a835b0ecfade8157661938740c4', 0, 1, '2024-05-06 02:05:23+00', 0, 11, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 639, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 759, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-115432156/bts-dynamite?si=fdd84d8eca1d47be8e46f8d977a9301a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (322317, '0x9ac1c6c57fda22beecb4252648d7d3446ba0674e', 0, 1, '2024-05-05 21:56:16+00', 0, 3, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 242, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/pra-dizer-quem-sou-collect-to-earn-sstrm?referral_source=link\"}"}', 'streamz'), - (292980, '0x3c41043b7bac93ff35af8b0375ed80dde2375722', 0, 1, '2024-05-05 19:57:52+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 382, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/shervinine/cheshmato-beband\"}"}', NULL), - (299325, '0xd5ee394e0ad92775a9ee818f72c8670d0c772277', 0, 1, '2024-05-05 20:24:21+00', 0, 0, '{"fid": 497746, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24b2f067-7577-416d-9d3e-466a85243300/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mahigoli", "power_badge": false, "display_name": "mahi🎩", "active_status": "inactive", "verifications": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "follower_count": 169, "custody_address": "0x4475d9d1fad06f1833b597ced53bb98c19dadadd", "following_count": 313, "verified_addresses": {"eth_addresses": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "sol_addresses": []}}', '{"{\"url\":\"Listen to I Cant Get You Out Of My Head by Rawabi M.Als on #SoundCloud https://on.soundcloud.com/Db8Xj\"}"}', NULL), - (284836, '0x60e74a13d1ec14f9d23a6e6ea14a2bca3e409966', 0, 1, '2024-05-05 18:52:11+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 558, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 674, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7q4dT2rPzRMvO6q175V3Ii?si=b8d3da6f54724da4\"}"}', NULL), - (298517, '0x4c8cef5f2626440c6cdf0cfe7c5312816a44813d', 0, 1, '2024-05-05 20:21:27+00', 0, 0, '{"fid": 497746, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24b2f067-7577-416d-9d3e-466a85243300/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mahigoli", "power_badge": false, "display_name": "mahi🎩", "active_status": "inactive", "verifications": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "follower_count": 169, "custody_address": "0x4475d9d1fad06f1833b597ced53bb98c19dadadd", "following_count": 313, "verified_addresses": {"eth_addresses": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "sol_addresses": []}}', '{"{\"url\":\"Listen to I Cant Get You Out Of My Head by Rawabi M.Als on #SoundCloud https://on.soundcloud.com/Db8Xj\"}"}', NULL), - (290858, '0x3aea8ce26a0e519eb2292e4f8395c34340ab8e0f', 0, 1, '2024-05-05 19:49:19+00', 0, 2, '{"fid": 329280, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7101c14a-d35c-4902-8ef5-f45870354700/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "vitalikgalardo", "power_badge": false, "display_name": "Vitalik ↑↑🎩🍖🔥↑↑", "active_status": "inactive", "verifications": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "follower_count": 1152, "custody_address": "0x97d214f79db5b98d4ff851fbf0cd37602ea9ace2", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "sol_addresses": ["7J9ZvdQAsRx6Thi5SDqGRFYJhVxkt2HpG4jj1v12uDhu"]}}', '{"{\"url\":\"https://m.soundcloud.com/amirtatalooorg/behesht-tataloo\"}"}', NULL), - (287284, '0x58c31d224db84cae690ab19f28f3f71574bedcbe', 0, 1, '2024-05-05 19:22:49+00', 0, 6, '{"fid": 396276, "object": "user", "pfp_url": "https://arweave.net/mHGiXAlsRuKj8JbKBb7zwdwjrCNdSM5BDXXjBe_zzhM/", "profile": {"bio": {"text": "I''m student for market crypto 🍖", "mentioned_profiles": []}}, "username": "mohnmadkm", "power_badge": false, "display_name": "Mohamd Mahdi🍖", "active_status": "inactive", "verifications": ["0xff60415ac262d665519f4e529cde6c92760b310c"], "follower_count": 1458, "custody_address": "0xdf7b4eebc933a72af29f28b07fd51158a61d8997", "following_count": 867, "verified_addresses": {"eth_addresses": ["0xff60415ac262d665519f4e529cde6c92760b310c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to SAD! by XXXTENTACION on #SoundCloud https://on.soundcloud.com/Gh4Wn\"}"}', NULL), - (298761, '0xe4f889d54ef442114c8093cee36fb8e5cc17de36', 0, 1, '2024-05-05 20:22:12+00', 0, 0, '{"fid": 497746, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24b2f067-7577-416d-9d3e-466a85243300/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mahigoli", "power_badge": false, "display_name": "mahi🎩", "active_status": "inactive", "verifications": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "follower_count": 169, "custody_address": "0x4475d9d1fad06f1833b597ced53bb98c19dadadd", "following_count": 313, "verified_addresses": {"eth_addresses": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "sol_addresses": []}}', '{"{\"url\":\"Listen to I Cant Get You Out Of My Head by Rawabi M.Als on #SoundCloud https://on.soundcloud.com/Db8Xj\"}"}', NULL), - (285019, '0x5c22693f5cd73ce54626f44e110e9be4b62253ac', 0, 1, '2024-05-05 18:52:45+00', 0, 2, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/49KDK2ccYnOCYPeXfDO3YT?si=6f3c8e2a173748e3\"}"}', NULL), - (285201, '0x1ccd5941bf95f77d9623a54bb7177d55368c57a6', 0, 1, '2024-05-05 18:49:31+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ta2jian-241487429/rlgufs7yhdor?si=1ea6c71a817c401287a238dd4d176999&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (288056, '0xdff86b0daf9f5cef2d842a4ea3436db67af4e964', 0, 1, '2024-05-05 19:27:44+00', 0, 1, '{"fid": 384337, "object": "user", "pfp_url": "https://i.imgur.com/ftRlSQ7.jpg", "profile": {"bio": {"text": "I’m a crypto lover", "mentioned_profiles": []}}, "username": "lieblin", "power_badge": false, "display_name": "GiGi", "active_status": "inactive", "verifications": ["0x37d90dd82b571a6fd5a60e12e8b2b32a64950453"], "follower_count": 149, "custody_address": "0xdc85099b95f012de30a742e52d3024d1240ff86c", "following_count": 395, "verified_addresses": {"eth_addresses": ["0x37d90dd82b571a6fd5a60e12e8b2b32a64950453"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WaE3qu23U6FLruPt8\"}"}', NULL), - (285357, '0x9098893d535c8c56dd0568bc3725f8df074105e5', 0, 1, '2024-05-05 18:57:27+00', 0, 7, '{"fid": 443794, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7fbaae92-fc9b-4e58-adab-408c63d70e00/rectcrop3", "profile": {"bio": {"text": "Hi everyone my name is Fandogh \ncrypto lover \n", "mentioned_profiles": []}}, "username": "fandoghshekann", "power_badge": false, "display_name": "LonlyBlond 🎩", "active_status": "inactive", "verifications": ["0x4fb20bc374658feb1fddec6c6de78c6dae8e042c"], "follower_count": 769, "custody_address": "0xca83f51435122745fbf8442c9d2bd09d4686b5d5", "following_count": 965, "verified_addresses": {"eth_addresses": ["0x4fb20bc374658feb1fddec6c6de78c6dae8e042c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yMtdhsF8uDFSyL9K8\"}"}', NULL), - (298763, '0xd8f0bdc27f6859928dc45cfb809187bca92c3d99', 0, 1, '2024-05-05 20:21:49+00', 0, 0, '{"fid": 476061, "object": "user", "pfp_url": "https://i.imgur.com/jAfS0zp.jpg", "profile": {"bio": {"text": "Computer engineering graduate \nInterested in cyber security and 🎮🎥🧑‍🎤", "mentioned_profiles": []}}, "username": "xalix", "power_badge": false, "display_name": "Ali", "active_status": "inactive", "verifications": ["0xf24ad3113f41ca1aa4dfe92dba6b947b958e41a3", "0xd275e3b6b9ff179d8721a847e8d2cbac2d2cbcee"], "follower_count": 234, "custody_address": "0x229a7071ed1f5862fd4f4a3d3a6cb38f80140b2f", "following_count": 329, "verified_addresses": {"eth_addresses": ["0xf24ad3113f41ca1aa4dfe92dba6b947b958e41a3", "0xd275e3b6b9ff179d8721a847e8d2cbac2d2cbcee"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8CZsDp7daqjbv5y69\"}"}', NULL), - (291159, '0x8c33245f93567125b782e2fce6b3bdd372b8bc0d', 0, 1, '2024-05-05 19:49:58+00', 0, 2, '{"fid": 329280, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7101c14a-d35c-4902-8ef5-f45870354700/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "vitalikgalardo", "power_badge": false, "display_name": "Vitalik ↑↑🎩🍖🔥↑↑", "active_status": "inactive", "verifications": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "follower_count": 1152, "custody_address": "0x97d214f79db5b98d4ff851fbf0cd37602ea9ace2", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "sol_addresses": ["7J9ZvdQAsRx6Thi5SDqGRFYJhVxkt2HpG4jj1v12uDhu"]}}', '{"{\"url\":\"https://m.soundcloud.com/alirezah-s/haramsara\"}"}', NULL), - (285354, '0xac3ee5a07cb0f30f7e20373f963f084d55eaaae5', 0, 1, '2024-05-05 18:55:44+00', 0, 7, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 755, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1102, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1Kjtixb2sRtFai8b8\"}"}', NULL), - (322375, '0x978ae551061ce26d3210f1d7b0406516cd53be87', 0, 1, '2024-05-05 21:58:33+00', 0, 0, '{"fid": 5932, "object": "user", "pfp_url": "https://i.imgur.com/jmkjX5y.jpg", "profile": {"bio": {"text": "musical persona simulation 🤖❤️🎵\nhvdson.com", "mentioned_profiles": []}}, "username": "hvdson", "power_badge": true, "display_name": "hvdson", "active_status": "inactive", "verifications": ["0x376275c4f9e4fffd8a89a90852f253f8e3373f67"], "follower_count": 192, "custody_address": "0x3c23e15cf8b66e1ff22c1b19d97c396034a38ce4", "following_count": 219, "verified_addresses": {"eth_addresses": ["0x376275c4f9e4fffd8a89a90852f253f8e3373f67"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hvdsonofficial/enough\"}"}', NULL), - (293792, '0x01d22b24c99af5f0bd11cae15d56286801843f1e', 0, 1, '2024-05-05 20:02:45+00', 0, 0, '{"fid": 410573, "object": "user", "pfp_url": "https://i.imgur.com/QuUBeOe.jpg", "profile": {"bio": {"text": "Interested in emerging technologies follow me", "mentioned_profiles": []}}, "username": "hasanmoradi", "power_badge": false, "display_name": "hasanmoradi🍖", "active_status": "inactive", "verifications": ["0xba27938067e95acd4dacca76af066d05c0ab2d50"], "follower_count": 139, "custody_address": "0xba4d5d68550c2d59f4926146c9b34c2d85ffc0df", "following_count": 260, "verified_addresses": {"eth_addresses": ["0xba27938067e95acd4dacca76af066d05c0ab2d50"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/miladip/banafshe-prod-by-fonix\"}"}', NULL), - (299137, '0x8aa43732512355c46b28a62b29c3a96005e1972a', 0, 1, '2024-05-05 20:23:52+00', 0, 0, '{"fid": 410573, "object": "user", "pfp_url": "https://i.imgur.com/QuUBeOe.jpg", "profile": {"bio": {"text": "Interested in emerging technologies follow me", "mentioned_profiles": []}}, "username": "hasanmoradi", "power_badge": false, "display_name": "hasanmoradi🍖", "active_status": "inactive", "verifications": ["0xba27938067e95acd4dacca76af066d05c0ab2d50"], "follower_count": 139, "custody_address": "0xba4d5d68550c2d59f4926146c9b34c2d85ffc0df", "following_count": 260, "verified_addresses": {"eth_addresses": ["0xba27938067e95acd4dacca76af066d05c0ab2d50"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/art-tawanghar/baraye-azadi-shervin-hajipour\"}"}', NULL), - (300933, '0x35be661dd157068f7a7c179775d92e995fa825b4', 0, 1, '2024-05-05 20:28:11+00', 0, 1, '{"fid": 455168, "object": "user", "pfp_url": "https://i.imgur.com/YRYofQ3.jpg", "profile": {"bio": {"text": "🖥️Forex & cryptocurrency trader🖥️\n🥊 boxing 🥊\nthe painter🕯️\nWork at sgs group", "mentioned_profiles": []}}, "username": "armanostadian", "power_badge": false, "display_name": "Arman ☔🍖🔵🎩", "active_status": "inactive", "verifications": ["0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8"], "follower_count": 660, "custody_address": "0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8", "following_count": 919, "verified_addresses": {"eth_addresses": ["0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HEG7R\"}"}', NULL), - (337987, '0xe83951989456bcb39182b6121365576a3b3f0fb2', 0, 1, '2024-05-05 23:30:25+00', 0, 0, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 729, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 771, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aikupabbo/younha-umbrella\"}"}', 'sonata'), - (346430, '0x3a1d636b95b83df45b15d09d35251afcc66e98ae', 0, 1, '2024-05-06 00:28:16+00', 0, 13, '{"fid": 484256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58979a6c-5974-4eb5-0d8f-d4ef62071f00/rectcrop3", "profile": {"bio": {"text": "한다면 하는 남자 real 오또코", "mentioned_profiles": []}}, "username": "puffmommy", "power_badge": false, "display_name": "ddogas", "active_status": "inactive", "verifications": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "follower_count": 2490, "custody_address": "0xa3e79ae97323b1c623fc2bd636ebec9bc5e418b6", "following_count": 2377, "verified_addresses": {"eth_addresses": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rjpp2ovwcy3r/gist-black-swan-feat-4?si=ab4ce39f3f174279b08eaf3dd0051e67&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (350393, '0xfbd4d5e20b1681d88cbdda5547ee81420ff3e763', 0, 1, '2024-05-06 01:03:12+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (363354, '0xd0b8103c07fca43ee66d59c965e08255be53dcc9', 0, 1, '2024-05-06 02:33:08+00', 10, 27, '{"fid": 477741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ca1b374-391e-4594-c57a-053a77873500/rectcrop3", "profile": {"bio": {"text": "존버남/신뢰/의리/믿음/일상공유/슈캐\n/무조건 리캐 하트/🎩🍖", "mentioned_profiles": []}}, "username": "noincil", "power_badge": false, "display_name": "JON BER🎩🍖", "active_status": "inactive", "verifications": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "follower_count": 3031, "custody_address": "0xfb1fe84faf8d0adb346adb8bee2cc8bc8d32fa4b", "following_count": 3001, "verified_addresses": {"eth_addresses": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/b2utiful/408mizwjfaqz?si=285ec890e87c43e280dc4a86a2d661b5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (354571, '0x10012e67202912fcf058b161b471181b217b2505', 0, 1, '2024-05-06 01:36:57+00', 0, 0, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2018, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2590, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gst-5/bts-jimin-promise?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (354302, '0x71f3a0d71a00f3653556c9bd822f1a19d5993b87', 0, 1, '2024-05-06 01:34:13+00', 0, 0, '{"fid": 500590, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef820da0-3851-4336-4acd-84bcb801a600/rectcrop3", "profile": {"bio": {"text": "Hi, I''m Sarang''s mom\nPlease take good care of me!!", "mentioned_profiles": []}}, "username": "jinyoungs2", "power_badge": false, "display_name": "sarang ", "active_status": "inactive", "verifications": ["0x5f13e9621478575c205e5fe909c43dfb3f762212"], "follower_count": 1532, "custody_address": "0x1a8d440aab4a7eacd9eef0d0b1b57fc06878dc95", "following_count": 1987, "verified_addresses": {"eth_addresses": ["0x5f13e9621478575c205e5fe909c43dfb3f762212"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/55woV\"}"}', 'sonata'), - (358803, '0x69e6fc29fbb06aac96a77673f3b6a7d1ab7dab90', 0, 1, '2024-05-06 02:08:24+00', 0, 0, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 198, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 188, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-142234339/partner-for-life?si=e03cfc49bd9e4233a875b8af70a120f7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (357397, '0xd5ecb27e79432b6866dd69a997a8ff58c9450997', 22, 1, '2024-05-06 01:59:36+00', 0, 0, '{"fid": 508188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66ab94f4-7c32-4c5d-ce26-7a5d245ce200/rectcrop3", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 902, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 891, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/swordfish-fyredragon/dead-man-walking-city-wolf?si=38d2d693625d425ca1b994dcd7c02bba&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (344290, '0x793e464a29f080d0ebb483da8620e7a83d50b278', 0, 1, '2024-05-06 00:09:28+00', 0, 3, '{"fid": 340819, "object": "user", "pfp_url": "https://i.imgur.com/6EdMb5r.jpg", "profile": {"bio": {"text": "follow /beatmaking | \"nft superstar\". multidisciplinary artist. creator\nhttps://www.sound.xyz/fabrii2k -\nhttps://zora.co/@fabrii2k", "mentioned_profiles": []}}, "username": "fabrii.eth", "power_badge": false, "display_name": "fabrii 🎩", "active_status": "inactive", "verifications": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "follower_count": 625, "custody_address": "0x0b3d285feb1ed3fa3012580e340e7047ff5bcb3d", "following_count": 461, "verified_addresses": {"eth_addresses": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fabrii2k/viaje-116\"}"}', NULL), - (457644, '0x1f6c57afba2e7087bffe4c8f1dc4762bffbb68e1', 0, 1, '2024-05-06 06:55:29+00', 0, 0, '{"fid": 272706, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16017ada-f877-4775-397d-6b9d9633c700/rectcrop3", "profile": {"bio": {"text": "Make the lifestyle /higher together ↑² ", "mentioned_profiles": []}}, "username": "0xmaruko", "power_badge": false, "display_name": "0xMaru↑²", "active_status": "inactive", "verifications": ["0xae948f39dce7c0ccfcfba21bfb07ed4f8f943cdc"], "follower_count": 1844, "custody_address": "0x77811898941a62dbdbc778050d7d9fe7f426bfc3", "following_count": 848, "verified_addresses": {"eth_addresses": ["0xae948f39dce7c0ccfcfba21bfb07ed4f8f943cdc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2hAokKz7xyXY4Mye6\"}"}', NULL), - (285633, '0xc7f45c87f208a4e619a1791ef5d4d84918aee08e', 0, 1, '2024-05-05 19:02:45+00', 0, 0, '{"fid": 393047, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d466d08e-47ce-4a92-cb7c-04a1e2cfa600/original", "profile": {"bio": {"text": "Otter is my fren 🦦💜 | Crypto 💰 | Funny art 🎨 | Pro-warpcaster ♾️ | Loving people who have a sense of humor 👑 ", "mentioned_profiles": []}}, "username": "seaotter-queen", "power_badge": false, "display_name": "Sea otter🦦💜 ", "active_status": "inactive", "verifications": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "follower_count": 3088, "custody_address": "0xd338d15b6526fce37a0ce3a1a046200ea3bd9e7a", "following_count": 1299, "verified_addresses": {"eth_addresses": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "sol_addresses": ["8eqT4DEY5foT9DMNhCFqGPYi7MnWo893XQFNxJnsyYPx"]}}', '{"{\"url\":\"https://soundcloud.com/joachim-nielsen-3/peggy-gou-nanana-it-goes-like-speed-up?si=ad9ef060a7264048a8de24e65e64419e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284778, '0xb49e92584aa5afd8c6aedb214c7859921e208399', 0, 1, '2024-05-05 18:49:58+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-914463928/for-you-yim-jae-beum?si=26b069491e1446eba7554ba39222dd22&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (284777, '0xc9ff70263e3548c40ab605be7d5366c62982216f', 0, 1, '2024-05-05 18:50:39+00', 0, 0, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-kwangsup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 892, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-517538599/prajksb4hhts?si=08848d00769949f28b4e5cd020ac3df9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (287763, '0x62f838a47e68448d7d9cf586b4112e9a337e4e0f', 0, 1, '2024-05-05 19:25:24+00', 0, 10, '{"fid": 405166, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1bccac85-5bf1-4a82-a1c1-3ad7b2467000/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "smhathar", "power_badge": false, "display_name": "Smhathar🎩🎩🎩", "active_status": "inactive", "verifications": ["0x9d4afb91930fef1c42ed11841a579e5343aca78e"], "follower_count": 2230, "custody_address": "0xcb6dfeb8f0db9042de7c82d9c0f71d90706dc1bc", "following_count": 2690, "verified_addresses": {"eth_addresses": ["0x9d4afb91930fef1c42ed11841a579e5343aca78e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Space Bound by Eminem on #SoundCloud https://soundcloud.com/eminemofficial/space-bound?ref=clipboard&p=a&c=0&si=4e33c6c201ad4d3880f49820360c1eb7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (322605, '0x602e2730aaaf68a5858de53fdb6ed340c95f2c07', 0, 1, '2024-05-05 21:59:39+00', 0, 1, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 950, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 900, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rDxRJkDXd8azJYXC7\"}"}', NULL), - (425094, '0x9fd021abe7961baf2011f16a5348ceb0b9e9c1d4', 0, 1, '2024-05-06 06:04:19+00', 0, 1, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1704, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PMPDdD3acCiWvLRu5\"}"}', 'sonata'), - (358631, '0x819a90af7b73d38dd1ec161e3f57c5c09870b658', 22, 1, '2024-05-06 02:07:18+00', 0, 1, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3541, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2003, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/ZsxrFtkxsKxiLt896\"}"}', 'sonata'), - (322607, '0x94d059297e8f6d49cb5617debb0c07d2b6795b2a', 0, 1, '2024-05-05 22:00:23+00', 0, 0, '{"fid": 508575, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb3389ba-81bc-42db-3e0d-387741f91c00/rectcrop3", "profile": {"bio": {"text": "I standup for you. like reply quote ~ for you", "mentioned_profiles": []}}, "username": "!508575", "power_badge": false, "display_name": "Marcokim2", "active_status": "inactive", "verifications": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "follower_count": 409, "custody_address": "0x6a44ba7ae013effc69f9590a2d950252d28909c9", "following_count": 754, "verified_addresses": {"eth_addresses": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 성시경 - 두사람 [Live] by shindz85 on #SoundCloud https://on.soundcloud.com/4enLg\"}"}', NULL), - (358800, '0xbfab073a03d5069d24aecbd51b2f443e427488dc', 22, 1, '2024-05-06 02:09:08+00', 0, 3, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3855, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3283, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/y2qQ6\"}"}', NULL), - (288055, '0xe02c7413aa3d373449f402c7cee5100a4032440d', 0, 1, '2024-05-05 19:28:00+00', 1, 10, '{"fid": 460681, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3683fe7-68ad-4932-09f0-52b573fb5200/original", "profile": {"bio": {"text": "Modeling", "mentioned_profiles": []}}, "username": "loosi", "power_badge": false, "display_name": "Loosi 🔄 🎩", "active_status": "inactive", "verifications": ["0xab0ec712b8b7a9b12b659167aa4b91e1041118e4"], "follower_count": 1302, "custody_address": "0x76611a10838529b9504ea827318f4d88363d0d5e", "following_count": 1299, "verified_addresses": {"eth_addresses": ["0xab0ec712b8b7a9b12b659167aa4b91e1041118e4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aaron-elxd/escape-kilgore-doubtfire?in=trending-music-fr/sets/jazz&si=dcc376bb84ca451f9c9f35b49f419203&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (365574, '0x1317dd40f7bd522b3c0da72933cb14e13851aeed', 0, 1, '2024-05-06 02:56:44+00', 10, 0, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5gB63hrYFgmDanfA9\"}"}', NULL), - (358802, '0xe8c2dfa71fa610f6270446a3282940faaea93e73', 0, 1, '2024-05-06 02:08:00+00', 0, 0, '{"fid": 248532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2843a55-6e10-4831-d18c-0246e29acf00/rectcrop3", "profile": {"bio": {"text": "Trader also like NFT🤡", "mentioned_profiles": []}}, "username": "mesiban", "power_badge": false, "display_name": "Melori", "active_status": "inactive", "verifications": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "follower_count": 1383, "custody_address": "0x86ba576f71ec9462e3e68ef61026c177eafdc1c3", "following_count": 1536, "verified_addresses": {"eth_addresses": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "sol_addresses": ["8X2EPnpX6aLo4GEuLvLQiDrQ9JZq3ZSAaVTrPnCmooDk"]}}', '{"{\"url\":\"https://on.soundcloud.com/F5ktV8uYAPKr2EaQ9\"}"}', NULL), - (365540, '0x6da1ed4f5ea1fa6e19b78a16f5262ee415fd531d', 0, 1, '2024-05-06 02:55:46+00', 0, 5, '{"fid": 506167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a791ac3a-65f2-4def-608c-59ae24c67400/rectcrop3", "profile": {"bio": {"text": "In crypto since 2017", "mentioned_profiles": []}}, "username": "onlydh", "power_badge": false, "display_name": "daniel", "active_status": "inactive", "verifications": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "follower_count": 757, "custody_address": "0x9c94baca26c8a6b031bdb5025963fcdac9f0eaa2", "following_count": 1026, "verified_addresses": {"eth_addresses": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/barsenabestandhi/falling-slowly-ost-once-andri-guitara-barsena-cikallia-cover?si=95cb7c42e3eb4602a55ba014e19cc142&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (497489, '0x6d867b91f1737bd482c3adffa9a797411dfc87f1', 0, 1, '2024-05-06 07:57:13+00', 0, 0, '{"fid": 509805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be4a8f03-f88b-4c7f-e92c-542751693900/rectcrop3", "profile": {"bio": {"text": "Sky is very beautiful", "mentioned_profiles": []}}, "username": "!509805", "power_badge": false, "display_name": "Samanehsky", "active_status": "inactive", "verifications": ["0x18be89bad07b022093f04343aebd4c42856e9aa2"], "follower_count": 262, "custody_address": "0xd1c176c300268cb7d63b29e48cb2a8d17aaedbbf", "following_count": 211, "verified_addresses": {"eth_addresses": ["0x18be89bad07b022093f04343aebd4c42856e9aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/ccw/jennifer-lopez-ft-pitbull-on?in=user-246874043%2Fsets%2Fjenifer-lopez\"}"}', NULL), - (299129, '0xe7e4f185391ed6e0a718a73454711008770e696a', 0, 1, '2024-05-05 20:24:04+00', 0, 1, '{"fid": 498509, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/010d4e75-25e8-44dc-3753-ab19b14ec400/rectcrop3", "profile": {"bio": {"text": "I''m a man that investing in crypto", "mentioned_profiles": []}}, "username": "godofmoney", "power_badge": false, "display_name": "Moneyman 🎩🔮🔄", "active_status": "inactive", "verifications": ["0xfee15f602e9206f01880840bca6c4360c7934f34"], "follower_count": 388, "custody_address": "0x76baa881c0f15a0ccf459681487185718c22d7b1", "following_count": 449, "verified_addresses": {"eth_addresses": ["0xfee15f602e9206f01880840bca6c4360c7934f34"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/hamid-reza-heidarolad/shervin-hajipour\"}"}', NULL), - (289735, '0x88cfcec9aa270fd43dbb8f175c00e9e4ceb45a5f', 0, 1, '2024-05-05 19:40:33+00', 0, 1, '{"fid": 452605, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/114899e9-2175-4ac8-3c4f-0647de3e5600/rectcrop3", "profile": {"bio": {"text": "nothing", "mentioned_profiles": []}}, "username": "peymanbn", "power_badge": false, "display_name": "peyman 🍖🎩💊", "active_status": "inactive", "verifications": ["0x30515e60b426ce67adf106fa95c172b23566eb6d"], "follower_count": 1058, "custody_address": "0xec6279fb72df1984953a9f509bf69d00deb6dae8", "following_count": 1418, "verified_addresses": {"eth_addresses": ["0x30515e60b426ce67adf106fa95c172b23566eb6d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Drake - Push Ups by octobersveryown on #SoundCloud https://soundcloud.com/octobersveryown/drake-push-ups?ref=clipboard&p=a&c=0&si=4f491a4e1117459ab59dcc850d6fe799&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (291830, '0x09358e3e4bd6682acb88bdb73b03a693c124d8e2', 0, 1, '2024-05-05 19:53:41+00', 0, 0, '{"fid": 329280, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7101c14a-d35c-4902-8ef5-f45870354700/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "vitalikgalardo", "power_badge": false, "display_name": "Vitalik ↑↑🎩🍖🔥↑↑", "active_status": "inactive", "verifications": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "follower_count": 1152, "custody_address": "0x97d214f79db5b98d4ff851fbf0cd37602ea9ace2", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "sol_addresses": ["7J9ZvdQAsRx6Thi5SDqGRFYJhVxkt2HpG4jj1v12uDhu"]}}', '{"{\"url\":\"https://m.soundcloud.com/user-534700048/ho3ein-eblis-remix\"}"}', NULL), - (322580, '0x966965fbe2297878ed934c5502de03a66a417270', 0, 1, '2024-05-05 22:00:38+00', 0, 2, '{"fid": 307026, "object": "user", "pfp_url": "https://i.imgur.com/395BxIs.jpg", "profile": {"bio": {"text": "Born as a /dreamer ,Designing and painting ، Trader in eth btc...", "mentioned_profiles": []}}, "username": "mahan22.eth", "power_badge": false, "display_name": "🎩Mahan 🎩🔵🔮🧀", "active_status": "inactive", "verifications": ["0xef18910e8dbb848959b201e43edf76e417e22383"], "follower_count": 1866, "custody_address": "0x201c1790cb0ec86b60b3223743a1055f2fd6dd6d", "following_count": 581, "verified_addresses": {"eth_addresses": ["0xef18910e8dbb848959b201e43edf76e417e22383"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RhPuoprzvm4CLYmt6\"}"}', NULL), - (299130, '0xfdaa7fc1488ef34be9e9409cd49db65408268e89', 0, 1, '2024-05-05 20:24:06+00', 0, 1, '{"fid": 323201, "object": "user", "pfp_url": "https://i.imgur.com/zP0yf1t.jpg", "profile": {"bio": {"text": "I want to know crypto", "mentioned_profiles": []}}, "username": "bakkah", "power_badge": false, "display_name": "BakkaH🎩🍖", "active_status": "inactive", "verifications": ["0x9d17e6017d50a82bd6fbd6b4c4d634fa16477987"], "follower_count": 1496, "custody_address": "0x4893c7ef0f9437116080422b1d200449f0fdea07", "following_count": 1983, "verified_addresses": {"eth_addresses": ["0x9d17e6017d50a82bd6fbd6b4c4d634fa16477987"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost20/kwon-jin-ah-be-melodramatic-ost-part-1?si=5352f3d217d24c9f9b152e870c3cfd9a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (338579, '0xc4a059bd6856ff8f8ee7d3b9a0893543e9956e4d', 0, 1, '2024-05-05 23:34:01+00', 0, 5, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1430, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1760, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9NwSjUzjXdaPobFJ8\"}"}', 'sonata'), - (346758, '0x9891faa078b8f9c93c5c4a51b9beb1bdcb0d82bd', 0, 1, '2024-05-06 00:32:13+00', 0, 1, '{"fid": 498224, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmRRfMNN25jfg9yyP5DtxRogahf4m57sKGHnHXSLVF86DM?filename=KakaoTalk_20240501_172127416_09.jpg", "profile": {"bio": {"text": "For my kid", "mentioned_profiles": []}}, "username": "whyandae", "power_badge": false, "display_name": "Whyandae", "active_status": "inactive", "verifications": ["0x664305ff3ba03dfd3e02891b3e645e3714936bb2"], "follower_count": 298, "custody_address": "0x58483925249e5dc5a40e80a4764ceaa313c43b76", "following_count": 308, "verified_addresses": {"eth_addresses": ["0x664305ff3ba03dfd3e02891b3e645e3714936bb2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CzpWUM6eL1PzRcG66\"}"}', 'sonata'), - (356051, '0xe6300544791065e891aa45337c5205f98983b909', 0, 1, '2024-05-06 01:44:08+00', 0, 0, '{"fid": 256931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59072961-f3b2-43d7-4f9b-556d3a50dc00/original", "profile": {"bio": {"text": "West Ham Capital\n(exit liquidity provider)\n\nFarcaster Reply Guy", "mentioned_profiles": []}}, "username": "catch0x22", "power_badge": true, "display_name": "Catch", "active_status": "inactive", "verifications": ["0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11"], "follower_count": 867, "custody_address": "0x80caf4b8c262827542c01a3f3c34bcb5cc34468b", "following_count": 1032, "verified_addresses": {"eth_addresses": ["0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-21121943/sets/flowz-dilione\"}"}', NULL), - (338589, '0x158227c6df839775eb9bf35740f9309be6e0a4ac', 0, 1, '2024-05-05 23:33:35+00', 0, 0, '{"fid": 397290, "object": "user", "pfp_url": "https://i.imgur.com/vhiJrQW.jpg", "profile": {"bio": {"text": "I love my family and travel♡ 세 아이의 엄마♡\n금수저 만들어줄께! 열심히 배우고 나누겠습니다!", "mentioned_profiles": []}}, "username": "cyj3058", "power_badge": false, "display_name": "Mother Bird♡", "active_status": "inactive", "verifications": ["0x4a4d0964edb10863aa0a57746df31f8c4458e8c0"], "follower_count": 3899, "custody_address": "0x0b1db5502363c2c6239f62a02fc2b1d60566f5af", "following_count": 3983, "verified_addresses": {"eth_addresses": ["0x4a4d0964edb10863aa0a57746df31f8c4458e8c0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZLAMyDBwYxZU5UEW6\"}"}', NULL), - (290249, '0xc9ccee15575b4d3bbdfdbe6706ff2a5195fe0d49', 0, 1, '2024-05-05 19:44:19+00', 0, 0, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 639, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 354, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cruze-guns/wax-1?si=467f07146d474ff9acae5dd2412af670&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (358799, '0x87ee2a9c94cf97f92ee6b93e00cc5d30c2dfc56d', 0, 1, '2024-05-06 02:07:37+00', 0, 0, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3431, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 4065, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://open.spotify.com/track/5sdQOyqq2IDhvmx2lHOpwd\"}"}', 'sonata'), - (355869, '0x33f567a1377b03503e56ce56726483392920ab48', 0, 1, '2024-05-06 01:42:48+00', 0, 0, '{"fid": 441526, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a36198f2-626c-4a8c-e08f-e0d580c26600/rectcrop3", "profile": {"bio": {"text": "Graphic designer➿️", "mentioned_profiles": []}}, "username": "titan899", "power_badge": false, "display_name": "Amir🎩🔮🍖", "active_status": "inactive", "verifications": ["0x1ad189e510a9d2b71f8386f14bdc5824b7470ee5"], "follower_count": 737, "custody_address": "0xcb3b09e369b6f053fa8256143ec6404601633ae8", "following_count": 797, "verified_addresses": {"eth_addresses": ["0x1ad189e510a9d2b71f8386f14bdc5824b7470ee5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Sweetwater by Ramin Djawadi on #SoundCloud https://on.soundcloud.com/5CdcK\"}"}', NULL), - (363450, '0x27db092cf49bb2966e199b27df3e6a7fc1680cf2', 0, 1, '2024-05-06 02:35:27+00', 0, 1, '{"fid": 382749, "object": "user", "pfp_url": "https://i.imgur.com/7MJOHmF.jpg", "profile": {"bio": {"text": "I love warpcast and degen\n주로 아침(출근길), 저녁(퇴근길), 야간반 활동합니다.\nhttps://zora.co/@ixtream", "mentioned_profiles": []}}, "username": "ixtream", "power_badge": false, "display_name": "ixtream🎩🍖", "active_status": "inactive", "verifications": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "follower_count": 2446, "custody_address": "0xda6f497cb157c676f9af0ba7f44cb4e8ef222502", "following_count": 2130, "verified_addresses": {"eth_addresses": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user448826392/04bryubuhiju?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (288565, '0x002db819b27a5913db97ae601508c571db64e61b', 0, 1, '2024-05-05 19:31:34+00', 0, 5, '{"fid": 5623, "object": "user", "pfp_url": "https://i.imgur.com/m9C6Q4Q.png", "profile": {"bio": {"text": "building /give /colinks-and-co\n@coordinape, host @cryptosapiens_, was blue pilled @yearnfi, ex facebook, instagram, netflix. ↑", "mentioned_profiles": []}}, "username": "defiginger", "power_badge": true, "display_name": "chris eberle @ farcon May 1-4", "active_status": "inactive", "verifications": ["0xff9b563140952fb7e3e5552f1a5068b637f0de0a"], "follower_count": 225, "custody_address": "0xe2a1072e53ea4d77ce88d2f59522e18debae5365", "following_count": 244, "verified_addresses": {"eth_addresses": ["0xff9b563140952fb7e3e5552f1a5068b637f0de0a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3NRXAXjsZGEndFAMD9PaCn?si=fs3X7Sk8SNy9_84dI8wWWQ\"}"}', 'enjoy'), - (291518, '0x63815f05346b571fd9b23feec409e420f2aa5e73', 0, 1, '2024-05-05 19:52:25+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 382, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/officialmetallica/bleeding-me-live-october-23-2016-bridge-school-benefit\"}"}', NULL), - (291245, '0x15a4df2208eb20879c4afc24a32df0328d39c6ee', 0, 1, '2024-05-05 19:51:25+00', 0, 0, '{"fid": 329280, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7101c14a-d35c-4902-8ef5-f45870354700/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "vitalikgalardo", "power_badge": false, "display_name": "Vitalik ↑↑🎩🍖🔥↑↑", "active_status": "inactive", "verifications": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "follower_count": 1152, "custody_address": "0x97d214f79db5b98d4ff851fbf0cd37602ea9ace2", "following_count": 1698, "verified_addresses": {"eth_addresses": ["0x3791b96ae2e3140e36274be6a3b298be09a818cf"], "sol_addresses": ["7J9ZvdQAsRx6Thi5SDqGRFYJhVxkt2HpG4jj1v12uDhu"]}}', '{"{\"url\":\"https://m.soundcloud.com/realshadmehr/shadmehr-aghili-bi-ehsas-instrumental\"}"}', NULL), - (338803, '0x5c0ffbf221510117dead0728d62f9a41cc34c7e2', 0, 1, '2024-05-05 23:36:00+00', 0, 2, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 469, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 770, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qTFEu\"}"}', NULL), - (291504, '0xc06f5eacce27178d0e27e7f56109a1661e28e144', 0, 1, '2024-05-05 19:52:30+00', 0, 2, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 639, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 354, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cruze-guns/wax-1?si=6a86801bca1849db967e17cf84ded5d6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (334333, '0x484f7b70644acd2022512eb4e9aea781091e351d', 0, 1, '2024-05-05 23:03:07+00', 0, 0, '{"fid": 188421, "object": "user", "pfp_url": "https://zerion-dna.s3.us-east-1.amazonaws.com/onepointo/45485468fe86dc228214abe31b84c43362265a15.png", "profile": {"bio": {"text": "Music nfts! \nhttps://www.sound.xyz/playlist/2bb58385-0745-4d0e-a80a-ef0fe58a18f4 ", "mentioned_profiles": []}}, "username": "777999", "power_badge": false, "display_name": "Thanh 🔴🎩🔵", "active_status": "inactive", "verifications": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "follower_count": 602, "custody_address": "0xbc81245772f4d0c531ad1715407e37be9bbe43fd", "following_count": 719, "verified_addresses": {"eth_addresses": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/eternalgarden/sara-phillips-imagine-w-tk?referral=0xa41a9630b65e4ea1216211ef99c5b2b1db069c85&referral_source=link\"}"}', NULL), - (291831, '0xdec64722e2ecbeebeee850f2a41a11d49ae16f3b', 0, 1, '2024-05-05 19:53:51+00', 0, 1, '{"fid": 439083, "object": "user", "pfp_url": "https://i.imgur.com/kQR4keG.jpg", "profile": {"bio": {"text": "Everything is made of energy and consciousness..🧘‍♀️🪷💫", "mentioned_profiles": []}}, "username": "parisss", "power_badge": false, "display_name": "Parisash", "active_status": "inactive", "verifications": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "follower_count": 1039, "custody_address": "0x42751c21c4721d754a8be4b50390e988e30a33ec", "following_count": 1154, "verified_addresses": {"eth_addresses": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hany-ezzat-22719858/sets/lara-fabian?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (322350, '0x9464b5e1f4cdba8bb0f9c0083183fdbaaba1dd3b', 0, 1, '2024-05-05 21:58:28+00', 0, 2, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 242, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/cypher-open-mic?referral_source=link\"}"}', 'soundxyz'), - (291833, '0x5825683c96cda5a78f529b093c5bbbb8b0372745', 0, 1, '2024-05-05 19:54:19+00', 0, 2, '{"fid": 439083, "object": "user", "pfp_url": "https://i.imgur.com/kQR4keG.jpg", "profile": {"bio": {"text": "Everything is made of energy and consciousness..🧘‍♀️🪷💫", "mentioned_profiles": []}}, "username": "parisss", "power_badge": false, "display_name": "Parisash", "active_status": "inactive", "verifications": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "follower_count": 1039, "custody_address": "0x42751c21c4721d754a8be4b50390e988e30a33ec", "following_count": 1154, "verified_addresses": {"eth_addresses": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hany-ezzat-22719858/sets/lara-fabian?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (322830, '0x1ce15d9d3b912c3156fa43cd3827d93145ea21f6', 0, 1, '2024-05-05 22:02:22+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 784, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1517, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 네시 (4 O''CLOCK) - R&V by BTS on #SoundCloud https://on.soundcloud.com/hBjDq\"}"}', NULL), - (338822, '0x487000e4cae591f824730934d847efc4ff2275f0', 0, 1, '2024-05-05 23:35:00+00', 0, 0, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2354, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2246, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wsbNBSCFYBrCFzTm9\"}"}', NULL), - (351981, '0x034732e20b2f097e6db183935f91302f40bda71b', 0, 1, '2024-05-06 01:15:23+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-rich-baby-daddy-feat?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (338819, '0x9a74bd835cf880a0a64c756294239e8997c11edf', 0, 1, '2024-05-05 23:36:03+00', 0, 3, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "follower_count": 2113, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2467, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "sol_addresses": []}}', '{"{\"url\":\"오늘아침은 산뜻하게 출발해봐요 ✋🏼 https://on.soundcloud.com/5uh4P9ypGgwVzFT26\"}"}', NULL), - (358973, '0x8b1055853d51dd12ed883f680c6b4fcba25e6b79', 0, 1, '2024-05-06 02:10:22+00', 0, 0, '{"fid": 248532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2843a55-6e10-4831-d18c-0246e29acf00/rectcrop3", "profile": {"bio": {"text": "Trader also like NFT🤡", "mentioned_profiles": []}}, "username": "mesiban", "power_badge": false, "display_name": "Melori", "active_status": "inactive", "verifications": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "follower_count": 1383, "custody_address": "0x86ba576f71ec9462e3e68ef61026c177eafdc1c3", "following_count": 1536, "verified_addresses": {"eth_addresses": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "sol_addresses": ["8X2EPnpX6aLo4GEuLvLQiDrQ9JZq3ZSAaVTrPnCmooDk"]}}', '{"{\"url\":\"https://on.soundcloud.com/3J5CsBhwQpoHy2C19\"}"}', NULL), - (363390, '0x3b7f913a136f72c8474945a0c91b1a6b51f8d600', 0, 1, '2024-05-06 02:35:03+00', 0, 0, '{"fid": 506817, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f199229-6daf-42c9-e4a1-c13531428900/rectcrop3", "profile": {"bio": {"text": "I am the person who delivers the crypto issue.", "mentioned_profiles": []}}, "username": "!506817", "power_badge": false, "display_name": "crypto issue", "active_status": "inactive", "verifications": ["0x394e68dd0a477c92642b226d69688281e34ec679"], "follower_count": 80, "custody_address": "0x44498c5533a367df3033924e58a0dae1b35a20b3", "following_count": 73, "verified_addresses": {"eth_addresses": ["0x394e68dd0a477c92642b226d69688281e34ec679"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-801940420/late?si=d4a3a32cf90942b885ef558ce62e0815&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (346770, '0xaf26f800950d283e6d324f8c2a6b6ec3cde6ecc9', 0, 1, '2024-05-06 00:32:51+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3111, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to GD X TAEYANG - GOOD BOY by BlacKAppLe XiAn on #SoundCloud https://on.soundcloud.com/gGQZM\"}"}', NULL), - (477369, '0x4e95a5f8b959e2a740f4db43c8e9fc43ad17f661', 0, 1, '2024-05-06 07:22:45+00', 0, 3, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2615, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2441, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-902649010/flac?si=3f5be29057ce48ac9455b2b6512a8f5d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (338820, '0xde4bb1a9ee914215dbd8ea3f13a3db29412929a7', 0, 1, '2024-05-05 23:35:32+00', 0, 0, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2918, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2336, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3Z2QG\"}"}', NULL), - (629054, '0x5c4218053ff9c6fb4aee075a09352c9774804990', 0, 1, '2024-05-06 13:45:55+00', 0, 3, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2657, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3132, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gVGcuuyKhaWCKjFm7\"}"}', 'sonata'), - (352134, '0x10fb78c383258aaf488f7bb5d04a0c98eb664a7d', 0, 1, '2024-05-06 01:15:46+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-search-rescue?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (783970, '0xaff81106807d336a7482028df6a475b42a80b73b', 0, 1, '2024-05-07 02:10:03+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2667, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3137, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LFRmLD1YBjAiq9Y4A\"}"}', NULL), - (351978, '0x0db342d18059cc37db2d94539aabfafcf5f5b1e0', 0, 1, '2024-05-06 01:15:38+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-jimmy-cooks-feat-21?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (291160, '0x39ffecb6242f9c419bf4b0ffdd2c1803295ca80e', 0, 1, '2024-05-05 19:49:34+00', 0, 4, '{"fid": 323021, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiglu6425tzwqqzolnnoqimdal7dg37auj5ikdvvjnrzlm2i4phd2u", "profile": {"bio": {"text": "Base ARMY\nIm trying to be useful here \nI love web3 evolution ", "mentioned_profiles": []}}, "username": "aryanshah", "power_badge": false, "display_name": "Aryan🎩🔵🍕", "active_status": "inactive", "verifications": ["0x5c70940b0f95609e9f82908f778136b46a7f3e22"], "follower_count": 2302, "custody_address": "0x0bb3b646762351798cd096a59130a6d67961d3c4", "following_count": 3103, "verified_addresses": {"eth_addresses": ["0x5c70940b0f95609e9f82908f778136b46a7f3e22"], "sol_addresses": ["24MC1gFU7k4cmWLnuDL3Qj7HJomk8AnWsYDhUFSZLGrn"]}}', '{"{\"url\":\"Listen to حصین by MAJID on #SoundCloud https://soundcloud.com/majid-khouie/xcsnmaitlizh?ref=clipboard&p=a&c=0&si=0491b3760a7645bb860a1a7f5bc1383e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (338981, '0xa69478d91c57d6256f09162206918b9ef28d327f', 0, 1, '2024-05-05 23:36:39+00', 0, 0, '{"fid": 326700, "object": "user", "pfp_url": "https://i.imgur.com/WWNWtHc.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "preflop12345", "power_badge": false, "display_name": "preflop🎩 🍖 ", "active_status": "inactive", "verifications": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "follower_count": 1912, "custody_address": "0x57bb96ec480a2043f2ac8386afbd7d3f8fb15ed3", "following_count": 924, "verified_addresses": {"eth_addresses": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/meandu1004/em4yy2w4bph2?si=e5800dec1e5f4ecbb39c5c4816561dd0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (323322, '0xfe6ab39001b29a10daad4a7c6b96a7cd5ffde823', 0, 1, '2024-05-05 22:03:26+00', 0, 5, '{"fid": 408771, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5c52c58-5e5f-4df5-99f3-7e2207151f00/rectcrop3", "profile": {"bio": {"text": "Digital designer and ideator", "mentioned_profiles": []}}, "username": "tataloo", "power_badge": false, "display_name": "T a T a L O o", "active_status": "inactive", "verifications": ["0xc5b5c61124d9d628428d3895519497c51567a871"], "follower_count": 1795, "custody_address": "0xe76cbd0d51b014193a4ddff044aa36fbcf22c317", "following_count": 1446, "verified_addresses": {"eth_addresses": ["0xc5b5c61124d9d628428d3895519497c51567a871"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/e9R7K3vyxbqfuHF28\"}"}', NULL), - (299131, '0xf08b90bb8b3da45c959da42540935f2865feb703', 0, 1, '2024-05-05 20:24:01+00', 0, 0, '{"fid": 404627, "object": "user", "pfp_url": "https://i.imgur.com/NNBEBuT.jpg", "profile": {"bio": {"text": "The world is more beautiful with love for each other", "mentioned_profiles": []}}, "username": "ali4440110", "power_badge": false, "display_name": "Alish🍖🎩🔵", "active_status": "inactive", "verifications": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "follower_count": 1431, "custody_address": "0xfc0bc6207090d439dcba7418d10fa4a31af2eae9", "following_count": 386, "verified_addresses": {"eth_addresses": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Emrah Karaduman - All Night ft No Method (Nickobella Remix) by Emrah Karaduman on #SoundCloud https://on.soundcloud.com/qf9dh\"}"}', NULL), - (292650, '0x30d3833f44f380e94729b8b6e86957f258f41621', 0, 1, '2024-05-05 19:56:57+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 382, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/shervinine/baraye\"}"}', NULL), - (301340, '0xab080e201cede926c88e954b774e75780a5ed40a', 3010, 1, '2024-05-05 20:30:52+00', 0, 4, '{"fid": 9507, "object": "user", "pfp_url": "https://i.imgur.com/EYrnENO.png", "profile": {"bio": {"text": "Streaming tokens @Superfluid", "mentioned_profiles": []}}, "username": "0xfran", "power_badge": true, "display_name": "0xFran 🫂", "active_status": "inactive", "verifications": ["0xf8a025b42b07db05638fe596cce339707ec3cc71", "0x91af6cab9b5115bd2ff7b7fc14309267937e4380"], "follower_count": 535, "custody_address": "0x8872cd3270f0d295faf52da61f1d0193c333eefa", "following_count": 259, "verified_addresses": {"eth_addresses": ["0xf8a025b42b07db05638fe596cce339707ec3cc71", "0x91af6cab9b5115bd2ff7b7fc14309267937e4380"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jkuw8xKy878K3njj7\"}"}', NULL), - (347006, '0x4b869776851cda4d28ebf78d00d050fe7e09a638', 0, 1, '2024-05-06 00:35:03+00', 0, 0, '{"fid": 512591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdc60244-d454-4841-b5cd-234f01583000/rectcrop3", "profile": {"bio": {"text": "Just normal person❤️\nInterested in cook \nand upload my dish''s pic 📸", "mentioned_profiles": []}}, "username": "!512591", "power_badge": false, "display_name": "Universe611", "active_status": "inactive", "verifications": ["0x0a1a262f7329136f9ae2ec3cedd577662b24bafa"], "follower_count": 158, "custody_address": "0xbe06c91b54890a1fbc89dc8960a6069360078bae", "following_count": 600, "verified_addresses": {"eth_addresses": ["0x0a1a262f7329136f9ae2ec3cedd577662b24bafa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tWUL5\"}"}', 'sonata'), - (674977, '0xfe1bdf6a06a9645479a3c15496e6d7475d688615', 0, 1, '2024-05-06 16:09:22+00', 0, 1, '{"fid": 499881, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e49f02d2-a431-4686-8a7d-c892deb0a400/rectcrop3", "profile": {"bio": {"text": "crypto, design, cat, anime, jelly", "mentioned_profiles": []}}, "username": "ha-ri-bo", "power_badge": false, "display_name": "Haribo🍭", "active_status": "inactive", "verifications": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "follower_count": 783, "custody_address": "0xa276999a2aa7d23d74589378094f7ac37ae3f0e1", "following_count": 1531, "verified_addresses": {"eth_addresses": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/forgdedelilt/bradio-flyers?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (301982, '0xe9469c0282267cd274623bdeed18adef3d50eeff', 0, 1, '2024-05-05 20:35:58+00', 0, 0, '{"fid": 404627, "object": "user", "pfp_url": "https://i.imgur.com/NNBEBuT.jpg", "profile": {"bio": {"text": "The world is more beautiful with love for each other", "mentioned_profiles": []}}, "username": "ali4440110", "power_badge": false, "display_name": "Alish🍖🎩🔵", "active_status": "inactive", "verifications": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "follower_count": 1431, "custody_address": "0xfc0bc6207090d439dcba7418d10fa4a31af2eae9", "following_count": 386, "verified_addresses": {"eth_addresses": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Q6LlzpVWUAcPwxl1caeDJ\"}"}', NULL), - (137870, '0x452f4335acbb05d00cf71b27ff0d17862a8ff240', 10, 1, '2024-05-05 06:38:52+00', 10, 19, '{"fid": 481666, "object": "user", "pfp_url": "https://i.imgur.com/YcP2Lxs.jpg", "profile": {"bio": {"text": "/music 💿 Music Producer 💿 Chris Brown, Pink $weats, Lady Gaga, Stray Kids, NCT, WayV, EXO, BAEKHYUN, Kai, LAY, Red Velvet, Girls Generation, Taeyeon, SHINee", "mentioned_profiles": []}}, "username": "chimike", "power_badge": false, "display_name": "Mike Daley", "active_status": "inactive", "verifications": ["0x05dc9b7bbaad662d5fe4b296a331613a5e25d416", "0x6517667689491ae1ff5a4cf1d14c4ebe79a8dfc5"], "follower_count": 7, "custody_address": "0x8a6c5bb0b33e6d7c19bd753ab96fec999667e635", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x05dc9b7bbaad662d5fe4b296a331613a5e25d416", "0x6517667689491ae1ff5a4cf1d14c4ebe79a8dfc5"], "sol_addresses": ["4P4cu6UxJyyxu5TzwYChpMgRmESgj1kvvKh4QC9EsAnC"]}}', '{"{\"url\":\"https://soundcloud.com/chimike/fontainebleau-feat-mike-jay?si=2e4c183543e242a8a9189fd0deffd56c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (293414, '0x13564fa3c8f90de17b8c9d40e54e30f2aaa4bbd8', 0, 1, '2024-05-05 20:01:30+00', 0, 0, '{"fid": 410573, "object": "user", "pfp_url": "https://i.imgur.com/QuUBeOe.jpg", "profile": {"bio": {"text": "Interested in emerging technologies follow me", "mentioned_profiles": []}}, "username": "hasanmoradi", "power_badge": false, "display_name": "hasanmoradi🍖", "active_status": "inactive", "verifications": ["0xba27938067e95acd4dacca76af066d05c0ab2d50"], "follower_count": 139, "custody_address": "0xba4d5d68550c2d59f4926146c9b34c2d85ffc0df", "following_count": 260, "verified_addresses": {"eth_addresses": ["0xba27938067e95acd4dacca76af066d05c0ab2d50"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/miladip/delivery-freestyle\"}"}', NULL), - (293280, '0x8380839926f936c1acb04b11b3681ae0f55a4111', 0, 1, '2024-05-05 20:00:17+00', 0, 6, '{"fid": 396838, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae9132b5-1341-4878-340a-57e9d362a900/original", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mehdi780", "power_badge": false, "display_name": "Mehdi7780i 🍖", "active_status": "inactive", "verifications": ["0xe47612d0a1e0cefffc8a63e820dbe576f83563db", "0x9ce5146a59bfec5f96d8a1bc9d42a80331d3c678"], "follower_count": 619, "custody_address": "0xef2b9e31ac2579c78bbd14aa535b1566f6f38028", "following_count": 1596, "verified_addresses": {"eth_addresses": ["0xe47612d0a1e0cefffc8a63e820dbe576f83563db", "0x9ce5146a59bfec5f96d8a1bc9d42a80331d3c678"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iranmediamusic/haydeh-aroosak?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (294143, '0x50505ab4d3c31ae8c6372b2e6068f1283c84c190', 0, 1, '2024-05-05 20:03:25+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1128, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/0aXb3G2Tjedb8FyErfwNXn?si=4t1EWAt-RYqkmlYB9MUkHQ&context=spotify%3Aalbum%3A6KZZs0SDtMuHkmmjWc2bk7\"}"}', NULL), - (358978, '0xdc4132001e51dbbbea56fb7002fa79a5c3c05aed', 22, 1, '2024-05-06 02:10:33+00', 0, 1, '{"fid": 455211, "object": "user", "pfp_url": "https://i.imgur.com/UQ2XbwY.jpg", "profile": {"bio": {"text": "follow please m", "mentioned_profiles": []}}, "username": "leel", "power_badge": false, "display_name": "Leel", "active_status": "inactive", "verifications": ["0xd7c323bdeb83d7c177e514d24964f5f5de49cdba"], "follower_count": 2546, "custody_address": "0xe47cfe1fc3c494f6c22f09b52ddefca7b4db9e8b", "following_count": 2921, "verified_addresses": {"eth_addresses": ["0xd7c323bdeb83d7c177e514d24964f5f5de49cdba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trapclouds/david-guetta-bebe-rexha-j-balvin-say-my-name\"}"}', 'sonata'), - (300000, '0x292ed661b776308d275cfa1878e7b8dcdf02ffd7', 0, 1, '2024-05-05 20:25:46+00', 0, 2, '{"fid": 498509, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/010d4e75-25e8-44dc-3753-ab19b14ec400/rectcrop3", "profile": {"bio": {"text": "I''m a man that investing in crypto", "mentioned_profiles": []}}, "username": "godofmoney", "power_badge": false, "display_name": "Moneyman 🎩🔮🔄", "active_status": "inactive", "verifications": ["0xfee15f602e9206f01880840bca6c4360c7934f34"], "follower_count": 392, "custody_address": "0x76baa881c0f15a0ccf459681487185718c22d7b1", "following_count": 449, "verified_addresses": {"eth_addresses": ["0xfee15f602e9206f01880840bca6c4360c7934f34"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/hamid-reza-heidarolad/shervin-hajipour\"}"}', NULL), - (450698, '0x41dbf1ebc9c5e78fa096196c59e2f7bc62543395', 0, 1, '2024-05-06 06:46:13+00', 0, 3, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2517, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5xenJ\"}"}', 'sonata'), - (302024, '0xd868e31a9788e939295125dbfb3d071715de3df2', 0, 1, '2024-05-05 20:36:42+00', 0, 0, '{"fid": 455168, "object": "user", "pfp_url": "https://i.imgur.com/YRYofQ3.jpg", "profile": {"bio": {"text": "🖥️Forex & cryptocurrency trader🖥️\n🥊 boxing 🥊\nthe painter🕯️\nWork at sgs group", "mentioned_profiles": []}}, "username": "armanostadian", "power_badge": false, "display_name": "Arman ☔🍖🔵🎩", "active_status": "inactive", "verifications": ["0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8"], "follower_count": 660, "custody_address": "0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8", "following_count": 919, "verified_addresses": {"eth_addresses": ["0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WZFaY\"}"}', NULL), - (363392, '0x221d6840a1f1712322d5c89cb8caba7052396a06', 0, 1, '2024-05-06 02:34:41+00', 0, 2, '{"fid": 315010, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreicpkgeyhqw4v6ubnw4agkcspvazrtg7higjlm2gdx42eum67iraei", "profile": {"bio": {"text": "Now is perfect moment!", "mentioned_profiles": []}}, "username": "junglipz", "power_badge": false, "display_name": "junglip", "active_status": "inactive", "verifications": ["0x3ea9ef13ae8a6700ea3abfdb6c86f00944a76a08"], "follower_count": 491, "custody_address": "0xf4bf3d3b2467706786853bdecd30b69cc1578378", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x3ea9ef13ae8a6700ea3abfdb6c86f00944a76a08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-360542346/b6vryevrp75g?si=a125cbc6c285438ab351bf70e7af9a44&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (304719, '0xee5a70effa80041ca6d0a4c08dea12a9f06e5557', 0, 1, '2024-05-05 20:46:35+00', 0, 3, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1410, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1943, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HHFLt\"}"}', NULL), - (299999, '0x09b61814e8b5fe22ebf58ea77340f6a86f467aef', 0, 1, '2024-05-05 20:25:33+00', 0, 1, '{"fid": 455168, "object": "user", "pfp_url": "https://i.imgur.com/YRYofQ3.jpg", "profile": {"bio": {"text": "🖥️Forex & cryptocurrency trader🖥️\n🥊 boxing 🥊\nthe painter🕯️\nWork at sgs group", "mentioned_profiles": []}}, "username": "armanostadian", "power_badge": false, "display_name": "Arman ☔🍖🔵🎩", "active_status": "inactive", "verifications": ["0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8"], "follower_count": 660, "custody_address": "0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8", "following_count": 919, "verified_addresses": {"eth_addresses": ["0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Lynn''s Theme by Olafur Arnalds on #SoundCloud https://on.soundcloud.com/joWJm\"}"}', NULL), - (299326, '0xeca13f89103569ef7f1e0e3a611063c8b86ae454', 0, 1, '2024-05-05 20:24:22+00', 0, 3, '{"fid": 404627, "object": "user", "pfp_url": "https://i.imgur.com/NNBEBuT.jpg", "profile": {"bio": {"text": "The world is more beautiful with love for each other", "mentioned_profiles": []}}, "username": "ali4440110", "power_badge": false, "display_name": "Alish🍖🎩🔵", "active_status": "inactive", "verifications": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "follower_count": 1431, "custody_address": "0xfc0bc6207090d439dcba7418d10fa4a31af2eae9", "following_count": 386, "verified_addresses": {"eth_addresses": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Emrah Karaduman - All Night ft No Method (Nickobella Remix) by Emrah Karaduman on #SoundCloud https://on.soundcloud.com/qf9dh\"}"}', NULL), - (298516, '0x1f0f50f2f75eda117bbe41ab6508e1cb5383d3fa', 1010, 1, '2024-05-05 20:20:25+00', 0, 18, '{"fid": 5431, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40c72a19-41ec-4128-9377-be9469383100/original", "profile": {"bio": {"text": "Co-Founder and Branding Bruce Lead at FLOC* | Degen Logo Designer | /brand3 /fartone /odegen | nf.td/esdotge", "mentioned_profiles": []}}, "username": "esdotge.eth", "power_badge": true, "display_name": "S·G 🎩 on FarCon", "active_status": "inactive", "verifications": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "follower_count": 30400, "custody_address": "0xec8e91d76ffd0593567b5a175b3e30b97f2cfdc5", "following_count": 1506, "verified_addresses": {"eth_addresses": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes\"}"}', NULL), - (1036386, '0x13e22fb0e8d39feda48cd8ba5a2abc350c7bc5b4', 0, 1, '2024-05-07 13:33:58+00', 0, 0, '{"fid": 423079, "object": "user", "pfp_url": "https://i.imgur.com/W8XgYlq.png", "profile": {"bio": {"text": "Slowly but steadily wins the degen!", "mentioned_profiles": []}}, "username": "examine", "power_badge": false, "display_name": "Jenmi", "active_status": "inactive", "verifications": ["0xf28278f34fd7aa09f410658aed36ceb0ba7292ec"], "follower_count": 1445, "custody_address": "0x760e3ef96ea126d65d43860c80b9ed49ba857948", "following_count": 1610, "verified_addresses": {"eth_addresses": ["0xf28278f34fd7aa09f410658aed36ceb0ba7292ec"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bensonboone/beautiful-things\"}"}', NULL), - (295032, '0x977937e083b9e2a7a206623c9b1954bc4da55a9c', 0, 1, '2024-05-05 20:05:34+00', 0, 0, '{"fid": 295814, "object": "user", "pfp_url": "https://arweave.net/UmJditu08ngvBaLpgFb3L8DXgu8F__6XPVRABhAnPVw/", "profile": {"bio": {"text": "Crypto trader", "mentioned_profiles": []}}, "username": "sphr", "power_badge": false, "display_name": "Sepehr 🎩", "active_status": "inactive", "verifications": ["0x49a176d46c6b87292008ab9eb6f033e791552b73"], "follower_count": 2278, "custody_address": "0x0892b3411254a581531d5ce2196ad1bf33fe7182", "following_count": 891, "verified_addresses": {"eth_addresses": ["0x49a176d46c6b87292008ab9eb6f033e791552b73"], "sol_addresses": ["9NpxxSghjwoKHN8RwpdKtSQpWwTNhr7hPA8idrUWRx9b"]}}', '{"{\"url\":\"https://soundcloud.com/theweeknd/starboy-1?ref=clipboard&p=i&c=0&si=2483D03AD5A8409D83B56B7EFCC65E73&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (339138, '0x8b7887f9a61a5c81b90e8a8c1fad7a3971595a13', 0, 1, '2024-05-05 23:38:07+00', 0, 3, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1648, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1715, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1wbSubm3cA4B7P9d9\"}"}', NULL), - (284626, '0xf91e4fb9a690a0096347566bbd9cd90cd955fdf8', 0, 1, '2024-05-05 18:48:53+00', 0, 4, '{"fid": 404623, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibnvpblu2ehtow3ydq74ixe7ifbzkbwi2oz6rwx42mlaf5nn52uk4", "profile": {"bio": {"text": "No Risk, No Porsche 911 ", "mentioned_profiles": []}}, "username": "imhassanrezaei", "power_badge": false, "display_name": "Ha$$aN 👽🔄🎩🍖🦄🥷", "active_status": "inactive", "verifications": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "follower_count": 1432, "custody_address": "0xd313785101ba70375b352462cfd38885f02429b6", "following_count": 1689, "verified_addresses": {"eth_addresses": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5mCPDVBb16L4XQwDdbRUpz?si=2GiD1VX2R6St62NwgH_A2Q\"}"}', NULL), - (295027, '0xa315d4e2b5936d736c19695572edf09bb91db948', 0, 1, '2024-05-05 20:06:21+00', 0, 0, '{"fid": 502168, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a700d28-bf97-42a1-331d-db3a3212b800/rectcrop3", "profile": {"bio": {"text": "‎‏Make ur Dreams Reality", "mentioned_profiles": []}}, "username": "castiell", "power_badge": false, "display_name": "Angel 🎩 🔮🔵⬆️", "active_status": "inactive", "verifications": ["0xdcbe021e3af328e1d9394c596b7512f93b9d0718"], "follower_count": 203, "custody_address": "0xfbe1a5276c136e7d60a4ff7e6605404f5e98fc35", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xdcbe021e3af328e1d9394c596b7512f93b9d0718"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t6kw8xjfQMU3fLyW9\"}"}', NULL), - (358975, '0x00b7bca9a0862800557b6ac095f36a1954bb8287', 0, 1, '2024-05-06 02:10:02+00', 0, 4, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 818, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 928, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NCDJ2QTUGae1ieKg6\"}"}', 'sonata'), - (134164, '0x738b525f4ad3620235e693d09518549ce7d9d4e0', 0, 1, '2024-05-05 06:21:12+00', 0, 3, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/six-feet-under?referral_source=link\"}"}', NULL), - (256128, '0x0535760e09de7e4f7507a4eb983090d8467af11b', 0, 1, '2024-05-05 15:08:10+00', 0, 1, '{"fid": 23074, "object": "user", "pfp_url": "https://i.imgur.com/7ffrMZd.jpg", "profile": {"bio": {"text": "filmo.eth.co / personne.eth.co / lecoffre.eth.co 😇\nJoined Farcaster before it was cool.\nNot early enough to be called OG.\nThe Plague #443 - FID 35383773", "mentioned_profiles": []}}, "username": "filmo", "power_badge": false, "display_name": "Le Filmopathe 🎭🎩", "active_status": "inactive", "verifications": ["0x4c47ab777f1f64d1f3d6efbf1cc7ab5a5224af4a"], "follower_count": 432, "custody_address": "0x9c282cf2f12f6592eb391cb3406fb24a391a80ab", "following_count": 622, "verified_addresses": {"eth_addresses": ["0x4c47ab777f1f64d1f3d6efbf1cc7ab5a5224af4a"], "sol_addresses": ["AUCZf2bCy92cf3JsRXf3LGu8D83bFoNWkULRX4KsePi6"]}}', '{"{\"url\":\"https://www.sound.xyz/joshsavage/lost-in-paris\"}"}', NULL), - (347010, '0xe464ac8be3c93b1f4312503a12edfcf5e1acfb68', 0, 1, '2024-05-06 00:33:34+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3111, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to BLACKPINK - 마지막처럼 (AS IF ITS YOUR LAST) by Isablem on #SoundCloud https://on.soundcloud.com/oHyEU\"}"}', NULL), - (303066, '0xf745ae6d54d10eaad79c34474cd0b3bb4084d184', 0, 1, '2024-05-05 20:40:28+00', 0, 3, '{"fid": 460806, "object": "user", "pfp_url": "https://i.imgur.com/QD8fIic.jpg", "profile": {"bio": {"text": "I''m mmad bigdlo", "mentioned_profiles": []}}, "username": "mmadbigdlo", "power_badge": false, "display_name": "🍖💊((mmad))🦕🦕", "active_status": "inactive", "verifications": ["0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a"], "follower_count": 612, "custody_address": "0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a", "following_count": 531, "verified_addresses": {"eth_addresses": ["0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S2s3GKT7oLfhhx617\"}"}', NULL), - (323325, '0xc112b6bf0e509da51009fb07c3c3b7ab7f49e4f9', 0, 1, '2024-05-05 22:03:15+00', 0, 0, '{"fid": 427462, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiakboqrtodndz725wpgcy5kcucfzvjfsduukhgif423lfa673t66m", "profile": {"bio": {"text": "I love new technology", "mentioned_profiles": []}}, "username": "teslapc12345", "power_badge": false, "display_name": "Mohamad Mehrabi 🔄🎩", "active_status": "inactive", "verifications": ["0x836eb99ad1bc73bc61d405a0df81bbe168055c27"], "follower_count": 166, "custody_address": "0x39ff4d5489262f8c3deedd04f94b279fe545652a", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x836eb99ad1bc73bc61d405a0df81bbe168055c27"], "sol_addresses": []}}', '{"{\"url\":\"Listen to tatlis gal gal by mohsen shahkarami on #SoundCloud https://soundcloud.com/mohsen-shahkarami-905811851/tatlis-gal-gal?ref=clipboard&p=a&c=0&si=5b0e618a0a24456ba94118c94637bddb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (306464, '0xea00bb916cf9dacf23bd2e7ac33398fda616e565', 0, 1, '2024-05-05 20:49:30+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2605, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2432, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uXFcL\"}"}', NULL), - (339139, '0x7efb0de24c3001edc2d192df4d41e4463d5320e6', 0, 1, '2024-05-05 23:37:57+00', 0, 4, '{"fid": 401077, "object": "user", "pfp_url": "https://i.imgur.com/EZvTj0P.jpg", "profile": {"bio": {"text": "I will follow each other, so please feel free to follow me!\nCreate a better future with crypto assets.\n\nいつも笑顔で元気よく!😆", "mentioned_profiles": []}}, "username": "kotetsu0512", "power_badge": false, "display_name": "Kotetsu0512🎩", "active_status": "inactive", "verifications": ["0x7029f8ecadb286a9085c60ab1ff9e3f728254606", "0x34691793392b4cda52ca098e8866d8547a5156f5"], "follower_count": 708, "custody_address": "0x8d35751dac578cf66a57ad1e688dfc5465cb9105", "following_count": 902, "verified_addresses": {"eth_addresses": ["0x7029f8ecadb286a9085c60ab1ff9e3f728254606", "0x34691793392b4cda52ca098e8866d8547a5156f5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/C78pPuCm7FrKxbZf8\"}"}', NULL), - (304726, '0x35cfc7b17c33053e3f86928475a34b359a881c13', 0, 1, '2024-05-05 20:46:11+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2605, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2432, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LHFUv\"}"}', NULL), - (363732, '0x7eafefbbe07e14492c140636763d01b5a0aa8b88', 0, 1, '2024-05-06 02:38:39+00', 0, 3, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 333, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/g1pCE\"}"}', 'sonata'), - (364049, '0xe565857ac68fa8114ddfa113a2f937719d3fa2b7', 0, 1, '2024-05-06 02:42:02+00', 0, 0, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 104, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 187, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uef7fMVJ1YN1Gxc97\"}"}', NULL), - (346830, '0x4d646b4d9c9f1a602e6f893a0890fd033d3363b2', 0, 1, '2024-05-06 00:33:14+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3111, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to BTS - Anpanman by (P.B) Music on #SoundCloud https://on.soundcloud.com/b7pfV\"}"}', NULL), - (339141, '0xc96d105d8e67db3999b7b4b2ab85bd03926d2653', 0, 1, '2024-05-05 23:38:30+00', 0, 3, '{"fid": 500876, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c36cfae-2adf-4db7-bf7b-5182b4a56400/rectcrop3", "profile": {"bio": {"text": "Happy things happen everyday :-)", "mentioned_profiles": []}}, "username": "seayu", "power_badge": false, "display_name": "seayu", "active_status": "inactive", "verifications": ["0x577a72f341252a8704647be6f0b9d34e78f1b750"], "follower_count": 754, "custody_address": "0xec50194b1b3d5a5758e21e67dfe2725982b3547a", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x577a72f341252a8704647be6f0b9d34e78f1b750"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hnBov3DKwwJ4C69x5\"}"}', NULL), - (423325, '0xe5aa74be4f2ebebf9d6b5a2006df891cea9d191c', 0, 1, '2024-05-06 06:01:32+00', 0, 5, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 644, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 763, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/soljogirl/kimdongryule-07-replay?si=229ea2839fc64e809ecd6850ee3419ef&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (139880, '0x9e7edd05a69a036917dd898f5ab54b71c304da8b', 0, 1, '2024-05-05 07:13:50+00', 0, 1, '{"fid": 211145, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiegrnialwu66u3nwzkn4gik4i2x2h4ip7y3w2dlymzlpxb5lrqbom", "profile": {"bio": {"text": "123", "mentioned_profiles": []}}, "username": "xinlidenuoyan", "power_badge": false, "display_name": "xinlidenuoyan🎩", "active_status": "inactive", "verifications": ["0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e"], "follower_count": 80, "custody_address": "0x31c4400a6304ef74ec2675350de4a4cd1263fd51", "following_count": 421, "verified_addresses": {"eth_addresses": ["0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/sem-nocao?referral=0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e&referral_source=link\"}"}', 'invest-in-music'), - (365352, '0x949fd5734cc12910efb9ac729bd15869d322a8ff', 0, 1, '2024-05-06 02:55:02+00', 0, 2, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hEntu6vjpWjgaGGD9\"}"}', NULL), - (383143, '0x3e21f6157a30477ae0d66795735e65f14e06e6dc', 0, 1, '2024-05-06 04:05:44+00', 0, 2, '{"fid": 506122, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9d8c35c-9216-4b81-3e40-4a8764433d00/rectcrop3", "profile": {"bio": {"text": "Interesting cryptocurrency also nft", "mentioned_profiles": []}}, "username": "meri20", "power_badge": false, "display_name": "Mahsam", "active_status": "inactive", "verifications": ["0xdace67093ce21b2459f2c03d3f524bf706218b66"], "follower_count": 225, "custody_address": "0xbb12f8c0c862552817165cc7f0f31ff1e1ca6d4b", "following_count": 270, "verified_addresses": {"eth_addresses": ["0xdace67093ce21b2459f2c03d3f524bf706218b66"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GA9XgTnTfHC3JFzo9\"}"}', NULL), - (323912, '0x186fc66cc592babb5f1c523cbe70d635f1925f87', 0, 1, '2024-05-05 22:05:58+00', 0, 0, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1437, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1719, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UTnTjHhDuRgujko76\"}"}', NULL), - (323905, '0xc3a49a28ae6f81bd4be9e28a56c16475a48d4471', 0, 1, '2024-05-05 22:07:05+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 784, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1517, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hBjDq\"}"}', NULL), - (347008, '0x5f2566da7b5df2235416684d1cf4c9c34afdb806', 0, 1, '2024-05-06 00:33:50+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "세계여행 정보 채널 : https://warpcast.com/~/channel/world-travel\n\n많은 가입 부탁드려요🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3111, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to IU - BBIBBI by xawltn on #SoundCloud https://on.soundcloud.com/2SdQg\"}"}', NULL), - (339315, '0xe98993ed79e53c0f27ae44f559b6f4dabc32eb32', 0, 1, '2024-05-05 23:39:21+00', 0, 0, '{"fid": 453511, "object": "user", "pfp_url": "https://i.imgur.com/2h4kMHd.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "salivan", "power_badge": false, "display_name": "Salivan", "active_status": "inactive", "verifications": ["0x824f7d1d35d1528e33a94ad39b53b484b541fc6b"], "follower_count": 1611, "custody_address": "0x3062ba6fb9f013abd0dc34e9740a0d3b00c7ccf8", "following_count": 1821, "verified_addresses": {"eth_addresses": ["0x824f7d1d35d1528e33a94ad39b53b484b541fc6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leonardcohen/famous-blue-raincoat?ref=clipboard&p=i&c=0&si=0FC8BA62B84541809946E6874027F426&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (344287, '0xbb8443564e53aebd68e352833ba052c2334768ff', 0, 1, '2024-05-06 00:09:20+00', 0, 0, '{"fid": 340819, "object": "user", "pfp_url": "https://i.imgur.com/6EdMb5r.jpg", "profile": {"bio": {"text": "follow /beatmaking | \"nft superstar\". multidisciplinary artist. creator\nhttps://www.sound.xyz/fabrii2k -\nhttps://zora.co/@fabrii2k", "mentioned_profiles": []}}, "username": "fabrii.eth", "power_badge": false, "display_name": "fabrii 🎩", "active_status": "inactive", "verifications": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "follower_count": 625, "custody_address": "0x0b3d285feb1ed3fa3012580e340e7047ff5bcb3d", "following_count": 461, "verified_addresses": {"eth_addresses": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fabrii2k/synesthesia-in-japan\"}"}', NULL), - (354878, '0xa31a725b0e8239b2a3f5b6c734e69c96c787b4e8', 0, 1, '2024-05-06 01:41:01+00', 0, 1, '{"fid": 500694, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c753f5d7-69a6-4635-3e7e-0b358ac40300/original", "profile": {"bio": {"text": "farcast communicator\nhttps://www.alfafrens.com/channel/0x9158931f18B24706653A241825d2B43163ca5C56", "mentioned_profiles": []}}, "username": "chans12", "power_badge": false, "display_name": "bluebottle💧", "active_status": "inactive", "verifications": ["0xb6cac3eebe7a88c05cefa1839cec250b6cbe66e8"], "follower_count": 1014, "custody_address": "0x31550fa5975b5c79d0a230ddc6e6dafad5e03c11", "following_count": 1089, "verified_addresses": {"eth_addresses": ["0xb6cac3eebe7a88c05cefa1839cec250b6cbe66e8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wuYe6V5AdYxUrDRx5\"}"}', NULL), - (351979, '0xfe507afd72317632952882488528e10b00236229', 0, 1, '2024-05-06 01:15:29+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-you-broke-my-heart?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (425927, '0xaa2ee741aa6f90eed26c23838131c7dccd775770', 0, 1, '2024-05-06 06:05:26+00', 0, 0, '{"fid": 507441, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c92cf50-b0c3-4054-c8b7-153bf453fb00/rectcrop3", "profile": {"bio": {"text": "f4f 100%", "mentioned_profiles": []}}, "username": "!507441", "power_badge": false, "display_name": "gaejuky", "active_status": "inactive", "verifications": ["0xba46dafa0f75b8a2ebb00f0f5d5ee3f0f29a8a7f"], "follower_count": 537, "custody_address": "0x13d66dd25a26cf2664fcaf802425eaa1054182e8", "following_count": 792, "verified_addresses": {"eth_addresses": ["0xba46dafa0f75b8a2ebb00f0f5d5ee3f0f29a8a7f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Green Day American idiot by Rockeritoo on #SoundCloud https://on.soundcloud.com/RoPo7\"}"}', NULL), - (339535, '0xb22f1ca6666cdd18b3bc64789a5bbcd210b058ef', 0, 1, '2024-05-05 23:41:53+00', 0, 0, '{"fid": 326700, "object": "user", "pfp_url": "https://i.imgur.com/WWNWtHc.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "preflop12345", "power_badge": false, "display_name": "preflop🎩 🍖 ", "active_status": "inactive", "verifications": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "follower_count": 1912, "custody_address": "0x57bb96ec480a2043f2ac8386afbd7d3f8fb15ed3", "following_count": 924, "verified_addresses": {"eth_addresses": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cruze-guns/wax-1?si=5251666c23d343a984d465f7e8c5a6c3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (450670, '0x3a54b69c69b827df88e2735b246e3282230d5f62', 0, 1, '2024-05-06 06:45:55+00', 0, 0, '{"fid": 236389, "object": "user", "pfp_url": "https://i.imgur.com/FXQWgpx.jpg", "profile": {"bio": {"text": "audio alchemist. ai experimentalist. music producer of the @vnderworld.\n\nnullhax.com", "mentioned_profiles": []}}, "username": "hax.eth", "power_badge": false, "display_name": "hax 🎩", "active_status": "inactive", "verifications": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "follower_count": 146, "custody_address": "0x70664c8bcf0314e13860c021db97e808cd000831", "following_count": 271, "verified_addresses": {"eth_addresses": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vnderworld/paranoia\"}"}', NULL), - (295657, '0x0b9b78600e52a0844c7445896161c8ed43ec15f3', 0, 1, '2024-05-05 20:12:29+00', 0, 0, '{"fid": 446972, "object": "user", "pfp_url": "https://i.imgur.com/PReb6Qm.jpg", "profile": {"bio": {"text": "Use the weekends to build the life you''ve always wanted.", "mentioned_profiles": []}}, "username": "hsyn", "power_badge": false, "display_name": "Hsyn", "active_status": "inactive", "verifications": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "follower_count": 348, "custody_address": "0xf1ee30b6c5e599b198d04a7faec24fe2c7d22cb0", "following_count": 474, "verified_addresses": {"eth_addresses": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/patrick-drummer/system-of-a-down-chop-suey?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (304717, '0x88f2a74da925992d857e8435fca3164fb5f21f4c', 0, 1, '2024-05-05 20:46:10+00', 0, 0, '{"fid": 492109, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a79bf2e9-6bdb-4120-7013-54f6eb262500/rectcrop3", "profile": {"bio": {"text": "Athlete / Nature lover / Medical stu", "mentioned_profiles": []}}, "username": "negini", "power_badge": false, "display_name": "Negin 🎩🔮🍖", "active_status": "inactive", "verifications": ["0x791e34adbf1114627f70adb178a7cd35e0dc667a"], "follower_count": 318, "custody_address": "0x0a79fc53db2070440913935155ef2ce584e33a3a", "following_count": 513, "verified_addresses": {"eth_addresses": ["0x791e34adbf1114627f70adb178a7cd35e0dc667a"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/jacobleeofficial/artistry-2\"}"}', NULL), - (451622, '0x842eb0a6b1b5365b7aa77fe1debf949a7d07d3de', 0, 1, '2024-05-06 06:47:13+00', 0, 0, '{"fid": 333628, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/89ebc91d-8927-4fc3-7fcd-96bf3347fe00/rectcrop3", "profile": {"bio": {"text": "Do everything for economic freedom.\n", "mentioned_profiles": []}}, "username": "lee92go", "power_badge": false, "display_name": "pelicana chicken", "active_status": "inactive", "verifications": ["0xd7ecca7723e44cb5542b1128c9fb2d585dec63fe"], "follower_count": 1284, "custody_address": "0x633358575bc34b6a777993db22debcbbc1ae9b7b", "following_count": 2369, "verified_addresses": {"eth_addresses": ["0xd7ecca7723e44cb5542b1128c9fb2d585dec63fe"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 윤도현 - 흰수염 고래 (비긴어게인) by COVER on #SoundCloud https://on.soundcloud.com/dSe8s\"}"}', NULL), - (300001, '0xc7fce0bf1f5e9781f069d6d96e7c92ab92b053dd', 0, 1, '2024-05-05 20:25:33+00', 0, 3, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 639, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 359, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YYJgD\"}"}', NULL), - (296194, '0x76e59cb4cfb138f6a073f93b6e970f8b22d4b505', 0, 1, '2024-05-05 20:14:29+00', 0, 4, '{"fid": 445305, "object": "user", "pfp_url": "https://i.imgur.com/iGJ0lgN.jpg", "profile": {"bio": {"text": "Art", "mentioned_profiles": []}}, "username": "mohsnm", "power_badge": false, "display_name": "Saeed", "active_status": "inactive", "verifications": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "follower_count": 548, "custody_address": "0x8af9a4006b2977a85235aec844331fcc4b11db4f", "following_count": 1162, "verified_addresses": {"eth_addresses": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/vandavidkiran/my-heart-will-go-on-dance\"}"}', NULL), - (323894, '0x24f34ab8cd030cb4f99fdf94a9dfb32ca84c877c', 0, 1, '2024-05-05 22:07:00+00', 0, 1, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1437, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1719, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ExGEEEvScLEZvrH97\"}"}', NULL), - (295258, '0xf3565203bb10df36e89b6f275414103a38ef7810', 0, 1, '2024-05-05 20:07:40+00', 0, 0, '{"fid": 502168, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a700d28-bf97-42a1-331d-db3a3212b800/rectcrop3", "profile": {"bio": {"text": "‎‏Make ur Dreams Reality", "mentioned_profiles": []}}, "username": "castiell", "power_badge": false, "display_name": "Angel 🎩 🔮🔵⬆️", "active_status": "inactive", "verifications": ["0xdcbe021e3af328e1d9394c596b7512f93b9d0718"], "follower_count": 203, "custody_address": "0xfbe1a5276c136e7d60a4ff7e6605404f5e98fc35", "following_count": 414, "verified_addresses": {"eth_addresses": ["0xdcbe021e3af328e1d9394c596b7512f93b9d0718"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t6kw8xjfQMU3fLyW9\"}"}', NULL), - (307161, '0xd49ad3941c81973802aab82857323f575ef93ec1', 0, 1, '2024-05-05 20:50:35+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2605, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2432, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NFPwX\"}"}', NULL), - (339563, '0x3be91cf9a0275dfe3dd5d09dcd8491ae5cb574d7', 0, 1, '2024-05-05 23:41:53+00', 0, 5, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1648, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1715, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4Tw3PCU5xjvhw2za9\"}"}', NULL), - (523446, '0x2f25688527fb9ce4ad3193847d993fe0da85bc45', 0, 1, '2024-05-06 09:12:17+00', 0, 2, '{"fid": 376167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34b0ca74-0495-43f4-3439-786abc38cd00/rectcrop3", "profile": {"bio": {"text": "don''t be perfect be real🕊", "mentioned_profiles": []}}, "username": "haniehniku", "power_badge": false, "display_name": "Haniehnik 🎩🔵🔮", "active_status": "inactive", "verifications": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "follower_count": 660, "custody_address": "0x69ae56667bd5cb07dac272722c772d2d1b5c965d", "following_count": 661, "verified_addresses": {"eth_addresses": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3CVEq\"}"}', 'sonata'), - (350351, '0xd1b3859ace61551a97b7a3c1a9ccff613f0cf5ed', 0, 1, '2024-05-06 01:01:56+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350541, '0xfb2c6399818b48ccc5ce72aefd9aff61732a6424', 0, 1, '2024-05-06 01:03:32+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (345397, '0x547afb1d9fadadec0d6a814db696df1384c40b34', 0, 1, '2024-05-06 00:20:05+00', 0, 0, '{"fid": 191751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4dc71ec-9c59-42b9-5687-510c52dfe100/original", "profile": {"bio": {"text": "...", "mentioned_profiles": []}}, "username": "seoulraa", "power_badge": false, "display_name": "seoulraa", "active_status": "inactive", "verifications": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "follower_count": 26, "custody_address": "0xbee4eac0d0bcb4334a034dfa44eb3a96e3b81a9b", "following_count": 37, "verified_addresses": {"eth_addresses": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/seoulraa.eth/post/d73e3ca4-1c18-468d-ad70-594dc7fd6c62\"}"}', NULL), - (323332, '0xb7df8cf8c9f155631db240c68b69fbf54c0e7430', 0, 1, '2024-05-05 22:03:39+00', 0, 2, '{"fid": 499252, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6426fa39-cb02-434b-217b-fffbaa4e2c00/rectcrop3", "profile": {"bio": {"text": "소통왕/반사왕 될게요❄❄\n절대 잊지 않고 찾아봬요😊", "mentioned_profiles": []}}, "username": "nunuwillump", "power_badge": false, "display_name": "NUNU", "active_status": "inactive", "verifications": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "follower_count": 2243, "custody_address": "0x69b0108a354647ac6467250dbad5323cfee38319", "following_count": 2249, "verified_addresses": {"eth_addresses": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 너의 모든 순간 성시경 by k on #SoundCloud https://on.soundcloud.com/1CGDL\"}"}', NULL), - (347782, '0x27c1b5ad3bb3d55d009a8f61a2794aa972f16c47', 0, 1, '2024-05-06 00:44:03+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sykqtsjcdw5p/mkz8r6kny9ej?si=a60b88969b7d4f6eb123a8b1bcee5984&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (359227, '0xc79cc875b82962ea91cf8c5aae308ce415c182be', 0, 1, '2024-05-06 02:10:59+00', 0, 2, '{"fid": 401388, "object": "user", "pfp_url": "https://i.imgur.com/4WizlTh.jpg", "profile": {"bio": {"text": "Hi ! F4F\n맞팔로우 100%. 맞디젠. 맞팔. 좋아요❤️ 댓글 환영\nDegen will go to 1$", "mentioned_profiles": []}}, "username": "ddomi", "power_badge": false, "display_name": "degen no.1", "active_status": "inactive", "verifications": ["0x85c0c67690a91419057d831c2b773f2e5e6a6386"], "follower_count": 2029, "custody_address": "0xaa1351a458947b44a25be3063a76dee29fad6009", "following_count": 2193, "verified_addresses": {"eth_addresses": ["0x85c0c67690a91419057d831c2b773f2e5e6a6386"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6Ak8s\"}"}', 'sonata'), - (456737, '0xc5d435de58d10eb0f258c74ea1848770139175c4', 0, 1, '2024-05-06 06:53:37+00', 0, 2, '{"fid": 448755, "object": "user", "pfp_url": "https://i.imgur.com/JSIDuOV.jpg", "profile": {"bio": {"text": "I Love Football \n Be strong and fight for your goals 👊🏼", "mentioned_profiles": []}}, "username": "mehrdad10", "power_badge": false, "display_name": "Mehrdad 🎩", "active_status": "inactive", "verifications": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "follower_count": 1377, "custody_address": "0xb0b262bb2dced2178dd6ea9d677116b783d527af", "following_count": 1459, "verified_addresses": {"eth_addresses": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2t8yVaLvJ0RenpXUIAC52d?si=HSDBth5aRR21U8llcmNdtg\"}"}', NULL), - (350547, '0xdf94705d9075735600aeda136fcfd522ec9d9309', 0, 1, '2024-05-06 01:03:35+00', 0, 1, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 334, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 541, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pratiwi-evie/last-goodbye?si=8931287691784e9482b6a20e481ca278&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (495126, '0x077f5e42d773e897cff0621f68d8d480308141a1', 0, 1, '2024-05-06 07:53:30+00', 0, 6, '{"fid": 404349, "object": "user", "pfp_url": "https://i.imgur.com/mhpVtL0.jpg", "profile": {"bio": {"text": "여기 같이 하시는 분들 모두 행복하고 좋은 일만 가득 하길 바랄게요 우리 부자 됩시다\n", "mentioned_profiles": []}}, "username": "jjjang", "power_badge": false, "display_name": "wassup82", "active_status": "inactive", "verifications": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "follower_count": 3312, "custody_address": "0x8a5f460242c275826faa332f3bb0b8e07fb14d45", "following_count": 2621, "verified_addresses": {"eth_addresses": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UgiZZEALai9d7RmY6\"}"}', 'sonata'), - (325597, '0xd2eb671383a985f5e61737e4ced1a8acc497116e', 3000, 1, '2024-05-05 22:10:28+00', 0, 5, '{"fid": 4065, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ba776434-7fd2-4038-34be-f17e94546300/original", "profile": {"bio": {"text": "Co-Founder of @checkin @beyondclub - Foursquare on Farcaster 🗺️ 📍\nicebreaker.xyz/yuki.fc", "mentioned_profiles": []}}, "username": "yuki", "power_badge": true, "display_name": "Yuki 🎩 ✈️ ✅ @ Farcon", "active_status": "inactive", "verifications": ["0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0"], "follower_count": 4169, "custody_address": "0x94a50c72b4841f6ff73a626d92fa7ed487bc4373", "following_count": 424, "verified_addresses": {"eth_addresses": ["0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/down-the-drain?referral_source=link\"}"}', NULL), - (350543, '0xcf6dd020a275f66c9abd811a7711d8cc87d3cfcd', 0, 1, '2024-05-06 01:04:16+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350546, '0x6028fd5080c0770b3183fbbac9c108516aadd0f5', 0, 1, '2024-05-06 01:03:23+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350538, '0xea65567ec764c69488fcc6485439f7f9ce055c1a', 0, 1, '2024-05-06 01:03:50+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350599, '0x9dd84b42f2b1d37c58b1fe3ab5d76a658633232d', 0, 1, '2024-05-06 01:04:55+00', 0, 1, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/ost-part1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352133, '0x13320c15444abe9e155ddc5e2bbbce7e91937e0c', 0, 1, '2024-05-06 01:17:02+00', 0, 0, '{"fid": 416064, "object": "user", "pfp_url": "https://i.imgur.com/A6GEMtH.jpg", "profile": {"bio": {"text": "마지막 기회, 그거슨 바로 디젠. \n\n\nThe last chance, that''s Degen.", "mentioned_profiles": []}}, "username": "chchn2", "power_badge": false, "display_name": "chchn2", "active_status": "inactive", "verifications": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "follower_count": 2886, "custody_address": "0xc6576a3e4a013dede662fad6f93ab4e99ed36f51", "following_count": 2510, "verified_addresses": {"eth_addresses": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nakyong0202/drunken-tiger?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (323321, '0xeb4d76e6cd8ae84fca7f48e70175874cd1f930c0', 0, 1, '2024-05-05 22:03:32+00', 0, 0, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 627, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 319, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QvVrT\"}"}', NULL), - (347700, '0x6e34051e44ad7546810b57cb7013519277bf2fbc', 0, 1, '2024-05-06 00:43:11+00', 0, 2, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1433, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1761, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-630048232/dance-monkey-2?si=e7b0d9099a4a4bfba7eb4d3248019e35&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (352263, '0xcd9c7d83eb362feebc598b2c8e7ac9240750ad3a', 0, 1, '2024-05-06 01:18:12+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-the-weeknd-trust-issues?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350540, '0x597340a2b7129db529391521b6b5a5dc4bd38b2e', 0, 1, '2024-05-06 01:03:58+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352135, '0x13ece5d39108d85626115b192b22805cda446bce', 0, 1, '2024-05-06 01:16:59+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-wants-and-needs-feat-lil?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352136, '0xc74e1fdfd29a18808a4aa65614e54001c0452c6b', 0, 1, '2024-05-06 01:16:50+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-fair-trade-feat-travis?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (451606, '0xf82394edc4aefbd620f7ffae3e8512d13c099a7f', 0, 1, '2024-05-06 06:47:00+00', 0, 2, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1599, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1307, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/215ohr2URNKMWaza7\"}"}', 'sonata'), - (325999, '0x94b736387aef7d84462ba1caab06d80d334bc0a9', 0, 1, '2024-05-05 22:11:55+00', 0, 0, '{"fid": 427462, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiakboqrtodndz725wpgcy5kcucfzvjfsduukhgif423lfa673t66m", "profile": {"bio": {"text": "I love new technology", "mentioned_profiles": []}}, "username": "teslapc12345", "power_badge": false, "display_name": "Mohamad Mehrabi 🔄🎩", "active_status": "inactive", "verifications": ["0x836eb99ad1bc73bc61d405a0df81bbe168055c27"], "follower_count": 166, "custody_address": "0x39ff4d5489262f8c3deedd04f94b279fe545652a", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x836eb99ad1bc73bc61d405a0df81bbe168055c27"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Mahsun Kırmızıgül - Yoruldum by Renas Bermeki on #SoundCloud https://soundcloud.com/renas1987/mahsun-kirmizigul-yoruldum?ref=clipboard&p=a&c=0&si=3a77bc606bda40e7b69a348c72d59c2b&utm_source=clipboard&utm_medium=text&utm_campaign=social\"}"}', NULL), - (369197, '0xcc83452b9e49ac241267d3570cc4214add5c04a7', 0, 1, '2024-05-06 03:22:58+00', 0, 4, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1087, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1152, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/F9fXi\"}"}', 'sonata'), - (365539, '0xff7f873439dc6a6682afe206d52beca16b25783b', 0, 1, '2024-05-06 02:55:46+00', 0, 0, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1133, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1064, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-519477311/sets/christopher-chng-ha-when-l-get?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (367949, '0x1d3c1cf244ddb854f60afccd418e64beafff071f', 0, 1, '2024-05-06 03:08:12+00', 0, 1, '{"fid": 503150, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f0f973c-8cd9-4d59-700f-b1271961aa00/rectcrop3", "profile": {"bio": {"text": "I like traveling and music.", "mentioned_profiles": []}}, "username": "athenablessing", "power_badge": false, "display_name": "BOBBY", "active_status": "inactive", "verifications": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "follower_count": 336, "custody_address": "0xe57547012f3c9ab59e3ed21cf30f5a0cd6afe3f5", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/neuronmusic-1/paul-kim-rain\"}"}', 'sonata'), - (365535, '0x882b2d5e779eeaa16c6b445c6a3cc706668c752d', 0, 1, '2024-05-06 02:55:54+00', 0, 0, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1396, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 964, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tchiruels8pp/sets/90a1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (363895, '0xa25de10d4b783e0a275682ead78d7eec10aadf31', 0, 1, '2024-05-06 02:41:06+00', 0, 1, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman @ farcon", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 480, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/d206425/million-dollar-baby-vhs-slowed-x-bass-boosted?si=9b2d67379788446c823b996d26739e60&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (296196, '0xd781382d62f36a3390b89479f56eda2f8fab08a4', 0, 1, '2024-05-05 20:14:05+00', 0, 0, '{"fid": 445305, "object": "user", "pfp_url": "https://i.imgur.com/iGJ0lgN.jpg", "profile": {"bio": {"text": "Art", "mentioned_profiles": []}}, "username": "mohsnm", "power_badge": false, "display_name": "Saeed", "active_status": "inactive", "verifications": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "follower_count": 548, "custody_address": "0x8af9a4006b2977a85235aec844331fcc4b11db4f", "following_count": 1162, "verified_addresses": {"eth_addresses": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/vandavidkiran/my-heart-will-go-on-dance\"}"}', NULL), - (292942, '0x8d77c225e3623d028d4b638d3b63543b518cb49b', 0, 1, '2024-05-05 19:57:35+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1128, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/6MozilZfg7PVMNbxGuyoro?si=M2tsxd9iT8mRxVueCQ8paw&context=spotify%3Asearch\"}"}', NULL), - (326406, '0x03322b20e55e6618f344e691efe8847dfc9b54b1', 0, 1, '2024-05-05 22:12:35+00', 0, 0, '{"fid": 482218, "object": "user", "pfp_url": "https://i.imgur.com/kH5QCT1.jpg", "profile": {"bio": {"text": "Believe me, if we do not reach a goal, it is not the end of the world", "mentioned_profiles": []}}, "username": "amirreza96", "power_badge": false, "display_name": "Amirreza96🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x26e52428bebfee613d6ee0314cd74f05b4aabcf6"], "follower_count": 509, "custody_address": "0x1517f3053b245ef9fe6e33cc9746ae9d0f926ca2", "following_count": 306, "verified_addresses": {"eth_addresses": ["0x26e52428bebfee613d6ee0314cd74f05b4aabcf6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pZ5PsEcV1T2dkL5S7\"}"}', NULL), - (340911, '0x44ba5cc8fb721e249928abf94ab908e5b8bedaf3', 0, 1, '2024-05-05 23:46:51+00', 0, 0, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1039, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 913, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pBajNudu2TuEKNvy5\"}"}', NULL), - (420343, '0x984a46f66028733db933fe1d00701a81d1095b48', 0, 1, '2024-05-06 05:55:47+00', 0, 8, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1927, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2406, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/afcd6a76-a95e-4297-3c1c-d61c3ad65c00/original\"}","{\"url\":\"https://soundcloud.com/johannajy/sondia-tina-cover?si=bc9aeea45f4640ad841bf2773f6e4687&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (347976, '0x48a630efff52d5e5d1d5235718c3bfcc9cf58606', 0, 1, '2024-05-06 00:44:54+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eluni/downtown-baby?si=c156a3b65622421489135b6b01d8d500&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (203327, '0xcf45704b824c344f46463190fd812010c47e5b05', 0, 1, '2024-05-05 12:41:05+00', 0, 0, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 564, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 520, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/theculturetape/only-one-feat-tarot?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (340912, '0x84133b74628e492ea1440e9668c8dd45007802b2', 0, 1, '2024-05-05 23:46:37+00', 0, 2, '{"fid": 326700, "object": "user", "pfp_url": "https://i.imgur.com/WWNWtHc.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "preflop12345", "power_badge": false, "display_name": "preflop🎩 🍖 ", "active_status": "inactive", "verifications": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "follower_count": 1912, "custody_address": "0x57bb96ec480a2043f2ac8386afbd7d3f8fb15ed3", "following_count": 924, "verified_addresses": {"eth_addresses": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-761994940/sets/kljfh5tlyjhq?si=32462b64089b45388d5dd82b3d5d3e70&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (327006, '0x7c3cc541a9e621b28f63bedb9ffe35419ba889d5', 0, 1, '2024-05-05 22:13:56+00', 0, 0, '{"fid": 504319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d507508-f4b2-404e-8c94-ac8c29b01100/rectcrop3", "profile": {"bio": {"text": "I’m just an ordinary person who likes food, travel and crypto 😀", "mentioned_profiles": []}}, "username": "jaydenoh", "power_badge": false, "display_name": "Jayden", "active_status": "inactive", "verifications": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "follower_count": 440, "custody_address": "0xa3afaf513eeed17783dfb7342f138f8e54fa5644", "following_count": 473, "verified_addresses": {"eth_addresses": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/d5TuN2cj6DZ2GcUU9\"}"}', NULL), - (341091, '0x1e68c93bb2b567f4a0148f7eb82c6f8a167830b3', 0, 1, '2024-05-05 23:48:08+00', 0, 0, '{"fid": 515449, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a32cd0f6-ff5e-4011-16e6-f0ae8b46e200/rectcrop3", "profile": {"bio": {"text": "Creator / Contributor at musicto.com", "mentioned_profiles": []}}, "username": "!515449", "power_badge": false, "display_name": "Andrew", "active_status": "inactive", "verifications": ["0x34ef8b38fe5a9818ec1d2947054ae6b4cc881a34"], "follower_count": 23, "custody_address": "0x09367ac5d33d79f533cee3be440fe5b403fcbf89", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x34ef8b38fe5a9818ec1d2947054ae6b4cc881a34"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/music2work2/frustration\"}"}', NULL), - (299136, '0xef76b4c4dc900f5ac4043b5373d2c0ae70e99513', 0, 1, '2024-05-05 20:23:27+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 295, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 239, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/539tTfqhEpS2At6iU31Bg0?si=G7WQowmRRJ-Hc6BKM7S32w&context=spotify%3Aplaylist%3A6WKvHoTkHUhVkwloBcaFXG\"}"}', 'bangers'), - (347977, '0x46245e47adef87893df8eb5a9eb4b19be6470966', 0, 1, '2024-05-06 00:45:18+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zsabelle/shinhwa-perfect-man?si=2c28fde998e84f2d8c985a03162806d5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (359633, '0x5100819f73f054ba6e535ead2d071f056b5e29a7', 22, 1, '2024-05-06 02:13:25+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 786, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1523, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"Listen to NewJeans (뉴진스) - Ditto(Band LIVE Concert it''s Live) by 𝘭𝘰𝘷𝘦𝘮𝘢𝘬𝘦𝘴𝘮𝘦𝘮𝘢𝘥 on #SoundCloud https://on.soundcloud.com/54ghw\"}"}', NULL), - (363893, '0x4c245069c88e78de2f0bb0e4ad4045e80f2b3140', 0, 1, '2024-05-06 02:40:57+00', 0, 0, '{"fid": 500524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8dfd467-cfa4-4c54-2177-354ec2f15700/rectcrop3", "profile": {"bio": {"text": "Hi my name is chloejin", "mentioned_profiles": []}}, "username": "choichoisla", "power_badge": false, "display_name": "Chloejin", "active_status": "inactive", "verifications": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "follower_count": 46, "custody_address": "0xef3be36580a61c8b605f27a5ebbb2a97031a6208", "following_count": 44, "verified_addresses": {"eth_addresses": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5MG1bzXgFqJQpSAy7\"}"}', NULL), - (300667, '0x56db48dc7c19a0ca278df75aba6eb7b829be4986', 0, 1, '2024-05-05 20:26:26+00', 0, 0, '{"fid": 497746, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24b2f067-7577-416d-9d3e-466a85243300/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mahigoli", "power_badge": false, "display_name": "mahi🎩", "active_status": "inactive", "verifications": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "follower_count": 169, "custody_address": "0x4475d9d1fad06f1833b597ced53bb98c19dadadd", "following_count": 313, "verified_addresses": {"eth_addresses": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rooyiz_0/i-cant-get-you-out-of-my-head?ref=clipboard&p=a&c=0&si=86a807c51ca54f18b4a78f1b6452a3c0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (347978, '0x17d455fa41700423d783d8c582d2919d3b499c0f', 0, 1, '2024-05-06 00:45:40+00', 0, 0, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1691, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1297, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/n6bcSDoXAm6cUMmq6\"}"}', NULL), - (341092, '0x9a959b3ebc92626f78578a3172b902442e3a990f', 0, 1, '2024-05-05 23:47:34+00', 0, 0, '{"fid": 515449, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a32cd0f6-ff5e-4011-16e6-f0ae8b46e200/rectcrop3", "profile": {"bio": {"text": "Creator / Contributor at musicto.com", "mentioned_profiles": []}}, "username": "!515449", "power_badge": false, "display_name": "Andrew", "active_status": "inactive", "verifications": ["0x34ef8b38fe5a9818ec1d2947054ae6b4cc881a34"], "follower_count": 23, "custody_address": "0x09367ac5d33d79f533cee3be440fe5b403fcbf89", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x34ef8b38fe5a9818ec1d2947054ae6b4cc881a34"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/music2work2/getting-back-together\"}"}', NULL), - (327362, '0xd3f31739ed4c12b1c1fe518cdba45d93f7c073a4', 0, 1, '2024-05-05 22:15:14+00', 0, 0, '{"fid": 501789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d2c960a-2bb5-4637-ca0e-67fe391ce200/rectcrop3", "profile": {"bio": {"text": "smile 😃\n just do it 최고\n부스터가 뭐시중헌디", "mentioned_profiles": []}}, "username": "mmraz", "power_badge": false, "display_name": "Jay M🎩🍖", "active_status": "inactive", "verifications": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "follower_count": 1064, "custody_address": "0x528e24d99b86845a6ecf98f21cb841fbd46eb2b0", "following_count": 956, "verified_addresses": {"eth_addresses": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jasonmraz/im-yours?si=41724081ee8740fe8e511785f1041879&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (359653, '0xfebec410fc921a740909ab3e9d71db900b7c2a82', 0, 1, '2024-05-06 02:13:05+00', 0, 0, '{"fid": 401388, "object": "user", "pfp_url": "https://i.imgur.com/4WizlTh.jpg", "profile": {"bio": {"text": "Hi ! F4F\n맞팔로우 100%. 맞디젠. 맞팔. 좋아요❤️ 댓글 환영\nDegen will go to 1$", "mentioned_profiles": []}}, "username": "ddomi", "power_badge": false, "display_name": "degen no.1", "active_status": "inactive", "verifications": ["0x85c0c67690a91419057d831c2b773f2e5e6a6386"], "follower_count": 2029, "custody_address": "0xaa1351a458947b44a25be3063a76dee29fad6009", "following_count": 2193, "verified_addresses": {"eth_addresses": ["0x85c0c67690a91419057d831c2b773f2e5e6a6386"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Zh8NE\"}"}', 'sonata'), - (365537, '0x9390c0d3a971f2c46874a397fd336d2a5915c27a', 0, 1, '2024-05-06 02:56:04+00', 0, 2, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2133, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1879, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RrgkfG5GSLW39mx18\"}"}', NULL), - (426568, '0xe3f8327d536ae003270f338c3a0212bdae77f3a7', 0, 1, '2024-05-06 06:06:18+00', 0, 1, '{"fid": 246039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93c7fa70-4212-4c62-2956-64e0a42d3c00/original", "profile": {"bio": {"text": "BTC/ETH HOLDER` Digital Art & AI Art lover |Designer| Illustrator Purple#484", "mentioned_profiles": []}}, "username": "youmoer", "power_badge": false, "display_name": "Youmoer🃏🟡 🟪🎩 🔄", "active_status": "inactive", "verifications": ["0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9"], "follower_count": 937, "custody_address": "0x8fc222afb9d83997a357fdf20d0f590d0b33aa76", "following_count": 718, "verified_addresses": {"eth_addresses": ["0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9"], "sol_addresses": ["CwKRV5Chh1cg75ikozySUTbZsuj62j3v9Pp1xmYz9jLV"]}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/jazz?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (300670, '0x2238fa8b36d4e35b86b647ff518a3ca404650e49', 0, 1, '2024-05-05 20:27:12+00', 0, 5, '{"fid": 497746, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24b2f067-7577-416d-9d3e-466a85243300/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mahigoli", "power_badge": false, "display_name": "mahi🎩", "active_status": "inactive", "verifications": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "follower_count": 170, "custody_address": "0x4475d9d1fad06f1833b597ced53bb98c19dadadd", "following_count": 314, "verified_addresses": {"eth_addresses": ["0x98d5a312d54e546cf530256e385480dde97646a7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rooyiz_0/i-cant-get-you-out-of-my-head?ref=clipboard&p=a&c=0&si=86a807c51ca54f18b4a78f1b6452a3c0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (327494, '0xbe54fabbaf209af47f345dfa1e0f6834af0ea421', 0, 1, '2024-05-05 22:16:56+00', 0, 0, '{"fid": 501789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d2c960a-2bb5-4637-ca0e-67fe391ce200/rectcrop3", "profile": {"bio": {"text": "smile 😃\n just do it 최고\n부스터가 뭐시중헌디", "mentioned_profiles": []}}, "username": "mmraz", "power_badge": false, "display_name": "Jay M🎩🍖", "active_status": "inactive", "verifications": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "follower_count": 1064, "custody_address": "0x528e24d99b86845a6ecf98f21cb841fbd46eb2b0", "following_count": 956, "verified_addresses": {"eth_addresses": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jasonmraz/im-yours?si=41724081ee8740fe8e511785f1041879&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (341264, '0x55bf3f1834fec4c2f30ceaa8f821506f00e29548', 0, 1, '2024-05-05 23:51:08+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2641, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3123, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oPF38F4f21cMstVK6\"}"}', 'sonata'), - (327758, '0x8fcadb2c0134ed0fba7f40b985cc1f2446fe5448', 0, 1, '2024-05-05 22:17:55+00', 0, 2, '{"fid": 430593, "object": "user", "pfp_url": "https://i.imgur.com/TBxdrF5.jpg", "profile": {"bio": {"text": "Movie time", "mentioned_profiles": []}}, "username": "shabnamksh", "power_badge": false, "display_name": "Shabnamksh☔️", "active_status": "inactive", "verifications": ["0x579280eb39ea75d964052719d5c2b784c19f3e01"], "follower_count": 1738, "custody_address": "0xb3ea5c96d52b92765b105be2ca4abf1bf89d8f77", "following_count": 2651, "verified_addresses": {"eth_addresses": ["0x579280eb39ea75d964052719d5c2b784c19f3e01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vDhmfgDVzaYiMkzW7\"}"}', NULL), - (305823, '0xce4306a057127709d477ec1b8372627c11ce0773', 0, 1, '2024-05-05 20:49:10+00', 0, 0, '{"fid": 460806, "object": "user", "pfp_url": "https://i.imgur.com/QD8fIic.jpg", "profile": {"bio": {"text": "I''m mmad bigdlo", "mentioned_profiles": []}}, "username": "mmadbigdlo", "power_badge": false, "display_name": "🍖💊((mmad))🦕🦕", "active_status": "inactive", "verifications": ["0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a"], "follower_count": 612, "custody_address": "0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a", "following_count": 531, "verified_addresses": {"eth_addresses": ["0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a"], "sol_addresses": []}}', '{"{\"url\":\"Hi sonata /sonata https://on.soundcloud.com/S2s3GKT7oLfhhx617\"}"}', NULL), - (350545, '0x441708b6cb11d77fc7531cda2baf05adf989ee0d', 0, 1, '2024-05-06 01:04:39+00', 0, 1, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/nilo-pass-by?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350542, '0xe3ea08e8bc7a045120a36c170b9f0d29ac491841', 0, 1, '2024-05-06 01:03:41+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352207, '0xd16e2f890e80410de53f9c4ec09f61ee22b1cdfc', 0, 1, '2024-05-06 01:17:11+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-21-savage-spin-bout-u?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (301161, '0x6359d9cb9004b759b420bac0856658dc0f36327a', 0, 1, '2024-05-05 20:29:32+00', 0, 0, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 639, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 359, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zgollihamed9/sets/sia-unstoppable?si=95aa496eda484747bb03f4710b759110&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646563, '0x1d1614d84ef54ec707a1c9ee3de60d15e98b7f59', 0, 1, '2024-05-06 14:25:22+00', 0, 3, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 684, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1165, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-558041818/sets/newjeans?si=1f723051058a4430baf274fdc00e17c7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (328182, '0x45fa28528c9d6ad0f1057fde58befc4d2513c1d1', 0, 1, '2024-05-05 22:20:31+00', 0, 1, '{"fid": 262685, "object": "user", "pfp_url": "https://i.imgur.com/DvOWEZG.jpg", "profile": {"bio": {"text": "My love and interest can be summed up in crypto and travel", "mentioned_profiles": []}}, "username": "fazix", "power_badge": false, "display_name": "fazix🎩 ❤️", "active_status": "inactive", "verifications": ["0xdfa60e79a9f86bc54bf6c8ca9df656fa199ab087"], "follower_count": 1722, "custody_address": "0xba72e7b75401d1350ff8259537fc88557af58ce9", "following_count": 1966, "verified_addresses": {"eth_addresses": ["0xdfa60e79a9f86bc54bf6c8ca9df656fa199ab087"], "sol_addresses": ["57syM2hhRWzMgiaiWZwcLEHccJXBPPF3HP7BwxDUhpmb"]}}', '{"{\"url\":\"https://on.soundcloud.com/wr5J5qZWDVrTGRVP6\"}"}', NULL), - (309000, '0x596eb210c395c89eefb86cd73147d1e6d01c8161', 0, 1, '2024-05-05 20:56:08+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 384, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 632, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/frank-sinatra/my-way-1\"}"}', NULL), - (309019, '0x7993f885fea6b09c8282925d48062fb70eb3f1df', 0, 1, '2024-05-05 20:56:09+00', 0, 0, '{"fid": 411137, "object": "user", "pfp_url": "https://i.imgur.com/CyVDXtw.jpg", "profile": {"bio": {"text": "Hello, I''m Ahmad and I used to be a basketball player, I''d like to share my happiest time in here with you.", "mentioned_profiles": []}}, "username": "ahmadbary96", "power_badge": false, "display_name": "Ahmad Reza 🍖", "active_status": "inactive", "verifications": ["0x3f819ad2846073a6e60d03ae8cedc1ee132a3717"], "follower_count": 1500, "custody_address": "0x3f819ad2846073a6e60d03ae8cedc1ee132a3717", "following_count": 2697, "verified_addresses": {"eth_addresses": ["0x3f819ad2846073a6e60d03ae8cedc1ee132a3717"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aziz-agirtas/modern-talking-chery-chery-lady-remix?ref=clipboard&p=i&c=0&si=DF8083B5B3624C228E921F462022A45C&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (359226, '0xbf517ba700fc91889b48e622e6d65e4374ceabeb', 22, 1, '2024-05-06 02:11:06+00', 0, 4, '{"fid": 499057, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92eb5b0b-027b-405c-550d-59f4268c8000/rectcrop3", "profile": {"bio": {"text": "Shiba will save the world🐾 존대말을 못배운 카와이시바 4가지없는게 아니야! 은혜는 무조건 갚는 카와이시바!", "mentioned_profiles": []}}, "username": "kawaiishiba", "power_badge": false, "display_name": "Kawaii_Shiba🎩", "active_status": "inactive", "verifications": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "follower_count": 1066, "custody_address": "0x1fd5449710120b982115e31881eb221ef9979283", "following_count": 1229, "verified_addresses": {"eth_addresses": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kgGhJTVADDmh96LY6\"}"}', NULL), - (365575, '0x8232a2c8e2b05f648157ccf06d2ca36b1d65ca35', 0, 1, '2024-05-06 02:56:18+00', 0, 2, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 792, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 900, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki28/lim-jae-hyun-rhapsody-of-sadness?si=e9942bb8d8fe4e93a5880a03a1416d16&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (427146, '0x6eff764cef0c2fc68bb904dc243ccc27ceba6801', 0, 1, '2024-05-06 06:07:50+00', 0, 5, '{"fid": 449776, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1af8cdbc-55ea-4cab-b8a3-4151d75d7100/rectcrop3", "profile": {"bio": {"text": "Active in the field of crypto", "mentioned_profiles": []}}, "username": "hadiakbari", "power_badge": false, "display_name": "Hadiakbari🎩 🦕", "active_status": "inactive", "verifications": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "follower_count": 1040, "custody_address": "0x340b33d619dfb09ceb791810ffbe3db592a83414", "following_count": 1346, "verified_addresses": {"eth_addresses": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/r1wdwhVaPmjsaaMQA\"}"}', NULL), - (473531, '0x41c1f8143040632a59e82c5b89d7ca99310feefd', 0, 1, '2024-05-06 07:15:50+00', 1200, 3, '{"fid": 506991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/073b867d-27b6-4155-6543-bc1116045c00/rectcrop3", "profile": {"bio": {"text": "self-contained The one who is himself, in short, is himself", "mentioned_profiles": []}}, "username": "!506991", "power_badge": false, "display_name": "Mislina", "active_status": "inactive", "verifications": ["0x3c18dbf0acc0d81d97b05fd8c5ad5107c4d5cd7f"], "follower_count": 153, "custody_address": "0xd61d8cdb84b07e801d372dd1e6dbdec394a85f36", "following_count": 281, "verified_addresses": {"eth_addresses": ["0x3c18dbf0acc0d81d97b05fd8c5ad5107c4d5cd7f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby-vhs?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (341265, '0x19909be24b09a91d1f80282f066df7e46929014a', 0, 1, '2024-05-05 23:50:05+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2641, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3123, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oPF38F4f21cMstVK6\"}"}', NULL), - (364048, '0xfb56bff28fa57447424fcae3b1399aebbb157240', 0, 1, '2024-05-06 02:42:19+00', 0, 0, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1609, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1605, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/troye-sivan/troye-sivan-angel-baby?si=24a79210bc4b413f9a8b08dacd7b25e3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (367570, '0x6ec810943e66ca4afdd8a90bf61d114e01edc2c5', 0, 1, '2024-05-06 03:05:57+00', 0, 8, '{"fid": 466532, "object": "user", "pfp_url": "https://i.imgur.com/cWGdehp.jpg", "profile": {"bio": {"text": "I like diving, dogs, traveling, and cooking", "mentioned_profiles": []}}, "username": "gomgomi", "power_badge": false, "display_name": "gomgomi", "active_status": "inactive", "verifications": ["0x3ea65e7f8ddffe83a2a8a6ee59595d84169cb449"], "follower_count": 1502, "custody_address": "0x66a0375dd9d3ba26bfaab36eee0a6455e1818cda", "following_count": 1620, "verified_addresses": {"eth_addresses": ["0x3ea65e7f8ddffe83a2a8a6ee59595d84169cb449"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/j-hoon_official/lost-control-j-hoon-atmox-remix?in=sc-playlists-kr/sets/dance-energy&si=9e0babf13ff14e468f0a32cc4d72fe98&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (328184, '0xfe06d049d55af30f3b3ce2cf25616d36361ba5b0', 0, 1, '2024-05-05 22:21:43+00', 0, 0, '{"fid": 415388, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/929824bc-8720-41ab-c422-8b0c36734000/rectcrop3", "profile": {"bio": {"text": "ℕ𝕆  𝕆ℕ𝔼𝕊  𝔾𝕆ℕℕ𝔸  𝕊𝕋𝔸𝕐", "mentioned_profiles": []}}, "username": "alirezashuoli", "power_badge": false, "display_name": "undetected 👽👁️", "active_status": "inactive", "verifications": ["0x02acd99cdeeab35dd23121fa7a50dcaa3e18b0ce"], "follower_count": 1246, "custody_address": "0xfa3fc485cfc2eede83c11dea7b1b7480bbc6b397", "following_count": 1848, "verified_addresses": {"eth_addresses": ["0x02acd99cdeeab35dd23121fa7a50dcaa3e18b0ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aYHao2gvx16PcirG7\"}"}', NULL), - (347979, '0xd6936259e8c9d335ceba210b7f144a68e9b643e5', 0, 1, '2024-05-06 00:44:29+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ganbolor-tamir/lee-hyo-ri-u-go-girl-with?si=0ec3a19835524775a25b98b8b22df8dc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (347784, '0x40ab62473901f3c2d898f3e6f4d99a7765287657', 0, 1, '2024-05-06 00:43:48+00', 0, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🟣🍖⛓🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 585, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 692, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thibault-saillan/pump-it-the-black-eyed-peas-speed-version\"}"}', NULL), - (341261, '0xd6a66d68077b314bd987b7de0c0649b0ecd92637', 0, 1, '2024-05-05 23:51:31+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2641, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3123, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/39FUhpSDQgUNDye37\"}"}', NULL), - (339866, '0xa3badae4c176a77d30b1cae3ab49e1b0bcf7fb23', 0, 1, '2024-05-05 23:42:44+00', 0, 2, '{"fid": 466106, "object": "user", "pfp_url": "https://i.imgur.com/7sKYYAP.jpg", "profile": {"bio": {"text": "댕댕이 머핀과 일상을 공유하는 워프캐스트입니다! 소통 많이해요! #슈퍼캐스트 #supercast #무한소통 ", "mentioned_profiles": []}}, "username": "muffin5516", "power_badge": false, "display_name": "coinfire5516🍖", "active_status": "inactive", "verifications": ["0xb78a0cf956250521f730478cd0330ebc108e367c"], "follower_count": 2292, "custody_address": "0xa5465c7e51b6a0213733b40bf1aeb916c724ed73", "following_count": 1928, "verified_addresses": {"eth_addresses": ["0xb78a0cf956250521f730478cd0330ebc108e367c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zeroblanc/m0io4hd01efb?si=277a60c7f45e41c59173aed7d14d02e8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (328272, '0x03ac7970b415303d9e12a25a8db30580360bf249', 0, 1, '2024-05-05 22:22:27+00', 0, 2, '{"fid": 501896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23f227ba-6847-4352-22a5-017d03310900/rectcrop3", "profile": {"bio": {"text": "hi!! i look forward to your kind cooperation❣️", "mentioned_profiles": []}}, "username": "yuruyuru", "power_badge": false, "display_name": "yuruyuru", "active_status": "inactive", "verifications": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "follower_count": 1737, "custody_address": "0x2a9a19de7beb1ff14bad1f67ddaddd417f1077de", "following_count": 1373, "verified_addresses": {"eth_addresses": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5Zj2YWke7WMm1vcy9\"}"}', NULL), - (303293, '0x8d0c765313427d66296ab32052a35a14150e9bee', 0, 1, '2024-05-05 20:40:55+00', 0, 5, '{"fid": 417274, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreiffzwxprhqjcn3wmuz6mhu322bfhvnymkp6kk2fc4zb2o44wj4auq", "profile": {"bio": {"text": "No pain, no gain🥇🍖\n-NFT Artist\n-NFT designer \n\n-Web designer\n\n-Web developer\n-Information systems security manager", "mentioned_profiles": []}}, "username": "daniyelw", "power_badge": false, "display_name": "Daniyelw🍖💊🔵", "active_status": "inactive", "verifications": ["0xc8a8e770e766a61e6e027695421e1db191b9df18"], "follower_count": 994, "custody_address": "0x1c21e6403934554eba32c9e7d55fbae68bec43ec", "following_count": 243, "verified_addresses": {"eth_addresses": ["0xc8a8e770e766a61e6e027695421e1db191b9df18"], "sol_addresses": ["GH3CyDG3eN2djWHFeUzUhbUQMQweushXVWYWYhAi4nUJ"]}}', '{"{\"url\":\"https://open.spotify.com/track/3E7ZwUMJFqpsDOJzEkBrQ7?si=1a7362058ad043a2\"}"}', NULL), - (341293, '0xc5c6bdc06377527e818fa8a7a4660be3216ed25f', 0, 1, '2024-05-05 23:52:15+00', 0, 1, '{"fid": 458343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6da2b9b0-db66-4916-5838-19ad2a8cd500/rectcrop3", "profile": {"bio": {"text": "마음이 닿기를, 🌙", "mentioned_profiles": []}}, "username": "breezeu", "power_badge": false, "display_name": "breezeu", "active_status": "inactive", "verifications": ["0x481657fb14b2217abcd0a6e78763ecaca066728a"], "follower_count": 930, "custody_address": "0xd82f57ef83b81da1a16fe4bc6fb08389852972ad", "following_count": 782, "verified_addresses": {"eth_addresses": ["0x481657fb14b2217abcd0a6e78763ecaca066728a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/18zHW\"}"}', 'sonata'), - (341565, '0xddc4826fc7198f3441c511aed3ae233c312e5ff8', 0, 1, '2024-05-05 23:54:55+00', 0, 0, '{"fid": 471246, "object": "user", "pfp_url": "https://arweave.net/28sqKx8QAWgqNC7wZf4WGn-akS_RxsOrWBGBkMTWtEE/", "profile": {"bio": {"text": "Hi🖐🏾🖐🏾🖐🏾...", "mentioned_profiles": []}}, "username": "saravani", "power_badge": false, "display_name": "Aref", "active_status": "inactive", "verifications": ["0x8168e2713fef3d83502b9dcef3f08a827c8b2a9a"], "follower_count": 922, "custody_address": "0xd57d3ffe0ad79ab04086ae0a9cbbf138bf35a5e9", "following_count": 1676, "verified_addresses": {"eth_addresses": ["0x8168e2713fef3d83502b9dcef3f08a827c8b2a9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h7UokFHsMJ8dEY6s7\"}"}', NULL), - (360142, '0x224436d33cb206595e1defc4db19b2234f7f09ff', 0, 1, '2024-05-06 02:16:22+00', 0, 0, '{"fid": 256931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59072961-f3b2-43d7-4f9b-556d3a50dc00/original", "profile": {"bio": {"text": "West Ham Capital\n(exit liquidity provider)\n\nFarcaster Reply Guy", "mentioned_profiles": []}}, "username": "catch0x22", "power_badge": true, "display_name": "Catch", "active_status": "inactive", "verifications": ["0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11"], "follower_count": 867, "custody_address": "0x80caf4b8c262827542c01a3f3c34bcb5cc34468b", "following_count": 1032, "verified_addresses": {"eth_addresses": ["0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-21121943/sets/flowz-dilione\"}"}', NULL), - (328273, '0xcb0057ce87835caafb956df44979ae955e06cdb4', 0, 1, '2024-05-05 22:22:15+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed 🎩 🍖 ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 950, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 900, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Qzr5h87j6zm6jgBr8\"}"}', NULL), - (341294, '0x1fe0daea3322158d5deefe7a4bd8af25dc940ff8', 0, 1, '2024-05-05 23:52:30+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2641, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3123, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/39FUhpSDQgUNDye37\"}"}', 'sonata'), - (305006, '0xe30dc95648cd0c4d40297042348287ac89c9bdfd', 0, 1, '2024-05-05 20:47:56+00', 0, 2, '{"fid": 439718, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\"", "mentioned_profiles": []}}, "username": "ssr", "power_badge": true, "display_name": "SSR🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51"], "follower_count": 598, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 639, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uYvVNQBxHs8F22239\"}"}', NULL), - (347975, '0x804206a9cc533fbe63568bb17e619b686b80bfe3', 0, 1, '2024-05-06 00:45:38+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/frequentiis/newjeans-get-up-ful-album?si=cd8a0b0dcf8842efac00d1d4ff63f908&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (477374, '0x0733a041cbf581ee79264af9d7ad4877b37adfbb', 0, 1, '2024-05-06 07:21:53+00', 0, 3, '{"fid": 417275, "object": "user", "pfp_url": "https://i.imgur.com/S7A5ePA.jpg", "profile": {"bio": {"text": "Every struggle in your life has shaped you into the person . You are today . Be thankful for the hard times , they have made you STRONGER", "mentioned_profiles": []}}, "username": "parytaky", "power_badge": false, "display_name": "Parisa.✈️", "active_status": "inactive", "verifications": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "follower_count": 585, "custody_address": "0x7ce17fd885235346e55fedf7d819095f1240819e", "following_count": 510, "verified_addresses": {"eth_addresses": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Te Bote Remix Casper Magico, Nio Garcia, Darell Nicky Jam, Ozuna, Bad Bunny by Casper Magico on #SoundCloud https://on.soundcloud.com/t6AF3\"}"}', NULL), - (427729, '0x97dc79cd331f05348038c9ed8e6258fe74f4d46b', 0, 1, '2024-05-06 06:08:16+00', 0, 1, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2137, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1879, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cRVJgGKHSdMSS11w7\"}"}', NULL), - (352140, '0x05ac354600ff89978405313eb2bf6f5b6ef06502', 0, 1, '2024-05-06 01:16:13+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-cameras-good-ones-go?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (302004, '0x31b0c1b47fefad2f6a882529a0fa17b5be729309', 0, 1, '2024-05-05 20:37:09+00', 0, 3, '{"fid": 364763, "object": "user", "pfp_url": "https://i.imgur.com/FFpzKnl.jpg", "profile": {"bio": {"text": "We are going to have a lot of fun here. Join /farcaster to get to know the true meaning of the digital space to infinity and beyond./lp", "mentioned_profiles": []}}, "username": "iammarhz", "power_badge": false, "display_name": "Ammar Hossein Zehi 🎩🍖", "active_status": "inactive", "verifications": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "follower_count": 803, "custody_address": "0x5420e42acc6842e0d702f168affcd105221b9179", "following_count": 1646, "verified_addresses": {"eth_addresses": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "sol_addresses": []}}', '{"{\"url\":\"Listen to VÖLLIG LOSGELÖST - Zensery by Zensery on #SoundCloud https://soundcloud.com/user-245243773/vo-llig-losgelo-st-zensery?ref=clipboard&p=a&c=0&si=5cea509ba8f14a7697519cc71833c2e1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (303491, '0x10173eb411a942a39adcaa4e28198c47fccfcea8', 0, 1, '2024-05-05 20:43:06+00', 0, 2, '{"fid": 417412, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86ca9822-4ac1-47ac-104c-8f8e7fca2600/rectcrop3", "profile": {"bio": {"text": "i love game 🎮🔥\ni love NFT🍖🎩💜\n\nmy YouTube channel link: \nhttps://youtube.com/@psycho_msh?si=jhttWZXtivdUqcRt", "mentioned_profiles": []}}, "username": "nftghost", "power_badge": false, "display_name": "selyna 🎩 🔄 🍖", "active_status": "inactive", "verifications": ["0x6e76065817537a497800770e00342e06323e4b31"], "follower_count": 176, "custody_address": "0x494fd5cddab971d3c8083f01c8b6c11ea894b6b3", "following_count": 195, "verified_addresses": {"eth_addresses": ["0x6e76065817537a497800770e00342e06323e4b31"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Shadow by Livingston on #SoundCloud https://on.soundcloud.com/n56X9\"}"}', NULL), - (364120, '0x41a825d3978c2b186de7ad1b8810b22d45a3e7ef', 0, 1, '2024-05-06 02:43:25+00', 0, 2, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1255, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1124, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Tns7cUKpdPxa9D6e8\"}"}', NULL), - (360018, '0x95fdb44e44e2ddd7c9716be4f5a0e22ef258ae86', 0, 1, '2024-05-06 02:15:49+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 786, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1523, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/54ghw\"}"}', 'sonata'), - (364050, '0xd7a4fe7c10a7e19a3cbe3ff4ad89fcdce88a5fbe', 0, 1, '2024-05-06 02:42:10+00', 0, 0, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1257, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1124, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Tns7cUKpdPxa9D6e8\"}"}', 'sonata'), - (365947, '0xcf215ae460bb31da5e27bb2091c083cd98d25b8b', 0, 1, '2024-05-06 02:58:06+00', 50, 46, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1535, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 959, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oo4qUfpCQ1qHVpS36\"}"}', NULL), - (264886, '0x0f48d919a4f6bf25ed7aa081020a6f718bdc7ccf', 0, 1, '2024-05-05 16:07:54+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 35, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/for-thy-lonely-heart?referral_source=link\"}"}', 'soundxyz'), - (294468, '0xca36f2c3382824ec892091ea07d2a28889de7d76', 0, 1, '2024-05-05 20:04:31+00', 0, 2, '{"fid": 431749, "object": "user", "pfp_url": "https://i.imgur.com/OPRm4Ci.jpg", "profile": {"bio": {"text": "Visual art - NFT artist available collections on : @foundation & @objktcom & @MakersPlace & @KreatePlatform & @exchgART 🔸\n\nhttps://linktr.ee/arrasartistic", "mentioned_profiles": []}}, "username": "arrasartistic", "power_badge": false, "display_name": "Sara 🎩", "active_status": "inactive", "verifications": ["0x624260517cd02339cc41525f05fb7520ab11fc2a"], "follower_count": 476, "custody_address": "0x1ba23c2e9f15a6b10f1909e34d44944ecd84ad8b", "following_count": 678, "verified_addresses": {"eth_addresses": ["0x624260517cd02339cc41525f05fb7520ab11fc2a"], "sol_addresses": ["Hv6YeUNjxEvMUQyB3bo7NYW3nyJ7LHf2AZEoEENynUng"]}}', '{"{\"url\":\"https://open.spotify.com/track/7nmEQmD5IEtVC2srvNEc32\"}"}', NULL), - (301730, '0x240cfbe894baab07fc58e22e0f917cb2c5e54b6a', 0, 1, '2024-05-05 20:34:01+00', 0, 1, '{"fid": 207400, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/Qmf79k2yYv6eFKN6huoDtpcSCebax3YT47WeyiaHaAUPWH", "profile": {"bio": {"text": "Development & operations, *never legal or financial advice, https://basepaint.xyz/mint?referrer=0xaaDd6D24EDe8ab75aCc3FBA496C3b41A9E663689 \nPlease be grateful. ", "mentioned_profiles": []}}, "username": "dev0ps", "power_badge": false, "display_name": "dev0ps - coastalconsulting.eth -", "active_status": "inactive", "verifications": ["0x141851ca7ffbead76491b365c3515bf5bfd9efed", "0xaadd6d24ede8ab75acc3fba496c3b41a9e663689", "0x51f47622856f24ed640f70400fa7aa583f04efee", "0x86ea1e8f576331baf33f5a84c6e90d3b59cb594c", "0x006c087fdc9783d1ab34cd156adfb0b51f74bc04"], "follower_count": 666, "custody_address": "0xe792891212a7c59b798788bc5379fc91768ee2d0", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0x141851ca7ffbead76491b365c3515bf5bfd9efed", "0xaadd6d24ede8ab75acc3fba496c3b41a9e663689", "0x51f47622856f24ed640f70400fa7aa583f04efee", "0x86ea1e8f576331baf33f5a84c6e90d3b59cb594c", "0x006c087fdc9783d1ab34cd156adfb0b51f74bc04"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lush-614934797/fsttnl9?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (328585, '0x463f3c6ce3510fc117598d0bfb4b6e3419665054', 0, 1, '2024-05-05 22:25:39+00', 0, 0, '{"fid": 504319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d507508-f4b2-404e-8c94-ac8c29b01100/rectcrop3", "profile": {"bio": {"text": "I’m just an ordinary person who likes food, travel and crypto 😀", "mentioned_profiles": []}}, "username": "jaydenoh", "power_badge": false, "display_name": "Jayden", "active_status": "inactive", "verifications": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "follower_count": 440, "custody_address": "0xa3afaf513eeed17783dfb7342f138f8e54fa5644", "following_count": 473, "verified_addresses": {"eth_addresses": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/d5TuN2cj6DZ2GcUU9\"}"}', NULL), - (305822, '0x719992b6052eb831af85c6da985f8e6ef1cefc54', 0, 1, '2024-05-05 20:48:45+00', 0, 2, '{"fid": 374278, "object": "user", "pfp_url": "https://i.imgur.com/e4ixrwG.jpg", "profile": {"bio": {"text": "🖤💙", "mentioned_profiles": []}}, "username": "iliya", "power_badge": false, "display_name": "iliya", "active_status": "inactive", "verifications": ["0xfa8c84c75883f1018db0a9be3630338de6d78d9c"], "follower_count": 568, "custody_address": "0xeda3b47bc4e88c480cbf26e18c2f08690bdcf2be", "following_count": 677, "verified_addresses": {"eth_addresses": ["0xfa8c84c75883f1018db0a9be3630338de6d78d9c"], "sol_addresses": ["7KnBNADeYNYzb8h4aaQNrHzzxfFmipNBzhXmDojqrVhK"]}}', '{"{\"url\":\"https://soundcloud.com/mahhdi-amini/chetori-mishe-ftardalan-tomeh-reza-pishro-bahar-atish?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (348197, '0xb2e473d6ac07e7e01c9d490098a1ef6d563e16c5', 0, 1, '2024-05-06 00:46:28+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/darwin-nguyen-55848457/sam-smith-unholy-ft-kim-petras-1?si=dbc87ceb65e74d4797cd912e29d0286b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350712, '0xbcb23e1cc15d0f11261d34e20241a3a6eb738e51', 0, 1, '2024-05-06 01:05:25+00', 0, 1, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/hello-mr-my-yesterday-10-op?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (347783, '0x7181117cc0cf5000b12941c3bce1332d32144525', 0, 1, '2024-05-06 00:43:44+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sykqtsjcdw5p/bts-dreamers?si=1cccf6d8007a4b18b0d6ae0c61cbd1f6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329029, '0xa06b4edcbd54fc974089b359a53fb78e561e9c8f', 0, 1, '2024-05-05 22:27:10+00', 0, 2, '{"fid": 415388, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/929824bc-8720-41ab-c422-8b0c36734000/rectcrop3", "profile": {"bio": {"text": "ℕ𝕆  𝕆ℕ𝔼𝕊  𝔾𝕆ℕℕ𝔸  𝕊𝕋𝔸𝕐", "mentioned_profiles": []}}, "username": "alirezashuoli", "power_badge": false, "display_name": "undetected 👽👁️", "active_status": "inactive", "verifications": ["0x02acd99cdeeab35dd23121fa7a50dcaa3e18b0ce"], "follower_count": 1246, "custody_address": "0xfa3fc485cfc2eede83c11dea7b1b7480bbc6b397", "following_count": 1848, "verified_addresses": {"eth_addresses": ["0x02acd99cdeeab35dd23121fa7a50dcaa3e18b0ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rBJH2GRWYnT2BbNy7\"}"}', NULL), - (331820, '0xc159042f2224b2e013fe0f05347adfad7c2d9e8d', 0, 1, '2024-05-05 22:55:13+00', 0, 4, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 555, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 239, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2oGY1X7Xd5kyL6B9s19D9A?si=a9d9d4b97e824820\"}"}', 'bangers'), - (308379, '0xe2c24f5698caaaf46e531021cd94df9da17dbf2b', 0, 1, '2024-05-05 20:53:00+00', 0, 1, '{"fid": 445815, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8344947a-01ba-4dd1-549a-6d8118924100/rectcrop3", "profile": {"bio": {"text": "Let''s go ", "mentioned_profiles": []}}, "username": "maryamnoz", "power_badge": false, "display_name": "Mery🎩🍖🐐⚡", "active_status": "inactive", "verifications": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "follower_count": 1603, "custody_address": "0xea3119691b1e6bba73566e1eec3264b53306ec93", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4W9XS\"}"}', NULL), - (132417, '0x19718c24038ade74fe64b721857c4a408ee03ff5', 7358, 1, '2024-05-05 06:17:28+00', 250, 83, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 499, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/badley/sunburn?referral=0x8284fdb345236d8285fecd91855c16ca22a1033f\"}"}', 'soundxyz'), - (341564, '0x374818f89bd15ac64279db5404271e764f7ddaa3', 0, 1, '2024-05-05 23:55:48+00', 0, 2, '{"fid": 508082, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09e1b144-51f7-4e45-e20c-e6c0a2c33600/rectcrop3", "profile": {"bio": {"text": "팔루우 해주시면 맞팔 고고^^\n교감하며 서로 아픔을 이겨봐요♡♡♡", "mentioned_profiles": []}}, "username": "!508082", "power_badge": false, "display_name": "greenever", "active_status": "inactive", "verifications": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "follower_count": 767, "custody_address": "0xd37464128c23cb688dedb4972b43394fedfdcce8", "following_count": 844, "verified_addresses": {"eth_addresses": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B2iMqQvqAEMf5NDQ8\"}"}', 'sonata'), - (149360, '0x589c62f5d004d2dfbf9a093fc83584a4edf350b0', 0, 1, '2024-05-05 08:37:37+00', 0, 1, '{"fid": 515990, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcebaa3f-e259-4bb6-e57f-3745545f2400/rectcrop3", "profile": {"bio": {"text": "Soy artista.", "mentioned_profiles": []}}, "username": "!515990", "power_badge": false, "display_name": "Kasbeel", "active_status": "inactive", "verifications": ["0xa49f720bf331a5e701f452321d997a01336ed315"], "follower_count": 2, "custody_address": "0xa71c87b2b4549b5bb29d3ed88ec43cb328ed2cd1", "following_count": 65, "verified_addresses": {"eth_addresses": ["0xa49f720bf331a5e701f452321d997a01336ed315"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbeel/que-mas?referral=0xa49f720bf331a5e701f452321d997a01336ed315\"}"}', NULL), - (309453, '0xaef822d62d299eae8801158c9e1ec1a72023fb1b', 0, 1, '2024-05-05 20:56:52+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/ashkanakai/2az?ref=clipboard&p=a&c=0&si=faa0a80daf1b446da4ebd0e3a8c0863c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (309883, '0x791ed5ad8019e9874190f7de45af8488816ca21e', 0, 1, '2024-05-05 20:58:33+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/sandy-84279/eshghe-bandar-bandari?ref=clipboard&p=a&c=0&si=6ba2606ba3cf47e392b93dcf3d0adf7d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (360415, '0xe294ad3d46416cea68ceb7ff2e51867b6f176941', 0, 1, '2024-05-06 02:16:40+00', 0, 0, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3431, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 4065, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://open.spotify.com/track/5sdQOyqq2IDhvmx2lHOpwd\"}"}', 'sonata'), - (317862, '0xdc367fbcaf6fe76fedf37d18f4e7ac41f3bd9f53', 0, 1, '2024-05-05 21:30:06+00', 0, 2, '{"fid": 501789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d2c960a-2bb5-4637-ca0e-67fe391ce200/rectcrop3", "profile": {"bio": {"text": "smile 😃\n just do it 최고\n부스터가 뭐시중헌디", "mentioned_profiles": []}}, "username": "mmraz", "power_badge": false, "display_name": "Jay M🎩🍖", "active_status": "inactive", "verifications": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "follower_count": 1064, "custody_address": "0x528e24d99b86845a6ecf98f21cb841fbd46eb2b0", "following_count": 956, "verified_addresses": {"eth_addresses": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/k-ym/sets/xrhgpzd9myi4?si=660ce668735442e68660686c8b42c641&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (476441, '0xd1a610cb8704aa052a7791c7610e150a4a9ddf85', 0, 1, '2024-05-06 07:21:32+00', 0, 6, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3935, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2224, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dcC2CySbxjYrMomf9\"}"}', 'sonata'), - (365953, '0x9df3ab0f5065c48e0907bf78d65f03b16ef97327', 0, 1, '2024-05-06 02:57:28+00', 0, 2, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ycb8ASn1XeaAGdyQ9\"}"}', NULL), - (364052, '0xc7cdb4c138750f20725b1f65036234eb8e2df52e', 0, 1, '2024-05-06 02:41:35+00', 0, 5, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 751, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 829, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sang-i-park/spapa\"}"}', 'sonata'), - (309451, '0x6284c1f3a31c8523df33ed2a5fd7fa246f9b8c3b', 0, 1, '2024-05-05 20:58:19+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/drvahidgol/mohammad-bakhtiyari-chador?ref=clipboard&p=a&c=0&si=d75364fe7c8a4bcaa7a003c81bf2eb73&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329582, '0xb4dca005fd21e456d287f31cc05d3eb0de49df53', 0, 1, '2024-05-05 22:32:28+00', 0, 0, '{"fid": 453227, "object": "user", "pfp_url": "https://i.imgur.com/aGZ5VCq.jpg", "profile": {"bio": {"text": "Hassan babaloei", "mentioned_profiles": []}}, "username": "hassanba", "power_badge": false, "display_name": "Hassanbabaloei", "active_status": "inactive", "verifications": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "follower_count": 287, "custody_address": "0xa221fc0c8b62c365065a1b900fce9efe0198ba17", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to M.B.T.I. by I’m/sang on #SoundCloud https://soundcloud.com/imsangryuh/mbtti?ref=clipboard&p=a&c=0&si=a843d2d39f214c7ba56799931205fbca&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (341790, '0xa44ec92da4167779ac70a8eba8a2e81329667e58', 0, 1, '2024-05-05 23:56:58+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 691, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LG9JR\"}"}', 'sonata'), - (310870, '0xdca85140201e8b0bbf7066ef7ac1d66a03dd0cf6', 1110, 1, '2024-05-05 21:00:53+00', 0, 3, '{"fid": 523, "object": "user", "pfp_url": "https://pbs.twimg.com/profile_images/1455908126801203205/4zj5yYfJ_400x400.jpg", "profile": {"bio": {"text": "super shadowy coder since before it was cool. currently exploring mobile-first web3 building a web3 music player @ www.spinamp.xyz ", "mentioned_profiles": []}}, "username": "musnit.eth", "power_badge": true, "display_name": "musnit", "active_status": "inactive", "verifications": ["0xef42cf85be6adf3081ada73af87e27996046fe63", "0x34dfcc087cd1b20a12ce434827a4e4bdab92ca8a"], "follower_count": 347, "custody_address": "0xed7f3544056fb50ccfd7e42850d5444bb8eee4e5", "following_count": 185, "verified_addresses": {"eth_addresses": ["0xef42cf85be6adf3081ada73af87e27996046fe63", "0x34dfcc087cd1b20a12ce434827a4e4bdab92ca8a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tydi/lights-peace-sign-tydi-remix\"}"}', NULL), - (360953, '0xfae6abb0efa54c6d16264c733c47f9dd66a0ff21', 0, 1, '2024-05-06 02:19:41+00', 0, 0, '{"fid": 509205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e14ff0a-50ac-40ee-f958-fe4ca79fdf00/rectcrop3", "profile": {"bio": {"text": "Web3, crypto, food, travel", "mentioned_profiles": []}}, "username": "!509205", "power_badge": false, "display_name": "bbangcho", "active_status": "inactive", "verifications": ["0xd4199fa1a3f731cdd07876429820f7091425af9d"], "follower_count": 62, "custody_address": "0x07267a1d18f9a410d4a8e0bcd28289467dafa33c", "following_count": 276, "verified_addresses": {"eth_addresses": ["0xd4199fa1a3f731cdd07876429820f7091425af9d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cSkduHovbuLSZidT6\"}"}', 'sonata'), - (360521, '0x9b7bc71672141de9291d4663e92578cf85fd7a8d', 0, 1, '2024-05-06 02:18:29+00', 0, 0, '{"fid": 401441, "object": "user", "pfp_url": "https://i.imgur.com/xw6m1Wy.jpg", "profile": {"bio": {"text": "반응이 늦더라도 조금만 기다려주세요. \n", "mentioned_profiles": []}}, "username": "woawoame", "power_badge": false, "display_name": "Lemon", "active_status": "inactive", "verifications": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "follower_count": 2033, "custody_address": "0xe8b627f4c3b83022f8bacbd4d0f957e1f31e6318", "following_count": 2304, "verified_addresses": {"eth_addresses": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lk3rz\"}"}', 'sonata'), - (341792, '0x55e536f767fc7c6c73d518af09d465dd0ed83646', 0, 1, '2024-05-05 23:55:52+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2353, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4116, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eBCr7\"}"}', 'sonata'), - (313174, '0x1eb06da236993a9c7db11d9d290f7bdce579cb7b', 0, 1, '2024-05-05 21:10:46+00', 0, 0, '{"fid": 416495, "object": "user", "pfp_url": "https://i.imgur.com/dKMZ77m.jpg", "profile": {"bio": {"text": "My name is gangpyolee", "mentioned_profiles": []}}, "username": "gangpyo", "power_badge": false, "display_name": "Leegangpyo", "active_status": "inactive", "verifications": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "follower_count": 492, "custody_address": "0xc51d55d4eae0828062467935aa61d1922f4b5fc2", "following_count": 551, "verified_addresses": {"eth_addresses": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ta2jian-241487429/cjtj98yb42n4?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329698, '0x688efb6ddad47988b6820b00bb3aacb06e997cf6', 0, 1, '2024-05-05 22:33:54+00', 0, 0, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 721, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 770, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bobby-lamb-902120162/beast-lamb-bobbys-cover\"}"}', NULL), - (329695, '0x3c7e92963594a1b981896b4dd0ff2e8b3bbcffda', 0, 1, '2024-05-05 22:33:24+00', 0, 0, '{"fid": 465860, "object": "user", "pfp_url": "https://i.imgur.com/kxKT31r.jpg", "profile": {"bio": {"text": "Interested in\nAnime/ DigitalArt/ Painting/ photography/\nWeb3 Learner\nPeace for all", "mentioned_profiles": []}}, "username": "demozh", "power_badge": false, "display_name": "DeMozh", "active_status": "inactive", "verifications": ["0x88505738b01b1e7344ab08f27ab0a9f0bbc486ce"], "follower_count": 686, "custody_address": "0xe2c603e84462217591e512e4a295fddfd7be19fd", "following_count": 765, "verified_addresses": {"eth_addresses": ["0x88505738b01b1e7344ab08f27ab0a9f0bbc486ce"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kygo/the-weeknd-daft-punk-starboy-kygo-remix\"}"}', NULL), - (364151, '0xbf5042a6388290c2b9e0a950c6ff514306c79b63', 0, 1, '2024-05-06 02:44:47+00', 0, 2, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1346, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TDzEuVhWpF5wpFkt5\"}"}', NULL), - (363355, '0xf08c97e3b40ca2b7a2cd0e92dbc1b305583b2b0e', 0, 1, '2024-05-06 02:33:34+00', 0, 4, '{"fid": 499091, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d892d750-f391-476b-078f-cddc5278b500/rectcrop3", "profile": {"bio": {"text": "일상 & 코인", "mentioned_profiles": []}}, "username": "fuzzypaws", "power_badge": false, "display_name": "Fuzzypaws", "active_status": "inactive", "verifications": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "follower_count": 1238, "custody_address": "0x24b9ca359d7f4f1395e7d7b101e52b3f1784bcbb", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":499091,\"hash\":\"0xd01840b40db9812b0e8839d02bc2837943ab6e74\"}}","{\"url\":\"https://open.spotify.com/track/52p5RtEaTXx1u1udrx8Fqr?si=fa532fa50e0a4626\"}"}', 'sonata'), - (518569, '0xef285bf99b4d134932a7d59c4a59c7270b1b0af0', 0, 1, '2024-05-06 08:49:56+00', 0, 3, '{"fid": 426079, "object": "user", "pfp_url": "https://i.imgur.com/btavMHT.jpg", "profile": {"bio": {"text": "x > +", "mentioned_profiles": []}}, "username": "heyden", "power_badge": false, "display_name": "heyden", "active_status": "inactive", "verifications": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "follower_count": 2351, "custody_address": "0x578a54f0694def6e374a86204efa3a8445a4e2f5", "following_count": 2687, "verified_addresses": {"eth_addresses": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h6DQWcCdNyoihynv9\"}"}', 'sonata'), - (62102, '0xff16582b477f5f5d2d38138065005ebaab62ccc4', 0, 1, '2024-05-04 23:23:18+00', 0, 1, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/the-call-dont-feel-like-christmas?referral=0x8218224ebb7abf7dbaffdf0fed571b8280d99485&referral_source=link\"}"}', NULL), - (308843, '0xa8a93b43082dfe53e9aceeaf7b3bb2fa6f6b97ad', 0, 1, '2024-05-05 20:53:43+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/iranmediamusic/haydeh-aroosak?ref=clipboard&p=a&c=0&si=27d351dfd12e4250880a95f8cd90272c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (309454, '0xd89fe81cdd073d97bb1361015a0105ddb8dba4b9', 0, 1, '2024-05-05 20:57:27+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/pooriaputak/putak-x-hiphopologist-trackamun-mishe-release-boy?ref=clipboard&p=a&c=0&si=b0ef197920df459e98a8fb93cd395005&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (309888, '0x2edf0541afc42f5927b49ff0f7a7fa0b01842b43', 0, 1, '2024-05-05 20:58:50+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/amirhajipour-music/agug96ejx7z1?ref=clipboard&p=a&c=0&si=7ab8f7e128b449a68a34f82608c866cc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (309018, '0xf8cf43425f167e6c15c9b3393320c6e8c71a90b3', 0, 1, '2024-05-05 20:55:58+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"Listen to Haydeh - Aroosak #IranMediaNetwork by IranMediaMusic on #SoundCloud https://soundcloud.com/iranmediamusic/haydeh-aroosak?ref=clipboard&p=a&c=0&si=27d351dfd12e4250880a95f8cd90272c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329696, '0x3949e29262e5a97ff1e5cdf79f340ace056629bd', 0, 1, '2024-05-05 22:33:26+00', 0, 0, '{"fid": 453227, "object": "user", "pfp_url": "https://i.imgur.com/aGZ5VCq.jpg", "profile": {"bio": {"text": "Hassan babaloei", "mentioned_profiles": []}}, "username": "hassanba", "power_badge": false, "display_name": "Hassanbabaloei", "active_status": "inactive", "verifications": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "follower_count": 287, "custody_address": "0xa221fc0c8b62c365065a1b900fce9efe0198ba17", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to M.B.T.I. by I’m/sang on #SoundCloud https://soundcloud.com/imsangryuh/mbtti?ref=clipboard&p=a&c=0&si=a843d2d39f214c7ba56799931205fbca&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (305816, '0x6ad19ea4e8d4448e750003298c094ec8f00e849e', 0, 1, '2024-05-05 20:48:55+00', 0, 5, '{"fid": 4065, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ba776434-7fd2-4038-34be-f17e94546300/original", "profile": {"bio": {"text": "Co-Founder of @checkin @beyondclub - Foursquare on Farcaster 🗺️ 📍\nicebreaker.xyz/yuki.fc", "mentioned_profiles": []}}, "username": "yuki", "power_badge": true, "display_name": "Yuki 🎩 ✈️ ✅ @ Farcon", "active_status": "inactive", "verifications": ["0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0"], "follower_count": 4169, "custody_address": "0x94a50c72b4841f6ff73a626d92fa7ed487bc4373", "following_count": 424, "verified_addresses": {"eth_addresses": ["0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/30WNOfFRiqgebO4eRkCii8?si=XiEzhthKSha9iFz2VP-w1g\"}"}', NULL), - (341914, '0xf53e1343a46c18961a149406d30a9fedc06e2f89', 0, 1, '2024-05-05 23:57:22+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1128, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/5Kol7a51obXwqkwAhp0DkH?si=olsTyxy5Sj-DX72scMCPiw&context=spotify%3Aalbum%3A0YlTGCp6SUpdYZM1xNhgxz\"}"}', NULL), - (8016, '0xffca7e7d7895753018b36b85e4d03e524d8bfb6a', 0, 1, '2024-05-04 17:02:48+00', 0, 0, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 285, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1044, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/molly?referral=0x7de3ca13e28120447257448e13f44c9a4efab507\"}"}', NULL), - (341791, '0x2dce7b108870f6d12e94f73b133aebf3d20427cf', 0, 1, '2024-05-05 23:55:59+00', 0, 1, '{"fid": 511577, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3d871e4d-e7e7-4a5c-c4e0-e7c60880f200/rectcrop3", "profile": {"bio": {"text": "Defi Enthusiast \nSon,Dad,Mom and the badass one", "mentioned_profiles": []}}, "username": "!511577", "power_badge": false, "display_name": "Marshall", "active_status": "inactive", "verifications": ["0xe955575298d2b9f6a1f4d2f6e9467f4af859e384"], "follower_count": 502, "custody_address": "0x336877430080f78e71cbe446f9e5e6613f22fdbe", "following_count": 636, "verified_addresses": {"eth_addresses": ["0xe955575298d2b9f6a1f4d2f6e9467f4af859e384"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/07Po12dckPgyzjaB0ImH1w?si=WXvRmKlpTR2uWeMxUY3zBQ\"}"}', NULL), - (313434, '0xef91cbf596a703dabbdb532b0e7b3794c3f0e01a', 0, 1, '2024-05-05 21:11:18+00', 0, 1, '{"fid": 510066, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54eff8e4-0f53-4920-fafa-c2cc610b8a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!510066", "power_badge": false, "display_name": "Saeid", "active_status": "inactive", "verifications": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "follower_count": 176, "custody_address": "0x6fe4b05d6fc7c867484b9f98b1b5d5dff2c27bad", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4ohEk\"}"}', NULL), - (520036, '0x8b2dc8c822b027e2fdb5c1763e6c7aceb4dfb984', 0, 1, '2024-05-06 08:59:47+00', 0, 9, '{"fid": 457630, "object": "user", "pfp_url": "https://i.imgur.com/gPG8YWI.jpg", "profile": {"bio": {"text": "I’m Seyar. A tech enthusiast, crypto lover and software engineer.", "mentioned_profiles": []}}, "username": "seyar", "power_badge": false, "display_name": "Seyar Hasir", "active_status": "inactive", "verifications": ["0x27e7e7576e650a68ba32714fbcb6569581de0fdf"], "follower_count": 272, "custody_address": "0x3c34ea3a77b3ce90ec4088c2c1e35c7686c0c976", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x27e7e7576e650a68ba32714fbcb6569581de0fdf"], "sol_addresses": ["Ber33XBPTL1bwAXHjKPtj9vEaXMA2eZPwRy62TfYhYWT"]}}', '{"{\"url\":\"https://on.soundcloud.com/nNjMdzmJQtuUBpn56\"}"}', NULL), - (499198, '0xb6531f75676cd3108c9f711d7897f705fb0a225e', 0, 1, '2024-05-06 07:59:45+00', 0, 0, '{"fid": 508176, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56e7aaed-eac4-4ed3-db64-d87ef3844600/rectcrop3", "profile": {"bio": {"text": "nice play!!!", "mentioned_profiles": []}}, "username": "!508176", "power_badge": false, "display_name": "NICEPLAY", "active_status": "inactive", "verifications": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "follower_count": 185, "custody_address": "0x5ff3dc41301cda755a42ffec67381363f31ccc80", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4n1Kz5ipXQUjDL8G6\"}"}', 'sonata'), - (451599, '0x2d8883c03028c878fcf348308d446fe76e6c0422', 0, 1, '2024-05-06 06:47:19+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2925, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2353, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/STA7Q\"}"}', 'sonata'), - (309889, '0xf0452092d38baa27428182eaf3422bf48fb2f3ba', 0, 1, '2024-05-05 20:59:08+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/mansourmusic/bari-bakh?ref=clipboard&p=a&c=0&si=5e9b51f9fa144e059aa16a410588747d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (12926, '0x4bb8522c38f9f44d512bd5230c4187511f579b48', 0, 1, '2024-05-04 18:50:19+00', 0, 5, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2914, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 264, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7hCEIp0uDWrFm8bROunqeP?si=qDN4guRkQFuawEqpwSerAw&context=spotify%3Aplaylist%3A37i9dQZF1DZ06evO0ENBD3\"}"}', 'dyl'), - (11653, '0x69323ffbf7d66878f5b3befbb069160df40073ea', 0, 1, '2024-05-04 18:17:34+00', 0, 4, '{"fid": 296737, "object": "user", "pfp_url": "https://i.imgur.com/011H0Mz.gif", "profile": {"bio": {"text": "Certified /rad\n⟐ Asking questions in /how & /why", "mentioned_profiles": []}}, "username": "duderad.eth", "power_badge": true, "display_name": "𝙍𝘼𝘿 🎩 ", "active_status": "inactive", "verifications": ["0x76d018a493e9795d6a6331b0bb6472977319638b", "0xcfe909e0071c6d6da0c24451d1db53609ddb8e1c", "0x327c009254dcb7fb15b006227a01d9d62fc09d1b"], "follower_count": 3818, "custody_address": "0x668442cc8b30add039aa547c225abd9c838d7bbf", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x76d018a493e9795d6a6331b0bb6472977319638b", "0xcfe909e0071c6d6da0c24451d1db53609ddb8e1c", "0x327c009254dcb7fb15b006227a01d9d62fc09d1b"], "sol_addresses": ["FuCVTeUzsLDTK9vt1MDRGjRzPRHT3puDLQ8UdFUt7vNa"]}}', '{"{\"url\":\"https://open.spotify.com/track/50PU05RTGva8laKDwxED9Y\"}"}', 'bangers'), - (329697, '0x3d0e1f99a00e2cca894611bdf4a4be522e32837b', 0, 1, '2024-05-05 22:34:07+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3161, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jenienamm/john-park?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (21648, '0x7320b0e950539b893a85a9365859895a47f20df7', 0, 1, '2024-05-04 20:56:45+00', 0, 9, '{"fid": 14515, "object": "user", "pfp_url": "https://i.imgur.com/ipJRbGn.gif", "profile": {"bio": {"text": "Playfully Controversial | Art in All The Fancy Places | Destigmatize | #cc0 |\nrc.xyz/empresstrash\nbeacons.ai/empresstrash\n/cryptoart\n/trash-art\n/empress-trash", "mentioned_profiles": []}}, "username": "empresstrash", "power_badge": true, "display_name": "Empress Trash 🎩🌈🖤", "active_status": "inactive", "verifications": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "follower_count": 2392, "custody_address": "0x1fe3a27087710e956deab0a498ec7f0f031a7da2", "following_count": 683, "verified_addresses": {"eth_addresses": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "sol_addresses": ["81gcTouikeKU4vtqWKGVuGwBA9yTgM3EbDCquPp6MGXE"]}}', '{"{\"url\":\"https://open.spotify.com/track/70eDxAyAraNTiD6lx2ZEnH?si=3186a6ae90b343bf\"}"}', NULL), - (347781, '0x38ec4796291e4d7fc03af4921422a783f0e73237', 0, 1, '2024-05-06 00:44:18+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lam-le-479022895/10-minutes?si=2a289323d7d14050b7df0982351790e3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (11472, '0xbb4a62c4dcf2c0bede40b1bc1af43545f8223f78', 0, 1, '2024-05-04 17:57:41+00', 0, 1, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 116, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 153, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7cd78d79-5002-432e-dc71-bb1f176aa400/original\"}","{\"url\":\"https://open.spotify.com/track/2a2Yb7fc67EzRUVpYTUyZq?si=2xE3ZPjhRdOXMd2xHu0OJw\"}"}', 'share'), - (7364, '0x3d6e553eea3c9b4981a77d0ca8f7aa4d4fd29e08', 31, 1, '2024-05-04 16:24:44+00', 0, 5, '{"fid": 201043, "object": "user", "pfp_url": "https://i.imgur.com/UyDS3lo.jpg", "profile": {"bio": {"text": "Artist | Listen to ‘Libre’ 🪽🎶 https://open.spotify.com/track/7gSBx3QBKkIK2X5XMQAzTJ?si=myiR_yvNR3mT3uUSxfLsZA&context=spotif", "mentioned_profiles": []}}, "username": "iamlosi", "power_badge": true, "display_name": "Losi🎩🎤", "active_status": "inactive", "verifications": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "follower_count": 339, "custody_address": "0x9d6e47eaa5f4b44b83827fc97e7a8e157b3f2386", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/losi/libre?referral_source=link\"}"}', 'base-builds'), - (329960, '0xdbea739e5bf1226e0a46758734691592437e60fa', 0, 1, '2024-05-05 22:34:44+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3161, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/conan-gray/maniac?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (12433, '0xbbd6018cbac302aa5f1ded247cd8d1db5ef2c4bc', 0, 1, '2024-05-04 18:38:51+00', 0, 0, '{"fid": 201043, "object": "user", "pfp_url": "https://i.imgur.com/UyDS3lo.jpg", "profile": {"bio": {"text": "Artist | Listen to ‘Libre’ 🪽🎶 https://open.spotify.com/track/7gSBx3QBKkIK2X5XMQAzTJ?si=myiR_yvNR3mT3uUSxfLsZA&context=spotif", "mentioned_profiles": []}}, "username": "iamlosi", "power_badge": true, "display_name": "Losi🎩🎤", "active_status": "inactive", "verifications": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "follower_count": 339, "custody_address": "0x9d6e47eaa5f4b44b83827fc97e7a8e157b3f2386", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YO44oPkpH4zeinnihUpIR?si=v9h_qdVgT_2O-taWAVhH1g\"}"}', NULL), - (329950, '0xa56b471464956eab7aba871aada620f1f07d2822', 0, 1, '2024-05-05 22:36:09+00', 0, 1, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3161, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/diplo/m-i-a-paper-planes?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (348395, '0x04b9a37463c0bfa585322edd5ff3899f090fb39b', 0, 1, '2024-05-06 00:47:27+00', 0, 1, '{"fid": 326613, "object": "user", "pfp_url": "https://i.imgur.com/h650qeS.jpg", "profile": {"bio": {"text": "Enjoy 🎩", "mentioned_profiles": []}}, "username": "mosix2023", "power_badge": false, "display_name": "Mosix2023🎩🍖🔵🔮", "active_status": "inactive", "verifications": ["0x14e9fa47944d0eb2ab041d37d821fd3548f0bf5c"], "follower_count": 1865, "custody_address": "0x422688316e0e1f26d21f7f8cb788d98613cc0932", "following_count": 2193, "verified_addresses": {"eth_addresses": ["0x14e9fa47944d0eb2ab041d37d821fd3548f0bf5c"], "sol_addresses": ["DLVnFYaL8hhaNRb8AZgAFfw8G5LL5jY7X9qnSf1hdELx"]}}', '{"{\"url\":\"https://on.soundcloud.com/mthqopEcJTX2vk9t8\"}"}', NULL), - (497506, '0x1e0370a1234d84680eaa78c3e609ef071a157cf7', 0, 1, '2024-05-06 07:57:05+00', 0, 0, '{"fid": 456556, "object": "user", "pfp_url": "https://i.imgur.com/f9Vbrmq.jpg", "profile": {"bio": {"text": "Designer - Photographer - Artist - Crypto follower\\📷🎨", "mentioned_profiles": []}}, "username": "saamy", "power_badge": false, "display_name": "SaaM🌊", "active_status": "inactive", "verifications": ["0xe7f2d54b2fe055b87c8d262e1eaa4305315ee166"], "follower_count": 485, "custody_address": "0x87912a59512ded96d500d898e759927acf1f03df", "following_count": 451, "verified_addresses": {"eth_addresses": ["0xe7f2d54b2fe055b87c8d262e1eaa4305315ee166"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dQwKT\"}"}', NULL), - (310227, '0x676111e290f4c65ccb8b98f203b65bc2cefc81eb', 0, 1, '2024-05-05 21:00:36+00', 0, 2, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/mehrdadasemani/jonoobiha-1?ref=clipboard&p=a&c=0&si=8f5495c5a5604de1b7459af62e65ccbc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (310237, '0x79b5dce953856085e68d175f9638728c7a00b685', 0, 1, '2024-05-05 21:00:15+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/morteza-sc/khaloo-khaloo-1?ref=clipboard&p=a&c=0&si=eeba1cbf810d4ff7a58029c01e668747&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (360948, '0x14bc95862bd5e163e9bd70a44d939750713a32cd', 0, 1, '2024-05-06 02:20:01+00', 0, 1, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 103, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 187, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Yitj2vXiTsQ4iijE8\"}"}', NULL), - (329952, '0x6c49032f6ab384d6a2ba4269fadd9fb9783c9f5b', 0, 1, '2024-05-05 22:35:56+00', 0, 1, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3161, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-167787390/the-weeknd-blinding-lights?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (519686, '0xcce053d2dfac6f1af46021c4b83ad4fd6eebae72', 0, 1, '2024-05-06 08:58:33+00', 0, 10, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1951, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2424, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vKvCH\"}"}', 'sonata'), - (364192, '0xf0014c7ec6f992ec2bb893b983b6a494941e7b15', 0, 1, '2024-05-06 02:45:36+00', 0, 1, '{"fid": 500524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8dfd467-cfa4-4c54-2177-354ec2f15700/rectcrop3", "profile": {"bio": {"text": "Hi my name is chloejin", "mentioned_profiles": []}}, "username": "choichoisla", "power_badge": false, "display_name": "Chloejin", "active_status": "inactive", "verifications": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "follower_count": 46, "custody_address": "0xef3be36580a61c8b605f27a5ebbb2a97031a6208", "following_count": 44, "verified_addresses": {"eth_addresses": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5MG1bzXgFqJQpSAy7\"}"}', 'sonata'), - (164264, '0xd0e34df4aee593c410acddf0c28e47997e835243', 1000, 1, '2024-05-05 09:57:35+00', 10, 15, '{"fid": 357078, "object": "user", "pfp_url": "https://i.imgur.com/434kgXf.jpg", "profile": {"bio": {"text": "I Love your Soul ", "mentioned_profiles": []}}, "username": "masouddeldar", "power_badge": false, "display_name": "((M_SpeciaL))🍖🎩🔮🔵", "active_status": "inactive", "verifications": ["0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4"], "follower_count": 1031, "custody_address": "0x2d6a2747097e50ed88e751073de5deba24849caf", "following_count": 1721, "verified_addresses": {"eth_addresses": ["0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4"], "sol_addresses": ["BCKB1ns8GptJwAuyxdkmC7StUktD8FcVb2Qgt4T24PzV"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you\"}"}', NULL), - (360722, '0x84d709ab9238a83825fac6b6046c67105b8401d9', 0, 1, '2024-05-06 02:19:09+00', 0, 1, '{"fid": 430244, "object": "user", "pfp_url": "https://i.imgur.com/n6OmbOO.jpg", "profile": {"bio": {"text": "/Programmer\n/Miner\n/Trader\n/Industrial_engineer\n\n⚫️", "mentioned_profiles": []}}, "username": "hu3ein", "power_badge": false, "display_name": "Hussein🎩", "active_status": "inactive", "verifications": ["0x91e6e15765007fb8538eb5ccc90c2c85d79c5591"], "follower_count": 2077, "custody_address": "0x6b0a33edeeb69ed8044d510da1f7f2fa885bc45b", "following_count": 1637, "verified_addresses": {"eth_addresses": ["0x91e6e15765007fb8538eb5ccc90c2c85d79c5591"], "sol_addresses": ["9UTfcdB4BA1GfYxWD6T8FpRzC9iso8g4dK8hKeyfFsTM"]}}', '{"{\"url\":\"https://on.soundcloud.com/hdeddwb5GpxyGmnr7\"}"}', NULL), - (342270, '0xec495e6ef70d3b6dea6ba9fd050c40caa4d8b8b8', 0, 1, '2024-05-05 23:59:50+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 691, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2qWum\"}"}', 'sonata'), - (350539, '0x2f963c6ea4acb6f2f9a08c8e9666a47ae1360ee8', 0, 1, '2024-05-06 01:04:29+00', 0, 1, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/official?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (348591, '0x0c8bb8d6e5acea61339fdfd189a8459c4f23d056', 0, 1, '2024-05-06 00:49:34+00', 0, 1, '{"fid": 378416, "object": "user", "pfp_url": "https://arweave.net/m84NL03kUMq2EjhKdu6k5yZW-hvdgSL7YkY1wpRpKo8/", "profile": {"bio": {"text": "Medic\nI like warpcast ", "mentioned_profiles": []}}, "username": "amin-phantom", "power_badge": false, "display_name": "Amin 🔄🎩👽🍕", "active_status": "inactive", "verifications": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "follower_count": 1242, "custody_address": "0xbd1ca5951b4cdec1522e3b9a21d2d848d0fc6628", "following_count": 1359, "verified_addresses": {"eth_addresses": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "sol_addresses": ["DWgaBv9RhLQyboeEN1UkPebDz8i7Lz9rtDJADF84bYEC"]}}', '{"{\"url\":\"https://on.soundcloud.com/qJVyhcep5HsiMs3Z7\"}"}', NULL), - (350548, '0x449787cd3a45c25dfeceeb30cc78abfbdf0fac8a', 0, 1, '2024-05-06 01:04:07+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/sets/relax-world-2012?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (606811, '0x3416910bd691eef281b7a95eb3f6e12963aef404', 0, 1, '2024-05-06 12:51:53+00', 0, 2, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 113, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 187, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RZLXc5LXj3BEmhcG7\"}"}', NULL), - (352141, '0x29c5f982e0cb0921963174de8f06c5f7d60a5118', 0, 1, '2024-05-06 01:16:29+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-slime-you-out-feat-sza?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (368017, '0xb63e6f44ee28e7160a7aa367481924e32d941c46', 0, 1, '2024-05-06 03:10:03+00', 0, 0, '{"fid": 506804, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7186eb59-e24f-494a-4203-d6c5637b7a00/rectcrop3", "profile": {"bio": {"text": "orosiku! taku", "mentioned_profiles": []}}, "username": "!506804", "power_badge": false, "display_name": "takusang", "active_status": "inactive", "verifications": ["0x9683aa73c2da0a2ff49eac372ca2b9e38f1e0b58"], "follower_count": 86, "custody_address": "0xdfe11c5129b65f9639e243687b908a2464e15c7d", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x9683aa73c2da0a2ff49eac372ca2b9e38f1e0b58"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Um8zXEdMBPND1svU6\"}"}', 'vtubers'), - (352142, '0x775e057ab1ea587e22d4acce4788d78b4342cb2d', 0, 1, '2024-05-06 01:16:20+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-knife-talk-feat-21?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329959, '0x8c4d169af233fe63e2dbaf3c0fee7f3e1fbc8fc3', 0, 1, '2024-05-05 22:35:35+00', 0, 7, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 726, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 771, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aikupabbo/younha-umbrella\"}"}', NULL), - (351078, '0x2a40d2345a9ad36c4bcdbff4ce9e9eda61f69835', 0, 1, '2024-05-06 01:06:45+00', 0, 0, '{"fid": 424518, "object": "user", "pfp_url": "https://i.imgur.com/fHAcZme.jpg", "profile": {"bio": {"text": "반말 못하는사람.", "mentioned_profiles": []}}, "username": "yso", "power_badge": false, "display_name": "Goodm", "active_status": "inactive", "verifications": ["0x12311ae0c2b1c9e4c0aba2ff210ebf15f1f5528a"], "follower_count": 757, "custody_address": "0xf6479cd4b2290ed21e3ac82d549291f9bd590543", "following_count": 649, "verified_addresses": {"eth_addresses": ["0x12311ae0c2b1c9e4c0aba2ff210ebf15f1f5528a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/weepikedia/blackheart\"}"}', NULL), - (348592, '0x5a3e3803bc09407ccc06036bfe1f65b8f708f838', 0, 1, '2024-05-06 00:49:07+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hanangobran1/sets/la-la-land-soundtracks?si=662cc8b821d24393a290feb4b1036320&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (342272, '0x8ed24a6445342e156a3a86974a8090a9dac705ae', 0, 1, '2024-05-05 23:59:02+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 691, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FgJvj\"}"}', 'sonata'), - (348596, '0x1da05528da3d9eb6f4b61009919738a3a015c315', 0, 1, '2024-05-06 00:48:30+00', 0, 1, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 801, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 890, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AyqsafCsWhna95obA\"}"}', 'sonata'), - (352240, '0xfce2cc1268355b2acca5a86a95f45300782b2cf9', 0, 1, '2024-05-06 01:19:55+00', 0, 0, '{"fid": 501170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79f99602-1ea7-4532-b2e2-8cb67fbb2100/rectcrop3", "profile": {"bio": {"text": "마이_네임_이즈_준키\n#위스키 #맛집마스터 \n\n#디젠 #코인 #크립토 #잼 #crypto #meme #coin #tip #f4f", "mentioned_profiles": []}}, "username": "emsei", "power_badge": false, "display_name": "jun-key", "active_status": "inactive", "verifications": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "follower_count": 1160, "custody_address": "0x611af52170215e3d3dc4fc8443de600aff2ef9e1", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WqqwvXeFnaCxnTSd7\"}"}', NULL), - (313443, '0x9a10e12fd2f6dd43f6f1fad700da4272bad38306', 0, 1, '2024-05-05 21:11:20+00', 0, 7, '{"fid": 376576, "object": "user", "pfp_url": "https://i.imgur.com/UUj84vr.jpg", "profile": {"bio": {"text": "Expensive life passes faster than running water🖤", "mentioned_profiles": []}}, "username": "hodab", "power_badge": false, "display_name": "Hodab 🎩🍗❤ $DEGEN ", "active_status": "inactive", "verifications": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "follower_count": 792, "custody_address": "0x7af5fc8120cbb7cd825c9c00b6d3a6175648bf71", "following_count": 1473, "verified_addresses": {"eth_addresses": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bg8zfLF4Cesnc3vD6\"}"}', NULL), - (310865, '0x6abecc5eb1625181de091c714138fa0c0dfaa5ea', 0, 1, '2024-05-05 21:01:37+00', 0, 1, '{"fid": 412041, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1bc0697-5953-4ed9-3889-cdad1ea65500/original", "profile": {"bio": {"text": "Sleep on money 💰", "mentioned_profiles": []}}, "username": "cryptoejlali", "power_badge": false, "display_name": "amin ejlali 🍖🎩💊", "active_status": "inactive", "verifications": ["0x16714d178e545af41e8161422606e5e87d322aae"], "follower_count": 500, "custody_address": "0x25174283635a2d6a6f9a5f3d7d53a574fd413460", "following_count": 503, "verified_addresses": {"eth_addresses": ["0x16714d178e545af41e8161422606e5e87d322aae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lil-baby-4pf/low-down?ref=clipboard&p=a&c=0&si=c12d80069f0c4b5698ca8df5468e998d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (310228, '0x49503e1038e14bf0ba887731608366c1912fce99', 0, 1, '2024-05-05 21:00:00+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"Listen to Shahab Tiam - Manoto by IranProud.com on #SoundCloud https://soundcloud.com/iranproud-com/shahab-tiam-manoto?ref=clipboard&p=a&c=0&si=f4434d3443ce4fe6a7c7b57c219bc959&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (342616, '0x7553720ca76de83205bd5a928c4490ef18630e13', 0, 1, '2024-05-06 00:00:34+00', 0, 1, '{"fid": 507797, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ea2a2ac-aab7-4b3c-e917-f87e40e5c600/rectcrop3", "profile": {"bio": {"text": "Maybe a crypto lover?\nA little bit of Sport and Cars\nAnd huge fan of music", "mentioned_profiles": []}}, "username": "!507797", "power_badge": false, "display_name": "Poyan🍖🎩", "active_status": "inactive", "verifications": ["0x22ea4731864645fa33be4af06bc0cd6bc942adc6"], "follower_count": 136, "custody_address": "0x22ea4731864645fa33be4af06bc0cd6bc942adc6", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x22ea4731864645fa33be4af06bc0cd6bc942adc6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rockclassichitsallstars/hotel-california-3?si=e754618829be44dd82a240697071c712&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329961, '0xdbdc763e4f2399d9cdab404037d8d19941de46c7', 0, 1, '2024-05-05 22:35:14+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3161, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamlabmusic/hello?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (310862, '0x2a0457476789b1ccfdaa3af7a0b3d76246c97821', 0, 1, '2024-05-05 21:01:29+00', 0, 14, '{"fid": 466583, "object": "user", "pfp_url": "https://i.imgur.com/aup5rue.jpg", "profile": {"bio": {"text": "Backpacker, traveler, digital nomad.", "mentioned_profiles": []}}, "username": "eltalitali", "power_badge": false, "display_name": "Dib Gamal", "active_status": "inactive", "verifications": ["0x9440c6dace67b3e62a481b5241daf30c36cd8c9c"], "follower_count": 209, "custody_address": "0x4a286c07b6682f5288a49030f5a586117f2d1cd7", "following_count": 366, "verified_addresses": {"eth_addresses": ["0x9440c6dace67b3e62a481b5241daf30c36cd8c9c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2d25bcPROv24B2O5251IEA?si=lMWqa0xvSpe05yHfo2Tp4w\"}"}', 'vuelapelucas'), - (205573, '0xdc99cacd10d1a83e3e212371032a6b5d37116b8d', 0, 1, '2024-05-05 12:47:34+00', 0, 1, '{"fid": 500809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7861217-86ed-41d0-359e-391353cd6700/original", "profile": {"bio": {"text": "I love kpop", "mentioned_profiles": []}}, "username": "melon99", "power_badge": false, "display_name": "melon99", "active_status": "inactive", "verifications": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "follower_count": 861, "custody_address": "0xf0a460f01a1c2a8174d399bd3e423eeb8e9701b3", "following_count": 836, "verified_addresses": {"eth_addresses": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Q4HyLehVyOruIJ1bYA3LV\"}"}', 'sonata'), - (330337, '0x54885ff3560a06e96b58ba80bfa60db1d7f130a0', 0, 1, '2024-05-05 22:40:01+00', 0, 0, '{"fid": 436819, "object": "user", "pfp_url": "https://2jukrz4coow5njxjuld44cc6skw5bdusjzhcw2f3qzp3tnlppajq.arweave.net/0mio54Jzrdam6aLHzghekq3QjpJOTitou4ZfubVveBM/", "profile": {"bio": {"text": "Interested in the decentralized and Blockchain world\nClimber\nNature Lover\n\n", "mentioned_profiles": []}}, "username": "0xariantq", "power_badge": false, "display_name": "0xAriantq 🔄 🎩", "active_status": "inactive", "verifications": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "follower_count": 691, "custody_address": "0x2b237b7c0bdd2ea29b2a55388f9d0279e9c39d2f", "following_count": 820, "verified_addresses": {"eth_addresses": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GSTCsjW6bnid77rh9\"}"}', NULL), - (309443, '0x20387bee613408a4965786572477e2f143eb31e2', 0, 1, '2024-05-05 20:57:42+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/pooriaputak/putak-x-hiphopologist-trackamun-mishe-release-boy?ref=clipboard&p=a&c=0&si=b0ef197920df459e98a8fb93cd395005&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (428372, '0x2f8ebe6a85f262786ef00e8aa7fbbdeae1825067', 0, 1, '2024-05-06 06:08:22+00', 0, 2, '{"fid": 461708, "object": "user", "pfp_url": "https://i.imgur.com/PMNEpX4.jpg", "profile": {"bio": {"text": "Multidiscip. Artist|\nMusic Producer| Award-Winning Score Composer & Sound Designer|\nIndustrial Designer| Digital Artist| AI Researcher\n\nLinktr.ee/Matthewbian", "mentioned_profiles": []}}, "username": "matthewbian", "power_badge": false, "display_name": "Matthewbian 🎩", "active_status": "inactive", "verifications": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "follower_count": 242, "custody_address": "0x2ff473b3634c370c3981b3decbdb6401461da94c", "following_count": 606, "verified_addresses": {"eth_addresses": ["0xc0d8b12f63e032e66693593549f571dec6f21267"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f26d2ef-6334-4c9e-a211-6abd54f71c00/original\"}","{\"url\":\"https://on.soundcloud.com/TbMo1\"}"}', 'replyguys'), - (784659, '0x7d7ad6d14ecabca81bca70dbefbe1635d953daa6', 0, 1, '2024-05-07 02:14:01+00', 0, 0, '{"fid": 393810, "object": "user", "pfp_url": "https://i.imgur.com/epjlbCM.jpg", "profile": {"bio": {"text": "hi.I''m pal🫶\n", "mentioned_profiles": []}}, "username": "palchemist", "power_badge": false, "display_name": "palchemist", "active_status": "inactive", "verifications": ["0x6628f3161b306cf3e74ead4766a32120e8a2f79e"], "follower_count": 504, "custody_address": "0x7fd51e5e54954e58a0b1926b9df7cc1ac5045aa6", "following_count": 689, "verified_addresses": {"eth_addresses": ["0x6628f3161b306cf3e74ead4766a32120e8a2f79e"], "sol_addresses": ["6yAn7FKWeicC9UDDyP3CZbSs1s1a5T7jYSdg5DW4d7Zc"]}}', '{"{\"url\":\"https://on.soundcloud.com/HJTet9RaXYjxUDYY9\"}"}', 'musicjp'), - (312341, '0x2bea0fee5ac589063f3d4fc0ec78a40155d829ae', 0, 1, '2024-05-05 21:05:16+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/roadrunner-usa/iydkmigthtky-gimme-that?ref=clipboard&p=a&c=0&si=014d41075e384a308bbe681a6b759162&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352139, '0x4521976156e8d68102b9e4dda74dfb1f6f014cf9', 0, 1, '2024-05-06 01:15:55+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-virginia-beach?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (348597, '0x8636fcf9dbcc85427f1432eda566188eb15f955c', 0, 1, '2024-05-06 00:49:32+00', 0, 0, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2378, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1610, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/L59oyb4kjovjcxaw8\"}"}', 'sonata'), - (312345, '0x9e52e8cb49a2c8f6ff1de92ba9f8826dd1a572d7', 0, 1, '2024-05-05 21:05:51+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/marianomellino/mariano-mellino-pres-audioholics-episode-65-live-at-club-paraguay-by-dahaus-cordoba?ref=clipboard&p=a&c=0&si=90655cca2601471bafde1d5c0ddc50a1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312460, '0xb28719782b72da231362ab78e1fc19dd0297727e', 0, 1, '2024-05-05 21:06:55+00', 0, 14, '{"fid": 404627, "object": "user", "pfp_url": "https://i.imgur.com/NNBEBuT.jpg", "profile": {"bio": {"text": "The world is more beautiful with love for each other", "mentioned_profiles": []}}, "username": "ali4440110", "power_badge": false, "display_name": "Alish🍖🎩🔵", "active_status": "inactive", "verifications": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "follower_count": 1431, "custody_address": "0xfc0bc6207090d439dcba7418d10fa4a31af2eae9", "following_count": 386, "verified_addresses": {"eth_addresses": ["0xbffd807ade6cec5e9e3aac578b30be315a044462"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4y3QBJf9E8yDJCEFbRK8xk\"}"}', NULL), - (352138, '0x4554ecb8970d102335418abe3b64e72e01d8bcad', 0, 1, '2024-05-06 01:16:04+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-first-person-shooter?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (330796, '0xd8899123adb0383007d9fe940df776adb87c9996', 0, 1, '2024-05-05 22:43:06+00', 0, 0, '{"fid": 415013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5865b6e2-fe88-420c-ad1b-f101b2ae6a00/rectcrop3", "profile": {"bio": {"text": "Never withhold anything from your kind. The best things happen when we help each other", "mentioned_profiles": []}}, "username": "hassan6590", "power_badge": false, "display_name": "hassan6590🌀🎭", "active_status": "inactive", "verifications": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "follower_count": 1025, "custody_address": "0x796338e1a997eedaae5f918d4a6c32171965f374", "following_count": 1378, "verified_addresses": {"eth_addresses": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Willing To Let You Go Ft. Anella Herim & Abby Anderson by Diplo on #SoundCloud https://on.soundcloud.com/feCFs\"}"}', NULL), - (351208, '0x77ee98544463b4ba5c3239701e268b528b0b48aa', 0, 1, '2024-05-06 01:07:19+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/lost-cause?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (348594, '0x3042f069e6a315c83c34bdb81659ed05d6190638', 0, 1, '2024-05-06 00:49:59+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/erzaparamitha/city-of-star-la-la-land-ryan-gosling-emma-stone-cover?si=d4212ab5c7a148adb8c1b044702f1528&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (343035, '0x0671dccb1f6a4af105c8adbb5c7af751ce099eae', 0, 1, '2024-05-06 00:04:18+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 691, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/se7io\"}"}', 'sonata'), - (451620, '0xb5379afd4aef4c7699555802a631e84b69ec2220', 0, 1, '2024-05-06 06:47:23+00', 0, 0, '{"fid": 510718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/410ae284-d695-45d3-73d3-51b2e5f83d00/rectcrop3", "profile": {"bio": {"text": "Hi :) \nLet’s share our interests", "mentioned_profiles": []}}, "username": "!510718", "power_badge": false, "display_name": "Pancake3000", "active_status": "inactive", "verifications": ["0xb283e349a9f50db67ab5fd9617535781684aca14"], "follower_count": 73, "custody_address": "0xce5af24b93ca9a0a07a055052eadebe3d4ccd749", "following_count": 136, "verified_addresses": {"eth_addresses": ["0xb283e349a9f50db67ab5fd9617535781684aca14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rockclassichitsallstars/american-pie-3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (351267, '0x814e706f3ad13020786318b3f0e8e55964622c97', 0, 1, '2024-05-06 01:07:39+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/therefore-i-am?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351265, '0x56ca2f35d0a655d0060042a175de2bd9f2bb7f5a', 0, 1, '2024-05-06 01:07:48+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/what-was-i-made-for-from-the?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351255, '0x08cd793ce351c57c1d775eb4e79db3638a624eb4', 0, 1, '2024-05-06 01:07:28+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/your-power?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351423, '0xc589b51dc6d58d05b4f5f1c285beac90233fdd62', 0, 1, '2024-05-06 01:09:00+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/oxytocin?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (342784, '0xdfef282841da8f1383d5bcba427d243d87dd5006', 0, 1, '2024-05-06 00:01:46+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3162, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2683, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oPF38F4f21cMstVK6\"}"}', NULL), - (330802, '0xb5ec71f002304b0e14dc11eb589789d0b356748e', 0, 1, '2024-05-05 22:42:29+00', 0, 4, '{"fid": 415013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5865b6e2-fe88-420c-ad1b-f101b2ae6a00/rectcrop3", "profile": {"bio": {"text": "Never withhold anything from your kind. The best things happen when we help each other", "mentioned_profiles": []}}, "username": "hassan6590", "power_badge": false, "display_name": "hassan6590🌀🎭", "active_status": "inactive", "verifications": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "follower_count": 1025, "custody_address": "0x796338e1a997eedaae5f918d4a6c32171965f374", "following_count": 1378, "verified_addresses": {"eth_addresses": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Willing To Let You Go Ft. Anella Herim & Abby Anderson by Diplo on #SoundCloud https://on.soundcloud.com/feCFs\"}"}', NULL), - (313594, '0x9cc60851e369604d17c0bde53abb9d71e11f9f23', 0, 1, '2024-05-05 21:13:20+00', 0, 6, '{"fid": 502810, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5b67551-bafe-42bd-800e-ca130fb9c600/rectcrop3", "profile": {"bio": {"text": "QA | Software development | Gym", "mentioned_profiles": []}}, "username": "senjor", "power_badge": false, "display_name": "Sandis", "active_status": "inactive", "verifications": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "follower_count": 6, "custody_address": "0x066286d3a7a6e3eb6ebb16cd6dffe99031234640", "following_count": 77, "verified_addresses": {"eth_addresses": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p3wKjkP8U4PghpuR7\"}"}', NULL), - (348904, '0xff1a6b3ddc1c3f8bb165622ccfce45a0f5d9bb01', 0, 1, '2024-05-06 00:54:04+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/speed-verse-590807514/pastel-ghost-iris-x-the-batman?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (282819, '0x6001579107fbf596de1dab195da3fb77e99154d8', 0, 1, '2024-05-05 18:14:15+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d98d4364-a0ed-4eda-d22d-7381603d2f00/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 499, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4o6BgsqLIBViaGVbx5rbRk?si=snn_lC4pQ1ilsUo54_q5hw&context=spotify%3Aplaylist%3A37i9dQZF1E8AquBCzn5yn3\"}","{\"url\":\"https://open.spotify.com/track/0GO8y8jQk1PkHzS31d699N?si=9asSAL5vRfOBGR3NFaFoqQ&context=spotify%3Aplaylist%3A37i9dQZF1E8AquBCzn5yn3\"}"}', NULL), - (341559, '0x8a2992c47df420deaa6e15ab4aeee377a355b353', 0, 1, '2024-05-05 23:55:27+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 691, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2hye7\"}"}', 'sonata'), - (554795, '0xdb652687fdf23af3bbe27eb94798f09d9041ef67', 0, 1, '2024-05-06 10:39:43+00', 0, 9, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1699, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2943, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mFkuZ\"}"}', 'sonata'), - (312607, '0x3c6ffa885ce6a4d4e9dbde7bf18946977d70f088', 0, 1, '2024-05-05 21:08:04+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/damianmarley/medication?ref=clipboard&p=a&c=0&si=73e19a8a66f34fd194aa73c1f8bc325e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312462, '0x6ba8745ab983a9c70699c78fe1bcee4716efd8f8', 0, 1, '2024-05-05 21:06:48+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/timelessmoment/mariano-mellino-john-cosani-2?ref=clipboard&p=a&c=0&si=6dd6a8cd57f4425f895cbf908430fdde&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329954, '0x0355627cc58e65125ea0d2fcb789d16e4f05aff5', 0, 1, '2024-05-05 22:36:52+00', 0, 3, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3162, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2683, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ho-jae-kang/set-it-all-free-scarlett-johansson-lyrics-on-subtitles-to-view-lyrics?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312594, '0x67eb03d82f64dedfcf0cda89d93aab12ebc28298', 0, 1, '2024-05-05 21:08:29+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/damianmarley/reach-home-safe?ref=clipboard&p=a&c=0&si=57e8b65d07c74807bb7e3090ea99cdaf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312596, '0x4e56bef04fc5a44088f54a518cc6e7bda1456772', 0, 1, '2024-05-05 21:07:51+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/damianmarley/distant-relatives-patience?ref=clipboard&p=a&c=0&si=e67e87a4bcb24386aa7c2ec748b644c6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312599, '0xf9b21196d726bebfb82f8a8ea1478f89eb0436f2', 0, 1, '2024-05-05 21:08:17+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/damianmarley/reach-home-safe?ref=clipboard&p=a&c=0&si=57e8b65d07c74807bb7e3090ea99cdaf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312343, '0x83af0178cf7e882f382dd1e09db77d31f960b97f', 0, 1, '2024-05-05 21:04:40+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"Listen to Slipknot - Custer by Roadrunner USA on #SoundCloud https://soundcloud.com/roadrunner-usa/slipknot-custer-1?ref=clipboard&p=a&c=0&si=62b2c70cf33a45e29576b5595c157f29&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312752, '0x594c4e0cffa9a2c4bbefa857d4864b3802918cea', 0, 1, '2024-05-05 21:08:41+00', 0, 2, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/dynamicduo_29/augustus-pablo-special-flip?ref=clipboard&p=a&c=0&si=57a436c761034bc88796dd5d5b87ab95&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (312751, '0xdda538585ee9f615e30532ca71c749ef9375458d', 0, 1, '2024-05-05 21:09:36+00', 0, 2, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/tay-k47/murder-she-wrote-livinglikelarry?ref=clipboard&p=a&c=0&si=fb0f0cebe80e4b2eb44f430b3ff0debe&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329953, '0xf90789d76588938b7a1ba70956e3b22891fb59fb', 0, 1, '2024-05-05 22:36:31+00', 0, 2, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3162, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2683, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kiritotheslayer-12/silver-wham-bam-shang-a-lang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (343055, '0x9935492e999e27fc8161a65e7b20413f01b4a063', 0, 1, '2024-05-06 00:04:06+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3162, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2683, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mCi18eg2owCQcZiy9\"}"}', 'sonata'), - (349105, '0x56aa8c3774c1a5e0b136e2a921c4f12534d7683d', 0, 1, '2024-05-06 00:56:12+00', 0, 0, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2378, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1610, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JE2tGkZtj9JqmUcu5\"}"}', 'sonata'), - (343667, '0x1e3155d2552f87a065e24ee811818631502f4898', 0, 1, '2024-05-06 00:06:06+00', 0, 1, '{"fid": 407128, "object": "user", "pfp_url": "https://i.imgur.com/cEarSGQ.jpg", "profile": {"bio": {"text": "MD., Ph.D.\ncrypto, NFT collector \nなんとなく慣れてきました", "mentioned_profiles": []}}, "username": "scrypto3", "power_badge": false, "display_name": "Scrypto🎩🔮🔵🦄", "active_status": "inactive", "verifications": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "follower_count": 651, "custody_address": "0x3dfe27594d0d2d3180dfce17109a282e3018c0df", "following_count": 625, "verified_addresses": {"eth_addresses": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sWiM6DiB9EpKJp8D9\"}"}', NULL), - (360951, '0x7efcb49e6993d1e0db6c990135e1ff8c226ff496', 0, 1, '2024-05-06 02:19:59+00', 0, 0, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2922, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2345, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Z3EeN\"}"}', 'sonata'), - (284838, '0xb6683e736457f3c7a563e0dd64836bf6240dd205', 0, 1, '2024-05-05 18:51:06+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/00Mb3DuaIH1kjrwOku9CGU?si=edf5f018ad5540a2\"}"}', NULL), - (351421, '0xab7f96c2b11c63bec3773e5b5b0352c7d2090943', 0, 1, '2024-05-06 01:09:14+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/halleys-comet?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351322, '0x3e667c06445257ef05297f6076e6b6c977d20660', 0, 1, '2024-05-06 01:08:42+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/happier-than-ever?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352203, '0xa6ad19e3842435e99b2299d3826a6e74fa386905', 0, 1, '2024-05-06 01:17:21+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/blocboy-jb-look-alive-ft-drake?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (555640, '0x71f044762965b170c5cb2ec29b72952d611fb41e', 0, 1, '2024-05-06 10:42:55+00', 0, 5, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2496, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2szx5DVsLecG8uCF9\"}"}', 'sonata'), - (157273, '0xdd1187d1280d4f448aac5d4f7156738652fa6db2', 0, 1, '2024-05-05 09:24:29+00', 20, 18, '{"fid": 504189, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ed1b4641-5bb2-449d-73b2-b267ab6d6600/rectcrop3", "profile": {"bio": {"text": "I love warpcast & degen ", "mentioned_profiles": []}}, "username": "1pyung", "power_badge": false, "display_name": "south-korea", "active_status": "inactive", "verifications": ["0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4"], "follower_count": 2176, "custody_address": "0x7f2a66208597d64c54c7fd4d72c1e808bac1b481", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/saebyeokk/illit-magnetic\"}"}', NULL), - (343675, '0x4fa03ca849e65eca21555848cb1dd2078d1e5ea7', 0, 1, '2024-05-06 00:06:12+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 691, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cAMWN\"}"}', 'sonata'), - (343672, '0x9979f88d65be0becb7225468ac47f2de2d0a75ad', 0, 1, '2024-05-06 00:06:15+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2641, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3123, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4K2pZ1cokLTKAi6J8\"}"}', NULL), - (348754, '0x2ed17189a5071f8444f7168cb980fe0c3665a076', 0, 1, '2024-05-06 00:53:24+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lex-674104742/the-ghost-speed-up-trevor-something?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (348903, '0x6af1b7d51d60c6aad220942803bd6770fdaf3d21', 0, 1, '2024-05-06 00:54:37+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/wearehume/the-otherside-ab?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351323, '0x436d638cded910cb8276e826a287ab27bdee2d4c', 0, 1, '2024-05-06 01:08:28+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/tv?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352200, '0x8f47a08dfa86fe9a3641bc36b895fb1013479ce5', 0, 1, '2024-05-06 01:17:37+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-chicago-freestyle?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173282, '0x0e815051b42cb97750291274178c9e2c57e03581', 1000, 1, '2024-05-15 17:28:23+00', 0, 1, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 301, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 334, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JW7g8BshgtKgQzgP6\"}"}', NULL), - (312461, '0x9b65f64263046875bc4531d70cab01eeb7124bfe', 0, 1, '2024-05-05 21:06:04+00', 0, 1, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/marianomellino/mariano-mellino-pres-audioholics-episode-67-live-at-mandarine-park-w-eric-prydz-2?ref=clipboard&p=a&c=0&si=3e1ffb23cabd45609956748bc7ced0b6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (56548, '0xd5baad91afadbd977c63db3a6bdad70f20fc6bcb', 0, 1, '2024-05-04 23:11:00+00', 0, 0, '{"fid": 241141, "object": "user", "pfp_url": "https://i.imgur.com/8srSBoW.jpg", "profile": {"bio": {"text": "Learning every day\n\n🇦🇷 ⭐️⭐️⭐️\n ", "mentioned_profiles": []}}, "username": "argentina", "power_badge": false, "display_name": "Rocky 🇦🇷🎩🔵", "active_status": "inactive", "verifications": ["0xba86e23e64828781a43b71647cc2d2a32bfe8890", "0x1d6197b012be1bee9b6d36865c97c2a38f4d90fb"], "follower_count": 432, "custody_address": "0x90fc410c40aa269860e3efebddbc4c94a39d2312", "following_count": 239, "verified_addresses": {"eth_addresses": ["0xba86e23e64828781a43b71647cc2d2a32bfe8890", "0x1d6197b012be1bee9b6d36865c97c2a38f4d90fb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4iYD0EHN5EmCh75tsXZCoS\"}"}', NULL), - (313164, '0x823b012fbeed5af93be5d532bbe2b51a01fbaa9f', 0, 1, '2024-05-05 21:09:42+00', 0, 0, '{"fid": 445305, "object": "user", "pfp_url": "https://i.imgur.com/iGJ0lgN.jpg", "profile": {"bio": {"text": "Art", "mentioned_profiles": []}}, "username": "mohsnm", "power_badge": false, "display_name": "Saeed", "active_status": "inactive", "verifications": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "follower_count": 548, "custody_address": "0x8af9a4006b2977a85235aec844331fcc4b11db4f", "following_count": 1162, "verified_addresses": {"eth_addresses": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/sinabathaie/seven-ponds-live\"}"}', NULL), - (44704, '0x32416eac8fb528723bded34cc8e679c8bf85b100', 0, 1, '2024-05-04 22:35:44+00', 0, 1, '{"fid": 17582, "object": "user", "pfp_url": "https://i.imgur.com/2m6Z9ab.gif", "profile": {"bio": {"text": "FC OG FID 17582, 🙌 art supporter with >470k $degen tipped | Also web3 & ZK investor, VC & tech podcast host, self-proclaimed digital artist (Rapha.Elgrie.co)", "mentioned_profiles": []}}, "username": "rphgrc.eth", "power_badge": true, "display_name": "RAPH GRIΞCO ↑🔵", "active_status": "inactive", "verifications": ["0xd48ba19c4d8ae08fc189273b52b696931b271e53", "0xdaac0bb7ffb7d9fc06ff2cd4fb813f46157b7481", "0x915c51a7a0399662e63c99e1faf351f668198de8"], "follower_count": 1674, "custody_address": "0xaf9304132708b01aa0c4ff87becf51bdcfc4ba83", "following_count": 997, "verified_addresses": {"eth_addresses": ["0xd48ba19c4d8ae08fc189273b52b696931b271e53", "0xdaac0bb7ffb7d9fc06ff2cd4fb813f46157b7481", "0x915c51a7a0399662e63c99e1faf351f668198de8"], "sol_addresses": ["5s74ej2muAJZCk2thCGeted8ak1Tzj4mZVpbxjgbaeqy"]}}', '{"{\"url\":\"https://open.spotify.com/track/2SHILuOQFaXijRpGGlhIbx?si=sdf4HYW1RquYLmF0vpvtnA\"}"}', NULL), - (566036, '0x2e7d596b9e8f0627bb9c43629f483ac666280005', 0, 1, '2024-05-06 11:17:46+00', 0, 10, '{"fid": 449851, "object": "user", "pfp_url": "https://i.imgur.com/dj1267x.jpg", "profile": {"bio": {"text": "Life is going on,enjoy it\n🧚‍♀️☀️🌊🧘‍♀️\n", "mentioned_profiles": []}}, "username": "baharrp", "power_badge": false, "display_name": "Bahar 🧚‍♀️", "active_status": "inactive", "verifications": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "follower_count": 766, "custody_address": "0x79ac0726a2a7c83c149276836c4900a4c1b9a75a", "following_count": 835, "verified_addresses": {"eth_addresses": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZBpQ2\"}"}', NULL), - (74684, '0x913af763c857f41b7af78ef929a69c9bf9455780', 10, 1, '2024-05-05 00:03:15+00', 0, 11, '{"fid": 500745, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6131816d-a235-420d-5680-065e752fd700/original", "profile": {"bio": {"text": "i love base my AlfaFrens : \nhttps://www.alfafrens.com/channel/0x36cE06783304568b6169a75Ff18A6C821d3717BF", "mentioned_profiles": []}}, "username": "infokk", "power_badge": false, "display_name": "infokk", "active_status": "inactive", "verifications": ["0x88f3dc8062151a93cf43972d9b13826e756a8290"], "follower_count": 1190, "custody_address": "0x6e880a484bcc098ff94e822a3cfd82a372480be1", "following_count": 1395, "verified_addresses": {"eth_addresses": ["0x88f3dc8062151a93cf43972d9b13826e756a8290"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/p0kehyjuizm0/cng2vp4oznay?si=1a7b24031d4c42fa941f5b011862ba30&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (63164, '0x290347d2b9e86bf3cb8037ccd16459eded7733a2', 0, 1, '2024-05-04 23:26:36+00', 0, 5, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/six-feet-under?referral=0x8218224ebb7abf7dbaffdf0fed571b8280d99485&referral_source=link\"}"}', NULL), - (312463, '0x9f3ff075c35d5d2815a5b4955f533052715591f5', 0, 1, '2024-05-05 21:06:31+00', 0, 0, '{"fid": 426977, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d5415a-baed-456f-b5c9-dc985830e400/rectcrop3", "profile": {"bio": {"text": "I am 40 years old", "mentioned_profiles": []}}, "username": "alidad", "power_badge": false, "display_name": "Alidad", "active_status": "inactive", "verifications": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "follower_count": 592, "custody_address": "0x9c2e58167e63bc734a909ebc928d96925feeafb3", "following_count": 748, "verified_addresses": {"eth_addresses": ["0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631", "0x9fbdc759865fcf2695176c5c60f3c0afe4e50dd4"], "sol_addresses": ["73fiJgMUDRQFpoTkAFjxiZhfsSY4rByyMtJsVd16fEJD"]}}', '{"{\"url\":\"https://soundcloud.com/atlantofc/mariano-mellino-folgar-gio-santi-never-enough?ref=clipboard&p=a&c=0&si=53a38aa5182c4a85b69b9abeefda9a16&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (314582, '0x33c70f17975d331716aada30c9f77d5cc646d258', 0, 1, '2024-05-05 21:14:55+00', 0, 4, '{"fid": 412041, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e1bc0697-5953-4ed9-3889-cdad1ea65500/original", "profile": {"bio": {"text": "Sleep on money 💰", "mentioned_profiles": []}}, "username": "cryptoejlali", "power_badge": false, "display_name": "amin ejlali 🍖🎩💊", "active_status": "inactive", "verifications": ["0x16714d178e545af41e8161422606e5e87d322aae"], "follower_count": 500, "custody_address": "0x25174283635a2d6a6f9a5f3d7d53a574fd413460", "following_count": 503, "verified_addresses": {"eth_addresses": ["0x16714d178e545af41e8161422606e5e87d322aae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lil-baby-4pf/low-down?si=c6a80abae0ca42c287924466918ad268&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (52732, '0xa64bcf58a27327505c80f1f1d938ea348550491b', 0, 1, '2024-05-04 23:01:23+00', 0, 0, '{"fid": 268878, "object": "user", "pfp_url": "https://i.imgur.com/g5Bl6JV.jpg", "profile": {"bio": {"text": "onchain music\n\nhttps://drakula.app/user/serboy", "mentioned_profiles": []}}, "username": "serboy", "power_badge": true, "display_name": "serboy", "active_status": "inactive", "verifications": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "follower_count": 140, "custody_address": "0x693d7059bcec34abd383feaf75d3026fa698530c", "following_count": 123, "verified_addresses": {"eth_addresses": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/serboy/crazy\"}"}', NULL), - (44366, '0x67fe8a31da5080ed43f3c433d119d29898089772', 0, 1, '2024-05-04 22:33:26+00', 0, 1, '{"fid": 364854, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/10fa5952-506a-4f52-5e3b-c7ec3d670c00/rectcrop3", "profile": {"bio": {"text": "Capture your every moment in the photo 📸\nFrom the home ,page off the city to the city to abroad📸🇪🇦", "mentioned_profiles": []}}, "username": "bangmessi", "power_badge": false, "display_name": "Wil📸🔵", "active_status": "inactive", "verifications": ["0x4719ab31d9506b71e79cc9ea3441fc4ba20615d7"], "follower_count": 437, "custody_address": "0x4719ab31d9506b71e79cc9ea3441fc4ba20615d7", "following_count": 1392, "verified_addresses": {"eth_addresses": ["0x4719ab31d9506b71e79cc9ea3441fc4ba20615d7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/561jH07mF1jHuk7KlaeF0s?si=XSmaZY4JQfugFi0UIbwsAw\"}"}', NULL), - (313437, '0xc3751ff009a1ccfb7912998f3fd5b997166d68fd', 0, 1, '2024-05-05 21:11:04+00', 0, 0, '{"fid": 416495, "object": "user", "pfp_url": "https://i.imgur.com/dKMZ77m.jpg", "profile": {"bio": {"text": "My name is gangpyolee", "mentioned_profiles": []}}, "username": "gangpyo", "power_badge": false, "display_name": "Leegangpyo", "active_status": "inactive", "verifications": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "follower_count": 492, "custody_address": "0xc51d55d4eae0828062467935aa61d1922f4b5fc2", "following_count": 551, "verified_addresses": {"eth_addresses": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ta2jian-241487429/cjtj98yb42n4?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (361125, '0x0c3683751e341c5f60ea67f2a1df95b85e777813', 0, 1, '2024-05-06 02:20:31+00', 0, 2, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3431, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 4065, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/l2share140/ive-eleven?si=c3069845addb4d78b43a811164046ea2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (63855, '0x75ec3664dad4bd0feb40957ff928936697f758de', 0, 1, '2024-05-04 23:28:04+00', 0, 2, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2922, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=rYeFeUK4R_Wl6f7VLd-7pw\"}"}', NULL), - (784767, '0xce6d16774856ad8f77eea3650b6fe60cf14997d9', 0, 1, '2024-05-07 02:16:27+00', 0, 2, '{"fid": 394933, "object": "user", "pfp_url": "https://i.imgur.com/XbIlInS.jpg", "profile": {"bio": {"text": "🍓🍖🔵🎩\nInterested in something beautiful🩶", "mentioned_profiles": []}}, "username": "greytokki", "power_badge": false, "display_name": "tokki🔵🎩", "active_status": "inactive", "verifications": ["0x3533980938df81199e8cb46e108ba6d680314b63"], "follower_count": 636, "custody_address": "0x2295654f5b75b4b048bf75e18a05335f6be564a7", "following_count": 659, "verified_addresses": {"eth_addresses": ["0x3533980938df81199e8cb46e108ba6d680314b63"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ioPYCUwDGZzgDHan6\"}"}', NULL), - (366458, '0x8b89e73e7a42d5aa5da72a24b721d6cd34482e8b', 0, 1, '2024-05-06 03:01:34+00', 0, 3, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QHGM5UpyBEvMLhSz9\"}"}', NULL), - (343673, '0x2a4e985a8945f889451dac0f184f5d6feb47d9db', 0, 1, '2024-05-06 00:06:55+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 693, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KUMHB\"}"}', 'sonata'), - (317581, '0xb009efb2e35970772da59f8a14b7ddf242314fea', 0, 1, '2024-05-05 21:28:21+00', 0, 4, '{"fid": 514643, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e32fe1dc-9923-46c5-0d1a-e04536e29700/rectcrop3", "profile": {"bio": {"text": "Architect to be👷🏻‍♀️\nIntrested in Movies/Books/Music", "mentioned_profiles": []}}, "username": "!514643", "power_badge": false, "display_name": "Parmida", "active_status": "inactive", "verifications": ["0x60b571151983ad63d93b1f4e1064039e0c5019f9"], "follower_count": 119, "custody_address": "0xc137cb8a0d49bc395f0fbc79cb836c6ae9882165", "following_count": 180, "verified_addresses": {"eth_addresses": ["0x60b571151983ad63d93b1f4e1064039e0c5019f9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/blackmountainofficial/space-to-bakersfield\"}"}', NULL), - (71528, '0xebae6e1d040c5f99bc1c5cd285971ee10629a24d', 0, 1, '2024-05-04 23:51:29+00', 0, 0, '{"fid": 428335, "object": "user", "pfp_url": "https://i.imgur.com/cf6TNCO.jpg", "profile": {"bio": {"text": "Digital painter - Illustrator - Muralist - Droid enthusiast\n\n⚡️Curse these metal hands ⚡️", "mentioned_profiles": []}}, "username": "pablo5k", "power_badge": false, "display_name": "Pablo 5k🎩🍖", "active_status": "inactive", "verifications": ["0xa46468b3d736e42184577660b0c1a50d4f03e599"], "follower_count": 135, "custody_address": "0x323b5022bd6abd07912a6e79f22ce659957ad571", "following_count": 243, "verified_addresses": {"eth_addresses": ["0xa46468b3d736e42184577660b0c1a50d4f03e599"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/05bEYe8Y39w4bVwXLnMdqn?si=MRVxGA2YToaepwrDS09bKw&context=spotify%3Atrack%3A05bEYe8Y39w4bVwXLnMdqn\"}"}', NULL), - (258860, '0xc21f618636e4c1ce0cca5e3f38824232315465b3', 0, 1, '2024-05-05 15:29:19+00', 0, 0, '{"fid": 386033, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc22dd9a-a03a-44fd-6684-a283b4933500/original", "profile": {"bio": {"text": "HAM HAM🍖 / Frame developer\nFrom DEG server", "mentioned_profiles": []}}, "username": "chiffon-m", "power_badge": false, "display_name": "sifonM🎩🍖🔵🟢", "active_status": "inactive", "verifications": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "follower_count": 641, "custody_address": "0xecf66086803983f13e85754591fedc58891fd70c", "following_count": 657, "verified_addresses": {"eth_addresses": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Kt6UReyCtmrYvbsHb3STj?si=ibSnfmvdSL6NZoT6NZa7zw\"}"}', NULL), - (427754, '0x5a172d671e8795deffaaf1a2bf2ba6a99b9eb673', 0, 1, '2024-05-06 06:09:01+00', 0, 0, '{"fid": 419506, "object": "user", "pfp_url": "https://i.imgur.com/TaWGbTU.jpg", "profile": {"bio": {"text": "Someone new to crypto and love to learn about it", "mentioned_profiles": []}}, "username": "komeila", "power_badge": false, "display_name": "Komeil", "active_status": "inactive", "verifications": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "follower_count": 760, "custody_address": "0x04fc2472c81ca9978c5f46d8ee526d948c148879", "following_count": 1072, "verified_addresses": {"eth_addresses": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/conan-gray/people-watching?ref=clipboard&p=a&c=0&si=211e59ece5e24efdb2ef527277a8a723&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (285629, '0xe65ba1483b847a39ab61f90e32959e2b04690044', 0, 1, '2024-05-05 19:01:04+00', 0, 3, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/51ZQ1vr10ffzbwIjDCwqm4?si=5eabc0a8d8064560\"}"}', NULL), - (72749, '0xf20a9bb6f1b2139d4b434ef6bac2a866bc3e25c1', 0, 1, '2024-05-04 23:57:08+00', 0, 2, '{"fid": 505726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0a7d0816-25e5-4016-f641-2fbfeebc7600/rectcrop3", "profile": {"bio": {"text": "I love Costco", "mentioned_profiles": []}}, "username": "lovemus", "power_badge": false, "display_name": "Costco", "active_status": "inactive", "verifications": ["0xcb0c7356e2a359ad168af298c109aa3aa41cef12"], "follower_count": 591, "custody_address": "0xdf7a4f4111ca0bc83d416de8280229b45cd42430", "following_count": 1313, "verified_addresses": {"eth_addresses": ["0xcb0c7356e2a359ad168af298c109aa3aa41cef12"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xSSUyzDeAdj4KstaA\"}"}', NULL), - (44991, '0xcd420bf9e9fbdedf56b831fbb33fcfd5cd28da9e', 0, 1, '2024-05-04 22:36:50+00', 0, 0, '{"fid": 271142, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSaSLjsipCCRrRR7qZdcK7GsnfPigPvmCnHwBigrsdCpN?filename=IMG_7635.jpeg", "profile": {"bio": {"text": "designer @ waterfall.market | knny.io | gallery.so/knny", "mentioned_profiles": []}}, "username": "knny", "power_badge": true, "display_name": "KNNY", "active_status": "inactive", "verifications": ["0xf32c74ca26465dce91df6eed7021d6dc110e3ba5", "0xb63d27158954016f5a5bb76c63aaef212d160e48"], "follower_count": 393, "custody_address": "0x223da10bd4a57a403a029e35e736a4576d5b056a", "following_count": 189, "verified_addresses": {"eth_addresses": ["0xf32c74ca26465dce91df6eed7021d6dc110e3ba5", "0xb63d27158954016f5a5bb76c63aaef212d160e48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2txrjDNEUI9ktQeFVZNDNW?si=3255edca9dd04e34\"}"}', NULL), - (284834, '0x05ad47ab92b50e16cacbb163366e4ab44a2c0b9d', 0, 1, '2024-05-05 18:52:34+00', 0, 2, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 569, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 682, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0hqj5JBnFt1BHEz2UCFwrl?si=4c6d335b384141ee\"}"}', NULL), - (348742, '0x5cfeed6f2ac74a1b7d2af74eb1b4bc8b6c7237bc', 0, 1, '2024-05-06 00:52:49+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sapphy-625680859/sets/i-really-want-to-stay-at-your?si=d6bb8a0f5c554c86bbc0f1a991aacae0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (344126, '0xd10b1590006abe9752c77d6ad9ac4d94627dccd8', 0, 1, '2024-05-06 00:08:15+00', 0, 2, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 693, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yHiu4\"}"}', 'sonata'), - (361127, '0x232ccd01d3481f77882160e9d5ac50c5cdc2713d', 0, 1, '2024-05-06 02:20:10+00', 0, 0, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 잘 부탁드립니다. ", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1407, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2495, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-339323148/jennie-you-and-me-moonlight?in=user-161950124-279151731/sets/jennie-you-and-me-special&si=5ff555c73c1142db98ec476ba1e9ee2e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (317870, '0x774f44812f60f75c51b8ea561d39f130ca0c75da', 32, 1, '2024-05-05 21:30:34+00', 10, 25, '{"fid": 502810, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5b67551-bafe-42bd-800e-ca130fb9c600/rectcrop3", "profile": {"bio": {"text": "QA | Software development | Gym", "mentioned_profiles": []}}, "username": "senjor", "power_badge": false, "display_name": "Sandis", "active_status": "inactive", "verifications": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "follower_count": 6, "custody_address": "0x066286d3a7a6e3eb6ebb16cd6dffe99031234640", "following_count": 77, "verified_addresses": {"eth_addresses": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hSAevgHCAwavW8hAA\"}"}', NULL), - (315592, '0xcba6a39832190a9914f121cb5c1f6a46672f28a9', 0, 1, '2024-05-05 21:17:21+00', 0, 2, '{"fid": 408178, "object": "user", "pfp_url": "https://i.imgur.com/TkjZRlQ.gif", "profile": {"bio": {"text": "im an AI artist , im sharing a lots of ai generated boring arts everyday , follow and enjoy ", "mentioned_profiles": []}}, "username": "the-hojjat", "power_badge": false, "display_name": "Hojjat ✈️", "active_status": "inactive", "verifications": ["0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4"], "follower_count": 597, "custody_address": "0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/lose-yourself?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (315605, '0x67b1cc03084a025484eb74e4b88454123cb00b68', 0, 1, '2024-05-05 21:16:44+00', 0, 2, '{"fid": 306430, "object": "user", "pfp_url": "https://i.imgur.com/SL7lQmW.jpg", "profile": {"bio": {"text": "I like to search and earn ", "mentioned_profiles": []}}, "username": "mina6624", "power_badge": false, "display_name": "Mina 🎩🔵🔮", "active_status": "inactive", "verifications": ["0x4dba8dee52ecf647979676c4d34c6752955d77ba"], "follower_count": 1474, "custody_address": "0xb8c44cc873d2400b56373fe745eb2dd082f3608d", "following_count": 1909, "verified_addresses": {"eth_addresses": ["0x4dba8dee52ecf647979676c4d34c6752955d77ba"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Someone Like You by Adele on #SoundCloud https://soundcloud.com/adelemusic/someone-like-you?ref=clipboard&p=a&c=0&si=03ce76f2f76447e889e6043570b6ec92&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (44368, '0x7cc7ba93dfc47086201db729ef618684265d406d', 0, 1, '2024-05-04 22:32:50+00', 0, 2, '{"fid": 515288, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/898699d5-787d-4c08-75e8-ae3f5628b300/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!515288", "power_badge": false, "display_name": "Arthem", "active_status": "inactive", "verifications": ["0x7496142a7e58b13fdd9c6593fe3f8c69c019bb61"], "follower_count": 29, "custody_address": "0x7496142a7e58b13fdd9c6593fe3f8c69c019bb61", "following_count": 104, "verified_addresses": {"eth_addresses": ["0x7496142a7e58b13fdd9c6593fe3f8c69c019bb61"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Ie9W94M7OjPoZVV216Xus?si=NIHJhXvuQPiLdYIqZsp8RQ\"}"}', NULL), - (72402, '0x20b8807210653cef4908e88231b0641639f3d7f7', 0, 1, '2024-05-04 23:55:49+00', 0, 2, '{"fid": 3702, "object": "user", "pfp_url": "https://i.imgur.com/MU135Rj.gif", "profile": {"bio": {"text": "Music Producer / Content Creator •••\n\nLiving Room album 4.24.24 💿 •••\n\nhttps://linktr.ee/supertightwoody", "mentioned_profiles": []}}, "username": "supertightwoody", "power_badge": true, "display_name": "Woody", "active_status": "inactive", "verifications": ["0x0f320368104adc3cb64b2a7be83bf0a549e12b03"], "follower_count": 878, "custody_address": "0xecde21944027c7d146dabec70f385a08a96f0278", "following_count": 339, "verified_addresses": {"eth_addresses": ["0x0f320368104adc3cb64b2a7be83bf0a549e12b03"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/supertightwoody/50-cent-in-da-club\"}"}', NULL), - (329958, '0x54a257bfcef03b562b49a047ffe9b9626cadbf65', 0, 1, '2024-05-05 22:34:57+00', 0, 3, '{"fid": 434553, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6017357f-a4fe-491c-f9e3-09549ead0a00/rectcrop3", "profile": {"bio": {"text": "Interested in the Web3 🌱", "mentioned_profiles": []}}, "username": "sarisoori", "power_badge": false, "display_name": "SariSoori 🎩🍗", "active_status": "inactive", "verifications": ["0x71af439d36551c2b42e1d34089ef26c7f572b271"], "follower_count": 576, "custody_address": "0xe86471a9db8ad0b97bfbbf61df251efb6311ba3b", "following_count": 641, "verified_addresses": {"eth_addresses": ["0x71af439d36551c2b42e1d34089ef26c7f572b271"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wFzDXY2Visg5VPyD7\"}"}', NULL), - (344140, '0xe742dcd2aee88206d4bca4c7519c4fc9fc01a561', 0, 1, '2024-05-06 00:07:06+00', 0, 1, '{"fid": 21431, "object": "user", "pfp_url": "https://i.imgur.com/L3EZo9y.gif", "profile": {"bio": {"text": "Dropping gems in /analogheads. Musing in /gramajo. Content in /0773h. Focused on digital art, community, culture & crypto. https://beacons.ai/0xgramajo", "mentioned_profiles": []}}, "username": "gramajo.eth", "power_badge": true, "display_name": "Gramajo", "active_status": "inactive", "verifications": ["0x2117bf88b4cb0186eaa87500a045fc998290e42a"], "follower_count": 778, "custody_address": "0x2f79e157993da37f006f3bebae7d1e2684668ddc", "following_count": 370, "verified_addresses": {"eth_addresses": ["0x2117bf88b4cb0186eaa87500a045fc998290e42a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lw39nK2PMb33CK5u9\"}"}', NULL), - (348899, '0x3a114566d44bf544439d8b07fbc5a2ec14d626e5', 0, 1, '2024-05-06 00:55:19+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1332, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1271, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/red-winter23/too-sweet-red-winter-remix?si=0c6da8f68a1b447eb3d8d891bfb8d38d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (542633, '0x1b3a541d4934c33de6efe7d854a9831f7a18c07c', 0, 1, '2024-05-06 10:02:07+00', 0, 0, '{"fid": 452150, "object": "user", "pfp_url": "https://i.imgur.com/QXvn8X8.jpg", "profile": {"bio": {"text": "⛔채굴 ⛔에어드랍 ⛔파밍 ⛔정보 ⛔공유\n간단하고 쉽고 확실해 보이는 안전한것만 공유드릴게요 🥰 👍 \n자주 찾아주세요", "mentioned_profiles": []}}, "username": "bbabbe", "power_badge": false, "display_name": "doge🎩🔵", "active_status": "inactive", "verifications": ["0xb335fbdf6830647e455e657078d0752700bcb242"], "follower_count": 3913, "custody_address": "0x827e017e511b9dc38e46463809ec7f5cb7e7091f", "following_count": 4664, "verified_addresses": {"eth_addresses": ["0xb335fbdf6830647e455e657078d0752700bcb242"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0942400573-518991315/xa-do-3-nhung-trach-nhac-hot-nhat-dj-hoang-anh?in=seoinduck1989/sets/xado/s-zWOu7&si=f2cb2d0871114c04a71105c482bf370c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (316532, '0x6d69d02ee726370a9312775ad9983493bfe0c1a4', 0, 1, '2024-05-05 21:19:27+00', 10, 20, '{"fid": 502810, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5b67551-bafe-42bd-800e-ca130fb9c600/rectcrop3", "profile": {"bio": {"text": "QA | Software development | Gym", "mentioned_profiles": []}}, "username": "senjor", "power_badge": false, "display_name": "Sandis", "active_status": "inactive", "verifications": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "follower_count": 6, "custody_address": "0x066286d3a7a6e3eb6ebb16cd6dffe99031234640", "following_count": 77, "verified_addresses": {"eth_addresses": ["0xed7ff12a6e100f3eab8fa91c13013b70376c3812"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hQMxgcr7rinGpCWP9\"}"}', NULL), - (361410, '0x7a110e1fe6cd75a11aac2dc7092b0967c3a847ec', 0, 1, '2024-05-06 02:21:34+00', 0, 3, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1336, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1aKvZDoLGkNMxoRYgkckZG?si=5ae5c585fbff4f5b\"}"}', NULL), - (344267, '0xa725a0c5f3cee2ac88938afd8e98d69c34fe0ab4', 0, 1, '2024-05-06 00:09:08+00', 0, 1, '{"fid": 340819, "object": "user", "pfp_url": "https://i.imgur.com/6EdMb5r.jpg", "profile": {"bio": {"text": "follow /beatmaking | \"nft superstar\". multidisciplinary artist. creator\nhttps://www.sound.xyz/fabrii2k -\nhttps://zora.co/@fabrii2k", "mentioned_profiles": []}}, "username": "fabrii.eth", "power_badge": false, "display_name": "fabrii 🎩", "active_status": "inactive", "verifications": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "follower_count": 625, "custody_address": "0x0b3d285feb1ed3fa3012580e340e7047ff5bcb3d", "following_count": 461, "verified_addresses": {"eth_addresses": ["0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fabrii2k/gran-turismo-2\"}"}', NULL), - (316514, '0x29c7d28d24093198443e4b56e183358f53a2935b', 0, 1, '2024-05-05 21:20:13+00', 0, 1, '{"fid": 465720, "object": "user", "pfp_url": "https://i.imgur.com/lLyxe2K.jpg", "profile": {"bio": {"text": "Artist🎨 — photographer📸 — designer and crypto lover💰", "mentioned_profiles": []}}, "username": "mahyy", "power_badge": false, "display_name": "Mahyy🎧", "active_status": "inactive", "verifications": ["0x1ea2c33dcba95e436406e0b10fe9a7c9140afad3"], "follower_count": 452, "custody_address": "0xf97cd290d30ee68f1845877a1fa70b77e8f1e3f5", "following_count": 445, "verified_addresses": {"eth_addresses": ["0x1ea2c33dcba95e436406e0b10fe9a7c9140afad3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/amy-winehouse/amy-winehouse-back-to-black?si=5a6adaa911ef4e3395b67591b1abb4f8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (532718, '0x4fd6b3cc92aafb5156612287eaf78e8780f73a05', 0, 1, '2024-05-06 09:34:53+00', 0, 0, '{"fid": 426559, "object": "user", "pfp_url": "https://i.imgur.com/r6xYkqZ.jpg", "profile": {"bio": {"text": "선팔 / 방문남겨주시면 찾아가융 💕 투더문 degen 🚀 🌛 ", "mentioned_profiles": []}}, "username": "ygygkym", "power_badge": false, "display_name": "Minji_kim", "active_status": "inactive", "verifications": ["0xd5a8f4df9163c0a76301bbfc0152b35b70e46c5e"], "follower_count": 1885, "custody_address": "0x1d6296998381298d3f040c6d4a95a6d49096bcc7", "following_count": 1351, "verified_addresses": {"eth_addresses": ["0xd5a8f4df9163c0a76301bbfc0152b35b70e46c5e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to newjeans by not like us on #SoundCloud https://on.soundcloud.com/KsYis\"}"}', NULL), - (352201, '0xcac8b3225a4de6718be64a9ac881a2d23e825461', 0, 1, '2024-05-06 01:17:43+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-the-weeknd-trust-issues?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351543, '0x235b245b382ca1b4db2477cd5ea258a50c97c45f', 0, 1, '2024-05-06 01:10:08+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamannemarie/anne-marie-grudge-voicenote?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (349681, '0x8bd07ed60496889fb8feac796b98973142028831', 0, 1, '2024-05-06 00:57:39+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/janosbudai18/sets/related-tracks-butterfly-speed?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (329955, '0xc390f44388ed87b8c2806f7324987923c4a98236', 0, 1, '2024-05-05 22:35:26+00', 0, 1, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3161, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jrmakes8d/ruel-painkiller-8d-audio?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (361446, '0x969ae1e6adf234cce02fa9ddd1b32e44d12b56d0', 0, 1, '2024-05-06 02:22:17+00', 0, 1, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3431, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 4065, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/ben-cotti/superman-soul-by-rex-banner?si=fe72a99e0dc34952ad81bc781db82fbe&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (352505, '0xd8416aa9b20c41f78c5c1447acd9a4745dbda16f', 0, 1, '2024-05-06 01:20:07+00', 0, 0, '{"fid": 286957, "object": "user", "pfp_url": "https://ewhoob6flqqnvto3qqysl5iy24fzzakvgiilwfufevsamzqclwtq.arweave.net/JY7nB8VcINrN24QxJfUY1wucgVUyELsWhSVkBmYCXac/", "profile": {"bio": {"text": "Trading is my thing.\n", "mentioned_profiles": []}}, "username": "dantaisbest", "power_badge": false, "display_name": "danta🎩🍖", "active_status": "inactive", "verifications": ["0x8091651d8562e720c588639f858457aeb454f613"], "follower_count": 2151, "custody_address": "0x45d9fdf0cdb50644550c3ddc86f0eb39362000a8", "following_count": 976, "verified_addresses": {"eth_addresses": ["0x8091651d8562e720c588639f858457aeb454f613"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-869155218/party-master-2?in=sc-playlists-kr/sets/chilled-808s&si=d56fe0eedba94bdeae7d23fb06165add&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351544, '0x2d1574f5931dd4270c4f6e56adf17bb969f1a233', 0, 1, '2024-05-06 01:09:23+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/i-didnt-change-my-number?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352206, '0x7d3541c86070df6e194b8dacef628d0cc1823249', 0, 1, '2024-05-06 01:17:29+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-girls-want-girls-feat?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (922284, '0x90df819e26f913f4e14831da8b84d3ad9456c4d5', 0, 1, '2024-05-07 07:25:03+00', 0, 0, '{"fid": 341200, "object": "user", "pfp_url": "https://i.imgur.com/k6cMomI.jpg", "profile": {"bio": {"text": "シャドバンからやっと開放されたっぽいっす。そんだけ。", "mentioned_profiles": []}}, "username": "nokoshiki", "power_badge": false, "display_name": "🔵necoshiki🔵", "active_status": "inactive", "verifications": ["0x31119d09e83d6b13d0af6c31cc72471e4804754c"], "follower_count": 831, "custody_address": "0x9a10cd973d59bfe8cb9c8f14276721e2134df27a", "following_count": 1044, "verified_addresses": {"eth_addresses": ["0x31119d09e83d6b13d0af6c31cc72471e4804754c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gno-888292369/nirvanaeyedress-jealous-x-smells-like-teen-spirit?si=62d8433cb0a541f3b99c9225d11291b1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (316871, '0x4974acaac52e643baf95b399d98fcd0893b402e7', 0, 1, '2024-05-05 21:20:54+00', 0, 3, '{"fid": 453227, "object": "user", "pfp_url": "https://i.imgur.com/aGZ5VCq.jpg", "profile": {"bio": {"text": "Hassan babaloei", "mentioned_profiles": []}}, "username": "hassanba", "power_badge": false, "display_name": "Hassanbabaloei", "active_status": "inactive", "verifications": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "follower_count": 287, "custody_address": "0xa221fc0c8b62c365065a1b900fce9efe0198ba17", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imsangryuh/mbtti?ref=clipboard&p=a&c=0&si=a843d2d39f214c7ba56799931205fbca&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (361580, '0xfaf886a24d076e424e08262baf5b2cfc29d3c4df', 0, 1, '2024-05-06 02:24:17+00', 0, 1, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3541, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2003, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/KicHeZ9zvkcJYDrE7\"}"}', 'sonata'), - (344288, '0x261f3acf7392f2b4179b22ee46900a0e519eef41', 0, 1, '2024-05-06 00:09:13+00', 0, 1, '{"fid": 453511, "object": "user", "pfp_url": "https://i.imgur.com/2h4kMHd.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "salivan", "power_badge": false, "display_name": "Salivan", "active_status": "inactive", "verifications": ["0x824f7d1d35d1528e33a94ad39b53b484b541fc6b"], "follower_count": 1611, "custody_address": "0x3062ba6fb9f013abd0dc34e9740a0d3b00c7ccf8", "following_count": 1821, "verified_addresses": {"eth_addresses": ["0x824f7d1d35d1528e33a94ad39b53b484b541fc6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leonardcohen/famous-blue-raincoat?ref=clipboard&p=i&c=0&si=CD7E7D04F31F4BF192891A35864E1AF4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (361466, '0x13aac59640003b5c3f481812bd30fbc1857aefa0', 1000, 1, '2024-05-06 02:22:15+00', 0, 0, '{"fid": 385242, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiggp52wnkuqowiewtsdpsj6lu2avnndesprstiddjwguqdgyfbpgu", "profile": {"bio": {"text": "i love farcaster\nCH host:/ogiri /casnews", "mentioned_profiles": []}}, "username": "hareiwa", "power_badge": false, "display_name": "🌮hareiwa🎩", "active_status": "inactive", "verifications": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "follower_count": 1393, "custody_address": "0xf7c15b2215c1a2c7390746209dee17f98aca29f1", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "sol_addresses": ["CKpihsP5fsG5KckWo7fUZnsVDYXy2Zpx9c1PFam39eFK"]}}', '{"{\"url\":\"https://soundcloud.com/officialhatsunemiku/tell-your-world-hatsune-miku-ft-livetune?si=9b71c98fdb394d09b0660939e1d4aed2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (268179, '0xf450a04fef8235ba80a644b7f640187f4dfeff7e', 0, 1, '2024-05-05 16:30:28+00', 0, 4, '{"fid": 501190, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b4ab624e-a0fc-4d4d-3efc-fba2468e5200/rectcrop3", "profile": {"bio": {"text": "Hello, I''m 아르센 뤼팽 🎩 🇰🇷\n/ Artist 🎨 /\n\n\n\n I wanna steal your heart.\n \"I respect faith, but doubt is what let''s you an Education.\" F4f 💯🧡\n ", "mentioned_profiles": []}}, "username": "lesmiserables", "power_badge": false, "display_name": " Arsène Lupin🎩🔴⛓️", "active_status": "inactive", "verifications": ["0xf3d7bb25f5644818b55c524616d31563ba2dd049"], "follower_count": 1109, "custody_address": "0xb46a72cb105d821e2bfee0fe9382a3389a21fed1", "following_count": 2180, "verified_addresses": {"eth_addresses": ["0xf3d7bb25f5644818b55c524616d31563ba2dd049"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7yZD4AVfQtAZD4cG8eRnPk?si=4Q3oHh-qRGyn2vptDpGspg\"}"}', 'sonata'), - (352628, '0xadb640c95af3d728e7b17493e006a1d5c053369b', 0, 1, '2024-05-06 01:21:05+00', 0, 1, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1170, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 558, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aKPgP\"}"}', 'sonata'), - (352511, '0x638bd6f84760068ee27c594d9dee3d12cbda80d4', 0, 1, '2024-05-06 01:20:43+00', 0, 2, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 741, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 771, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kanokwan-lanyot/dont-worry\"}"}', 'sonata'), - (334900, '0x6778fdf4be7bf2be40c4299e0c10f83a86047919', 0, 1, '2024-05-05 23:05:36+00', 10, 3, '{"fid": 506159, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd61aa05-e580-4846-a74c-cc348d246800/rectcrop3", "profile": {"bio": {"text": "I love nature and people. I want to know you. I love degen & cripto.", "mentioned_profiles": []}}, "username": "bong4950", "power_badge": false, "display_name": "Rich guy", "active_status": "inactive", "verifications": ["0xed5f6e01450f554446a8c63287ed3b6a5e7419e1"], "follower_count": 700, "custody_address": "0xca6fea427cdf7267c0427e2d0fd710c7bc05a541", "following_count": 641, "verified_addresses": {"eth_addresses": ["0xed5f6e01450f554446a8c63287ed3b6a5e7419e1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xNrgX9oFddWPj6Jj7\"}"}', NULL), - (344289, '0x5f2937971fbf821bb05fa6866914a61ab0a14ca2', 0, 1, '2024-05-06 00:09:03+00', 0, 5, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1890, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2334, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vnFXT\"}"}', 'sonata'), - (349442, '0x166354f40c0813edda55d239f443cf51ee15d834', 0, 1, '2024-05-06 00:57:15+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ezra-asare/holy-ghost-speed?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (349446, '0xd3c22abc65f4efe9ca0f15c2c2443552d35f472b', 0, 1, '2024-05-06 00:56:59+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ajaxstacks/in-here-ft-gino-the-ghost?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351598, '0x011298192edd5695c834147e941e18f5bcc3ba0a', 0, 1, '2024-05-06 01:10:42+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamannemarie/anne-marie-never-loved-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (712767, '0x1b41e0cb75f50fd702c3fedc850f9b56f70c32c7', 0, 1, '2024-05-06 19:08:35+00', 0, 2, '{"fid": 4661, "object": "user", "pfp_url": "https://i.imgur.com/bL4D8SU.png", "profile": {"bio": {"text": "crypto @ cherry.xyz | pmayr.xyz", "mentioned_profiles": []}}, "username": "pmayr", "power_badge": true, "display_name": "Patrick", "active_status": "inactive", "verifications": ["0x26c13e29874ef2032b8a4ae54e11a6964730ace9"], "follower_count": 252, "custody_address": "0x5e4c380bc492aa59e0f49b5fb50927d719c19190", "following_count": 313, "verified_addresses": {"eth_addresses": ["0x26c13e29874ef2032b8a4ae54e11a6964730ace9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/flowloris/lumina\"}"}', NULL), - (321546, '0x3ebbdc36875b6acd1a4a7f9816469c7a0e8faa90', 0, 1, '2024-05-05 21:47:48+00', 0, 0, '{"fid": 512232, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiebb66m6jhxtzhttgp2hjvc52y2cuzwcofvsn2l5nfgboivhl7gdq", "profile": {"bio": {"text": "Artist yeee", "mentioned_profiles": []}}, "username": "!512232", "power_badge": false, "display_name": "Mitchell 👁👄👁", "active_status": "inactive", "verifications": ["0x7f2da54a26a363276cffad8f976dcfb7469aade8", "0x7f2da54a26a363276cffad8f976dcfb7469aade8", "0x7f2da54a26a363276cffad8f976dcfb7469aade8"], "follower_count": 19, "custody_address": "0x4072b0743cddc9dcaecb3da38a3ed2aa6e335314", "following_count": 72, "verified_addresses": {"eth_addresses": ["0x7f2da54a26a363276cffad8f976dcfb7469aade8", "0x7f2da54a26a363276cffad8f976dcfb7469aade8", "0x7f2da54a26a363276cffad8f976dcfb7469aade8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1EQvRNqkoHAHtY6KbLjw62\"}"}', NULL), - (334901, '0x5f921229074b2d0b07367c21d4f71a669c4a3d07', 0, 1, '2024-05-05 23:05:17+00', 0, 1, '{"fid": 406532, "object": "user", "pfp_url": "https://i.imgur.com/KcItuJg.jpg", "profile": {"bio": {"text": "조대리💰맞팔💰흑형💰디젠\n\nGRASS 코인 채굴 : https://app.getgrass.io/register/?referralCode=JLhTMJl5OK54wRM", "mentioned_profiles": []}}, "username": "inseo", "power_badge": false, "display_name": "inpyung", "active_status": "inactive", "verifications": ["0xd2a6877f0caffcc0f1bf9a98b3c8923bc05cbe0e"], "follower_count": 1226, "custody_address": "0x1927632d7be05b1b7a707849572e4aba2c07b6b8", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xd2a6877f0caffcc0f1bf9a98b3c8923bc05cbe0e"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/sc-playlists-kr/sets/feel-good-flows\"}"}', NULL), - (349440, '0xb69ea0c07a3d0236ab002e88cd43bdb4c75ee4fd', 0, 1, '2024-05-06 00:56:43+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/allyoucaneatproductions/gino-the-ghost-next-day-ft?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (344534, '0x2a644d17309b38083f4c8289ee81186e7fb3e42f', 0, 1, '2024-05-06 00:12:35+00', 0, 6, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 693, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S2gk8\"}"}', 'sonata'), - (361514, '0x0bda43b1c7c8a5892bf2d3e0ce7957c0ad07fe68', 0, 1, '2024-05-06 02:23:39+00', 0, 2, '{"fid": 292154, "object": "user", "pfp_url": "https://i.imgur.com/rtWcOLQ.jpg", "profile": {"bio": {"text": "Crypto info\nFood Travel \nhttps://zora.co/@dannyping", "mentioned_profiles": []}}, "username": "dannykim", "power_badge": false, "display_name": "Danny Ping", "active_status": "inactive", "verifications": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "follower_count": 2121, "custody_address": "0x37e0c88ecc4897422b55ab72ab2d9c9e624b50e4", "following_count": 2239, "verified_addresses": {"eth_addresses": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4AqcK\"}"}', 'sonata'), - (784650, '0x3c9608acac3876f699c6af277320dc813ddd37f0', 0, 1, '2024-05-07 02:14:29+00', 0, 3, '{"fid": 503247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b77f3846-6321-490e-c63e-293dc800aa00/rectcrop3", "profile": {"bio": {"text": " Love | Peace | Nature | Cuteness | 100% 🍋 ", "mentioned_profiles": []}}, "username": "lemoni", "power_badge": false, "display_name": "🍋 lemoni ", "active_status": "inactive", "verifications": ["0xbb718e764ee9dcd619ed75433534554de2d170eb"], "follower_count": 767, "custody_address": "0x4d1dc543fa9d2770cfa77ddf3eecff3a913bbbd1", "following_count": 768, "verified_addresses": {"eth_addresses": ["0xbb718e764ee9dcd619ed75433534554de2d170eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/m3QWWjc7ZZZZFqtR8\"}"}', 'sonata'), - (351605, '0x2f307491f0694871a6e5021686542d3891ad7afa', 0, 1, '2024-05-06 01:11:49+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/decoy_music/anne-marie-ciao-adios-decoy-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351602, '0xade76db508597aa518d3079d9c0ac6054875da6b', 0, 1, '2024-05-06 01:11:37+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamannemarie/ciao-adios?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (344537, '0xd12e6ecf4e22a1e3845a8fd163840cbaea8551a1', 0, 1, '2024-05-06 00:10:06+00', 0, 6, '{"fid": 434644, "object": "user", "pfp_url": "https://i.imgur.com/8FCNKzD.jpg", "profile": {"bio": {"text": "I''m a crypto lover // 함께 소통해요😍", "mentioned_profiles": []}}, "username": "malrangcow", "power_badge": false, "display_name": "MalrangCow🎩🍖", "active_status": "inactive", "verifications": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "follower_count": 2907, "custody_address": "0xa5987cbd36cab6619ad1b4c611858193f63061a6", "following_count": 2940, "verified_addresses": {"eth_addresses": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nYcpdfsVM5CFrmo39\"}"}', 'sonata'), - (361516, '0xe93cf596e7bf6e25fe996e047830abf612ab2744', 0, 1, '2024-05-06 02:23:31+00', 0, 0, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 999, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1129, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mfjaswzxsrrn/m4a-1?si=e01c6a15e7ba4761a2c7164e5506f2af&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351604, '0x94b8e55ae0b983ee0389c4d722eb19df52da7e4e', 0, 1, '2024-05-06 01:10:27+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamannemarie/anne-marie-irish-goodbye-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (349682, '0x1fbc6bd15be2565fc6838ab37a40e1ab5ad75baf', 0, 1, '2024-05-06 00:58:15+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ginotheghost/easy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (366190, '0x79c731249e9da1a5e5e470daddf75e5aeee11c51', 0, 1, '2024-05-06 02:58:50+00', 0, 3, '{"fid": 486079, "object": "user", "pfp_url": "https://i.imgur.com/kKPwYv0.jpg", "profile": {"bio": {"text": "Crypto newbie ", "mentioned_profiles": []}}, "username": "hyururu", "power_badge": false, "display_name": "Hyururu", "active_status": "inactive", "verifications": ["0xc6a26a71156c65357e4971816258b93f5fd387dc"], "follower_count": 1342, "custody_address": "0xdb974c370c1ef82b73040ee9da2047c115990e4c", "following_count": 1675, "verified_addresses": {"eth_addresses": ["0xc6a26a71156c65357e4971816258b93f5fd387dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TymyA\"}"}', 'sonata'), - (352241, '0xdff67c70554825e43e7177f4454f8a9fceb9033b', 0, 1, '2024-05-06 01:18:45+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-yebba-yebbas-heartbreak?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (364433, '0x27cb4add5f6f69c479d99ebf8d9961c201cfb235', 0, 1, '2024-05-06 02:48:07+00', 0, 0, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1534, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 957, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VGQ6GCK2jMj1bA3d8\"}"}', 'sonata'), - (351719, '0xdec22e74a5d62f62a9da01855bc3e386bfc22615', 0, 1, '2024-05-06 01:12:24+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mahmoud-galal-9/shine-bright-like-a-diamond?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (344873, '0x320379fedbe6c107c84669cd49cc444e5c74da64', 0, 1, '2024-05-06 00:13:51+00', 0, 7, '{"fid": 470013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ab81472c-ae5b-441b-0822-dcfe1e21cf00/original", "profile": {"bio": {"text": "슈캐장착 소통해요~", "mentioned_profiles": []}}, "username": "angko", "power_badge": false, "display_name": "HyeYoung", "active_status": "inactive", "verifications": ["0x3faec76484ff39fdb6871af6f356134f8c8c83e3"], "follower_count": 2499, "custody_address": "0x0b304b49981f7dd94ca4e550bd69f4252b29b739", "following_count": 2565, "verified_addresses": {"eth_addresses": ["0x3faec76484ff39fdb6871af6f356134f8c8c83e3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/frequentiis/newjeans-get-up-ful-album?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (361581, '0x8676936ae4ab9c6183dfbc7332965197c5f56398', 0, 1, '2024-05-06 02:24:02+00', 0, 1, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 잘 부탁드립니다. ", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1407, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2495, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-339323148/jennie-you-and-me-moonlight?in=user-161950124-279151731/sets/jennie-you-and-me-special&si=9c5f7778b5e2404bb961be3e599679b7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (351541, '0x6336e2f38858eee18321c219a15162fde8fe4bb3', 0, 1, '2024-05-06 01:09:43+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/billie-bossa-nova?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (222193, '0xa0a541399c7d1ad4a96b896b1539218b7e837d27', 0, 1, '2024-05-05 13:22:20+00', 0, 15, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2188, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 724, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/62KKLTc1zG9wUyJWCUUzmT\"}"}', 'degen-japan'), - (364434, '0x4b9eb0738d8a02b5c47a6d134a12c2b47d5d935c', 10, 1, '2024-05-06 02:47:58+00', 0, 16, '{"fid": 500738, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac0ab18d-18ab-44ca-68b6-b047648a5800/rectcrop3", "profile": {"bio": {"text": "열심히 하는건 누구보다 자신 있습니다!\n슈퍼캐스트로 2배로 빠르게 보답하겠습니다🔥", "mentioned_profiles": []}}, "username": "premium191004", "power_badge": false, "display_name": "Degen_Moon", "active_status": "inactive", "verifications": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "follower_count": 1040, "custody_address": "0x86582a580e1ccd25fab0e894ba9598116df46d23", "following_count": 876, "verified_addresses": {"eth_addresses": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/j9hYQ8y86NZV4CoQA\"}"}', 'sonata'), - (349443, '0xd6ab7e3f297f7f72799c214956b32477980c372c', 0, 1, '2024-05-06 00:57:03+00', 0, 0, '{"fid": 288345, "object": "user", "pfp_url": "https://i.imgur.com/FwGqpQ9.jpg", "profile": {"bio": {"text": " I want to learn various things\nBeing a Good Dad\n", "mentioned_profiles": []}}, "username": "gylee", "power_badge": false, "display_name": "Gygygy🍖🎩💧", "active_status": "inactive", "verifications": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "follower_count": 2535, "custody_address": "0xc02b424283200788e3059b9dec77711175743775", "following_count": 1988, "verified_addresses": {"eth_addresses": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove6/0tvj9ywhgyl1?si=98fe7cfa278a46589a29b3c2d7664b3e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (428376, '0xa35b6ffe840bf105b66f1e627a2c45558103bbc6', 0, 1, '2024-05-06 06:07:55+00', 10, 1, '{"fid": 332730, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82386fd8-8c87-4def-eac0-0810e2d60d00/rectcrop3", "profile": {"bio": {"text": "AI Seminar Instructor /degentlmen ", "mentioned_profiles": []}}, "username": "tyuki", "power_badge": false, "display_name": "tyuki", "active_status": "inactive", "verifications": ["0x53c2185030b95aa5fedab775e6c117bd3b2f1c44"], "follower_count": 429, "custody_address": "0x88ac547a4617b9dd01772185ef6f23d6f87d93c8", "following_count": 846, "verified_addresses": {"eth_addresses": ["0x53c2185030b95aa5fedab775e6c117bd3b2f1c44"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1DkKJBq3fApUDupCA\"}"}', 'bgm'), - (335106, '0x3667755dd774ac6f4330b89c453c552af35630d3', 0, 1, '2024-05-05 23:06:44+00', 0, 1, '{"fid": 406532, "object": "user", "pfp_url": "https://i.imgur.com/KcItuJg.jpg", "profile": {"bio": {"text": "조대리💰맞팔💰흑형💰디젠\n\nGRASS 코인 채굴 : https://app.getgrass.io/register/?referralCode=JLhTMJl5OK54wRM", "mentioned_profiles": []}}, "username": "inseo", "power_badge": false, "display_name": "inpyung", "active_status": "inactive", "verifications": ["0xd2a6877f0caffcc0f1bf9a98b3c8923bc05cbe0e"], "follower_count": 1226, "custody_address": "0x1927632d7be05b1b7a707849572e4aba2c07b6b8", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xd2a6877f0caffcc0f1bf9a98b3c8923bc05cbe0e"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/062south/sets/mz3s9wmji74y\"}"}', NULL), - (345013, '0xdb1aeb44014d2a76923e26f8aefc25b408bc5e67', 0, 1, '2024-05-06 00:14:21+00', 0, 3, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 693, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 777, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Rtehe\"}"}', 'sonata'), - (349748, '0xe7046e9743cb55533bad8112aa083c77cb9ebe34', 0, 1, '2024-05-06 00:59:23+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/janosbudai18/sets/related-tracks-j-r-y-x?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (454092, '0xa0fda1a4c87e2dd872d1b366d42d60d8913788ae', 0, 1, '2024-05-06 06:49:03+00', 0, 1, '{"fid": 380504, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeic5ar7c4mrrkj2oz6j36a6afefh7a5rdimzlepkkeozrti3ws636u", "profile": {"bio": {"text": "what you think about me is what I am", "mentioned_profiles": []}}, "username": "colderine", "power_badge": false, "display_name": "Colderine 🎩🍖☔", "active_status": "inactive", "verifications": ["0x1464728dc12e635e15c250981c047eb888e44dd6"], "follower_count": 675, "custody_address": "0xd163c704410e9b880d0f819631b8990704771c50", "following_count": 184, "verified_addresses": {"eth_addresses": ["0x1464728dc12e635e15c250981c047eb888e44dd6"], "sol_addresses": ["5oo2TYAQXVfvioLce6rbSTQC8KvpAimUghg25YsATqYJ"]}}', '{"{\"url\":\"https://on.soundcloud.com/1QbUa\"}"}', NULL), - (185295, '0x3dae3d349d5fdc8bf3d3e07c856ef17033edb673', 0, 1, '2024-05-05 12:01:43+00', 0, 1, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 955, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 956, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/47h2MXGc5ydeeQ6XKuRqXC?si=-o6IPZLzQMKI4KUMkzVvTQ\"}"}', 'sonata'), - (341776, '0x008b03d6fcfc4fb071c4f05d0418f2b07266ae33', 0, 1, '2024-05-05 23:57:07+00', 0, 1, '{"fid": 291712, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeicd3zrryr6cbb6456epl5eqyzlo6ec4s56sk5wc7awgc246nua27i/1", "profile": {"bio": {"text": "Studying and investing cryptos. ", "mentioned_profiles": []}}, "username": "multan", "power_badge": false, "display_name": "Bonzil🎩", "active_status": "inactive", "verifications": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "follower_count": 1277, "custody_address": "0xe61d9181dffdcd462b0e3269c93d6d0af4a3e4db", "following_count": 1560, "verified_addresses": {"eth_addresses": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6GIrIt2M39wEGwjCQjGChX?si=3ZK_4PEdRui50uxYsubokA\"}"}', NULL), - (349749, '0xec6015ee7cd2fb74654e8c5d72532224d9381567', 0, 1, '2024-05-06 00:59:46+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ginotheghost/payphone-prod-by-rcky?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (349752, '0xc6fb30e4f44c61d6aa9aa0c9390c5aac28c17555', 0, 1, '2024-05-06 00:59:02+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ginotheghost/quarantine?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (93, '0xc872b3780e24e5252ac1bbf0ef82e738c0302419', 1311, 1, '2024-04-30 10:51:35+00', 121, 21, '{"fid": 478436, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/22eb166f-5b8a-49df-f9e3-d1ec859b4500/rectcrop3", "profile": {"bio": {"text": "선팔❤️맞팔 🔪반사 / 화력🔥🔥🔥🔥🔥🔥\n노는게 제일 좋아 조아조아 뽀로로양\n반가워 친구들 사랑해 \nNice too meet you I’m Korean childrens president \nPORORO ❤️❤️ I’m human 나는 인간이다", "mentioned_profiles": []}}, "username": "mangoco", "power_badge": false, "display_name": "PORORO🌈❤️", "active_status": "inactive", "verifications": ["0x3af09cf05d346a0945c05ff8baa8ce474e2f044d"], "follower_count": 3358, "custody_address": "0xaf1619f0991e4a8af9d69e476372ed400d4d5e2b", "following_count": 3736, "verified_addresses": {"eth_addresses": ["0x3af09cf05d346a0945c05ff8baa8ce474e2f044d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/punk-monster/3-3-photo-by?si=6000beb49dcf4e06a20ca09b07749d0b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (361517, '0x3b811376e9c0745f14305db572bb5cfe2b59e0f6', 0, 1, '2024-05-06 02:23:21+00', 0, 0, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1704, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vbsYoCZXYAY9jxE36\"}"}', 'sonata'), - (476447, '0x5ebe0f8c947d63e395d3cb8c33f4c5448a9feb9a', 0, 1, '2024-05-06 07:20:28+00', 0, 3, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2615, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2441, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pelix_yoon/jlgyjpyemvtd?si=7705c84a44c94fc5b67045e3c37ad12b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (349684, '0x00e86b056c8fde8c2a71d50196c482c399ce01d8', 0, 1, '2024-05-06 00:58:28+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gueringerthe13th/trill-waves-remix-feat-gino?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (351599, '0x5026c1d628b448cf8dd8fa23f8241401c6c3b10d', 0, 1, '2024-05-06 01:10:34+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamannemarie/anne-marie-trainwreck-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (335224, '0x249b6c7bf7b9b351945bc07cce604fec7efd11c9', 0, 1, '2024-05-05 23:11:34+00', 0, 1, '{"fid": 193746, "object": "user", "pfp_url": "https://i.imgur.com/qV0WoeH.jpg", "profile": {"bio": {"text": "猫の恩返しに出てくるナトルが好きです。\nMy creative inspiration comes down at 5~9 PM every day.", "mentioned_profiles": []}}, "username": "luca5642.eth", "power_badge": false, "display_name": "luca🎩🔵👻", "active_status": "inactive", "verifications": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "follower_count": 1289, "custody_address": "0xfcb46afe791a0ff441ecb78341664676e6c9a599", "following_count": 1096, "verified_addresses": {"eth_addresses": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PujKjxkL9x7tBJEE8\"}"}', NULL), - (361716, '0x1c34cc641b199b7b001e614aeb54d7c34b240ad5', 0, 1, '2024-05-06 02:25:11+00', 0, 0, '{"fid": 315010, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreicpkgeyhqw4v6ubnw4agkcspvazrtg7higjlm2gdx42eum67iraei", "profile": {"bio": {"text": "Now is perfect moment!", "mentioned_profiles": []}}, "username": "junglipz", "power_badge": false, "display_name": "junglip🎩🍖", "active_status": "inactive", "verifications": ["0x3ea9ef13ae8a6700ea3abfdb6c86f00944a76a08"], "follower_count": 491, "custody_address": "0xf4bf3d3b2467706786853bdecd30b69cc1578378", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x3ea9ef13ae8a6700ea3abfdb6c86f00944a76a08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lauvsongs/potential-1?si=33241ce64bcd48ceb3aafce22a60d324&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (352242, '0x76f753ac2f050874317de533781ab1cb5b83cb2b', 0, 1, '2024-05-06 01:18:23+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-21-savage-rich-flex?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (429591, '0x6ba218ee0d8ab55387abd5482ddb857a0d2f65c3', 0, 1, '2024-05-06 06:12:36+00', 0, 7, '{"fid": 422208, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4069de80-8311-455f-b784-a882fc5d5d00/rectcrop3", "profile": {"bio": {"text": "Support the my main cast❤️", "mentioned_profiles": []}}, "username": "mhdiznd", "power_badge": false, "display_name": "Mhdi🎩🍖", "active_status": "inactive", "verifications": ["0xf64ff6520a410c1cf746285dd3c893d35ac5eef4"], "follower_count": 1324, "custody_address": "0xbe5370b1c04648f179e87478ed43a88dd31c6f01", "following_count": 1681, "verified_addresses": {"eth_addresses": ["0xf64ff6520a410c1cf746285dd3c893d35ac5eef4"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Homayoun Shajarian - Intihar (REMIX) by KAMI MT on #SoundCloud https://on.soundcloud.com/akDjD\"}"}', NULL), - (629055, '0x98a9e05d8090de3a2533cfde427bde29ad18d7ea', 0, 1, '2024-05-06 13:45:53+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 792, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1539, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2bzvq\"}"}', 'sonata'), - (349683, '0xc676c6d3a12b614a12052e73f0213f4db6b7bfa0', 0, 1, '2024-05-06 00:57:57+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/brandynmusic/wolves?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (517828, '0x94027f3680fdd4434e94a29bddfc633a5132e185', 0, 1, '2024-05-06 08:45:53+00', 0, 2, '{"fid": 511688, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ee884f6-6f5a-4114-e5d5-d0627a126c00/rectcrop3", "profile": {"bio": {"text": "swallow 💰", "mentioned_profiles": []}}, "username": "!511688", "power_badge": false, "display_name": "BlackRock", "active_status": "inactive", "verifications": ["0x459680ee096a52090209e25305fe8290923d6ad2"], "follower_count": 213, "custody_address": "0x2be300fac40878518b7ce6579cdb70786aeeab6d", "following_count": 200, "verified_addresses": {"eth_addresses": ["0x459680ee096a52090209e25305fe8290923d6ad2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o2EVUgwJTYx2ZoP87\"}"}', NULL), - (361585, '0xa050d6d5c84f08beab47aa7929d3b77d534ee1b1', 0, 1, '2024-05-06 02:24:10+00', 0, 0, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2125, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kTtJPynCQJZMFyRE7\"}"}', NULL), - (352264, '0xfe8cbce6494a7ef6cacbf36d55687e966e531dc2', 0, 1, '2024-05-06 01:18:31+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-headlines?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (156580, '0x4eff98d138a056c8feface70e45a9d54f16f677a', 0, 1, '2024-05-05 09:17:51+00', 0, 3, '{"fid": 6906, "object": "user", "pfp_url": "https://i.imgur.com/54QzUqm.jpg", "profile": {"bio": {"text": "Music, film photography and crypto enthusiast ✨\n/framescollection 🖼️\ne/enj, enjoy/acc", "mentioned_profiles": []}}, "username": "agrislis.eth", "power_badge": true, "display_name": "Artyom Grislis 🥏", "active_status": "inactive", "verifications": ["0x354d4d759c49094f60d537bfd7177c05b70c20cc"], "follower_count": 2254, "custody_address": "0x33fb65cca82e2156d0efcb4f89e47cc4dadbcd04", "following_count": 317, "verified_addresses": {"eth_addresses": ["0x354d4d759c49094f60d537bfd7177c05b70c20cc"], "sol_addresses": ["7VYuEbBDXAan6qfpgsPFC61SSRbUassdDYaV7NAEGTUX"]}}', '{"{\"url\":\"https://www.sound.xyz/raeisla/miles-and-miles?referral=0x354d4d759c49094f60d537bfd7177c05b70c20cc&referral_source=link\"}"}', NULL), - (352246, '0x25c1a5b51c424bf44a9ba9144d0ee21c18f42c75', 0, 1, '2024-05-06 01:18:37+00', 0, 0, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-marvins-room?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (489538, '0xcf860ae37c8fb32c6e2ddd75c3f5ef801a13f271', 0, 1, '2024-05-06 07:40:46+00', 0, 4, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1206, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1373, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BDhDn\"}"}', 'sonata'), - (361513, '0x7f40ae5a4cf900d5ad8f3c0f5be62e1c096e240b', 0, 1, '2024-05-06 02:23:39+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 786, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1523, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"Listen to [지드래곤 G DRAGON] GD Black(feat. Jennie Kim) @인기가요 Inkigayo 131013 by kot on #SoundCloud https://on.soundcloud.com/2kWsy\"}"}', NULL), - (367568, '0xcaa8232979508a21ff0c462289489de55a8fd7ac', 0, 1, '2024-05-06 03:05:52+00', 0, 4, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2133, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1879, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7hgw6Nxk34t381cq6\"}"}', NULL), - (366189, '0x094e2df7830128e4693285f8d7401bd2a7eaa483', 0, 1, '2024-05-06 02:58:14+00', 0, 0, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/C3aULgZW5AkNBmkF9\"}"}', NULL), - (345762, '0xb90e635482915b5cd34152ca009fb235401f1706', 0, 1, '2024-05-06 00:22:02+00', 0, 0, '{"fid": 191751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4dc71ec-9c59-42b9-5687-510c52dfe100/original", "profile": {"bio": {"text": "...", "mentioned_profiles": []}}, "username": "seoulraa", "power_badge": false, "display_name": "seoulraa", "active_status": "inactive", "verifications": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "follower_count": 26, "custody_address": "0xbee4eac0d0bcb4334a034dfa44eb3a96e3b81a9b", "following_count": 37, "verified_addresses": {"eth_addresses": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/seoulraa.eth/post/5d466d99-ae71-45eb-a14b-8f5c3261c1ef\"}"}', NULL), - (345881, '0xe85cd971026e7546b266181adfd28fe3bea015e8', 0, 1, '2024-05-06 00:23:02+00', 0, 0, '{"fid": 191751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4dc71ec-9c59-42b9-5687-510c52dfe100/original", "profile": {"bio": {"text": "...", "mentioned_profiles": []}}, "username": "seoulraa", "power_badge": false, "display_name": "seoulraa", "active_status": "inactive", "verifications": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "follower_count": 25, "custody_address": "0xbee4eac0d0bcb4334a034dfa44eb3a96e3b81a9b", "following_count": 36, "verified_addresses": {"eth_addresses": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/seoulraa.eth/post/5d466d99-ae71-45eb-a14b-8f5c3261c1ef\"}"}', NULL), - (429093, '0xcbe25e2131a5acd922e20139bfcc8d15a806d895', 0, 1, '2024-05-06 06:11:56+00', 0, 0, '{"fid": 265799, "object": "user", "pfp_url": "https://i.imgur.com/SPM81ZC.jpg", "profile": {"bio": {"text": "I like home design and nature and cooking", "mentioned_profiles": []}}, "username": "nika", "power_badge": false, "display_name": "Nika", "active_status": "inactive", "verifications": ["0x102dc60a0524481a4ce327756f0a5c5d39a4abdd"], "follower_count": 205, "custody_address": "0xac7b89c985d7ce234c670720ccd07f0c92d3a7cf", "following_count": 107, "verified_addresses": {"eth_addresses": ["0x102dc60a0524481a4ce327756f0a5c5d39a4abdd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aydamusic/ayda-isyan?ref=clipboard&p=a&c=0&si=5360b76e10624b97876993c00f43f50b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (457886, '0x49cf07c1344542e2e5980f74ad557af0b9537217', 0, 1, '2024-05-06 06:55:52+00', 0, 1, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 723, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1076, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rZjEoXVLaqxkM3mLA\"}"}', 'sonata'), - (364051, '0xf741a86eb6108a0057b976b5602f8f37d0a967f4', 0, 1, '2024-05-06 02:42:14+00', 0, 0, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 60, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 41, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up?referral_source=link\"}","{\"url\":\"https://orb.club/p/0x04c480-0x49\"}"}', 'drakula'), - (922288, '0xbfc8887e834972a3d474747e6b86b780357e27c0', 0, 1, '2024-05-07 07:24:47+00', 0, 0, '{"fid": 503140, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2de648f-2d6d-4a8b-61c3-f84fe3ecb200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mtm", "power_badge": false, "display_name": "Khgoo", "active_status": "inactive", "verifications": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "follower_count": 1353, "custody_address": "0xb9b977dc77ca2b13c12603793f1d7ef9e8739f6b", "following_count": 1593, "verified_addresses": {"eth_addresses": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bQumC\"}"}', 'sonata'), - (429972, '0xd12df363efe3ce749943b81734040048d106a47f', 0, 1, '2024-05-06 06:13:58+00', 0, 0, '{"fid": 453489, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/611a6f69-2d95-443b-166a-b2ad44e35a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "6reder", "power_badge": false, "display_name": "Hoosein", "active_status": "inactive", "verifications": ["0xcadf8999361237362d9bd0f02331c24231e3f86f"], "follower_count": 500, "custody_address": "0x37b3afea116c12ca72b515c944d9607f3c2bc38e", "following_count": 1363, "verified_addresses": {"eth_addresses": ["0xcadf8999361237362d9bd0f02331c24231e3f86f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iranmediamusic/haydeh-aroosak\"}"}', NULL), - (353188, '0xf9cfc3889444044f8a36d2230569bc3ab319cb43', 0, 1, '2024-05-06 01:25:03+00', 0, 1, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1085, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1151, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SXWZF\"}"}', 'sonata'), - (314174, '0x5041db8f84c6a09da4787cc52ed82e3024ed6e7d', 0, 1, '2024-05-05 21:14:18+00', 0, 4, '{"fid": 364763, "object": "user", "pfp_url": "https://i.imgur.com/FFpzKnl.jpg", "profile": {"bio": {"text": "We are going to have a lot of fun here. Join /farcaster to get to know the true meaning of the digital space to infinity and beyond./lp", "mentioned_profiles": []}}, "username": "iammarhz", "power_badge": false, "display_name": "Ammar Hossein Zehi 🎩🍖", "active_status": "inactive", "verifications": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "follower_count": 803, "custody_address": "0x5420e42acc6842e0d702f168affcd105221b9179", "following_count": 1646, "verified_addresses": {"eth_addresses": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thesocavault/the-soca-vault-militant-riddim-mix?ref=clipboard&p=a&c=0&si=5bc5851dad334abfb58acb0f5b6445da&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (361779, '0x00fe09b6b66db137c56eb63e9ce565f6db37852f', 1000, 1, '2024-05-06 02:26:07+00', 10, 3, '{"fid": 193746, "object": "user", "pfp_url": "https://i.imgur.com/qV0WoeH.jpg", "profile": {"bio": {"text": "猫の恩返しに出てくるナトルが好きです。\nMy creative inspiration comes down at 5~9 PM every day.", "mentioned_profiles": []}}, "username": "luca5642.eth", "power_badge": false, "display_name": "luca🎩🔵👻", "active_status": "inactive", "verifications": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "follower_count": 1293, "custody_address": "0xfcb46afe791a0ff441ecb78341664676e6c9a599", "following_count": 1104, "verified_addresses": {"eth_addresses": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3S9iZZWFQ1ETXPuu8\"}"}', NULL), - (364432, '0xc781844f33a9cadf689d8e7d6d326d73d59e4454', 0, 1, '2024-05-06 02:47:30+00', 0, 17, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3079, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2576, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share/sets/bts-butter-permission-to-dance?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (449583, '0x9c195a761922981c276043002fc923b003476731', 0, 1, '2024-05-06 06:45:20+00', 0, 0, '{"fid": 459278, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f93440a1-d497-42c3-71b8-2de057460600/rectcrop3", "profile": {"bio": {"text": "People say she’s an Artist 😎", "mentioned_profiles": []}}, "username": "nikootine", "power_badge": false, "display_name": "That Nicky 💜😻", "active_status": "inactive", "verifications": ["0xe099f24beadf91240ea9bf3e8ecbdf6ff16a2ad2"], "follower_count": 351, "custody_address": "0xbbdcdf3aa64f636563f7fd9def5ef06031c52319", "following_count": 299, "verified_addresses": {"eth_addresses": ["0xe099f24beadf91240ea9bf3e8ecbdf6ff16a2ad2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nikootine/ser?ref=clipboard&p=i&c=1&si=2D9AF5CDA43648DAB1871268FD8E4439&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (366344, '0xa3871a6c7049b8765f0471b5fe3087bf790550f0', 0, 1, '2024-05-06 03:00:27+00', 0, 2, '{"fid": 500970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b9ac51f6-4a2f-466b-945c-185d091fe400/rectcrop3", "profile": {"bio": {"text": "I‘m back", "mentioned_profiles": []}}, "username": "jhj", "power_badge": false, "display_name": "JHJ", "active_status": "inactive", "verifications": ["0xf42fd970012d4b5d2e5d369cd3a6bd68ccd11ced"], "follower_count": 1384, "custody_address": "0xceda2c01fc4164a03c72fc53e895248fabb99d03", "following_count": 721, "verified_addresses": {"eth_addresses": ["0xf42fd970012d4b5d2e5d369cd3a6bd68ccd11ced"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uSwPrppiq94ZNfvm6\"}"}', 'sonata'), - (353300, '0xdd1d536fc4ae239f475343807c411e8ab13c832f', 0, 1, '2024-05-06 01:29:12+00', 0, 0, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 725, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1086, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7NYp9EaN3RyrdkLy7\"}"}', NULL), - (364015, '0x111ea902fdc2d1a55fc7f3a22bb0b043ea6879c9', 0, 1, '2024-05-06 02:41:18+00', 0, 0, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 104, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 187, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NdCYvdb3C95gMxwj6\"}"}', NULL), - (361515, '0xc74ed2ea14c7f5256b4158a9884d1e5097a95985', 0, 1, '2024-05-06 02:23:35+00', 0, 2, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 639, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 759, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mayra-oliveira-30/adele-hello?si=70b064da386d4cb38991c9e99781acdd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (489681, '0xc9dba0b8b68219c79bb4fd65bd1f7d8ce279c078', 0, 1, '2024-05-06 07:41:17+00', 0, 6, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 651, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 400, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QYhVf\"}"}', 'sonata'), - (430016, '0xdbf5d6ba0d2dfdcb2acda4d83283516c909d45ac', 0, 1, '2024-05-06 06:14:06+00', 0, 3, '{"fid": 483140, "object": "user", "pfp_url": "https://arweave.net/OIFWkJWJGgbWYnNFClD97qOc-HnMNr-Mk-A99DA4iM4/", "profile": {"bio": {"text": "Love to make and share meme", "mentioned_profiles": []}}, "username": "thememe", "power_badge": false, "display_name": "Alex", "active_status": "inactive", "verifications": ["0x9c11ab5683786b6fb26bb5077175bab69b65fa84"], "follower_count": 121, "custody_address": "0x225b0864d31f7e12316340725bc851de6b433792", "following_count": 175, "verified_addresses": {"eth_addresses": ["0x9c11ab5683786b6fb26bb5077175bab69b65fa84"], "sol_addresses": []}}', '{"{\"url\":\"Listen to آهنگ شاااااااد بندری نرو مریم نرو من عاشق چشماتم مسلم فتاحی naro Maryam remix 🤪🔥😹❤️‍🔥 by Ali Mirzaei on #SoundCloud https://on.soundcloud.com/3SES2\"}"}', NULL), - (364952, '0x151a637d920d69b45eebbd79ee77f3fbb9043cd8', 0, 1, '2024-05-06 02:51:06+00', 0, 6, '{"fid": 499426, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c59ad12-9c89-43a2-26a8-ac05ed9ef900/original", "profile": {"bio": {"text": "F4F Come on bro!", "mentioned_profiles": []}}, "username": "wonnny", "power_badge": false, "display_name": "jay", "active_status": "inactive", "verifications": ["0x03e054022d3756429bbfc17e788a44781b221649"], "follower_count": 2017, "custody_address": "0x354b8e1a7c71b772cc7ca046b5b5816c7caa2795", "following_count": 2478, "verified_addresses": {"eth_addresses": ["0x03e054022d3756429bbfc17e788a44781b221649"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vautdiscovery/ed-sheeran-thinking-out-loud-live-on-jools-holland?si=0c42144859314c6681175f129ae744d5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (361938, '0x0b9a267069c8f7505781a47cf9fb9f4e65e02794', 0, 1, '2024-05-06 02:27:34+00', 0, 1, '{"fid": 381536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82a5226e-b90a-40e1-3f33-d93447954000/original", "profile": {"bio": {"text": "잘 부탁 드립니다. \n", "mentioned_profiles": []}}, "username": "mycandies.eth", "power_badge": false, "display_name": "Candy", "active_status": "inactive", "verifications": ["0x2f9f68831269999e95240e6dbe79e69a198a8ad3"], "follower_count": 936, "custody_address": "0x6926af24404fd54fcdb24e9546c2ad77d5dc9bd0", "following_count": 1661, "verified_addresses": {"eth_addresses": ["0x2f9f68831269999e95240e6dbe79e69a198a8ad3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yumi-pies/anne-marie-2002-acoustic?si=2c1f62cf17c147d3adee0dd80fd5cc26&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (367818, '0xab105e5c05475006d8074bbb59d242e601c1a48e', 0, 1, '2024-05-06 03:06:34+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/abihcolvgokg/djd-3-wav?si=fe9b4318687b42bf91e34aa17e64490e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (363894, '0x8ab7d6e0b8ba1297d21e3a5eca91615ea302f59b', 0, 1, '2024-05-06 02:40:51+00', 0, 1, '{"fid": 382749, "object": "user", "pfp_url": "https://i.imgur.com/7MJOHmF.jpg", "profile": {"bio": {"text": "I love warpcast and degen\n주로 아침(출근길), 저녁(퇴근길), 야간반 활동합니다.\nhttps://zora.co/@ixtream", "mentioned_profiles": []}}, "username": "ixtream", "power_badge": false, "display_name": "ixtream🎩🍖", "active_status": "inactive", "verifications": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "follower_count": 2446, "custody_address": "0xda6f497cb157c676f9af0ba7f44cb4e8ef222502", "following_count": 2130, "verified_addresses": {"eth_addresses": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/erin-stroup-323689190/b5v9cjgr9tjb?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (139183, '0xff02c6b5321901604414078eb3b6043ca5833134', 0, 1, '2024-05-05 06:55:39+00', 0, 1, '{"fid": 211145, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiegrnialwu66u3nwzkn4gik4i2x2h4ip7y3w2dlymzlpxb5lrqbom", "profile": {"bio": {"text": "123", "mentioned_profiles": []}}, "username": "xinlidenuoyan", "power_badge": false, "display_name": "xinlidenuoyan🎩", "active_status": "inactive", "verifications": ["0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e"], "follower_count": 80, "custody_address": "0x31c4400a6304ef74ec2675350de4a4cd1263fd51", "following_count": 421, "verified_addresses": {"eth_addresses": ["0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/scrum-free\"}"}', NULL), - (379762, '0x74837417b3db45675f88272969c2bdfd2be17b1c', 0, 1, '2024-05-06 03:58:48+00', 0, 1, '{"fid": 501169, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a5e704c-06c8-48ca-ec18-588c83ac3700/rectcrop3", "profile": {"bio": {"text": "Top Amateur", "mentioned_profiles": []}}, "username": "haejing", "power_badge": false, "display_name": "haejing🎩🍖", "active_status": "inactive", "verifications": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "follower_count": 1214, "custody_address": "0x68ea6421d2795e06f41e54fe856b8ab596127379", "following_count": 608, "verified_addresses": {"eth_addresses": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/q2J4f31bRQYMseHj9\"}"}', NULL), - (430374, '0x762854d48605d22fda27f562f2ebf4937bde6549', 0, 1, '2024-05-06 06:15:20+00', 0, 1, '{"fid": 434670, "object": "user", "pfp_url": "https://i.imgur.com/9cik6S2.jpg", "profile": {"bio": {"text": "お触り大好きおじさん(31歳)", "mentioned_profiles": []}}, "username": "kouke", "power_badge": false, "display_name": "kouke🎩", "active_status": "inactive", "verifications": ["0x62824184b80d546ed740c5708dafbe5c25274f88"], "follower_count": 111, "custody_address": "0xb7e7abdcd7d8249bacbfc5013429d3f6a654a205", "following_count": 135, "verified_addresses": {"eth_addresses": ["0x62824184b80d546ed740c5708dafbe5c25274f88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/milkuro/remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (367826, '0x87ca4533c92994c16e8531551abb185e2e1d0971', 0, 1, '2024-05-06 03:07:36+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/abihcolvgokg/djd-3-wav?si=fe9b4318687b42bf91e34aa17e64490e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (352253, '0x9768649866041c394eb9537a90da6d338fa39ba7', 0, 1, '2024-05-06 01:18:52+00', 0, 1, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1345, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-laugh-now-cry-later-feat?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (352513, '0xf541396637103d5993078228a1295210c6f2f187', 0, 1, '2024-05-06 01:20:03+00', 0, 0, '{"fid": 506783, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZwo8f62hDBqKVPMKEce77h5sHqXmC1GJb11MLs6rv7Ww?filename=(3).jpg", "profile": {"bio": {"text": "hello sooah", "mentioned_profiles": []}}, "username": "!506783", "power_badge": false, "display_name": "jungsooah", "active_status": "inactive", "verifications": ["0x3dff897a7f229f7d5666de577c3e5cc760851cc6"], "follower_count": 80, "custody_address": "0x7c5de87f046811edc6670ea1a19827e8a95a7e8e", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x3dff897a7f229f7d5666de577c3e5cc760851cc6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/archmage_detour/mili-grown-ups-paradise-1?si=dd9b6de5cb074a9f83d7e0b0561fb1f5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (353668, '0x27549e3fc0c31b5ce39c8f63f93decf8bfbb6c3e', 0, 1, '2024-05-06 01:31:07+00', 0, 0, '{"fid": 411612, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeidouoc3s62kcuwxmc5v4jabypcrebpzojdvkzrz5522w66cwrtbf4", "profile": {"bio": {"text": "It''s a good day my friends💙 Let''s play together.\nThere will be only happiness 😆😆\n$ degen love /base /zora 🫂 👍 ❤❤\n\nhttps://zora.co/honeyjar8494", "mentioned_profiles": []}}, "username": "dontgiveup", "power_badge": false, "display_name": "🎩🍖 Honey-Jar ❤️‍🔥", "active_status": "inactive", "verifications": ["0xff417743c2a1dc5aa4c460a95c14b868cac07703", "0x9c9fc7a2724e53a707d3de5d4becc2317a6a08e0"], "follower_count": 3277, "custody_address": "0xbd69e5f69790d5ce4c75b4b0dcb33a4bac5c6c09", "following_count": 3567, "verified_addresses": {"eth_addresses": ["0xff417743c2a1dc5aa4c460a95c14b868cac07703", "0x9c9fc7a2724e53a707d3de5d4becc2317a6a08e0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fkGB1UxfwSgYBBGG9\"}"}', NULL), - (353923, '0x936331c3eaeb4b6ff28b509d08f2251f260a7c83', 0, 1, '2024-05-06 01:32:04+00', 0, 1, '{"fid": 398319, "object": "user", "pfp_url": "https://i.imgur.com/FcIQL9V.gif", "profile": {"bio": {"text": "Crypto触り始めて7年目。\n\nこれまでに溶かした資金は数知れず😇\nそろそろ爆益お願いします🤤\n\n", "mentioned_profiles": []}}, "username": "blacrypto", "power_badge": false, "display_name": "Black🎩🔄", "active_status": "inactive", "verifications": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "follower_count": 441, "custody_address": "0x395ddab687c4a838569dab0758997779750dd7e9", "following_count": 367, "verified_addresses": {"eth_addresses": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mQc3u7Ug57Nsn2Km8\"}"}', NULL), - (350728, '0xd1925794b47f30fc92597d7caa1be27bbebe46ae', 0, 1, '2024-05-06 01:05:10+00', 0, 3, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 78, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 241, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/davyd/just-a-vibe\"}"}', NULL), - (364777, '0x73887362a5f2efda19a6ea016d1ee538710a4bc3', 0, 1, '2024-05-06 02:49:14+00', 0, 2, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1610, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1606, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/troye-sivan/troye-sivan-angel-baby?si=24a79210bc4b413f9a8b08dacd7b25e3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (364150, '0x0b6669e19bf134c7328811e499f555367501ad7f', 0, 1, '2024-05-06 02:44:29+00', 0, 0, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1151, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 968, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rLRQYxhQYa3qk9if7\"}"}', 'sonata'), - (423309, '0x0350341a3b84f132d3925a9e993fb65ec3e0b13e', 0, 1, '2024-05-06 06:00:37+00', 0, 5, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1376, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1887, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dWkT1YiMtjJkLvkr7\"}"}', 'sonata'), - (362870, '0x14d10ab0f9192a3134898a637aef0b0468feb8ef', 0, 1, '2024-05-06 02:29:36+00', 0, 8, '{"fid": 400234, "object": "user", "pfp_url": "https://i.imgur.com/I4wpiBh.jpg", "profile": {"bio": {"text": "깜박깜박 잊고 있다가 “아맞다!!!!!”\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n그래서 내 별명은 amadda 💕 아마따 💕\n", "mentioned_profiles": []}}, "username": "amadda", "power_badge": false, "display_name": "Amadda", "active_status": "inactive", "verifications": ["0xf483e2d4da3e190f1cd6fdc42adc87fc29b6e066"], "follower_count": 2190, "custody_address": "0x3f313dd8fb8a9a130bbbbf5da2b2aef0c95dde81", "following_count": 1912, "verified_addresses": {"eth_addresses": ["0xf483e2d4da3e190f1cd6fdc42adc87fc29b6e066"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6WHZ6jZakV7SBakM6\"}"}', 'sonata'), - (490838, '0x503aca30d902878d935bf86e889c621bcab4608a', 0, 1, '2024-05-06 07:45:24+00', 0, 4, '{"fid": 501083, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd325875-0b22-4d4f-b23f-fb7d3e6bb800/rectcrop3", "profile": {"bio": {"text": "맞팔 매우 환영!! ", "mentioned_profiles": []}}, "username": "sun111", "power_badge": false, "display_name": "Spring1", "active_status": "inactive", "verifications": ["0xd1a5b9caabade7afbd14e8885a8b785bcff50a59"], "follower_count": 1213, "custody_address": "0x8dbe6ba722a3ca495bc3be416099c46880b5b239", "following_count": 1414, "verified_addresses": {"eth_addresses": ["0xd1a5b9caabade7afbd14e8885a8b785bcff50a59"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Hhqpf\"}"}', 'sonata'), - (478240, '0x7cc24368906438754b50c31f3698787c531cb751', 0, 1, '2024-05-06 07:23:41+00', 0, 5, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2034, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2605, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-449525512/bts-answer-love-myself?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (366720, '0x7ec712af045d10cad6624565d65eec4fca42f9fe', 0, 1, '2024-05-06 03:02:33+00', 0, 0, '{"fid": 509953, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ab8318f-424e-4656-ebb9-8ee4f221ba00/rectcrop3", "profile": {"bio": {"text": "Follow Me", "mentioned_profiles": []}}, "username": "!509953", "power_badge": false, "display_name": "Mehbob", "active_status": "inactive", "verifications": ["0xe541c967af5f69f509abc21e3dc72e46a58643c8"], "follower_count": 459, "custody_address": "0xa54516b197af11fbedd922486cb62f279927057f", "following_count": 1398, "verified_addresses": {"eth_addresses": ["0xe541c967af5f69f509abc21e3dc72e46a58643c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1nGCg\"}"}', NULL), - (366469, '0x11982c032cee77d4636ee216eba4448927c0b9dc', 0, 1, '2024-05-06 03:01:23+00', 0, 3, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9R54cit7AVWrp7TT9\"}"}', NULL), - (538212, '0x0af4cdceb54b1ca62028e26c895b18eaaf18e7e8', 0, 1, '2024-05-06 09:48:31+00', 0, 0, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 829, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 928, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NPqh9\"}"}', 'sonata'), - (354841, '0x9cebc3b68934e8d3360196278b4cda5bdc963d10', 0, 1, '2024-05-06 01:39:45+00', 0, 0, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 27, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rtfHnoxxqqqYeopW7\"}"}', 'bgm'), - (356050, '0xf740cc7759ae65aca1bc19dda768ea5b9a2b71fa', 100, 1, '2024-05-06 01:43:48+00', 0, 0, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2018, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2590, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sonata.tips/\"}","{\"url\":\"https://soundcloud.com/gst-5/bts-jimin-promise?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (355870, '0xcb7e868aebaf3f739808b45ae38b2693d990336c', 22, 1, '2024-05-06 01:43:21+00', 0, 0, '{"fid": 441526, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a36198f2-626c-4a8c-e08f-e0d580c26600/rectcrop3", "profile": {"bio": {"text": "Graphic designer➿️", "mentioned_profiles": []}}, "username": "titan899", "power_badge": false, "display_name": "Amir🎩🔮🍖", "active_status": "inactive", "verifications": ["0x1ad189e510a9d2b71f8386f14bdc5824b7470ee5"], "follower_count": 737, "custody_address": "0xcb3b09e369b6f053fa8256143ec6404601633ae8", "following_count": 797, "verified_addresses": {"eth_addresses": ["0x1ad189e510a9d2b71f8386f14bdc5824b7470ee5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Sweetwater by Ramin Djawadi on #SoundCloud https://on.soundcloud.com/5CdcK\"}"}', NULL), - (78921, '0xf4c619267b6a2302a63d708871229afd785e66cd', 0, 1, '2024-05-05 00:16:31+00', 0, 2, '{"fid": 8885, "object": "user", "pfp_url": "https://i.imgur.com/mBmqcTV.gif", "profile": {"bio": {"text": "product mgr. pursuing onchain music | onchain artist relations @rohki | music patent 11,620,649 | @techstars alum | @zagster cofounder (acq. by superpedestrian)", "mentioned_profiles": []}}, "username": "jasonmeinzer", "power_badge": true, "display_name": "jasonmeinzer.eth 🎩↑🔮🍖", "active_status": "inactive", "verifications": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "follower_count": 452, "custody_address": "0x973ce5bbc61897a0cffa24fc91b4c1d6874c7896", "following_count": 862, "verified_addresses": {"eth_addresses": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rohki/reflection?referral_source=link\"}"}', NULL), - (355461, '0x7fe115265dd3861debc913dfd4acfa110f890a1d', 22, 1, '2024-05-06 01:42:14+00', 0, 1, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 27, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 118, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MTvs2xWJnFu6zyBX7\"}"}', 'bgm'), - (721448, '0x8c18300d5d677b429e3cb28c064ce8724edd2bf1', 0, 1, '2024-05-06 20:01:28+00', 0, 0, '{"fid": 410543, "object": "user", "pfp_url": "https://i.imgur.com/mM32FIY.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mehrshad18", "power_badge": false, "display_name": "mehrshad 🎩🍖", "active_status": "inactive", "verifications": ["0x0a0230ba98f81b90c737df36350db9216626c842"], "follower_count": 1818, "custody_address": "0x9e1a6dab0a01e3e0720f7c6903aad5ed2e6e0f9e", "following_count": 1957, "verified_addresses": {"eth_addresses": ["0x0a0230ba98f81b90c737df36350db9216626c842"], "sol_addresses": ["FmcDEZm4coRzTyQf9bodHMCW9aRP3Ak2sNVXYb9tLWwA"]}}', '{"{\"url\":\"Listen to HNTR - Just a Dream by mau5trap on #SoundCloud https://soundcloud.com/mau5trap/hntr-just-a-dream?ref=clipboard&p=a&c=0&si=565ffbf283f24f5c92b349728eaef387&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (363734, '0x11bca7b3a87841430f7a3256767ce4c01550c416', 0, 1, '2024-05-06 02:38:51+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2924, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2346, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2RSjE\"}"}', 'sonata'), - (354103, '0x23ad9462f351902db9b24765c356c072167a5be2', 0, 1, '2024-05-06 01:33:48+00', 0, 1, '{"fid": 411612, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeidouoc3s62kcuwxmc5v4jabypcrebpzojdvkzrz5522w66cwrtbf4", "profile": {"bio": {"text": "It''s a good day my friends💙 Let''s play together.\nThere will be only happiness 😆😆\n$ degen love /base /zora 🫂 👍 ❤❤\n\nhttps://zora.co/honeyjar8494", "mentioned_profiles": []}}, "username": "dontgiveup", "power_badge": false, "display_name": "🎩🍖 Honey-Jar ❤️‍🔥", "active_status": "inactive", "verifications": ["0xff417743c2a1dc5aa4c460a95c14b868cac07703", "0x9c9fc7a2724e53a707d3de5d4becc2317a6a08e0"], "follower_count": 3277, "custody_address": "0xbd69e5f69790d5ce4c75b4b0dcb33a4bac5c6c09", "following_count": 3567, "verified_addresses": {"eth_addresses": ["0xff417743c2a1dc5aa4c460a95c14b868cac07703", "0x9c9fc7a2724e53a707d3de5d4becc2317a6a08e0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fkGB1UxfwSgYBBGG9\"}"}', 'sonata'), - (354102, '0x1d9caea1420b4716dd2383d6e8cede1b43a1b565', 0, 1, '2024-05-06 01:33:43+00', 0, 0, '{"fid": 500694, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c753f5d7-69a6-4635-3e7e-0b358ac40300/original", "profile": {"bio": {"text": "farcast communicator\nhttps://www.alfafrens.com/channel/0x9158931f18B24706653A241825d2B43163ca5C56", "mentioned_profiles": []}}, "username": "chans12", "power_badge": false, "display_name": "bluebottle💧", "active_status": "inactive", "verifications": ["0xb6cac3eebe7a88c05cefa1839cec250b6cbe66e8"], "follower_count": 1014, "custody_address": "0x31550fa5975b5c79d0a230ddc6e6dafad5e03c11", "following_count": 1089, "verified_addresses": {"eth_addresses": ["0xb6cac3eebe7a88c05cefa1839cec250b6cbe66e8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/C8yQWgz2c3evrQ9z9\"}"}', NULL), - (366721, '0x151d4a9b0e7897651d9c5fad028507518d3a4268', 0, 1, '2024-05-06 03:02:44+00', 0, 0, '{"fid": 514406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce843250-84af-49b1-98b0-d1ca12369200/rectcrop3", "profile": {"bio": {"text": "livvy", "mentioned_profiles": []}}, "username": "!514406", "power_badge": false, "display_name": "olivia", "active_status": "inactive", "verifications": ["0xb8e6130f4daa11bbe270fb85f3f5bbe6146dc9ad"], "follower_count": 6, "custody_address": "0x879564d7cea82c2ab56b27c982dd0e1e83e32d30", "following_count": 78, "verified_addresses": {"eth_addresses": ["0xb8e6130f4daa11bbe270fb85f3f5bbe6146dc9ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-956334953/coldplay-viva-la-vida?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (353240, '0xca0a6d27f079a559a10c3918d29fca3a7138ba24', 0, 1, '2024-05-06 01:28:22+00', 0, 2, '{"fid": 477741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ca1b374-391e-4594-c57a-053a77873500/rectcrop3", "profile": {"bio": {"text": "존버남/신뢰/의리/믿음/일상공유/슈캐\n/무조건 리캐 하트/🎩🍖", "mentioned_profiles": []}}, "username": "noincil", "power_badge": false, "display_name": "JON BER🎩🍖", "active_status": "inactive", "verifications": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "follower_count": 3021, "custody_address": "0xfb1fe84faf8d0adb346adb8bee2cc8bc8d32fa4b", "following_count": 3001, "verified_addresses": {"eth_addresses": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki32/crush-by-your-side?in=trending-music-kr/sets/pop&si=61bd1ca910b1402097fbeaeccc3884dc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (363089, '0xf83dcc6946414084ee2554bbbb11b3a6c4a2bfd7', 0, 1, '2024-05-06 02:30:03+00', 0, 9, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2199, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2200, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Tm663\"}"}', 'sonata'), - (363186, '0xc03eec141080f4d8d8745637742b603ed1bb8efe', 0, 1, '2024-05-06 02:30:46+00', 0, 3, '{"fid": 248532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2843a55-6e10-4831-d18c-0246e29acf00/rectcrop3", "profile": {"bio": {"text": "Trader also like NFT🤡", "mentioned_profiles": []}}, "username": "mesiban", "power_badge": false, "display_name": "Melori", "active_status": "inactive", "verifications": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "follower_count": 1382, "custody_address": "0x86ba576f71ec9462e3e68ef61026c177eafdc1c3", "following_count": 1536, "verified_addresses": {"eth_addresses": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "sol_addresses": ["8X2EPnpX6aLo4GEuLvLQiDrQ9JZq3ZSAaVTrPnCmooDk"]}}', '{"{\"url\":\"https://on.soundcloud.com/sYhboBe3duB8K28S9\"}"}', NULL), - (431903, '0x36406172acf85c84ce750a1052a8f7e321a415c9', 0, 1, '2024-05-06 06:17:46+00', 0, 2, '{"fid": 502477, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4508045-fe7f-46b6-e8e0-f42a84990f00/rectcrop3", "profile": {"bio": {"text": "Peace, freedom, love", "mentioned_profiles": []}}, "username": "gungang", "power_badge": false, "display_name": "gungang", "active_status": "inactive", "verifications": ["0xb8c7a08071b391855f021542bc035af70249c677"], "follower_count": 858, "custody_address": "0x98a3dedc190bec2707178e90952593822a1f63a0", "following_count": 1565, "verified_addresses": {"eth_addresses": ["0xb8c7a08071b391855f021542bc035af70249c677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xYpHMFKiujgXcocA8\"}"}', 'sonata'), - (366467, '0x69c7069fa6ae31a13143fb862c14de79e328ec94', 0, 1, '2024-05-06 03:01:03+00', 0, 2, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1396, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 964, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hyzyttyxxglp/djseok-klubb-bumping-korea-vol62?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (354573, '0xc301dafae61be255395120677598c288a4b8f7ba', 0, 1, '2024-05-06 01:36:15+00', 0, 2, '{"fid": 500202, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ca30846-193f-4616-c68a-a27cfc340200/rectcrop3", "profile": {"bio": {"text": "ideal runner | developer\nI''m zerone", "mentioned_profiles": []}}, "username": "eidos", "power_badge": false, "display_name": "eido🎩", "active_status": "inactive", "verifications": ["0x72fabaccadc774c88cf14944fb544ffb4c56e53f"], "follower_count": 642, "custody_address": "0x803702030af6c99d92c27427b542703961f40e9e", "following_count": 509, "verified_addresses": {"eth_addresses": ["0x72fabaccadc774c88cf14944fb544ffb4c56e53f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/victoria-antonelli-895773260/full-album-day6-fourever?si=568a03156e6c487fad2586044c24fb22&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (363091, '0xe6482ab316ce30bb6f351ec2505b53529661d357', 0, 1, '2024-05-06 02:30:02+00', 0, 7, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1258, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 918, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-191799314/akmu-1?si=aa51569777214f85a14ff2c7f15c4ac9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (354820, '0x3f7fd55a595fd0076cee60d881edf689a776749b', 0, 1, '2024-05-06 01:39:51+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 592, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 421, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kv5tj1Zex2yKmRiJ9\"}"}', NULL), - (454091, '0xd03170d1dfbdebd4a761d9b903bf4e29e0f05d54', 0, 1, '2024-05-06 06:49:35+00', 10, 2, '{"fid": 385605, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b886de91-9dfd-48a9-cc44-4cae2ed1a600/original", "profile": {"bio": {"text": "Host /yotei\nSince 2021", "mentioned_profiles": []}}, "username": "wallmart", "power_badge": false, "display_name": "猫太郎 🎩⛓️", "active_status": "inactive", "verifications": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "follower_count": 1682, "custody_address": "0xfb29425d19d91e38a125fff6482314945498bc53", "following_count": 1341, "verified_addresses": {"eth_addresses": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eMAw3grGkJRAuuA47\"}"}', NULL), - (350544, '0x559af39f48b2b2d43f23f1946aff454d65030844', 0, 1, '2024-05-06 01:04:35+00', 0, 1, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 78, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 241, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/davyd/nockemout\"}"}', NULL), - (387181, '0x1546b0f977577450f34bc1406ad9d94ab8aca82b', 0, 1, '2024-05-06 04:15:46+00', 0, 2, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 469, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 770, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Vafjo\"}"}', 'sonata'), - (365224, '0x488591c62486310ad8440b33e25993717a2dc221', 0, 1, '2024-05-06 02:52:26+00', 0, 6, '{"fid": 283893, "object": "user", "pfp_url": "https://i.imgur.com/6jQAcxs.jpg", "profile": {"bio": {"text": "hard worker for a better life,love defi", "mentioned_profiles": []}}, "username": "pervysage", "power_badge": false, "display_name": "MajidRp74 🎩", "active_status": "inactive", "verifications": ["0x0c1d47312bb5212cb8b946ec30660d1fa98ab6cf"], "follower_count": 1194, "custody_address": "0xbea89cabbf811e363a15364ba0e020ff3db5f466", "following_count": 961, "verified_addresses": {"eth_addresses": ["0x0c1d47312bb5212cb8b946ec30660d1fa98ab6cf"], "sol_addresses": ["J4VYrEnKJseLe4Sxjhss1KTUZUkaVTKeXWjoGRGxir7w"]}}', '{"{\"url\":\"https://soundcloud.com/trending-music-nl/sets/folk?si=5cdb1582c4c34910857d10810e8134c6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (355387, '0x4378490d30626901965980de75774936d4871343', 0, 1, '2024-05-06 01:41:12+00', 0, 1, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 1992, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2827, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZrS5MZNF2uK4kh1eA\"}"}', NULL), - (363092, '0x70e186802c7450224895aed9bac509bdce219ec6', 0, 1, '2024-05-06 02:30:17+00', 0, 4, '{"fid": 414401, "object": "user", "pfp_url": "https://i.imgur.com/ZuDvACg.jpg", "profile": {"bio": {"text": "소통 환영! 같이 부자됩시다! 늦더라도 빠짐없이 다 찾아갑니다. 슈캐사용자", "mentioned_profiles": []}}, "username": "gajagoyolo", "power_badge": false, "display_name": "ChoCo", "active_status": "inactive", "verifications": ["0x804bd9fbfd8a759c5fd8e02bc1af5cf9302cee95"], "follower_count": 2926, "custody_address": "0x094ef50fa7216a19e3404cebc696cfede955667b", "following_count": 3162, "verified_addresses": {"eth_addresses": ["0x804bd9fbfd8a759c5fd8e02bc1af5cf9302cee95"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share138/heize-2021-on-rainy-day?si=5011133a7c2c412db8a03d55a8cf8e7b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (354842, '0x6eb08f0d237df7ba5e076f8a63228da3418d5c77', 0, 1, '2024-05-06 01:39:00+00', 0, 0, '{"fid": 500694, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c753f5d7-69a6-4635-3e7e-0b358ac40300/original", "profile": {"bio": {"text": "farcast communicator\nhttps://www.alfafrens.com/channel/0x9158931f18B24706653A241825d2B43163ca5C56", "mentioned_profiles": []}}, "username": "chans12", "power_badge": false, "display_name": "bluebottle💧", "active_status": "inactive", "verifications": ["0xb6cac3eebe7a88c05cefa1839cec250b6cbe66e8"], "follower_count": 1014, "custody_address": "0x31550fa5975b5c79d0a230ddc6e6dafad5e03c11", "following_count": 1089, "verified_addresses": {"eth_addresses": ["0xb6cac3eebe7a88c05cefa1839cec250b6cbe66e8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LhGD21e3TxQHrKvS9\"}"}', NULL), - (457889, '0x0bca14db2fdbcea6b80a58de972e7e3afc1dda9b', 0, 1, '2024-05-06 06:56:31+00', 0, 3, '{"fid": 505168, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/317addbe-a594-4142-cdb9-5a7299aff000/rectcrop3", "profile": {"bio": {"text": "Interested in crypto and investing", "mentioned_profiles": []}}, "username": "ft-crypto", "power_badge": false, "display_name": "Passenger", "active_status": "inactive", "verifications": ["0x0c817004bb0419237dcd87426740a3fc1f9b6f1d"], "follower_count": 162, "custody_address": "0x50a6eca99e859f64b0ec06112596df596bdd6b5b", "following_count": 220, "verified_addresses": {"eth_addresses": ["0x0c817004bb0419237dcd87426740a3fc1f9b6f1d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to شجریان - ببار ای بارون ببار by Sepidedam 3 | ۳ سپیده دم on #SoundCloud https://on.soundcloud.com/nNZq7\"}"}', NULL), - (353302, '0x7d18ca5e41d05596a6b1cb4fda738e30531607f4', 0, 1, '2024-05-06 01:28:39+00', 0, 1, '{"fid": 188421, "object": "user", "pfp_url": "https://zerion-dna.s3.us-east-1.amazonaws.com/onepointo/45485468fe86dc228214abe31b84c43362265a15.png", "profile": {"bio": {"text": "Music nfts! \nhttps://www.sound.xyz/playlist/2bb58385-0745-4d0e-a80a-ef0fe58a18f4 ", "mentioned_profiles": []}}, "username": "777999", "power_badge": false, "display_name": "Thanh 🔴🎩🔵", "active_status": "inactive", "verifications": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "follower_count": 603, "custody_address": "0xbc81245772f4d0c531ad1715407e37be9bbe43fd", "following_count": 719, "verified_addresses": {"eth_addresses": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/tk/on-the-other-side-w-trey-smith?referral_source=link\"}"}', 'sonata'), - (366350, '0x393f34230cced4da9f697db1f77016d92796f11a', 0, 1, '2024-05-06 03:00:44+00', 0, 2, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UforzkdyaWfsvKwk7\"}"}', NULL), - (431916, '0x3c9ff7189809c411470a298bc6282de6a16c46a7', 1010, 1, '2024-05-06 06:17:48+00', 0, 12, '{"fid": 406493, "object": "user", "pfp_url": "https://i.imgur.com/nVBBwsm.jpg", "profile": {"bio": {"text": "항상 파이팅👍 ", "mentioned_profiles": []}}, "username": "yeomks", "power_badge": false, "display_name": "Yeomks🎩🍖", "active_status": "inactive", "verifications": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "follower_count": 4233, "custody_address": "0xb3043f0e2ae80ab98c9f1b03df36eba4a5dbf15c", "following_count": 3115, "verified_addresses": {"eth_addresses": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/indie-city/lauv-i-like-me-better?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (367819, '0x750431eb47a7224516fd149cf95aea79086a2377', 0, 1, '2024-05-06 03:07:23+00', 0, 2, '{"fid": 506311, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7cafab0e-a961-47a7-fa4d-1aca4236a100/rectcrop3", "profile": {"bio": {"text": "F4f Au life ", "mentioned_profiles": []}}, "username": "totoro-", "power_badge": false, "display_name": "Totoro", "active_status": "inactive", "verifications": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "follower_count": 574, "custody_address": "0x3a6c6aaf81924bd0f76f9420131f7a2c4e7d5586", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-874419878/despacito-justin-bieber?si=f48c99667a6f4ca4b65ecd989d41c52d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (541321, '0xac4dfefbd81e694c0ac049ae1d02004854922a69', 0, 1, '2024-05-06 09:56:21+00', 0, 1, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HSWyV33qBaHm2FDz8\"}"}', 'sonata'), - (384017, '0xfbeb9f5601dd62aca0dd3944bc7af8c0d6d5989e', 0, 1, '2024-05-06 04:06:41+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2924, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2346, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/r5HK8\"}"}', 'sonata'), - (490635, '0x487a0a2000a67dce98e4afb7aeec1564f953da7c', 5000, 1, '2024-05-06 07:44:16+00', 0, 2, '{"fid": 448755, "object": "user", "pfp_url": "https://i.imgur.com/JSIDuOV.jpg", "profile": {"bio": {"text": "I Love Football \n Be strong and fight for your goals 👊🏼", "mentioned_profiles": []}}, "username": "mehrdad10", "power_badge": false, "display_name": "Mehrdad 🎩", "active_status": "inactive", "verifications": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "follower_count": 1378, "custody_address": "0xb0b262bb2dced2178dd6ea9d677116b783d527af", "following_count": 1460, "verified_addresses": {"eth_addresses": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qEU56UZfCucPmXYD7\"}"}', NULL), - (333410, '0xfef36ffe38277c3ea28ed17298f839e500e470bd', 0, 1, '2024-05-05 23:01:11+00', 0, 0, '{"fid": 188421, "object": "user", "pfp_url": "https://zerion-dna.s3.us-east-1.amazonaws.com/onepointo/45485468fe86dc228214abe31b84c43362265a15.png", "profile": {"bio": {"text": "Music nfts! \nhttps://www.sound.xyz/playlist/2bb58385-0745-4d0e-a80a-ef0fe58a18f4 ", "mentioned_profiles": []}}, "username": "777999", "power_badge": false, "display_name": "Thanh 🔴🎩🔵", "active_status": "inactive", "verifications": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "follower_count": 602, "custody_address": "0xbc81245772f4d0c531ad1715407e37be9bbe43fd", "following_count": 719, "verified_addresses": {"eth_addresses": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rohki/desperado-no-2?referral=0xa41a9630b65e4ea1216211ef99c5b2b1db069c85&referral_source=link\"}"}', NULL), - (372043, '0xe7790d48df512e6fc52a54d9e335e3c87ddf385e', 0, 1, '2024-05-06 03:36:49+00', 0, 2, '{"fid": 458798, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82cd9ebe-756d-4dbb-ec94-295a5ebbdb00/rectcrop3", "profile": {"bio": {"text": "Following the hype, 8-8 worker, addicted to farcaster and NFT", "mentioned_profiles": []}}, "username": "sogerns", "power_badge": false, "display_name": "Jasonnn🔵🎩", "active_status": "inactive", "verifications": ["0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97", "0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97"], "follower_count": 148, "custody_address": "0x2b3db9357382cfe1e3e3c278ab6eead7bc5de932", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97", "0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/marshmellomusic/alone\"}"}', NULL), - (367948, '0x828ed0a3a980ba17283d71af2da9dff71fa9986f', 0, 1, '2024-05-06 03:08:17+00', 0, 1, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yo-sea/flower?si=31ae4131478a45c9962a9ca81c7aba78&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (427132, '0x484aaaecfc31b9f6ce122b3bf9e652650950b238', 0, 1, '2024-05-06 06:07:18+00', 0, 2, '{"fid": 449176, "object": "user", "pfp_url": "https://i.imgur.com/rpUh70j.jpg", "profile": {"bio": {"text": "“Go confidently in the direction of your dreams! Live the life you’ve imagined!”", "mentioned_profiles": []}}, "username": "moza9270", "power_badge": false, "display_name": "Mohammad Zdf", "active_status": "inactive", "verifications": ["0x56e3d17b082db2529291d0fb2986cad87878de86"], "follower_count": 621, "custody_address": "0x8ac37d31ddf6a725967de72acd9b0adab2958ca7", "following_count": 942, "verified_addresses": {"eth_addresses": ["0x56e3d17b082db2529291d0fb2986cad87878de86"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/enriqueiglesias/hero-album-version?si=e9b6f031908d49aabea4d8f69b7fb181&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (478239, '0x24f5c4481359799b5cc305e233ab9833e01b2203', 0, 1, '2024-05-06 07:23:30+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2615, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2441, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gyyopgjfqo3g/0ph8pllfnpmu?si=aa51f56133834e0786636d13056f8f4e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (157281, '0x05d60aa9eac609f1a05d05a12fc6e345a8032138', 0, 1, '2024-05-05 09:22:59+00', 0, 0, '{"fid": 509953, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ab8318f-424e-4656-ebb9-8ee4f221ba00/rectcrop3", "profile": {"bio": {"text": "Follow Me", "mentioned_profiles": []}}, "username": "!509953", "power_badge": false, "display_name": "Mehbob", "active_status": "inactive", "verifications": ["0xe541c967af5f69f509abc21e3dc72e46a58643c8"], "follower_count": 459, "custody_address": "0xa54516b197af11fbedd922486cb62f279927057f", "following_count": 1398, "verified_addresses": {"eth_addresses": ["0xe541c967af5f69f509abc21e3dc72e46a58643c8"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/4f23b14a-7554-4da7-a38c-c4f38530ec79\"}"}', NULL), - (385022, '0xeb653205910b3ab6a58b9c68ee05dcdd9fcceb7e', 0, 1, '2024-05-06 04:11:33+00', 0, 2, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 3958, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7fzHQizxTqy8wTXwlrgPQQ?si=d4H_ejJBSeyLc-mi97g24A\"}"}', 'bangers'), - (492017, '0x4cccd24c0f6d86ca64def8df7a2f56a374bc295e', 0, 1, '2024-05-06 07:47:07+00', 0, 2, '{"fid": 514153, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7f05dd2-b38f-4106-1969-7fb26a6cd200/rectcrop3", "profile": {"bio": {"text": "Web3 developer. I’m girl from /farcaster", "mentioned_profiles": []}}, "username": "!514153", "power_badge": false, "display_name": "Sara.eth", "active_status": "inactive", "verifications": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "follower_count": 135, "custody_address": "0x006d4bf65143528a0e7e8860a2fee6c7a4ba2aec", "following_count": 459, "verified_addresses": {"eth_addresses": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Shadmehr Aghili - BI EHSAS | شادمهر عقیلی - بی احساس by Milad Hashemi on #SoundCloud https://on.soundcloud.com/pQLWB\"}"}', NULL), - (295828, '0x05cac1d7285960e3711b90a8c21f37e9e08a5e32', 1000, 1, '2024-05-05 20:12:58+00', 0, 5, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc"], "follower_count": 217, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 188, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9edf2c2e-0715-42ae-c166-96306ec42200/original\"}","{\"url\":\"https://www.sound.xyz/yoshiromare/kitsune-ft-duo-do?referral=0x0d3c16f2d152373539610da87d231f4d78f73a35\"}"}', 'albumoftheday'), - (138463, '0x3623691f5253d7bc2e75c4b0450897ffca06446a', 0, 1, '2024-05-05 06:43:59+00', 0, 1, '{"fid": 480030, "object": "user", "pfp_url": "https://i.imgur.com/bWcocc5.jpg", "profile": {"bio": {"text": "Ramin Izadi Known As East.Voice", "mentioned_profiles": []}}, "username": "eastvoice", "power_badge": false, "display_name": "East.Voice", "active_status": "inactive", "verifications": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "follower_count": 283, "custody_address": "0x042b8bb712aa2778ed4269efc3693f1edfce437a", "following_count": 1061, "verified_addresses": {"eth_addresses": ["0xaa466103793319fc3d6c7420d77e6e7cf586c877"], "sol_addresses": ["6acVMceqpiogwEbdtzn8XxgyD3Vk6EaizXHYmTS39SG8"]}}', '{"{\"url\":\"https://www.sound.xyz/eastvoicebeatz/some-ish-on-me?referral=0x7de3ca13e28120447257448e13f44c9a4efab507\"}"}', NULL), - (368079, '0xc2f97801a6009ceb2f6a890c85c97eefedf735b4', 0, 1, '2024-05-06 03:10:41+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yo-sea/flower?si=31ae4131478a45c9962a9ca81c7aba78&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (429595, '0xc6c273e22969363aadd6044c9ddb82f62afddcb0', 0, 1, '2024-05-06 06:12:24+00', 0, 2, '{"fid": 254339, "object": "user", "pfp_url": "https://i.imgur.com/PRerC7u.jpg", "profile": {"bio": {"text": "お削りと麻雀が好きなアカウントです❗️\n初心者ですが宜しくお願いします🙏\nXもやってます‼️\nhttps://x.com/shun__xyz", "mentioned_profiles": []}}, "username": "shunchan", "power_badge": false, "display_name": "Shunchan🎩🥏🍖🔵", "active_status": "inactive", "verifications": ["0xa85bd2bff15565b9653fdba9aedf355d5352da13"], "follower_count": 612, "custody_address": "0xbd448d0dfab7e79cb9f7c109aa3d5f4c182b949d", "following_count": 410, "verified_addresses": {"eth_addresses": ["0xa85bd2bff15565b9653fdba9aedf355d5352da13"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U8wXQMTQcUYav4CU7\"}"}', NULL), - (368078, '0x38ec9006e829c18492e41a1e7fa3211f7daa9598', 0, 1, '2024-05-06 03:11:15+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/boris-brejcha/terminal-zero?si=bac6a52333244c838811ca25f36471c6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (511365, '0x3d4e38a4a891b9a9b116dc337166e1ddeb0b22c0', 0, 1, '2024-05-06 08:23:31+00', 0, 1, '{"fid": 443238, "object": "user", "pfp_url": "https://i.imgur.com/xEwARlc.jpg", "profile": {"bio": {"text": "A logic guy with an eye to the future", "mentioned_profiles": []}}, "username": "0xdondan", "power_badge": false, "display_name": "DonPablo", "active_status": "inactive", "verifications": ["0x46011ab45660180f0a23b75c00e60b43d88ba299"], "follower_count": 857, "custody_address": "0xc1a3a2858fed922f289afdf629c95f6ad6fba7b6", "following_count": 1061, "verified_addresses": {"eth_addresses": ["0x46011ab45660180f0a23b75c00e60b43d88ba299"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eWUgXAaPDovn8xUr9\"}"}', NULL), - (458827, '0xf796f7a41a7a6e1d8bb7448dcdf9637c40eda9e6', 0, 1, '2024-05-06 06:58:35+00', 0, 3, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1151, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1064, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hm0o4smlgxpq/good-day-feat-prod-ph-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (489673, '0x378a2c602d1f2378f8f7b4756f5be988b9e82452', 0, 1, '2024-05-06 07:42:19+00', 0, 4, '{"fid": 399428, "object": "user", "pfp_url": "https://i.imgur.com/tfk208K.jpg", "profile": {"bio": {"text": "I love digital marketing and nft", "mentioned_profiles": []}}, "username": "metanft", "power_badge": false, "display_name": "Meta Nft", "active_status": "inactive", "verifications": ["0x6db11a284803898b0bd4efb09ee8749fee36d00b"], "follower_count": 1376, "custody_address": "0x38319b54a45bc8e26f49990f00d1d469b662405d", "following_count": 1695, "verified_addresses": {"eth_addresses": ["0x6db11a284803898b0bd4efb09ee8749fee36d00b"], "sol_addresses": ["2eDfkekYbRXWwjcp5fKpr1ukxmpWhG4JL9h9ZQBSbSJw"]}}', '{"{\"url\":\"https://soundcloud.com/vilius-dell/eminem-beautiful?ref=clipboard&p=i&c=0&si=704E0C6B91454E6BB70CE564426F69CA&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (368243, '0x40006625f228570d462bfd0373f9b0f72aa07445', 0, 1, '2024-05-06 03:11:27+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/boris-brejcha/terminal-zero?si=bac6a52333244c838811ca25f36471c6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (368235, '0x3b69033b8273e14d2178bb12f6b1c3682bfc3c02', 0, 1, '2024-05-06 03:11:49+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/xfk2xjdeffoa/you?si=33fc073fbca7445fb86561d3bf126716&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (423706, '0xa310f51b2c0ed9f35f91e179147427f9ed6d2e31', 0, 1, '2024-05-06 06:02:13+00', 0, 2, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 691, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1041, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DzPZuuA1D4cDyGtk7\"}"}', NULL), - (368250, '0xc41b1985aa8c3b941de2da97b6f4c9d983ca6e42', 0, 1, '2024-05-06 03:12:08+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/xfk2xjdeffoa/you?si=33fc073fbca7445fb86561d3bf126716&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (368297, '0xc006dda4340d05bae053753fff39b63094d3a5f8', 0, 1, '2024-05-06 03:12:59+00', 0, 1, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/folk?si=fc7c871fd69b4f39b0fd77e4993ce87e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (368233, '0x4723d5deae51df5fb72e1ac76708e956cc9a61c4', 0, 1, '2024-05-06 03:11:24+00', 0, 2, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2058, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1722, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bM4wE\"}"}', NULL), - (458182, '0x53b803d7ca55d4ff83d9fd3bf23c7ed9214e4ca1', 0, 1, '2024-05-06 06:56:51+00', 0, 8, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 1972, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 1891, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/138bdda9-2e94-48bc-4a53-7581adb35400/original\"}","{\"url\":\"https://on.soundcloud.com/pjCtoZVMjP4tUdwe9\"}"}', 'sonata'), - (368298, '0xa0f5e5b4ca71e068db78502cab9ad72ff37b8c05', 0, 1, '2024-05-06 03:12:42+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/indie?si=8a00ab7aa4f147cdb078b684faee131c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (451625, '0x595d05e47622780a1c1f0185b27edee2f2f6a334', 0, 1, '2024-05-06 06:47:34+00', 0, 0, '{"fid": 432964, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiheupri3uhvbvwalw3th53rmbgmnljioafjxekkz2jgisbo4x3cl4", "profile": {"bio": {"text": "\ncrypto dreamer, cancer survivor, tkd itf blackbelt, heart father, and more....", "mentioned_profiles": []}}, "username": "pablo9678a", "power_badge": false, "display_name": "Zonda🎩🤌🏽⛓️🤝", "active_status": "inactive", "verifications": ["0x9ad01751f515952b2d0508d3e444bc5575b964b7", "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509"], "follower_count": 493, "custody_address": "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509", "following_count": 465, "verified_addresses": {"eth_addresses": ["0x9ad01751f515952b2d0508d3e444bc5575b964b7", "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/avalosvenom23/duki-givenchy\"}"}', NULL), - (228441, '0x4711d865a02ab1942592670da712b5d874423c40', 0, 1, '2024-05-05 13:32:40+00', 0, 2, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1201, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 948, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0EFhJVbOD1m9nwRVg1eoIB?si=f987baa6829047e3\"}"}', NULL), - (139181, '0x791fa08f0b1713d4a59965b43c6cbad5943376dc', 0, 1, '2024-05-05 06:54:37+00', 0, 0, '{"fid": 211145, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiegrnialwu66u3nwzkn4gik4i2x2h4ip7y3w2dlymzlpxb5lrqbom", "profile": {"bio": {"text": "123", "mentioned_profiles": []}}, "username": "xinlidenuoyan", "power_badge": false, "display_name": "xinlidenuoyan🎩", "active_status": "inactive", "verifications": ["0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e"], "follower_count": 80, "custody_address": "0x31c4400a6304ef74ec2675350de4a4cd1263fd51", "following_count": 421, "verified_addresses": {"eth_addresses": ["0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/sem-nocao?referral=0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e&referral_source=link\"}"}', NULL), - (510232, '0x3edd3275741545810def521043d82569b005ebb4', 0, 1, '2024-05-06 08:21:23+00', 0, 1, '{"fid": 424698, "object": "user", "pfp_url": "https://i.imgur.com/A6Cg9r0.jpg", "profile": {"bio": {"text": "I love crypto", "mentioned_profiles": []}}, "username": "captinmahsa", "power_badge": false, "display_name": "Masa", "active_status": "inactive", "verifications": ["0x851e2341d4a5eb48b2ab305dd3924ba3a3b3812c"], "follower_count": 928, "custody_address": "0xd360ea34a1db8735b1d15a5870e2f3980596af26", "following_count": 1181, "verified_addresses": {"eth_addresses": ["0x851e2341d4a5eb48b2ab305dd3924ba3a3b3812c"], "sol_addresses": ["AxUtZejaXYgEkgTbXSxdSqJCXGGaAg1TQm2DgXzeGhN2"]}}', '{"{\"url\":\"https://soundcloud.com/tomwaits/green-grass-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (384247, '0x837090d3e9a03215f620df73073ba635967b2add', 0, 1, '2024-05-06 04:09:35+00', 0, 5, '{"fid": 401137, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreicsyezfqnce4pu77dnahnx543eivcihqyfgcqyzg7uvtv62niotcy", "profile": {"bio": {"text": "Iwanttoknowabouteverything. \n\n 소통이제일즐거워 뚠뚠🐜🐜🐜", "mentioned_profiles": []}}, "username": "godhee", "power_badge": false, "display_name": "Godhee 🍖🎩", "active_status": "inactive", "verifications": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "follower_count": 2740, "custody_address": "0xee713090ee73a3df4a8113b14862bc87a5a30af6", "following_count": 2915, "verified_addresses": {"eth_addresses": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wVkbukNiW9jaYwJn7\"}"}', 'sonata'), - (375861, '0xfea9516c43ca87e70ce008488a1dc584b316a97f', 0, 1, '2024-05-06 03:50:08+00', 0, 0, '{"fid": 246627, "object": "user", "pfp_url": "https://i.imgur.com/h9TvjYH.jpg", "profile": {"bio": {"text": "i''m donny", "mentioned_profiles": []}}, "username": "donny-donny", "power_badge": false, "display_name": "donny🎩 🍖", "active_status": "inactive", "verifications": ["0xf17fbe2dcb26ffdd621ae04719a4d10b19913edd"], "follower_count": 735, "custody_address": "0x72772fd1e39bc4c3b0698ba7c30eef7d7f455060", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf17fbe2dcb26ffdd621ae04719a4d10b19913edd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hadeel_ahmed3/adele-make-you-feel-my-love-lyrics?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (368485, '0x8b8e5459deb6d72ed99fe6ae0ae07cc6c5affadc', 0, 1, '2024-05-06 03:14:17+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/folk?si=fc7c871fd69b4f39b0fd77e4993ce87e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (150701, '0x0f6fcda91a2d78d23ddfaa26a967cf50f73ce4cf', 0, 1, '2024-05-05 08:45:47+00', 0, 5, '{"fid": 192490, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmRjCEcCPxQDJvPTE5S8mzstYtZPkXQJJijUmdSkDuoW9M?filename=original.webp", "profile": {"bio": {"text": "Hi, my name is Chris and I have a dog ;) You can find my NFT collections here https://linktr.ee/godspointof \n\nI started cooking here:\n/iamalive\n", "mentioned_profiles": []}}, "username": "music-guy.eth", "power_badge": true, "display_name": "Chris MusicGuy", "active_status": "inactive", "verifications": ["0xf56e55e35d2cca5a34f5ba568454974424aea0f4"], "follower_count": 975, "custody_address": "0x54d40681e3a866fa4b4c2f27647e9c6123a3f67b", "following_count": 593, "verified_addresses": {"eth_addresses": ["0xf56e55e35d2cca5a34f5ba568454974424aea0f4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/4f23b14a-7554-4da7-a38c-c4f38530ec79\"}"}', NULL), - (499746, '0xc47909e5b6a15948b632800e1fc5155e78a8825b', 0, 1, '2024-05-06 08:01:01+00', 0, 0, '{"fid": 416899, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a04122d7-82cc-40a6-4fb1-e2a256c95c00/rectcrop3", "profile": {"bio": {"text": "In absolute peace /:", "mentioned_profiles": []}}, "username": "shayanm", "power_badge": false, "display_name": "Jerry 🎩", "active_status": "inactive", "verifications": ["0x390ea188e7e19f39371f64720dea831d334833c4"], "follower_count": 1119, "custody_address": "0xe2d3efbc003bdb9afa3db367847aba1196595fea", "following_count": 1208, "verified_addresses": {"eth_addresses": ["0x390ea188e7e19f39371f64720dea831d334833c4"], "sol_addresses": ["9Rut5mmEpg9wQ9hRyp1Ahg4jHqaZmcZHwzmPbAr7hSdD"]}}', '{"{\"url\":\"https://on.soundcloud.com/eUZVL61XYoaZuhHS9Never\"}"}', 'sonata'), - (368651, '0x5f20de6d0d31f33e544ccee08fb7b9ca7a5f639b', 0, 1, '2024-05-06 03:19:17+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2646, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3125, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3nsZctcfnm6cGrox5\"}"}', NULL), - (368484, '0xa8bfdea50ead17c4809d5441ba7b9a94654ef1d8', 0, 1, '2024-05-06 03:14:31+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/electronic?si=9d67437e5d664a178c27dfd5d2537aaf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (368517, '0x425df42afe71619dc7dd447fa92175ed34c3933e', 0, 1, '2024-05-06 03:15:10+00', 0, 1, '{"fid": 260903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8aa46534-e1c0-4a7c-252f-e685d3cd3b00/original", "profile": {"bio": {"text": "https://zora.co/@0xa31110b7ade3c61f067f2614f7da6d65a58ae744\n\nShare NFT Free Every Day\n", "mentioned_profiles": []}}, "username": "hunternft86", "power_badge": false, "display_name": "DChibi 🎩 ", "active_status": "inactive", "verifications": ["0xa31110b7ade3c61f067f2614f7da6d65a58ae744"], "follower_count": 2404, "custody_address": "0xe1ee0d07df4922e121bf649a94ed8e6cfe053f21", "following_count": 2224, "verified_addresses": {"eth_addresses": ["0xa31110b7ade3c61f067f2614f7da6d65a58ae744"], "sol_addresses": ["44ZrFCXmbpeLR9RaWC7Dtf6dkH3axmgn8gzLDN3tPbRw"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/what-do-you-say?referral_source=link\"}"}', NULL), - (432589, '0x7a034f6a8fe7b68f8050650d99f1b6cc12c9e65a', 0, 1, '2024-05-06 06:18:32+00', 0, 9, '{"fid": 404349, "object": "user", "pfp_url": "https://i.imgur.com/mhpVtL0.jpg", "profile": {"bio": {"text": "여기 같이 하시는 분들 모두 행복하고 좋은 일만 가득 하길 바랄게요 우리 부자 됩시다\n", "mentioned_profiles": []}}, "username": "jjjang", "power_badge": false, "display_name": "wassup82", "active_status": "inactive", "verifications": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "follower_count": 3311, "custody_address": "0x8a5f460242c275826faa332f3bb0b8e07fb14d45", "following_count": 2621, "verified_addresses": {"eth_addresses": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4RHA3pMoxmHxmEsP7\"}"}', 'sonata'), - (128590, '0x755bb3f2dd6e9dd15095648370e3fb63aa933f6d', 0, 1, '2024-05-05 06:03:59+00', 0, 7, '{"fid": 191780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a05cdc-baf0-4063-b7cf-f226e4b77d00/original", "profile": {"bio": {"text": "👋 creative coder and genart wannabe http://deca.art/agrimony | ex contributor @airswap", "mentioned_profiles": []}}, "username": "agrimony", "power_badge": true, "display_name": "agrimony↑🎩 q/tips", "active_status": "inactive", "verifications": ["0xb152df6b3646d04a3232821778277049ae21bb99", "0xdb3ec7b16fd60fb4fdb58a438bd8af57d8d3a91c"], "follower_count": 1995, "custody_address": "0xd8d373a3648a19e1c38ed765db820e907bb3ab4a", "following_count": 673, "verified_addresses": {"eth_addresses": ["0xb152df6b3646d04a3232821778277049ae21bb99", "0xdb3ec7b16fd60fb4fdb58a438bd8af57d8d3a91c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral_source=link\"}"}', 'sonata'), - (593354, '0x103b83394ae786a915ee8a224ed1acb0cec466a2', 0, 1, '2024-05-06 12:25:05+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 44, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dyFdfMjymWS2knrQ7\"}"}', 'sonata'), - (368057, '0xe0fdc0b83c663fb900fa6914aa792a8fd74f9dba', 0, 1, '2024-05-06 03:10:26+00', 0, 0, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1964c8a2-50b8-4b95-7159-93d1bda52800/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 83, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 301, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2kjVXqrcGAD7EcVY9\"}"}', NULL), - (433164, '0x2b38292b85004fcd1afdbb2d2ab504dc1134d43f', 0, 1, '2024-05-06 06:20:04+00', 0, 7, '{"fid": 405451, "object": "user", "pfp_url": "https://i.imgur.com/NgcYN5x.jpg", "profile": {"bio": {"text": "I''m accountant", "mentioned_profiles": []}}, "username": "soltanhadi", "power_badge": false, "display_name": "Kian:D🎩", "active_status": "inactive", "verifications": ["0xf8b33cb564d3a8d83a147282b4ecbf9c1765907f"], "follower_count": 2570, "custody_address": "0x099c78f851d75739c874320e25bbe0d397f0a319", "following_count": 2463, "verified_addresses": {"eth_addresses": ["0xf8b33cb564d3a8d83a147282b4ecbf9c1765907f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/917rackz/917-rackz-x-famous-richard?ref=clipboard&p=i&c=0&si=98D1D107C0984B9BBC79A87B9B64DA57&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (554977, '0xccec08da8b5c06b4554b635742205e8b8bc2ea39', 0, 1, '2024-05-06 10:40:13+00', 0, 2, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1459, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1763, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yugseongjaebitubi/dlttkfyyztma?si=1565f308fcb04c59813f5eacbb8ed3a5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (460507, '0x282d36af814116546a69ac8df3166592b44b2228', 0, 1, '2024-05-06 06:59:21+00', 0, 0, '{"fid": 479253, "object": "user", "pfp_url": "https://i.imgur.com/f2gnEq7.jpg", "profile": {"bio": {"text": "그게 뭐든 다 이루다_ERUDA_열정걸_초긍정에너지(With me, you have super power😲 Super positive energy✨️⚘️) 늘 응원해:)", "mentioned_profiles": []}}, "username": "eruda", "power_badge": false, "display_name": "ERUDA", "active_status": "inactive", "verifications": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "follower_count": 864, "custody_address": "0x2c72ca53218c08d77e61639cb2ccfa7d08403ff8", "following_count": 594, "verified_addresses": {"eth_addresses": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kHDyr\"}"}', NULL), - (510017, '0x0c7c8be471d56d82b80663287eeb00d72a4b59ce', 0, 1, '2024-05-06 08:19:09+00', 0, 2, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2924, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2353, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TYDGD\"}"}', 'sonata'), - (594604, '0xb217ec39b4b770d51d3d3fdedd35961360c9291c', 0, 1, '2024-05-06 12:26:27+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/onurtrap/nym-et-moi\"}"}', NULL), - (368669, '0xccbca8f084d94dad226c508bd43c9a1d0789c5d0', 0, 1, '2024-05-06 03:19:14+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/pop?si=341002546388442eb6b5ef725cd45926&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (368648, '0x7a9e59bdcf71780b218e145c3290f7838fa470c3', 0, 1, '2024-05-06 03:17:38+00', 0, 10, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1535, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 959, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n9ay8eB4nLfNigpy8\"}"}', 'sonata'), - (116585, '0x06bef6301e3bcacd6cc8b4877ea2b60b68fda2d0', 0, 1, '2024-05-05 04:34:38+00', 0, 7, '{"fid": 302926, "object": "user", "pfp_url": "https://arweave.net/EWutvFe8oiKJdbJpSW3dQuHfpwzFNHugU-9Bj9H9lkM/", "profile": {"bio": {"text": "Web3 Community,\nAirdrop Hunter,Solo trade, NFT p3ddr0.degen\n/degen /perl /base /lp /rromd /dt /konkorat /regencythai /book /trading /alphacrypto\n", "mentioned_profiles": []}}, "username": "p3ddr0", "power_badge": false, "display_name": "p3ddr0ᖽ🎩⛓️🔄🥷🏼", "active_status": "inactive", "verifications": ["0x7fdcd78669591bc6bf7a9e9925acd8ad55061fd8"], "follower_count": 1757, "custody_address": "0xcf6ac4a7c8cb1f9d7f6aa1c3a5d783e53662d15e", "following_count": 2982, "verified_addresses": {"eth_addresses": ["0x7fdcd78669591bc6bf7a9e9925acd8ad55061fd8"], "sol_addresses": ["B37qZAWJRoP9Umsz6aHA1sU7PCFfWQ7WF4KVRz32S22K"]}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/cypher-open-mic?referral=0x7fdcd78669591bc6bf7a9e9925acd8ad55061fd8&referral_source=link\"}"}', NULL), - (377030, '0x0b33504406f20fe1154739708571b2ab4ff1013b', 0, 1, '2024-05-06 03:54:24+00', 0, 3, '{"fid": 404253, "object": "user", "pfp_url": "https://i.imgur.com/JFt40l5.jpg", "profile": {"bio": {"text": "Korean degen HAM 좋아요 댓글 Zora Mint", "mentioned_profiles": []}}, "username": "spoon78", "power_badge": false, "display_name": "Spoon78", "active_status": "inactive", "verifications": ["0xb12d5e9bbd0ac43830b3041575ee5230741b1111"], "follower_count": 2066, "custody_address": "0x9c0ed18f40bbd8c79c0f38e9b54782ffd26635a7", "following_count": 2265, "verified_addresses": {"eth_addresses": ["0xb12d5e9bbd0ac43830b3041575ee5230741b1111"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/sixty-seconds-dj/lets-go-all-the-way-re-work?in=sc-playlists-kr%2Fsets%2Fdisco-fever\"}"}', 'sonata'), - (433414, '0x0981f35787b8d572c19f25e0854662fdeec97397', 0, 1, '2024-05-06 06:20:53+00', 0, 3, '{"fid": 442334, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigu3bpirz6npfu5dejoeiroo3q6nk6m4twyqg5z4i66w3dmrehxoe", "profile": {"bio": {"text": "Just starting with $DEGEN chain.", "mentioned_profiles": []}}, "username": "bernardis", "power_badge": true, "display_name": "Bernardo", "active_status": "inactive", "verifications": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "follower_count": 192, "custody_address": "0xf91d574647d6214cf8b4db249ed48f013baf5bce", "following_count": 260, "verified_addresses": {"eth_addresses": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "sol_addresses": ["C58ejksrZv6V9W5kdyfqQ7mzwqEG9ozVJKG3kYJ6VzER"]}}', '{"{\"url\":\"https://soundcloud.com/u2/where-the-streets-have-no?in=wadeo-2/sets/u2as\"}"}', NULL), - (691969, '0xb1ae6f6fb23c4204079c508bc68d4ed5c967cc83', 0, 1, '2024-05-06 17:33:15+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 132, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4669613f-d872-42c6-69be-913f18c09500/original\"}","{\"url\":\"https://open.spotify.com/track/4vbKczTCpjilxS3wB8qbY6?si=slZXCS0pSR6e-2TpXyrynw&pi=u-NEL9WZXjRzGY\"}"}', 'trance'), - (374238, '0xd618c0fe90e2a98020cdd0ebb6da66e9609cae63', 0, 1, '2024-05-06 03:44:56+00', 0, 0, '{"fid": 453227, "object": "user", "pfp_url": "https://i.imgur.com/aGZ5VCq.jpg", "profile": {"bio": {"text": "Hassan babaloei", "mentioned_profiles": []}}, "username": "hassanba", "power_badge": false, "display_name": "Hassanbabaloei", "active_status": "inactive", "verifications": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "follower_count": 287, "custody_address": "0xa221fc0c8b62c365065a1b900fce9efe0198ba17", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/heidijks/understand-you-and-me?ref=clipboard&p=a&c=0&si=2f2ec3fa41094c3da7d68180cd007fef&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (368933, '0xa1c8754ed30c5611010a92ac65456512754520db', 0, 1, '2024-05-06 03:20:42+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2646, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3125, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3nsZctcfnm6cGrox5\"}"}', 'sonata'), - (368668, '0x0127fffbd15c1042407180d7cc5b75944ba0a469', 0, 1, '2024-05-06 03:19:28+00', 0, 1, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 532, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/jazz?si=3126f4bcc1c340a7830bd56bc87b38a0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (136913, '0x779a1d0a5693c8d8b0d8f6d4508a53b6241be46a', 0, 1, '2024-05-05 06:31:27+00', 0, 3, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 242, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/pra-dizer-quem-sou-collect-to-earn-sstrm?referral_source=link\"}"}', 'soundxyz'), - (310860, '0x4f0cd34fe53e7ffe18e94cf02fcc819eabbff61b', 0, 1, '2024-05-05 21:01:39+00', 0, 3, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 416, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 424, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4NnWuGQujzWUEg0uZokO5M?si=b36a1ed01d054190💋\"}"}', NULL), - (368942, '0xd8266a3d142e15a6bdcbed2648112cb891148d21', 0, 1, '2024-05-06 03:20:56+00', 0, 4, '{"fid": 371303, "object": "user", "pfp_url": "https://i.imgur.com/QfjJmz0.jpg", "profile": {"bio": {"text": "디젠 Degen ❤️햄 Ham️ ❤️ \nIn NYC ", "mentioned_profiles": []}}, "username": "ericachu", "power_badge": false, "display_name": "Erica.🍖🎩", "active_status": "inactive", "verifications": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "follower_count": 1222, "custody_address": "0x5718b7484f9504945a9caafc7ab15286359927cf", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xa09f629ff92e971731f12aeb86a98a94c633ca65"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YUaNPxWKuyELVXt77\"}"}', NULL), - (427743, '0xb45ed988a94a95a945329da9b07206a55a721480', 0, 1, '2024-05-06 06:07:39+00', 0, 2, '{"fid": 505949, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb10bf87-cc6e-46fe-ba51-88af7f181600/rectcrop3", "profile": {"bio": {"text": "investment", "mentioned_profiles": []}}, "username": "rstr", "power_badge": false, "display_name": "rstr", "active_status": "inactive", "verifications": ["0x6be5a4dfb256eaee4938952be5e3481e5853312b"], "follower_count": 115, "custody_address": "0x600f109c71009a3a5783402db1bc5b0711a4dd01", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x6be5a4dfb256eaee4938952be5e3481e5853312b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eFr5J\"}"}', 'sonata'), - (785817, '0x6c4b8ef99e7c34578bec02fb0b48d5d0a6d88397', 0, 1, '2024-05-07 02:27:34+00', 0, 0, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 308, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 528, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to IU (아이유) — Holssi (홀씨) (⌒o⌒) by Sooqwi on #SoundCloud https://on.soundcloud.com/numP9\"}"}', NULL), - (383132, '0xca0167ee417d1c1b7c4eef5e33939b8775c2ac66', 0, 1, '2024-05-06 04:06:20+00', 0, 0, '{"fid": 418655, "object": "user", "pfp_url": "https://i.imgur.com/2otSRxb.jpg", "profile": {"bio": {"text": "Crypto since 2017. I''m ready for Based Summer / Love music / Share music recommendations /psymusic", "mentioned_profiles": []}}, "username": "guu", "power_badge": false, "display_name": "Gu", "active_status": "inactive", "verifications": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "follower_count": 147, "custody_address": "0x87f6314adbf601f44fbf3fd37edc2fb7aff185a8", "following_count": 233, "verified_addresses": {"eth_addresses": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tanaka_felipe/2023-10-14-22h47m18?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (368794, '0xdab2328837c468de7ee68132dcbae927b60715d8', 0, 1, '2024-05-06 03:20:27+00', 0, 3, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2653, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2739, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h2gvZtKPD6JjR8247\"}"}', 'sonata'), - (434021, '0x017975b00059d8a44fffbfad5a7738cb627b6904', 0, 1, '2024-05-06 06:22:01+00', 0, 1, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1134, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1515, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cigarettesaftersex/k-3?si=579497f537674d7cb69a15d6de311a27&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (479754, '0xa0960bec574f4519dec4c0a4197ba7af431fcaa6', 0, 1, '2024-05-06 07:26:22+00', 0, 0, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 766, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CRyWqocnEkDaPYNJ8\"}"}', NULL), - (526409, '0xb2a779be16e301a8ec382f954ca88779634b6043', 0, 1, '2024-05-06 09:23:39+00', 0, 7, '{"fid": 461031, "object": "user", "pfp_url": "https://i.imgur.com/1CjH8hW.jpg", "profile": {"bio": {"text": "It won’t always be easy, but always try to do what’s right", "mentioned_profiles": []}}, "username": "0xfarzaneh", "power_badge": false, "display_name": "Farzaneh", "active_status": "inactive", "verifications": ["0xb34035f2a4df7e542d6c05ffd586f5f45eead274"], "follower_count": 1354, "custody_address": "0xbcc67dcf11eddf61e05d3c0f016ea2e26273392a", "following_count": 1311, "verified_addresses": {"eth_addresses": ["0xb34035f2a4df7e542d6c05ffd586f5f45eead274"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/the-misc-team/koorosh-ft-mehrad-hidden-sogand-hoomaan-bedrood-azizam?ref=clipboard&p=i&c=0&si=A62E334F66764F599816DA1CF72A10C1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173312, '0x432ad99b806ea4871fc793a15241ffe59b60c78c', 0, 1, '2024-05-15 18:40:21+00', 0, 0, '{"fid": 11760, "object": "user", "pfp_url": "https://i.imgur.com/KqcVRTs.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "na", "power_badge": true, "display_name": " ", "active_status": "inactive", "verifications": ["0xaaf91d2f1978b3c2405a71a7b797db0afc14fa1c", "0x5e8fcbfc909c298197f49c757556d639fa01df21"], "follower_count": 617, "custody_address": "0x48331acb73cc63d852aa138e122352722b65f8e7", "following_count": 57, "verified_addresses": {"eth_addresses": ["0xaaf91d2f1978b3c2405a71a7b797db0afc14fa1c", "0x5e8fcbfc909c298197f49c757556d639fa01df21"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-82569176/the-gerogerigegege-boys-dont-cry\"}"}', 'emo'), - (588110, '0xccd24464509752c483d6bd4cd92910be0ac1ad58', 0, 1, '2024-05-06 12:11:16+00', 0, 1, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 954, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1358, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"잔나비노래 너무 좋아요 https://soundcloud.com/fxawurfdyrwq/jannabi?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (567131, '0xfe765ddd61a5e66fc2b7249709bfd0185306c7e9', 0, 1, '2024-05-06 11:25:43+00', 0, 2, '{"fid": 286957, "object": "user", "pfp_url": "https://ewhoob6flqqnvto3qqysl5iy24fzzakvgiilwfufevsamzqclwtq.arweave.net/JY7nB8VcINrN24QxJfUY1wucgVUyELsWhSVkBmYCXac/", "profile": {"bio": {"text": "Trading is my thing.\nhttps://zora.co/@slimbear\n", "mentioned_profiles": []}}, "username": "dantaisbest", "power_badge": false, "display_name": "danta🎩🍖", "active_status": "inactive", "verifications": ["0x8091651d8562e720c588639f858457aeb454f613"], "follower_count": 2161, "custody_address": "0x45d9fdf0cdb50644550c3ddc86f0eb39362000a8", "following_count": 992, "verified_addresses": {"eth_addresses": ["0x8091651d8562e720c588639f858457aeb454f613"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/m1VahTJ9eUwbPhcW6\"}"}', 'sonata'), - (488755, '0x2404848854a39e19e5ea7843289445cf758009b0', 0, 1, '2024-05-06 07:39:07+00', 0, 3, '{"fid": 385616, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/077a794c-7a8e-4709-2ed8-e6bd34183c00/rectcrop3", "profile": {"bio": {"text": "趣味は最近始めたAI画像生成 🤖*\n甘いものとコーヒーがすきななまけもの🦥💜\n\nMy hobby is AI image generation, which I recently started *\nA lazy person who likes sweets and coffee.", "mentioned_profiles": []}}, "username": "maccha8", "power_badge": false, "display_name": "maccha🍕🔵🎩👻🚩", "active_status": "inactive", "verifications": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "follower_count": 246, "custody_address": "0x2dbbac555d9ac7c9a5fcdd0899a97ef18b975b15", "following_count": 449, "verified_addresses": {"eth_addresses": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "sol_addresses": []}}', '{"{\"url\":\"https://youtu.be/OPf0YbXqDm0?si=bhdQHr5J8PohuP-t\"}","{\"url\":\"https://open.spotify.com/track/32OlwWuMpZ6b0aN2RZOeMS?si=euYjoBLpR7eto2R-koMMVA\"}"}', 'musicjp'), - (369634, '0xf121d4acbe146b06714573a76ed99fcba027bef8', 0, 1, '2024-05-06 03:25:36+00', 0, 1, '{"fid": 500300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/39c71e16-1dd3-40ec-0491-f015afaaea00/rectcrop3", "profile": {"bio": {"text": "I''m mad of all kinds of drinks 🍸", "mentioned_profiles": []}}, "username": "swoo", "power_badge": false, "display_name": "Drunken_Sia🎩", "active_status": "inactive", "verifications": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "follower_count": 346, "custody_address": "0x60069e3161a3d5b14d19c56724126c2a16161cef", "following_count": 365, "verified_addresses": {"eth_addresses": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qAoA6\"}"}', 'sonata'), - (434050, '0x0edc9909aa104e7a9eac0fb271e7d4b0fd094eac', 0, 1, '2024-05-06 06:22:16+00', 0, 2, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 729, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1087, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1wVuPmvt6AWvTL5W2GJnzZ?si=H6ssGbrsR3CRiSYQd74cQQ\"}"}', NULL), - (434619, '0x7339a99628d38593b6e7b2372c5b81e0ac7571d0', 0, 1, '2024-05-06 06:23:13+00', 0, 4, '{"fid": 461302, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f20ea39c-42ac-43eb-912b-dc4e90c64e00/rectcrop3", "profile": {"bio": {"text": "Hello~", "mentioned_profiles": []}}, "username": "dd8", "power_badge": false, "display_name": "dd8", "active_status": "inactive", "verifications": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "follower_count": 2644, "custody_address": "0xaea1e717380b4d1722164a4cba18c50e059479c4", "following_count": 2009, "verified_addresses": {"eth_addresses": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/j6jrbaftqobu/mp3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (381294, '0x27e35e681f86b94c9b64f40cce78bbee1da48678', 0, 1, '2024-05-06 04:02:07+00', 0, 1, '{"fid": 353613, "object": "user", "pfp_url": "https://i.imgur.com/3YxN3bS.jpg", "profile": {"bio": {"text": "X\nhttps://twitter.com/Wonderwall4226\n\n#仮想通貨 #エアドロップ #crypto #airdrop #NFT #CNP #ICL #bitcoin #ETH #web3 #BCG #NFTGames #エアドロ", "mentioned_profiles": []}}, "username": "wonderwall", "power_badge": false, "display_name": "Wonderwall", "active_status": "inactive", "verifications": ["0x6dc7b04df65747e867437a64958c2282c51beb9e"], "follower_count": 1161, "custody_address": "0xdf7311e33db35b95eef3ec6c619afed846378e07", "following_count": 2443, "verified_addresses": {"eth_addresses": ["0x6dc7b04df65747e867437a64958c2282c51beb9e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oJsckUWt1Dwb6FbG7\"}"}', NULL), - (533480, '0x85dfc21a015ae438ce0a9cac53a46033955cc4bb', 0, 1, '2024-05-06 09:36:33+00', 0, 4, '{"fid": 429365, "object": "user", "pfp_url": "https://i.imgur.com/iF8ZBO7.png", "profile": {"bio": {"text": "1 Degen = 1USD 기원 🔥\n⭐100% 답장 갑니다⭐\n우리 모두 부자됩시다🥳", "mentioned_profiles": []}}, "username": "chaejonghyun", "power_badge": false, "display_name": "Keep-going🍖🚀", "active_status": "inactive", "verifications": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "follower_count": 3655, "custody_address": "0x4fd1388a37021d7e12d422c0941df22d55a8672b", "following_count": 3876, "verified_addresses": {"eth_addresses": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/As3ZM\"}"}', 'sonata'), - (478232, '0xe82d2b3bceafce64473d697684482a0b6e3cd7a4', 0, 1, '2024-05-06 07:23:20+00', 0, 3, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 766, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WxBF19vekenb9TKF7\"}"}', NULL), - (372621, '0xc08a5d0a27acbd108736fb68cccc6d12c1ee8f7a', 0, 1, '2024-05-06 03:39:40+00', 0, 0, '{"fid": 191751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4dc71ec-9c59-42b9-5687-510c52dfe100/original", "profile": {"bio": {"text": "...", "mentioned_profiles": []}}, "username": "seoulraa", "power_badge": false, "display_name": "seoulraa", "active_status": "inactive", "verifications": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "follower_count": 26, "custody_address": "0xbee4eac0d0bcb4334a034dfa44eb3a96e3b81a9b", "following_count": 37, "verified_addresses": {"eth_addresses": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/seoulraa.eth/post/98afad75-25c4-4f2e-b950-c7800527b7c7\"}"}', NULL), - (434613, '0x8e30f0ee52692acaa10efaa4a4185bdfb3612d33', 0, 1, '2024-05-06 06:22:55+00', 112, 1, '{"fid": 426283, "object": "user", "pfp_url": "https://i.imgur.com/ZBldj7v.jpg", "profile": {"bio": {"text": "Newbi", "mentioned_profiles": []}}, "username": "coindegen", "power_badge": false, "display_name": "Crypto_yeon", "active_status": "inactive", "verifications": ["0x55c5075596efa35c7311aa5f5b3620c3a5cdc5c2"], "follower_count": 391, "custody_address": "0x2aac807eb30a13ea7f7fea219e00c6d0142bb838", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x55c5075596efa35c7311aa5f5b3620c3a5cdc5c2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/arianagrande/sets/eternal-sunshine-slightly?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (520040, '0xc3a478fa355f1f14bb81e7c8737875a6b06375a9', 0, 1, '2024-05-06 08:58:59+00', 0, 5, '{"fid": 430593, "object": "user", "pfp_url": "https://i.imgur.com/TBxdrF5.jpg", "profile": {"bio": {"text": "Movie time", "mentioned_profiles": []}}, "username": "shabnamksh", "power_badge": false, "display_name": "Shabnamksh☔️", "active_status": "inactive", "verifications": ["0x579280eb39ea75d964052719d5c2b784c19f3e01"], "follower_count": 1749, "custody_address": "0xb3ea5c96d52b92765b105be2ca4abf1bf89d8f77", "following_count": 2651, "verified_addresses": {"eth_addresses": ["0x579280eb39ea75d964052719d5c2b784c19f3e01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Huxstp8pLc6C3xrEA\"}"}', NULL), - (315422, '0x4ec8c68beb9bbb6e14dd9fb791646e182ec612fa', 0, 1, '2024-05-05 21:16:15+00', 0, 44, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1665, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1721, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/100N8P8WYnz9eCYuLYGflV?si=rZW9JbmdQm6RU1GagIqylw\"}"}', 'sonata'), - (451629, '0x39ae535fe762d690c5377dcc48ec5494ae1935c1', 0, 1, '2024-05-06 06:46:45+00', 0, 0, '{"fid": 432964, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiheupri3uhvbvwalw3th53rmbgmnljioafjxekkz2jgisbo4x3cl4", "profile": {"bio": {"text": "\ncrypto dreamer, cancer survivor, tkd itf blackbelt, heart father, and more....", "mentioned_profiles": []}}, "username": "pablo9678a", "power_badge": false, "display_name": "Zonda🎩🤌🏽⛓️🤝", "active_status": "inactive", "verifications": ["0x9ad01751f515952b2d0508d3e444bc5575b964b7", "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509"], "follower_count": 493, "custody_address": "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509", "following_count": 465, "verified_addresses": {"eth_addresses": ["0x9ad01751f515952b2d0508d3e444bc5575b964b7", "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/avalosvenom23/duki-givenchy\"}"}', NULL), - (369198, '0xb79d80e1b8b47116f824fa4f72eaf48c0263be2c', 0, 1, '2024-05-06 03:22:41+00', 0, 6, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1610, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1606, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PN2jL\"}"}', 'sonata'), - (691991, '0xb4b0ab8dda78ae50e0e8efc3d0f603aa56e5ecea', 0, 1, '2024-05-06 17:33:24+00', 0, 0, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖💎🎶", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1243, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"http://J.ae\"}","{\"url\":\"https://on.soundcloud.com/uqEkHRXon9o6HP9U8\"}"}', 'sonata'), - (587206, '0xb12027cb0c42f49dadbf4c2d4cec355c5745895d', 0, 1, '2024-05-06 12:09:25+00', 0, 0, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 954, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1358, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ynyizzmmqaj9/sets/7y21so27i5rx?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (409671, '0xa3a310b1fa563ef7c51b9b934ee4a0556f97ddcd', 0, 1, '2024-05-06 05:23:48+00', 0, 9, '{"fid": 194220, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmYvP33V1zy9vBQRb7F9iyDoM6sdiNyQ3DdjxbSwxnx97W", "profile": {"bio": {"text": "Hi", "mentioned_profiles": []}}, "username": "bookmaker", "power_badge": false, "display_name": "Bookmaker🎩🔮⌐◨-◨", "active_status": "inactive", "verifications": ["0x5dfa7f70094ca517681c6f2b8c20108ed56d2a6c"], "follower_count": 531, "custody_address": "0xd1f62ddb03c9768b496d3532dfc42c81b4eb7e81", "following_count": 763, "verified_addresses": {"eth_addresses": ["0x5dfa7f70094ca517681c6f2b8c20108ed56d2a6c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/optimism/v-buterin?referral_source=link\"}"}', NULL), - (261253, '0x95061e6cca324026e4c8f3fa7426d11ec259257f', 0, 1, '2024-05-05 15:48:55+00', 0, 1, '{"fid": 398319, "object": "user", "pfp_url": "https://i.imgur.com/FcIQL9V.gif", "profile": {"bio": {"text": "Crypto触り始めて7年目。\n\nこれまでに溶かした資金は数知れず😇\nそろそろ爆益お願いします🤤\n\n", "mentioned_profiles": []}}, "username": "blacrypto", "power_badge": false, "display_name": "Black🎩🔄", "active_status": "inactive", "verifications": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "follower_count": 442, "custody_address": "0x395ddab687c4a838569dab0758997779750dd7e9", "following_count": 368, "verified_addresses": {"eth_addresses": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2hJG0OHS4qsfv2K1cuWJWp?si=grz_PQ_dQWOQQBdkBvwtuQ&context=spotify%3Aalbum%3A5okaJ668hUBQnd7g75lk0v\"}"}', NULL), - (373101, '0x9325582aaa3b5bdf5ee438f127fac48f84ee4250', 0, 1, '2024-05-06 03:40:11+00', 0, 1, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1529, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2453, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/um5zpsnqR9LDkYya9\"}"}', NULL), - (479722, '0x751695b0bba8db0d24aa9e6a08d121025c9ff764', 0, 1, '2024-05-06 07:25:57+00', 0, 2, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2615, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2441, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove7/vrx3x8gatekl?si=81ee04a257b649dca0690ccc18c749f8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (309884, '0xd19a4b04c63c2a5676554e5f00d6536ff6d51cf5', 0, 1, '2024-05-05 20:59:16+00', 0, 2, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1128, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/2UFpTrvxNKNgC9VCcCw7m1?si=v1nbVIwUTLKQY5YkzQadCg&context=spotify%3Aalbum%3A0YlTGCp6SUpdYZM1xNhgxz\"}","{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmcsCnU5jhgimMwEAkFS4SH6RcheNWfGepgYew3wRHtgk3?filename=IMG_7823.jpeg\"}"}', NULL), - (360522, '0xa5dad75d28c38f936ad970227a701325ee2796a8', 0, 1, '2024-05-06 02:17:40+00', 0, 3, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3435, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 4079, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://open.spotify.com/track/5sdQOyqq2IDhvmx2lHOpwd?si=9371902858e24ff2\"}"}', 'sonata'), - (450706, '0x676b7438f27f200dcb8cfd93d10755496572ca4c', 1100, 1, '2024-05-06 06:46:22+00', 803, 66, '{"fid": 265189, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8f0dc72-ccba-4098-f8c0-fcf3b7f25d00/rectcrop3", "profile": {"bio": {"text": "Photographer and Artist | Nft Creator 🥂💋", "mentioned_profiles": []}}, "username": "cococops.eth", "power_badge": false, "display_name": "Jessica 🌈 🎩 ✪", "active_status": "inactive", "verifications": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "follower_count": 2093, "custody_address": "0xb0f365dcb4adc0ea5d3d3820712d8d882330f13b", "following_count": 1952, "verified_addresses": {"eth_addresses": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3dM1zVDkpyAaHe8D6\"}"}', NULL), - (518932, '0x517696be499b3070497e7ca7bceb43e4a7410cc0', 0, 1, '2024-05-06 08:51:43+00', 0, 0, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1695, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1301, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/BDq175J8kQZVT7zx8\"}"}', 'sonata'), - (370756, '0xafdebbe21665f8bb74867e73f5101fb2f13ce4d2', 0, 1, '2024-05-06 03:29:55+00', 0, 7, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 751, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 829, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tgun-2/xbprgelbxor8\"}"}', 'sonata'), - (535216, '0x48a136344b17685551c594afd3efb8c484aca794', 0, 1, '2024-05-06 09:39:13+00', 0, 1, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1029, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1203, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WEMCghXyvCyhk9X79\"}"}', 'musicjp'), - (372260, '0x8be8d620e45da48a225cd52873db9251fe11dda6', 0, 1, '2024-05-06 03:37:06+00', 0, 0, '{"fid": 489933, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd231c5b-06b8-427b-44ef-3a875ddd0400/original", "profile": {"bio": {"text": "please recast", "mentioned_profiles": []}}, "username": "jipeullib39", "power_badge": false, "display_name": "민희진", "active_status": "inactive", "verifications": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "follower_count": 531, "custody_address": "0xf2c2226548c05a749948eecb3b68fa27cdd83e0c", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xfe6d8df38907d7d8f68964dba2d6dd2fa6e0cf1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-jp/sets/rock-metal-punk?si=17816fa563f9402ebe255c9fc6ae8d65&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (297252, '0xf21436645eab5faddef5f90771eac46cb26cf8c0', 0, 1, '2024-05-05 20:18:03+00', 0, 18, '{"fid": 16469, "object": "user", "pfp_url": "https://arweave.net/hZBMC3zda8A8fm-dlKNt_VQ1FwHA6ndMlImjunibzaQ/", "profile": {"bio": {"text": "The life is too short so be happy.", "mentioned_profiles": []}}, "username": "abbasmhmdi", "power_badge": false, "display_name": "Alpachino", "active_status": "inactive", "verifications": ["0x65e1decab2466edc05051754dcc643239b26cf18"], "follower_count": 950, "custody_address": "0xc7d8c0fb5f944dd9433298809c69822fdd50321b", "following_count": 890, "verified_addresses": {"eth_addresses": ["0x65e1decab2466edc05051754dcc643239b26cf18"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3C0nOe05EIt1390bVABLyN?si=7L4VpKZgSNuN9VQkYHmIOg&context=spotify%3Aplaylist%3A37i9dQZF1EIXwVPBRIzypW\"}"}', NULL), - (371070, '0x03b826fec3eddeafd6b489174e0d49d53d22ff26', 0, 1, '2024-05-06 03:31:18+00', 0, 4, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1288, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 1991, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6CUTYJQKcDwcQ63EulINUo\"}"}', 'sonata'), - (539179, '0xce8054a7f546450850b389f26b8a73d77bcd8af6', 0, 1, '2024-05-06 09:51:24+00', 0, 2, '{"fid": 421703, "object": "user", "pfp_url": "https://i.imgur.com/NfwQLaI.jpg", "profile": {"bio": {"text": "investor💎\ntrader📊\nComputer engineering👨‍💻\ngamer🎮\nNFT lover 🖼️", "mentioned_profiles": []}}, "username": "1amirhosein1", "power_badge": false, "display_name": "Amirhosein🎩", "active_status": "inactive", "verifications": ["0x0d6b62cca88a61a2e1f092c243ed01570ab2c08a"], "follower_count": 1452, "custody_address": "0x836dfc1b58003a3153c188d3e08e681ab29ac74d", "following_count": 1069, "verified_addresses": {"eth_addresses": ["0x0d6b62cca88a61a2e1f092c243ed01570ab2c08a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-343322503/imagine-dragons-enemy-feat-1\"}"}', NULL), - (371256, '0x15c7c48805ceee5f316951f75a73052171d24d90', 0, 1, '2024-05-06 03:32:48+00', 0, 0, '{"fid": 354417, "object": "user", "pfp_url": "https://i.imgur.com/pFKJHwi.jpg", "profile": {"bio": {"text": "⛰️Mt.Waka⛰️ド田舎住み🚶Japanese🇯🇵 アレのアレは不要。 🫶は独断と偏見で。 \n🎩🍖⚙️🍑", "mentioned_profiles": []}}, "username": "jimo", "power_badge": false, "display_name": "Jimo3.degen 🇯🇵🎩🍖🔄", "active_status": "inactive", "verifications": ["0x5a99d1dfabbfaf5f0f1cf5ade3d380c0afe11341"], "follower_count": 859, "custody_address": "0xe673b9f35f9c5d2ff9b992eec9955c6c14b79097", "following_count": 1176, "verified_addresses": {"eth_addresses": ["0x5a99d1dfabbfaf5f0f1cf5ade3d380c0afe11341"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1MlNBPA4A6GztybDZrdvE6?si=p4yRnvi2RpGHOFJRtfv0WQ&context=spotify%3Aplaylist%3A2DOKij0RqSzXbHKymELmbu\"}"}', NULL), - (370764, '0x3c41f754ff61ba23f65daba1b96e05267dbc4ad0', 0, 1, '2024-05-06 03:30:04+00', 0, 11, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1259, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 918, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zubgump0rcwm/feat-colde-1?si=4f38bc1c972e4243bb02e74b55380ad4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (435947, '0x5a89f9a22f74b882a423b9826d3752a35c73b550', 0, 1, '2024-05-06 06:23:45+00', 0, 0, '{"fid": 458718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05013181-a9e0-4836-da82-c3af4eb54e00/rectcrop3", "profile": {"bio": {"text": "Thank for follower 💓😘\n", "mentioned_profiles": []}}, "username": "armtwt", "power_badge": false, "display_name": "Ammnaka🎩🍖🔮", "active_status": "inactive", "verifications": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "follower_count": 681, "custody_address": "0x43f59acaec0a984686bd8121796af0bdc016eb08", "following_count": 841, "verified_addresses": {"eth_addresses": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NB5pzDAuTNQqMkgeA\"}"}', NULL), - (371067, '0x1eb13ec69c9edcbc9caecdc75e56e7ea1bebf2f7', 0, 1, '2024-05-06 03:31:51+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 유스케 정준일 안아줘.mp3 by dhqjarnjs on #SoundCloud https://on.soundcloud.com/99Tk1\"}"}', NULL), - (461340, '0x86b1f7df6f6c580f4dda4abe1934da6a9f0764a2', 0, 1, '2024-05-06 06:59:55+00', 0, 25, '{"fid": 500738, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac0ab18d-18ab-44ca-68b6-b047648a5800/rectcrop3", "profile": {"bio": {"text": "열심히 하는건 누구보다 자신 있습니다!\n슈퍼캐스트로 2배로 빠르게 보답하겠습니다🔥", "mentioned_profiles": []}}, "username": "premium191004", "power_badge": false, "display_name": "Degen_Moon", "active_status": "inactive", "verifications": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "follower_count": 1046, "custody_address": "0x86582a580e1ccd25fab0e894ba9598116df46d23", "following_count": 876, "verified_addresses": {"eth_addresses": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NZQq6id2pq2NZLaM6\"}"}', 'sonata'), - (380236, '0xf958f327fa9708936ced8656b639733ad0c258c8', 0, 1, '2024-05-06 03:59:37+00', 0, 0, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2924, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2346, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Q5yhA\"}"}', 'sonata'), - (476481, '0x3d0d7fb156afad5663eb404361290d092497f722', 0, 1, '2024-05-06 07:20:52+00', 0, 1, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 47, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 151, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sBwb4v5NAuBx9kMx5\"}"}', 'sonata'), - (588149, '0xbd6227a5f9171dc8190c27385a38a0312c51676d', 0, 1, '2024-05-06 12:11:23+00', 0, 1, '{"fid": 509267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1ad2d36-bf56-4b2e-ee07-6e4fc2d98000/rectcrop3", "profile": {"bio": {"text": "I came from the darkness to the colorful world and\nI return from the colorfulness of the universe to the darkness of unity...", "mentioned_profiles": []}}, "username": "!509267", "power_badge": false, "display_name": "DrH", "active_status": "inactive", "verifications": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "follower_count": 262, "custody_address": "0x3987a9a108e20e705fece41f2ee3a49a25cd0f05", "following_count": 717, "verified_addresses": {"eth_addresses": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8YjmvLmftDdefFsh7\"}"}', NULL), - (139509, '0x175b121c7fc305d1a77235735845deb9e7bd2503', 0, 1, '2024-05-05 07:03:19+00', 0, 8, '{"fid": 515330, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9e84ff39-d17d-48a2-082c-8f75c6ef3d00/original", "profile": {"bio": {"text": "A player, even if he is not a player, remains a player©", "mentioned_profiles": []}}, "username": "!515330", "power_badge": false, "display_name": "Andrii", "active_status": "inactive", "verifications": ["0x8a140098bdbf48f6c7e2ed9fa41221408fb61d48"], "follower_count": 65, "custody_address": "0x4fc6a0a7c1e4ed78e16b578630b0c8429222ba96", "following_count": 142, "verified_addresses": {"eth_addresses": ["0x8a140098bdbf48f6c7e2ed9fa41221408fb61d48"], "sol_addresses": []}}', '{"{\"url\":\"https://zora.co/collect/base:0x945a7731ac788df4579eb0b3b336ad98e85f18c6?referrer=0xBe3FC886e104904935cfC5f4F32F4CCec06CbA79\"}","{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x8a140098bdbf48f6c7e2ed9fa41221408fb61d48\"}"}', NULL), - (379735, '0xe073ee8cae0c751950a28a330519a65690d68e4a', 0, 1, '2024-05-06 03:58:45+00', 0, 1, '{"fid": 404253, "object": "user", "pfp_url": "https://i.imgur.com/JFt40l5.jpg", "profile": {"bio": {"text": "Korean degen HAM 좋아요 댓글 Zora Mint", "mentioned_profiles": []}}, "username": "spoon78", "power_badge": false, "display_name": "Spoon78", "active_status": "inactive", "verifications": ["0xb12d5e9bbd0ac43830b3041575ee5230741b1111"], "follower_count": 2066, "custody_address": "0x9c0ed18f40bbd8c79c0f38e9b54782ffd26635a7", "following_count": 2265, "verified_addresses": {"eth_addresses": ["0xb12d5e9bbd0ac43830b3041575ee5230741b1111"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hBZMSBH9sLgToZeA7\"}"}', 'sonata'), - (371412, '0x3bf8afa29e2aeae970e61c42d267cbb299b736bb', 0, 1, '2024-05-06 03:33:07+00', 0, 4, '{"fid": 428639, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4672cb3-6e75-404b-32a4-98fe6b38fc00/rectcrop3", "profile": {"bio": {"text": "Crypto lover🥹😍\nA girl who loves art", "mentioned_profiles": []}}, "username": "sara1999", "power_badge": false, "display_name": "Sara 🍖 🎩", "active_status": "inactive", "verifications": ["0x52d238692d4d273aff4054b5d6f7fdd43c6a1714"], "follower_count": 3486, "custody_address": "0x7a20cb93305778d8fb8f3b81514dc2fdf9306661", "following_count": 3803, "verified_addresses": {"eth_addresses": ["0x52d238692d4d273aff4054b5d6f7fdd43c6a1714"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1uNSQYKv3Pf7KLQa9\"}"}', NULL), - (371419, '0xcd5d19e4d70fb80f47737be159c5a070472516bb', 0, 1, '2024-05-06 03:33:50+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 정준일 (Joonil Jung) - 바램 (Wish) - 가사 (Lyric Video) by 리쥬 on #SoundCloud https://on.soundcloud.com/bUZks\"}"}', NULL), - (492819, '0x9e15a64c0ecb5af5f3c0a14587f5d883cf350474', 0, 1, '2024-05-06 07:47:51+00', 0, 0, '{"fid": 509267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1ad2d36-bf56-4b2e-ee07-6e4fc2d98000/rectcrop3", "profile": {"bio": {"text": "I came from the darkness to the colorful world and\nI return from the colorfulness of the universe to the darkness of unity...", "mentioned_profiles": []}}, "username": "!509267", "power_badge": false, "display_name": "DrH", "active_status": "inactive", "verifications": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "follower_count": 253, "custody_address": "0x3987a9a108e20e705fece41f2ee3a49a25cd0f05", "following_count": 575, "verified_addresses": {"eth_addresses": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/discover/sets/personalized-tracks::s-seyedi-811864684:159930759?ref=clipboard&p=i&c=1&si=EC5A8A2691CF45AE871FBF68ABA822BF&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (368780, '0x7cef7f3e0c15bc62a378281d20b2af4726a0f759', 0, 1, '2024-05-06 03:19:39+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 129, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 165, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/my-parents-house\"}"}', NULL), - (515191, '0x700eee3373e3beab48feecda8f22b2c7238cf563', 0, 1, '2024-05-06 08:39:50+00', 0, 2, '{"fid": 513515, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dadf0059-2a9f-4aa6-c98e-77491266b600/rectcrop3", "profile": {"bio": {"text": "SEC targets me 🥴", "mentioned_profiles": []}}, "username": "!513515", "power_badge": false, "display_name": "Justin Sun", "active_status": "inactive", "verifications": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "follower_count": 227, "custody_address": "0x649296858ac63a11f7765441099f8a22e0e5a1fa", "following_count": 230, "verified_addresses": {"eth_addresses": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KXhDxoVqQNL47kfy8\"}"}', NULL), - (371420, '0x831df9a57b7bf59a6beedfd4b27adc73a46f542d', 0, 1, '2024-05-06 03:33:15+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Jung Joonil (정준일) - 첫 눈 (The First Snow) [Goblin - 도깨비 OST Part 8] by L2ShareOST11 on #SoundCloud https://on.soundcloud.com/KF7oU\"}"}', NULL), - (462265, '0xcee6233b0d5ca43e49df7073b82ed425dfcdf991', 0, 1, '2024-05-06 07:01:36+00', 0, 4, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3412, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2122, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dQijg3yWPkxYuP2m6\"}"}', 'sonata'), - (372291, '0xc0f713f75243cc34c74976c15a9645c9603d7f76', 0, 1, '2024-05-06 03:37:41+00', 0, 6, '{"fid": 406815, "object": "user", "pfp_url": "https://i.imgur.com/j0lCl8I.jpg", "profile": {"bio": {"text": "Hello everyone. Let''s enjoy COIN, DEGEN, https://zora.co/@eiza", "mentioned_profiles": []}}, "username": "eiza", "power_badge": false, "display_name": "EIZA_JEONG", "active_status": "inactive", "verifications": ["0x31330d2f5d714c04f6b0f6ed4d5fe0cad405f6e4"], "follower_count": 3531, "custody_address": "0x0edb7182d5959e5fc0bcd2b63da8623eb10c63e7", "following_count": 2001, "verified_addresses": {"eth_addresses": ["0x31330d2f5d714c04f6b0f6ed4d5fe0cad405f6e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/28hoyXS2yM2b7vvb8\"}"}', 'sonata'), - (474178, '0x15acfec17c13de59efc90c65f71ea1aa44172852', 0, 1, '2024-05-06 07:17:49+00', 0, 2, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2034, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2605, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-449525512/bts-answer-love-myself?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (373091, '0x807fca93dde71f1507509973b6eab0f6be0a2337', 0, 1, '2024-05-06 03:41:19+00', 0, 3, '{"fid": 345427, "object": "user", "pfp_url": "https://i.imgur.com/GmKTuvu.gif", "profile": {"bio": {"text": "Hi🖐️\n It lives in Warpcast🟣🤙\nhttps://drakula.app/user/zen417", "mentioned_profiles": []}}, "username": "zen417", "power_badge": false, "display_name": "zen🍖🔵🔮🎩🧀", "active_status": "inactive", "verifications": ["0xd00226b73bab097e97c6df416dc031df7c4b5af1"], "follower_count": 2217, "custody_address": "0x8de8383b92eb5f1c12bf77c072762d6c32433424", "following_count": 655, "verified_addresses": {"eth_addresses": ["0xd00226b73bab097e97c6df416dc031df7c4b5af1"], "sol_addresses": ["F2nCtkzVbFFn7GxRcPv85hrjaCyMxdNJrPk4yGJHRDj6"]}}', '{"{\"url\":\"https://open.spotify.com/track/2Bxt2qamL6iu0XN0Td484J?si=4YcxKSVxSFWe96NFndCF8w\"}"}', NULL), - (434686, '0x8c88684e58a6362ce1542bc95322e77b1cb31e58', 0, 1, '2024-05-06 06:22:51+00', 0, 2, '{"fid": 291712, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeicd3zrryr6cbb6456epl5eqyzlo6ec4s56sk5wc7awgc246nua27i/1", "profile": {"bio": {"text": "Studying and investing cryptos. ", "mentioned_profiles": []}}, "username": "multan", "power_badge": false, "display_name": "Bonzil🎩", "active_status": "inactive", "verifications": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "follower_count": 1281, "custody_address": "0xe61d9181dffdcd462b0e3269c93d6d0af4a3e4db", "following_count": 1560, "verified_addresses": {"eth_addresses": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4bhsGGQMK2rOVcUDOo4w9K?si=9bbHHaIzR8-yK3MReyR_eQ&pi=a-nWKyNfc2TAe4\"}"}', NULL), - (109677, '0x979a3e904d5df6e2a5355e41cafc91dfcf75441d', 4235, 1, '2024-05-05 03:29:27+00', 10, 1, '{"fid": 236302, "object": "user", "pfp_url": "https://i.imgur.com/jJOCUrF.jpg", "profile": {"bio": {"text": "Partime degentlement - NFA", "mentioned_profiles": []}}, "username": "ron-", "power_badge": false, "display_name": "Ron 🎩 ✈️ ↑", "active_status": "inactive", "verifications": ["0x12136347cc3855eba2e7e6e9ed755f31d47b4cd5", "0x47fac95efef39c7ce44e9870cede1894666df166"], "follower_count": 591, "custody_address": "0x3a104e9efa62008552e52297b1ae905d35312ac6", "following_count": 726, "verified_addresses": {"eth_addresses": ["0x12136347cc3855eba2e7e6e9ed755f31d47b4cd5", "0x47fac95efef39c7ce44e9870cede1894666df166"], "sol_addresses": ["6thvsq9Js8ttKaNXvce7KHd5KtpBkx29DVTXV6kozt2Z"]}}', '{"{\"url\":\"https://www.sound.xyz/valeinallcaps/chill-like-that?referral=0x12136347cc3855eba2e7e6e9ed755f31d47b4cd5&referral_source=link\"}"}', 'soundxyz'), - (372411, '0xb3f92bace83de41fa178046eddc00ec7dc397bc9', 0, 1, '2024-05-06 03:39:15+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 정준일 - 고요 by muse_tiro on #SoundCloud https://on.soundcloud.com/NcKz1\"}"}', NULL), - (369356, '0xa2d83e3901fd7f75c460c0de1fecca9d9ce9ffcd', 0, 1, '2024-05-06 03:23:34+00', 0, 1, '{"fid": 316238, "object": "user", "pfp_url": "https://i.imgur.com/Fn4r5cV.png", "profile": {"bio": {"text": "ใครอยากเป็นเศรษฐี ?", "mentioned_profiles": []}}, "username": "nakanpro", "power_badge": false, "display_name": "🍖nakanpro🍖🔄🎩", "active_status": "inactive", "verifications": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "follower_count": 2269, "custody_address": "0xc6f8cec56d094d9ec265fab4c55241c9f51528a2", "following_count": 2240, "verified_addresses": {"eth_addresses": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nk-nakarin-keyura/free-baccy-lo-fi-type-beat?si=c4e90970ee4a47d0af03794b36050e56&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'lofi'), - (480832, '0x13c9e7909eb3faa18047e680fffc3ea7ab393261', 0, 1, '2024-05-06 07:26:44+00', 0, 2, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2615, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2441, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove6/yas9uprszzbt?si=e237c9dc1ca6478fa969054cbad87664&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (462280, '0x8f8a5c004cd8e7fda840e88765d2c1da1dbfd1f3', 0, 1, '2024-05-06 07:01:26+00', 0, 5, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2360, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2249, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/urxxF8JABsRvcccN8\"}"}', 'sonata'), - (541549, '0x57b3ef8449742b793459613926ed942d396e053a', 0, 1, '2024-05-06 09:56:47+00', 0, 1, '{"fid": 501789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d2c960a-2bb5-4637-ca0e-67fe391ce200/rectcrop3", "profile": {"bio": {"text": "smile 😃\n just do it 최고\n부스터가 뭐시중헌디", "mentioned_profiles": []}}, "username": "mmraz", "power_badge": false, "display_name": "Jay M🎩🍖", "active_status": "inactive", "verifications": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "follower_count": 1079, "custody_address": "0x528e24d99b86845a6ecf98f21cb841fbd46eb2b0", "following_count": 965, "verified_addresses": {"eth_addresses": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-377259458/lauv-all-4-nothing-im-so-in-love-heon-seo-cover?si=7186cf1609dc4558b8421aaa4b067d71&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (385008, '0xe21441ee915877547800c8b5c1445acc57283965', 0, 1, '2024-05-06 04:11:30+00', 0, 2, '{"fid": 9856, "object": "user", "pfp_url": "https://i.imgur.com/GUSNauP.gif", "profile": {"bio": {"text": "crypto-anarchist · DeFi degen · DeSoc explorer, advisor · host /luo · write paragraph.xyz/@0xluo", "mentioned_profiles": []}}, "username": "0xluo.eth", "power_badge": true, "display_name": "0xLuo", "active_status": "inactive", "verifications": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "follower_count": 30676, "custody_address": "0xffe946d9c24ca4d6f785447a923c9e812e4e7b95", "following_count": 1258, "verified_addresses": {"eth_addresses": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "sol_addresses": ["4QKTgi7wnm6ATi1cvdfsUYhuX5HWbywPpoFoHKJJuB76"]}}', '{"{\"url\":\"https://on.soundcloud.com/iP7pLQi6LQRUgzCE6\"}"}', NULL), - (381648, '0x3f0f1c560b92ea813bc294274b318da38ba671d5', 0, 1, '2024-05-06 04:02:42+00', 0, 3, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1083, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1817, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5lr5WSWaE3Ne0udmLwuSgd?si=e5ae90c7853a4b0a\"}"}', 'sonata'), - (381754, '0x586df044cf45cf98f14e1b08f62d831d1bebc331', 0, 1, '2024-05-06 04:03:50+00', 0, 5, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1083, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1817, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Zv6zo71iDXH07Lin7hxMg?si=6fedc9da75b84590\"}"}', 'sonata'), - (368482, '0x33b3d602e7b7356994720aaba441992b8fab1e02', 0, 1, '2024-05-06 03:14:20+00', 0, 5, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2058, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1722, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bM4wE\"}"}', 'sonata'), - (480850, '0x0fc6ca35745f198b200c0fd484302676196ba880', 0, 1, '2024-05-06 07:27:53+00', 0, 1, '{"fid": 421425, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/562ea1d3-ca07-4ad0-6c40-b71a74542e00/rectcrop3", "profile": {"bio": {"text": "Artist loves the sea and wishes health to humanity", "mentioned_profiles": []}}, "username": "keyan", "power_badge": false, "display_name": "Keyan🎩🔮", "active_status": "inactive", "verifications": ["0x2b7ad7446975c8a435859d8d399fe9e422d7f20d"], "follower_count": 934, "custody_address": "0x2658544c7a2ddeccb649c05ebd2a5a91b8fe7d44", "following_count": 729, "verified_addresses": {"eth_addresses": ["0x2b7ad7446975c8a435859d8d399fe9e422d7f20d"], "sol_addresses": ["9d7hf4hsNWxttmMHNESdaXg4Jyj8JSQC6h25UB3ZPKGN"]}}', '{"{\"url\":\"https://m.soundcloud.com/casso-wav/prada\"}"}', NULL), - (371984, '0x975df0ef3f23302bd8f8613b269c9d1462c371b0', 0, 1, '2024-05-06 03:36:04+00', 0, 1, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 유희열의 스케치북 - 정준일 - 아니야 20181026.m4a by dhqjarnjs on #SoundCloud https://on.soundcloud.com/dzxj5\"}"}', NULL), - (554122, '0xb77f8f50cec41e026257c51cf25662fc7ed3b196', 0, 1, '2024-05-06 10:37:04+00', 0, 1, '{"fid": 292146, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeihr4qdhybr5ca4lnkak7aj6silrakpksj32aiyc2lmjbc7tfjpeoa", "profile": {"bio": {"text": "🫶 Crypto , Forex 🫶", "mentioned_profiles": []}}, "username": "amirzakizadeh", "power_badge": false, "display_name": "Amir Zakizadeh 🎩🔵🐐", "active_status": "inactive", "verifications": ["0xbb812581c6c485416119b14e8c7be7ffedfaaeff"], "follower_count": 1116, "custody_address": "0x35d137abb8b192468da237aa4080e330f07489ae", "following_count": 2138, "verified_addresses": {"eth_addresses": ["0xbb812581c6c485416119b14e8c7be7ffedfaaeff"], "sol_addresses": ["CcK6HLZFT5guDLW729kFeygePAtAGU363Za9k4XryjsE"]}}', '{"{\"url\":\"https://on.soundcloud.com/gj23iFch6tuAfZTS7\"}"}', NULL), - (382586, '0xea78a577008c0c4e77cc3301fe93d637e8f54232', 0, 1, '2024-05-06 04:05:11+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 41, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 147, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GDhQXwrSbse8AV4C6\"}"}', NULL), - (571450, '0x4f7d8840cbb18d930eb84fc3c610fb6739cfb367', 0, 1, '2024-05-06 11:40:00+00', 0, 0, '{"fid": 477674, "object": "user", "pfp_url": "https://i.imgur.com/lSYNMEx.jpg", "profile": {"bio": {"text": "F4F / follow 4 follow / 좋아요🔥 댓글🔥 리캐스트🔥 팔로우🔥 한분 한분 빠짐없이 찾아갈게요", "mentioned_profiles": []}}, "username": "seik0691", "power_badge": false, "display_name": "seik0691", "active_status": "inactive", "verifications": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "follower_count": 2440, "custody_address": "0x0456381954f63442eb1313b89231b46e770cd9f5", "following_count": 2425, "verified_addresses": {"eth_addresses": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation3/ive-the-2nd-ep-ive-switch-1?si=8e25333f3508434a9285eeedb6fa03a5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (364191, '0x9479b47b137669553bd5dd094986390a7e5e2178', 0, 1, '2024-05-06 02:45:18+00', 0, 0, '{"fid": 276637, "object": "user", "pfp_url": "https://i.imgur.com/RWPUdgs.jpg", "profile": {"bio": {"text": "Loves nature and climbing", "mentioned_profiles": []}}, "username": "miladershadi60", "power_badge": false, "display_name": "Milad 🎩", "active_status": "inactive", "verifications": ["0xcdc38f4c1ebccb80b7885d819365e897e2e4ad61"], "follower_count": 1994, "custody_address": "0x0d4a7546e60ee853bc14ea3fbde7d2e1e9b642a5", "following_count": 3410, "verified_addresses": {"eth_addresses": ["0xcdc38f4c1ebccb80b7885d819365e897e2e4ad61"], "sol_addresses": ["GKVnqytXGqDGbJnZ4u1yJK2rW8hguqTNh3eqFG62oHW1"]}}', '{"{\"url\":\"https://on.soundcloud.com/iw39J6Fv7KFXQgS89\"}"}', 'sonata'), - (436334, '0xb22a2bfdbd100a5019d18a6a7d15c3372c3e2116', 0, 1, '2024-05-06 06:25:53+00', 0, 0, '{"fid": 510718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/410ae284-d695-45d3-73d3-51b2e5f83d00/rectcrop3", "profile": {"bio": {"text": "Hi :) \nLet’s share our interests", "mentioned_profiles": []}}, "username": "!510718", "power_badge": false, "display_name": "Pancake3000", "active_status": "inactive", "verifications": ["0xb283e349a9f50db67ab5fd9617535781684aca14"], "follower_count": 73, "custody_address": "0xce5af24b93ca9a0a07a055052eadebe3d4ccd749", "following_count": 136, "verified_addresses": {"eth_addresses": ["0xb283e349a9f50db67ab5fd9617535781684aca14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kitaptaki-adam/don-mclean-american-pie-1971-full-album?\"}"}', 'sonata'), - (373094, '0xd8199325840cf16a111cdee7a07dfcf9da84d220', 0, 1, '2024-05-06 03:40:41+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 07 말꼬리 (Featuring 정준일-Mate) by eternalmemory on #SoundCloud https://on.soundcloud.com/Jg6tB\"}"}', NULL), - (373090, '0xfbbf7f5744f1710bddabc016075078b144ef65dc', 0, 1, '2024-05-06 03:40:50+00', 0, 0, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2653, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2739, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uNdenaF4dVJvg3n96\"}"}', 'sonata'), - (373095, '0x09f5e7576025e2c6bfcd496e4d4029f59ffe7bc9', 0, 1, '2024-05-06 03:41:07+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2924, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2346, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XMqx5\"}"}', 'sonata'), - (384281, '0xd7193c30575d464dcd13f791c37df9b7c254d149', 0, 1, '2024-05-06 04:09:52+00', 0, 0, '{"fid": 411409, "object": "user", "pfp_url": "https://i.imgur.com/HP4ZzrI.jpg", "profile": {"bio": {"text": "沢にいる蟹です。", "mentioned_profiles": []}}, "username": "payao", "power_badge": false, "display_name": "payao🎩🔥", "active_status": "inactive", "verifications": ["0x79579b2032565133a53f876e80179d0066d293f0"], "follower_count": 508, "custody_address": "0xb01f86116802f40576bf5d68bdfeb05ae81003d9", "following_count": 518, "verified_addresses": {"eth_addresses": ["0x79579b2032565133a53f876e80179d0066d293f0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1bukNCD9JEwNp235Ov0iZH?si=kNKRjkPKSA6B3fASvQNlpA\"}"}', 'musicjp'), - (499740, '0x17271a081428df81662f2dd67895c7aae87424ba', 0, 1, '2024-05-06 08:00:47+00', 0, 0, '{"fid": 491718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44f5849-69cc-4805-c6aa-5ef274a2fa00/rectcrop3", "profile": {"bio": {"text": "잘부탁드려요 맞팔갑니다 디젠 파이팅", "mentioned_profiles": []}}, "username": "hduck43", "power_badge": false, "display_name": "hduck43", "active_status": "inactive", "verifications": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "follower_count": 1371, "custody_address": "0x313bb25e8e5a06110334088d0db7fb4979a48e8b", "following_count": 2277, "verified_addresses": {"eth_addresses": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/d331CcmstD2G7NfQ7\"}"}', 'sonata'), - (384004, '0x532aa43c9bb22877b9261aef29b1a09e97353e9a', 0, 1, '2024-05-06 04:07:07+00', 0, 5, '{"fid": 426662, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b47cd49-a73f-4253-1ce9-a104316e8100/original", "profile": {"bio": {"text": "Hello :) Follow me 💓 \n💚용용입니다💚\nhttps://www.alfafrens.com/channel/0x2264443aA20C382D4f18D63df550002655423951\n\n\n", "mentioned_profiles": []}}, "username": "yg-dragon", "power_badge": false, "display_name": "용용🔵🍖🎩", "active_status": "inactive", "verifications": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "follower_count": 2013, "custody_address": "0x33ed204170cc1d73a6905ca72ad16563e01113c4", "following_count": 3233, "verified_addresses": {"eth_addresses": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1WdY5akVTSQ4BgCkOweKwI\"}"}', 'sonata'), - (373366, '0xd17a95d6f22e2421a60d3652dac74795736bed5b', 0, 1, '2024-05-06 03:42:13+00', 0, 0, '{"fid": 453227, "object": "user", "pfp_url": "https://i.imgur.com/aGZ5VCq.jpg", "profile": {"bio": {"text": "Hassan babaloei", "mentioned_profiles": []}}, "username": "hassanba", "power_badge": false, "display_name": "Hassanbabaloei", "active_status": "inactive", "verifications": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "follower_count": 287, "custody_address": "0xa221fc0c8b62c365065a1b900fce9efe0198ba17", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Understand You And Me - Heidi K & Jeamland by He1d1 K on #SoundCloud https://soundcloud.com/heidijks/understand-you-and-me?ref=clipboard&p=a&c=0&si=2f2ec3fa41094c3da7d68180cd007fef&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (373371, '0x1837361dc2cceb03e62def096f31523df92aa377', 0, 1, '2024-05-06 03:41:50+00', 0, 0, '{"fid": 453227, "object": "user", "pfp_url": "https://i.imgur.com/aGZ5VCq.jpg", "profile": {"bio": {"text": "Hassan babaloei", "mentioned_profiles": []}}, "username": "hassanba", "power_badge": false, "display_name": "Hassanbabaloei", "active_status": "inactive", "verifications": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "follower_count": 287, "custody_address": "0xa221fc0c8b62c365065a1b900fce9efe0198ba17", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Understand You And Me - Heidi K & Jeamland by He1d1 K on #SoundCloud https://soundcloud.com/heidijks/understand-you-and-me?ref=clipboard&p=a&c=0&si=2f2ec3fa41094c3da7d68180cd007fef&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (373367, '0x9ec61702bc14fb539272f90445744194eb436c8e', 0, 1, '2024-05-06 03:41:28+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 695, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 779, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Yoon Jong Shin (윤종신) - 고요 (With 정준일) by yeoniyebbabe on #SoundCloud https://on.soundcloud.com/cGX8c\"}"}', NULL), - (541725, '0xa17a0d3ae887d2e1fc080749f61dddf6b0f079ad', 0, 1, '2024-05-06 09:57:29+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2356, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/drGpt\"}"}', 'sonata'), - (598050, '0x8ee07e122ea8997321a09a8d9c6780d735f3c0de', 0, 1, '2024-05-06 12:31:40+00', 0, 1, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1214, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1180, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Nu78Uxbn1MBVwx219\"}"}', 'sonata'), - (616252, '0x6ca50e1b99063bdf5d60ae1931c6bf7c52747a0c', 0, 1, '2024-05-06 13:18:46+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 962, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 915, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bj5aF2Qqju7KC68D9\"}"}', NULL), - (365357, '0xc0413ca09e097b64b12daa7ff40e2abde698db63', 0, 1, '2024-05-06 02:54:41+00', 0, 3, '{"fid": 500766, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84adc320-eb68-4b3c-6841-434f34103c00/rectcrop3", "profile": {"bio": {"text": "Hi i am btc holder\nlove base chain", "mentioned_profiles": []}}, "username": "bugflea", "power_badge": false, "display_name": "Bug Flea", "active_status": "inactive", "verifications": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "follower_count": 1031, "custody_address": "0xe00948c3e45a725ef1a0e90b131f960d8644d0af", "following_count": 789, "verified_addresses": {"eth_addresses": ["0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/guns-n-roses-official/welcome-to-the-jungle\"}"}', 'sonata'), - (437284, '0x0aaead5081eea5ab0df0d8ebcc4351b90c736277', 0, 1, '2024-05-06 06:26:32+00', 0, 3, '{"fid": 458718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05013181-a9e0-4836-da82-c3af4eb54e00/rectcrop3", "profile": {"bio": {"text": "Thank for follower 💓😘\n", "mentioned_profiles": []}}, "username": "armtwt", "power_badge": false, "display_name": "Ammnaka🎩🍖🔮", "active_status": "inactive", "verifications": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "follower_count": 681, "custody_address": "0x43f59acaec0a984686bd8121796af0bdc016eb08", "following_count": 841, "verified_addresses": {"eth_addresses": ["0xe34541eb9447f0655a7e55b66493434b94fe3ba9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xki2E787WR87EuzX6\"}"}', NULL), - (374950, '0x8cbd6dc5e79b157e1debd9a7fa26fc5ad6f5298d', 0, 1, '2024-05-06 03:47:13+00', 0, 0, '{"fid": 501935, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/139ad2dc-7123-4e00-9f52-a2bd4c5b9100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "wooks", "power_badge": false, "display_name": "Wook2", "active_status": "inactive", "verifications": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "follower_count": 431, "custody_address": "0xd31122b0fa655a356ff107934a8e7a0a470fdcc9", "following_count": 536, "verified_addresses": {"eth_addresses": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/timefever/7-feat-small-kidd?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (458170, '0x75c0d766922eb6fff4d91ee00b7e59d10fdd4b28', 0, 1, '2024-05-06 06:57:25+00', 0, 0, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1267, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1156, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2fnabrpFMG3ii0twbU0Imq?si=J0-gUEEHSaS9MOavYkb3sQ\"}"}', NULL), - (462261, '0x696a6ff7f29678802bca908381ca64bddc95891c', 0, 1, '2024-05-06 07:02:04+00', 0, 3, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 766, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tSynm27pTuuhNEny8\"}"}', NULL), - (374951, '0x14d7c71abd3a1c9d4701118e42d754b700e414fc', 0, 1, '2024-05-06 03:46:54+00', 0, 4, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1657, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1715, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TbRKptrTnzvoQZ5aA\"}"}', 'sonata'), - (723181, '0x1927857d5ecda9042a3117b63e8a8d3d85741e75', 0, 1, '2024-05-06 20:18:58+00', 0, 0, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1353, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1480, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DU6MWVMjrGLrJ4je6\"}"}', NULL), - (462298, '0xbf2b488a84eb96eeefea5ffdc2529be590d146f6', 0, 1, '2024-05-06 07:02:03+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2925, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2353, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/giMRM\"}"}', 'sonata'), - (372276, '0xa3cbce7c6c3ee5fd7910557193bad62e289c498d', 0, 1, '2024-05-06 03:38:50+00', 0, 1, '{"fid": 458798, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82cd9ebe-756d-4dbb-ec94-295a5ebbdb00/rectcrop3", "profile": {"bio": {"text": "Following the hype, 8-8 worker, addicted to farcaster and NFT", "mentioned_profiles": []}}, "username": "sogerns", "power_badge": false, "display_name": "Jasonnn🔵🎩", "active_status": "inactive", "verifications": ["0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97", "0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97"], "follower_count": 148, "custody_address": "0x2b3db9357382cfe1e3e3c278ab6eead7bc5de932", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97", "0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/shammgreen/on-my-way-by-alan-walkerpubg-version\"}"}', NULL), - (716428, '0x36812f2e1d31003a4a2e08dcfb010fab81272619', 0, 1, '2024-05-06 19:26:16+00', 5, 11, '{"fid": 355618, "object": "user", "pfp_url": "https://i.imgur.com/caKXLRN.jpg", "profile": {"bio": {"text": "Tech geek person and love to share my experience with others \nLove to hang out with friends and have fun\nI love crypto😍", "mentioned_profiles": []}}, "username": "saeedbolouri", "power_badge": false, "display_name": "JUPITER(🍖 🔄 🎩 🔵🔮)", "active_status": "inactive", "verifications": ["0x0ccb1abb72002355331c521d4994e360ede35fba"], "follower_count": 1443, "custody_address": "0x8ce456c039ce52170a29ffb9e913c29cb3d9ef16", "following_count": 1748, "verified_addresses": {"eth_addresses": ["0x0ccb1abb72002355331c521d4994e360ede35fba"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/E36YAC5ivHHhNeGJ6\"}"}', NULL), - (269053, '0xa795ae8a76b37bc67885decc0ba83715bc9bb65a', 0, 1, '2024-05-05 16:36:55+00', 0, 4, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 400, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 355, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5sdQOyqq2IDhvmx2lHOpwd?si=0e7ea3b2ba0044b0\"}"}', NULL), - (477398, '0xcb5ce5572b1bee50cd282ca6dd7e7b2e3db6a7b0', 0, 1, '2024-05-06 07:22:37+00', 0, 1, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 잘 부탁드립니다. ", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1411, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2528, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moe-p0/fifty-fifty-cupid?si=63147217752b4711809467bcae84fe0a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (363353, '0xec1de0bafbf62f2442a81d36559edec92308ebb0', 0, 1, '2024-05-06 02:33:27+00', 0, 30, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1665, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1721, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/20C67LSUvnlnA3uhwguJbO?si=VLM2g5jbSsCL-sHWS5OkIg\"}"}', 'sonata'), - (534743, '0x36582f114fa621780de2793e46a8ba1385368e21', 0, 1, '2024-05-06 09:38:18+00', 10, 5, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1383, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1591, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/X68Cp2knSp84EtyC8\"}"}', 'sonata'), - (438188, '0x9c38a3fc5a49fa0b8dac7b1e9675565776c7eeec', 0, 1, '2024-05-06 06:27:46+00', 0, 0, '{"fid": 385222, "object": "user", "pfp_url": "https://i.imgur.com/f3fYjax.jpg", "profile": {"bio": {"text": "Love trip n food. Living in /restarea (sweets & snacks) /meteorcity ", "mentioned_profiles": []}}, "username": "ameame.eth", "power_badge": false, "display_name": "ameli.degen", "active_status": "inactive", "verifications": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "follower_count": 751, "custody_address": "0x55f4b3d35eb11612aa4d141ce8c5a62d68f79485", "following_count": 435, "verified_addresses": {"eth_addresses": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YMQJNGGGT1XY4jKY7\"}"}', NULL), - (489520, '0x200528edac740f14010850b136bd249395962066', 0, 1, '2024-05-06 07:40:23+00', 0, 1, '{"fid": 399395, "object": "user", "pfp_url": "https://i.imgur.com/NDwFHcw.gif", "profile": {"bio": {"text": "始めたばかりです😊画像作りできます✨\n楽しいこと大好き❤みんなでわちゃわちゃしましょ😆\nhttps://twitter.com/Mamy_mamy3", "mentioned_profiles": []}}, "username": "mamy", "power_badge": false, "display_name": "mamy", "active_status": "inactive", "verifications": ["0x41baa8c61f166bbfe4be011436c18d6e8e46fb18"], "follower_count": 686, "custody_address": "0xea8078abbbc4f2aba53603f0c81e1d18fc3ed7b2", "following_count": 516, "verified_addresses": {"eth_addresses": ["0x41baa8c61f166bbfe4be011436c18d6e8e46fb18"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7AoE5zCidRxHisezzpWrGt?si=Di9tOpkdTHy-amHO4uxq3A\"}"}', 'sonata'), - (512270, '0x69515c77981d43de891c24a05ca01b6ecb096b96', 0, 1, '2024-05-06 08:26:53+00', 0, 7, '{"fid": 496920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b363a068-ae3b-4156-75bc-baa2b63ebf00/rectcrop3", "profile": {"bio": {"text": "선팔 / 맞팔 / 파이어족 가보자!\n맞디 금지!\nFire movement within 10 years", "mentioned_profiles": []}}, "username": "jonathanhwang", "power_badge": false, "display_name": "파이어족 가보자", "active_status": "inactive", "verifications": ["0xdfb9e76960bbad0c1dfc11795579b4bbe105c429"], "follower_count": 1316, "custody_address": "0xd5cabea8674c387418c2cbde2c79c3826c67c55e", "following_count": 1421, "verified_addresses": {"eth_addresses": ["0xdfb9e76960bbad0c1dfc11795579b4bbe105c429"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ViSZ5iGZUCEECZti6\"}"}', 'sonata'), - (512275, '0xdd70404260086730856cd2155d87a22a08fcd30d', 0, 1, '2024-05-06 08:26:10+00', 0, 2, '{"fid": 492181, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce798017-869a-443c-346e-b7f241eec900/rectcrop3", "profile": {"bio": {"text": "일상 생활 공유해요~\n같이 즐겨요(맞조대리팔!) F4F", "mentioned_profiles": []}}, "username": "jaeyoung87", "power_badge": false, "display_name": "F4F JY87", "active_status": "inactive", "verifications": ["0x48d22ec1033e26433969885e5b2adc82b683491f"], "follower_count": 1304, "custody_address": "0x0b2d3a2a3d277e6929780e5b4d65e8c1b096643d", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x48d22ec1033e26433969885e5b2adc82b683491f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 사랑이 길을 잃어서 by Min Dong Jun on #SoundCloud https://on.soundcloud.com/CcLwb\"}"}', NULL), - (587214, '0x9b6aa799469f1567b7bb218fc1ea57b085830062', 0, 1, '2024-05-06 12:08:33+00', 10, 0, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 729, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1080, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share88/zico-actually?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (542200, '0x24e22aa8b89b2145a2e405407d4996f322e37187', 0, 1, '2024-05-06 09:59:35+00', 0, 5, '{"fid": 506167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a791ac3a-65f2-4def-608c-59ae24c67400/rectcrop3", "profile": {"bio": {"text": "In crypto since 2017", "mentioned_profiles": []}}, "username": "onlydh", "power_badge": false, "display_name": "daniel", "active_status": "inactive", "verifications": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "follower_count": 762, "custody_address": "0x9c94baca26c8a6b031bdb5025963fcdac9f0eaa2", "following_count": 1027, "verified_addresses": {"eth_addresses": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/aqpyuuvrswj5/sets/5-1?si=3bf9e6572a294659902aadeb96edbf85&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (542205, '0x0baf2193dd8591c7cbe854bab15a6432704bc230', 0, 1, '2024-05-06 10:00:02+00', 0, 4, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3414, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1949, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x23vo\"}"}', 'sonata'), - (786021, '0xe5220605108633dd6a87453475b378148c8c59c9', 0, 1, '2024-05-07 02:31:05+00', 0, 1, '{"fid": 288345, "object": "user", "pfp_url": "https://i.imgur.com/FwGqpQ9.jpg", "profile": {"bio": {"text": " I want to learn various things\nBeing a Good Dad\n", "mentioned_profiles": []}}, "username": "gylee", "power_badge": false, "display_name": "Gygygy🍖🎩💧", "active_status": "inactive", "verifications": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "follower_count": 2546, "custody_address": "0xc02b424283200788e3059b9dec77711175743775", "following_count": 1989, "verified_addresses": {"eth_addresses": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fch3BkXz4t9hDA9Z8\"}"}', 'sonata'), - (381799, '0x7084fe9b0a30f66eeedd3ff55c2aecf01ab702b3', 0, 1, '2024-05-06 04:04:35+00', 0, 10, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1919, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2385, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35befba6-2aa6-4fec-2d1a-337522f80b00/original\"}","{\"url\":\"https://soundcloud.com/janet-suhh/we-all-lie-cover-ar1_mastered-st?si=85802d4cc1f1483197b0e8987489de4f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (439454, '0x45e0907011a6dd3485a121076b516b4a1d101b2b', 0, 1, '2024-05-06 06:29:29+00', 0, 2, '{"fid": 442334, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigu3bpirz6npfu5dejoeiroo3q6nk6m4twyqg5z4i66w3dmrehxoe", "profile": {"bio": {"text": "Just starting with $DEGEN chain.", "mentioned_profiles": []}}, "username": "bernardis", "power_badge": true, "display_name": "Bernardo", "active_status": "inactive", "verifications": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "follower_count": 192, "custody_address": "0xf91d574647d6214cf8b4db249ed48f013baf5bce", "following_count": 260, "verified_addresses": {"eth_addresses": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "sol_addresses": ["C58ejksrZv6V9W5kdyfqQ7mzwqEG9ozVJKG3kYJ6VzER"]}}', '{"{\"url\":\"https://soundcloud.com/u2/u2-invisible-songs-of?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (520633, '0x9cea76d07444c1f90990d27913e5f4c152027620', 0, 1, '2024-05-06 09:01:53+00', 0, 3, '{"fid": 441807, "object": "user", "pfp_url": "https://i.imgur.com/0ZmgGRR.jpg", "profile": {"bio": {"text": "Hello, my name is Amir Hossein. I would be happy if you follow me. I would like to interact with you. Thank you very much❤️✅", "mentioned_profiles": []}}, "username": "amirho3en", "power_badge": false, "display_name": "Amirho3en🍖", "active_status": "inactive", "verifications": ["0xaf73240d97351ffd07698464e44c2dd9f9c20770"], "follower_count": 601, "custody_address": "0xaf73240d97351ffd07698464e44c2dd9f9c20770", "following_count": 664, "verified_addresses": {"eth_addresses": ["0xaf73240d97351ffd07698464e44c2dd9f9c20770"], "sol_addresses": ["84eFyE7YPJi3gXF3AFRZMKyZ3wAwZirvWp9iKX8TQkCE"]}}', '{"{\"url\":\"https://soundcloud.com/nu11b0i/blue-whale-theme-song-all-i-want-ft-nullboi?ref=clipboard&p=a&c=0&si=1707df0d4b934708918783de8ae98a4b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (463005, '0xab93bf80faf66d5766539f5fb487177f79cfc066', 0, 1, '2024-05-06 07:02:24+00', 0, 0, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 47, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 151, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o6os71ToDCEnZhMK8\"}"}', 'sonata'), - (527644, '0x364942f95b3891c47942f993d4f10517f0cf6174', 0, 1, '2024-05-06 09:27:57+00', 0, 1, '{"fid": 417412, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86ca9822-4ac1-47ac-104c-8f8e7fca2600/rectcrop3", "profile": {"bio": {"text": "i love game 🎮🔥\ni love NFT🍖🎩💜\n\nmy YouTube channel link: \nhttps://youtube.com/@psycho_msh?si=jhttWZXtivdUqcRt", "mentioned_profiles": []}}, "username": "nftghost", "power_badge": false, "display_name": "selyna 🎩 🔄 🍖", "active_status": "inactive", "verifications": ["0x6e76065817537a497800770e00342e06323e4b31"], "follower_count": 176, "custody_address": "0x494fd5cddab971d3c8083f01c8b6c11ea894b6b3", "following_count": 195, "verified_addresses": {"eth_addresses": ["0x6e76065817537a497800770e00342e06323e4b31"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Triplo Max - Shadow (VOLB3X Remix) by VOLB3X on #SoundCloud https://on.soundcloud.com/KtbdB\"}"}', NULL), - (613819, '0xf88e1d7916196d844ad5eea51b1cb37e64810d1c', 0, 1, '2024-05-06 13:12:06+00', 0, 3, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1209, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1374, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DRU5p\"}"}', 'sonata'), - (463022, '0x0d5f3fd533ff19e6ab274a95518b6736c6c52a71', 0, 1, '2024-05-06 07:03:11+00', 0, 3, '{"fid": 479253, "object": "user", "pfp_url": "https://i.imgur.com/f2gnEq7.jpg", "profile": {"bio": {"text": "그게 뭐든 다 이루다_ERUDA_열정걸_초긍정에너지(With me, you have super power😲 Super positive energy✨️⚘️) 늘 응원해:)", "mentioned_profiles": []}}, "username": "eruda", "power_badge": false, "display_name": "ERUDA", "active_status": "inactive", "verifications": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "follower_count": 866, "custody_address": "0x2c72ca53218c08d77e61639cb2ccfa7d08403ff8", "following_count": 594, "verified_addresses": {"eth_addresses": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kHDyr\"}"}', 'sonata'), - (526049, '0xd95f17390842ea5ae79f93d883f1032fab28e532', 0, 1, '2024-05-06 09:22:56+00', 0, 5, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1610, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1309, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qYgPQWkss9xeGYQs9\"}"}', 'sonata'), - (439505, '0x404923095f553a4e6ace8490d4d5fcf71fe5328b', 0, 1, '2024-05-06 06:30:03+00', 0, 5, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2203, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2207, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/roGgS\"}"}', 'sonata'), - (502186, '0x5dac2ef167262f5349c4a6f3f61a1b8e6048afc2', 5000, 1, '2024-05-06 08:03:48+00', 0, 1, '{"fid": 311776, "object": "user", "pfp_url": "https://i.imgur.com/CzZID1j.jpg", "profile": {"bio": {"text": "İ''m kind and crezy", "mentioned_profiles": []}}, "username": "emirmrp", "power_badge": false, "display_name": "Emir", "active_status": "inactive", "verifications": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "follower_count": 62, "custody_address": "0xc920d308083b3cb4e8033e58894df2b34af3e0e1", "following_count": 171, "verified_addresses": {"eth_addresses": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/ibrahimtatlises/sets/neden-2\"}"}', NULL), - (369366, '0x62e3d67fb749be0822e60c31438e036cb5bcb972', 0, 1, '2024-05-06 03:23:55+00', 0, 0, '{"fid": 342962, "object": "user", "pfp_url": "https://i.imgur.com/tsom4LC.jpg", "profile": {"bio": {"text": "Bitcoin bull", "mentioned_profiles": []}}, "username": "gauravdua", "power_badge": false, "display_name": "Gaurav", "active_status": "inactive", "verifications": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "follower_count": 8, "custody_address": "0x679e369560fce1c59d5f1622d1f2a5932736113c", "following_count": 85, "verified_addresses": {"eth_addresses": ["0x5b8b87331e484afb35138da956aa30be26c1f22f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/harrywashere/new-you?referral=0x5b8b87331e484afb35138da956aa30be26c1f22f&referral_source=link\"}"}', NULL), - (526447, '0xec304c7d19f3aaa647b404ba847fec7623762bed', 0, 1, '2024-05-06 09:25:20+00', 0, 0, '{"fid": 405729, "object": "user", "pfp_url": "https://va2wd5vwvtfwbkxrz4myzxvo3nghxjnchtpgxxk4vzi4w4riu4xa.arweave.net/qDVh9rasy2Cq8c8ZjN6u20x7paI83mvdXK5Ry3Iopy4/", "profile": {"bio": {"text": "🐸\nWe are a variable of unknown circumstances!", "mentioned_profiles": []}}, "username": "hamid-siemens", "power_badge": false, "display_name": "HaMiD", "active_status": "inactive", "verifications": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "follower_count": 2436, "custody_address": "0xe56ce66286aad851e8ac03046e3b91241419e103", "following_count": 2613, "verified_addresses": {"eth_addresses": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Eminem - River Ft. Ed Sheeran(Cartel Siege Remix)[[FREE DOWNLOAD]] by Cartel Siege Official on #SoundCloud https://on.soundcloud.com/8vSmJ\"}"}', NULL), - (542159, '0x20432742ad3c2dcc6f7dbba0a5b3e2996391c6a3', 0, 1, '2024-05-06 09:59:36+00', 0, 1, '{"fid": 501789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d2c960a-2bb5-4637-ca0e-67fe391ce200/rectcrop3", "profile": {"bio": {"text": "smile 😃\n just do it 최고\n부스터가 뭐시중헌디", "mentioned_profiles": []}}, "username": "mmraz", "power_badge": false, "display_name": "Jay M🎩🍖", "active_status": "inactive", "verifications": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "follower_count": 1079, "custody_address": "0x528e24d99b86845a6ecf98f21cb841fbd46eb2b0", "following_count": 965, "verified_addresses": {"eth_addresses": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alkatera/angel-baby?si=ac36a32faee7408d98bcbf8d79759fee&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing 천사 아기 선율이 잔잔하니 구름을 걷는듯한.\"}"}', NULL), - (480852, '0x674498849d7d5b628ad53dd18107ebb9542a2434', 0, 1, '2024-05-06 07:27:39+00', 0, 7, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2615, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2441, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/9dodl70sczkr/hello?si=71989ed07e4d4c128af86d94d4e101a4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (384013, '0x2a0f2166651db0113817a8405d803beb920e7e64', 0, 1, '2024-05-06 04:07:13+00', 0, 0, '{"fid": 418655, "object": "user", "pfp_url": "https://i.imgur.com/2otSRxb.jpg", "profile": {"bio": {"text": "Crypto since 2017. I''m ready for Based Summer / Love music / Share music recommendations /psymusic", "mentioned_profiles": []}}, "username": "guu", "power_badge": false, "display_name": "Gu", "active_status": "inactive", "verifications": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "follower_count": 147, "custody_address": "0x87f6314adbf601f44fbf3fd37edc2fb7aff185a8", "following_count": 233, "verified_addresses": {"eth_addresses": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dj-maysa-lozano/apu-dance-vol-3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (358977, '0x7973038ab183843cb8dfc7fc2908c170c1fdb77e', 0, 1, '2024-05-06 02:10:01+00', 0, 0, '{"fid": 5124, "object": "user", "pfp_url": "https://i.imgur.com/M6cVTFm.jpg", "profile": {"bio": {"text": "DIGITAL DRAG DELUSIONAL ⚡️Building//dragverse💄#OpenForWork in Content, Entertainment, Brand Marketing, Visual Design, and Digital Experiences.", "mentioned_profiles": []}}, "username": "reinasalti", "power_badge": false, "display_name": "saltï ⚡️", "active_status": "inactive", "verifications": ["0x34cbdba195141f1bfcb4ba184de6c1a2bca18b5c", "0x1f417f8548279e270f0f89973cca6e4626b47f18"], "follower_count": 260, "custody_address": "0x3df97448b7afa209b5bcbdae11a93af68da834e8", "following_count": 174, "verified_addresses": {"eth_addresses": ["0x34cbdba195141f1bfcb4ba184de6c1a2bca18b5c", "0x1f417f8548279e270f0f89973cca6e4626b47f18"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reinasalti/post/0b45e4c3-d43d-4349-a6af-f9e3267d8c28\"}"}', NULL), - (511648, '0xb98d99d1f113ce98000c1734b1edf86a21e0038c', 0, 1, '2024-05-06 08:25:12+00', 0, 4, '{"fid": 329134, "object": "user", "pfp_url": "https://i.imgur.com/KxtKnVU.jpg", "profile": {"bio": {"text": "→𝐷𝑜𝑛''𝑡 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝐷𝑟𝑒𝑎𝑚 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝑃𝑙𝑎𝑛 !🌱♠️", "mentioned_profiles": []}}, "username": "artam", "power_badge": false, "display_name": "Artam | 🎩🔵🔄 🎩🍗", "active_status": "inactive", "verifications": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "follower_count": 1254, "custody_address": "0xdc6c93780b9fe172e234fea6ec1713385a13bc97", "following_count": 1020, "verified_addresses": {"eth_addresses": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "sol_addresses": ["GwSpiiX8r44NWnaUGAAoSxjxHWHs78Hjx65MsX4HWDAE"]}}', '{"{\"url\":\"https://soundcloud.com/rihanna/we-found-love?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (460496, '0xa7d52d342244735787c7617cd97a3075b5503273', 0, 1, '2024-05-06 06:59:30+00', 0, 2, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2925, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2353, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EE25X\"}"}', 'sonata'), - (502193, '0x9df066e2d9230aa163a1ecadac6c78b868bd3c4c', 0, 1, '2024-05-06 08:02:35+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 789, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FVYr2\"}"}', 'sonata'), - (533717, '0x5d03a171cefa38feefe509c1a4872ef0c388aec9', 0, 1, '2024-05-06 09:37:00+00', 0, 9, '{"fid": 405729, "object": "user", "pfp_url": "https://va2wd5vwvtfwbkxrz4myzxvo3nghxjnchtpgxxk4vzi4w4riu4xa.arweave.net/qDVh9rasy2Cq8c8ZjN6u20x7paI83mvdXK5Ry3Iopy4/", "profile": {"bio": {"text": "🐸\nWe are a variable of unknown circumstances!", "mentioned_profiles": []}}, "username": "hamid-siemens", "power_badge": false, "display_name": "HaMiD", "active_status": "inactive", "verifications": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "follower_count": 2436, "custody_address": "0xe56ce66286aad851e8ac03046e3b91241419e103", "following_count": 2613, "verified_addresses": {"eth_addresses": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Happiness is a butterfly by FranciscoScandurva on #SoundCloud https://on.soundcloud.com/x3fpp\"}"}', NULL), - (1172887, '0xc79aa3d94a89a6c32ea6e62b55561b5215672a38', 7242, 1, '2024-05-14 19:48:16+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 421, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6PjJEcuJzgsfXef8XHxR97?si=36z8K37STReTZJ0D3wfDMg\"}"}', 'sonata'), - (502194, '0x6dd61e39ac7cfdaf76980033fc63bee308bfe992', 0, 1, '2024-05-06 08:03:46+00', 0, 5, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3544, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2007, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/Y7nRyFTnSGVGrEcS9\"}"}', 'sonata'), - (432584, '0x8347ae71a725d6b96926b10c3dff0f793ede5450', 0, 1, '2024-05-06 06:18:44+00', 0, 2, '{"fid": 385242, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiggp52wnkuqowiewtsdpsj6lu2avnndesprstiddjwguqdgyfbpgu", "profile": {"bio": {"text": "i love farcaster\nCH host:/ogiri /casnews", "mentioned_profiles": []}}, "username": "hareiwa", "power_badge": false, "display_name": "🌮hareiwa🎩", "active_status": "inactive", "verifications": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "follower_count": 1394, "custody_address": "0xf7c15b2215c1a2c7390746209dee17f98aca29f1", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "sol_addresses": ["CKpihsP5fsG5KckWo7fUZnsVDYXy2Zpx9c1PFam39eFK"]}}', '{"{\"url\":\"https://soundcloud.com/v8schwester/syouten-dj-tool?si=c1f9dec0c1a44087ae28f56cd9149766&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'ogiri'), - (458187, '0x9ab83f62a34c194554c77e5b5009d76eda4b5239', 0, 1, '2024-05-06 06:57:19+00', 0, 8, '{"fid": 344831, "object": "user", "pfp_url": "https://i.imgur.com/Hcy3SgR.jpg", "profile": {"bio": {"text": "雰囲気仮想通カーです⊂(`・ω・´)⊃バッ\nXはこちら\n\nhttps://twitter.com/doryaaa3", "mentioned_profiles": []}}, "username": "doryaaaa", "power_badge": false, "display_name": "どりゃー୧(`•ω•´)", "active_status": "inactive", "verifications": ["0x0b88fdabc889ef624ab53a620fa92c1271d5579a"], "follower_count": 1527, "custody_address": "0x96aedab28ab54564453afc1901daad246a1b0813", "following_count": 1100, "verified_addresses": {"eth_addresses": ["0x0b88fdabc889ef624ab53a620fa92c1271d5579a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0KLq0h2MHbvbE3VmLtU48w?si=VUFVe3LFTF2g5BdKjzK-Mg\"}"}', 'musicjp'), - (536047, '0x82f031a717865fec9641ec1d7204cf5404da5ab9', 0, 1, '2024-05-06 09:41:29+00', 0, 1, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3146, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2970, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/j3WwZ\"}"}', 'sonata'), - (785116, '0x2d905f9a9dbd4eddcdd2563f959ae08697281bdb', 0, 1, '2024-05-07 02:18:30+00', 0, 6, '{"fid": 412011, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3161c7e5-11c2-4fd1-7d61-74893bc78300/rectcrop3", "profile": {"bio": {"text": "냥냥!!\n#Investment #DailyLife #Animal", "mentioned_profiles": []}}, "username": "ssong", "power_badge": false, "display_name": "nyang nyang", "active_status": "inactive", "verifications": ["0x3a1b998d2ad5abb792c3bae9efaa5010c968e9c8"], "follower_count": 3407, "custody_address": "0x260da47b42dc4c5d842926ed6bd38c47ee5fff49", "following_count": 3078, "verified_addresses": {"eth_addresses": ["0x3a1b998d2ad5abb792c3bae9efaa5010c968e9c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v7nbH\"}"}', 'sonata'), - (511360, '0xe00c01578604e9c752fdf3b048c67082c28c39d6', 0, 1, '2024-05-06 08:22:56+00', 0, 2, '{"fid": 506034, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f502dfe1-f225-4d01-25a9-429d17de2300/rectcrop3", "profile": {"bio": {"text": "World traveler 😃\n\nTravel to 350 cities \nin 43 countries 🔥 ", "mentioned_profiles": []}}, "username": "hongsil2", "power_badge": false, "display_name": "홍반장", "active_status": "inactive", "verifications": ["0xab8e844225038a1e5a195e3926b1b6d8b881ac83"], "follower_count": 510, "custody_address": "0x5c60e0a3973b544c7fe6aa0b1f9945bf977f6ad1", "following_count": 466, "verified_addresses": {"eth_addresses": ["0xab8e844225038a1e5a195e3926b1b6d8b881ac83"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/65272ac2-8ef9-465b-410d-372d944c7100/original\"}","{\"url\":\"https://on.soundcloud.com/QEckeYZqdtP8piVx5\"}"}', 'sonata'), - (552652, '0xcd77a6a8fe9e4b7938fbdfa32714c1af76a92183', 0, 1, '2024-05-06 10:30:02+00', 0, 3, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2211, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2229, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/StFzv\"}"}', 'sonata'), - (1173134, '0xb80acf323c2667f0717684c9a3f417cfd06404a7', 6000, 1, '2024-05-15 02:40:59+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 695, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 460, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/light-show?referral=0x4817260d616ffc30e61f782c0dbc20ad0fda56b4\"}"}', 'sonata'), - (431915, '0x7dbdc376bb13ace68ad91a5645fe5a960e0f60b5', 0, 1, '2024-05-06 06:17:19+00', 0, 0, '{"fid": 498509, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/010d4e75-25e8-44dc-3753-ab19b14ec400/rectcrop3", "profile": {"bio": {"text": "I''m a man that investing in crypto", "mentioned_profiles": []}}, "username": "godofmoney", "power_badge": false, "display_name": "Moneyman 🎩🔮🔄", "active_status": "inactive", "verifications": ["0xfee15f602e9206f01880840bca6c4360c7934f34"], "follower_count": 395, "custody_address": "0x76baa881c0f15a0ccf459681487185718c22d7b1", "following_count": 449, "verified_addresses": {"eth_addresses": ["0xfee15f602e9206f01880840bca6c4360c7934f34"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/sepidedam-3/moein-tanhaye-tanha?in=rihana-azari%2Fsets%2Fzxzvkp88xjzi\"}"}', NULL), - (387845, '0xfd16e13617cf0a4bdac9743209534e58b36ce25f', 0, 1, '2024-05-06 04:16:45+00', 0, 0, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2102, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2651, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R1NdS\"}"}', 'sonata'), - (533482, '0x4ccbf80cc32c4fbfe1edc348ab0900d1af292e1b', 0, 1, '2024-05-06 09:36:55+00', 0, 0, '{"fid": 503282, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ce46349-bbd8-4209-da10-6fd8b93c2700/original", "profile": {"bio": {"text": "Hi, guys. Crypto. Dragon. \nhttps://zora.co/@onefourwon", "mentioned_profiles": []}}, "username": "onefourwon", "power_badge": false, "display_name": "onewon 🎩🍖🔵", "active_status": "inactive", "verifications": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "follower_count": 1087, "custody_address": "0x0993505a45968c500db8d13c32ef0928e2fd67bf", "following_count": 1041, "verified_addresses": {"eth_addresses": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-385819292/nayeon-pop-mix-220710-lyrics?si=99cb6710c4164c4584c95fa85e16b0df&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (332142, '0x8ffc9cdb72e2cc5bba3214716aebd27cf792efb6', 0, 1, '2024-05-05 22:57:24+00', 0, 3, '{"fid": 503240, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c6735e58-33ca-45aa-f061-51ecd098b700/rectcrop3", "profile": {"bio": {"text": "have a nice day! 🥰", "mentioned_profiles": []}}, "username": "kelsey11", "power_badge": false, "display_name": "kelsey11", "active_status": "inactive", "verifications": ["0x821dc89c23d059170c92fa1f569d67f0ff1b0885"], "follower_count": 326, "custody_address": "0x3455c602be5717be5155b70c07370ddbf6cfd869", "following_count": 429, "verified_addresses": {"eth_addresses": ["0x821dc89c23d059170c92fa1f569d67f0ff1b0885"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/03wrmep5c3Dr9JlOXPvFUX?si=sr8dMmTlSRScxt2TMUa18Q\"}","{\"url\":\"https://youtu.be/Yfwlj0gba_k?feature=shared\"}"}', 'sonata'), - (539916, '0xc2ed4dc7729cafc9bfcfc00551525bfaafeaae1e', 0, 1, '2024-05-06 09:52:26+00', 0, 1, '{"fid": 421000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1ddbc0a2-013c-4300-1d16-dd04765af000/original", "profile": {"bio": {"text": "Japanese guy who loves crypto.\nhosting /games-jp /stories-jp /musicjp\n", "mentioned_profiles": []}}, "username": "nyasu", "power_badge": false, "display_name": "Nyasu(🎩🎙️🍖🔥)", "active_status": "inactive", "verifications": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "follower_count": 2333, "custody_address": "0xff5035ccce1e588d7ee45dbce9c700ce7b2ab609", "following_count": 1325, "verified_addresses": {"eth_addresses": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nh-t-minh-8-4/idol-x-bling-bang-bang-born?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (510014, '0x56c31aff02bc429870df8d9594784a11c4ed265e', 0, 1, '2024-05-06 08:19:56+00', 0, 5, '{"fid": 376576, "object": "user", "pfp_url": "https://i.imgur.com/UUj84vr.jpg", "profile": {"bio": {"text": "Expensive life passes faster than running water🖤", "mentioned_profiles": []}}, "username": "hodab", "power_badge": false, "display_name": "Hodab 🎩🍗❤ $DEGEN ", "active_status": "inactive", "verifications": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "follower_count": 799, "custody_address": "0x7af5fc8120cbb7cd825c9c00b6d3a6175648bf71", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SKjbQbNEFX9psBTi7\"}"}', 'sonata'), - (382576, '0xdaa9d2664089c729b751c8a35e85e23ce2c85b04', 0, 1, '2024-05-06 04:04:44+00', 0, 0, '{"fid": 353613, "object": "user", "pfp_url": "https://i.imgur.com/3YxN3bS.jpg", "profile": {"bio": {"text": "X\nhttps://twitter.com/Wonderwall4226\n\n#仮想通貨 #エアドロップ #crypto #airdrop #NFT #CNP #ICL #bitcoin #ETH #web3 #BCG #NFTGames #エアドロ", "mentioned_profiles": []}}, "username": "wonderwall", "power_badge": false, "display_name": "Wonderwall", "active_status": "inactive", "verifications": ["0x6dc7b04df65747e867437a64958c2282c51beb9e"], "follower_count": 1161, "custody_address": "0xdf7311e33db35b95eef3ec6c619afed846378e07", "following_count": 2443, "verified_addresses": {"eth_addresses": ["0x6dc7b04df65747e867437a64958c2282c51beb9e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mKNE3c1biWTMRfNp8\"}"}', NULL), - (502945, '0x87e23693ddcafbefd6bafc3cb5e762cb345cfdf4', 0, 1, '2024-05-06 08:04:05+00', 0, 2, '{"fid": 501188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b342701-7f59-4b3f-8a8d-87bfaa186a00/rectcrop3", "profile": {"bio": {"text": "Manners & money makes a man | Daily life🎩 | Day trader🌱 | 중고신입👻 | 실패는 없다✨", "mentioned_profiles": []}}, "username": "k729", "power_badge": false, "display_name": "regor🎩🍖", "active_status": "inactive", "verifications": ["0x8ee5c408725ccdb8cc8bfc116f3bcbb4a039d567"], "follower_count": 673, "custody_address": "0x75dec736faeb7553ea2835646cba74976738894d", "following_count": 664, "verified_addresses": {"eth_addresses": ["0x8ee5c408725ccdb8cc8bfc116f3bcbb4a039d567"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sojaewook/tik-tak-tokfeat-soyoon?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (923199, '0xfa3798eafc9cd63782bd285a266072c66091b182', 0, 1, '2024-05-07 07:28:29+00', 0, 0, '{"fid": 489893, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acfbf5f1-9b73-4e1e-3628-af1def309a00/rectcrop3", "profile": {"bio": {"text": "슈캐💛워캐💛Degen💛🎩💛", "mentioned_profiles": []}}, "username": "lovemango", "power_badge": false, "display_name": "Mango", "active_status": "inactive", "verifications": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "follower_count": 1534, "custody_address": "0xe2b9accc46f0747c26f07483ea17ab9fd21bd965", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/effzPZVvdDmK17af8\"}"}', NULL), - (457667, '0x15a896f3077b350dc9dd7a9102f87b20f39240f8', 0, 1, '2024-05-06 06:54:38+00', 0, 1, '{"fid": 344831, "object": "user", "pfp_url": "https://i.imgur.com/Hcy3SgR.jpg", "profile": {"bio": {"text": "雰囲気仮想通カーです⊂(`・ω・´)⊃バッ\nXはこちら\n\nhttps://twitter.com/doryaaa3", "mentioned_profiles": []}}, "username": "doryaaaa", "power_badge": false, "display_name": "どりゃー୧(`•ω•´)", "active_status": "inactive", "verifications": ["0x0b88fdabc889ef624ab53a620fa92c1271d5579a"], "follower_count": 1524, "custody_address": "0x96aedab28ab54564453afc1901daad246a1b0813", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0x0b88fdabc889ef624ab53a620fa92c1271d5579a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0jXeQZd1dLeSgnU7KWzaIA?si=3mttjfWhR9Sf7ZfW3WNDOA&context=spotify%3Asearch%3A%25E3%2582%25B5%25E3%2583%25B3%25E3%2583%2580%25E3%2583%25BC\"}"}', NULL), - (441209, '0x80c21276e408cb3b02e33efa3c4b379ce9069758', 0, 1, '2024-05-06 06:31:48+00', 0, 2, '{"fid": 449096, "object": "user", "pfp_url": "https://i.imgur.com/uJUaygl.jpg", "profile": {"bio": {"text": "I am a nurse.", "mentioned_profiles": []}}, "username": "safail", "power_badge": false, "display_name": "Safail 🔵 🎩", "active_status": "inactive", "verifications": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "follower_count": 1209, "custody_address": "0x9d7ae0c0c43aea23ca1563b49fdddc611b5bdd7d", "following_count": 2054, "verified_addresses": {"eth_addresses": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KLmPy\"}"}', NULL), - (396110, '0x371c9900846bae06293714f66ab0cd09f0d06c9c', 0, 1, '2024-05-06 04:37:53+00', 0, 7, '{"fid": 500749, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94e5c92c-162e-4ec0-9b80-d9f2e54f7400/rectcrop3", "profile": {"bio": {"text": "The blockchain researcher embarks on a journey to find happiness", "mentioned_profiles": []}}, "username": "kasion", "power_badge": false, "display_name": "Kasion🎩🍖🔵", "active_status": "inactive", "verifications": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "follower_count": 1735, "custody_address": "0xa19a05609a7a1be8d950cdd95f0575ad614d7f2e", "following_count": 1537, "verified_addresses": {"eth_addresses": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/44wdltc5vbqw/beenzino-okgo-feat-e-sens\"}"}', 'sonata'), - (542171, '0xce08aa2bae3b5875e7498ed8f569eb8f1bc81713', 0, 1, '2024-05-06 09:58:53+00', 0, 2, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wTG7DVVJ6BC19ywJ6\"}"}', 'sonata'), - (393575, '0x54ac029e6f973691f918ac9cf2fb8096290e5060', 0, 1, '2024-05-06 04:32:08+00', 0, 1, '{"fid": 504836, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7c9c6e4-df42-4ad5-e9f7-0e4f2b34b300/original", "profile": {"bio": {"text": "Love warpcast", "mentioned_profiles": []}}, "username": "jellyjelly", "power_badge": false, "display_name": "JellyJelly🎩🔮", "active_status": "inactive", "verifications": ["0x5e4e74d10a79f3f2519d71bb1ffb276443df27c1"], "follower_count": 515, "custody_address": "0xf23d32580ab4abb28e8776376733cd52990023ed", "following_count": 456, "verified_addresses": {"eth_addresses": ["0x5e4e74d10a79f3f2519d71bb1ffb276443df27c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/twqhlqprienz/sets/begin-again-ost\"}"}', 'sonata'), - (388795, '0x269b0515d4a9219950bcb09566c20e4a73b9d3bb', 0, 1, '2024-05-06 04:19:22+00', 0, 1, '{"fid": 311486, "object": "user", "pfp_url": "https://arweave.net/a4mAQ-Lyas_vYJJF_sCwOPToRY5uA5luz5k0fb4skSQ/", "profile": {"bio": {"text": "football lover ⚽", "mentioned_profiles": []}}, "username": "shahishahrak", "power_badge": false, "display_name": "Ebrahim🔮 🎩 🔵", "active_status": "inactive", "verifications": ["0x2e09ef7918e64ddabeb45e4dc81cb10c6554246c"], "follower_count": 1994, "custody_address": "0x55a33cefab1643b70678423741b247c49bf46009", "following_count": 2111, "verified_addresses": {"eth_addresses": ["0x2e09ef7918e64ddabeb45e4dc81cb10c6554246c"], "sol_addresses": ["D3nDH7yhhWKp1X7XBzqqy23ajMV4mkq8YvUsQZZUFct3"]}}', '{"{\"url\":\"https://on.soundcloud.com/jNjF4V3LUzLekHxe7\"}"}', 'sonata'), - (458681, '0x7b7f301bcf87d020681e9ad6f61a39c1d7142879', 6300, 1, '2024-05-06 06:57:53+00', 3, 9, '{"fid": 507856, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d276afed-cc35-44d7-0154-787a1e562e00/rectcrop3", "profile": {"bio": {"text": "Crypto researcher/web3 gamer/lifelong learner/travel addict", "mentioned_profiles": []}}, "username": "!507856", "power_badge": false, "display_name": "Nil", "active_status": "inactive", "verifications": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "follower_count": 644, "custody_address": "0xe2e74686dbfa00e6e34efb3b5aac7216106cf9f8", "following_count": 925, "verified_addresses": {"eth_addresses": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral_source=link\"}"}', 'sonata'), - (387164, '0x75a090cc6eb8adf0554f3ac376bc1fcda8d59b66', 0, 1, '2024-05-06 04:16:01+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2924, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2346, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A368D\"}"}', 'sonata'), - (464043, '0x9ce270bc64d26f8f0f1272508c59b02e929bb9db', 0, 1, '2024-05-06 07:05:03+00', 0, 5, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2204, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2207, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Enwmi\"}"}', 'sonata'), - (441221, '0xd2a920980fe51df5ff0a8c51872354d24f56c24d', 0, 1, '2024-05-06 06:31:48+00', 0, 0, '{"fid": 385222, "object": "user", "pfp_url": "https://i.imgur.com/f3fYjax.jpg", "profile": {"bio": {"text": "Love trip n food. Living in /restarea (sweets & snacks) /meteorcity ", "mentioned_profiles": []}}, "username": "ameame.eth", "power_badge": false, "display_name": "ameli.degen", "active_status": "inactive", "verifications": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "follower_count": 751, "custody_address": "0x55f4b3d35eb11612aa4d141ce8c5a62d68f79485", "following_count": 435, "verified_addresses": {"eth_addresses": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xxAkjkjbkbVVZrLW7\"}"}', NULL), - (482444, '0xfb687097ae5e5fed3b1fb02bfa5351d35a8bc8af', 0, 1, '2024-05-06 07:30:13+00', 0, 1, '{"fid": 507380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d510649c-984d-4ac8-82c2-1a6f09457e00/original", "profile": {"bio": {"text": "Movies and art lover", "mentioned_profiles": []}}, "username": "!507380", "power_badge": false, "display_name": "Anchor", "active_status": "inactive", "verifications": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "follower_count": 82, "custody_address": "0xba4430479cce3480d93e3fd91c9bcfcd37ee5b3c", "following_count": 425, "verified_addresses": {"eth_addresses": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Eqm8uCdpitFz1EL76\"}"}', NULL), - (518158, '0x827b0145801de0888fb8a380a4bcb60e86c6d737', 0, 1, '2024-05-06 08:47:04+00', 0, 5, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1399, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 964, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hk-yi-1/jang-na-ra-1-first-story-01-from-youtube?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (489662, '0x8282c60f0f1b61bba4e6a563118339b913bd6fbd', 5000, 1, '2024-05-06 07:41:57+00', 0, 4, '{"fid": 292951, "object": "user", "pfp_url": "https://i.imgur.com/MIU3hPv.jpg", "profile": {"bio": {"text": "$Btc $Eth Crypto $Tsla $Msft Art / investor & collector / 똥글 싸지르는 방구석 ㅈ문가\n", "mentioned_profiles": []}}, "username": "madpierro", "power_badge": false, "display_name": "Bull🎩🍖", "active_status": "inactive", "verifications": ["0xd80d923a92d7f5fe96c184da3ad04955bb099961"], "follower_count": 1296, "custody_address": "0xfd3a798b7aee1a92c046de997aea1481d7ece4d7", "following_count": 1421, "verified_addresses": {"eth_addresses": ["0xd80d923a92d7f5fe96c184da3ad04955bb099961"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cigarettesaftersex/apocalypse-3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (520639, '0x3d8587f1901162a163e4f3ad1820b5c5d5a3e75a', 0, 1, '2024-05-06 09:02:00+00', 0, 5, '{"fid": 486310, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6071787-b9ac-49a8-f2da-15e311df5e00/rectcrop3", "profile": {"bio": {"text": "F4F 마띠🎩 햄🍖 인간 비타민🍋🍋🍋💛", "mentioned_profiles": []}}, "username": "jennyan", "power_badge": false, "display_name": "J🎩🍋", "active_status": "inactive", "verifications": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "follower_count": 1529, "custody_address": "0xacd0c2b19213be2deaaee6700483b03f545ab108", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/onthedal/1a1?si=20e94351b9764af49a8fd0068f534e54&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (441228, '0x2bccb15f2f03b7c2438ff4ece48a4ce0b52dbe43', 0, 1, '2024-05-06 06:32:24+00', 0, 0, '{"fid": 357083, "object": "user", "pfp_url": "https://i.imgur.com/ozqDeqp.jpg", "profile": {"bio": {"text": "\nsmile", "mentioned_profiles": []}}, "username": "cryptographmeet", "power_badge": false, "display_name": "Miss Y", "active_status": "inactive", "verifications": ["0x6431d287a715ca9d5b26831da1724b32e6d65000"], "follower_count": 681, "custody_address": "0x4356bf733cb2c3046dc2b4c246f8d0b62212f59b", "following_count": 924, "verified_addresses": {"eth_addresses": ["0x6431d287a715ca9d5b26831da1724b32e6d65000"], "sol_addresses": ["6b1nszegAzSsrjXovxaEdwvvRSgcEm1nKvm5EEVyMC9r"]}}', '{"{\"url\":\"https://on.soundcloud.com/SRkPFQ7yDSZjXh2D8\"}"}', NULL), - (319198, '0x62832faa219f19fbf91a25bf5f112cc48ae6e86d', 0, 1, '2024-05-05 21:33:09+00', 0, 7, '{"fid": 449301, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreibovradvohaeu53sjhal37kvvaszwdbf5hd4uiyf4lsf7bqu2q6yy", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "milad47", "power_badge": false, "display_name": "Milad.Eth🍖🎩🦕🥷🔄", "active_status": "inactive", "verifications": ["0x29ec3409729ff4cbed66d69a88ac94234b8c0ca1", "0x9e8d4c9ff8605f8aa322d3b99c89f5e7b6a18598"], "follower_count": 739, "custody_address": "0x90f1e85d700a9e7b724aaaa2dfd9d20da1a3b4da", "following_count": 1145, "verified_addresses": {"eth_addresses": ["0x29ec3409729ff4cbed66d69a88ac94234b8c0ca1", "0x9e8d4c9ff8605f8aa322d3b99c89f5e7b6a18598"], "sol_addresses": ["DYp14v5CpZd37hgjmUHsPK9UgbBwsJiY2BAUNjfFFjci"]}}', '{"{\"url\":\"https://open.spotify.com/track/3i5qVV8azKqGFK4Gzdt5YS?context=spotify:playlist:37i9dQZF1F0sijgNaJdgit&si=qmB0fPFCSuuNkxzQ7FHPgA\"}"}', NULL), - (464063, '0x1c99b576aef0ce329a34c9c8af731ffce3d8122f', 0, 1, '2024-05-06 07:05:03+00', 0, 1, '{"fid": 500839, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f3ca434-96aa-4bb9-6495-6ae249568400/rectcrop3", "profile": {"bio": {"text": "hello my name is amellia", "mentioned_profiles": []}}, "username": "amellia", "power_badge": false, "display_name": "amellia", "active_status": "inactive", "verifications": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "follower_count": 241, "custody_address": "0x9acfd223eb6f1deadc2984042d96f83fa0f4fe86", "following_count": 229, "verified_addresses": {"eth_addresses": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/maae-1/path-to-past?in=sc-playlists-kr/sets/classicalm&si=51cefbe7e6104c939f2156fb39dff090&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (384249, '0x2ece698fc6febefc40bde914c5295caeb7ccccf1', 0, 1, '2024-05-06 04:09:49+00', 0, 0, '{"fid": 451652, "object": "user", "pfp_url": "https://i.imgur.com/ypIYKK4.jpg", "profile": {"bio": {"text": "NFT and cryptocurrency researcher💰🧑🏻‍💻, pianist and art lover🎹🎨", "mentioned_profiles": []}}, "username": "thmindhunter", "power_badge": false, "display_name": "MindHunter", "active_status": "inactive", "verifications": ["0xeb4efda57d88f973b21c8fed72331c360b88b13c"], "follower_count": 301, "custody_address": "0x8e49df82696ffda1bdba41a607bf25bbc206fc0c", "following_count": 146, "verified_addresses": {"eth_addresses": ["0xeb4efda57d88f973b21c8fed72331c360b88b13c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ew8J8TZZR5csNUC69\"}"}', NULL), - (482448, '0x8906e5ccb378ec0fefe520acba806ae7325f0b2b', 0, 1, '2024-05-06 07:29:20+00', 0, 4, '{"fid": 428762, "object": "user", "pfp_url": "https://i.imgur.com/zcboppl.jpg", "profile": {"bio": {"text": "Trader ~ web3", "mentioned_profiles": []}}, "username": "aiden-alen", "power_badge": false, "display_name": "Aiden ", "active_status": "inactive", "verifications": ["0x6c182f8f3549f06255bcb513229cd1a3d54f2a67"], "follower_count": 757, "custody_address": "0xe4428ea7aca0061fa5ab9c7f9e9650f2cba670b6", "following_count": 1027, "verified_addresses": {"eth_addresses": ["0x6c182f8f3549f06255bcb513229cd1a3d54f2a67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qKWcFXfUruf3itq1A\"}"}', 'sonata'), - (557241, '0xed35108bbbce21ff5dd0287e74736ac4fa8c7e30', 0, 1, '2024-05-06 10:47:47+00', 0, 2, '{"fid": 381369, "object": "user", "pfp_url": "https://i.imgur.com/HTsXsT4.jpg", "profile": {"bio": {"text": "Foodie !\nBASE LOVER !\nCrazy for Mechanical Engineering and NFT\nMINT NFT https://zora.co/@siks", "mentioned_profiles": []}}, "username": "siks", "power_badge": false, "display_name": "Nick", "active_status": "inactive", "verifications": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "follower_count": 2773, "custody_address": "0x5d501482f5320c139ccbc94ad43b10238508e2b2", "following_count": 2858, "verified_addresses": {"eth_addresses": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MUSGhYGXURUmjoky5\"}"}', 'sonata'), - (519296, '0xf36a7af87f1b82545bab8246212f0837bec7d489', 0, 1, '2024-05-06 08:52:45+00', 0, 4, '{"fid": 497723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e26a6e18-e548-42f9-4c3b-da09da2d0400/rectcrop3", "profile": {"bio": {"text": "The world is bigger than what we think. So much bigger that it doesn''t even fit in our imaginations", "mentioned_profiles": []}}, "username": "metaworld", "power_badge": false, "display_name": "metaworld", "active_status": "inactive", "verifications": ["0x159ac29c338c0ce4787d4ace66d44d64060df165"], "follower_count": 519, "custody_address": "0x290692b706fdb2122662e9b7b42c5490198a0ef4", "following_count": 555, "verified_addresses": {"eth_addresses": ["0x159ac29c338c0ce4787d4ace66d44d64060df165"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-nl/sets/hardstyle-reps?si=d20f36ef9c4e4aa1be97b852d8149f5a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (394006, '0x7ef1ab163e3bf883a245f4254c00ed1671f7bbfa', 0, 1, '2024-05-06 04:33:23+00', 0, 0, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1365, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1555, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/klxcyzz53hty/hold-my-hand?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (483901, '0xf001301f887fe6fd646e4f71013a0550aaf02132', 0, 1, '2024-05-06 07:30:50+00', 0, 15, '{"fid": 475621, "object": "user", "pfp_url": "https://i.imgur.com/iDPLKG6.jpg", "profile": {"bio": {"text": "모두부자됩시다 퐈이아 무반", "mentioned_profiles": []}}, "username": "thingkkk", "power_badge": false, "display_name": "ThinGKKK", "active_status": "inactive", "verifications": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "follower_count": 3129, "custody_address": "0xc33e161c1715926354fe84e9e97965a5c34f0049", "following_count": 3446, "verified_addresses": {"eth_addresses": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Hwapkkd4eDGQdD8b6\"}"}', 'sonata'), - (464064, '0x040affe35f02180af3cc490210adfd33df4652e9', 0, 1, '2024-05-06 07:05:12+00', 0, 2, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 766, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UB54iJfX7knmNwLM8\"}"}', NULL), - (396720, '0xb51ed2e281758f9b72891b3f08e9471d147cf4b7', 0, 1, '2024-05-06 04:38:59+00', 0, 0, '{"fid": 479248, "object": "user", "pfp_url": "https://i.imgur.com/14EsItr.jpg", "profile": {"bio": {"text": "Bitcoin lover😊\nElectronic Engineering\nCrypto Trader", "mentioned_profiles": []}}, "username": "ehsan91", "power_badge": false, "display_name": "EhSan.91", "active_status": "inactive", "verifications": ["0x778e7e074f11583f3b550ac75d8bd30f27d30b80"], "follower_count": 489, "custody_address": "0x17d820e6e0a05f0588252fa2266cacbbbfc77814", "following_count": 522, "verified_addresses": {"eth_addresses": ["0x778e7e074f11583f3b550ac75d8bd30f27d30b80"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/user-976026475/snakelike-the-stars-collide?in=trending-music-nl%2Fsets%2Frock-metal-punk\"}"}', NULL), - (553630, '0x5dc0b1b23e129ec76a262f2c20c091f39edf9988', 0, 1, '2024-05-06 10:34:51+00', 0, 8, '{"fid": 403074, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bba877f2-480c-4c60-8443-f98146c07d00/original", "profile": {"bio": {"text": "Web developer uses React.\nI''m interested in Web3.0 and NLP.", "mentioned_profiles": []}}, "username": "qqkr", "power_badge": false, "display_name": "qqkr", "active_status": "inactive", "verifications": ["0x6654c50e74e79ecc27132810502ff6524de1b381"], "follower_count": 2995, "custody_address": "0x3ebfd2872bc86dee62af36cd91ba7bfaa5a265c4", "following_count": 3512, "verified_addresses": {"eth_addresses": ["0x6654c50e74e79ecc27132810502ff6524de1b381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1tvCbPNiuk1LDC249\"}"}', 'sonata'), - (490651, '0xd6bbba7909cee1fd9bc2c2ce6003b7abca270333', 0, 1, '2024-05-06 07:44:23+00', 0, 19, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2664, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2951, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RbMTq2TyKRJtzGCu5\"}"}', 'sonata'), - (571861, '0xc0088925fb8907ec0c84ab9c61d520e400ce86b8', 0, 1, '2024-05-06 11:41:29+00', 0, 0, '{"fid": 492127, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fa4a390-63a9-46eb-5731-20e90d8ecd00/rectcrop3", "profile": {"bio": {"text": "Art\nCrypto💵\n", "mentioned_profiles": []}}, "username": "artmaryam23", "power_badge": false, "display_name": "artmaryam23", "active_status": "inactive", "verifications": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "follower_count": 327, "custody_address": "0xcf3027475526895b40fdca8451eda15a8f665417", "following_count": 428, "verified_addresses": {"eth_addresses": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/2pac/california-love-original?ref=clipboard&p=a&c=0&si=81cc649b98e54f888012eb367a981fa5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (441674, '0x98f57ec6109adf1cf0774bd28ea76c7cdfb59582', 0, 1, '2024-05-06 06:33:18+00', 0, 0, '{"fid": 443429, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b6a8462-3e20-4d95-a121-68c27b6f5800/rectcrop3", "profile": {"bio": {"text": "Artist 👩🏻‍🎨🖼️🖌️🎨", "mentioned_profiles": []}}, "username": "sabanzm", "power_badge": false, "display_name": "Pasha 🐶🎩🍖🔮", "active_status": "inactive", "verifications": ["0xc1dbfe2532a6538cb33a771647130af2d3fac310"], "follower_count": 1237, "custody_address": "0x6f5be66f55ccfdaa6e37cb10c9b60300b37d1b1e", "following_count": 727, "verified_addresses": {"eth_addresses": ["0xc1dbfe2532a6538cb33a771647130af2d3fac310"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ERCQJaFfNcZChBAaA\"}"}', 'sonata'), - (398299, '0xf6d6beb9b880c74ed52150a43efe5d51f815e98a', 0, 1, '2024-05-06 04:42:05+00', 0, 3, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 31, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 122, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2mgSc0OlXqrByILsxY0kUh?si=FA_SkDbGQWyg5EphbOtNzg&context=spotify%3Aartist%3A4hUWwJ0fRLx9rYtUvT26Ii\"}"}', 'bgm'), - (393564, '0x66a33e1728ef14246046933a9508a94b3469e78f', 0, 1, '2024-05-06 04:32:26+00', 0, 1, '{"fid": 500333, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4314c030-4f97-44dd-f01a-495f822eb400/rectcrop3", "profile": {"bio": {"text": "Hi 😃 I love the sea\n반가워요 👍👍👍👍\n\ngrowing snow crabs🦀🦞🔥🔥", "mentioned_profiles": []}}, "username": "seaboy", "power_badge": false, "display_name": "Seaboy🐳", "active_status": "inactive", "verifications": ["0x70646d5758397222f65fe1f841ad05d96f60d352"], "follower_count": 1463, "custody_address": "0x8c88b161d7716fa881597a9a4eba62b5e82f62d2", "following_count": 1983, "verified_addresses": {"eth_addresses": ["0x70646d5758397222f65fe1f841ad05d96f60d352"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Q8w4rCvwuHzFAzADA\"}"}', NULL), - (390579, '0xda6bf0b110774aecd20cf2b2d603e7b013d43d9f', 0, 1, '2024-05-06 04:26:18+00', 0, 2, '{"fid": 434862, "object": "user", "pfp_url": "https://i.imgur.com/XdVircA.jpg", "profile": {"bio": {"text": "본조콜밋 입니다\n😎🤚\n같이 가시죠 🙏\nLETS GO 💯200%300%", "mentioned_profiles": []}}, "username": "bonjocallmit", "power_badge": false, "display_name": "본조콜밋🎩🍖⛓", "active_status": "inactive", "verifications": ["0x2b881a9e071172d871fd4680ba83fa293c519aab"], "follower_count": 2153, "custody_address": "0x78a8c931e726dbea324c4e13b6c42a98ddc631c0", "following_count": 1840, "verified_addresses": {"eth_addresses": ["0x2b881a9e071172d871fd4680ba83fa293c519aab"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nTtJ4\"}"}', 'sonata'), - (721438, '0xbfe7eebeab4911615e8d0df3dfad657e26c9caf5', 0, 1, '2024-05-06 20:01:16+00', 0, 0, '{"fid": 410543, "object": "user", "pfp_url": "https://i.imgur.com/mM32FIY.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mehrshad18", "power_badge": false, "display_name": "mehrshad 🎩🍖", "active_status": "inactive", "verifications": ["0x0a0230ba98f81b90c737df36350db9216626c842"], "follower_count": 1818, "custody_address": "0x9e1a6dab0a01e3e0720f7c6903aad5ed2e6e0f9e", "following_count": 1957, "verified_addresses": {"eth_addresses": ["0x0a0230ba98f81b90c737df36350db9216626c842"], "sol_addresses": ["FmcDEZm4coRzTyQf9bodHMCW9aRP3Ak2sNVXYb9tLWwA"]}}', '{"{\"url\":\"Listen to HNTR - Just a Dream by mau5trap on #SoundCloud https://soundcloud.com/mau5trap/hntr-just-a-dream?ref=clipboard&p=a&c=0&si=565ffbf283f24f5c92b349728eaef387&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (523985, '0x1e1f0f6f73fbcbbae3cd4c284d6c70b57e4df682', 0, 1, '2024-05-06 09:14:20+00', 10, 0, '{"fid": 376144, "object": "user", "pfp_url": "https://arm22i2isixk3waiiw53vakcpyofspalzlxpjgleh5gmhohrbqbq.arweave.net/BFmtI0iSLq3YCEW7uoFCfhxZPAvK7vSZZD9Mw7jxDAM/", "profile": {"bio": {"text": "love crypto \n\nhard worker \n\nnever give up", "mentioned_profiles": []}}, "username": "pouryagholami", "power_badge": false, "display_name": "pourya gholami🎩👑", "active_status": "inactive", "verifications": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "follower_count": 1104, "custody_address": "0x45912cea45d90d71a0808b305d7edac73985743b", "following_count": 1946, "verified_addresses": {"eth_addresses": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "sol_addresses": ["EysELknAFZbd8GoKsnYLei4DWyZojpVqEPg6fxtfX196"]}}', '{"{\"url\":\"https://soundcloud.com/tiktaak-sr/bago-bega-lufs-11-low-2?ref=clipboard&p=i&c=0&si=80D63E10A772432C838120CDB5DA73A9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (390256, '0xbbc88fcc2d402dd86309cef2fbcea4d6587bfacc', 0, 1, '2024-05-06 04:24:32+00', 0, 1, '{"fid": 246627, "object": "user", "pfp_url": "https://i.imgur.com/h9TvjYH.jpg", "profile": {"bio": {"text": "i''m donny", "mentioned_profiles": []}}, "username": "donny-donny", "power_badge": false, "display_name": "donny🎩 🍖", "active_status": "inactive", "verifications": ["0xf17fbe2dcb26ffdd621ae04719a4d10b19913edd"], "follower_count": 735, "custody_address": "0x72772fd1e39bc4c3b0698ba7c30eef7d7f455060", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xf17fbe2dcb26ffdd621ae04719a4d10b19913edd"], "sol_addresses": []}}', '{"{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmTh44Znuenxo5fLeXLPxqzNHBSeQbffDQFoLJMmoLwWeo?filename=image.png\"}","{\"url\":\"https://soundcloud.com/leemmp3/a07-lovelovelove?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (494564, '0x5927d04c5a36ca8a9ebe3a7762a4bd730119ac58', 0, 1, '2024-05-06 07:52:35+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1138, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1518, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/interscope/m-i-a-bad-girls?si=a7431904ecef42788f325ebd7b8f9491&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173338, '0xc45910a39c6230c5c65262d48dffb781bf381a95', 0, 1, '2024-05-15 20:42:05+00', 0, 0, '{"fid": 2085, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b0908ae-382f-42f6-e3ad-bbab3cc11e00/rectcrop3", "profile": {"bio": {"text": "growth @comm.eth / fid: 2085", "mentioned_profiles": []}}, "username": "gigarahul.eth", "power_badge": true, "display_name": "optimist 🎩", "active_status": "inactive", "verifications": ["0x45ccfe16bc2ac8cef704a7236fef3e5f4222de15"], "follower_count": 763, "custody_address": "0x3faa2e827d16309be47031745d77216ca9405985", "following_count": 494, "verified_addresses": {"eth_addresses": ["0x45ccfe16bc2ac8cef704a7236fef3e5f4222de15"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/whitenoise000/muni-long-x-calvin-harris-made-for-me-x-thinking-about-you\"}"}', 'coop-recs'), - (465104, '0x00afc4ec1c1d7d68a2b6f27d48c5cfc382794367', 0, 1, '2024-05-06 07:06:39+00', 0, 2, '{"fid": 421374, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/281c699c-3ab6-44ef-d5b1-64f5e2da4400/rectcrop3", "profile": {"bio": {"text": "I am a woman who loves traveling and new experiences", "mentioned_profiles": []}}, "username": "hkh64", "power_badge": false, "display_name": "helia💗🎩🍖🍗🔥🟣", "active_status": "inactive", "verifications": ["0x24ab3a1c19401d2908189f518b04e1d44dd7eb50"], "follower_count": 1317, "custody_address": "0x943d1cbcacc52eff61414ac89e454c38d101e6aa", "following_count": 660, "verified_addresses": {"eth_addresses": ["0x24ab3a1c19401d2908189f518b04e1d44dd7eb50"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/chris-de-burgh-official/a-spaceman-came-travelling-4?in=farshad-tak-272830838%2Fsets%2Fcris-de-berg\"}"}', NULL), - (391663, '0x88d94b2c8b50140d955a1161ddd5f2a3394560a5', 0, 1, '2024-05-06 04:30:02+00', 0, 3, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1133, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1514, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ahmed-el-sayyad-3/era-enae-volare-mezzo?si=3c2fb864dae94b878cbd084abfcf00ed&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (391691, '0x4379c496df2de885335dba233229a1f90c918fc5', 0, 1, '2024-05-06 04:29:40+00', 0, 4, '{"fid": 479248, "object": "user", "pfp_url": "https://i.imgur.com/14EsItr.jpg", "profile": {"bio": {"text": "Bitcoin lover😊\nElectronic Engineering\nCrypto Trader", "mentioned_profiles": []}}, "username": "ehsan91", "power_badge": false, "display_name": "EhSan.91", "active_status": "inactive", "verifications": ["0x778e7e074f11583f3b550ac75d8bd30f27d30b80"], "follower_count": 489, "custody_address": "0x17d820e6e0a05f0588252fa2266cacbbbfc77814", "following_count": 522, "verified_addresses": {"eth_addresses": ["0x778e7e074f11583f3b550ac75d8bd30f27d30b80"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/evanescence/bring-me-to-life-remastered?in=trending-music-nl%2Fsets%2Frock-metal-punk\"}"}', NULL), - (483910, '0x7f08edae915a3b0746053c0863ca23e15dbb150b', 0, 1, '2024-05-06 07:30:35+00', 0, 1, '{"fid": 434363, "object": "user", "pfp_url": "https://arweave.net/MRC-5FXkXhtqY243-qtU_rjEtsKAyeW-rRzYKNvhPO8/", "profile": {"bio": {"text": "student\n\nFamiliar with the field of crypto", "mentioned_profiles": []}}, "username": "syd-rmt", "power_badge": false, "display_name": "Rahmat", "active_status": "inactive", "verifications": ["0x8e1504e0998625277901f8a57c9e27323f1c1d52"], "follower_count": 394, "custody_address": "0x6d8d4af946fbccd983ca2ec6170de5728edd38a9", "following_count": 488, "verified_addresses": {"eth_addresses": ["0x8e1504e0998625277901f8a57c9e27323f1c1d52"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Metro Boomin, Future, Chris Brown - Superhero (Heroes & Villains) by Metro Boomin on #SoundCloud https://on.soundcloud.com/zFfue\"}"}', NULL), - (390349, '0xd3c75d95fe7d7ed7757331dc09acf66646af64a3', 0, 1, '2024-05-06 04:25:18+00', 0, 0, '{"fid": 354320, "object": "user", "pfp_url": "https://i.imgur.com/tb9DF6O.jpg", "profile": {"bio": {"text": "crypto trader\n--apex廃人--", "mentioned_profiles": []}}, "username": "eneb", "power_badge": false, "display_name": "eneb👻かも??", "active_status": "inactive", "verifications": ["0x7f4aca24a93b89859660b104e08ab3943569577a"], "follower_count": 166, "custody_address": "0x2f286de5552e8d8f758969a3c3a06a4d6c44f1a1", "following_count": 314, "verified_addresses": {"eth_addresses": ["0x7f4aca24a93b89859660b104e08ab3943569577a"], "sol_addresses": ["FLXiJN25oeHwnkjvXu4U1xG6ffP9eESf4EbhhaW7YZie"]}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby-vhs\"}"}', NULL), - (335108, '0xc0017427f4b88eae7f1c3e6ab4da6483e59a5c06', 0, 1, '2024-05-05 23:06:57+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1128, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/14CsqOaDkOkrZ49UJLtuOJ?si=4wpFsCfDQT-wvaUQuIWwrw&context=spotify%3Asearch%3Aso%2Blong%2C%2Bmarianne\"}"}', NULL), - (374445, '0xe9556ea682577b0f7a7d6e8de21e84411ec99841', 0, 1, '2024-05-06 03:45:34+00', 0, 1, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 690, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/my-parents-house?referral=0x8218224ebb7abf7dbaffdf0fed571b8280d99485&referral_source=link\"}"}', NULL), - (397184, '0x5b825dbdc592f38a9ccf476a19d5be570dc1cf2b', 0, 1, '2024-05-06 04:39:59+00', 0, 11, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2664, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2950, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KhYvbq7RKaSZxY8e6\"}"}', 'sonata'), - (441691, '0xeef4acda2775142fcc254d38cdf464695aac9d52', 0, 1, '2024-05-06 06:33:13+00', 0, 2, '{"fid": 463117, "object": "user", "pfp_url": "https://i.imgur.com/LMesnuZ.jpg", "profile": {"bio": {"text": "디젠떡상🙏맞팔로우🙌🙌반사바로출동🚀🚀", "mentioned_profiles": []}}, "username": "smilegirl", "power_badge": false, "display_name": "happy-pp", "active_status": "inactive", "verifications": ["0x376c34a9c588cb253de0a2a6f7db224441ad323b"], "follower_count": 1625, "custody_address": "0x8c7dc5ae7da5fee99a5bbec34779689e4742e6d9", "following_count": 1711, "verified_addresses": {"eth_addresses": ["0x376c34a9c588cb253de0a2a6f7db224441ad323b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VCoLmHSuMPNQkwZB6\"}"}', 'sonata'), - (396761, '0x81250c907b489b5f538f9d069ac982b308a1e3b7', 0, 1, '2024-05-06 04:38:12+00', 0, 7, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2103, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2651, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9diTr\"}"}', 'sonata'), - (394503, '0x447a82794790611b1928c187cf7a46dd78a5e76b', 0, 1, '2024-05-06 04:34:43+00', 0, 4, '{"fid": 479248, "object": "user", "pfp_url": "https://i.imgur.com/14EsItr.jpg", "profile": {"bio": {"text": "Bitcoin lover😊\nElectronic Engineering\nCrypto Trader", "mentioned_profiles": []}}, "username": "ehsan91", "power_badge": false, "display_name": "EhSan.91", "active_status": "inactive", "verifications": ["0x778e7e074f11583f3b550ac75d8bd30f27d30b80"], "follower_count": 489, "custody_address": "0x17d820e6e0a05f0588252fa2266cacbbbfc77814", "following_count": 522, "verified_addresses": {"eth_addresses": ["0x778e7e074f11583f3b550ac75d8bd30f27d30b80"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/user-976026475/snakelike-the-stars-collide?in=trending-music-nl%2Fsets%2Frock-metal-punk\"}"}', NULL), - (390262, '0x1145f6dd1f647262ddc9921a57e59676a10adc63', 0, 1, '2024-05-06 04:23:32+00', 0, 0, '{"fid": 353613, "object": "user", "pfp_url": "https://i.imgur.com/3YxN3bS.jpg", "profile": {"bio": {"text": "X\nhttps://twitter.com/Wonderwall4226\n\n#仮想通貨 #エアドロップ #crypto #airdrop #NFT #CNP #ICL #bitcoin #ETH #web3 #BCG #NFTGames #エアドロ", "mentioned_profiles": []}}, "username": "wonderwall", "power_badge": false, "display_name": "Wonderwall", "active_status": "inactive", "verifications": ["0x6dc7b04df65747e867437a64958c2282c51beb9e"], "follower_count": 1161, "custody_address": "0xdf7311e33db35b95eef3ec6c619afed846378e07", "following_count": 2443, "verified_addresses": {"eth_addresses": ["0x6dc7b04df65747e867437a64958c2282c51beb9e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8Hi1PqCVkUPaSCXs6\"}"}', NULL), - (483941, '0x1402bb8ebec63e1bd97c0d8af81c78464eb17eed', 0, 1, '2024-05-06 07:31:15+00', 0, 2, '{"fid": 415013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5865b6e2-fe88-420c-ad1b-f101b2ae6a00/rectcrop3", "profile": {"bio": {"text": "Never withhold anything from your kind. The best things happen when we help each other", "mentioned_profiles": []}}, "username": "hassan6590", "power_badge": false, "display_name": "hassan6590🌀🎭", "active_status": "inactive", "verifications": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "follower_count": 1028, "custody_address": "0x796338e1a997eedaae5f918d4a6c32171965f374", "following_count": 1380, "verified_addresses": {"eth_addresses": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Baby B - Weak For Me by Baby B on #SoundCloud https://on.soundcloud.com/3hBzF\"}"}', NULL), - (390346, '0x9e24d4a9e7f1edb25dccf761ad1e8d7adc978cc3', 0, 1, '2024-05-06 04:25:02+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2925, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2349, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U29Gp\"}"}', 'sonata'), - (922981, '0x5259dacdaa84f3d680921dc05fd29f62703a0e7d', 0, 1, '2024-05-07 07:25:16+00', 0, 1, '{"fid": 472643, "object": "user", "pfp_url": "https://i.imgur.com/6iLzIu4.jpg", "profile": {"bio": {"text": "A wise man''s life is based around fuck you.", "mentioned_profiles": []}}, "username": "vn4ras2", "power_badge": false, "display_name": "Ne0one🎩🔵🍖", "active_status": "inactive", "verifications": ["0x039b169dd3f622eafe8f33c669a681f6693a792d", "0xc2b30d3e2576933f5902de944e34d2fc7d6b6b5b"], "follower_count": 1190, "custody_address": "0xbc5950548b098840c04e7b7fa243b3821f8e95d9", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0x039b169dd3f622eafe8f33c669a681f6693a792d", "0xc2b30d3e2576933f5902de944e34d2fc7d6b6b5b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZALc9p2UHwXpNsWs5\"}"}', NULL), - (391670, '0xc7c7f1033314fbecd29263937771c755ad6e2e04', 0, 1, '2024-05-06 04:29:16+00', 0, 2, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2884, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3302, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JgzukaV9fNXs1jwx7\"}"}', 'sonata'), - (442017, '0x324006b688ba72349000d857c1e40d294a3d63ef', 0, 1, '2024-05-06 06:34:35+00', 0, 0, '{"fid": 443429, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b6a8462-3e20-4d95-a121-68c27b6f5800/rectcrop3", "profile": {"bio": {"text": "Artist 👩🏻‍🎨🖼️🖌️🎨", "mentioned_profiles": []}}, "username": "sabanzm", "power_badge": false, "display_name": "Pasha 🐶🎩🍖🔮", "active_status": "inactive", "verifications": ["0xc1dbfe2532a6538cb33a771647130af2d3fac310"], "follower_count": 1237, "custody_address": "0x6f5be66f55ccfdaa6e37cb10c9b60300b37d1b1e", "following_count": 727, "verified_addresses": {"eth_addresses": ["0xc1dbfe2532a6538cb33a771647130af2d3fac310"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ERCQJaFfNcZChBAaA\"}"}', 'sonata'), - (390671, '0xa0f329094505356e6b3f9c07ca0ee6c5a0e5f92d', 0, 1, '2024-05-06 04:27:44+00', 0, 2, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3110, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2639, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U1kj5\"}"}', 'sonata'), - (390649, '0x02526024ff3b98bddb3ec0c2d7374140fd832372', 0, 1, '2024-05-06 04:28:17+00', 0, 2, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3110, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2639, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qGJwD\"}"}', 'sonata'), - (785530, '0xf6d9a48028ca40926b9d26f9038b70cf82cca072', 0, 1, '2024-05-07 02:23:53+00', 0, 1, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3433, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DAFR5ZQo1HCGtBew7\"}"}', 'sonata'), - (465107, '0xf9e12f537a61720c21733405115f31f0b1e9000e', 0, 1, '2024-05-06 07:05:58+00', 0, 0, '{"fid": 385605, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b886de91-9dfd-48a9-cc44-4cae2ed1a600/original", "profile": {"bio": {"text": "Host /yotei\nSince 2021", "mentioned_profiles": []}}, "username": "wallmart", "power_badge": false, "display_name": "猫太郎 🎩⛓️", "active_status": "inactive", "verifications": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "follower_count": 1682, "custody_address": "0xfb29425d19d91e38a125fff6482314945498bc53", "following_count": 1341, "verified_addresses": {"eth_addresses": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mJLxP99x8isg26q89\"}"}', 'musicjp'), - (476453, '0x6265bcf0a3dde7715586704fa5058261e12d1578', 0, 1, '2024-05-06 07:20:39+00', 0, 3, '{"fid": 446876, "object": "user", "pfp_url": "https://i.imgur.com/5rNMCDn.jpg", "profile": {"bio": {"text": "Help each other", "mentioned_profiles": []}}, "username": "arashjalilian", "power_badge": false, "display_name": "Arash Jalilian", "active_status": "inactive", "verifications": ["0xdafb102c3529583312382850587e1d082f91d168"], "follower_count": 1060, "custody_address": "0xb526e7f791891ff15cb46ca1b75a7013a9bf8e1c", "following_count": 1456, "verified_addresses": {"eth_addresses": ["0xdafb102c3529583312382850587e1d082f91d168"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WFwrC\"}"}', NULL), - (465112, '0x4601e5c7b82c27f372f4779f202ea4abb662d13e', 0, 1, '2024-05-06 07:05:52+00', 0, 3, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 766, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EdCT9sEdm2A1ZuDi6\"}"}', NULL), - (505038, '0xf7248d2ab587f01c59b4e45dd3b67d2f546a7f36', 0, 1, '2024-05-06 08:07:31+00', 0, 11, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2714, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2390, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2sharebts2/bts-fake-love-1\"}"}', 'sonata'), - (392945, '0x902d2c0644041591e8cf830b3d86309811d0a37c', 0, 1, '2024-05-06 04:31:19+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 597, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 423, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fredagain/bleu-better-with-time?si=b67c89f978694fc9b2198507ac6be943&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (675831, '0xf59ba8a09b71e6ab224eb3a57a0995fe2eb17d83', 0, 1, '2024-05-06 16:12:02+00', 0, 0, '{"fid": 499881, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e49f02d2-a431-4686-8a7d-c892deb0a400/rectcrop3", "profile": {"bio": {"text": "crypto, design, cat, anime, jelly", "mentioned_profiles": []}}, "username": "ha-ri-bo", "power_badge": false, "display_name": "Haribo🍭", "active_status": "inactive", "verifications": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "follower_count": 783, "custody_address": "0xa276999a2aa7d23d74589378094f7ac37ae3f0e1", "following_count": 1531, "verified_addresses": {"eth_addresses": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/forgdedelilt/bradio-flyers?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (571512, '0x7fb8206ba5607f098e785189b688be6c62de1d4b', 0, 1, '2024-05-06 11:40:18+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 585, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 271, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5R080YsgpcyX4k5kWm3sAE?si=KSQOD_0DSGCFbEWP2WJXMg&context=spotify%3Aplaylist%3A1AKDIDLTLIp7cAhl6Q7Eia\"}"}', NULL), - (528878, '0xf25afdb0a69642463cd3bc6951525c5c8f939c6e', 0, 1, '2024-05-06 09:29:52+00', 0, 1, '{"fid": 503282, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ce46349-bbd8-4209-da10-6fd8b93c2700/original", "profile": {"bio": {"text": "Hi, guys. Crypto. Dragon. \nhttps://zora.co/@onefourwon", "mentioned_profiles": []}}, "username": "onefourwon", "power_badge": false, "display_name": "onewon 🎩🍖🔵", "active_status": "inactive", "verifications": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "follower_count": 1092, "custody_address": "0x0993505a45968c500db8d13c32ef0928e2fd67bf", "following_count": 1042, "verified_addresses": {"eth_addresses": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 엔플라잉 N.Flying - Rooftop (옥탑방) by L2Share♫79 on #SoundCloud https://on.soundcloud.com/rjDYd\"}"}', NULL), - (922996, '0x826fa03c4a5dd9e6ee2a45c9dae92d79d08212d7', 0, 1, '2024-05-07 07:25:43+00', 0, 0, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1472, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/baron1_3/sets/band_inst?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (554768, '0x00a49c66e7b1a4008182102ce7717a07fc269ffa', 0, 1, '2024-05-06 10:38:54+00', 0, 8, '{"fid": 391839, "object": "user", "pfp_url": "https://i.imgur.com/jtSGCZm.jpg", "profile": {"bio": {"text": "@일상소통/투자소통\n@한분한분소중하게 찾아가용!\n@공부하는 오랑이🤗\n\n@조급하지도 걱정도 하자마라.\n@Don''t be impatient and worry.", "mentioned_profiles": []}}, "username": "parkgunwoo", "power_badge": false, "display_name": "오랑이🎩🍖🔵", "active_status": "inactive", "verifications": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "follower_count": 2880, "custody_address": "0x955e52b86ace17f4bcca570234ca7b09d06344c2", "following_count": 2915, "verified_addresses": {"eth_addresses": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9ruX92ztQfZDj6Br5\"}"}', 'sonata'), - (541706, '0xbc544889ebfe9d12d234b628f117eb10a9cdb4a5', 0, 1, '2024-05-06 09:57:20+00', 0, 2, '{"fid": 452150, "object": "user", "pfp_url": "https://i.imgur.com/QXvn8X8.jpg", "profile": {"bio": {"text": "⛔채굴 ⛔에어드랍 ⛔파밍 ⛔정보 ⛔공유\n간단하고 쉽고 확실해 보이는 안전한것만 공유드릴게요 🥰 👍 \n자주 찾아주세요", "mentioned_profiles": []}}, "username": "bbabbe", "power_badge": false, "display_name": "doge🎩🔵", "active_status": "inactive", "verifications": ["0xb335fbdf6830647e455e657078d0752700bcb242"], "follower_count": 3913, "custody_address": "0x827e017e511b9dc38e46463809ec7f5cb7e7091f", "following_count": 4664, "verified_addresses": {"eth_addresses": ["0xb335fbdf6830647e455e657078d0752700bcb242"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0942400573-518991315/xa-do-3-nhung-trach-nhac-hot-nhat-dj-hoang-anh?in=seoinduck1989/sets/xado/s-zWOu7&si=f2cb2d0871114c04a71105c482bf370c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (465124, '0xd9c3878846ac6227c243ec41ba935513ac0676be', 0, 1, '2024-05-06 07:05:52+00', 0, 3, '{"fid": 473996, "object": "user", "pfp_url": "https://i.imgur.com/fNZgWUc.jpg", "profile": {"bio": {"text": "야식 가즈아~!!\n$ DEGEN / 조대리! 팔로우 해주시면 찾아가 3종 은혜 보답합니다! \nFollow me, A Degener always pays his debts", "mentioned_profiles": []}}, "username": "im-hayden", "power_badge": false, "display_name": "Go DEGEN", "active_status": "inactive", "verifications": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "follower_count": 1037, "custody_address": "0xe7887f54262b587dd1f1ee1ac5130b1a7da87682", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yPQ84v1zVwcoLfsE9\"}"}', 'sonata'), - (393611, '0xce586aa4ec1645792ddccba0f9fa0dc2fde86154', 0, 1, '2024-05-06 04:32:15+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 597, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 423, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ry-x/moths\"}"}', NULL), - (862379, '0x5c49cdc3739428160c22572031bdca2808819ac1', 0, 1, '2024-05-07 05:38:59+00', 0, 2, '{"fid": 376576, "object": "user", "pfp_url": "https://i.imgur.com/UUj84vr.jpg", "profile": {"bio": {"text": "Expensive life passes faster than running water🖤", "mentioned_profiles": []}}, "username": "hodab", "power_badge": false, "display_name": "Hodab 🎩🍗❤ $DEGEN ", "active_status": "inactive", "verifications": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "follower_count": 820, "custody_address": "0x7af5fc8120cbb7cd825c9c00b6d3a6175648bf71", "following_count": 1507, "verified_addresses": {"eth_addresses": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9GeheCDgzqeHJUTK6\"}"}', 'sonata'), - (477411, '0x07cb8fc3423cbb930d5f8cc967722aa53be9d954', 0, 1, '2024-05-06 07:21:59+00', 0, 3, '{"fid": 385239, "object": "user", "pfp_url": "https://i.imgur.com/9VrE0r9.jpg", "profile": {"bio": {"text": "lfg", "mentioned_profiles": []}}, "username": "pgdosu", "power_badge": false, "display_name": "pg🔄🎩🔵🔮 🦕", "active_status": "inactive", "verifications": ["0x658f32c5387be127e4281590f49c2a924176fb87", "0x658f32c5387be127e4281590f49c2a924176fb87"], "follower_count": 504, "custody_address": "0x772c7c0c4fed76929fdecc8cd5d61aebe0bfad2f", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x658f32c5387be127e4281590f49c2a924176fb87", "0x658f32c5387be127e4281590f49c2a924176fb87"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jJjbS\"}"}', NULL), - (572170, '0x442d3aa6205befa2157dd25f021f369698fbf75c', 0, 1, '2024-05-06 11:42:36+00', 0, 1, '{"fid": 413804, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeid4egu3uatkl2aqjnnpktstyjiidnjvgy2caz2kutkufcg3t3qedy", "profile": {"bio": {"text": "$degen, $enjoy, $imagine, $higher, $RARE", "mentioned_profiles": []}}, "username": "j2inu", "power_badge": false, "display_name": "Jinwoo", "active_status": "inactive", "verifications": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "follower_count": 1920, "custody_address": "0xab1265d965e7155f47a4c3bca8a91d560631ec8a", "following_count": 2186, "verified_addresses": {"eth_addresses": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/biblina-aboow-al-taji/1-take-me-with?si=349cb41eea6d4726afc79a1c2af3a46d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (474680, '0x4b897c4a86576dbdd016177d34d967a84d71ddee', 0, 1, '2024-05-06 07:18:55+00', 0, 2, '{"fid": 385616, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/077a794c-7a8e-4709-2ed8-e6bd34183c00/rectcrop3", "profile": {"bio": {"text": "趣味は最近始めたAI画像生成 🤖*\n甘いものとコーヒーがすきななまけもの🦥💜\n\nMy hobby is AI image generation, which I recently started *\nA lazy person who likes sweets and coffee.", "mentioned_profiles": []}}, "username": "maccha8", "power_badge": false, "display_name": "maccha🍕🔵🎩👻🚩", "active_status": "inactive", "verifications": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "follower_count": 246, "custody_address": "0x2dbbac555d9ac7c9a5fcdd0899a97ef18b975b15", "following_count": 449, "verified_addresses": {"eth_addresses": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0AzhddCMwOKVwmlhKtGu6F?si=fUQLthCAQTGT_q_i8epRlQ\"}"}', 'musicjp'), - (398313, '0xc75035842ab3701c62a25d3337187ddec501281f', 0, 1, '2024-05-06 04:42:07+00', 0, 6, '{"fid": 500262, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbkR53dVasVCecCSxk8vdg92vF39Zct65V3yUkLpjmMb7?filename=skywalker.png", "profile": {"bio": {"text": "freedom ✅Honestly.✅NO Farm✅NO Abusing✅ 무지개 반사🌈\n\n", "mentioned_profiles": []}}, "username": "selenayoon", "power_badge": false, "display_name": "Skywalker🍖 🌈", "active_status": "inactive", "verifications": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "follower_count": 1277, "custody_address": "0x1b1e2a16503e2802d95de4398bc50ccc527c7d48", "following_count": 1173, "verified_addresses": {"eth_addresses": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1WdY5akVTSQ4BgCkOweKwI\"}"}', NULL), - (443211, '0x07fada431594759530f101ca39311cbf75dc23b9', 0, 1, '2024-05-06 06:35:42+00', 0, 3, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1212, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AMiexSy4jcPcncW58\"}"}', 'sonata'), - (460477, '0x9aeae906a0bf9d5c2ff8ff20f9a4ac4c8bf9de56', 0, 1, '2024-05-06 06:58:56+00', 0, 2, '{"fid": 385605, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b886de91-9dfd-48a9-cc44-4cae2ed1a600/original", "profile": {"bio": {"text": "Host /yotei\nSince 2021", "mentioned_profiles": []}}, "username": "wallmart", "power_badge": false, "display_name": "猫太郎 🎩⛓️", "active_status": "inactive", "verifications": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "follower_count": 1682, "custody_address": "0xfb29425d19d91e38a125fff6482314945498bc53", "following_count": 1341, "verified_addresses": {"eth_addresses": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dKjguVETfWyL4jWs5\"}"}', NULL), - (556900, '0x2fbcd48b9bf711fff1ebcb2fd7c63e8b046f634e', 0, 1, '2024-05-06 10:47:13+00', 0, 3, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1618, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1312, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aU8Vz2jdJQneucRVA\"}"}', 'sonata'), - (505992, '0xac36bb1b6c48bf1c57cac57375f2ced308369d7f', 0, 1, '2024-05-06 08:09:11+00', 0, 21, '{"fid": 484256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58979a6c-5974-4eb5-0d8f-d4ef62071f00/rectcrop3", "profile": {"bio": {"text": "한다면 하는 남자 real 오또코", "mentioned_profiles": []}}, "username": "puffmommy", "power_badge": false, "display_name": "ddogas", "active_status": "inactive", "verifications": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "follower_count": 2502, "custody_address": "0xa3e79ae97323b1c623fc2bd636ebec9bc5e418b6", "following_count": 2402, "verified_addresses": {"eth_addresses": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ladlonely/joji-and-blocboy-jb-peach-jam-88rising-track?si=5773e1d20b58417fb05943c4c6e89976&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (600146, '0xb819c85682f6931ca1af273a63858a2e728c84e5', 0, 1, '2024-05-06 12:37:23+00', 0, 12, '{"fid": 484256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58979a6c-5974-4eb5-0d8f-d4ef62071f00/rectcrop3", "profile": {"bio": {"text": "한다면 하는 남자 real 오또코", "mentioned_profiles": []}}, "username": "puffmommy", "power_badge": false, "display_name": "ddogas", "active_status": "inactive", "verifications": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "follower_count": 2516, "custody_address": "0xa3e79ae97323b1c623fc2bd636ebec9bc5e418b6", "following_count": 2413, "verified_addresses": {"eth_addresses": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-459996032/b-i-cosmos-cosmos?si=5bf08339b77a4ab99856a2670667cf28&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (996824, '0xc422e73f605c15127c17ab39c3b6585984ee7dc0', 0, 1, '2024-05-07 11:46:58+00', 0, 0, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 483, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 779, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CCBdC\"}"}', 'sonata'), - (398991, '0x17fba9ee8263db939dcf449d413f82bd0875f67d', 0, 1, '2024-05-06 04:46:14+00', 0, 3, '{"fid": 503328, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59e830e-0465-490d-c526-b964d43c5900/rectcrop3", "profile": {"bio": {"text": "Dr.kk 3배 폭격맨 💣🫡🔥무조건 갑니다\nDr.k", "mentioned_profiles": []}}, "username": "hh7035881", "power_badge": false, "display_name": "Dr.kk", "active_status": "inactive", "verifications": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "follower_count": 1357, "custody_address": "0x2cc415f9dfa832bd167eb5d5d1c42e144d868c40", "following_count": 1421, "verified_addresses": {"eth_addresses": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wbQJKX92Kkd347Fw6\"}"}', 'sonata'), - (443214, '0x7d292b1a9283ef455e9236f5db30865ba924c5a4', 0, 1, '2024-05-06 06:35:41+00', 0, 4, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2517, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rhyft\"}"}', 'sonata'), - (399617, '0x4d1b1b0d33cad5a34ae6e0c668f1ad7c3687e07d', 0, 1, '2024-05-06 04:49:31+00', 0, 1, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 105, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 187, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RyeDSxuw9THk7h1R9\"}"}', NULL), - (399130, '0x49fc9ca393308877da8635e6f0698b7a79d9a539', 0, 1, '2024-05-06 04:47:00+00', 0, 7, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "follower_count": 2121, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2480, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7MocmgGah3mfWkTF6\"}"}', 'sonata'), - (443218, '0xedc4ce5cde61cb7794dc3ea6604ff762df1c8546', 0, 1, '2024-05-06 06:34:39+00', 0, 0, '{"fid": 459252, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbPVzQRUDbcyETMCvt4vt6QN3GZwnRGoEKyTyHTzyJ85p?filename=..-5-12-screenshot.png", "profile": {"bio": {"text": "My Life is Gold", "mentioned_profiles": []}}, "username": "nomong", "power_badge": false, "display_name": "Nomong2", "active_status": "inactive", "verifications": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "follower_count": 1359, "custody_address": "0xc50f4e6e0cd1d5076d64e68662e9798f9fbab778", "following_count": 1853, "verified_addresses": {"eth_addresses": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ibrahim-alsalih/j-s-bach-sonata-for-violin-solo-no-1-in-g-minor-bwv-1001-hilary-hahn?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (484895, '0x1ae7200269ab1c828f8cbd2264dfafb9b02e33f6', 0, 1, '2024-05-06 07:32:42+00', 0, 11, '{"fid": 434995, "object": "user", "pfp_url": "https://i.imgur.com/dCBbkJu.png", "profile": {"bio": {"text": "전 무조건 3종 남기고 갑니다!! \n\n일평! 비평! 비투카!! 화이팅100% 🎃🎃 맞팔로우! 100% like! Follow comments100%", "mentioned_profiles": []}}, "username": "goooo", "power_badge": false, "display_name": "Goo🎩🎩", "active_status": "inactive", "verifications": ["0xb0b8ba190c97edaaa3e09332a2501117b143687f"], "follower_count": 3261, "custody_address": "0x67ff484437a7b75d05dd339c5dabb2aa430d3c46", "following_count": 3456, "verified_addresses": {"eth_addresses": ["0xb0b8ba190c97edaaa3e09332a2501117b143687f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki33/zico-feat-jennie-spot-1\"}"}', 'sonata'), - (391667, '0xd8a2581b515b796f63afa2c9856fcda7c18ddca2', 0, 1, '2024-05-06 04:30:01+00', 0, 0, '{"fid": 501698, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54b20527-69dd-496c-d3cd-5d37211b0000/original", "profile": {"bio": {"text": "💙BASE 💜DEGEN 💛Web3.0 💕FOOD 💢MUSIC \nhttps://zora.co/@daggaya\n", "mentioned_profiles": []}}, "username": "yokoi", "power_badge": false, "display_name": "yokoi", "active_status": "inactive", "verifications": ["0x2070f355a7b475c719bac8d93da8c28494b61836"], "follower_count": 523, "custody_address": "0x1d0211d45a070470592db0c0c31151feb7a659ec", "following_count": 1201, "verified_addresses": {"eth_addresses": ["0x2070f355a7b475c719bac8d93da8c28494b61836"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hjPsn\"}"}', 'sonata'), - (399628, '0x21d71dd0068f07885b51c5f9790429c5f76db6a6', 100, 1, '2024-05-06 04:49:53+00', 0, 5, '{"fid": 501244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2857cc22-5da5-45a9-b4b3-83c34cf8d700/rectcrop3", "profile": {"bio": {"text": "Hello everyone!\nLet‘s follow and enjoy together!!\n✅Reaction 💯 \n", "mentioned_profiles": []}}, "username": "danial-jung", "power_badge": false, "display_name": "💎Ian💎", "active_status": "inactive", "verifications": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "follower_count": 1695, "custody_address": "0xd31e5b74c59a915530a8408c23304dbb06d033d9", "following_count": 2489, "verified_addresses": {"eth_addresses": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UjphryDPHBSJdVmx7\"}"}', NULL), - (571849, '0x6b1e6616c7d3acd6668b3f7b74904f5bf6d22272', 0, 1, '2024-05-06 11:41:51+00', 0, 5, '{"fid": 477674, "object": "user", "pfp_url": "https://i.imgur.com/lSYNMEx.jpg", "profile": {"bio": {"text": "F4F / follow 4 follow / 좋아요🔥 댓글🔥 리캐스트🔥 팔로우🔥 한분 한분 빠짐없이 찾아갈게요", "mentioned_profiles": []}}, "username": "seik0691", "power_badge": false, "display_name": "seik0691", "active_status": "inactive", "verifications": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "follower_count": 2440, "custody_address": "0x0456381954f63442eb1313b89231b46e770cd9f5", "following_count": 2425, "verified_addresses": {"eth_addresses": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation3/ive-the-2nd-ep-ive-switch-1?si=bb627cee945048589b6cf0f0eec3b00b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (565841, '0x016945818402d20111ab4eee5ae1509cddd5b6c5', 0, 1, '2024-05-06 11:15:02+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rDNnb\"}"}', 'sonata'), - (466042, '0xa8092c802aede3381c7c49b7d30acd0bc545e58c', 0, 1, '2024-05-06 07:06:48+00', 0, 2, '{"fid": 332730, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82386fd8-8c87-4def-eac0-0810e2d60d00/rectcrop3", "profile": {"bio": {"text": "AI Seminar Instructor /degentlmen ", "mentioned_profiles": []}}, "username": "tyuki", "power_badge": false, "display_name": "tyuki", "active_status": "inactive", "verifications": ["0x53c2185030b95aa5fedab775e6c117bd3b2f1c44"], "follower_count": 429, "custody_address": "0x88ac547a4617b9dd01772185ef6f23d6f87d93c8", "following_count": 846, "verified_addresses": {"eth_addresses": ["0x53c2185030b95aa5fedab775e6c117bd3b2f1c44"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WBfzdBdcYfiE7sQ9A\"}"}', 'bgm'), - (556200, '0x83ac919f8b11ba1acc12312598a459a2e40c2205', 0, 1, '2024-05-06 10:44:01+00', 0, 0, '{"fid": 477866, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7289a079-b7cd-44c1-a0fd-f6d653722e00/rectcrop3", "profile": {"bio": {"text": "Love degen .\nLove fuzzy fox .🦊\n\n", "mentioned_profiles": []}}, "username": "haoshuai520", "power_badge": false, "display_name": "Haoshuai.⌐◨-◨🎩", "active_status": "inactive", "verifications": ["0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd", "0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd"], "follower_count": 127, "custody_address": "0x4284f1d9052be0f69128b49f15e30920716dec01", "following_count": 394, "verified_addresses": {"eth_addresses": ["0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd", "0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uDqEDcQomEPetUoz7\"}"}', NULL), - (600148, '0xb2275fe713174f45367584e61bffad5fbebc6b45', 0, 1, '2024-05-06 12:37:21+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/franciscoscandurva/happiness-is-a-butterfly\"}"}', NULL), - (588148, '0xeb2f4f9b61dc5d704f4636f4d61702e71523fe9e', 0, 1, '2024-05-06 12:10:17+00', 0, 4, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1624, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1316, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8JmHhjyvZ8Qm5ESk6\"}"}', 'sonata'), - (400665, '0xb9dccbbfb47f4b2ec4f392cf91d0a6775813c10d', 0, 1, '2024-05-06 04:53:12+00', 0, 0, '{"fid": 488004, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6186e71e-9262-46eb-c312-f05428784d00/rectcrop3", "profile": {"bio": {"text": "슈캐 장착하고 🏃🏃‍♀️🏃‍♂️💨", "mentioned_profiles": []}}, "username": "immyyr", "power_badge": false, "display_name": "Bluev", "active_status": "inactive", "verifications": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "follower_count": 2916, "custody_address": "0x5432cf7d98e934b2cade28db3cffd883f05d54b5", "following_count": 3261, "verified_addresses": {"eth_addresses": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PZTi862fth6gBaJo6\"}"}', NULL), - (484912, '0xead289401ef9b32d89724e8bfef318c005a46094', 0, 1, '2024-05-06 07:32:29+00', 0, 3, '{"fid": 448755, "object": "user", "pfp_url": "https://i.imgur.com/JSIDuOV.jpg", "profile": {"bio": {"text": "I Love Football \n Be strong and fight for your goals 👊🏼", "mentioned_profiles": []}}, "username": "mehrdad10", "power_badge": false, "display_name": "Mehrdad 🎩", "active_status": "inactive", "verifications": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "follower_count": 1377, "custody_address": "0xb0b262bb2dced2178dd6ea9d677116b783d527af", "following_count": 1459, "verified_addresses": {"eth_addresses": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2t8yVaLvJ0RenpXUIAC52d?si=4QxCrh-5SXCiaeaLDPYqpg%0A\"}"}', 'sonata'), - (399595, '0x5ea68354da48f9d223abd034d98306daecba4168', 0, 1, '2024-05-06 04:49:59+00', 0, 0, '{"fid": 477674, "object": "user", "pfp_url": "https://i.imgur.com/lSYNMEx.jpg", "profile": {"bio": {"text": "F4F / follow 4 follow / 좋아요🔥 댓글🔥 리캐스트🔥 팔로우🔥 한분 한분 빠짐없이 찾아갈게요", "mentioned_profiles": []}}, "username": "seik0691", "power_badge": false, "display_name": "seik0691", "active_status": "inactive", "verifications": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "follower_count": 2428, "custody_address": "0x0456381954f63442eb1313b89231b46e770cd9f5", "following_count": 2411, "verified_addresses": {"eth_addresses": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/seik0691/96n3tunpttza\"}"}', 'sonata'), - (443209, '0xb5922f75bff45d591ae941df4a3950648c5ce974', 0, 1, '2024-05-06 06:36:02+00', 0, 1, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1259, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 888, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/9kpvgasdxb9h/5sus4hpr0uvf?in=ydlee/sets/nakajima-miyuki\"}"}', NULL), - (443231, '0x31e8ca361d42d0138af6d177b185620494d6a26c', 0, 1, '2024-05-06 06:35:59+00', 0, 4, '{"fid": 420233, "object": "user", "pfp_url": "https://i.imgur.com/7F1JLM4.jpg", "profile": {"bio": {"text": "F4F 조대리 열심히 갑니다💥\n선팔 환영해요😆", "mentioned_profiles": []}}, "username": "jamessyo", "power_badge": false, "display_name": "Jamess", "active_status": "inactive", "verifications": ["0xd1204cf23774aaf09b0e0e16f451e0841dfd510e"], "follower_count": 1260, "custody_address": "0x7fb06479cccaa7cb4e94512ecfb5a19965e35d2f", "following_count": 1383, "verified_addresses": {"eth_addresses": ["0xd1204cf23774aaf09b0e0e16f451e0841dfd510e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/z7e4kHkdBBCBRHff7\"}"}', 'sonata'), - (502939, '0x7377e8b5585b2776b90da16d93f8f35c7c54d941', 0, 1, '2024-05-06 08:04:56+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 789, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"Listen to GOOD BOY - GDxTAEYANG by G-Dragon Bigbang on #SoundCloud https://on.soundcloud.com/FVYr2\"}"}', NULL), - (512694, '0x3d379749fa708d995691897defa42826bf732611', 0, 1, '2024-05-06 08:29:06+00', 0, 6, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1266, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 920, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-19623507/o9tohqdgzidk?si=9bc6e7cd0b2d4949a2bd071be1cd9b3c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (444053, '0x52e92893fe566e68c07269b0dacfc85fa944dec1', 0, 1, '2024-05-06 06:36:07+00', 0, 0, '{"fid": 510268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/898f749f-e8b3-4020-1ac6-eb543d004e00/rectcrop3", "profile": {"bio": {"text": "Hello world", "mentioned_profiles": []}}, "username": "!510268", "power_badge": false, "display_name": "doonut🎩", "active_status": "inactive", "verifications": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "follower_count": 400, "custody_address": "0xc1b763b680989873b5abb1bf82730b339bddd5f0", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/daveleezr/6-its-got-to-be-love-1?in=sc-playlists-kr/sets/disco-fever&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (387152, '0xf0237666f1512c7d554ad99a4a822c6e15a77030', 0, 1, '2024-05-06 04:16:13+00', 0, 0, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 111, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://www.sound.xyz/davyd/invictus-ft-yoshiro-mare-melodic-mix?referral=0x94734e11b78680a35b0a86ba3ce634d334d6d2a7\"}"}', 'streamz'), - (401306, '0x2e017a13c97720e3d045027c2f5220a46c658ac6', 0, 1, '2024-05-06 04:55:24+00', 0, 0, '{"fid": 326415, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1687c91-1ecd-4d5b-c89b-faa5c76a8a00/original", "profile": {"bio": {"text": "I make psychedelic music and art as Infinati. Sound and soul architect.\nhttps://infinati.wtf", "mentioned_profiles": []}}, "username": "infinati", "power_badge": false, "display_name": "Infinati", "active_status": "inactive", "verifications": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "follower_count": 67, "custody_address": "0xba3bec28da1d9eb0f1a17203a3fb9d607258cf18", "following_count": 208, "verified_addresses": {"eth_addresses": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/infinati/chocolate?referral=0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e\"}"}', NULL), - (403959, '0x900c52c98dad12f4047c7876b564a75801fc0dbb', 0, 1, '2024-05-06 05:01:01+00', 0, 3, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1657, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1715, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GUSTjiW7XyvvJSif9\"}"}', 'sonata'), - (403117, '0x200e5db5240345d8ff888b88135b322464aad503', 0, 1, '2024-05-06 05:00:22+00', 0, 0, '{"fid": 488004, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6186e71e-9262-46eb-c312-f05428784d00/rectcrop3", "profile": {"bio": {"text": "슈캐 장착하고 🏃🏃‍♀️🏃‍♂️💨", "mentioned_profiles": []}}, "username": "immyyr", "power_badge": false, "display_name": "Bluev", "active_status": "inactive", "verifications": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "follower_count": 2916, "custody_address": "0x5432cf7d98e934b2cade28db3cffd883f05d54b5", "following_count": 3261, "verified_addresses": {"eth_addresses": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ng42Yd7ZBZN4d1BB7\"}"}', 'sonata'), - (404362, '0xab9b40d1af49b3886ac93a8f1d9bfd415450d8e5', 0, 1, '2024-05-06 05:03:48+00', 0, 2, '{"fid": 488004, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6186e71e-9262-46eb-c312-f05428784d00/rectcrop3", "profile": {"bio": {"text": "슈캐 장착하고 🏃🏃‍♀️🏃‍♂️💨", "mentioned_profiles": []}}, "username": "immyyr", "power_badge": false, "display_name": "Bluev", "active_status": "inactive", "verifications": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "follower_count": 2916, "custody_address": "0x5432cf7d98e934b2cade28db3cffd883f05d54b5", "following_count": 3261, "verified_addresses": {"eth_addresses": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jXh6GKGHms7dhwGF7\"}"}', 'sonata'), - (574946, '0xbb517f28a10627b1353e7f0255722eafc6db59f8', 0, 1, '2024-05-06 11:50:02+00', 0, 15, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1271, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 939, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bimrc9ynemix/g-i-dle-fate-6?si=504072c518df47d4914a60f65e1567d7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (444054, '0x5fa44f1bd4db7e0dfa716fe9646a7574dec23aeb', 0, 1, '2024-05-06 06:36:29+00', 0, 4, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2192, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 724, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Co8UZhf6BnCXAUCS6\"}"}', 'sonata'), - (405197, '0x70e80a68d2d857e6ea64039ad8c611d92edc7e88', 0, 1, '2024-05-06 05:08:49+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jR9XU\"}"}', 'sonata'), - (465106, '0xf5d69d494dcd041e6b4eb3e0191b8cc4d9b2d21d', 0, 1, '2024-05-06 07:05:54+00', 0, 9, '{"fid": 444517, "object": "user", "pfp_url": "https://i.imgur.com/eVZVCFu.jpg", "profile": {"bio": {"text": "Crypto investor, software developer and good guy.\nCreator of /giga community and $GIGA", "mentioned_profiles": []}}, "username": "akbarych", "power_badge": false, "display_name": "GIGACHAD", "active_status": "inactive", "verifications": ["0xdfaa5acd08745b64db62d1bc30ef2cce6ce8cdc4"], "follower_count": 1140, "custody_address": "0xcba1fa7f62b3bf46049d29fd49fbb4aacd4157ed", "following_count": 1116, "verified_addresses": {"eth_addresses": ["0xdfaa5acd08745b64db62d1bc30ef2cce6ce8cdc4"], "sol_addresses": ["CSEMXHVAHVekPSo5ZqCqBW9JekL2wCVmqUj4gSm5oGnx"]}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/godzilla-feat-juice-wrld\"}"}', NULL), - (511649, '0xc269ac9319d9728ad607ec375a349eea33603408', 0, 1, '2024-05-06 08:24:57+00', 0, 4, '{"fid": 469305, "object": "user", "pfp_url": "https://i.imgur.com/eIrhOrd.jpg", "profile": {"bio": {"text": "I want to thank everyone who clicked on me.\nI''m interested in crypto markets.\nI''m also interested in food and traveling.\nI wish you well.", "mentioned_profiles": []}}, "username": "jrebuild", "power_badge": false, "display_name": "jrebuild", "active_status": "inactive", "verifications": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "follower_count": 2096, "custody_address": "0x25d482ab85de61a33c7ec7985b255f64ddab73d0", "following_count": 2072, "verified_addresses": {"eth_addresses": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/e-p-w/brown-eyes-two-things-needed-1?si=c5b1f6104b6d4661b5fcadf57a8b8844&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (484920, '0xa0214145965712488c14224641f2525f95cbb359', 0, 1, '2024-05-06 07:32:16+00', 0, 8, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 790, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 863, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/spiderverse/butter\"}"}', 'sonata'), - (404301, '0x27cbb2e19e026ec78f8ad82079da89204c45ca6f', 0, 1, '2024-05-06 05:03:11+00', 0, 3, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tzty1\"}"}', 'sonata'), - (436320, '0xccaff46ed9f81dc29e98263e5d227c7b063e13bd', 0, 1, '2024-05-06 06:25:54+00', 0, 1, '{"fid": 291712, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeicd3zrryr6cbb6456epl5eqyzlo6ec4s56sk5wc7awgc246nua27i/1", "profile": {"bio": {"text": "Studying and investing cryptos. ", "mentioned_profiles": []}}, "username": "multan", "power_badge": false, "display_name": "Bonzil🎩", "active_status": "inactive", "verifications": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "follower_count": 1281, "custody_address": "0xe61d9181dffdcd462b0e3269c93d6d0af4a3e4db", "following_count": 1560, "verified_addresses": {"eth_addresses": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/70C4NyhjD5OZUMzvWZ3njJ?si=lffFxJG4Qe6vMXoy1T-HYA\"}"}', NULL), - (1051607, '0x193ec5bca6e819de970a38dd3747c2294e0210b1', 0, 1, '2024-05-07 14:28:17+00', 0, 1, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1388, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0AiRpK3u9OeM37Wsdkk8eJ?si=XyIsdRdNSty5xg3XALus6A&context=spotify%3Aplaylist%3A2UN9Ny5tHrBu6dxz48IR8j\"}"}', 'chatcast'), - (484933, '0xb737e676aca4943a51ffc17a38ca903cd555e4ae', 0, 1, '2024-05-06 07:32:32+00', 0, 0, '{"fid": 378821, "object": "user", "pfp_url": "https://i.imgur.com/BEV2l5G.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "skycatcher", "power_badge": false, "display_name": "Sori🔄🎩🔵", "active_status": "inactive", "verifications": ["0x7f605b3ee0b27c93b477edfc103de66a881187f8"], "follower_count": 389, "custody_address": "0xd13fdb8aeed2415a032eea64ba12e7a519d97820", "following_count": 826, "verified_addresses": {"eth_addresses": ["0x7f605b3ee0b27c93b477edfc103de66a881187f8"], "sol_addresses": ["4mQYpmV7J1C9vZd4CKgaGx7fcoRjWwLneRtAYYaGBGcX"]}}', '{"{\"url\":\"https://on.soundcloud.com/7trMsXj78Z38c6BM7\"}"}', NULL), - (405923, '0xd9bea465b25e5776d9c64f4472fd570f97c18d8b', 0, 1, '2024-05-06 05:09:48+00', 0, 3, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/imv3b\"}"}', 'sonata'), - (467184, '0x1b2e4528f5350681ef204ee270bed391c15ec7fb', 0, 1, '2024-05-06 07:07:58+00', 0, 2, '{"fid": 438755, "object": "user", "pfp_url": "https://i.imgur.com/HF5qDi0.jpg", "profile": {"bio": {"text": "Crypto lover\n\n/northern-army", "mentioned_profiles": []}}, "username": "amirnaseri", "power_badge": false, "display_name": "Amirnaseri", "active_status": "inactive", "verifications": ["0x5fb57edaeb1ab8c2338add35de64e78ccf118e0b"], "follower_count": 542, "custody_address": "0xe19193d6a2a9f48fe49b3691273bca54b5747200", "following_count": 616, "verified_addresses": {"eth_addresses": ["0x5fb57edaeb1ab8c2338add35de64e78ccf118e0b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aVxqb4mb3B7VsN377\"}"}', NULL), - (513291, '0xa2e92c78b64065868de2e324efb2893625580038', 0, 1, '2024-05-06 08:32:20+00', 0, 0, '{"fid": 380784, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a805aaa2-e72c-4b2c-a553-f9df5e72fc00/rectcrop3", "profile": {"bio": {"text": "대단히 반갑습니다.\n상당히 고맙습니다.", "mentioned_profiles": []}}, "username": "under-standing", "power_badge": false, "display_name": "Diya", "active_status": "inactive", "verifications": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "follower_count": 4343, "custody_address": "0x31ae1e98c325a05696c91a31f9931293f1d0d224", "following_count": 3393, "verified_addresses": {"eth_addresses": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YAw5uxgUaZkGN4GX7\"}"}', NULL), - (404369, '0x7f2dd2b72db5ebd80a83319f443a65e80d1a8624', 0, 1, '2024-05-06 05:03:48+00', 0, 3, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nztYq\"}"}', 'sonata'), - (506917, '0x81af3dc34a0f58645233733ed7ac2f692e2abb67', 0, 1, '2024-05-06 08:12:08+00', 0, 0, '{"fid": 329134, "object": "user", "pfp_url": "https://i.imgur.com/KxtKnVU.jpg", "profile": {"bio": {"text": "→𝐷𝑜𝑛''𝑡 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝐷𝑟𝑒𝑎𝑚 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝑃𝑙𝑎𝑛 !🌱♠️", "mentioned_profiles": []}}, "username": "artam", "power_badge": false, "display_name": "Artam | 🎩🔵🔄 🎩🍗", "active_status": "inactive", "verifications": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "follower_count": 1254, "custody_address": "0xdc6c93780b9fe172e234fea6ec1713385a13bc97", "following_count": 1020, "verified_addresses": {"eth_addresses": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "sol_addresses": ["GwSpiiX8r44NWnaUGAAoSxjxHWHs78Hjx65MsX4HWDAE"]}}', '{"{\"url\":\"https://open.spotify.com/track/0U10zFw4GlBacOy9VDGfGL?si=f38f0cd23f0d4f8f\"}"}', NULL), - (495907, '0xeb2977000495d395cac6357788d475600d41e2db', 0, 1, '2024-05-06 07:54:20+00', 0, 0, '{"fid": 17582, "object": "user", "pfp_url": "https://i.imgur.com/2m6Z9ab.gif", "profile": {"bio": {"text": "FC OG FID 17582, 🙌 art supporter with >470k $degen tipped | Also web3 & ZK investor, VC & tech podcast host, self-proclaimed digital artist (Rapha.Elgrie.co)", "mentioned_profiles": []}}, "username": "rphgrc.eth", "power_badge": true, "display_name": "RAPH GRIΞCO ↑🔵", "active_status": "inactive", "verifications": ["0xd48ba19c4d8ae08fc189273b52b696931b271e53", "0xdaac0bb7ffb7d9fc06ff2cd4fb813f46157b7481", "0x915c51a7a0399662e63c99e1faf351f668198de8"], "follower_count": 1685, "custody_address": "0xaf9304132708b01aa0c4ff87becf51bdcfc4ba83", "following_count": 998, "verified_addresses": {"eth_addresses": ["0xd48ba19c4d8ae08fc189273b52b696931b271e53", "0xdaac0bb7ffb7d9fc06ff2cd4fb813f46157b7481", "0x915c51a7a0399662e63c99e1faf351f668198de8"], "sol_addresses": ["5s74ej2muAJZCk2thCGeted8ak1Tzj4mZVpbxjgbaeqy"]}}', '{"{\"url\":\"https://open.spotify.com/track/2TIoqfCCtDQ26X5eFCGVAR?si=422b38a85f154c83\"}"}', NULL), - (444529, '0x0f10ff17f71921bf14f8e1c84839f3dec31fed4e', 0, 1, '2024-05-06 06:37:53+00', 0, 0, '{"fid": 364020, "object": "user", "pfp_url": "https://i.imgur.com/CihS5hW.jpg", "profile": {"bio": {"text": "Game is my life\nyou can''t change the past but you can make future", "mentioned_profiles": []}}, "username": "farid463", "power_badge": false, "display_name": "Farid🎩🔄", "active_status": "inactive", "verifications": ["0xcbb3e0543c9bd83951821f8b5a68575fb4cd2935"], "follower_count": 324, "custody_address": "0xf12fcf5b34f2ce5252c3f0ca1f901fb007fe2167", "following_count": 673, "verified_addresses": {"eth_addresses": ["0xcbb3e0543c9bd83951821f8b5a68575fb4cd2935"], "sol_addresses": ["88hNN3vDGDDMGBajhUWvKtv1PNLFiFT8r1YkeWrfF3wz"]}}', '{"{\"url\":\"https://soundcloud.com/hiphopologistsoroush/5am\"}"}', NULL), - (506923, '0xfdbfc198fa92abcba970e77ebb8f6b168ff69bfd', 0, 1, '2024-05-06 08:11:02+00', 0, 3, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 723, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1076, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ERsDme6cENhk2Lv99\"}"}', 'sonata'), - (485886, '0xbd177b702c70e7eda86d2587aaffa5e76f6bfbf2', 0, 1, '2024-05-06 07:33:03+00', 0, 4, '{"fid": 482987, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1899cc5e-625d-457c-0e4d-85b42e31f200/rectcrop3", "profile": {"bio": {"text": "Rule Number One: Never be Number Two in Anything!💯🥰", "mentioned_profiles": []}}, "username": "iamnaeem07", "power_badge": false, "display_name": "NaeemNawaz", "active_status": "inactive", "verifications": ["0x9bf8a253da9707690d0f107551869a1cb1800e52"], "follower_count": 940, "custody_address": "0x0f544b4003ccd2376e1de27d62aef80db57fab64", "following_count": 1571, "verified_addresses": {"eth_addresses": ["0x9bf8a253da9707690d0f107551869a1cb1800e52"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/godzilla-feat-juice-wrld\"}"}', NULL), - (784768, '0x3cab20aa4fa167dc9482f6eb26fe764abe4beaef', 0, 1, '2024-05-07 02:16:27+00', 0, 1, '{"fid": 405992, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6234e762-73fa-4321-c23d-64b0cfb70700/rectcrop3", "profile": {"bio": {"text": "F4F🙌 / Communication ASAP🚀 / Love DEGEN / Dining🍽️ / Travel✈️", "mentioned_profiles": []}}, "username": "kkinnvv", "power_badge": false, "display_name": "KKINNVV🎩🔮🍖", "active_status": "inactive", "verifications": ["0xe9dc43ba2c866fd1880b16c819e696e9b49ea656"], "follower_count": 3006, "custody_address": "0xee27ff7ddc164209765fdc8b88f91e6bc55bfc66", "following_count": 2585, "verified_addresses": {"eth_addresses": ["0xe9dc43ba2c866fd1880b16c819e696e9b49ea656"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8Re8TDtecBMQ47Zs6\"}"}', NULL), - (401675, '0x21677f0005222eeec97e79ebb5c9a9108423002d', 0, 1, '2024-05-06 04:56:47+00', 0, 5, '{"fid": 499252, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6426fa39-cb02-434b-217b-fffbaa4e2c00/rectcrop3", "profile": {"bio": {"text": "소통왕/반사왕 될게요❄❄\n절대 잊지 않고 찾아봬요😊", "mentioned_profiles": []}}, "username": "nunuwillump", "power_badge": false, "display_name": "NUNU", "active_status": "inactive", "verifications": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "follower_count": 2255, "custody_address": "0x69b0108a354647ac6467250dbad5323cfee38319", "following_count": 2257, "verified_addresses": {"eth_addresses": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/X6mFG\"}"}', 'sonata'), - (405194, '0xe078d0fc5bcbb5716f95c786fa876cacbc367f36', 0, 1, '2024-05-06 05:08:14+00', 0, 3, '{"fid": 403323, "object": "user", "pfp_url": "https://i.imgur.com/ZemtZfN.gif", "profile": {"bio": {"text": "AI art creator as morphinggato. \nI sometimes make small items with Japanese lacquer. \nX acount: @mofukana25 ", "mentioned_profiles": []}}, "username": "morphkana", "power_badge": false, "display_name": "morph🎩🍖", "active_status": "inactive", "verifications": ["0x56c2cb50753a884ca449f59ec17958421cb6263d"], "follower_count": 533, "custody_address": "0x7d810988faa9036d84ef1d91dacf19401aea2e4d", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x56c2cb50753a884ca449f59ec17958421cb6263d"], "sol_addresses": ["F8JDcQzJ3j69PeN2NyEFbRe6JyhboGEZzxdjsCjXYPfo"]}}', '{"{\"url\":\"https://open.spotify.com/track/65sdc2IAvlIXIAb19s5Tg5?si=XUHFnyVSSvij1hvpbTRSSQ\"}"}', 'bgm'), - (463604, '0x73fa868b1b47efa304ed89f907feb91542e084ab', 0, 1, '2024-05-06 07:03:34+00', 0, 2, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1259, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 888, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6naxalmIoLFWR0siv8dnQQ\"}"}', 'sonata'), - (401762, '0xbc8eb6a31d14761b4e282b8b02da7ddacecbe53f', 0, 1, '2024-05-06 04:57:28+00', 0, 2, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2380, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1610, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/scHHzZHJYC6KdqeG7\"}"}', 'sonata'), - (506939, '0x8cf6b47fdcf6b99dddf8ed4e7e969b5a4dad5878', 0, 1, '2024-05-06 08:12:03+00', 0, 1, '{"fid": 418760, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": "No next no ex money is the best 😎🕊️", "mentioned_profiles": []}}, "username": "azazilsky", "power_badge": false, "display_name": "azazilsky12", "active_status": "inactive", "verifications": ["0xb3873616623f16874f0c4757c2e0647cae8a0451"], "follower_count": 904, "custody_address": "0xf026b229f7ce0ead4f194b95dc5868f9469489ba", "following_count": 1065, "verified_addresses": {"eth_addresses": ["0xb3873616623f16874f0c4757c2e0647cae8a0451"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wEaPjzFWTrpc1n4g9\"}"}', NULL), - (522071, '0x497f988fa49e7b9cf75f240cec55c905bddae620', 0, 1, '2024-05-06 09:05:10+00', 0, 6, '{"fid": 447691, "object": "user", "pfp_url": "https://i.imgur.com/HuigBmC.jpg", "profile": {"bio": {"text": "💕 ❤️ 🌸 F4F | 빛반사 | 맞팔 💕 ❤️ 🌸\n\n30분내 바로 반사때려버리는 여시코깽이 같은련,, (관심있는건 아님)", "mentioned_profiles": []}}, "username": "bloodtrail", "power_badge": false, "display_name": "Bloodtrail🎩 ", "active_status": "inactive", "verifications": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "follower_count": 2878, "custody_address": "0x684564b6ab9ec5f77fb1c755c22812b0b7569e9c", "following_count": 3111, "verified_addresses": {"eth_addresses": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8bJdVmGLH4ZB83zz6\"}"}', 'sonata'), - (1052444, '0xde85eb34f7db6e61360d24e7a0e16212ade21e53', 0, 1, '2024-05-07 14:31:57+00', 0, 2, '{"fid": 475970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d303aa25-974b-42f3-d5e6-8a2cbd83b500/original", "profile": {"bio": {"text": "맥주를 너무 사랑하는 남자!\n하지만 통풍은 무서운 남자!\n부자되기를 두려워하지 않는 남자!\nHighly beer addicted!🍻\nGood day to dance😀", "mentioned_profiles": []}}, "username": "sarnath8282", "power_badge": false, "display_name": "sarnath8282", "active_status": "inactive", "verifications": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "follower_count": 1451, "custody_address": "0xd7ad189a1b9637b6e1383d0a5bdbf23599408568", "following_count": 2597, "verified_addresses": {"eth_addresses": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1206-747981606/feat-nagging-lyrics-m4a?si=d820277d2c3b4ec0836be73d24413345&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (444530, '0x74a3710e7389854599414c064039655c2868015b', 0, 1, '2024-05-06 06:37:38+00', 0, 3, '{"fid": 503858, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd5114c3-7a85-4bcf-d551-bf7cfb377500/original", "profile": {"bio": {"text": "Creator | Degen | Base | Zora \n \nI love warpcast♥️", "mentioned_profiles": []}}, "username": "tomatoislove", "power_badge": false, "display_name": "HAN🎩🔵", "active_status": "inactive", "verifications": ["0xb631c2ce69c83719d771e61c75f324e497dae34d"], "follower_count": 1446, "custody_address": "0xa6cfcb245fc650dd59b12e9282d8b877722ee3c0", "following_count": 1801, "verified_addresses": {"eth_addresses": ["0xb631c2ce69c83719d771e61c75f324e497dae34d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musiic_time/choi-yu-ree-wandering-youth?si=1ee3a23aeed84192bc05d39caddffbd1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (513916, '0xe58956d72a3ccf53eb4c602d2f800181031dae52', 0, 1, '2024-05-06 08:36:07+00', 0, 12, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2666, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2953, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7ZnWZEyVNVRWPi3h8\"}"}', 'sonata'), - (542167, '0x196cb22e86e5026bd12d14760ce939de7abbdfd7', 0, 1, '2024-05-06 10:00:00+00', 0, 0, '{"fid": 426559, "object": "user", "pfp_url": "https://i.imgur.com/r6xYkqZ.jpg", "profile": {"bio": {"text": "선팔 / 방문남겨주시면 찾아가융 💕 투더문 degen 🚀 🌛 ", "mentioned_profiles": []}}, "username": "ygygkym", "power_badge": false, "display_name": "Minji_kim", "active_status": "inactive", "verifications": ["0xd5a8f4df9163c0a76301bbfc0152b35b70e46c5e"], "follower_count": 1886, "custody_address": "0x1d6296998381298d3f040c6d4a95a6d49096bcc7", "following_count": 1353, "verified_addresses": {"eth_addresses": ["0xd5a8f4df9163c0a76301bbfc0152b35b70e46c5e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mishafomin/sets/pw5yahjoijkl?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (556199, '0xd56a704ecccbe445feedcea014bc18da79432325', 0, 1, '2024-05-06 10:44:51+00', 0, 1, '{"fid": 427649, "object": "user", "pfp_url": "https://i.imgur.com/Qy8rpU5.jpg", "profile": {"bio": {"text": "I am interesting about investment specially NFT&Crypto. I would like to share my opinion and want to get many alpha information. Thanks", "mentioned_profiles": []}}, "username": "speciallt", "power_badge": false, "display_name": "LT🎩🍖", "active_status": "inactive", "verifications": ["0x60f3119a7fb0620f7e0af2adeeca3c9b1f51a61e"], "follower_count": 2636, "custody_address": "0x0577b83af5f553b70f55da3008c467c14a7eb9cd", "following_count": 2463, "verified_addresses": {"eth_addresses": ["0x60f3119a7fb0620f7e0af2adeeca3c9b1f51a61e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-956334953/coldplay-viva-la-vida?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (444559, '0x730f0d712658b965521ed94128220c12e952272d', 0, 1, '2024-05-06 06:38:10+00', 0, 3, '{"fid": 277944, "object": "user", "pfp_url": "https://i.imgur.com/Sv0s8B7.jpg", "profile": {"bio": {"text": "Surgun ♠️♦️♥️♣️", "mentioned_profiles": []}}, "username": "mansour", "power_badge": false, "display_name": "0xman 🎩 🔵 🍕🔮⛓️", "active_status": "inactive", "verifications": ["0x10e0eef65afde81e4452f249b57373beb4aaa1cf"], "follower_count": 2018, "custody_address": "0xc8aed1618c42d1d13d5734bd0bfbb6ab5741d7b7", "following_count": 2733, "verified_addresses": {"eth_addresses": ["0x10e0eef65afde81e4452f249b57373beb4aaa1cf"], "sol_addresses": ["F3qwS8bbiZnjUCqBXrE1gT6MtXmN4t6zLXQGvghCSVAW"]}}', '{"{\"url\":\"https://on.soundcloud.com/h2ukw\"}"}', NULL), - (403101, '0x9280285d67d9f6a665850aad5e8c073c14f438be', 0, 1, '2024-05-06 05:00:03+00', 0, 4, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1260, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 918, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/canlie/au0tuy9aucpk?in=ctwonujjlrnp/sets/szqn5tfc6wrs&si=5e7fb051f010443cabd5e76ad350cdc8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (468210, '0x64f0a90352cf1d147d1cf2580bbad53532b11878', 0, 1, '2024-05-06 07:09:55+00', 0, 0, '{"fid": 417275, "object": "user", "pfp_url": "https://i.imgur.com/S7A5ePA.jpg", "profile": {"bio": {"text": "Every struggle in your life has shaped you into the person . You are today . Be thankful for the hard times , they have made you STRONGER", "mentioned_profiles": []}}, "username": "parytaky", "power_badge": false, "display_name": "Parisa.✈️", "active_status": "inactive", "verifications": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "follower_count": 585, "custody_address": "0x7ce17fd885235346e55fedf7d819095f1240819e", "following_count": 510, "verified_addresses": {"eth_addresses": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t6AF3\"}"}', NULL), - (398657, '0x5a3b904957ec152c49a867824122d64275292ecb', 0, 1, '2024-05-06 04:43:42+00', 0, 0, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "follower_count": 296, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 239, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2wAJTrFhCnQyNSD3oUgTZO?si=tbYDNr3nS2asImLfqeP-Ow&context=spotify%3Aartist%3A6l3HvQ5sa6mXTsMTB19rO5\"}"}', 'bangers'), - (401673, '0x016cca28ffc8e1b56ad4024dcc6cf06542a07753', 0, 1, '2024-05-06 04:55:54+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2925, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2349, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RZw4h\"}"}', 'sonata'), - (506934, '0xfafce913265e5621c6492f7fdcf4e612bbb90055', 0, 1, '2024-05-06 08:11:50+00', 0, 0, '{"fid": 291771, "object": "user", "pfp_url": "https://i.imgur.com/2FXOtXT.jpg", "profile": {"bio": {"text": "I''m english teacher and trader", "mentioned_profiles": []}}, "username": "arasfarcaster", "power_badge": false, "display_name": "🎩 yosef🔄Jani 🎩", "active_status": "inactive", "verifications": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "follower_count": 1355, "custody_address": "0x24f89648e2f465b820925d3611e610d92052ea42", "following_count": 1704, "verified_addresses": {"eth_addresses": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "sol_addresses": ["8dBNEjFNeFoJ1SngCUdeC3ygLEiJdHgqHtLzSqzzUL3u"]}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/lovely?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (404574, '0xb1868ba638e98620f733dedc33087656532ba0be', 0, 1, '2024-05-06 05:05:15+00', 0, 5, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qMPag\"}"}', 'sonata'), - (403105, '0xf3b68bb6fb1a2199f0cf195538de5ba00c10154c', 0, 1, '2024-05-06 05:00:21+00', 0, 3, '{"fid": 418655, "object": "user", "pfp_url": "https://i.imgur.com/2otSRxb.jpg", "profile": {"bio": {"text": "Crypto since 2017. I''m ready for Based Summer / Love music / Share music recommendations /psymusic", "mentioned_profiles": []}}, "username": "guu", "power_badge": false, "display_name": "Gu", "active_status": "inactive", "verifications": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "follower_count": 147, "custody_address": "0x87f6314adbf601f44fbf3fd37edc2fb7aff185a8", "following_count": 233, "verified_addresses": {"eth_addresses": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kingdoudou/isabella-lovestory-fashion-freak-king-doudou-pasarela-mix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (468226, '0x7cb00b40de144ce9e1ab2aad066d7131a7b81d00', 0, 1, '2024-05-06 07:10:07+00', 0, 2, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 810, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HmNNv231X5PdndEr5\"}"}', NULL), - (522072, '0xebd29e4d90d68533b0bc36a27ad12e647a56bfb6', 0, 1, '2024-05-06 09:05:47+00', 0, 6, '{"fid": 325706, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWnD9SHLqXBn3EGZDAEMwkoBsJmBwQisjpscGHc2tXdUd?filename=zora-(9).jpg", "profile": {"bio": {"text": "🔆긍정🔆-🐮소통🐮-🪞반사🪞", "mentioned_profiles": []}}, "username": "miconox", "power_badge": false, "display_name": "MICONOX", "active_status": "inactive", "verifications": ["0xdfc3675c1b76fe2b98b77e1de7ac1a4fe48c4fec"], "follower_count": 2216, "custody_address": "0x8d60212ac84b48b4a605b4a084f4459d177f9d1b", "following_count": 1345, "verified_addresses": {"eth_addresses": ["0xdfc3675c1b76fe2b98b77e1de7ac1a4fe48c4fec"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/harimhong/sets/fzu2vyxbygn4?si=46340f50f06349079d63302b2b429112&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (507370, '0xd663bb58c0ff5bcaf563ab908f4215779affbf05', 0, 1, '2024-05-06 08:13:04+00', 0, 0, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2107, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2651, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5CM9R\"}"}', NULL), - (513941, '0xd6397a1a27a813607395663d271c0edfb1cd49a8', 0, 1, '2024-05-06 08:35:47+00', 0, 11, '{"fid": 247653, "object": "user", "pfp_url": "https://i.imgur.com/8bPfKF7.jpg", "profile": {"bio": {"text": "✅ AlfaFrens\nhttps://www.alfafrens.com/channel/0x14225517d2CA4D08DAcaA29d3828B9d71fD4177E", "mentioned_profiles": []}}, "username": "pandateemo", "power_badge": false, "display_name": "pandateemo f4f 🎩 🍖", "active_status": "inactive", "verifications": ["0x7210de104487649c5c3b3e1b873355a0bfe69fb7"], "follower_count": 4122, "custody_address": "0xcf1631fbe68b27540606774f42fcdd723be12be1", "following_count": 2595, "verified_addresses": {"eth_addresses": ["0x7210de104487649c5c3b3e1b873355a0bfe69fb7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/3zwmu0yi0vbd/op-1?si=b76e693a0b3a48cc8b6a2b3b763dc72c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (417468, '0x3ca2c31b1634ea29056ecd885466bd1efa5d2764', 0, 1, '2024-05-06 05:46:56+00', 0, 4, '{"fid": 246039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93c7fa70-4212-4c62-2956-64e0a42d3c00/original", "profile": {"bio": {"text": "BTC/ETH HOLDER` Digital Art & AI Art lover |Designer| Illustrator Purple#484", "mentioned_profiles": []}}, "username": "youmoer", "power_badge": false, "display_name": "Youmoer🃏🟡 🟪🎩 🔄", "active_status": "inactive", "verifications": ["0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9"], "follower_count": 937, "custody_address": "0x8fc222afb9d83997a357fdf20d0f590d0b33aa76", "following_count": 718, "verified_addresses": {"eth_addresses": ["0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9"], "sol_addresses": ["CwKRV5Chh1cg75ikozySUTbZsuj62j3v9Pp1xmYz9jLV"]}}', '{"{\"url\":\"https://www.sound.xyz/xcelencia/chimbita?referral=0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9&referral_source=link\"}"}', NULL), - (579609, '0x3b35e958bec1d37f81c5265e2f2714337777e5ff', 0, 1, '2024-05-06 11:59:07+00', 10, 1, '{"fid": 500261, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d93120e4-9ca4-4c3c-29fd-3a268ab91f00/rectcrop3", "profile": {"bio": {"text": "Im actor is US, I will learn about America and talk about dramas, movies, and my daily life\n❤️US, Korea", "mentioned_profiles": []}}, "username": "actors-review", "power_badge": false, "display_name": "actor-review1", "active_status": "inactive", "verifications": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "follower_count": 1123, "custody_address": "0x99c7217798a58ce8ee28769d93c223d5de34c245", "following_count": 1553, "verified_addresses": {"eth_addresses": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ehJrC92DuhTn9GJp6\"}"}', NULL), - (994647, '0xe5c5ca5bed536ca8e0028bf4569bfe5372b37862', 0, 1, '2024-05-07 11:39:02+00', 0, 2, '{"fid": 10971, "object": "user", "pfp_url": "https://i.seadn.io/gae/5Y51u8vlx73mQj6R7jObpdvC9nkdAIeMul8ErYUjbXEYC8luNtZs-nniFBATubJHAMv3HtA_G76IG5yDopU9sW9OtKDSoW0gm4TXvxA?w=500&auto=format", "profile": {"bio": {"text": "@usv | jared.xyz | formerly founder of groupme and fundera ", "mentioned_profiles": []}}, "username": "jaredhecht.eth", "power_badge": true, "display_name": "Jared Hecht", "active_status": "inactive", "verifications": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "follower_count": 297, "custody_address": "0xe363817e3eb0f4c3d5628142b63ea7b275a4491b", "following_count": 100, "verified_addresses": {"eth_addresses": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/00R0fEFZGb5hyTgF1nrRCq?si=ljyvslklTE6SqV1oCPopYw\"}"}', NULL), - (445316, '0xb2f37912efe8c4f2afd62a8933afca45a094c3c9', 0, 1, '2024-05-06 06:39:11+00', 0, 0, '{"fid": 295814, "object": "user", "pfp_url": "https://arweave.net/UmJditu08ngvBaLpgFb3L8DXgu8F__6XPVRABhAnPVw/", "profile": {"bio": {"text": "Crypto trader", "mentioned_profiles": []}}, "username": "sphr", "power_badge": false, "display_name": "Sepehr 🎩", "active_status": "inactive", "verifications": ["0x49a176d46c6b87292008ab9eb6f033e791552b73"], "follower_count": 2296, "custody_address": "0x0892b3411254a581531d5ce2196ad1bf33fe7182", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x49a176d46c6b87292008ab9eb6f033e791552b73"], "sol_addresses": ["9NpxxSghjwoKHN8RwpdKtSQpWwTNhr7hPA8idrUWRx9b"]}}', '{"{\"url\":\"https://on.soundcloud.com/dA22D7MFDyHviR5K7\"}"}', NULL), - (522345, '0xfc1a8b35e985f857e17b521dd8a7ed942593572a', 0, 1, '2024-05-06 09:07:04+00', 0, 2, '{"fid": 510066, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54eff8e4-0f53-4920-fafa-c2cc610b8a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!510066", "power_badge": false, "display_name": "Saeid", "active_status": "inactive", "verifications": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "follower_count": 188, "custody_address": "0x6fe4b05d6fc7c867484b9f98b1b5d5dff2c27bad", "following_count": 352, "verified_addresses": {"eth_addresses": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pQRZM\"}"}', 'sonata'), - (404935, '0xb46cdf4b57ea4cc05802c441d463381f23a5fbaf', 0, 1, '2024-05-06 05:06:26+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2925, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2349, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qKSHa\"}"}', 'sonata'), - (401315, '0x8750b2c6b6b303927a5e750498fc2432c7a7d78d', 0, 1, '2024-05-06 04:55:05+00', 0, 1, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2380, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1610, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FVgx2Ru1WA257F1Z6\"}"}', 'sonata'), - (457887, '0xe9389e455537c47caecab8e9d69e0a04b0abff51', 0, 1, '2024-05-06 06:56:06+00', 0, 0, '{"fid": 305724, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d019a8b-9aa5-4085-3c99-8e1782f35600/rectcrop3", "profile": {"bio": {"text": "🦇Vampire Scorpion Gang🦂| X: @ beerus_eth ", "mentioned_profiles": []}}, "username": "gliscor.eth", "power_badge": false, "display_name": "gliscor.eth🎩🍖🆓🦇🦂", "active_status": "inactive", "verifications": ["0x16d2f0195a87f0e525a1a196f8e41b49ba2e4ca9"], "follower_count": 87, "custody_address": "0xab13162f231313ef70e2b64bd9f7a0945a6acff4", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x16d2f0195a87f0e525a1a196f8e41b49ba2e4ca9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1PScfd4Mz9NBasUAfoojHc?si=i9Wsm3zGRHi9OJLEwRvgyQ\"}"}', 'bangers'), - (539185, '0x9db54fe4eb15a6e960842186e22ea18622818d9a', 0, 1, '2024-05-06 09:51:50+00', 0, 1, '{"fid": 480276, "object": "user", "pfp_url": "https://i.imgur.com/mDmMDJG.jpg", "profile": {"bio": {"text": "조대리 같이 소통해요 맞팔 환영입니다ㅎㅎ ", "mentioned_profiles": []}}, "username": "youngwon", "power_badge": false, "display_name": "j_man", "active_status": "inactive", "verifications": ["0x71ef15017bef51bcd9b4d67c386d30253209096b", "0x71ef15017bef51bcd9b4d67c386d30253209096b"], "follower_count": 1341, "custody_address": "0x90db0b567acebf8617aa0ab1aebb2d55af4d3482", "following_count": 1071, "verified_addresses": {"eth_addresses": ["0x71ef15017bef51bcd9b4d67c386d30253209096b", "0x71ef15017bef51bcd9b4d67c386d30253209096b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tYxX6xknb5VWmqs57\"}"}', 'sonata'), - (557629, '0x7b6f368a30ceec4cb9a9a2e5a26318200cf5e619', 0, 1, '2024-05-06 10:49:40+00', 0, 1, '{"fid": 439083, "object": "user", "pfp_url": "https://i.imgur.com/kQR4keG.jpg", "profile": {"bio": {"text": "Everything is made of energy and consciousness..🧘‍♀️🪷💫", "mentioned_profiles": []}}, "username": "parisss", "power_badge": false, "display_name": "Parisash", "active_status": "inactive", "verifications": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "follower_count": 1047, "custody_address": "0x42751c21c4721d754a8be4b50390e988e30a33ec", "following_count": 1158, "verified_addresses": {"eth_addresses": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mohamed-basiouny-6/from-sarah-with-love?si=7dd1f219f2e643b199a222bc34df6d9a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (403997, '0xb34162cda6f5bd21519f74411b79dfc740fa5920', 0, 1, '2024-05-06 05:01:12+00', 0, 1, '{"fid": 460454, "object": "user", "pfp_url": "https://i.imgur.com/IJQNGZf.jpg", "profile": {"bio": {"text": "Gem finder", "mentioned_profiles": []}}, "username": "roxz", "power_badge": false, "display_name": "rox", "active_status": "inactive", "verifications": ["0xf91dad612d3366d7cd57f970617a2dc0c07db830"], "follower_count": 53, "custody_address": "0xd4a9467000987a49796c32fe8d0a46240a9ad2ec", "following_count": 197, "verified_addresses": {"eth_addresses": ["0xf91dad612d3366d7cd57f970617a2dc0c07db830"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-asse/sets/r-b?si=e0349e6d50ad48c48b402af3707c2978&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (485921, '0x6bb952dfb2d49573e630e86db17064e6806a073c', 0, 1, '2024-05-06 07:33:09+00', 0, 4, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 2029, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2865, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 대화가 필요해 - 로이킴&최정훈 [더 시즌즈-최정훈의 밤의공원] .mp3 by 영원한캐미 on #SoundCloud https://on.soundcloud.com/5mkKq\"}"}', NULL), - (513932, '0x2180a1da4c59d319f7ae0800d7b84a764f76fa89', 0, 1, '2024-05-06 08:35:41+00', 0, 13, '{"fid": 380784, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a805aaa2-e72c-4b2c-a553-f9df5e72fc00/rectcrop3", "profile": {"bio": {"text": "대단히 반갑습니다.\n상당히 고맙습니다.", "mentioned_profiles": []}}, "username": "under-standing", "power_badge": false, "display_name": "Diya", "active_status": "inactive", "verifications": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "follower_count": 4345, "custody_address": "0x31ae1e98c325a05696c91a31f9931293f1d0d224", "following_count": 3393, "verified_addresses": {"eth_addresses": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Rf3u9Uo9YzHHcFP76\"}"}', 'sonata'), - (445320, '0xed343df729c28ed1309ffebf912ac2abde8bd51d', 0, 1, '2024-05-06 06:38:30+00', 0, 1, '{"fid": 420233, "object": "user", "pfp_url": "https://i.imgur.com/7F1JLM4.jpg", "profile": {"bio": {"text": "F4F 조대리 열심히 갑니다💥\n선팔 환영해요😆", "mentioned_profiles": []}}, "username": "jamessyo", "power_badge": false, "display_name": "Jamess", "active_status": "inactive", "verifications": ["0xd1204cf23774aaf09b0e0e16f451e0841dfd510e"], "follower_count": 1260, "custody_address": "0x7fb06479cccaa7cb4e94512ecfb5a19965e35d2f", "following_count": 1383, "verified_addresses": {"eth_addresses": ["0xd1204cf23774aaf09b0e0e16f451e0841dfd510e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/z7e4kHkdBBCBRHff7\"}"}', NULL), - (405037, '0xf61d6623885c2a7218514dec4dbf0c5736f25994', 0, 1, '2024-05-06 05:07:58+00', 0, 0, '{"fid": 413804, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeid4egu3uatkl2aqjnnpktstyjiidnjvgy2caz2kutkufcg3t3qedy", "profile": {"bio": {"text": "$degen, $enjoy, $imagine, $higher, $RARE", "mentioned_profiles": []}}, "username": "j2inu", "power_badge": false, "display_name": "Jinwoo", "active_status": "inactive", "verifications": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "follower_count": 1914, "custody_address": "0xab1265d965e7155f47a4c3bca8a91d560631ec8a", "following_count": 2185, "verified_addresses": {"eth_addresses": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/xpeach_sjs/sweet-chaos-day6?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (522353, '0xd0eaf048a65f0d7bf5352381e3ef87bd1f4d20a2', 0, 1, '2024-05-06 09:07:14+00', 0, 5, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 476, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 771, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5dHci\"}"}', 'sonata'), - (400672, '0xdf1632a13ca84671931ae94c85f68425cb187496', 0, 1, '2024-05-06 04:52:53+00', 0, 3, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2134, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1879, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Q8QYGfKa4cGaymdq6\"}"}', NULL), - (522735, '0x6b8540b6cafa4f3db5b902783d46ac09e0668cb1', 0, 1, '2024-05-06 09:08:30+00', 0, 8, '{"fid": 491718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44f5849-69cc-4805-c6aa-5ef274a2fa00/rectcrop3", "profile": {"bio": {"text": "잘부탁드려요 맞팔갑니다 디젠 파이팅", "mentioned_profiles": []}}, "username": "hduck43", "power_badge": false, "display_name": "hduck43", "active_status": "inactive", "verifications": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "follower_count": 1375, "custody_address": "0x313bb25e8e5a06110334088d0db7fb4979a48e8b", "following_count": 2277, "verified_addresses": {"eth_addresses": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9MUt8n3QYjhB6KW78\"}"}', 'sonata'), - (445321, '0x5e9da12353bc33ef05613460110db565005fc9ad', 0, 1, '2024-05-06 06:38:40+00', 0, 0, '{"fid": 459252, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbPVzQRUDbcyETMCvt4vt6QN3GZwnRGoEKyTyHTzyJ85p?filename=..-5-12-screenshot.png", "profile": {"bio": {"text": "My Life is Gold", "mentioned_profiles": []}}, "username": "nomong", "power_badge": false, "display_name": "Nomong2", "active_status": "inactive", "verifications": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "follower_count": 1359, "custody_address": "0xc50f4e6e0cd1d5076d64e68662e9798f9fbab778", "following_count": 1853, "verified_addresses": {"eth_addresses": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ibrahim-alsalih/j-s-bach-sonata-for-violin-solo-no-1-in-g-minor-bwv-1001-hilary-hahn?si=8c2f9370ff53465290c3c720b40ed726&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (507373, '0xe62a4708f4eeb85ee0fb3bb00e5bbe8ba1b1f01f', 0, 1, '2024-05-06 08:12:47+00', 0, 6, '{"fid": 290963, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/592df561-0353-4b9d-73b6-0615db1a3500/rectcrop3", "profile": {"bio": {"text": "Saman\nThe black man in the lonely city\nX @itssamanesi", "mentioned_profiles": []}}, "username": "amosaman", "power_badge": false, "display_name": "Amosaman 🎩", "active_status": "inactive", "verifications": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "follower_count": 1333, "custody_address": "0xd0b702784fc9d73ac1771d92e192695fb320148f", "following_count": 1404, "verified_addresses": {"eth_addresses": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "sol_addresses": ["3kbt8VCbeVFNMUJJ9bVtSvnthvG7yzdJUzNNuhWk2S9C"]}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/without-me-album-version?si=7df498d5a10946e0a070cc95ba8621a5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (405172, '0x963c343d49779e65bbd992c38b21c91f5cab4a6a', 0, 1, '2024-05-06 05:08:33+00', 0, 0, '{"fid": 516812, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd0c9bf6-57d6-413d-f419-f325db504200/rectcrop3", "profile": {"bio": {"text": "DJ / DRONE / Singlespeed Bike\n\nMixcloud:https://www.mixcloud.com/djinnhaq/\nX:https://twitter.com/illegal1312", "mentioned_profiles": []}}, "username": "!516812", "power_badge": false, "display_name": "djinnhaq", "active_status": "inactive", "verifications": ["0xc06fdc18b618eb9713b806a8d67d9c3deae98229"], "follower_count": 12, "custody_address": "0xf9e1b4d3a2b7b121fcb058e29ab2fea93bcf4a82", "following_count": 70, "verified_addresses": {"eth_addresses": ["0xc06fdc18b618eb9713b806a8d67d9c3deae98229"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/greylo/back-to-your-roots?in=greylo/sets/re-pak-05&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (514213, '0xc240851da70bee975bd5c18873e2bf27292c589d', 0, 1, '2024-05-06 08:36:26+00', 0, 9, '{"fid": 401137, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreicsyezfqnce4pu77dnahnx543eivcihqyfgcqyzg7uvtv62niotcy", "profile": {"bio": {"text": "Iwanttoknowabouteverything. \n\n 소통이제일즐거워 뚠뚠🐜🐜🐜", "mentioned_profiles": []}}, "username": "godhee", "power_badge": false, "display_name": "Godhee 🍖🎩", "active_status": "inactive", "verifications": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "follower_count": 2738, "custody_address": "0xee713090ee73a3df4a8113b14862bc87a5a30af6", "following_count": 2916, "verified_addresses": {"eth_addresses": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cbzVBCrA4Z1Y4ZAYA\"}"}', 'sonata'), - (565970, '0x35263f71a5f50f38aa7de7455afe71bf034546cc', 0, 1, '2024-05-06 11:16:23+00', 0, 1, '{"fid": 500192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ce5a3a6-a9f6-42b8-f629-f50bf9ac5800/original", "profile": {"bio": {"text": "I''m into a crypto\n", "mentioned_profiles": []}}, "username": "slimbear", "power_badge": false, "display_name": "magnet", "active_status": "inactive", "verifications": ["0x82209111e235613802e6a95f0a4371307408461a"], "follower_count": 131, "custody_address": "0x26a5a24457559d2daf1c38ea21d169f7dc112885", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x82209111e235613802e6a95f0a4371307408461a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jvPZW5jHKjPLrqcZ7\"}"}', NULL), - (706775, '0xb4747c659d3f80a2d7c0f20e2b6fb3c70f0e45cd', 0, 1, '2024-05-06 18:27:10+00', 0, 0, '{"fid": 410039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26c65d64-bc88-42ff-76b1-6f74c5f54f00/original", "profile": {"bio": {"text": "I mek beats\n\n/timestamps /imadeathing\n\nhttps://linktr.ee/yungraj", "mentioned_profiles": []}}, "username": "yungraj", "power_badge": true, "display_name": "Yung.Raj", "active_status": "inactive", "verifications": ["0x8bcb6e436eb92a2c6459ad64aa3c4c049ffb44ed"], "follower_count": 419, "custody_address": "0x542249a0c68211d3e4484a89051f79a8f3e547e0", "following_count": 432, "verified_addresses": {"eth_addresses": ["0x8bcb6e436eb92a2c6459ad64aa3c4c049ffb44ed"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dutchyyy/metropolis-jawn?referral_source=link\"}"}', NULL), - (598051, '0xd748cb6cef6ed02245a84035c7614b579d5c29f5', 0, 1, '2024-05-06 12:32:02+00', 0, 2, '{"fid": 403159, "object": "user", "pfp_url": "https://i.imgur.com/APhu5uH.jpg", "profile": {"bio": {"text": "Hello, let’s all become rich with coins and travel the world.\n반사 100% 갑니다!!!!", "mentioned_profiles": []}}, "username": "alfen", "power_badge": false, "display_name": "Alfen / F4F", "active_status": "inactive", "verifications": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "follower_count": 2504, "custody_address": "0xa548a7f8235abfd83d32a79a3483c0dcddfc266e", "following_count": 2828, "verified_addresses": {"eth_addresses": ["0x62f543d2035eea186ee5d9dbdceed5d877268c21"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uddJJ\"}"}', 'sonata'), - (452347, '0xfd2f4c783a199a8cfc46c7ed396a5b5e46ff2db9', 0, 1, '2024-05-06 06:47:47+00', 0, 0, '{"fid": 499091, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d892d750-f391-476b-078f-cddc5278b500/rectcrop3", "profile": {"bio": {"text": "일상 & 코인", "mentioned_profiles": []}}, "username": "fuzzypaws", "power_badge": false, "display_name": "Fuzzypaws", "active_status": "inactive", "verifications": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "follower_count": 1240, "custody_address": "0x24b9ca359d7f4f1395e7d7b101e52b3f1784bcbb", "following_count": 1411, "verified_addresses": {"eth_addresses": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4s1oXSn2EMC5AplFtVp0pE?si=d8abb01c19b94bfd\"}"}', NULL), - (405205, '0x0835561268f317f61e607e6926d3990dee0d9fbb', 0, 1, '2024-05-06 05:08:54+00', 0, 5, '{"fid": 380293, "object": "user", "pfp_url": "https://i.imgur.com/ptPCKQR.jpg", "profile": {"bio": {"text": "Phd🔬\nSky runner 👟\nFitness 💪\nNature 🍄", "mentioned_profiles": []}}, "username": "pendar", "power_badge": false, "display_name": "Pendar 🎩", "active_status": "inactive", "verifications": ["0x151f540f1ac3e8060c8c377d37e30797d5b9eea4"], "follower_count": 1124, "custody_address": "0x6227499fdf42784569c0a440b8218126dc35b5d4", "following_count": 2234, "verified_addresses": {"eth_addresses": ["0x151f540f1ac3e8060c8c377d37e30797d5b9eea4"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Modern Talking - Cherry Cherry Lady (Fabio Selection Rmx) by FabioSelection on #SoundCloud https://on.soundcloud.com/FVfxD\"}"}', NULL), - (445335, '0xa3a82c5ad039c339be7c7f86a2c4a8d391a749cf', 0, 1, '2024-05-06 06:39:17+00', 0, 2, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2517, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h3w4J\"}"}', 'sonata'), - (444260, '0x438724d992081d1746dd0671da6d5f26151a9f7b', 0, 1, '2024-05-06 06:37:33+00', 0, 0, '{"fid": 13077, "object": "user", "pfp_url": "https://i.imgur.com/NwgqZfI.jpg", "profile": {"bio": {"text": "Writer | Book lover | Weeb | Walking coordination failure\n| Marketing /subsquid | Enjoyer of /classical music and /postcards", "mentioned_profiles": []}}, "username": "naomiii", "power_badge": true, "display_name": "Naomi ", "active_status": "inactive", "verifications": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "follower_count": 2547, "custody_address": "0x523882b3d8ff12ec24c3a55403ffed32632bfdbc", "following_count": 335, "verified_addresses": {"eth_addresses": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YnUIFoEFQ74ohhY3vnCW7?si=tWuV_CYpTUmP6eSWoU8tyw&context=spotify%3Aalbum%3A4fMFmhc5MROOqdaGjX1Rk8\"}"}', NULL), - (508304, '0xeaa854843f4c6ad2ffc6b29e3fc894949c435c59', 0, 1, '2024-05-06 08:13:48+00', 0, 0, '{"fid": 329134, "object": "user", "pfp_url": "https://i.imgur.com/KxtKnVU.jpg", "profile": {"bio": {"text": "→𝐷𝑜𝑛''𝑡 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝐷𝑟𝑒𝑎𝑚 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝑃𝑙𝑎𝑛 !🌱♠️", "mentioned_profiles": []}}, "username": "artam", "power_badge": false, "display_name": "Artam | 🎩🔵🔄 🎩🍗", "active_status": "inactive", "verifications": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "follower_count": 1254, "custody_address": "0xdc6c93780b9fe172e234fea6ec1713385a13bc97", "following_count": 1020, "verified_addresses": {"eth_addresses": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "sol_addresses": ["GwSpiiX8r44NWnaUGAAoSxjxHWHs78Hjx65MsX4HWDAE"]}}', '{"{\"url\":\"https://soundcloud.com/rihanna/we-found-love?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1052025, '0xb55c470e48bba347c8c4348dd5cb658eeba2099b', 0, 1, '2024-05-07 14:31:06+00', 0, 0, '{"fid": 276047, "object": "user", "pfp_url": "https://arweave.net/5TpqUNyK7HUbVhuf3kr_wcnc-Y15o0lKUIMs7mTAlK8/", "profile": {"bio": {"text": "I love blokchain", "mentioned_profiles": []}}, "username": "jooker", "power_badge": false, "display_name": "Pouria🎩|🔵|🔮", "active_status": "inactive", "verifications": ["0xcbcd3e618612611a2ff7c7f984bd07449f8ba2f9"], "follower_count": 1607, "custody_address": "0xcba2873804bf3a4f3c789947567b27c3fd5f03e7", "following_count": 1355, "verified_addresses": {"eth_addresses": ["0xcbcd3e618612611a2ff7c7f984bd07449f8ba2f9"], "sol_addresses": ["8zZgTdTiee5nL9uNczbdPqpfs6d2mjSJCHTCnbWD6cJq"]}}', '{"{\"url\":\"https://soundcloud.com/fckng-serious/moritz-hofbauer-oneironaut-lauren-mia-remix?si=0c70598d013049928062d9aa531d46d0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (542639, '0x3f120f38860612af6a993440171b1f37d42ac983', 0, 1, '2024-05-06 10:01:46+00', 0, 1, '{"fid": 503282, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ce46349-bbd8-4209-da10-6fd8b93c2700/original", "profile": {"bio": {"text": "Hi, guys. Crypto. Dragon. \nhttps://zora.co/@onefourwon", "mentioned_profiles": []}}, "username": "onefourwon", "power_badge": false, "display_name": "onewon 🎩🍖🔵", "active_status": "inactive", "verifications": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "follower_count": 1092, "custody_address": "0x0993505a45968c500db8d13c32ef0928e2fd67bf", "following_count": 1042, "verified_addresses": {"eth_addresses": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-385819292/nayeon-pop-mix-220710-lyrics?si=adf4e6a20acc4a6d98c840bb0fe38cec&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (599092, '0x70bd3167cfc063821d0930bbc578bebc1f16b1f2', 0, 1, '2024-05-06 12:34:29+00', 0, 7, '{"fid": 503284, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d596ed7e-c85c-4777-1fd4-a3e5e520be00/rectcrop3", "profile": {"bio": {"text": "/healing-archive Photography | film | cat lover ", "mentioned_profiles": []}}, "username": "irohaa", "power_badge": false, "display_name": "irohaa𑁤📸🐱", "active_status": "inactive", "verifications": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "follower_count": 626, "custody_address": "0xcfc2606c3651b7513908e59dcb4538d03093ddb7", "following_count": 807, "verified_addresses": {"eth_addresses": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/27udJcfu06TvbbOpgfxIlw?si=ydgWZ3qXQ3yBeHDXK0BVCg\"}"}', 'sonata'), - (421169, '0x48a4f5912aaef78d0ca77e8a91b3f91ae5160223', 0, 1, '2024-05-06 05:56:58+00', 0, 3, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3410, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2122, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JLLSkJmFoY26PVCB6\"}"}', 'sonata'), - (469512, '0x3887cb63685f565176b4012de64e518687a9cda6', 0, 1, '2024-05-06 07:12:16+00', 0, 2, '{"fid": 501935, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/139ad2dc-7123-4e00-9f52-a2bd4c5b9100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "wooks", "power_badge": false, "display_name": "Wook2", "active_status": "inactive", "verifications": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "follower_count": 432, "custody_address": "0xd31122b0fa655a356ff107934a8e7a0a470fdcc9", "following_count": 556, "verified_addresses": {"eth_addresses": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/timefever/7-feat-small-kidd?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (407013, '0xce2669d0a703220ada8bbf7b164bfb1d809d7fc2', 0, 1, '2024-05-06 05:12:14+00', 0, 2, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Wyia2\"}"}', 'sonata'), - (407018, '0xf267001e274d5649009350b6eb3dd7223c352e69', 0, 1, '2024-05-06 05:11:17+00', 0, 1, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p9Y6k\"}"}', 'sonata'), - (416714, '0xb2c6f21b766da32a5b42694a6264a51174c82da5', 0, 1, '2024-05-06 05:42:46+00', 0, 1, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1656, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1717, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tM4TtKdnyo5ELgAF9\"}"}', 'sonata'), - (412832, '0x0f90774f65dc021e04fe4ddc951c928bba8d5ac0', 0, 1, '2024-05-06 05:30:26+00', 0, 3, '{"fid": 405994, "object": "user", "pfp_url": "https://i.imgur.com/5IliDon.jpg", "profile": {"bio": {"text": "Tôi yêu phở", "mentioned_profiles": []}}, "username": "ongbanpho", "power_badge": false, "display_name": "Ông bán phở", "active_status": "inactive", "verifications": ["0x3d16c42714b8b2e473752816a2c178132e091ac3"], "follower_count": 1199, "custody_address": "0x045787575ab1e41457d32104c510ee332ae3152f", "following_count": 2464, "verified_addresses": {"eth_addresses": ["0x3d16c42714b8b2e473752816a2c178132e091ac3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nhunnhun/mot-hai-ba-bon?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (522740, '0x66077bf244b1bf8ef6d895b2a22b727a0fe2148a', 0, 1, '2024-05-06 09:08:14+00', 0, 1, '{"fid": 438535, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54ebf3de-76a7-4d1f-f537-5fa68f483100/rectcrop3", "profile": {"bio": {"text": "niromand", "mentioned_profiles": []}}, "username": "noyanniromand", "power_badge": false, "display_name": "noyan", "active_status": "inactive", "verifications": ["0x033d7a7490de0be6a71a5d4012f13a2a37d79c7d"], "follower_count": 664, "custody_address": "0xd3b77652855ea9f132619675ee2748c9fae4f1a8", "following_count": 360, "verified_addresses": {"eth_addresses": ["0x033d7a7490de0be6a71a5d4012f13a2a37d79c7d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FHNQn6a7aAqmyVck8\"}"}', 'sonata'), - (561611, '0x163281b3fa1c21783c2a772353c05b6d36dedd68', 0, 1, '2024-05-06 11:02:24+00', 0, 5, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2496, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p3BKTjmESCyLRQvg9\"}"}', 'sonata'), - (446063, '0xe7a174c2ddbfc19679d31ee1f49da8568deb16e3', 0, 1, '2024-05-06 06:40:02+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1134, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1515, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/maitre80/billie-jean-michael-jackson?si=614c17eac9da4baa904e34e221a6a06b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (407014, '0xb861717e88eecad6ef3d7ba9ab5ee4052223e686', 0, 1, '2024-05-06 05:12:03+00', 0, 0, '{"fid": 347212, "object": "user", "pfp_url": "https://i.imgur.com/p1Wg11V.jpg", "profile": {"bio": {"text": "ヤサシナと申します。\nFX 修行中です。\nお金は後から付いてくる\n\n\"Money will come later, so be patient for now.\"\n\n", "mentioned_profiles": []}}, "username": "yassa47-88", "power_badge": false, "display_name": "ヤサシナ🎩🔵", "active_status": "inactive", "verifications": ["0x35b798337d68ed8b86e7872975fe9f2a94cbdac9"], "follower_count": 562, "custody_address": "0x3a74cbebe730aa9974ef5700d136e860a29701a7", "following_count": 737, "verified_addresses": {"eth_addresses": ["0x35b798337d68ed8b86e7872975fe9f2a94cbdac9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JnmD6fFknXqN8BR19\"}"}', 'musicjp'), - (406304, '0x24a175a9a143ff951951f4943f3388904ca306e9', 0, 1, '2024-05-06 05:11:05+00', 0, 13, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 762, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 841, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gqclhyvofheg/sets/s4jkk3qg1bnr\"}"}', 'sonata'), - (508310, '0x5e82d9254afcd63ad391083a41b1537cc0681759', 0, 1, '2024-05-06 08:13:38+00', 0, 0, '{"fid": 291771, "object": "user", "pfp_url": "https://i.imgur.com/2FXOtXT.jpg", "profile": {"bio": {"text": "I''m english teacher and trader", "mentioned_profiles": []}}, "username": "arasfarcaster", "power_badge": false, "display_name": "🎩 yosef🔄Jani 🎩", "active_status": "inactive", "verifications": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "follower_count": 1355, "custody_address": "0x24f89648e2f465b820925d3611e610d92052ea42", "following_count": 1704, "verified_addresses": {"eth_addresses": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "sol_addresses": ["8dBNEjFNeFoJ1SngCUdeC3ygLEiJdHgqHtLzSqzzUL3u"]}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/lovely?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (466031, '0x45adf2a9a09c1b76ef668291f6e177481084d141', 0, 1, '2024-05-06 07:07:13+00', 0, 3, '{"fid": 405451, "object": "user", "pfp_url": "https://i.imgur.com/NgcYN5x.jpg", "profile": {"bio": {"text": "I''m accountant", "mentioned_profiles": []}}, "username": "soltanhadi", "power_badge": false, "display_name": "Kian:D🎩", "active_status": "inactive", "verifications": ["0xf8b33cb564d3a8d83a147282b4ecbf9c1765907f"], "follower_count": 2570, "custody_address": "0x099c78f851d75739c874320e25bbe0d397f0a319", "following_count": 2463, "verified_addresses": {"eth_addresses": ["0xf8b33cb564d3a8d83a147282b4ecbf9c1765907f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/917rackz/917-rackz-x-famous-richard?ref=clipboard&p=i&c=0&si=98D1D107C0984B9BBC79A87B9B64DA57&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (514643, '0xd2abe2f0b278dfc360f2ea825fe47a55ae48b823', 0, 1, '2024-05-06 08:37:45+00', 0, 0, '{"fid": 513515, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dadf0059-2a9f-4aa6-c98e-77491266b600/rectcrop3", "profile": {"bio": {"text": "SEC targets me 🥴", "mentioned_profiles": []}}, "username": "!513515", "power_badge": false, "display_name": "Justin Sun", "active_status": "inactive", "verifications": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "follower_count": 227, "custody_address": "0x649296858ac63a11f7765441099f8a22e0e5a1fa", "following_count": 230, "verified_addresses": {"eth_addresses": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KXhDxoVqQNL47kfy8\"}"}', 'sonata'), - (322, '0x909243a95820922bb4cf3615568283372b0ad741', 1110, 1, '2024-04-30 12:26:41+00', 0, 9, '{"fid": 17076, "object": "user", "pfp_url": "https://i.imgur.com/X69deiM.jpg", "profile": {"bio": {"text": "Crypto lover from kobisere", "mentioned_profiles": []}}, "username": "0100", "power_badge": false, "display_name": "Manijeh🎩🍖🟣🦄", "active_status": "inactive", "verifications": ["0x27767e627098dcc312cb041d1fb7922877243658"], "follower_count": 1024, "custody_address": "0x702ea4e4eb3a5742e71c6739fb7dc2e19278938c", "following_count": 4026, "verified_addresses": {"eth_addresses": ["0x27767e627098dcc312cb041d1fb7922877243658"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/memba/back-online?referral=0x27767e627098dcc312cb041d1fb7922877243658&referral_source=link\"}"}', NULL), - (508681, '0xe32c8f9e845049035ae98585a904b950f1d1e44c', 0, 1, '2024-05-06 08:15:04+00', 0, 3, '{"fid": 501170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79f99602-1ea7-4532-b2e2-8cb67fbb2100/rectcrop3", "profile": {"bio": {"text": "마이_네임_이즈_준키\n#위스키 #맛집마스터 \n\n#디젠 #코인 #크립토 #잼 #crypto #meme #coin #tip #f4f", "mentioned_profiles": []}}, "username": "emsei", "power_badge": false, "display_name": "jun-key", "active_status": "inactive", "verifications": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "follower_count": 1167, "custody_address": "0x611af52170215e3d3dc4fc8443de600aff2ef9e1", "following_count": 1543, "verified_addresses": {"eth_addresses": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/P3t5JYUi7yaE2X2m6\"}"}', NULL), - (407285, '0x0d113daeb752ee12a60df92b40415debc0d568a3', 0, 1, '2024-05-06 05:14:22+00', 0, 0, '{"fid": 488004, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6186e71e-9262-46eb-c312-f05428784d00/rectcrop3", "profile": {"bio": {"text": "슈캐 장착하고 🏃🏃‍♀️🏃‍♂️💨", "mentioned_profiles": []}}, "username": "immyyr", "power_badge": false, "display_name": "Bluev", "active_status": "inactive", "verifications": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "follower_count": 2917, "custody_address": "0x5432cf7d98e934b2cade28db3cffd883f05d54b5", "following_count": 3261, "verified_addresses": {"eth_addresses": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jXh6GKGHms7dhwGF7\"}"}', 'sonata'), - (446071, '0x2760c8a209ba96d254e0716ac537dd90b2c32a52', 0, 1, '2024-05-06 06:40:01+00', 0, 0, '{"fid": 385222, "object": "user", "pfp_url": "https://i.imgur.com/f3fYjax.jpg", "profile": {"bio": {"text": "Love trip n food. Living in /restarea (sweets & snacks) /meteorcity ", "mentioned_profiles": []}}, "username": "ameame.eth", "power_badge": false, "display_name": "ameli.degen", "active_status": "inactive", "verifications": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "follower_count": 751, "custody_address": "0x55f4b3d35eb11612aa4d141ce8c5a62d68f79485", "following_count": 435, "verified_addresses": {"eth_addresses": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qVmU9USE4zbGFTARA\"}"}', NULL), - (407325, '0x1ef18c615981dbbc4a53015a49694329396821bd', 0, 1, '2024-05-06 05:13:08+00', 0, 2, '{"fid": 386737, "object": "user", "pfp_url": "https://i.imgur.com/losuWUf.jpg", "profile": {"bio": {"text": "투카넷 go go", "mentioned_profiles": []}}, "username": "maskhuman", "power_badge": false, "display_name": "leejongho", "active_status": "inactive", "verifications": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "follower_count": 3498, "custody_address": "0xc336275373d890669c7d11813c1e385d7bf46cf6", "following_count": 6281, "verified_addresses": {"eth_addresses": ["0x8c9bdb87aa9f9c29501f1d924506e381f2357d40"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/s6BJC\"}"}', 'sonata'), - (527976, '0xdb54522549b544924c6598969c9e5b3a7a81bee8', 0, 1, '2024-05-06 09:27:59+00', 0, 3, '{"fid": 376559, "object": "user", "pfp_url": "https://arweave.net/UEDPYxNwjpXZkAFFAfcWJm_jmb5-ktYrm3MZIH6lVsY/", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "miladkomijani", "power_badge": false, "display_name": "Milad 👑🎩🔮", "active_status": "inactive", "verifications": ["0x04c8bec8a375e33e9a0f8b0050e7c0eb3f2ab887", "0x8a20f3b25ff91b4e048ec51f30497173c1ef3f56"], "follower_count": 1161, "custody_address": "0x04c8bec8a375e33e9a0f8b0050e7c0eb3f2ab887", "following_count": 1223, "verified_addresses": {"eth_addresses": ["0x04c8bec8a375e33e9a0f8b0050e7c0eb3f2ab887", "0x8a20f3b25ff91b4e048ec51f30497173c1ef3f56"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alisorena/cut?ref=clipboard&p=a&c=0&si=83667478169a4bc097adb1f018c10661&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharin\"}"}', 'sonata'), - (557610, '0x7c8b0c31af14b513d4c26825879b9a3728bf144f', 0, 1, '2024-05-06 10:50:40+00', 0, 0, '{"fid": 477866, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7289a079-b7cd-44c1-a0fd-f6d653722e00/rectcrop3", "profile": {"bio": {"text": "Love degen .\nLove fuzzy fox .🦊\n\n", "mentioned_profiles": []}}, "username": "haoshuai520", "power_badge": false, "display_name": "Haoshuai.⌐◨-◨🎩", "active_status": "inactive", "verifications": ["0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd", "0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd"], "follower_count": 127, "custody_address": "0x4284f1d9052be0f69128b49f15e30920716dec01", "following_count": 394, "verified_addresses": {"eth_addresses": ["0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd", "0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fkj-2/william-de-vaughn-be-thankful\"}"}', NULL), - (466059, '0x83ee9668d8712f6d5cc03d50df3aee3727fab444', 0, 1, '2024-05-06 07:07:03+00', 0, 1, '{"fid": 292154, "object": "user", "pfp_url": "https://i.imgur.com/rtWcOLQ.jpg", "profile": {"bio": {"text": "Crypto info\nFood Travel \nhttps://zora.co/@dannyping", "mentioned_profiles": []}}, "username": "dannykim", "power_badge": false, "display_name": "Danny Ping", "active_status": "inactive", "verifications": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "follower_count": 2123, "custody_address": "0x37e0c88ecc4897422b55ab72ab2d9c9e624b50e4", "following_count": 2242, "verified_addresses": {"eth_addresses": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6v3KW9xbzN5yKLt9YKDYA2?si=4874cfc1ef5043ed\"}"}', 'sonata'), - (402416, '0x2688c8bfdc5b409de0f30696dc8d00bc36f22f73', 0, 1, '2024-05-06 04:58:31+00', 0, 2, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 635, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 326, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/01IZAuQsBO00iLKFO9LsFf\"}"}', 'bgm'), - (526084, '0xa1ca16c95d0eda1b8b802aa5f98853d617ebc6c5', 0, 1, '2024-05-06 09:22:43+00', 0, 0, '{"fid": 468936, "object": "user", "pfp_url": "https://bafybeif2px2775rdbfmkffa455pllhyaryzhjvytix2nzntgb4pybxdn3e.ipfs.nftstorage.link/676.png?ext=png", "profile": {"bio": {"text": "🌟 Exploring the Intersection of Business & Innovation 🌍 / Lover of Marketing and Consumer insights 📈/ Passionate about travel✈️, technology📱and football ⚽", "mentioned_profiles": []}}, "username": "farshaad", "power_badge": false, "display_name": "Farshad", "active_status": "inactive", "verifications": ["0x619649bd2e9f1a8b9a2bf621c86e8e19a4c724fb", "0x619649bd2e9f1a8b9a2bf621c86e8e19a4c724fb"], "follower_count": 316, "custody_address": "0x38882eacafeb9ebdb0fc74963e6624af2da9a8d0", "following_count": 388, "verified_addresses": {"eth_addresses": ["0x619649bd2e9f1a8b9a2bf621c86e8e19a4c724fb", "0x619649bd2e9f1a8b9a2bf621c86e8e19a4c724fb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imaginedragons/eyes-closed?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (407300, '0x776a11f95eefa3daa4e9c8ee712733b207e756c5', 0, 1, '2024-05-06 05:14:21+00', 0, 4, '{"fid": 413804, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeid4egu3uatkl2aqjnnpktstyjiidnjvgy2caz2kutkufcg3t3qedy", "profile": {"bio": {"text": "$degen, $enjoy, $imagine, $higher, $RARE", "mentioned_profiles": []}}, "username": "j2inu", "power_badge": false, "display_name": "Jinwoo", "active_status": "inactive", "verifications": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "follower_count": 1915, "custody_address": "0xab1265d965e7155f47a4c3bca8a91d560631ec8a", "following_count": 2185, "verified_addresses": {"eth_addresses": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/prep/as-it-was?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (408207, '0x4efbcdc1afcf6b713ebe5b2b369afa3ccfb12bab', 0, 1, '2024-05-06 05:16:25+00', 0, 7, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "follower_count": 2124, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2480, "verified_addresses": {"eth_addresses": ["0xd5fe2a42fff595bc2576fcb953614817452d0e05", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BYTCCxQhG2tbJ38T7\"}"}', 'sonata'), - (446634, '0xcb5e3b9267b8310826dc976ee960528ea57ab770', 0, 1, '2024-05-06 06:41:45+00', 0, 6, '{"fid": 381369, "object": "user", "pfp_url": "https://i.imgur.com/HTsXsT4.jpg", "profile": {"bio": {"text": "Foodie !\nBASE LOVER !\nCrazy for Mechanical Engineering and NFT\nMINT NFT https://zora.co/@siks", "mentioned_profiles": []}}, "username": "siks", "power_badge": false, "display_name": "Nick", "active_status": "inactive", "verifications": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "follower_count": 2773, "custody_address": "0x5d501482f5320c139ccbc94ad43b10238508e2b2", "following_count": 2858, "verified_addresses": {"eth_addresses": ["0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YwcT4LurEjYwfBJ57\"}"}', 'sonata'), - (408886, '0x2c907f711d9884a2a806a5756c4f596c648ed9ab', 0, 1, '2024-05-06 05:18:43+00', 0, 5, '{"fid": 448944, "object": "user", "pfp_url": "https://arweave.net/vRw6Z4p2GvDcMQDW9iadHxThmdWTGjYu12gl_4Zm4rY/", "profile": {"bio": {"text": "A coder who loves crypto", "mentioned_profiles": []}}, "username": "mohammadjani", "power_badge": false, "display_name": "mohammadjani", "active_status": "inactive", "verifications": ["0x35acaeb4fb2238fcb24fd348214df589bf57ba85"], "follower_count": 708, "custody_address": "0x2c46f9f762ca957f354508ce1732ae0e349ae0d1", "following_count": 712, "verified_addresses": {"eth_addresses": ["0x35acaeb4fb2238fcb24fd348214df589bf57ba85"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hayedeh-music/sets/40-hayedeh-golden-songs-vol-1?si=4026df07c5484419a820b052743423f3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (522752, '0x2a7eb7f38dc05f2722555e6b0d677878f1f498c5', 0, 1, '2024-05-06 09:08:48+00', 0, 0, '{"fid": 510066, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54eff8e4-0f53-4920-fafa-c2cc610b8a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!510066", "power_badge": false, "display_name": "Saeid", "active_status": "inactive", "verifications": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "follower_count": 188, "custody_address": "0x6fe4b05d6fc7c867484b9f98b1b5d5dff2c27bad", "following_count": 354, "verified_addresses": {"eth_addresses": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Different Dreams by EthnoTek on #SoundCloud https://on.soundcloud.com/pQRZM\"}"}', NULL), - (409202, '0x3d624a691bc03c408814526be2c4b056d7664ea9', 0, 1, '2024-05-06 05:21:26+00', 0, 3, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1612, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1610, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5fSih\"}"}', 'sonata'), - (469557, '0xf0bffb5034b824e6df51137e8808e6779bc124f4', 0, 1, '2024-05-06 07:11:45+00', 0, 2, '{"fid": 445815, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8344947a-01ba-4dd1-549a-6d8118924100/rectcrop3", "profile": {"bio": {"text": "Let''s go ", "mentioned_profiles": []}}, "username": "maryamnoz", "power_badge": false, "display_name": "Mery🎩🍖🐐⚡", "active_status": "inactive", "verifications": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "follower_count": 1611, "custody_address": "0xea3119691b1e6bba73566e1eec3264b53306ec93", "following_count": 900, "verified_addresses": {"eth_addresses": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "sol_addresses": []}}', '{"{\"url\":\"Have a good day buddy 💋 https://on.soundcloud.com/EtLpY\"}"}', NULL), - (446647, '0xea62b40a79870afa9d99d47ac2e881633854696c', 0, 1, '2024-05-06 06:40:46+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1376, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1887, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WmQih8DrHjeJerau7\"}"}', NULL), - (486575, '0x05b0e2e65158fdd119ab63407ecb576e377ba9b8', 0, 1, '2024-05-06 07:34:07+00', 0, 4, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1138, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1518, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hellohonne/someone-that-loves-you?si=759e1f314df240f7a6acbcf6f6e49b65&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (508697, '0x03cc801142a2e149f173c94d331cfa51dbcac5a8', 0, 1, '2024-05-06 08:14:24+00', 0, 1, '{"fid": 514467, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b66b14-2935-4966-0671-a3d8451a8400/rectcrop3", "profile": {"bio": {"text": "I love degen 💕❤️", "mentioned_profiles": []}}, "username": "!514467", "power_badge": false, "display_name": "Sana Javed", "active_status": "inactive", "verifications": ["0x084f106c9c60aec584e49aadc1ab67cd5a181cfb"], "follower_count": 296, "custody_address": "0x084f106c9c60aec584e49aadc1ab67cd5a181cfb", "following_count": 792, "verified_addresses": {"eth_addresses": ["0x084f106c9c60aec584e49aadc1ab67cd5a181cfb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eminemofficial/godzilla-feat-juice-wrld\"}"}', NULL), - (514648, '0xc1316fa765ae8a6680b92c33b7263fe08c964882', 0, 1, '2024-05-06 08:37:41+00', 0, 2, '{"fid": 497740, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a0acfdf-c4e9-4e41-b673-da926c664500/rectcrop3", "profile": {"bio": {"text": "Love music, animals, NFT and Crypto", "mentioned_profiles": []}}, "username": "candy7", "power_badge": false, "display_name": "Candy", "active_status": "inactive", "verifications": ["0x3e0d2a8c7eb98a1c8ff3e2a5b4a6e4c0f5363bd5"], "follower_count": 558, "custody_address": "0x74f6bcd837b3c0cb148b641ae6cddaa9267b5a53", "following_count": 780, "verified_addresses": {"eth_addresses": ["0x3e0d2a8c7eb98a1c8ff3e2a5b4a6e4c0f5363bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qeTA8\"}"}', 'sonata'), - (587761, '0xb27e9bd633b1b83f0cb463b7f524e8d1aca5ba3d', 0, 1, '2024-05-06 12:09:48+00', 0, 6, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 585, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 895, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost23/iu-i-give-you-my-heart-crash-landing-on-you-ost-part-11?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (446675, '0x13fef724fb58f938ef424179ebc019c0989fc97e', 0, 1, '2024-05-06 06:41:28+00', 0, 0, '{"fid": 501220, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36aeee53-0310-43a8-8e51-d754393b3900/rectcrop3", "profile": {"bio": {"text": "일단 난 슈캐 / 무지개 거울을 좋아하는 흑화된 그무언가 / 봇처럼 댓글 달면 답방 안가유🙏 저도 성심성의껏 적을게요 / f4f / momo AI / catizen / nine chronicles / degen / fingerstyle / fork guitar / K-music", "mentioned_profiles": []}}, "username": "cryptochoni", "power_badge": false, "display_name": "crypto CAT", "active_status": "inactive", "verifications": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "follower_count": 1273, "custody_address": "0x926a7eacdc09e92f80875fccb62b9030c452022f", "following_count": 1520, "verified_addresses": {"eth_addresses": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/F4PgBGvqEfNEgghZ7\"}"}', 'sonata'), - (373368, '0xb71e633c904c34eb109a00793ed439fdd9fec820', 0, 1, '2024-05-06 03:41:32+00', 0, 1, '{"fid": 284986, "object": "user", "pfp_url": "https://i.imgur.com/rK536pN.jpg", "profile": {"bio": {"text": "Wanna connect to all of you guys\n\n--\nhttp://app.xpet.tech \nCode: xpet_ea0c8def", "mentioned_profiles": []}}, "username": "dongtahds", "power_badge": false, "display_name": "Hoàng Dược Sư", "active_status": "inactive", "verifications": ["0x0f393b52e339ad658b8f3f266a15bbad136fb21c"], "follower_count": 790, "custody_address": "0xf4f090e103d6047d2ea07252011aca3fff1ecb4b", "following_count": 2491, "verified_addresses": {"eth_addresses": ["0x0f393b52e339ad658b8f3f266a15bbad136fb21c"], "sol_addresses": ["2nsVJ9abeaGw1JSmT2GMDSyyJLKtTB6AGWSajaHnrwFH"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x0f393b52e339ad658b8f3f266a15bbad136fb21c&referral_source=link\"}"}', NULL), - (651471, '0x7f2c0275e7e645461fef187abf50983b788d8d9a', 0, 1, '2024-05-06 14:41:05+00', 0, 0, '{"fid": 287924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b080e06a-c0cb-4838-3567-dbdedc192800/rectcrop3", "profile": {"bio": {"text": "fall in love with warpcast and degen LFG!! ", "mentioned_profiles": []}}, "username": "korineshasha", "power_badge": false, "display_name": "k-shasha🇰🇷", "active_status": "inactive", "verifications": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "follower_count": 2007, "custody_address": "0xdc5ed12b37b07e22727a94b20899d414781a07a9", "following_count": 1464, "verified_addresses": {"eth_addresses": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k5GgQujd715RyjWGA\"}"}', NULL), - (536384, '0x82560e7fbd694e23970c0fcc08bcd46da4153254', 0, 1, '2024-05-06 09:42:49+00', 0, 0, '{"fid": 508790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee96dc6c-aad2-4655-6d89-f148aaee2d00/rectcrop3", "profile": {"bio": {"text": "F4F Please. Travel expert for Asia area (Japan, Taiwan, Hongkong, Macau, Singapore, Indonesia) If you need inf come and ask. Plz follow, Will follow back", "mentioned_profiles": []}}, "username": "!508790", "power_badge": false, "display_name": "AdorableAsia 🌎 🎩 🛩️", "active_status": "inactive", "verifications": ["0x2988ac53f9509350201c55f6009a69f3dfee065b"], "follower_count": 53, "custody_address": "0x98ce744c9e5291994250332d0ee4c8fc67b88b81", "following_count": 207, "verified_addresses": {"eth_addresses": ["0x2988ac53f9509350201c55f6009a69f3dfee065b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o6V15a9DGwik3YaY8\"}"}', 'sonata'), - (628156, '0x12be42b4b2a8efa33eb0fea377818123c4982f0b', 0, 1, '2024-05-06 13:42:55+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2657, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3132, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gVGcuuyKhaWCKjFm7\"}"}', NULL), - (468229, '0x5b430fe349d63c26bed512132f2e6815b533afb8', 0, 1, '2024-05-06 07:09:45+00', 0, 0, '{"fid": 226241, "object": "user", "pfp_url": "https://i.imgur.com/hMkiKKS.jpg", "profile": {"bio": {"text": "loves techno and running", "mentioned_profiles": []}}, "username": "olliej", "power_badge": false, "display_name": "olliej ", "active_status": "inactive", "verifications": ["0x1ce3d7ff0cc17c5c4b543b3b2bf433960aded33d"], "follower_count": 30, "custody_address": "0x4fa0e72a3238492648cc300c3edb4fb8d154ae5d", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x1ce3d7ff0cc17c5c4b543b3b2bf433960aded33d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4ZmFEiFh58BbfCUN0V5FVs?si=KaNDAxFQT42HO8eb7-kaWA\"}"}', NULL), - (618727, '0x82841521b5de55e4359daf3546c0d4530ef3e469', 0, 1, '2024-05-06 13:24:03+00', 0, 0, '{"fid": 427575, "object": "user", "pfp_url": "https://i.imgur.com/ximsQj7.jpg", "profile": {"bio": {"text": "Hello!", "mentioned_profiles": []}}, "username": "aixxx", "power_badge": false, "display_name": "Ai", "active_status": "inactive", "verifications": ["0x1fdfbbe7bbb821d01251d484aa86cb799259cb1d"], "follower_count": 246, "custody_address": "0x0a664e786c6dd349d2dd7c97a32ae9a61b515aeb", "following_count": 330, "verified_addresses": {"eth_addresses": ["0x1fdfbbe7bbb821d01251d484aa86cb799259cb1d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T8FZ8tkAj4F84whx9\"}"}', NULL), - (409200, '0x76ffcc29408aaad159d1b1cfbb6ba23146c98b4d', 0, 1, '2024-05-06 05:21:48+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 784, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1058, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cafemusicbgmofficial/aoyama-cafe-music?in=sc-playlists-jp/sets/lofi-loops&si=53ea496ea9704722a8fc000a937a9bd7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (408963, '0x615ded0387e1aef2b49531160883c9064350c157', 100, 1, '2024-05-06 05:21:01+00', 0, 4, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2648, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3125, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zBvpyxx7XebqMiQVA\"}"}', 'sonata'), - (408964, '0xe5c374f7e187247ed0eeda20afc523f81dc6c520', 0, 1, '2024-05-06 05:21:22+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 784, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1058, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dawnchorussound/changes?in=sc-playlists-jp/sets/lofi-loops&si=39170a4581b9403fb1835fb0c595ca8d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (404365, '0xffacd5c4bc57060cf9144bbee2bb8aef6056504b', 0, 1, '2024-05-06 05:04:17+00', 0, 1, '{"fid": 271891, "object": "user", "pfp_url": "https://i.imgur.com/UPrlw49.jpg", "profile": {"bio": {"text": "I''m Mr Meerkat - Each morning, as the sun comes up, I emerge and begin looking for food.", "mentioned_profiles": []}}, "username": "mrmeerkat", "power_badge": false, "display_name": "Mr Meerkat", "active_status": "inactive", "verifications": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "follower_count": 235, "custody_address": "0x2f5b92d58892bf7f4a93ba30d05bae6d512eb84c", "following_count": 497, "verified_addresses": {"eth_addresses": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "sol_addresses": ["6z85jgsYieCXPbxmhfN2hG9QgtxYhkX26216issd8zcp"]}}', '{"{\"url\":\"https://www.sound.xyz/mrmeerkat.eth/post/38c3b1f0-93f1-4421-9157-2bbc5259224c\"}"}', 'soundxyz'), - (470134, '0x14ac8b85973c146dc4c8b7c70ed7d315e5d21893', 0, 1, '2024-05-06 07:13:13+00', 0, 0, '{"fid": 385239, "object": "user", "pfp_url": "https://i.imgur.com/9VrE0r9.jpg", "profile": {"bio": {"text": "lfg", "mentioned_profiles": []}}, "username": "pgdosu", "power_badge": false, "display_name": "pg🔄🎩🔵🔮 🦕", "active_status": "inactive", "verifications": ["0x658f32c5387be127e4281590f49c2a924176fb87", "0x658f32c5387be127e4281590f49c2a924176fb87"], "follower_count": 504, "custody_address": "0x772c7c0c4fed76929fdecc8cd5d61aebe0bfad2f", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x658f32c5387be127e4281590f49c2a924176fb87", "0x658f32c5387be127e4281590f49c2a924176fb87"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9Eda9\"}"}', NULL), - (446799, '0x58c97af321698a3cf8460ddb9d25454b56d6cb9c', 0, 1, '2024-05-06 06:42:03+00', 0, 1, '{"fid": 265189, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8f0dc72-ccba-4098-f8c0-fcf3b7f25d00/rectcrop3", "profile": {"bio": {"text": "Photographer and Artist | Nft Creator 🥂💋", "mentioned_profiles": []}}, "username": "cococops.eth", "power_badge": false, "display_name": "Jessica 🌈 🎩 ✪", "active_status": "inactive", "verifications": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "follower_count": 2093, "custody_address": "0xb0f365dcb4adc0ea5d3d3820712d8d882330f13b", "following_count": 1952, "verified_addresses": {"eth_addresses": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7CyPwkp0oE8Ro9Dd5CUDjW?si=uS35sLWsT_irc3jZIIFAFw\"}"}', NULL), - (486553, '0xa62583f0764671ca24ab10c0fd8193076dff6521', 0, 1, '2024-05-06 07:34:44+00', 0, 1, '{"fid": 503284, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d596ed7e-c85c-4777-1fd4-a3e5e520be00/rectcrop3", "profile": {"bio": {"text": "/healing-archive Photography | film | cat lover ", "mentioned_profiles": []}}, "username": "irohaa", "power_badge": false, "display_name": "irohaa𑁤📸🐱", "active_status": "inactive", "verifications": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "follower_count": 613, "custody_address": "0xcfc2606c3651b7513908e59dcb4538d03093ddb7", "following_count": 773, "verified_addresses": {"eth_addresses": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7eED5ZjvphcEaQjxkzsvBP?si=d4LiVI8VSuS7dBngHFOoGQ\"}"}', 'sonata'), - (412397, '0x0c3870285ca3be9489ccc72ea33a8c20e64ba902', 0, 1, '2024-05-06 05:28:41+00', 0, 3, '{"fid": 501244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2857cc22-5da5-45a9-b4b3-83c34cf8d700/rectcrop3", "profile": {"bio": {"text": "Hello everyone!\nLet‘s follow and enjoy together!!\n✅Reaction 💯 \n", "mentioned_profiles": []}}, "username": "danial-jung", "power_badge": false, "display_name": "💎Ian💎", "active_status": "inactive", "verifications": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "follower_count": 1697, "custody_address": "0xd31e5b74c59a915530a8408c23304dbb06d033d9", "following_count": 2489, "verified_addresses": {"eth_addresses": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/m79w4FZsz2LWtGf97\"}"}', NULL), - (416136, '0x941a20c2705340fd8dd86518779e1c648dbd661d', 0, 1, '2024-05-06 05:38:14+00', 0, 3, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1657, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1715, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pipaMQZ7f8NuYCAP8\"}"}', 'sonata'), - (417194, '0x3814781f5bc060f84f0c69f6e06176d2e3a2e931', 0, 1, '2024-05-06 05:44:20+00', 0, 6, '{"fid": 400377, "object": "user", "pfp_url": "https://i.imgur.com/EkxQ6n2.jpg", "profile": {"bio": {"text": "I love Socola", "mentioned_profiles": []}}, "username": "socola", "power_badge": false, "display_name": "Socola", "active_status": "inactive", "verifications": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "follower_count": 1754, "custody_address": "0x5bcb1b7f6b604f60fb82b055ac587547bb50bd6a", "following_count": 3041, "verified_addresses": {"eth_addresses": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oQPFWJz7ehejA7mRA\"}"}', 'sonata'), - (447691, '0xbde0b619fe69fe984236bd2bcd7fe194be5852fa', 0, 1, '2024-05-06 06:42:37+00', 0, 1, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1376, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1887, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WmQih8DrHjeJerau7\"}"}', 'sonata'), - (447705, '0x38153368a4fed3ec2a8a1471c8e61dc4008df3af', 0, 1, '2024-05-06 06:42:21+00', 0, 0, '{"fid": 459252, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbPVzQRUDbcyETMCvt4vt6QN3GZwnRGoEKyTyHTzyJ85p?filename=..-5-12-screenshot.png", "profile": {"bio": {"text": "My Life is Gold", "mentioned_profiles": []}}, "username": "nomong", "power_badge": false, "display_name": "Nomong2", "active_status": "inactive", "verifications": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "follower_count": 1359, "custody_address": "0xc50f4e6e0cd1d5076d64e68662e9798f9fbab778", "following_count": 1853, "verified_addresses": {"eth_addresses": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ibrahim-alsalih/j-s-bach-sonata-for-violin-solo-no-1-in-g-minor-bwv-1001-hilary-hahn?si=8c2f9370ff53465290c3c720b40ed726&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (409201, '0x18c18192d7b52f3462928e29609549ad982c67f5', 0, 1, '2024-05-06 05:22:17+00', 0, 0, '{"fid": 272772, "object": "user", "pfp_url": "https://i.imgur.com/Pw5Rl2p.jpg", "profile": {"bio": {"text": "light in the eyes and love in the heart forever ", "mentioned_profiles": []}}, "username": "ron2006", "power_badge": false, "display_name": "Ron2006🔮🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "follower_count": 784, "custody_address": "0x7525261f10322750092e851047d9dafda41403d6", "following_count": 1058, "verified_addresses": {"eth_addresses": ["0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/soaverecords/aiden-summer-vibes-life?in=sc-playlists-jp/sets/confident-pop&si=b2dd466047a2401ab0ebd8e74f5204e8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (470137, '0x2c328c51ac091b772ddc57921dbed38cfbf43597', 0, 1, '2024-05-06 07:13:21+00', 0, 0, '{"fid": 214841, "object": "user", "pfp_url": "https://i.imgur.com/4vS5SkI.jpg", "profile": {"bio": {"text": "Sapiens qui prospicit - Wannabe Polymath. Interested in art, music, history, philosophy and religion.", "mentioned_profiles": []}}, "username": "maurice", "power_badge": true, "display_name": "Maurice", "active_status": "inactive", "verifications": ["0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f"], "follower_count": 724, "custody_address": "0xbf0de1ac8bf65b2e7273f355a3e31df41eed1147", "following_count": 216, "verified_addresses": {"eth_addresses": ["0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4wPU1i9XmAFixhrLeO5AVw?si=SvBxlnSGQ9O9L8VKWRsCAg&context=spotify%3Aalbum%3A2BA8KYF8Dm4TzpeV7B3iVa\"}"}', NULL), - (447699, '0xcb4c071ba9bc07dc49bc1ac76a2ea0e6eab84d19', 0, 1, '2024-05-06 06:42:17+00', 0, 4, '{"fid": 295814, "object": "user", "pfp_url": "https://arweave.net/UmJditu08ngvBaLpgFb3L8DXgu8F__6XPVRABhAnPVw/", "profile": {"bio": {"text": "Crypto trader", "mentioned_profiles": []}}, "username": "sphr", "power_badge": false, "display_name": "Sepehr 🎩", "active_status": "inactive", "verifications": ["0x49a176d46c6b87292008ab9eb6f033e791552b73"], "follower_count": 2296, "custody_address": "0x0892b3411254a581531d5ce2196ad1bf33fe7182", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x49a176d46c6b87292008ab9eb6f033e791552b73"], "sol_addresses": ["9NpxxSghjwoKHN8RwpdKtSQpWwTNhr7hPA8idrUWRx9b"]}}', '{"{\"url\":\"https://on.soundcloud.com/L2TNkDBRgxvcLnpU6\"}"}', NULL), - (413667, '0x8f1734db26ebfb745c19750b140614676bb04c71', 0, 1, '2024-05-06 05:31:00+00', 0, 0, '{"fid": 411137, "object": "user", "pfp_url": "https://i.imgur.com/CyVDXtw.jpg", "profile": {"bio": {"text": "Hello, I''m Ahmad and I used to be a basketball player, I''d like to share my happiest time in here with you.", "mentioned_profiles": []}}, "username": "ahmadbary96", "power_badge": false, "display_name": "Ahmad Reza 🍖", "active_status": "inactive", "verifications": ["0x3f819ad2846073a6e60d03ae8cedc1ee132a3717"], "follower_count": 1503, "custody_address": "0x3f819ad2846073a6e60d03ae8cedc1ee132a3717", "following_count": 2698, "verified_addresses": {"eth_addresses": ["0x3f819ad2846073a6e60d03ae8cedc1ee132a3717"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mojopen/jeff-buckley-hallelujah?ref=clipboard&p=i&c=0&si=F942B8D929404699BE2BC87F43E50673&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (413688, '0x9f176797474354df570069d7a5d88d8186c05e3c', 0, 1, '2024-05-06 05:31:17+00', 0, 7, '{"fid": 385262, "object": "user", "pfp_url": "https://i.imgur.com/Ah9MW7u.jpg", "profile": {"bio": {"text": "/paidgroup-jp 管理人/ DEG鯖民 / OGTOCDNFT Holder / Japanese crypto degen /\nhttps://x.com/rayneko6\n\n", "mentioned_profiles": []}}, "username": "rayneko", "power_badge": false, "display_name": "Ray 🍖🎩", "active_status": "inactive", "verifications": ["0xefb823e3b4481f3c5526370c7d9e009040c0028a"], "follower_count": 902, "custody_address": "0xb4598402b40a16134f5245baf95a2a56bac3c45a", "following_count": 1038, "verified_addresses": {"eth_addresses": ["0xefb823e3b4481f3c5526370c7d9e009040c0028a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-125056049/i-aint-worried-onerepublic-1-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (409204, '0xc97aa480d15bc8b113ef7d3a486a61183cdc56c5', 0, 1, '2024-05-06 05:22:23+00', 0, 1, '{"fid": 508995, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/30af00c0-8ec5-4be3-357a-e83fcea45700/rectcrop3", "profile": {"bio": {"text": "together for each other💜\nFOLLOW=FOLLOW 💯\nSUPPORT=SUPPORT 🔥", "mentioned_profiles": []}}, "username": "!508995", "power_badge": false, "display_name": "MARSHAL", "active_status": "inactive", "verifications": ["0x3fbd4831f938ade69cfec5305dd5a3f115c60525", "0x3fbd4831f938ade69cfec5305dd5a3f115c60525"], "follower_count": 154, "custody_address": "0x18d2ecb3db3cff2b34c83350c09d86974a7e0452", "following_count": 314, "verified_addresses": {"eth_addresses": ["0x3fbd4831f938ade69cfec5305dd5a3f115c60525", "0x3fbd4831f938ade69cfec5305dd5a3f115c60525"], "sol_addresses": ["6T99ACtXqkGUSTcdN1T39Zq7MP3DM1KXTbPTq2qtscf2", "6T99ACtXqkGUSTcdN1T39Zq7MP3DM1KXTbPTq2qtscf2"]}}', '{"{\"url\":\"Listen to Remix Sorena&Topac by Hacker Pro on #SoundCloud https://on.soundcloud.com/L5VHQ\"}"}', NULL), - (470154, '0xfed98ff7ad2548c585988c1fe8fab1f4ff9a72f6', 0, 1, '2024-05-06 07:13:05+00', 0, 4, '{"fid": 417275, "object": "user", "pfp_url": "https://i.imgur.com/S7A5ePA.jpg", "profile": {"bio": {"text": "Every struggle in your life has shaped you into the person . You are today . Be thankful for the hard times , they have made you STRONGER", "mentioned_profiles": []}}, "username": "parytaky", "power_badge": false, "display_name": "Parisa.✈️", "active_status": "inactive", "verifications": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "follower_count": 585, "custody_address": "0x7ce17fd885235346e55fedf7d819095f1240819e", "following_count": 510, "verified_addresses": {"eth_addresses": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t6AF3\"}"}', 'sonata'), - (447713, '0x0c6184d981dce5225a3f49e0c3717f8794f27c4b', 0, 1, '2024-05-06 06:42:45+00', 0, 3, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2517, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZsYuQ\"}"}', 'sonata'), - (515781, '0xb0e519bf0ce1268d3e76ab99d33d92e5ff296038', 0, 1, '2024-05-06 08:42:55+00', 0, 0, '{"fid": 501169, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a5e704c-06c8-48ca-ec18-588c83ac3700/rectcrop3", "profile": {"bio": {"text": "Top Amateur", "mentioned_profiles": []}}, "username": "haejing", "power_badge": false, "display_name": "haejing🎩🍖", "active_status": "inactive", "verifications": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "follower_count": 1222, "custody_address": "0x68ea6421d2795e06f41e54fe856b8ab596127379", "following_count": 610, "verified_addresses": {"eth_addresses": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/E4JbovqDGvKM2FRT9\"}"}', NULL), - (365573, '0xb9fb922cdee39838bcc3d55a06ef9e3d32f02fd8', 0, 1, '2024-05-06 02:56:56+00', 0, 3, '{"fid": 238825, "object": "user", "pfp_url": "https://i.imgur.com/YGKPr4q.jpg", "profile": {"bio": {"text": "🏦Airdrop Daily channel👇\nhttps://t.me/DailyAirdrop93\nGroup: https://t.me/+yRl0lo2W_ekxMGM1\n\nFid: 238825", "mentioned_profiles": []}}, "username": "driphause", "power_badge": false, "display_name": "AD⛓️🎩🔵🍖", "active_status": "inactive", "verifications": ["0x3540d804e6124757a49b805e944b48d14cb78b74"], "follower_count": 1080, "custody_address": "0x0be71c310776ddec10421d25d93ffaaaa42fad72", "following_count": 1515, "verified_addresses": {"eth_addresses": ["0x3540d804e6124757a49b805e944b48d14cb78b74"], "sol_addresses": ["HwQrks5kNtxqGg9ibjNaNRaUAzK92cFjCPLBFzEGaGu8"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x3540d804e6124757a49b805e944b48d14cb78b74&referral_source=link\"}"}', NULL), - (523569, '0x9fbed3b6288d42e85a359a8c36b313bddd260ac8', 0, 1, '2024-05-06 09:13:48+00', 0, 7, '{"fid": 354550, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43b647ef-7ed3-4b51-8504-82c569484000/original", "profile": {"bio": {"text": "japanese illustrator NFT creater\nX:https://x.com/usokotyan\n🍋lemoned jankies official site:\nhttps://ainousoko.com/lemonedjankies\n🎨 https://zora.co/@ainousoko", "mentioned_profiles": []}}, "username": "maytyan", "power_badge": false, "display_name": "ainousoko", "active_status": "inactive", "verifications": ["0x82091104e783a476f2a0ef8eeab61dc83cb8cd70"], "follower_count": 1251, "custody_address": "0xfcc806dcb43267993c3ed790f80f2e2db5705ee7", "following_count": 1108, "verified_addresses": {"eth_addresses": ["0x82091104e783a476f2a0ef8eeab61dc83cb8cd70"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5tnozobUQsaKbsJ5A\"}"}', 'sonata'), - (414405, '0xcfc1298573e68752ed49f4236e02a3351c427069', 0, 1, '2024-05-06 05:32:11+00', 0, 0, '{"fid": 511070, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ea21f864-6f38-4e66-85da-e4b4f8c82200/original", "profile": {"bio": {"text": "CEO of startup", "mentioned_profiles": []}}, "username": "!511070", "power_badge": false, "display_name": "asagiman", "active_status": "inactive", "verifications": ["0x154d0e2c3cf36f1fa9ab698c347f5793fd488114"], "follower_count": 5, "custody_address": "0x998a02ec60dbcf04949962890506c3ffe9f863a3", "following_count": 73, "verified_addresses": {"eth_addresses": ["0x154d0e2c3cf36f1fa9ab698c347f5793fd488114"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/6fejl8cbxvcp/remix-5?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1082043, '0xa1535fa0643184a1b525abeb9e65af131addda2e', 0, 1, '2024-05-07 15:36:25+00', 0, 0, '{"fid": 505013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2e86efb-37df-47aa-731a-f8625bff3c00/rectcrop3", "profile": {"bio": {"text": "I like degen 워캐 2회차", "mentioned_profiles": []}}, "username": "windtalkers", "power_badge": false, "display_name": "Windtalkers", "active_status": "inactive", "verifications": ["0x46e6f27fe7fe5bec6cbfaec747d499935c06a9b3"], "follower_count": 798, "custody_address": "0x15dd88b3930042ecfa87f7e3dbb39859d3fc1412", "following_count": 1051, "verified_addresses": {"eth_addresses": ["0x46e6f27fe7fe5bec6cbfaec747d499935c06a9b3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DKtez\"}"}', 'sonata'), - (413691, '0x3ab4ed208652ee9886cc2426a222e4444e7ff411', 0, 1, '2024-05-06 05:31:06+00', 0, 0, '{"fid": 350598, "object": "user", "pfp_url": "https://i.imgur.com/Cj4MrAk.png", "profile": {"bio": {"text": "hello world!!\nlove crypto music food art", "mentioned_profiles": []}}, "username": "thor909", "power_badge": false, "display_name": "thor999 🎩👻", "active_status": "inactive", "verifications": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "follower_count": 1016, "custody_address": "0x6b0364809b88d4a8d57db0034882807aabd85171", "following_count": 1000, "verified_addresses": {"eth_addresses": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "sol_addresses": ["GkCYMc1FHJPKvN8cLQXywSUYUVsSXEQvexDs8SwT7jyV"]}}', '{"{\"url\":\"https://on.soundcloud.com/YRS4LiYPFthVHNkk7\"}"}', NULL), - (515374, '0x4350a980c90bb66a18d505fce88245410fa077f7', 0, 1, '2024-05-06 08:41:08+00', 0, 7, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2198, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2542, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NQ4Tx\"}"}', 'sonata'), - (414909, '0xd3db791514f2aad2598d340e9c4568240c6e413d', 0, 1, '2024-05-06 05:33:07+00', 0, 4, '{"fid": 472997, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ2i1YDjqg6f16wUJgNpqTqrtNQyUa18wMNC6B6uXNGmD?filename=KakaoTalk_20240419_025514877.png", "profile": {"bio": {"text": "It''s a place where I share my daily life I want to be close with you.Come and see me often Have a nice day!", "mentioned_profiles": []}}, "username": "jinkyo", "power_badge": false, "display_name": " Jaykay", "active_status": "inactive", "verifications": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "follower_count": 2998, "custody_address": "0x9359eee17224661c3bc0df15f8f3367ed0f1884c", "following_count": 2967, "verified_addresses": {"eth_addresses": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kanokwan-lanyot/iu-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (447708, '0x2b800dc6a069d8a853846bb170d7e84c3cd26cf2', 0, 1, '2024-05-06 06:42:02+00', 0, 3, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3545, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2006, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/hYZM7tDF5rw67m9V8\"}"}', 'sonata'), - (416544, '0x4feb96745826fc2863d54aa4324840ef29465741', 0, 1, '2024-05-06 05:41:54+00', 0, 0, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3141, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2969, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n1Kq5\"}"}', 'sonata'), - (516809, '0x765138330f52c29b3ae2f68e58eb744607f669ee', 0, 1, '2024-05-06 08:43:36+00', 0, 6, '{"fid": 380784, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a805aaa2-e72c-4b2c-a553-f9df5e72fc00/rectcrop3", "profile": {"bio": {"text": "대단히 반갑습니다.\n상당히 고맙습니다.", "mentioned_profiles": []}}, "username": "under-standing", "power_badge": false, "display_name": "Diya", "active_status": "inactive", "verifications": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "follower_count": 4345, "custody_address": "0x31ae1e98c325a05696c91a31f9931293f1d0d224", "following_count": 3393, "verified_addresses": {"eth_addresses": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/f1NpGVFCjcAZLXLK8\"}"}', 'sonata'), - (404580, '0x81236ef28da01990c97798dd22fc48ac80132cc8', 110, 1, '2024-05-06 05:04:52+00', 0, 5, '{"fid": 4877, "object": "user", "pfp_url": "https://i.seadn.io/gae/94XYn3n8kzy8GOg8jxmPETB-zTB6XMwTwUiotFD4yeUUKZQAMtstBkhHTFbInYyqHvcVnznOcz3xpHaQbfzc1_XzbhaTHaCqFFO1bg?w=500&auto=format", "profile": {"bio": {"text": "She/her nft_ish.twitter\nTalking *@! In /extracurriculars reminiscing in /gen-x and curating in /trish", "mentioned_profiles": []}}, "username": "trish", "power_badge": true, "display_name": "Trish🫧✈️🎩", "active_status": "inactive", "verifications": ["0x5f8b9b4541ecef965424f1db923806aad626add2"], "follower_count": 2950, "custody_address": "0xdd17dd5659db1524115bcd7e7717a212639675b4", "following_count": 1099, "verified_addresses": {"eth_addresses": ["0x5f8b9b4541ecef965424f1db923806aad626add2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/glassface/whatever?referral=0x5f8b9b4541ecef965424f1db923806aad626add2\"}"}', 'trish'), - (416554, '0xa6797a621db8ce3a99f98ea1e96ef8f79d20db7e', 0, 1, '2024-05-06 05:41:38+00', 0, 2, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1761, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 893, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hjTSXw8BNMx9sUL5A\"}"}', 'sonata'), - (413695, '0x1e5c99fc7bec091f06415df2c22e59a1e1f07e0b', 0, 1, '2024-05-06 05:30:43+00', 0, 2, '{"fid": 503150, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f0f973c-8cd9-4d59-700f-b1271961aa00/rectcrop3", "profile": {"bio": {"text": "I like traveling and music.", "mentioned_profiles": []}}, "username": "athenablessing", "power_badge": false, "display_name": "BOBBY", "active_status": "inactive", "verifications": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "follower_count": 338, "custody_address": "0xe57547012f3c9ab59e3ed21cf30f5a0cd6afe3f5", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6dc24dca-e72c-4c19-7b17-9eed76e14500/original\"}","{\"url\":\"https://soundcloud.com/necmusic/sets/rachmaninov-symphony-no-2-in-e\"}"}', 'sonata'), - (523293, '0xc514dd9a5066125f9fadaa633cfb33ce3223bf43', 0, 1, '2024-05-06 09:11:10+00', 0, 1, '{"fid": 405729, "object": "user", "pfp_url": "https://va2wd5vwvtfwbkxrz4myzxvo3nghxjnchtpgxxk4vzi4w4riu4xa.arweave.net/qDVh9rasy2Cq8c8ZjN6u20x7paI83mvdXK5Ry3Iopy4/", "profile": {"bio": {"text": "🐸\nWe are a variable of unknown circumstances!", "mentioned_profiles": []}}, "username": "hamid-siemens", "power_badge": false, "display_name": "HaMiD", "active_status": "inactive", "verifications": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "follower_count": 2418, "custody_address": "0xe56ce66286aad851e8ac03046e3b91241419e103", "following_count": 2613, "verified_addresses": {"eth_addresses": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Happiness is a butterfly by FranciscoScandurva on #SoundCloud https://on.soundcloud.com/t4cWv\"}"}', NULL), - (447717, '0x5cd660510a627885cb93b69a4b79c885be7db54e', 0, 1, '2024-05-06 06:42:53+00', 0, 1, '{"fid": 501931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6eea1270-1cc8-457a-c547-fa04d19a4900/rectcrop3", "profile": {"bio": {"text": "Hi :)", "mentioned_profiles": []}}, "username": "eeaa", "power_badge": false, "display_name": "eeaa", "active_status": "inactive", "verifications": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "follower_count": 588, "custody_address": "0xd525a5cfdee1efeaf43f7f19594c20f7f22d4bdf", "following_count": 491, "verified_addresses": {"eth_addresses": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dosiidosii/lovememore?si=d361a06b5e80439fa3fdab69fce4a68a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (415650, '0x9fba04fd6625bf0e51b06d3d40bad65f1aaa8fc5', 0, 1, '2024-05-06 05:35:48+00', 0, 1, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1133, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1514, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/slom-469876994/im-in-love?si=c28155184ee4497b8927d908d59f04a7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (509458, '0x5d65798b56bee8c8d4b0da13307bf94acd52caed', 0, 1, '2024-05-06 08:16:04+00', 0, 0, '{"fid": 329134, "object": "user", "pfp_url": "https://i.imgur.com/KxtKnVU.jpg", "profile": {"bio": {"text": "→𝐷𝑜𝑛''𝑡 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝐷𝑟𝑒𝑎𝑚 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝑃𝑙𝑎𝑛 !🌱♠️", "mentioned_profiles": []}}, "username": "artam", "power_badge": false, "display_name": "Artam | 🎩🔵🔄 🎩🍗", "active_status": "inactive", "verifications": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "follower_count": 1254, "custody_address": "0xdc6c93780b9fe172e234fea6ec1713385a13bc97", "following_count": 1020, "verified_addresses": {"eth_addresses": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "sol_addresses": ["GwSpiiX8r44NWnaUGAAoSxjxHWHs78Hjx65MsX4HWDAE"]}}', '{"{\"url\":\"https://soundcloud.com/rihanna/we-found-love?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (416139, '0x6582eb05cd4346c0519e1bf4e21a7833da2fc126', 0, 1, '2024-05-06 05:37:00+00', 0, 0, '{"fid": 254339, "object": "user", "pfp_url": "https://i.imgur.com/PRerC7u.jpg", "profile": {"bio": {"text": "お削りと麻雀が好きなアカウントです❗️\n初心者ですが宜しくお願いします🙏\nXもやってます‼️\nhttps://x.com/shun__xyz", "mentioned_profiles": []}}, "username": "shunchan", "power_badge": false, "display_name": "Shunchan🎩🥏🍖🔵", "active_status": "inactive", "verifications": ["0xa85bd2bff15565b9653fdba9aedf355d5352da13"], "follower_count": 612, "custody_address": "0xbd448d0dfab7e79cb9f7c109aa3d5f4c182b949d", "following_count": 410, "verified_addresses": {"eth_addresses": ["0xa85bd2bff15565b9653fdba9aedf355d5352da13"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eVxDkZCbohUiyUa56\"}"}', NULL), - (471430, '0x62107c7f80e3f13760157f58d694f54999265a10', 0, 1, '2024-05-06 07:13:36+00', 0, 0, '{"fid": 297840, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9eeabd72-b682-4034-3e8e-a48da5530a00/rectcrop3", "profile": {"bio": {"text": "artist, memecoin trader. creatooor, BuilderDAO community resident", "mentioned_profiles": []}}, "username": "monkeyeth", "power_badge": false, "display_name": "monkey.eth 🎩🔵", "active_status": "inactive", "verifications": ["0x518b053f612d2d87a23762cff6160163367924f9"], "follower_count": 448, "custody_address": "0x518b053f612d2d87a23762cff6160163367924f9", "following_count": 1344, "verified_addresses": {"eth_addresses": ["0x518b053f612d2d87a23762cff6160163367924f9"], "sol_addresses": ["JBrdTBxcC6qwjw1LdQoP7B71qASxAc7hsEYXq8divrYy"]}}', '{"{\"url\":\"https://m.soundcloud.com/trending-music-id/sets/house\"}"}', NULL), - (566038, '0x0848ebfcba0b2edfc37721fc43bafa022a72cb7c', 0, 1, '2024-05-06 11:18:08+00', 0, 21, '{"fid": 488004, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6186e71e-9262-46eb-c312-f05428784d00/rectcrop3", "profile": {"bio": {"text": "슈캐 장착하고 🏃🏃‍♀️🏃‍♂️💨", "mentioned_profiles": []}}, "username": "immyyr", "power_badge": false, "display_name": "Bluev", "active_status": "inactive", "verifications": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "follower_count": 2929, "custody_address": "0x5432cf7d98e934b2cade28db3cffd883f05d54b5", "following_count": 3290, "verified_addresses": {"eth_addresses": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wpeQJd6BKgdPejiH9\"}"}', 'sonata'), - (556427, '0x2f2cb0fcb0d4e91f4ea0cb5eb6e64c91fc123158', 0, 1, '2024-05-06 10:45:34+00', 0, 6, '{"fid": 404349, "object": "user", "pfp_url": "https://i.imgur.com/mhpVtL0.jpg", "profile": {"bio": {"text": "여기 같이 하시는 분들 모두 행복하고 좋은 일만 가득 하길 바랄게요 우리 부자 됩시다\n", "mentioned_profiles": []}}, "username": "jjjang", "power_badge": false, "display_name": "wassup82", "active_status": "inactive", "verifications": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "follower_count": 3313, "custody_address": "0x8a5f460242c275826faa332f3bb0b8e07fb14d45", "following_count": 2629, "verified_addresses": {"eth_addresses": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mDrRL4zGt2dSfEPVA\"}"}', 'sonata'), - (416556, '0x1bbeef2eca14d0bcea34db0583d1a5ddcd1e6702', 0, 1, '2024-05-06 05:41:50+00', 0, 1, '{"fid": 350598, "object": "user", "pfp_url": "https://i.imgur.com/Cj4MrAk.png", "profile": {"bio": {"text": "hello world!!\nlove crypto music food art", "mentioned_profiles": []}}, "username": "thor909", "power_badge": false, "display_name": "thor999 🎩👻", "active_status": "inactive", "verifications": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "follower_count": 1016, "custody_address": "0x6b0364809b88d4a8d57db0034882807aabd85171", "following_count": 1000, "verified_addresses": {"eth_addresses": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "sol_addresses": ["GkCYMc1FHJPKvN8cLQXywSUYUVsSXEQvexDs8SwT7jyV"]}}', '{"{\"url\":\"https://on.soundcloud.com/dQ1bXrdWk8sm1rCf9\"}"}', 'musicjp'), - (416713, '0x1e8eaa06ff72db3a2e6d2c15ea1d89b30cf8e570', 0, 1, '2024-05-06 05:42:56+00', 0, 0, '{"fid": 397485, "object": "user", "pfp_url": "https://i.imgur.com/fUgiVUG.jpg", "profile": {"bio": {"text": "Blockchain Crypto Gamer\nmy NFT COLLECTION \nhttps://zora.co/@shahnam", "mentioned_profiles": []}}, "username": "shahnam", "power_badge": false, "display_name": "Shahnam 🍖 🎩", "active_status": "inactive", "verifications": ["0xef9a6dc967ed5b7fad0462889ce9a1507927db00", "0xe7ddfa4fcc5260f89029c9309967025e1f5a7db3"], "follower_count": 353, "custody_address": "0xdb389982b5a5d5e0a00651b2ac44c01c9dcbc3c9", "following_count": 441, "verified_addresses": {"eth_addresses": ["0xef9a6dc967ed5b7fad0462889ce9a1507927db00", "0xe7ddfa4fcc5260f89029c9309967025e1f5a7db3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/allyourneeds-3/sets/music-bi-kalam?si=7f251263b2b349d58152fea94f56027a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (471439, '0xadb9ff3cf9414c445b303a1b8acd9b6a633b3323', 0, 1, '2024-05-06 07:14:38+00', 0, 1, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 766, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wAQkfgerFiuW8KKb8\"}"}', NULL), - (541550, '0x7d7ea70592134ef04695c59cbbef504a9435236d', 0, 1, '2024-05-06 09:56:32+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1167, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 973, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hroCFdW6zjGcRh9L8\"}"}', 'sonata'), - (509459, '0xea6cb4f66b554737e8541968a83e1772e4f0641a', 0, 1, '2024-05-06 08:15:29+00', 0, 2, '{"fid": 501170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79f99602-1ea7-4532-b2e2-8cb67fbb2100/rectcrop3", "profile": {"bio": {"text": "마이_네임_이즈_준키\n#위스키 #맛집마스터 \n\n#디젠 #코인 #크립토 #잼 #crypto #meme #coin #tip #f4f", "mentioned_profiles": []}}, "username": "emsei", "power_badge": false, "display_name": "jun-key", "active_status": "inactive", "verifications": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "follower_count": 1167, "custody_address": "0x611af52170215e3d3dc4fc8443de600aff2ef9e1", "following_count": 1543, "verified_addresses": {"eth_addresses": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/P3t5JYUi7yaE2X2m6\"}"}', NULL), - (535225, '0xb5959653c57e83a19047a8d3f0577cfb0f68565e', 0, 1, '2024-05-06 09:40:15+00', 0, 7, '{"fid": 447737, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fcf5d6f-1a50-4949-29bd-42321380a000/rectcrop3", "profile": {"bio": {"text": "레트로 회사원", "mentioned_profiles": []}}, "username": "hiddensinger", "power_badge": false, "display_name": "🟣홍사원🟣", "active_status": "inactive", "verifications": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "follower_count": 2709, "custody_address": "0x5df0fad42f00014b8cdd448e352e39f0a65b471a", "following_count": 3113, "verified_addresses": {"eth_addresses": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9PX67NCWjkEWGhJN8\"}"}', NULL), - (562478, '0x87bdd2cb7b9ebeac5b92f54f4a9bbd5be558554c', 0, 1, '2024-05-06 11:03:03+00', 0, 6, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1702, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2945, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zjirp\"}"}', 'sonata'), - (416722, '0xaa066bb58f62fbadcc3659e64a0d59946af1d298', 0, 1, '2024-05-06 05:43:12+00', 0, 0, '{"fid": 397485, "object": "user", "pfp_url": "https://i.imgur.com/fUgiVUG.jpg", "profile": {"bio": {"text": "Blockchain Crypto Gamer\nmy NFT COLLECTION \nhttps://zora.co/@shahnam", "mentioned_profiles": []}}, "username": "shahnam", "power_badge": false, "display_name": "Shahnam 🍖 🎩", "active_status": "inactive", "verifications": ["0xef9a6dc967ed5b7fad0462889ce9a1507927db00", "0xe7ddfa4fcc5260f89029c9309967025e1f5a7db3"], "follower_count": 353, "custody_address": "0xdb389982b5a5d5e0a00651b2ac44c01c9dcbc3c9", "following_count": 441, "verified_addresses": {"eth_addresses": ["0xef9a6dc967ed5b7fad0462889ce9a1507927db00", "0xe7ddfa4fcc5260f89029c9309967025e1f5a7db3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/allyourneeds-3/sets/music-bi-kalam?si=7f251263b2b349d58152fea94f56027a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (418921, '0x8d4cb29f79857c7795b33f6a6c51fcf82b8dabed', 0, 1, '2024-05-06 05:49:58+00', 0, 2, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 788, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 1313, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v5RyJ1LyReihq4MW7\"}"}', 'sonata'), - (419874, '0x23cc17e53ac629095c3b5792429cc75aa568e8f0', 0, 1, '2024-05-06 05:52:28+00', 0, 1, '{"fid": 478632, "object": "user", "pfp_url": "https://arweave.net/2Rai8WKW-yuYW2YJdS7V06ME_g5ALibk3L7t-T9Yxr8/", "profile": {"bio": {"text": "culinary student 🧑‍🍳, love movies 🍿, love photography 📸", "mentioned_profiles": []}}, "username": "erfanj", "power_badge": false, "display_name": "ツERFANツ", "active_status": "inactive", "verifications": ["0x67909fba1b9b1d5d95eceeb7ef966846178eb72e"], "follower_count": 360, "custody_address": "0xae633446fe7d2c007d7bbd6ac9c3191229ae601c", "following_count": 349, "verified_addresses": {"eth_addresses": ["0x67909fba1b9b1d5d95eceeb7ef966846178eb72e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CeEoRzycTCtHHqrZ8\"}"}', NULL), - (417550, '0xd4a678dce56b2f8ef0ac11e04e5636d1cf22d12b', 0, 1, '2024-05-06 05:48:44+00', 0, 4, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3859, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3292, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/V4V4k\"}"}', NULL), - (417466, '0xc5c06bf4c0ca3a8bf54ebd454287dec30bc2dc5f', 0, 1, '2024-05-06 05:47:26+00', 0, 1, '{"fid": 193746, "object": "user", "pfp_url": "https://i.imgur.com/qV0WoeH.jpg", "profile": {"bio": {"text": "猫の恩返しに出てくるナトルが好きです。\nMy creative inspiration comes down at 5~9 PM every day.", "mentioned_profiles": []}}, "username": "luca5642.eth", "power_badge": false, "display_name": "luca🎩🔵👻", "active_status": "inactive", "verifications": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "follower_count": 1294, "custody_address": "0xfcb46afe791a0ff441ecb78341664676e6c9a599", "following_count": 1108, "verified_addresses": {"eth_addresses": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xAeUQ8sRuZ3ZkdrCA\"}"}', 'bgm'), - (448697, '0x9a6848acd80c996fc05d991361e1ccb89581bd15', 0, 1, '2024-05-06 06:43:58+00', 0, 0, '{"fid": 17060, "object": "user", "pfp_url": "https://i.seadn.io/gae/dmCInyAypP_seYPjUTnI3R0JqkwlM4UuutUMt5vzsA-oMO28gaQeyw9IgnROh21iIIvCZpMUQ9yZPKXsGPsrt1OI_w07-HbapWYy6Q?w=500&auto=format", "profile": {"bio": {"text": "jazzybeat", "mentioned_profiles": []}}, "username": "jazzybtrain", "power_badge": false, "display_name": "jazzybtrain🎩🍖", "active_status": "inactive", "verifications": ["0xafd35b6352528e0cd871951ebf1a257c32612f41"], "follower_count": 1969, "custody_address": "0xb629c9a5b03a281835fa1022a3d6943b1cab9a85", "following_count": 2303, "verified_addresses": {"eth_addresses": ["0xafd35b6352528e0cd871951ebf1a257c32612f41"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/250braingrain/2019358250a#t=0%3A22\"}"}', 'sonata'), - (471458, '0x0d52fb46a679230d7430c7fbd37236f1d6cae3a8', 0, 1, '2024-05-06 07:14:09+00', 0, 1, '{"fid": 473996, "object": "user", "pfp_url": "https://i.imgur.com/fNZgWUc.jpg", "profile": {"bio": {"text": "야식 가즈아~!!\n$ DEGEN / 조대리! 팔로우 해주시면 찾아가 3종 은혜 보답합니다! \nFollow me, A Degener always pays his debts", "mentioned_profiles": []}}, "username": "im-hayden", "power_badge": false, "display_name": "Go DEGEN", "active_status": "inactive", "verifications": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "follower_count": 1037, "custody_address": "0xe7887f54262b587dd1f1ee1ac5130b1a7da87682", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HWdR8pZibnLu39eWA\"}"}', NULL), - (522757, '0xd915fdf4cb8ca74cb73bffa2e3d982fc8113470f', 0, 1, '2024-05-06 09:09:12+00', 0, 7, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2198, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 726, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/518NuDUXZkEbfTnUhVqooi\"}"}', 'degen-japan'), - (488725, '0xc4e20cf31e74b6f328210c5dafc1ba983b6ba47a', 0, 1, '2024-05-06 07:38:46+00', 0, 3, '{"fid": 500333, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4314c030-4f97-44dd-f01a-495f822eb400/rectcrop3", "profile": {"bio": {"text": "Hi 😃 I love the sea\n반가워요 👍👍👍👍\n\ngrowing snow crabs🦀🦞🔥🔥", "mentioned_profiles": []}}, "username": "seaboy", "power_badge": false, "display_name": "Seaboy🐳", "active_status": "inactive", "verifications": ["0x70646d5758397222f65fe1f841ad05d96f60d352"], "follower_count": 1469, "custody_address": "0x8c88b161d7716fa881597a9a4eba62b5e82f62d2", "following_count": 1983, "verified_addresses": {"eth_addresses": ["0x70646d5758397222f65fe1f841ad05d96f60d352"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gPyNjw7HTCsrUJrm8\"}"}', NULL), - (417465, '0x3c3ca011ecb3ed91be07ab9bb1c6d9d07c5e3ab2', 0, 1, '2024-05-06 05:46:48+00', 0, 0, '{"fid": 515320, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71f3cc2e-065e-439f-fc76-faee5c4e6a00/rectcrop3", "profile": {"bio": {"text": "Crypto, gambling, Premier league, ucl ,football fantasy", "mentioned_profiles": []}}, "username": "navid98", "power_badge": false, "display_name": "Navid", "active_status": "inactive", "verifications": ["0x72430cfc6cbead96b2ef218ce6791a394fb50bbe"], "follower_count": 28, "custody_address": "0x414a7e6e58658e239bb28dc5d550f641f203fa32", "following_count": 78, "verified_addresses": {"eth_addresses": ["0x72430cfc6cbead96b2ef218ce6791a394fb50bbe"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iran-music-lll/ibrahim-tatlises-haydi-soyle?ref=clipboard&p=a&c=0&si=08498eaa699847538a4a923de7ab8d13&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (471456, '0xadb25bfe08cf82a83a950867b25e9cc90674242a', 0, 1, '2024-05-06 07:14:13+00', 0, 0, '{"fid": 297840, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9eeabd72-b682-4034-3e8e-a48da5530a00/rectcrop3", "profile": {"bio": {"text": "artist, memecoin trader. creatooor, BuilderDAO community resident", "mentioned_profiles": []}}, "username": "monkeyeth", "power_badge": false, "display_name": "monkey.eth 🎩🔵", "active_status": "inactive", "verifications": ["0x518b053f612d2d87a23762cff6160163367924f9"], "follower_count": 448, "custody_address": "0x518b053f612d2d87a23762cff6160163367924f9", "following_count": 1344, "verified_addresses": {"eth_addresses": ["0x518b053f612d2d87a23762cff6160163367924f9"], "sol_addresses": ["JBrdTBxcC6qwjw1LdQoP7B71qASxAc7hsEYXq8divrYy"]}}', '{"{\"url\":\"https://m.soundcloud.com/trending-music-id/sets/house\"}"}', NULL), - (509462, '0x3c903b31f9c07525f0e2be17a4ddbcaaf039e496', 0, 1, '2024-05-06 08:15:52+00', 0, 0, '{"fid": 514153, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7f05dd2-b38f-4106-1969-7fb26a6cd200/rectcrop3", "profile": {"bio": {"text": "Web3 developer. I’m girl from /farcaster", "mentioned_profiles": []}}, "username": "!514153", "power_badge": false, "display_name": "Sara.eth", "active_status": "inactive", "verifications": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "follower_count": 135, "custody_address": "0x006d4bf65143528a0e7e8860a2fee6c7a4ba2aec", "following_count": 459, "verified_addresses": {"eth_addresses": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nj8s2\"}"}', 'sonata'), - (527643, '0x3ad7d4379dfe8228417cef6cd393430203a189c4', 0, 1, '2024-05-06 09:27:21+00', 0, 1, '{"fid": 503282, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ce46349-bbd8-4209-da10-6fd8b93c2700/original", "profile": {"bio": {"text": "Hi, guys. Crypto. Dragon. \nhttps://zora.co/@onefourwon", "mentioned_profiles": []}}, "username": "onefourwon", "power_badge": false, "display_name": "onewon 🎩🍖🔵", "active_status": "inactive", "verifications": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "follower_count": 1087, "custody_address": "0x0993505a45968c500db8d13c32ef0928e2fd67bf", "following_count": 1041, "verified_addresses": {"eth_addresses": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 헤어지는 중 - 펀치 by Kimogu on #SoundCloud https://on.soundcloud.com/xWcyb\"}"}', NULL), - (448699, '0x37b317c62efcdf3ba0133eeaf947913b104330b1', 0, 1, '2024-05-06 06:43:27+00', 0, 0, '{"fid": 432964, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiheupri3uhvbvwalw3th53rmbgmnljioafjxekkz2jgisbo4x3cl4", "profile": {"bio": {"text": "\ncrypto dreamer, cancer survivor, tkd itf blackbelt, heart father, and more....", "mentioned_profiles": []}}, "username": "pablo9678a", "power_badge": false, "display_name": "Zonda🎩🤌🏽⛓️🤝", "active_status": "inactive", "verifications": ["0x9ad01751f515952b2d0508d3e444bc5575b964b7", "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509"], "follower_count": 493, "custody_address": "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509", "following_count": 465, "verified_addresses": {"eth_addresses": ["0x9ad01751f515952b2d0508d3e444bc5575b964b7", "0x2d8b0abd7980c5c9d0cb5a008a3af690c1586509"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/dukissj/she-dont-give-a-fo\"}"}', NULL), - (566039, '0x87118de641c04b38753d5fa8523d8f0e572c7e3a', 0, 1, '2024-05-06 11:18:22+00', 0, 0, '{"fid": 500192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ce5a3a6-a9f6-42b8-f629-f50bf9ac5800/original", "profile": {"bio": {"text": "I''m into a crypto\n", "mentioned_profiles": []}}, "username": "slimbear", "power_badge": false, "display_name": "magnet", "active_status": "inactive", "verifications": ["0x82209111e235613802e6a95f0a4371307408461a"], "follower_count": 131, "custody_address": "0x26a5a24457559d2daf1c38ea21d169f7dc112885", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x82209111e235613802e6a95f0a4371307408461a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lk2KhGDyAojTnyzu5\"}"}', NULL), - (471459, '0xe913a373daf71f54904e21a424556f928351a7e4', 0, 1, '2024-05-06 07:13:36+00', 0, 0, '{"fid": 510268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/898f749f-e8b3-4020-1ac6-eb543d004e00/rectcrop3", "profile": {"bio": {"text": "Hello world", "mentioned_profiles": []}}, "username": "!510268", "power_badge": false, "display_name": "doonut🎩", "active_status": "inactive", "verifications": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "follower_count": 401, "custody_address": "0xc1b763b680989873b5abb1bf82730b339bddd5f0", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/christosshepherd/8-pytgl?in=sc-playlists-kr/sets/disco-fever&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (448765, '0xb875b3416c16884aa2c60f2ddc75967be47780ff', 0, 1, '2024-05-06 06:44:06+00', 0, 1, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 276, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6TcV3llDQSeyIqKoZBZ9vO?si=db64c25f516c4bae\"}"}', 'housemusic'), - (417571, '0x101df3dcbebfac12f099fa43842246dc7363356e', 0, 1, '2024-05-06 05:48:53+00', 0, 1, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KyznoShBtbzFaXe16\"}"}', NULL), - (488727, '0x0db67c6995844fbde0a8c4755dd3cdcfa1dbe8cf', 0, 1, '2024-05-06 07:39:05+00', 0, 1, '{"fid": 476061, "object": "user", "pfp_url": "https://i.imgur.com/jAfS0zp.jpg", "profile": {"bio": {"text": "Computer engineering graduate \nInterested in cyber security and 🎮🎥🧑‍🎤", "mentioned_profiles": []}}, "username": "xalix", "power_badge": false, "display_name": "Ali", "active_status": "inactive", "verifications": ["0xf24ad3113f41ca1aa4dfe92dba6b947b958e41a3", "0xd275e3b6b9ff179d8721a847e8d2cbac2d2cbcee"], "follower_count": 238, "custody_address": "0x229a7071ed1f5862fd4f4a3d3a6cb38f80140b2f", "following_count": 331, "verified_addresses": {"eth_addresses": ["0xf24ad3113f41ca1aa4dfe92dba6b947b958e41a3", "0xd275e3b6b9ff179d8721a847e8d2cbac2d2cbcee"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/futureisnow/future-metro-boomin-like-that\"}"}', NULL), - (509460, '0x8bb4a780f3ca246db0b269cbde39eea17da71200', 0, 1, '2024-05-06 08:16:20+00', 0, 2, '{"fid": 501170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79f99602-1ea7-4532-b2e2-8cb67fbb2100/rectcrop3", "profile": {"bio": {"text": "마이_네임_이즈_준키\n#위스키 #맛집마스터 \n\n#디젠 #코인 #크립토 #잼 #crypto #meme #coin #tip #f4f", "mentioned_profiles": []}}, "username": "emsei", "power_badge": false, "display_name": "jun-key", "active_status": "inactive", "verifications": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "follower_count": 1167, "custody_address": "0x611af52170215e3d3dc4fc8443de600aff2ef9e1", "following_count": 1543, "verified_addresses": {"eth_addresses": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/42kg7KNgohT7aokE6\"}"}', NULL), - (541315, '0x600b8d1e1ded2f3d99fa911da0846dcd12ddbc94', 0, 1, '2024-05-06 09:55:48+00', 0, 1, '{"fid": 424774, "object": "user", "pfp_url": "https://i.imgur.com/hKlLOFJ.jpg", "profile": {"bio": {"text": "I am Japanese and would like to communicate with you all.\nAnime🍡, Manga📖, Art🎨, Trade💹, Flower🌸, Pokemon, ogiri\n▼father of 3 kids", "mentioned_profiles": []}}, "username": "kutakuta1001", "power_badge": false, "display_name": "kutakuta1001🍡💉", "active_status": "inactive", "verifications": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "follower_count": 1198, "custody_address": "0x815126572cd6e50d6dd08be2d5289d87f394e80e", "following_count": 1384, "verified_addresses": {"eth_addresses": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "sol_addresses": ["8vdRYGZvottLVRgUraBH2kikvLuaPypY7dweuBSon6BR"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9f6ce82e-e123-43ec-3f8f-28c3dd948b00/original\"}","{\"url\":\"https://on.soundcloud.com/bvhCH\"}"}', 'bgm'), - (519687, '0x40780309176b952bfadd6d12fd2fd64e6d0c5e8d', 0, 1, '2024-05-06 08:58:43+00', 0, 3, '{"fid": 19379, "object": "user", "pfp_url": "https://i.imgur.com/c775G7X.jpg", "profile": {"bio": {"text": "come as you are", "mentioned_profiles": []}}, "username": "anobis", "power_badge": false, "display_name": "STING", "active_status": "inactive", "verifications": ["0x2bf30735f3e75937808eece8883cdc3e74107f56"], "follower_count": 1523, "custody_address": "0x6bf8844806976523f76d206d8c7608e07e139113", "following_count": 1417, "verified_addresses": {"eth_addresses": ["0x2bf30735f3e75937808eece8883cdc3e74107f56"], "sol_addresses": ["DaaLQV1q45BRdfhmqC63LjhvxgiBpu3jGxhoHMuRn3f"]}}', '{"{\"url\":\"https://soundcloud.com/klion123/honor-him-cover-version?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (449566, '0xa78bcbf3eb1726735fb40d2655eb053711db3c08', 0, 1, '2024-05-06 06:44:56+00', 0, 1, '{"fid": 407128, "object": "user", "pfp_url": "https://i.imgur.com/cEarSGQ.jpg", "profile": {"bio": {"text": "MD., Ph.D.\ncrypto, NFT collector \nなんとなく慣れてきました", "mentioned_profiles": []}}, "username": "scrypto3", "power_badge": false, "display_name": "Scrypto🎩🔮🔵🦄", "active_status": "inactive", "verifications": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "follower_count": 654, "custody_address": "0x3dfe27594d0d2d3180dfce17109a282e3018c0df", "following_count": 626, "verified_addresses": {"eth_addresses": ["0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kfc9EFt1jVkKvrB58\"}"}', NULL), - (417573, '0xd70280b08681a825476135b9887d0d01bd3e6de1', 0, 1, '2024-05-06 05:48:04+00', 0, 1, '{"fid": 388644, "object": "user", "pfp_url": "https://arweave.net/5v1K6iERUyiBU3Lsg8c5sxYLxAzux4MmQ5vue_59fCk/", "profile": {"bio": {"text": "I am Amir, but the good one.", "mentioned_profiles": []}}, "username": "sadeqiduki", "power_badge": false, "display_name": "Amir 🍖🔄🎩💎", "active_status": "inactive", "verifications": ["0x99003cfcad31e3b95be0f7e8e783b63533a916a3"], "follower_count": 1263, "custody_address": "0x568aca53fe0b0503b96d095ca7bfb48ce8b13444", "following_count": 695, "verified_addresses": {"eth_addresses": ["0x99003cfcad31e3b95be0f7e8e783b63533a916a3"], "sol_addresses": ["12uufqKMRu8Y2hoM9EKbVtYtUQ3RanXCJT6UFV9DqaAe"]}}', '{"{\"url\":\"https://m.soundcloud.com/aminashkan/kaleo-way-down-we-go\"}"}', NULL), - (488736, '0x2261b53425d9ec11dcce838b71d6b2ca1fa15c0b', 0, 1, '2024-05-06 07:39:18+00', 0, 3, '{"fid": 491462, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f37f288c-17b8-461d-5675-95640156a900/original", "profile": {"bio": {"text": "Interesting to getting money", "mentioned_profiles": []}}, "username": "bannoo", "power_badge": false, "display_name": "Bannoo", "active_status": "inactive", "verifications": ["0x9ed3a8db7e0b9f13dc76b47fac7ef946b6ca42b2"], "follower_count": 342, "custody_address": "0xaf6c8d9d28e741d59eaa4117f0aac63c7ff93a5d", "following_count": 831, "verified_addresses": {"eth_addresses": ["0x9ed3a8db7e0b9f13dc76b47fac7ef946b6ca42b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/samida-re/oasis-dont-look-back-in-anger?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (419437, '0xe0fd4061a719da4f82e2c2fd597268893bf29510', 0, 1, '2024-05-06 05:51:38+00', 0, 6, '{"fid": 401441, "object": "user", "pfp_url": "https://i.imgur.com/xw6m1Wy.jpg", "profile": {"bio": {"text": "반응이 늦더라도 조금만 기다려주세요. \n", "mentioned_profiles": []}}, "username": "woawoame", "power_badge": false, "display_name": "Lemon", "active_status": "inactive", "verifications": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "follower_count": 2039, "custody_address": "0xe8b627f4c3b83022f8bacbd4d0f957e1f31e6318", "following_count": 2306, "verified_addresses": {"eth_addresses": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/487cc36c-7343-45e4-0fa4-7fa50e245f00/original\"}","{\"url\":\"https://on.soundcloud.com/RPYFX\"}"}', 'sonata'), - (416252, '0x85d5a7cefb839db1d54e435d280ad86af9710c5b', 0, 1, '2024-05-06 05:38:18+00', 0, 4, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2137, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1879, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p7Cj95khfJJhyjrw5\"}"}', NULL), - (509565, '0xda62739cd88ec200b1d3e8473576038f03320579', 0, 1, '2024-05-06 08:16:39+00', 0, 1, '{"fid": 399395, "object": "user", "pfp_url": "https://i.imgur.com/NDwFHcw.gif", "profile": {"bio": {"text": "始めたばかりです😊画像作りできます✨\n楽しいこと大好き❤みんなでわちゃわちゃしましょ😆\nhttps://twitter.com/Mamy_mamy3", "mentioned_profiles": []}}, "username": "mamy", "power_badge": false, "display_name": "mamy", "active_status": "inactive", "verifications": ["0x41baa8c61f166bbfe4be011436c18d6e8e46fb18"], "follower_count": 686, "custody_address": "0xea8078abbbc4f2aba53603f0c81e1d18fc3ed7b2", "following_count": 516, "verified_addresses": {"eth_addresses": ["0x41baa8c61f166bbfe4be011436c18d6e8e46fb18"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dsQicXqK1hNhZ1su8\"}"}', NULL), - (524357, '0xa99221dba89ad619dec84dca989c4c789096a101', 0, 1, '2024-05-06 09:16:38+00', 0, 0, '{"fid": 347212, "object": "user", "pfp_url": "https://i.imgur.com/p1Wg11V.jpg", "profile": {"bio": {"text": "ヤサシナと申します。\nFX 修行中です。\nお金は後から付いてくる\n\n\"Money will come later, so be patient for now.\"\n\n", "mentioned_profiles": []}}, "username": "yassa47-88", "power_badge": false, "display_name": "ヤサシナ🎩🔵", "active_status": "inactive", "verifications": ["0x35b798337d68ed8b86e7872975fe9f2a94cbdac9"], "follower_count": 563, "custody_address": "0x3a74cbebe730aa9974ef5700d136e860a29701a7", "following_count": 737, "verified_addresses": {"eth_addresses": ["0x35b798337d68ed8b86e7872975fe9f2a94cbdac9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3XEicqkWcvw3CoUL9\"}"}', 'sonata'), - (606351, '0x0b2b284f11848443c9a3b4cc87e304fc8b7f725f', 0, 1, '2024-05-06 12:51:26+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 44, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jh9L5N77KqZNMZYG6\"}"}', NULL), - (471440, '0xb601dac8b673678a462d3283703a60372f68439e', 0, 1, '2024-05-06 07:13:40+00', 0, 0, '{"fid": 473996, "object": "user", "pfp_url": "https://i.imgur.com/fNZgWUc.jpg", "profile": {"bio": {"text": "야식 가즈아~!!\n$ DEGEN / 조대리! 팔로우 해주시면 찾아가 3종 은혜 보답합니다! \nFollow me, A Degener always pays his debts", "mentioned_profiles": []}}, "username": "im-hayden", "power_badge": false, "display_name": "Go DEGEN", "active_status": "inactive", "verifications": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "follower_count": 1037, "custody_address": "0xe7887f54262b587dd1f1ee1ac5130b1a7da87682", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HWdR8pZibnLu39eWA\"}"}', NULL), - (488724, '0x77021ca7d3cfb0231392e22123f93d4b7c398ea7', 0, 1, '2024-05-06 07:39:29+00', 0, 4, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 796, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 906, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xUhqdCoQSnAtMvQj8\"}"}', 'sonata'), - (420215, '0x3ddba9e250a32efcd35dbfae7b92aa5ed8df6b63', 0, 1, '2024-05-06 05:54:40+00', 0, 1, '{"fid": 515780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb3f5415-5f03-4344-6bd2-85fefa459100/rectcrop3", "profile": {"bio": {"text": "Be yourself", "mentioned_profiles": []}}, "username": "!515780", "power_badge": false, "display_name": "Maulani 🦇", "active_status": "inactive", "verifications": ["0xe41f0007266d29051ae8049b15441e35784bda9c"], "follower_count": 29, "custody_address": "0xd19d8ea6ae0ba4d8d5573578789d5e0851992374", "following_count": 78, "verified_addresses": {"eth_addresses": ["0xe41f0007266d29051ae8049b15441e35784bda9c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SNfd7\"}"}', NULL), - (419458, '0xd6ef2c341f7bf2fd6bf212e1fa3a2a07fabc3827', 0, 1, '2024-05-06 05:51:56+00', 0, 10, '{"fid": 290315, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8811e735-d9e8-45aa-3b1e-4443c5c20000/rectcrop3", "profile": {"bio": {"text": "Crypto news🩵", "mentioned_profiles": []}}, "username": "daol", "power_badge": false, "display_name": "Daol🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf52e582dffaeca1cb40f73a6b21f7d90ce2ddf02"], "follower_count": 2726, "custody_address": "0xfc74a4fea3dbc91e14d4535b3e86f04ba634b5b1", "following_count": 1608, "verified_addresses": {"eth_addresses": ["0xf52e582dffaeca1cb40f73a6b21f7d90ce2ddf02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrbaek/bye-bye-my-blue-full-album?si=21e5578f86d44928a64056020aaad241&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (419444, '0x32a7304e29ff6e0ed4e118740f2e5f491e9bc973', 0, 1, '2024-05-06 05:51:16+00', 0, 0, '{"fid": 449008, "object": "user", "pfp_url": "https://i.seadn.io/gae/6tjKeLMxig7WnZCemZnN8AjUNLj1BgusfLk0ZPTnEKwaAjQw_pdCbdxEQ4mQuzBKaXCpRN94wkc0YsUsBmYRhOFg90wjzSPLj5tEpA?w=500&auto=format", "profile": {"bio": {"text": "An engineer with a touch of solidity intelligence.", "mentioned_profiles": []}}, "username": "ojryder", "power_badge": false, "display_name": "Onyedikachi Samson ", "active_status": "inactive", "verifications": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "follower_count": 9, "custody_address": "0xbc26313c6570bcc63feb99e6559c468f1c5184da", "following_count": 143, "verified_addresses": {"eth_addresses": ["0xe696170f696f25d2dd5fe8ea71fdf47d05598d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B3fvfrHnkX997SdE6\"}"}', NULL), - (488738, '0xa6ee107502490787678568c175c9e5934dd8c9ca', 7200, 1, '2024-05-06 07:40:00+00', 0, 4, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1138, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1518, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sigur-ros/staralfur?si=815cecbec0e3484dbaa177c610a7565d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (509571, '0x519273ed25516e47f4eb381fcdb94def8e0e1c77', 0, 1, '2024-05-06 08:17:26+00', 0, 1, '{"fid": 376576, "object": "user", "pfp_url": "https://i.imgur.com/UUj84vr.jpg", "profile": {"bio": {"text": "Expensive life passes faster than running water🖤", "mentioned_profiles": []}}, "username": "hodab", "power_badge": false, "display_name": "Hodab 🎩🍗❤ $DEGEN ", "active_status": "inactive", "verifications": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "follower_count": 799, "custody_address": "0x7af5fc8120cbb7cd825c9c00b6d3a6175648bf71", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0x6b74b18716b97216c296fa174905fd46b6dbe244"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SKjbQbNEFX9psBTi7\"}"}', NULL), - (449574, '0xce999eb710b01ce4059b1513f7ecd68458fb7f7d', 0, 1, '2024-05-06 06:44:49+00', 0, 2, '{"fid": 265189, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8f0dc72-ccba-4098-f8c0-fcf3b7f25d00/rectcrop3", "profile": {"bio": {"text": "Photographer and Artist | Nft Creator 🥂💋", "mentioned_profiles": []}}, "username": "cococops.eth", "power_badge": false, "display_name": "Jessica 🌈 🎩 ✪", "active_status": "inactive", "verifications": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "follower_count": 2093, "custody_address": "0xb0f365dcb4adc0ea5d3d3820712d8d882330f13b", "following_count": 1952, "verified_addresses": {"eth_addresses": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3dM1zVDkpyAaHe8D6\"}"}', NULL), - (418889, '0x72194d5332e1f72142524d247824df73e495b57e', 0, 1, '2024-05-06 05:51:01+00', 0, 6, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3859, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3292, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6RsBt\"}"}', 'sonata'), - (488751, '0x327ec3e4cc89c95ba6be4ddfaff4665487efb102', 0, 1, '2024-05-06 07:38:54+00', 0, 5, '{"fid": 415013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5865b6e2-fe88-420c-ad1b-f101b2ae6a00/rectcrop3", "profile": {"bio": {"text": "Never withhold anything from your kind. The best things happen when we help each other", "mentioned_profiles": []}}, "username": "hassan6590", "power_badge": false, "display_name": "hassan6590🌀🎭", "active_status": "inactive", "verifications": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "follower_count": 1028, "custody_address": "0x796338e1a997eedaae5f918d4a6c32171965f374", "following_count": 1380, "verified_addresses": {"eth_addresses": ["0xf7cb438968e20bca0f62af26d317f500e932d233"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3hBzF\"}"}', 'sonata'), - (508724, '0x9a076b9802d34e31ef78c6e882e52e38e667ba4b', 0, 1, '2024-05-06 08:15:10+00', 0, 1, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2107, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2651, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6BgUx\"}"}', 'sonata'), - (521072, '0x5f659b91118d7a746af2bb2b1b7c6c96d3bde8b0', 0, 1, '2024-05-06 09:03:10+00', 0, 2, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1348, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 710, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1BxfuPKGuaTgP7aM0Bbdwr\"}"}', NULL), - (517408, '0x2da2ece1fa98c5937b08e6f9a5b6db8701209c9e', 0, 1, '2024-05-06 08:45:03+00', 0, 4, '{"fid": 421100, "object": "user", "pfp_url": "https://i.imgur.com/2QEH8Mn.jpg", "profile": {"bio": {"text": "I loved tried and mining", "mentioned_profiles": []}}, "username": "rasoul128482", "power_badge": false, "display_name": "RasoulRahimi🎩🍖", "active_status": "inactive", "verifications": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "follower_count": 503, "custody_address": "0x09371cab91c71adaad513b1b0a0284e67f1012bb", "following_count": 553, "verified_addresses": {"eth_addresses": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vz6iK7PPJD3iGsPR7\"}"}', NULL), - (600636, '0xd7034b79b45472bee5ba78b9b52fb912a9c2021e', 0, 1, '2024-05-06 12:38:34+00', 0, 3, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mia-potente/neyo-so-sick?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (449575, '0xb719db8ee67c96289000de9ed17c5701913c8c28', 0, 1, '2024-05-06 06:44:21+00', 0, 0, '{"fid": 236389, "object": "user", "pfp_url": "https://i.imgur.com/FXQWgpx.jpg", "profile": {"bio": {"text": "audio alchemist. ai experimentalist. music producer of the @vnderworld.\n\nnullhax.com", "mentioned_profiles": []}}, "username": "hax.eth", "power_badge": false, "display_name": "hax 🎩", "active_status": "inactive", "verifications": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "follower_count": 146, "custody_address": "0x70664c8bcf0314e13860c021db97e808cd000831", "following_count": 271, "verified_addresses": {"eth_addresses": ["0x338050301df259ab1aee79026e6e1bff7b10c899"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vnderworld/whispers-indistinctly-dark\"}"}', NULL), - (517380, '0x89bbade3c002e2c104000464b886a1ea58a40eef', 0, 1, '2024-05-06 08:44:43+00', 0, 1, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1099, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 615, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha Superstar Ft. Charleen Murphy de Ev Wilde en #SoundCloud https://on.soundcloud.com/d7h6c\"}"}', NULL), - (420341, '0x2dcf666705339e962f6e4d5765877aed4ef1ff5c', 0, 1, '2024-05-06 05:55:46+00', 0, 1, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 231, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 406, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/erikcr-music/demons-love?in=sc-playlists-jp/sets/confident-pop&si=86d2e3ea5c034c34bc7a78e24857c695&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (420238, '0x514212d9f218e4e9bf4c72f5943f23b2c3de0f16', 0, 1, '2024-05-06 05:54:10+00', 0, 2, '{"fid": 385168, "object": "user", "pfp_url": "https://i.imgur.com/2uXIsJ7.jpg", "profile": {"bio": {"text": "Life is like a boat.\nHappy every day", "mentioned_profiles": []}}, "username": "0xzora", "power_badge": false, "display_name": "AnimeZora🔵🎩🪳🍖🍕", "active_status": "inactive", "verifications": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "follower_count": 231, "custody_address": "0x2a0a2f00f9dc576809a815c7f436c0c47a5f9dae", "following_count": 406, "verified_addresses": {"eth_addresses": ["0x30995f6c74fe399e974afc61588197cb3bfbe20f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gessomusic/beacon-and-night?in=sc-playlists-jp/sets/confident-pop&si=598b829c16bc4ae99cb4125f7a20727f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (509678, '0x7b30ce805b1fed87d8d614e59a9c1064b732ac37', 0, 1, '2024-05-06 08:17:56+00', 0, 1, '{"fid": 514153, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7f05dd2-b38f-4106-1969-7fb26a6cd200/rectcrop3", "profile": {"bio": {"text": "Web3 developer. I’m girl from /farcaster", "mentioned_profiles": []}}, "username": "!514153", "power_badge": false, "display_name": "Sara.eth", "active_status": "inactive", "verifications": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "follower_count": 138, "custody_address": "0x006d4bf65143528a0e7e8860a2fee6c7a4ba2aec", "following_count": 459, "verified_addresses": {"eth_addresses": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nj8s2\"}"}', 'sonata'), - (524688, '0xf2f14137c2358201c74e18b2cd7431a844b127af', 0, 1, '2024-05-06 09:18:06+00', 0, 1, '{"fid": 510066, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54eff8e4-0f53-4920-fafa-c2cc610b8a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!510066", "power_badge": false, "display_name": "Saeid", "active_status": "inactive", "verifications": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "follower_count": 190, "custody_address": "0x6fe4b05d6fc7c867484b9f98b1b5d5dff2c27bad", "following_count": 381, "verified_addresses": {"eth_addresses": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Rihanna - S&M (NORTKASH & 5ROCK Remix) by NORTKASH on #SoundCloud https://on.soundcloud.com/8eEg2\"}"}', NULL), - (535264, '0x4607f40889ed55b3732a260dffa0ab3b9fd05b17', 0, 1, '2024-05-06 09:40:56+00', 0, 0, '{"fid": 446972, "object": "user", "pfp_url": "https://i.imgur.com/PReb6Qm.jpg", "profile": {"bio": {"text": "Use the weekends to build the life you''ve always wanted.", "mentioned_profiles": []}}, "username": "hsyn", "power_badge": false, "display_name": "Hsyn", "active_status": "inactive", "verifications": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "follower_count": 356, "custody_address": "0xf1ee30b6c5e599b198d04a7faec24fe2c7d22cb0", "following_count": 475, "verified_addresses": {"eth_addresses": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pinegroveband/need-2-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (524709, '0xcb45851b203080b593a4938f6df28b55a54a7fc0', 0, 1, '2024-05-06 09:17:23+00', 0, 0, '{"fid": 500863, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a51bc49-f9bb-4927-3bd4-81bcf024d300/original", "profile": {"bio": {"text": "web3, blockchain, game, traveling...", "mentioned_profiles": []}}, "username": "toorgasm", "power_badge": false, "display_name": "richard🎩🍖", "active_status": "inactive", "verifications": ["0xbe7c2c20438fe46d49dba73a2928deabc261d590"], "follower_count": 724, "custody_address": "0x842e4241328b69c85f0bc199bd3eb5ed94f04c67", "following_count": 507, "verified_addresses": {"eth_addresses": ["0xbe7c2c20438fe46d49dba73a2928deabc261d590"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Z68Hw\"}"}', NULL), - (449581, '0xc89c9d4234d7fc66fe513d3a7c3e73ef4f3a1e60', 0, 1, '2024-05-06 06:44:15+00', 0, 1, '{"fid": 265189, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8f0dc72-ccba-4098-f8c0-fcf3b7f25d00/rectcrop3", "profile": {"bio": {"text": "Photographer and Artist | Nft Creator 🥂💋", "mentioned_profiles": []}}, "username": "cococops.eth", "power_badge": false, "display_name": "Jessica 🌈 🎩 ✪", "active_status": "inactive", "verifications": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "follower_count": 2093, "custody_address": "0xb0f365dcb4adc0ea5d3d3820712d8d882330f13b", "following_count": 1952, "verified_addresses": {"eth_addresses": ["0xed08e483557bd0955fe5fdebe464293a961edaae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3dM1zVDkpyAaHe8D6\"}"}', NULL), - (517827, '0xd78d76f177a368d305b6fdc429d92738234fa4e5', 0, 1, '2024-05-06 08:45:56+00', 0, 2, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1616, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1612, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zh2Yd\"}"}', 'sonata'), - (509691, '0x6c0570cd6be070683add0bbc8efb382d78cf1633', 0, 1, '2024-05-06 08:18:26+00', 0, 5, '{"fid": 291771, "object": "user", "pfp_url": "https://i.imgur.com/2FXOtXT.jpg", "profile": {"bio": {"text": "I''m english teacher and trader", "mentioned_profiles": []}}, "username": "arasfarcaster", "power_badge": false, "display_name": "🎩 yosef🔄Jani 🎩", "active_status": "inactive", "verifications": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "follower_count": 1355, "custody_address": "0x24f89648e2f465b820925d3611e610d92052ea42", "following_count": 1704, "verified_addresses": {"eth_addresses": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "sol_addresses": ["8dBNEjFNeFoJ1SngCUdeC3ygLEiJdHgqHtLzSqzzUL3u"]}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/idontwannabeyouanymore?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (419415, '0x0f838af2cba2f1b2577c95aa6e91aa50fd21d77b', 0, 1, '2024-05-06 05:51:37+00', 0, 5, '{"fid": 400377, "object": "user", "pfp_url": "https://i.imgur.com/EkxQ6n2.jpg", "profile": {"bio": {"text": "I love Socola", "mentioned_profiles": []}}, "username": "socola", "power_badge": false, "display_name": "Socola", "active_status": "inactive", "verifications": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "follower_count": 1755, "custody_address": "0x5bcb1b7f6b604f60fb82b055ac587547bb50bd6a", "following_count": 3041, "verified_addresses": {"eth_addresses": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Af7seLySRjMtKVSe7\"}"}', 'sonata'), - (417391, '0xbba2f9c0aaf0506bbe49bdd5ee31720a7a3f9cfd', 0, 1, '2024-05-06 05:45:35+00', 0, 3, '{"fid": 316311, "object": "user", "pfp_url": "https://i.imgur.com/pOeNJeq.gif", "profile": {"bio": {"text": "딸기마을이장 / 한글마을 / 웃음마을 / 가성비에어드랍연구소장 / 딸기재단 (strawberry_trump@드라큘라)", "mentioned_profiles": []}}, "username": "agoda", "power_badge": false, "display_name": "김딸기 🍓", "active_status": "inactive", "verifications": ["0x614b070d71444268d5957756bd7aeccbe663051b"], "follower_count": 2470, "custody_address": "0x1902a3cb1db26409454e0af9eb2df6a698d1268c", "following_count": 1176, "verified_addresses": {"eth_addresses": ["0x614b070d71444268d5957756bd7aeccbe663051b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sinerstyle/music-box-ver?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (527642, '0xd4180fb2faf618a2b39cc536ad161e56dab73908', 0, 1, '2024-05-06 09:27:39+00', 0, 0, '{"fid": 427654, "object": "user", "pfp_url": "https://i.imgur.com/atrcHtA.jpg", "profile": {"bio": {"text": "遂にデゲンできるようになりました\n帽子はメタマスクです\n積極的に絡んでいきますのでよろしくどうぞ!\n", "mentioned_profiles": []}}, "username": "chianti", "power_badge": false, "display_name": "chianti🐲🎩🔥", "active_status": "inactive", "verifications": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "follower_count": 292, "custody_address": "0xd0698c5468a0e65f51a002502f392954d923d49f", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ronisize/roni-size-reprazent-last-man-standing-live-at-colston-hall?si=6fcee415541b4ad2bdb7cbe9be03c6c9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (473527, '0x526540c9abed13919efea4745639a29d463dc2e1', 0, 1, '2024-05-06 07:15:57+00', 0, 1, '{"fid": 385239, "object": "user", "pfp_url": "https://i.imgur.com/9VrE0r9.jpg", "profile": {"bio": {"text": "lfg", "mentioned_profiles": []}}, "username": "pgdosu", "power_badge": false, "display_name": "pg🔄🎩🔵🔮 🦕", "active_status": "inactive", "verifications": ["0x658f32c5387be127e4281590f49c2a924176fb87", "0x658f32c5387be127e4281590f49c2a924176fb87"], "follower_count": 504, "custody_address": "0x772c7c0c4fed76929fdecc8cd5d61aebe0bfad2f", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x658f32c5387be127e4281590f49c2a924176fb87", "0x658f32c5387be127e4281590f49c2a924176fb87"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hTMP5\"}"}', NULL), - (534742, '0x3c96bb0c4bff4b13adafff1e4f466b99985067e9', 0, 1, '2024-05-06 09:38:18+00', 0, 0, '{"fid": 500524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8dfd467-cfa4-4c54-2177-354ec2f15700/rectcrop3", "profile": {"bio": {"text": "Hi my name is chloejin", "mentioned_profiles": []}}, "username": "choichoisla", "power_badge": false, "display_name": "Chloejin", "active_status": "inactive", "verifications": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "follower_count": 48, "custody_address": "0xef3be36580a61c8b605f27a5ebbb2a97031a6208", "following_count": 45, "verified_addresses": {"eth_addresses": ["0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4SFdgDRbaAej5B3TA\"}"}', 'sonata'), - (542498, '0x7f481337e9d6612ae985ad501f84e70bd95bf8de', 0, 1, '2024-05-06 10:00:32+00', 0, 1, '{"fid": 439083, "object": "user", "pfp_url": "https://i.imgur.com/kQR4keG.jpg", "profile": {"bio": {"text": "Everything is made of energy and consciousness..🧘‍♀️🪷💫", "mentioned_profiles": []}}, "username": "parisss", "power_badge": false, "display_name": "Parisash", "active_status": "inactive", "verifications": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "follower_count": 1048, "custody_address": "0x42751c21c4721d754a8be4b50390e988e30a33ec", "following_count": 1157, "verified_addresses": {"eth_addresses": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sarah-mclachlan/angel-1?si=07eccf4c21b5451ca21805cf1d36be1f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (421179, '0x2fa9c2d7a858e80100c2beb9ef475b4de7a14c2b', 0, 1, '2024-05-06 05:56:40+00', 0, 0, '{"fid": 354320, "object": "user", "pfp_url": "https://i.imgur.com/tb9DF6O.jpg", "profile": {"bio": {"text": "crypto trader\n--apex廃人--", "mentioned_profiles": []}}, "username": "eneb", "power_badge": false, "display_name": "eneb👻かも??", "active_status": "inactive", "verifications": ["0x7f4aca24a93b89859660b104e08ab3943569577a"], "follower_count": 168, "custody_address": "0x2f286de5552e8d8f758969a3c3a06a4d6c44f1a1", "following_count": 316, "verified_addresses": {"eth_addresses": ["0x7f4aca24a93b89859660b104e08ab3943569577a"], "sol_addresses": ["FLXiJN25oeHwnkjvXu4U1xG6ffP9eESf4EbhhaW7YZie"]}}', '{"{\"url\":\"https://soundcloud.com/hemlockernst/down?in=hemlockernst/sets/addicted-youth\"}"}', NULL), - (421178, '0xabd61a07446607f6ebc6df614313440b2ea42ea9', 0, 1, '2024-05-06 05:56:05+00', 0, 8, '{"fid": 464228, "object": "user", "pfp_url": "https://i.imgur.com/JqKwmZQ.jpg", "profile": {"bio": {"text": "$DEGEN / 🍖 햄 / 좋아요🔥 / 리캐스트 🔥 / 댓글 🔥 / 한명도 빠짐없이 다 찾아가 2배로 돌려드립니다.\n -슈캐 유저- \n매일 운세 각종 정보 올립니다 ㅎㅎ\n선팔 주시면 끝까지 맞팔 갑니다!!", "mentioned_profiles": []}}, "username": "donjeollae", "power_badge": false, "display_name": "Donjeollae", "active_status": "inactive", "verifications": ["0xc88dcc00463576921fef35cf30e57590ca865b00"], "follower_count": 1916, "custody_address": "0x9a65f4c929f4fb0b369ab3280bbae247a6edfa7c", "following_count": 2166, "verified_addresses": {"eth_addresses": ["0xc88dcc00463576921fef35cf30e57590ca865b00"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lt9psR3UiZfyHzDZA\"}"}', 'sonata'), - (527018, '0x10e034ccbc36e56f035891772fcc2b9ee016260a', 0, 1, '2024-05-06 09:26:04+00', 0, 13, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3939, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2226, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GD85sECDSatHpFZKA\"}"}', 'sonata'), - (589604, '0x09205a003c9f5a3e068904bcd60b189b28ff0eb0', 0, 1, '2024-05-06 12:13:40+00', 0, 7, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1960, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2435, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/adlsyg/sting-shape-of-my-heart?si=0236eddd36744beb923360a15e41c6e6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (535258, '0x9276e7dc566f2217e24b13d1c1518c2bda37089f', 0, 1, '2024-05-06 09:40:17+00', 100, 3, '{"fid": 500264, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmap1VQNmq7eJt8huzSQoNNb1PGLmEDgoENaJAsVFVw2tP?filename=Screenshot_20240427_091203_Chrome.jpg", "profile": {"bio": {"text": "Hi 👋🍓 I am new here. ☺️🍓 🍖 ", "mentioned_profiles": []}}, "username": "storyteller1", "power_badge": false, "display_name": "Berry🍓🍖 ", "active_status": "inactive", "verifications": ["0xc3de5546f05b9d858c2f6f695d9c9ebd42e2d024"], "follower_count": 1271, "custody_address": "0xd473669ac54d0825fb3b42826bb838d2e01a2ee7", "following_count": 1286, "verified_addresses": {"eth_addresses": ["0xc3de5546f05b9d858c2f6f695d9c9ebd42e2d024"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kakukakukkicks/clazziquai-project-after-love?si=655d4f399f2d422db8c1e2d8a51d7699&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (537593, '0x16cee3f87cb050571d3e8dbf549dfe4fb29725fe', 0, 1, '2024-05-06 09:45:56+00', 0, 2, '{"fid": 503282, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ce46349-bbd8-4209-da10-6fd8b93c2700/original", "profile": {"bio": {"text": "Hi, guys. Crypto. Dragon. \nhttps://zora.co/@onefourwon", "mentioned_profiles": []}}, "username": "onefourwon", "power_badge": false, "display_name": "onewon 🎩🍖🔵", "active_status": "inactive", "verifications": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "follower_count": 1092, "custody_address": "0x0993505a45968c500db8d13c32ef0928e2fd67bf", "following_count": 1042, "verified_addresses": {"eth_addresses": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lam-le-479022895/10-minutes?si=3e2d1116771c4f2cbb492c662ba7bdb2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (565715, '0x81b58d41b6cd843e9b114bf861be6490ed085a8b', 0, 1, '2024-05-06 11:13:11+00', 0, 1, '{"fid": 416775, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc6921f8-e2ca-435d-7233-9c3b3fa0a300/rectcrop3", "profile": {"bio": {"text": "Interested in NFT", "mentioned_profiles": []}}, "username": "areya", "power_badge": false, "display_name": "Areya🎩", "active_status": "inactive", "verifications": ["0x0445d4537e01838734167752cab5faa9d07d26ac"], "follower_count": 915, "custody_address": "0xef223711a7524bea986ffdabda1f6c554c77d706", "following_count": 819, "verified_addresses": {"eth_addresses": ["0x0445d4537e01838734167752cab5faa9d07d26ac"], "sol_addresses": ["hnXgkSfx5iD2Qjy3FA7tfbyawjzBCX1RCWoxf3VmCML"]}}', '{"{\"url\":\"https://on.soundcloud.com/GZZF8QPgc9dpujQv5\"}"}', 'sonata'), - (562481, '0x456ef4e03dedf7cc6c5b606393fd8607d3f9b1e6', 0, 1, '2024-05-06 11:03:20+00', 0, 0, '{"fid": 498638, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e782729f-ec3a-4bbe-ee35-6eb1f218e000/original", "profile": {"bio": {"text": "I am Music Creator.", "mentioned_profiles": []}}, "username": "hunttones", "power_badge": false, "display_name": "Hunt Tones 🎼 🩸🎩☔", "active_status": "inactive", "verifications": ["0x6c55545b2d5546853eefd67e0917b99de7b0a52b"], "follower_count": 301, "custody_address": "0xff9298dec52ff4770aed736762503ac3f0f5dc26", "following_count": 919, "verified_addresses": {"eth_addresses": ["0x6c55545b2d5546853eefd67e0917b99de7b0a52b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hunt-tones/eleftherios?si=2354b8cc39994ea6b38b31dc8bbcee56&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (606321, '0xe880b52def81e0446d94c58d0dcae0f131111dda', 0, 1, '2024-05-06 12:51:14+00', 0, 4, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 701, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1062, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fiJ1JP2WCjJPk8Fy6\"}"}', NULL), - (542501, '0x255a88cade66cbd7c5e8541ce6ae1d1208e8d75a', 0, 1, '2024-05-06 10:00:59+00', 0, 1, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DeyPPkp5FJcvLKhh6\"}"}', 'sonata'), - (571373, '0xba39793ef3beabba3b5c6ebd391847cbf09d7d66', 1010, 1, '2024-05-06 11:36:28+00', 40, 31, '{"fid": 286046, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibo5ui3ecc6yryt7ucalxagxbfach3q5wt77q6ykduayjebdndd74", "profile": {"bio": {"text": "ilpyung real", "mentioned_profiles": []}}, "username": "ilpyung", "power_badge": false, "display_name": "ilpyung", "active_status": "inactive", "verifications": ["0xdbfcac9ebe08690cf9e808188bfb55f1ae7adfd6"], "follower_count": 7415, "custody_address": "0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4", "following_count": 310, "verified_addresses": {"eth_addresses": ["0xdbfcac9ebe08690cf9e808188bfb55f1ae7adfd6"], "sol_addresses": ["BLPK5SHSWdachsw6HJ4KYEtrn53j7HS4KbKrFUCziD5P"]}}', '{"{\"url\":\"https://soundcloud.com/frequentiis/newjeans-get-up-ful-album\"}"}', NULL), - (524998, '0xd8f3de7e392e69bb8ad0544eca35884d5a937a3b', 0, 1, '2024-05-06 09:18:48+00', 0, 0, '{"fid": 500863, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a51bc49-f9bb-4927-3bd4-81bcf024d300/original", "profile": {"bio": {"text": "web3, blockchain, game, traveling...", "mentioned_profiles": []}}, "username": "toorgasm", "power_badge": false, "display_name": "richard🎩🍖", "active_status": "inactive", "verifications": ["0xbe7c2c20438fe46d49dba73a2928deabc261d590"], "follower_count": 724, "custody_address": "0x842e4241328b69c85f0bc199bd3eb5ed94f04c67", "following_count": 507, "verified_addresses": {"eth_addresses": ["0xbe7c2c20438fe46d49dba73a2928deabc261d590"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aXmh5SwGqRSdBXDt8\"}"}', NULL), - (602065, '0x3bc098f40beaeb6b6ad4b2799a365df6f637c7f2', 0, 1, '2024-05-06 12:42:04+00', 0, 2, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/john-salazar-1/ne-yo-closer?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (562911, '0xa0ebcb6357ce0a162c084b039020edb968412236', 0, 1, '2024-05-06 11:05:19+00', 0, 0, '{"fid": 426662, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b47cd49-a73f-4253-1ce9-a104316e8100/original", "profile": {"bio": {"text": "Hello :) Follow me 💓 \n💚용용입니다💚\nhttps://www.alfafrens.com/channel/0x2264443aA20C382D4f18D63df550002655423951\n\n\n", "mentioned_profiles": []}}, "username": "yg-dragon", "power_badge": false, "display_name": "용용🔵🍖🎩", "active_status": "inactive", "verifications": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "follower_count": 2023, "custody_address": "0x33ed204170cc1d73a6905ca72ad16563e01113c4", "following_count": 3278, "verified_addresses": {"eth_addresses": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ihwak/day6-ywb-cover-by-ihwak\"}"}', NULL), - (542988, '0x3357da143017f399b67ee4feb148f03eed6fea4f', 0, 1, '2024-05-06 10:03:11+00', 0, 2, '{"fid": 501914, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b14740fd-c936-4695-d36d-2176896c5200/rectcrop3", "profile": {"bio": {"text": "base/onchain", "mentioned_profiles": []}}, "username": "masch87", "power_badge": false, "display_name": "masch87🎩🦄✅", "active_status": "inactive", "verifications": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "follower_count": 1400, "custody_address": "0xae6ce4dd57535388d8181f11fbc7696244f05ece", "following_count": 1943, "verified_addresses": {"eth_addresses": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sgb-185316074/sg-sg-wannabe-flac-21?si=e722fe9613ed429cab6813d7287fa081&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (587230, '0xd78bde93e9263cc0ad1aca3eb3ba7b82d0fa58b1', 0, 1, '2024-05-06 12:09:32+00', 0, 0, '{"fid": 445373, "object": "user", "pfp_url": "https://i.imgur.com/s4xsCCA.jpg", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "mohsnm67", "power_badge": false, "display_name": "Mohsnm67", "active_status": "inactive", "verifications": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "follower_count": 399, "custody_address": "0x9763bc0145d396ad8f818d7f335ae6669c6fd8d1", "following_count": 1169, "verified_addresses": {"eth_addresses": ["0xc7b4762a650978f4a7140195b175fb6cdc22a3f5", "0x444a84546741c991acaa5f0fee9f2cdee6ff66d2"], "sol_addresses": ["Ca91orTihwQoUkP6GsYX1SR7dGzjVrCLWxL4oCeKaZyJ"]}}', '{"{\"url\":\"https://on.soundcloud.com/6kS3KRomc4df3o2E8\"}"}', NULL), - (576230, '0xd28190d6c1505c5090c8887bd4ea1b4816f534fa', 0, 1, '2024-05-06 11:54:44+00', 0, 3, '{"fid": 477674, "object": "user", "pfp_url": "https://i.imgur.com/lSYNMEx.jpg", "profile": {"bio": {"text": "F4F / follow 4 follow / 좋아요🔥 댓글🔥 리캐스트🔥 팔로우🔥 한분 한분 빠짐없이 찾아갈게요", "mentioned_profiles": []}}, "username": "seik0691", "power_badge": false, "display_name": "seik0691", "active_status": "inactive", "verifications": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "follower_count": 2440, "custody_address": "0x0456381954f63442eb1313b89231b46e770cd9f5", "following_count": 2425, "verified_addresses": {"eth_addresses": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "sol_addresses": []}}', '{"{\"url\":\"Listen to IU (아이유) - Love wins all by whakfl on #SoundCloud https://on.soundcloud.com/xDrzz\"}"}', NULL), - (600633, '0x827105d4efffb10b297c9310bb49fc99fc7320f2', 0, 1, '2024-05-06 12:38:23+00', 0, 5, '{"fid": 433035, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48a31b2b-d166-4e85-5292-74f512ec5d00/rectcrop3", "profile": {"bio": {"text": "워린이𖤐", "mentioned_profiles": []}}, "username": "tenpercent", "power_badge": false, "display_name": "솔🐣", "active_status": "inactive", "verifications": ["0x05325fc71d0fd9d42cb3e3a223bac6b0cf53ff9c"], "follower_count": 640, "custody_address": "0x81664361be65ea4cac8de8fff67897a65f1c1870", "following_count": 845, "verified_addresses": {"eth_addresses": ["0x05325fc71d0fd9d42cb3e3a223bac6b0cf53ff9c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/deaddawnair/z8ntm8lf37bz\"}"}', 'sonata'), - (543616, '0xf6ab8d0b4a55c07ead5491b0fb72c1331a408558', 0, 1, '2024-05-06 10:03:57+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2356, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B6V9E\"}"}', 'sonata'), - (594602, '0x2f0a33fc39baaf07067ee5982a1f3519b03a6346', 0, 1, '2024-05-06 12:25:32+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 44, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dyFdfMjymWS2knrQ7\"}"}', NULL), - (542989, '0x27d8a4f6444654ef23ac51a46ee4d5c3fda0baae', 0, 1, '2024-05-06 10:02:54+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kdv3zicXCmwrL1w39\"}"}', 'sonata'), - (600653, '0x43e1099494dec1c6a48f8e0057ae0fe5fe199c6e', 0, 1, '2024-05-06 12:38:26+00', 0, 2, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3548, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2012, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/5v8n7Mc9jGfxZjjd9\"}"}', 'sonata'), - (570687, '0x2dc9453782b5bba109eed481039adb5b9fbe804a', 0, 1, '2024-05-06 11:35:23+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G7p8j\"}"}', 'sonata'), - (542507, '0xa408a66cd743bcb222e1d0f1cf6069c7d0252b29', 0, 1, '2024-05-06 10:01:11+00', 0, 3, '{"fid": 506311, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7cafab0e-a961-47a7-fa4d-1aca4236a100/rectcrop3", "profile": {"bio": {"text": "F4f Au life ", "mentioned_profiles": []}}, "username": "totoro-", "power_badge": false, "display_name": "Totoro", "active_status": "inactive", "verifications": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "follower_count": 583, "custody_address": "0x3a6c6aaf81924bd0f76f9420131f7a2c4e7d5586", "following_count": 1017, "verified_addresses": {"eth_addresses": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sae-yune-lee/sounds-1?si=0ad001e48ae24b1387623c4df6f20ce9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (609949, '0xb21a41174064d3f4384c6fc611954f435ba45995', 0, 1, '2024-05-06 13:00:55+00', 0, 7, '{"fid": 503239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c42c66b2-9338-45e6-e1eb-5d5b3541bc00/rectcrop3", "profile": {"bio": {"text": "i''m happy day you to happy!!", "mentioned_profiles": []}}, "username": "mangolike", "power_badge": false, "display_name": "misslee", "active_status": "inactive", "verifications": ["0x47a7f4a461ef9b6b1646343afaa1ccbf646d4c45"], "follower_count": 994, "custody_address": "0x0e16641794cede6b5cb7c3a31cfa64d2b05ece57", "following_count": 851, "verified_addresses": {"eth_addresses": ["0x47a7f4a461ef9b6b1646343afaa1ccbf646d4c45"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/494f6470-10e5-4bcd-505d-35adf618c400/original\"}","{\"url\":\"https://on.soundcloud.com/5fxbn\"}"}', 'sonata'), - (534710, '0x3322ffbcbc94f7177cefc153cf1df25fdda82115', 0, 1, '2024-05-06 09:38:28+00', 0, 0, '{"fid": 446972, "object": "user", "pfp_url": "https://i.imgur.com/PReb6Qm.jpg", "profile": {"bio": {"text": "Use the weekends to build the life you''ve always wanted.", "mentioned_profiles": []}}, "username": "hsyn", "power_badge": false, "display_name": "Hsyn", "active_status": "inactive", "verifications": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "follower_count": 356, "custody_address": "0xf1ee30b6c5e599b198d04a7faec24fe2c7d22cb0", "following_count": 475, "verified_addresses": {"eth_addresses": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dj-beto-21/who-can-it-be-now-october-1982?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (574552, '0x394786458de309c667bdcb3fc578b2af09430a58', 0, 1, '2024-05-06 11:48:03+00', 0, 4, '{"fid": 501732, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8635c48c-a8ae-4010-8932-0fb00b29d000/rectcrop3", "profile": {"bio": {"text": "Your daily request has arrived.\nDo you want to accept it?", "mentioned_profiles": []}}, "username": "lisashin", "power_badge": false, "display_name": "lisashin", "active_status": "inactive", "verifications": ["0xdb8538d46da031a07e3ee1bf2b2878b491db57a9"], "follower_count": 898, "custody_address": "0x6b7e8d6cd49e3c3cc1e7effc84cd2f945d0cc1a8", "following_count": 1038, "verified_addresses": {"eth_addresses": ["0xdb8538d46da031a07e3ee1bf2b2878b491db57a9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uBAEn\"}"}', 'sonata'), - (538230, '0x51199142585353a02e82b9b7160247f9c2045d17', 0, 1, '2024-05-06 09:47:48+00', 0, 2, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1264, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 888, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamiroquai/too-young-to-die\"}"}', NULL), - (587721, '0xfa7683e0e0d4619462c391c0741dc1dfdc44feff', 0, 1, '2024-05-06 12:10:12+00', 0, 1, '{"fid": 509267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1ad2d36-bf56-4b2e-ee07-6e4fc2d98000/rectcrop3", "profile": {"bio": {"text": "I came from the darkness to the colorful world and\nI return from the colorfulness of the universe to the darkness of unity...", "mentioned_profiles": []}}, "username": "!509267", "power_badge": false, "display_name": "DrH", "active_status": "inactive", "verifications": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "follower_count": 262, "custody_address": "0x3987a9a108e20e705fece41f2ee3a49a25cd0f05", "following_count": 717, "verified_addresses": {"eth_addresses": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8YjmvLmftDdefFsh7\"}"}', NULL), - (557612, '0x9c60720e1887767d91afba977d6bd8b17e491535', 0, 1, '2024-05-06 10:49:52+00', 0, 0, '{"fid": 477866, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7289a079-b7cd-44c1-a0fd-f6d653722e00/rectcrop3", "profile": {"bio": {"text": "Love degen .\nLove fuzzy fox .🦊\n\n", "mentioned_profiles": []}}, "username": "haoshuai520", "power_badge": false, "display_name": "Haoshuai.⌐◨-◨🎩", "active_status": "inactive", "verifications": ["0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd", "0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd"], "follower_count": 127, "custody_address": "0x4284f1d9052be0f69128b49f15e30920716dec01", "following_count": 394, "verified_addresses": {"eth_addresses": ["0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd", "0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fkj-2/william-de-vaughn-be-thankful\"}"}', NULL), - (562912, '0x9bbc619dcda145eac0dda05e3de21a8ff3901b45', 0, 1, '2024-05-06 11:04:34+00', 0, 0, '{"fid": 426662, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b47cd49-a73f-4253-1ce9-a104316e8100/original", "profile": {"bio": {"text": "Hello :) Follow me 💓 \n💚용용입니다💚\nhttps://www.alfafrens.com/channel/0x2264443aA20C382D4f18D63df550002655423951\n\n\n", "mentioned_profiles": []}}, "username": "yg-dragon", "power_badge": false, "display_name": "용용🔵🍖🎩", "active_status": "inactive", "verifications": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "follower_count": 2023, "custody_address": "0x33ed204170cc1d73a6905ca72ad16563e01113c4", "following_count": 3278, "verified_addresses": {"eth_addresses": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ihwak/day6-ywb-cover-by-ihwak\"}"}', NULL), - (543617, '0x34243eddd59a40f4b1575e0d1d3c58fc651a0aed', 0, 1, '2024-05-06 10:04:10+00', 0, 4, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3149, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2970, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qp99A\"}"}', 'sonata'), - (538948, '0x234e800e812264eb6a5d2afcbb52f59d29189dc7', 0, 1, '2024-05-06 09:50:28+00', 0, 0, '{"fid": 282725, "object": "user", "pfp_url": "https://i.imgur.com/dqY42gy.jpg", "profile": {"bio": {"text": "Shining Venus", "mentioned_profiles": []}}, "username": "zohi", "power_badge": false, "display_name": "Zohreh🎩🔮", "active_status": "inactive", "verifications": ["0x239242cf675591e3cfc3bc818dc1d476bb538c2e"], "follower_count": 1605, "custody_address": "0x130a1f79fe2586a61d98f5319f7fbc56ae4e077b", "following_count": 2578, "verified_addresses": {"eth_addresses": ["0x239242cf675591e3cfc3bc818dc1d476bb538c2e"], "sol_addresses": ["3qPXQesxDkYA6kGe1nyAnxuJcTcKcqDt8Wz4cecPqGm5"]}}', '{"{\"url\":\"https://soundcloud.com/adamofficial/ghost-town?si=344ef20b4a5c41d0b36a896fedce39e8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (538214, '0xebd94d4a7f332956ff708f06f7f6bb4a3c93f252', 0, 1, '2024-05-06 09:48:01+00', 0, 2, '{"fid": 498410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ae8a858-bc3b-4145-594d-28aae99d1f00/rectcrop3", "profile": {"bio": {"text": "Hello! Nice to meet you! 방갑습니다! 슈캐로 모두 찾아가 인사드립니다! 잘부탁드립니다!!😆", "mentioned_profiles": []}}, "username": "gism", "power_badge": false, "display_name": "gism", "active_status": "inactive", "verifications": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "follower_count": 1444, "custody_address": "0xfd3503e296ef08d2d93f143d589f9773f47d2484", "following_count": 1546, "verified_addresses": {"eth_addresses": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sila-maumalanga/drake-come-thru?si=ccfb42bc3339479cb22fd4a2ef69cb2a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (571451, '0xea32ac9835104f9896ee49bb7fc706d397cb930c', 0, 1, '2024-05-06 11:38:27+00', 0, 10, '{"fid": 486262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/908c18c1-a0dd-4cd5-a4c6-c9b61329b300/rectcrop3", "profile": {"bio": {"text": "Hey~ guys 😍like ❣️recast 🔄reply \n💌is good👍 ", "mentioned_profiles": []}}, "username": "yuchanism", "power_badge": false, "display_name": "유차니즘🌈", "active_status": "inactive", "verifications": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "follower_count": 1967, "custody_address": "0xdf28316ba634e3fecdd5c74d269feb378695d1cb", "following_count": 462, "verified_addresses": {"eth_addresses": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/46ES1HHyUZchUeDv5\"}"}', 'sonata'), - (538549, '0xacce2a74ece197948b278271b3feef5794c3f5e7', 0, 1, '2024-05-06 09:49:10+00', 0, 2, '{"fid": 447737, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fcf5d6f-1a50-4949-29bd-42321380a000/rectcrop3", "profile": {"bio": {"text": "레트로 회사원", "mentioned_profiles": []}}, "username": "hiddensinger", "power_badge": false, "display_name": "🟣홍사원🟣", "active_status": "inactive", "verifications": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "follower_count": 2709, "custody_address": "0x5df0fad42f00014b8cdd448e352e39f0a65b471a", "following_count": 3113, "verified_addresses": {"eth_addresses": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EYevryVzz986Ta2E7\"}"}', NULL), - (530244, '0x883268cb4e1cae4806a38c0545cf086a15efae1d', 0, 1, '2024-05-06 09:32:43+00', 0, 4, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2070, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1723, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MdUJM\"}"}', 'sonata'), - (387879, '0x0680dcb5e71bcf927da3b55cbf7506a267bc4e27', 0, 1, '2024-05-06 04:17:29+00', 0, 0, '{"fid": 272706, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16017ada-f877-4775-397d-6b9d9633c700/rectcrop3", "profile": {"bio": {"text": "Make the lifestyle /higher together ↑² ", "mentioned_profiles": []}}, "username": "0xmaruko", "power_badge": false, "display_name": "0xMaru↑²", "active_status": "inactive", "verifications": ["0xae948f39dce7c0ccfcfba21bfb07ed4f8f943cdc"], "follower_count": 1844, "custody_address": "0x77811898941a62dbdbc778050d7d9fe7f426bfc3", "following_count": 847, "verified_addresses": {"eth_addresses": ["0xae948f39dce7c0ccfcfba21bfb07ed4f8f943cdc"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/greyseymour/swarpies-claims-to-justice?referral_source=link \"}"}', NULL), - (587748, '0xaa775127b9cda774adb0be2ef5cf0887321ba6b8', 0, 1, '2024-05-06 12:06:49+00', 0, 5, '{"fid": 380784, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a805aaa2-e72c-4b2c-a553-f9df5e72fc00/rectcrop3", "profile": {"bio": {"text": "대단히 반갑습니다.\n상당히 고맙습니다.", "mentioned_profiles": []}}, "username": "under-standing", "power_badge": false, "display_name": "Diya", "active_status": "inactive", "verifications": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "follower_count": 4346, "custody_address": "0x31ae1e98c325a05696c91a31f9931293f1d0d224", "following_count": 3397, "verified_addresses": {"eth_addresses": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HrPMAwL8wXb7PntdA\"}"}', 'sonata'), - (549208, '0xff8f167843c12ea297c9611dbcc44d9815701310', 0, 1, '2024-05-06 10:20:03+00', 0, 11, '{"fid": 447737, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fcf5d6f-1a50-4949-29bd-42321380a000/rectcrop3", "profile": {"bio": {"text": "노래 추천해드립니다 🎶", "mentioned_profiles": []}}, "username": "hiddensinger", "power_badge": false, "display_name": "🟣홍사원🟣", "active_status": "inactive", "verifications": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "follower_count": 2710, "custody_address": "0x5df0fad42f00014b8cdd448e352e39f0a65b471a", "following_count": 3114, "verified_addresses": {"eth_addresses": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oKDYkFhPdH1rgSvv6\"}"}', 'sonata'), - (545412, '0xb5defddd6e720f2518fbb83e9649c8c4338b3514', 0, 1, '2024-05-06 10:09:46+00', 0, 5, '{"fid": 469305, "object": "user", "pfp_url": "https://i.imgur.com/eIrhOrd.jpg", "profile": {"bio": {"text": "I want to thank everyone who clicked on me.\nI''m interested in crypto markets.\nI''m also interested in food and traveling.\nI wish you well.", "mentioned_profiles": []}}, "username": "jrebuild", "power_badge": false, "display_name": "jrebuild", "active_status": "inactive", "verifications": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "follower_count": 2100, "custody_address": "0x25d482ab85de61a33c7ec7985b255f64ddab73d0", "following_count": 2075, "verified_addresses": {"eth_addresses": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/e-p-w/brown-eyes-two-things-needed-1?si=c5b1f6104b6d4661b5fcadf57a8b8844&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (537576, '0xb9adfc7701909075e0734b80abbf250ea071a3e9', 0, 1, '2024-05-06 09:46:25+00', 50, 0, '{"fid": 328948, "object": "user", "pfp_url": "https://i.imgur.com/0uCFGPh.jpg", "profile": {"bio": {"text": "crypto/mystery/game", "mentioned_profiles": []}}, "username": "fffftttt", "power_badge": false, "display_name": "fffftttt", "active_status": "inactive", "verifications": ["0x29e51338196ca590ee1f713e891834f5ebedacfe"], "follower_count": 504, "custody_address": "0xb29ab071c1f3070d12ea5921d70b6cd1317ca885", "following_count": 512, "verified_addresses": {"eth_addresses": ["0x29e51338196ca590ee1f713e891834f5ebedacfe"], "sol_addresses": ["XCqGhhmDnP7tuwE1Gtnvnqt8VxANa5Lb3k7d5EmYEK6"]}}', '{"{\"url\":\"https://soundcloud.com/four-tet/loved?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (529553, '0x84375bd2f981f344c71413f8afc70cec948d0a2f', 0, 1, '2024-05-06 09:31:40+00', 0, 2, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3939, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2226, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/chantang0503/2-feat\"}"}', NULL), - (545436, '0xec0e20eb0d484c140fd3b4b2d3df8b4a6570be01', 0, 1, '2024-05-06 10:08:52+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/C7CGfrDVrjesYDLd6\"}"}', 'sonata'), - (545283, '0x41372946ffbb65a3658b93c24c341c64e410dab4', 0, 1, '2024-05-06 10:07:23+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RHBQLFBfgzxjXiPB9\"}"}', 'sonata'), - (400944, '0xbd93b93e14a729e8ac74df1a62f606464b03028f', 0, 1, '2024-05-06 04:54:33+00', 0, 0, '{"fid": 326415, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1687c91-1ecd-4d5b-c89b-faa5c76a8a00/original", "profile": {"bio": {"text": "I make psychedelic music and art as Infinati. Sound and soul architect.\nhttps://infinati.wtf", "mentioned_profiles": []}}, "username": "infinati", "power_badge": false, "display_name": "Infinati", "active_status": "inactive", "verifications": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "follower_count": 67, "custody_address": "0xba3bec28da1d9eb0f1a17203a3fb9d607258cf18", "following_count": 208, "verified_addresses": {"eth_addresses": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/infinati/organized-slime?referral_source=link\"}"}', NULL), - (589629, '0xd0c4559a8a6840c7aabf4632a6f9807b4713bdff', 0, 1, '2024-05-06 12:12:59+00', 0, 0, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 954, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1358, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chrn/the-black-skirts-everything?in=ynyizzmmqaj9/sets/7y21so27i5rx&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (558129, '0x708f18079e277fe8562bf25e570a60df4bf13308', 0, 1, '2024-05-06 10:51:29+00', 0, 4, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2358, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4120, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JNu2n\"}"}', 'sonata'), - (561612, '0xcb6be43fe53706ab4c8be5bd901028045404cc9f', 0, 1, '2024-05-06 11:02:36+00', 0, 2, '{"fid": 417522, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/797a9698-ccb7-4a4e-e93f-b09c4c892300/rectcrop3", "profile": {"bio": {"text": "Follow artists Interested in fine art", "mentioned_profiles": []}}, "username": "parhan", "power_badge": false, "display_name": "steven🎩", "active_status": "inactive", "verifications": ["0xa5d967c3c33a3f66674678f4f21e389e5cd8637b"], "follower_count": 1072, "custody_address": "0x6e6e24d22900b98cdb4692213cd6f84ac902bfed", "following_count": 1075, "verified_addresses": {"eth_addresses": ["0xa5d967c3c33a3f66674678f4f21e389e5cd8637b"], "sol_addresses": ["GWJX38aKdTKhErtVaBHZBWNMWRpidAkvvJnUyXWphvvQ"]}}', '{"{\"url\":\"https://on.soundcloud.com/C7Q5uzzV46aKuMSz5\"}"}', 'sonata'), - (600123, '0xb7a9bb7b298700e7a39c5410e455c52a3381a416', 0, 1, '2024-05-06 12:37:08+00', 0, 3, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/heyimmiva/because-of-you-ne-yo?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (416260, '0x877dbee82d58d3e468112108dd22d5c7e8edc5f5', 0, 1, '2024-05-06 05:40:10+00', 0, 1, '{"fid": 16236, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/ea436138ed433b0e2aecf47bdabf9f19.png?w=500&auto=format", "profile": {"bio": {"text": "🎛️Experimental electronic #Web3Music #MusicNFT | 🤝🏽 Cultural management | 🖤 @sitiocaos cofounder | 🌿 sttsm.lens", "mentioned_profiles": []}}, "username": "sttsm", "power_badge": false, "display_name": "STTSM", "active_status": "inactive", "verifications": ["0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e"], "follower_count": 196, "custody_address": "0x995233179b880dee23002446103923bf18c65739", "following_count": 536, "verified_addresses": {"eth_addresses": ["0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/sttsm/degen-jam-1?referral=0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e\"}"}', NULL), - (591916, '0xfc567da78410facfd23b8739b87d83bcea947fcc', 0, 1, '2024-05-06 12:20:24+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/search?q=Isabelle%20b\"}"}', NULL), - (591485, '0x932726b5a2588f46f17a207ba8fa4f6435933828', 0, 1, '2024-05-06 12:18:24+00', 0, 0, '{"fid": 339616, "object": "user", "pfp_url": "https://i.imgur.com/RcyAUym.jpg", "profile": {"bio": {"text": "I am a painter and a 👒crypto enthusiast", "mentioned_profiles": []}}, "username": "zahraderakhshi", "power_badge": false, "display_name": "zahraad🎩🔵🍖🔄", "active_status": "inactive", "verifications": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "follower_count": 1928, "custody_address": "0x043933859392c1ba966b3bf4c0db15af7e258330", "following_count": 3091, "verified_addresses": {"eth_addresses": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Andy Williams -(Where Do I Begin ) Love Story (1971) by Ahmed Maher 235 on #SoundCloud https://on.soundcloud.com/rhAN3\"}"}', NULL), - (633688, '0xefbbafc3c1e082692909bdf4418847a51fb09030', 0, 1, '2024-05-06 13:55:48+00', 0, 4, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 238, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 347, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/josh-bean-1/radiohead-paranoid-android-live-glastonbury-2003?si=cabea3d569f843009aeea22aadf0902b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (565840, '0x62e6fe30740fe5c9173c15e12b8663481eeb3363', 0, 1, '2024-05-06 11:14:57+00', 0, 5, '{"fid": 508575, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb3389ba-81bc-42db-3e0d-387741f91c00/rectcrop3", "profile": {"bio": {"text": "I standup for you. like reply quote ~ for you", "mentioned_profiles": []}}, "username": "!508575", "power_badge": false, "display_name": "Marcokim2", "active_status": "inactive", "verifications": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "follower_count": 474, "custody_address": "0x6a44ba7ae013effc69f9590a2d950252d28909c9", "following_count": 933, "verified_addresses": {"eth_addresses": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8b47N\"}"}', 'sonata'), - (558132, '0x35fe29df6c4886514b18a3400ab75ce0bf9ce505', 0, 1, '2024-05-06 10:51:30+00', 0, 3, '{"fid": 417261, "object": "user", "pfp_url": "https://aoxjfk5aks5jufxlavz5ms6btpko3aatqfzanhhvtadb5j7n2v5q.arweave.net/A66Sq6BUupoW6wVz1kvBm9TtgBOBcgac9ZgGHqft1Xs/", "profile": {"bio": {"text": "Just make money", "mentioned_profiles": []}}, "username": "miladjz", "power_badge": false, "display_name": "Miladjz", "active_status": "inactive", "verifications": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "follower_count": 300, "custody_address": "0x0aee32bc354b9a5f1f03ee5db99f491151029658", "following_count": 381, "verified_addresses": {"eth_addresses": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Chesh To Chesh by Garsha Rezaei on #SoundCloud https://soundcloud.com/garsharezaei/chesh-to-chesh?ref=clipboard&p=a&c=0&si=e370ea2225644291a82a32399396bf5f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (565852, '0xa8b152bb98fa9529ca7d6bc5e537bbcd1ea82443', 0, 1, '2024-05-06 11:14:18+00', 0, 5, '{"fid": 491718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44f5849-69cc-4805-c6aa-5ef274a2fa00/rectcrop3", "profile": {"bio": {"text": "잘부탁드려요 맞팔갑니다 디젠 파이팅", "mentioned_profiles": []}}, "username": "hduck43", "power_badge": false, "display_name": "hduck43", "active_status": "inactive", "verifications": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "follower_count": 1394, "custody_address": "0x313bb25e8e5a06110334088d0db7fb4979a48e8b", "following_count": 2316, "verified_addresses": {"eth_addresses": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ScQ4pGT7DvLJgPcy7\"}"}', 'sonata'), - (649464, '0x8d6468d88bb591970ce3d4dce276f386b1c57ca7', 0, 1, '2024-05-06 14:34:45+00', 0, 0, '{"fid": 506048, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2239ef37-7c06-4dc1-9c89-8e124f301b00/rectcrop3", "profile": {"bio": {"text": "I love Warpcast !", "mentioned_profiles": []}}, "username": "jyp-41", "power_badge": false, "display_name": "jyp-41", "active_status": "inactive", "verifications": ["0xf7d760e82256e6674218ca0b5ad75b8dee987ab5"], "follower_count": 98, "custody_address": "0xffa59babce2d4d4d73b6468dacb2b30302fd9fa1", "following_count": 112, "verified_addresses": {"eth_addresses": ["0xf7d760e82256e6674218ca0b5ad75b8dee987ab5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gamBusCAPv423nDEA\"}"}', 'sonata'), - (608740, '0xe5165a02e85b368dba4ee7f99342ef670cc7b965', 0, 1, '2024-05-06 12:57:42+00', 0, 2, '{"fid": 503140, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2de648f-2d6d-4a8b-61c3-f84fe3ecb200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mtm", "power_badge": false, "display_name": "Khgoo", "active_status": "inactive", "verifications": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "follower_count": 1336, "custody_address": "0xb9b977dc77ca2b13c12603793f1d7ef9e8739f6b", "following_count": 1562, "verified_addresses": {"eth_addresses": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DE6K6\"}"}', 'sonata'), - (613259, '0x3d7baf1809e385d4ae4cda1f58fffcee9318a760', 0, 1, '2024-05-06 13:11:13+00', 0, 0, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 732, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1088, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qv2pUQftVPeMJa9U8\"}"}', NULL), - (628587, '0xee36e6ae5ba4499fb838b0561e0dabb90f34a9eb', 0, 1, '2024-05-06 13:45:11+00', 0, 3, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍\n\nSuperRare sonata love", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1660, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1806, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qGTGKLduoLUL5TT98\"}"}', 'sonata'), - (544165, '0xdfed6fcbd6a6ac51ccbfe0234456aa5d4793a77e', 0, 1, '2024-05-06 10:04:49+00', 0, 2, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8hdJsJp2cakG1jVaA\"}"}', 'sonata'), - (675825, '0x4e02f379cb1d2defc1e1a5fd6bfd471f78e30dc1', 0, 1, '2024-05-06 16:12:28+00', 0, 3, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2662, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3133, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c7GitwUKhjNnnQ9w6\"}"}', 'sonata'), - (606312, '0xf009b1a9aa115829a2a279b8f72a873a0f941ae3', 0, 1, '2024-05-06 12:50:02+00', 0, 5, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2358, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iWAT3\"}"}', 'sonata'), - (606809, '0x6cf9c3ec97e367b1cbe8aa53299f99055605ce5f', 0, 1, '2024-05-06 12:52:03+00', 0, 10, '{"fid": 282463, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28a8fe0a-c596-4eef-2ed8-3ffcc359a900/original", "profile": {"bio": {"text": "FID 282463 | @ciniz disciple | @binji.eth my crush | I love @pichi because of pichi pichi | @puffdood.eth tickler", "mentioned_profiles": []}}, "username": "shiguma", "power_badge": false, "display_name": "Shigubae🎩🍉🍖😆", "active_status": "inactive", "verifications": ["0xf83d1913ed56045a9ba28c863be6457f60ac747c", "0x308fecdd63233db3745a2c10c9489cdd44a26e36"], "follower_count": 601, "custody_address": "0x1c1662ea54f96b687f564977565eb35951126bc9", "following_count": 880, "verified_addresses": {"eth_addresses": ["0xf83d1913ed56045a9ba28c863be6457f60ac747c", "0x308fecdd63233db3745a2c10c9489cdd44a26e36"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0o9zmvc5f3EFApU52PPIyW?si=uS8Dn2sGR9CCDDiIovI7dw\"}"}', NULL), - (538958, '0xb0d452bae32072416efc113da82972d9e9b50129', 6185, 1, '2024-05-06 09:50:17+00', 0, 1, '{"fid": 348751, "object": "user", "pfp_url": "https://i.imgur.com/2lv5PbH.jpg", "profile": {"bio": {"text": "Left the beautiful moment.", "mentioned_profiles": []}}, "username": "cca", "power_badge": false, "display_name": "xiatian", "active_status": "inactive", "verifications": ["0x51e432df264c3315bb0d1aa70d265cdf0792c679"], "follower_count": 34, "custody_address": "0xf075d210d4606aa68faa1046b95678c5804c7d48", "following_count": 68, "verified_addresses": {"eth_addresses": ["0x51e432df264c3315bb0d1aa70d265cdf0792c679"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/sadye/freak-like-me?referral=0x51e432df264c3315bb0d1aa70d265cdf0792c679&referral_source=link\"}"}', NULL), - (568345, '0x5b39eca5a7de61839738a174fdec03e2a8391595', 0, 1, '2024-05-06 11:31:17+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mLxWw\"}"}', 'sonata'), - (542638, '0x3a27acc76d793ff5995636e9a8798a7c30b9e5a0', 0, 1, '2024-05-06 10:01:45+00', 0, 1, '{"fid": 358441, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e11fec34-4e16-45f7-8a48-b07a180c6f00/rectcrop3", "profile": {"bio": {"text": "iam JANATAN.v , I❤️ crypto\nholder degen", "mentioned_profiles": []}}, "username": "amiralivakili", "power_badge": false, "display_name": "AMIRALI_VAKILI.t", "active_status": "inactive", "verifications": ["0x62f92b9f94919196cab5a929f14ffd89cabbdc13"], "follower_count": 1593, "custody_address": "0x3f5de9ab3b5d33bb62982e94ccbfb16f57d54799", "following_count": 1894, "verified_addresses": {"eth_addresses": ["0x62f92b9f94919196cab5a929f14ffd89cabbdc13"], "sol_addresses": []}}', '{"{\"url\":\"Listen to BEEM / بیم by YAS on #SoundCloud https://soundcloud.com/yastunes/beem?ref=clipboard&p=a&c=0&si=aa9673c73f8d4bd6a6f1af84e1e99eaf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (558360, '0x7b0e16f6ceefddfbd9ae049341cd8bb575af848b', 0, 1, '2024-05-06 10:52:18+00', 0, 2, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2358, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4120, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Y9zu7\"}"}', 'sonata'), - (628586, '0xbd7531041d658241d5b761d5647b00e0b465b6d4', 0, 1, '2024-05-06 13:44:35+00', 0, 1, '{"fid": 500789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ecf32acd-8f22-4840-b9cf-1387856adc00/rectcrop3", "profile": {"bio": {"text": "Be happy everyone!!", "mentioned_profiles": []}}, "username": "gummy8103", "power_badge": false, "display_name": "gummy8103", "active_status": "inactive", "verifications": ["0xacf1940b2ed91bf35bc14fe9b3c1e00add4e82df"], "follower_count": 1175, "custody_address": "0xa0b3d463c8777ccbd412fdbc8d81a59217c8cb6d", "following_count": 1090, "verified_addresses": {"eth_addresses": ["0xacf1940b2ed91bf35bc14fe9b3c1e00add4e82df"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vnRwUVWbUHNfG3fr7\"}"}', 'sonata'), - (566758, '0x9add62c2804ed562dcf0208cca6343d18e5533c6', 0, 1, '2024-05-06 11:21:14+00', 0, 1, '{"fid": 316433, "object": "user", "pfp_url": "https://i.imgur.com/Ui5famV.jpg", "profile": {"bio": {"text": "Turn your wounds into wistom ✨✨\n행복한 워캐인이 되어 보아요 🤘🤘", "mentioned_profiles": []}}, "username": "dechard", "power_badge": false, "display_name": "KaonasHi", "active_status": "inactive", "verifications": ["0xea2653aae908ac94d7529487f4b11dcf3f7b25c6"], "follower_count": 2730, "custody_address": "0x6beb45614d20efcc9ca728fd2eb829b95ba21c0e", "following_count": 3953, "verified_addresses": {"eth_addresses": ["0xea2653aae908ac94d7529487f4b11dcf3f7b25c6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tailor-kim/tyla-water-tailor-remix-nandemonaiya?in=sc-playlists-kr/sets/dance-energy&si=845400dddc254038b4a7dc8e94beec1f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmTh1DtFSsjrtQ9SB5Aht5H3HML5StRkLAg1L4yFRrY5EQ?filename=tyla-water-800x640.webp\"}"}', 'sonata'), - (600631, '0xdd5b2bee86cdf2d2665d1b502bf5683d85866a78', 0, 1, '2024-05-06 12:38:18+00', 0, 5, '{"fid": 435513, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/086bb923-eea3-4af4-b4ce-06be6ac17700/rectcrop3", "profile": {"bio": {"text": "I love Oh duck 🐤 Copyright ©️ by Oh duck ", "mentioned_profiles": []}}, "username": "sia08", "power_badge": false, "display_name": "Ori🫂", "active_status": "inactive", "verifications": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "follower_count": 1312, "custody_address": "0x547f99de111a162591527e4e0d0a14ed68024e2c", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qqazumlaagxb/crush-ost-part-4-mp3\"}"}', 'sonata'), - (627054, '0xb146bf28a3c0f42029b16eaa4a70e5b3a5738358', 0, 1, '2024-05-06 13:41:30+00', 0, 0, '{"fid": 422003, "object": "user", "pfp_url": "https://i.imgur.com/KVduhzo.jpg", "profile": {"bio": {"text": "Digital drawings ✍🏻\nArt and feelings 🫧\nhttps://foundation.app/@ewi", "mentioned_profiles": []}}, "username": "ewi", "power_badge": false, "display_name": "ewi", "active_status": "inactive", "verifications": ["0x843953c8133e12ac7c6eca155a94758ede30a202"], "follower_count": 154, "custody_address": "0x1d26d5b2aa4d1503f1dab476e84da2f5d9bf774d", "following_count": 128, "verified_addresses": {"eth_addresses": ["0x843953c8133e12ac7c6eca155a94758ede30a202"], "sol_addresses": ["GkZ22wRJkhiTYDGzfh455V3MtNiDhgYAThr4m26Dnh95"]}}', '{"{\"url\":\"https://open.spotify.com/track/0W1uTK6I97CbjFKAVtRGfK?si=1Y_73nO-Q86B-zevyQNWaw&context=spotify%3Asearch%3Aqueen%2Btoo%2Bmuch\"}"}', NULL), - (742573, '0x6e09ac93bf70408583184fb90175f93479f9eb88', 0, 1, '2024-05-06 22:42:53+00', 0, 1, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 481, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 771, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QcLxe\"}"}', 'sonata'), - (542204, '0x47b8615c75bed3bc70f54c07c8b3b9f089286986', 0, 1, '2024-05-06 09:58:19+00', 0, 6, '{"fid": 508082, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09e1b144-51f7-4e45-e20c-e6c0a2c33600/rectcrop3", "profile": {"bio": {"text": "팔루우 해주시면 맞팔 고고^^\n교감하며 서로 아픔을 이겨봐요♡♡♡", "mentioned_profiles": []}}, "username": "!508082", "power_badge": false, "display_name": "greenever", "active_status": "inactive", "verifications": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "follower_count": 798, "custody_address": "0xd37464128c23cb688dedb4972b43394fedfdcce8", "following_count": 886, "verified_addresses": {"eth_addresses": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-535718053/sets/the-black-skirt?si=16403182922849368c477846a787645f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (545391, '0x13b07a14fd961dec5dcbfa7ed062d64ad8409a98', 0, 1, '2024-05-06 10:08:15+00', 0, 2, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3450, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 4107, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5fe52e1-98a9-458e-386e-43a7bc499400/original\"}","{\"url\":\"https://soundcloud.com/user-977421934/the-last-of-the-real-ones?si=0c32b906b71a4f2b9b566029b5db7f10&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (563090, '0xa5d4593c269469bd7ade8657174a35961fff2877', 0, 1, '2024-05-06 11:06:17+00', 0, 0, '{"fid": 426662, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b47cd49-a73f-4253-1ce9-a104316e8100/original", "profile": {"bio": {"text": "Hello :) Follow me 💓 \n💚용용입니다💚\nhttps://www.alfafrens.com/channel/0x2264443aA20C382D4f18D63df550002655423951\n\n\n", "mentioned_profiles": []}}, "username": "yg-dragon", "power_badge": false, "display_name": "용용🔵🍖🎩", "active_status": "inactive", "verifications": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "follower_count": 2023, "custody_address": "0x33ed204170cc1d73a6905ca72ad16563e01113c4", "following_count": 3278, "verified_addresses": {"eth_addresses": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/anfe7g0j9dqd/akmu-love-lee-3?ref=clipboard&p=a&c=0&si=36f6bb53f4a74d1da5c38008f5c7ce61&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (613257, '0xfd961ccd597cc2cba6d34373e3356558b5228a68', 0, 1, '2024-05-06 13:11:39+00', 0, 6, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1517, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bombay-bicycle-club/luna?si=10b5965976424c16b892ad752676bad4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (564635, '0x7a6b442990c22e2f4f9e2ae02dd78ee21d916b37', 0, 1, '2024-05-06 11:10:03+00', 0, 0, '{"fid": 492266, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c12124f-b767-49c0-334c-3f35755bfe00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mostafasarvari79", "power_badge": false, "display_name": "Mostafa 🎩 🔄🍖", "active_status": "inactive", "verifications": ["0x72fbd8353685ba8e7a32825b04b767cf7647ff32", "0x78ae986bb040fe8871405311bdd73c992391d3a1"], "follower_count": 113, "custody_address": "0xa98f97412aae7dde5f2de54918968b5469f98103", "following_count": 217, "verified_addresses": {"eth_addresses": ["0x72fbd8353685ba8e7a32825b04b767cf7647ff32", "0x78ae986bb040fe8871405311bdd73c992391d3a1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yastunes/beem?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (454097, '0x6836d624faf8388dd6c8be97ccb025a34374d961', 0, 1, '2024-05-06 06:49:44+00', 0, 4, '{"fid": 352294, "object": "user", "pfp_url": "https://i.imgur.com/3jURulC.png", "profile": {"bio": {"text": "I love the airdrops", "mentioned_profiles": []}}, "username": "wundawulf", "power_badge": false, "display_name": "Wunda 🎩 🔵📸", "active_status": "inactive", "verifications": ["0x5d7f5ca8e26c44e009ff378f9608c6e332b0239f"], "follower_count": 519, "custody_address": "0xd31717e9829d9d46659acf8e71f682ef266886ae", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x5d7f5ca8e26c44e009ff378f9608c6e332b0239f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/cella/its-you\"}"}', NULL), - (633681, '0xd57283b7911a828d9fd77ac82abe9731a5d10594', 0, 1, '2024-05-06 13:56:19+00', 0, 2, '{"fid": 471610, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dbd09e4e-019b-44b0-1e4e-830bd4491d00/rectcrop3", "profile": {"bio": {"text": "I am library 🌺🌺🌺", "mentioned_profiles": []}}, "username": "daraazaryar", "power_badge": false, "display_name": "@Daraazaryar 🍗🎩🔵🍖", "active_status": "inactive", "verifications": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "follower_count": 614, "custody_address": "0xa51e52c181a4d3c3b5fae4a9edf52fb3ec31a779", "following_count": 711, "verified_addresses": {"eth_addresses": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/elvinako/beshmar?in_system_playlist=charts-top%3Aall-music%3Anl\"}"}', NULL), - (922975, '0xa2323dc00f2846217eb4107e65d999ca7fe531eb', 0, 1, '2024-05-07 07:26:04+00', 0, 0, '{"fid": 501820, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60e10659-76b4-4660-8806-1b456771d300/rectcrop3", "profile": {"bio": {"text": "From online to on-chain", "mentioned_profiles": []}}, "username": "b24d", "power_badge": false, "display_name": "Kuny", "active_status": "inactive", "verifications": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "follower_count": 1057, "custody_address": "0x19073cd6a24bd9f4479367b98868184b06e502f1", "following_count": 1354, "verified_addresses": {"eth_addresses": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 벤(Ben) - 열애중 by 맥주 사랑1 on #SoundCloud https://on.soundcloud.com/vkLfj\"}"}', NULL), - (559001, '0xd367277b9fec2d561454ebd906131f55fa9172d6', 0, 1, '2024-05-06 10:54:49+00', 0, 1, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 잘 부탁드립니다. ", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1415, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2529, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/canlie/au0tuy9aucpk?si=8e41882a363345db9011bc30dc2386c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (571514, '0xc7abcc304e55abd9a437ac920c405d397da61530', 0, 1, '2024-05-06 11:40:59+00', 0, 2, '{"fid": 492127, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fa4a390-63a9-46eb-5731-20e90d8ecd00/rectcrop3", "profile": {"bio": {"text": "Art\nCrypto💵\n", "mentioned_profiles": []}}, "username": "artmaryam23", "power_badge": false, "display_name": "artmaryam23", "active_status": "inactive", "verifications": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "follower_count": 328, "custody_address": "0xcf3027475526895b40fdca8451eda15a8f665417", "following_count": 429, "verified_addresses": {"eth_addresses": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/2pac/california-love-original?ref=clipboard&p=a&c=0&si=81cc649b98e54f888012eb367a981fa5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (563077, '0x4efc9e090d62336c4a900c9d9c09c8b7efb2c669', 0, 1, '2024-05-06 11:06:34+00', 0, 6, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 347, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 324, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zsTEs\"}"}', 'sonata'), - (558967, '0xcf46d082a97ee43cc12e304b4421448d44eaed78', 0, 1, '2024-05-06 10:54:01+00', 0, 1, '{"fid": 320047, "object": "user", "pfp_url": "https://i.imgur.com/HRs0nGc.jpg", "profile": {"bio": {"text": "Japanese🇯🇵|オヒゲ a.k.a beardmen||I like crypto. Degen play is also fun. Have a good time,homies 🫶 co-host /hottopic /dyor-japanese", "mentioned_profiles": []}}, "username": "beardmen", "power_badge": false, "display_name": "ohige a.k.a beardmen🎩", "active_status": "inactive", "verifications": ["0x8988d8e80e4d8709c1b9d910e81760e5d547df9c"], "follower_count": 1848, "custody_address": "0x0e64fb98ec53e04358d2044dce70bac67f07b62b", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x8988d8e80e4d8709c1b9d910e81760e5d547df9c"], "sol_addresses": ["8uUdCC1jcdh81i17PQz34XcL4wgrZ5EjAwULgwqo7yXZ"]}}', '{"{\"url\":\"https://on.soundcloud.com/EiR3sgQhsyFHLjG68\"}"}', NULL), - (558989, '0x749f068647caeab59ac6ffa7e28b8f7092557332', 0, 1, '2024-05-06 10:54:25+00', 0, 0, '{"fid": 425464, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/502ba478-6718-45d7-8c23-f9056c210900/rectcrop3", "profile": {"bio": {"text": "Do your best at every test\n", "mentioned_profiles": []}}, "username": "zarina", "power_badge": false, "display_name": "Zara", "active_status": "inactive", "verifications": ["0x42f859724da452f412a3f67677199617e2b4a31e"], "follower_count": 511, "custody_address": "0xd868a7b396a1068e599208946e980eddb05dd9d0", "following_count": 668, "verified_addresses": {"eth_addresses": ["0x42f859724da452f412a3f67677199617e2b4a31e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/raulgaz/sets/save-your-tears?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (612539, '0xff6ccf5d6c29d6275a5989217ff868db036a85d8', 0, 1, '2024-05-06 13:09:41+00', 0, 2, '{"fid": 446821, "object": "user", "pfp_url": "https://i.imgur.com/y7EJWF2.jpg", "profile": {"bio": {"text": "많이 배워가는 중입니다. 반갑습니다.", "mentioned_profiles": []}}, "username": "njyh11", "power_badge": false, "display_name": "njyh11", "active_status": "inactive", "verifications": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "follower_count": 1920, "custody_address": "0xcbe6bbdef680af58a9ec5e9e90208391edf3a21b", "following_count": 2549, "verified_addresses": {"eth_addresses": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fish-jelly-598824336/yang-heeeun-x-akmu-mother-to?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (637146, '0xff3fd121dd96571d2b4b406e6a16786d7ad27f84', 0, 1, '2024-05-06 14:06:28+00', 0, 0, '{"fid": 508231, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/239719ef-6679-4892-470b-f538e3c2ad00/original", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "!508231", "power_badge": false, "display_name": "happyhappy", "active_status": "inactive", "verifications": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "follower_count": 91, "custody_address": "0x0ceadeaa7100c9b416e4899ff46307e507e461d6", "following_count": 220, "verified_addresses": {"eth_addresses": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ki-sung-kim-131816010/sonorus-beach-party-vibes-1?si=3703a980082a48d8a46d165d8df342a4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (526064, '0x1d66fde7154a5596ca1f80412de30425002b4e94', 0, 1, '2024-05-06 09:22:48+00', 0, 2, '{"fid": 423873, "object": "user", "pfp_url": "https://i.imgur.com/ueeGBER.jpg", "profile": {"bio": {"text": "元DEFY工作員\nロスったままいろいろ勉強中\nフォロバ100%\n", "mentioned_profiles": []}}, "username": "gaaa", "power_badge": false, "display_name": "がー", "active_status": "inactive", "verifications": ["0xbae0647f4750aa53e9fcafc67fde8d47da063770"], "follower_count": 182, "custody_address": "0xf7ebfcb74eb2c966ee33b7febf1b79805d16c92f", "following_count": 318, "verified_addresses": {"eth_addresses": ["0xbae0647f4750aa53e9fcafc67fde8d47da063770"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5vDC1Ief4JtSddcB50zFYm?si=NtrCNSmtRe6rl2B6AXS5GA\"}"}', 'musicjp'), - (573402, '0xfb363dc54e49765ec1645608f2ad672421b38d38', 0, 1, '2024-05-06 11:44:59+00', 0, 7, '{"fid": 380784, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a805aaa2-e72c-4b2c-a553-f9df5e72fc00/rectcrop3", "profile": {"bio": {"text": "대단히 반갑습니다.\n상당히 고맙습니다.", "mentioned_profiles": []}}, "username": "under-standing", "power_badge": false, "display_name": "Diya", "active_status": "inactive", "verifications": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "follower_count": 4346, "custody_address": "0x31ae1e98c325a05696c91a31f9931293f1d0d224", "following_count": 3397, "verified_addresses": {"eth_addresses": ["0xa1db410045987129adc35546478b5b0de7fd8926"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SuJifgE2kow8HBHz8\"}"}', 'sonata'), - (923198, '0xe5fd03f02b38b27b5f6c1337aef73c8f384427af', 0, 1, '2024-05-07 07:27:54+00', 0, 1, '{"fid": 513515, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dadf0059-2a9f-4aa6-c98e-77491266b600/rectcrop3", "profile": {"bio": {"text": "SEC targets me 🥴", "mentioned_profiles": []}}, "username": "!513515", "power_badge": false, "display_name": "Justin Sun", "active_status": "inactive", "verifications": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "follower_count": 249, "custody_address": "0x649296858ac63a11f7765441099f8a22e0e5a1fa", "following_count": 246, "verified_addresses": {"eth_addresses": ["0xb4e434361cf68c0c8e651664296947158978d8c2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jRESEBmvMPAF94yFA\"}"}', 'sonata'), - (545404, '0xd13dc8a628b53d439e6372fd6fff424e20f5c14a', 0, 1, '2024-05-06 10:08:58+00', 0, 0, '{"fid": 406564, "object": "user", "pfp_url": "https://i.imgur.com/aUMuWcN.jpg", "profile": {"bio": {"text": "ワーキャスの先輩と絡んでくれる方々に感謝しつつ沼り始めてる子煩悩。\nどちらかと言うとギリ良いヤツだと思います☀️", "mentioned_profiles": []}}, "username": "tomos", "power_badge": false, "display_name": "tomo🦀🍖", "active_status": "inactive", "verifications": ["0xddcffade622fa032021f823be481636f2e56ff38"], "follower_count": 1443, "custody_address": "0xb882d54ed4cffe89f58c68cb985080912f3c1a2f", "following_count": 1600, "verified_addresses": {"eth_addresses": ["0xddcffade622fa032021f823be481636f2e56ff38"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/moBUXaZ9rTFJtGd47\"}"}', 'japan-cashai'), - (561629, '0x0a01dcbeda7c16b458ea9db7a5a0377abfd1ae02', 100, 1, '2024-05-06 11:02:42+00', 50, 5, '{"fid": 169, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/fWnQF5IzaerIcPn5rPHvl4oENtum0Jr2M5wxtC99L2c0ELGPD9WzgxhlgeybhUrO-LueMKSYgBWyhKcT5wydRotxpONeNJaP78t2nA", "profile": {"bio": {"text": "I am a VC", "mentioned_profiles": []}}, "username": "fredwilson.eth", "power_badge": true, "display_name": "fredwilson", "active_status": "inactive", "verifications": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "follower_count": 4604, "custody_address": "0x6e6dc9975c7b820c235649924b4ab20068100e76", "following_count": 127, "verified_addresses": {"eth_addresses": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ztv86\"}"}', 'sonata'), - (673339, '0xb2d710c8daa8cf3fec708b52d42f44832bad8d0f', 0, 1, '2024-05-06 15:58:57+00', 0, 9, '{"fid": 447737, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fcf5d6f-1a50-4949-29bd-42321380a000/rectcrop3", "profile": {"bio": {"text": "노래 추천해드립니다 🎶", "mentioned_profiles": []}}, "username": "hiddensinger", "power_badge": false, "display_name": "🟣홍사원🟣", "active_status": "inactive", "verifications": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "follower_count": 2714, "custody_address": "0x5df0fad42f00014b8cdd448e352e39f0a65b471a", "following_count": 3130, "verified_addresses": {"eth_addresses": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3pGT4pSEsLFwx7Mh9\"}"}', 'sonata'), - (574947, '0x3d6ac7d30ff3ddf38d9f273794bc0558dc909173', 0, 1, '2024-05-06 11:49:59+00', 0, 1, '{"fid": 339616, "object": "user", "pfp_url": "https://i.imgur.com/RcyAUym.jpg", "profile": {"bio": {"text": "I am a painter and a 👒crypto enthusiast", "mentioned_profiles": []}}, "username": "zahraderakhshi", "power_badge": false, "display_name": "zahraad🎩🔵🍖🔄", "active_status": "inactive", "verifications": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "follower_count": 1928, "custody_address": "0x043933859392c1ba966b3bf4c0db15af7e258330", "following_count": 3091, "verified_addresses": {"eth_addresses": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8dak6Ywnuwx2BrwX7\"}"}', NULL), - (691259, '0x9d6af506529daf8239d1baaea00df78110df0d5b', 0, 1, '2024-05-06 17:26:41+00', 0, 5, '{"fid": 500783, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a62428d4-8f10-4829-21a3-f0dc7594da00/original", "profile": {"bio": {"text": "내 아임다 우째 내라고만 생각함까! #FDA ", "mentioned_profiles": []}}, "username": "leeseo", "power_badge": false, "display_name": "장이수🎩", "active_status": "inactive", "verifications": ["0x7d31a2549142897873ded712ceae466278bdb732"], "follower_count": 1431, "custody_address": "0x0cb2eaf55dc612d3c841f0926ebc989e192054fa", "following_count": 1429, "verified_addresses": {"eth_addresses": ["0x7d31a2549142897873ded712ceae466278bdb732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-274076136-270370150/newjeans-bubble-gum-official?si=31cff26e85f045d7a1349b1bdb5c779d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (519301, '0xaafecee8bd3e2363d6713a2166f2a7c98a1aadf7', 0, 1, '2024-05-06 08:52:48+00', 0, 3, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 731, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1088, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/300YN8ebGB90nDuzgz0f3O?si=s51yBNvHSgC-Uo11JaDNMw&context=spotify%3Aalbum%3A6i6folBtxKV28WX3msQ4FE\"}"}', 'musicjp'), - (545919, '0xcced328391400c65b74c2dca237f246a4fb6c24c', 0, 1, '2024-05-06 10:12:16+00', 0, 1, '{"fid": 460681, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3683fe7-68ad-4932-09f0-52b573fb5200/original", "profile": {"bio": {"text": "Modeling", "mentioned_profiles": []}}, "username": "loosi", "power_badge": false, "display_name": "Loosi 🔄 🎩", "active_status": "inactive", "verifications": ["0xab0ec712b8b7a9b12b659167aa4b91e1041118e4"], "follower_count": 1311, "custody_address": "0x76611a10838529b9504ea827318f4d88363d0d5e", "following_count": 1307, "verified_addresses": {"eth_addresses": ["0xab0ec712b8b7a9b12b659167aa4b91e1041118e4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jean-marie-elvira/2023-solenzara?in=trending-music-fr/sets/jazz&si=06636c4d15d647988b580b41b7b72930&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (545920, '0x2638ed59b5205c7e4a0b2a59f0a3ee94b21f70ab', 0, 1, '2024-05-06 10:11:52+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-624620151/sets/zbhrelcpuspi?si=e7b26edceec5447395b90113d69c2aa8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (612035, '0x13c5619da6f55915e12cef47c0353434ede655a9', 0, 1, '2024-05-06 13:08:32+00', 0, 3, '{"fid": 446821, "object": "user", "pfp_url": "https://i.imgur.com/y7EJWF2.jpg", "profile": {"bio": {"text": "많이 배워가는 중입니다. 반갑습니다.", "mentioned_profiles": []}}, "username": "njyh11", "power_badge": false, "display_name": "njyh11", "active_status": "inactive", "verifications": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "follower_count": 1920, "custody_address": "0xcbe6bbdef680af58a9ec5e9e90208391edf3a21b", "following_count": 2549, "verified_addresses": {"eth_addresses": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nguyentrinhhoangphuong/god-dear-mother?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (546411, '0x67aac96e20047414131c98025c83d335a6f96291', 0, 1, '2024-05-06 10:13:26+00', 0, 2, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dovoice0112/op-3?si=213a9012d3b24bfea35db56adccc93f6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (628157, '0x7e3c82f683e18b0a11684c8308ac51eb79d8146d', 0, 1, '2024-05-06 13:42:03+00', 10, 7, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3950, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2229, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/lauvsongs/never-not-2\"}"}', 'sonata'), - (720156, '0xeebc1deabff02eb4e67a00e0282be516b804e62e', 0, 1, '2024-05-06 19:46:32+00', 0, 2, '{"fid": 428777, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigd4to3dckn5fs26sqvgfg7456qlvbdux5t7vd4iiqy4cup3o3344", "profile": {"bio": {"text": "Crypto user\n", "mentioned_profiles": []}}, "username": "lifehxc", "power_badge": false, "display_name": "lifehxc.eth", "active_status": "inactive", "verifications": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "follower_count": 345, "custody_address": "0xcab8c2dc88a35046e4c5480e31ec223faaee5fb9", "following_count": 324, "verified_addresses": {"eth_addresses": ["0x8f28495185676fdc2666282bb528a71c13fa5da6"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/divint/hold-my-hand?in=sc-playlists-fr%2Fsets%2Fchill-gaming\"}"}', NULL), - (573637, '0x8f049f84f1a19d191eead52fe7699771c3908c05', 0, 1, '2024-05-06 11:46:03+00', 0, 5, '{"fid": 400377, "object": "user", "pfp_url": "https://i.imgur.com/EkxQ6n2.jpg", "profile": {"bio": {"text": "I love Socola", "mentioned_profiles": []}}, "username": "socola", "power_badge": false, "display_name": "Socola", "active_status": "inactive", "verifications": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "follower_count": 1763, "custody_address": "0x5bcb1b7f6b604f60fb82b055ac587547bb50bd6a", "following_count": 3062, "verified_addresses": {"eth_addresses": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nLGoqLTh8EnGjtv1A\"}"}', 'sonata'), - (545921, '0xd31293df1c65fe7364912309a7fd2523f8fc2fc5', 0, 1, '2024-05-06 10:12:06+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/woodoe/ost-catch-you-catch-me?si=7cdb1b2a68374d82b7f8eb7fc1312a74&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (558651, '0x2e7a86625976d85ae6798427925205766dadfb4f', 0, 1, '2024-05-06 10:53:40+00', 0, 1, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2358, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4120, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gFaYq\"}"}', 'sonata'), - (587217, '0x453df94422ce5d4f963a382a914ddf8fab44362a', 0, 1, '2024-05-06 12:05:35+00', 0, 8, '{"fid": 499712, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a78fd583-e1e0-4638-e001-e7c681fac300/rectcrop3", "profile": {"bio": {"text": "Welcome to communication. I like sharing good restaurants and travel destinations", "mentioned_profiles": []}}, "username": "godberry", "power_badge": false, "display_name": "Nutria🎩🍖🧀", "active_status": "inactive", "verifications": ["0xec01c8093342c3c38a5415d97f0d02dd6b1c494e"], "follower_count": 919, "custody_address": "0x1a01be17f09897cebbeee9a9ab9f548b30c12d65", "following_count": 1002, "verified_addresses": {"eth_addresses": ["0xec01c8093342c3c38a5415d97f0d02dd6b1c494e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kurniawan-ardi-kusuma-effendy/128a?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (576694, '0xd023d702589ea8919cfe5f5928616d206a697149', 0, 1, '2024-05-06 11:55:53+00', 10, 0, '{"fid": 316521, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c333a612-8ed7-4295-25bd-73ecd90e2b00/original", "profile": {"bio": {"text": "In searching future", "mentioned_profiles": []}}, "username": "0xmoya", "power_badge": false, "display_name": "MoYa", "active_status": "inactive", "verifications": ["0x5f8977576c04b9f35e32167e296c10559833ba86"], "follower_count": 1086, "custody_address": "0xbaa23befb60037f32fe806c24cd91391872f323e", "following_count": 867, "verified_addresses": {"eth_addresses": ["0x5f8977576c04b9f35e32167e296c10559833ba86"], "sol_addresses": ["89xufdJ9hpYtSPcXKaQ5Rnef5kicLjU2dTHybPigS9qa"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/down-the-drain\"}"}', NULL), - (613238, '0x191b3be48b2b4cf248122be7d4200a23f2164371', 0, 1, '2024-05-06 13:11:03+00', 0, 7, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 981, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 909, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Mgfet7Yy9QBLpGgt5\"}"}', 'sonata'), - (591882, '0x8018daa85c45684253aed55f24714fe70321881f', 0, 1, '2024-05-06 12:20:58+00', 10, 4, '{"fid": 447737, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fcf5d6f-1a50-4949-29bd-42321380a000/rectcrop3", "profile": {"bio": {"text": "노래 추천해드립니다 🎶", "mentioned_profiles": []}}, "username": "hiddensinger", "power_badge": false, "display_name": "🟣홍사원🟣", "active_status": "inactive", "verifications": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "follower_count": 2709, "custody_address": "0x5df0fad42f00014b8cdd448e352e39f0a65b471a", "following_count": 3114, "verified_addresses": {"eth_addresses": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iam_seori/abir-tango-cover-by-seori?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (545925, '0x1a33476f08a280f1744dde369346340b38acc3d2', 0, 1, '2024-05-06 10:11:12+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/3zwmu0yi0vbd/op-1?si=33d379a68b66453db718a2829c38009a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (588970, '0x8c8927311b6b9d439969f8c079a81da917433d57', 0, 1, '2024-05-06 12:12:34+00', 0, 4, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1171, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 973, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gCpxebMJ6UCBStZD9\"}"}', 'sonata'), - (593380, '0x254126be42c2e4a7ec7eb5f4475e98cbec8096a6', 0, 1, '2024-05-06 12:23:40+00', 0, 4, '{"fid": 476554, "object": "user", "pfp_url": "https://i.imgur.com/28vc9Y7.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "amiri1370", "power_badge": false, "display_name": "Mr.amiri", "active_status": "inactive", "verifications": ["0xe8724dec7ff81d8eaaab9c9993571efb34ce1c4b"], "follower_count": 1370, "custody_address": "0x2a18bdb07649d8b922307237cda0f558a9bfcd6c", "following_count": 2246, "verified_addresses": {"eth_addresses": ["0xe8724dec7ff81d8eaaab9c9993571efb34ce1c4b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9ffoc\"}"}', 'sonata'), - (600635, '0x4581962d04257c39579f782b9b79678f614ca513', 0, 1, '2024-05-06 12:38:19+00', 0, 0, '{"fid": 291550, "object": "user", "pfp_url": "https://i.imgur.com/CKWEo2s.jpg", "profile": {"bio": {"text": "F4F 조대리 바로 갑니다!\n$DEGEN ", "mentioned_profiles": []}}, "username": "porsche911", "power_badge": false, "display_name": "porsche911🎩🍖", "active_status": "inactive", "verifications": ["0xae12698b39c5b6ab301b5fb6d4bffc9ae093ceae"], "follower_count": 785, "custody_address": "0x99bc00deddc9a602de92ec4d2be553e294578f0c", "following_count": 1500, "verified_addresses": {"eth_addresses": ["0xae12698b39c5b6ab301b5fb6d4bffc9ae093ceae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ez-beat-861876926/act-iii-on-god-she-like-offl-muc-video?si=d2233e7db4074cf1a4c8cb5d79643ce7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (605432, '0x382f63f9f81700c4c05f41da830563333bffe019', 0, 1, '2024-05-06 12:49:28+00', 0, 1, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1348, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 710, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iwantbysong/iwantbysong?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (566496, '0x144f0354c01eadb12c723c11c44bb47d9a78b685', 0, 1, '2024-05-06 11:20:13+00', 0, 2, '{"fid": 438535, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54ebf3de-76a7-4d1f-f537-5fa68f483100/rectcrop3", "profile": {"bio": {"text": "niromand", "mentioned_profiles": []}}, "username": "noyanniromand", "power_badge": false, "display_name": "noyan", "active_status": "inactive", "verifications": ["0x033d7a7490de0be6a71a5d4012f13a2a37d79c7d"], "follower_count": 666, "custody_address": "0xd3b77652855ea9f132619675ee2748c9fae4f1a8", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x033d7a7490de0be6a71a5d4012f13a2a37d79c7d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FHNQn6a7aAqmyVck8\"}"}', NULL), - (571884, '0x068281c5d9c4d9edea586309ffa899bd7ebdad03', 0, 1, '2024-05-06 11:41:24+00', 0, 0, '{"fid": 417693, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b69aedf-6144-4e56-b740-fd6e811bea00/rectcrop3", "profile": {"bio": {"text": "I am very interested in travel and tourism", "mentioned_profiles": []}}, "username": "radin", "power_badge": false, "display_name": "Rabi🎩", "active_status": "inactive", "verifications": ["0x5776ffc905664ca08bb99799050a4ce94af3ab7a"], "follower_count": 1148, "custody_address": "0x00472af813fe3e5dd4b704324744e504ca1b1dc0", "following_count": 1118, "verified_addresses": {"eth_addresses": ["0x5776ffc905664ca08bb99799050a4ce94af3ab7a"], "sol_addresses": ["CJQtA3v1YCGMEQL8mE3QUHy7vLDCa4RwiHFhEqXeM2w8"]}}', '{"{\"url\":\"https://on.soundcloud.com/Co4DZ9FFmQUtSaD16\"}"}', 'sonata'), - (559004, '0x4b9307e369311bb4cd3732e045866e49b39a8dee', 0, 1, '2024-05-06 10:55:05+00', 0, 0, '{"fid": 425464, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/502ba478-6718-45d7-8c23-f9056c210900/rectcrop3", "profile": {"bio": {"text": "Do your best at every test\n", "mentioned_profiles": []}}, "username": "zarina", "power_badge": false, "display_name": "Zara", "active_status": "inactive", "verifications": ["0x42f859724da452f412a3f67677199617e2b4a31e"], "follower_count": 511, "custody_address": "0xd868a7b396a1068e599208946e980eddb05dd9d0", "following_count": 668, "verified_addresses": {"eth_addresses": ["0x42f859724da452f412a3f67677199617e2b4a31e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/raulgaz/sets/save-your-tears?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (552235, '0x0f78a9326b9e5fd6b46bb7b1200319d89aa029d2', 0, 1, '2024-05-06 10:28:17+00', 0, 2, '{"fid": 441301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/44f27765-407b-472d-374c-9024d733c400/rectcrop3", "profile": {"bio": {"text": "The largest holder of the Crazy Ferns project, Dragon and Fukaff investment fund\nInterested in investing, stock market portfolio manager", "mentioned_profiles": []}}, "username": "nasserz67", "power_badge": false, "display_name": "nasserz67", "active_status": "inactive", "verifications": ["0x868025b6f9b42f88159d5ba30eebd12a0f0c2903"], "follower_count": 903, "custody_address": "0xec7f1a6d3d58df6424bf2d2ca57d5c05e122aacf", "following_count": 895, "verified_addresses": {"eth_addresses": ["0x868025b6f9b42f88159d5ba30eebd12a0f0c2903"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FQ5GewPg1ZR1ygXJ7\"}"}', NULL), - (547952, '0x39834890c1aa0da5c11fa8aa20cf76905b809a2e', 0, 1, '2024-05-06 10:18:05+00', 0, 0, '{"fid": 293005, "object": "user", "pfp_url": "https://i.imgur.com/R0AWqSE.jpg", "profile": {"bio": {"text": "Reza", "mentioned_profiles": []}}, "username": "reza369", "power_badge": false, "display_name": "Reza 🎩🔵", "active_status": "inactive", "verifications": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "follower_count": 1597, "custody_address": "0xd16198f8af1e12a4987c19c9ba2c917b60587334", "following_count": 2229, "verified_addresses": {"eth_addresses": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "sol_addresses": ["6SNzFa67id6q142zMBVPqDJSebvExGp7FUWewTnnnE2C"]}}', '{"{\"url\":\"https://on.soundcloud.com/QnS6E4ah1fcP9Eac8\"}"}', 'sonata'), - (580853, '0xae2567774c98a9a5bc41ea3c1bcd22a8538ea0a8', 0, 1, '2024-05-06 12:00:27+00', 0, 6, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T4H6P\"}"}', 'sonata'), - (547925, '0xf30bcfcbfc3af80fb26d794bfad2154aad2a6566', 0, 1, '2024-05-06 10:18:31+00', 0, 9, '{"fid": 409435, "object": "user", "pfp_url": "https://i.imgur.com/iIJ7x4p.jpg", "profile": {"bio": {"text": "AM 9 banker / PM 6 crypto trader / 🌈 / 🫡", "mentioned_profiles": []}}, "username": "trollmanjr", "power_badge": false, "display_name": "Trollmanjr", "active_status": "inactive", "verifications": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "follower_count": 3450, "custody_address": "0xc52a9c9da9b783e010ec2f5d28937afbd6380f46", "following_count": 4107, "verified_addresses": {"eth_addresses": ["0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51"], "sol_addresses": ["BgeJwnYh7jX6dezgtTTac1K7NxvNX7nym3458AtArC3T"]}}', '{"{\"url\":\"https://soundcloud.com/0fs023bdapie/valley-of-wolves-take-it-all?si=c3ccd89065314878baed8ceeb7f84c94&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (566521, '0x6078716c6f20a07354497eaf6067d0d135b53a31', 0, 1, '2024-05-06 11:20:03+00', 0, 2, '{"fid": 500192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ce5a3a6-a9f6-42b8-f629-f50bf9ac5800/original", "profile": {"bio": {"text": "I''m into a crypto\n", "mentioned_profiles": []}}, "username": "slimbear", "power_badge": false, "display_name": "magnet", "active_status": "inactive", "verifications": ["0x82209111e235613802e6a95f0a4371307408461a"], "follower_count": 131, "custody_address": "0x26a5a24457559d2daf1c38ea21d169f7dc112885", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x82209111e235613802e6a95f0a4371307408461a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lk2KhGDyAojTnyzu5\"}"}', 'sonata'), - (591719, '0x19a008bfb84d7b6898cf7b972ab8b2566d4e0d54', 0, 1, '2024-05-06 12:19:36+00', 0, 0, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 954, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1358, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lasselindh/the-stuff?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (598766, '0xed98a9742597bba5bb41a1de98cefd3733fedd03', 0, 1, '2024-05-06 12:33:43+00', 0, 3, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 잘 부탁드립니다. ", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1420, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2539, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/poop-poop-828317186/bruno-mars-when-i-was-your-man?si=2cc620ce2ea74a9a8f93ecf01a0b8912&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (552233, '0x6151a0193496d88eafb96f61353321d5af0ab034', 0, 1, '2024-05-06 10:27:54+00', 0, 4, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3089, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2297, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hmYfs\"}"}', 'sonata'), - (628585, '0xf19776b909b9c4ab309983ea86f8a62e0ab3a105', 0, 1, '2024-05-06 13:45:06+00', 0, 14, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1391, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1900, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/V5Gcqe3zZrVnaTDx6\"}"}', 'banmal-mode'), - (546444, '0x088ee2ed9e2123373ea79e7154b36dcab336d4e1', 0, 1, '2024-05-06 10:13:02+00', 0, 5, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1056, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 1055, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-660642395/macaroni-empitsu-sukidatta?si=8fc5eb9a452a499ab0740c11a12a00d8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (566754, '0x5a50d17125ca1641c761bf8b47973a44f8abf7b0', 0, 1, '2024-05-06 11:21:54+00', 0, 2, '{"fid": 344273, "object": "user", "pfp_url": "https://arweave.net/Sy2wDOreaO-gH2Rz4JtykdIW9CTvPJXR8JHwp1kvrnU/", "profile": {"bio": {"text": "404 err", "mentioned_profiles": []}}, "username": "mjmehdi1", "power_badge": false, "display_name": "Mehdi🔵🎩🔮 🔄", "active_status": "inactive", "verifications": ["0x2c119702a8fbdc94398bffbb319ef11b53fbb49a"], "follower_count": 1440, "custody_address": "0x06b88e681e44af998fb481db82eacddf5a288ab7", "following_count": 2015, "verified_addresses": {"eth_addresses": ["0x2c119702a8fbdc94398bffbb319ef11b53fbb49a"], "sol_addresses": ["FCU7x5t5WeNaWvif18YsTj6fzo72sbRFzDqYZ3DXzbNK"]}}', '{"{\"url\":\"https://on.soundcloud.com/nxkJ3eGJBizyWiCE9\"}"}', 'sonata'), - (443142, '0x8ff7dd7006cc6cbae5ccc71b408c0e8daa70624e', 0, 1, '2024-05-06 06:35:14+00', 0, 9, '{"fid": 428043, "object": "user", "pfp_url": "https://i.imgur.com/Q7jmlGD.jpg", "profile": {"bio": {"text": "Videographer | Youtuber | Python programmer ", "mentioned_profiles": []}}, "username": "cna", "power_badge": false, "display_name": "sina", "active_status": "inactive", "verifications": ["0xe0215f79e1d1097e20cc06c776fcc0ef4f164239"], "follower_count": 2803, "custody_address": "0x2af0cb6f67f0f4195742fd3786fa8510b84e62ae", "following_count": 1627, "verified_addresses": {"eth_addresses": ["0xe0215f79e1d1097e20cc06c776fcc0ef4f164239"], "sol_addresses": ["EgCpAV7hmeREsysi8CgVx3fb5bLMzDLdQkusbaDbVvWc"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0xe0215f79e1d1097e20cc06c776fcc0ef4f164239\"}"}', 'sonata'), - (604833, '0xd8dd6106e390586eb7a4953ba162db2e159579c0', 0, 1, '2024-05-06 12:47:39+00', 0, 7, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1172, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 989, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1uwaKrRBauqRH2An9\"}"}', 'sonata'), - (545435, '0x62287ec35e8c8e46e053d44fc8f25ca52b24a4a9', 0, 1, '2024-05-06 10:09:47+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eda-senol-179474794/sets/taylor-swift-sped-up-playlist?si=fbbd32d600494e51a93b7ca74ef93cdd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (548412, '0x61dc78d42756d20c914b4393edc8d5d98574cda5', 0, 1, '2024-05-06 10:19:32+00', 0, 4, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 342, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 312, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Z4xfD\"}"}', 'sonata'), - (566755, '0xaf19f4e95143362ccae4b3cf9bb8f19c74b8abec', 0, 1, '2024-05-06 11:20:59+00', 0, 4, '{"fid": 508575, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb3389ba-81bc-42db-3e0d-387741f91c00/rectcrop3", "profile": {"bio": {"text": "I standup for you. like reply quote ~ for you", "mentioned_profiles": []}}, "username": "!508575", "power_badge": false, "display_name": "Marcokim2", "active_status": "inactive", "verifications": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "follower_count": 474, "custody_address": "0x6a44ba7ae013effc69f9590a2d950252d28909c9", "following_count": 933, "verified_addresses": {"eth_addresses": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rsVQz\"}"}', 'sonata'), - (559403, '0xa7c75a4040d2f4f52ecbf0a6855d8b3343f55b96', 0, 1, '2024-05-06 10:55:23+00', 0, 4, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2072, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1723, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/J26ET\"}"}', 'sonata'), - (922973, '0xf9e7d38a60838ff95fd112a6ba615719eb41a7d8', 0, 1, '2024-05-07 07:25:46+00', 0, 5, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖💎🎶", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1264, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 817, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/r3dZWkEF5kPe7nsi7\"}"}', 'sonata'), - (670930, '0xe102080420b80425cacad5aba46b639fb0122eb7', 0, 1, '2024-05-06 15:48:05+00', 0, 4, '{"fid": 413505, "object": "user", "pfp_url": "https://i.imgur.com/Qs5haUX.jpg", "profile": {"bio": {"text": "i''m the king of the world", "mentioned_profiles": []}}, "username": "teetr", "power_badge": false, "display_name": "teetr", "active_status": "inactive", "verifications": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "follower_count": 1272, "custody_address": "0x210e5c9b953144bcc69a2d4f9e46ca20a08f2c3f", "following_count": 1288, "verified_addresses": {"eth_addresses": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ugdb82yrYpsb8nP8A\"}"}', 'sonata'), - (564245, '0xd235b48296f9a52073ad1af345506895fea41be6', 0, 1, '2024-05-06 11:08:53+00', 0, 4, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2653, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2742, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/711VvUp9LU29g8qJ7\"}"}', 'sonata'), - (628318, '0xa014c18a0fd32d99a0807a57a56191da7fe11710', 0, 1, '2024-05-06 13:43:03+00', 0, 0, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rj-del-rosario-1/uptown-funk-bruno-mars?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (606310, '0x527afdc494c3f94d4d0a4975e2a74b6fcdceb6be', 0, 1, '2024-05-06 12:50:44+00', 0, 5, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1348, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 710, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":501566,\"hash\":\"0x382f63f9f81700c4c05f41da830563333bffe019\"}}","{\"url\":\"https://soundcloud.com/iwantbysong/iwantbysong?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (545923, '0xc7f7267c67f79a92c0d192f5953daacf740ef910', 0, 1, '2024-05-06 10:10:51+00', 0, 0, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZsHSGHaFTvfsVGUA8\"}"}', 'sonata'), - (552657, '0x82d4abc360ee7e47321d36587bbe82ec7796dd92', 0, 1, '2024-05-06 10:30:02+00', 0, 2, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2356, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GT38r\"}"}', 'sonata'), - (598016, '0x20e51d3ab3b74346fef238a96d315e7c725dd493', 0, 1, '2024-05-06 12:31:50+00', 0, 1, '{"fid": 500809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d7861217-86ed-41d0-359e-391353cd6700/original", "profile": {"bio": {"text": "I love kpop", "mentioned_profiles": []}}, "username": "melon99", "power_badge": false, "display_name": "melon99", "active_status": "inactive", "verifications": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "follower_count": 862, "custody_address": "0xf0a460f01a1c2a8174d399bd3e423eeb8e9701b3", "following_count": 838, "verified_addresses": {"eth_addresses": ["0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moe-p0/newjeans-omg?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (577930, '0xa30576ae5fb062343949d73c6c6b59748b3b8e62', 0, 1, '2024-05-06 11:57:21+00', 0, 2, '{"fid": 329190, "object": "user", "pfp_url": "https://i.imgur.com/h3o4Ntz.jpg", "profile": {"bio": {"text": "Nice to meet you. thank you.", "mentioned_profiles": []}}, "username": "komasugi", "power_badge": false, "display_name": "komasugi🎩🍖", "active_status": "inactive", "verifications": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "follower_count": 1225, "custody_address": "0x88ce15b0d31e50d0e3fcc1e64a782c2f6b87c3e6", "following_count": 1706, "verified_addresses": {"eth_addresses": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imunse/gx1tz4l6edka?si=c565327784014582b0cc6339c06c9b27&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (691879, '0xd72007767d678a68127ca4fd494a75d9262402b9', 0, 1, '2024-05-06 17:30:02+00', 0, 4, '{"fid": 495796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52ce7d-af8e-4823-b6bb-db4330a74f00/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Crypto/Animals/Fun/ 슈캐이용중 /맞팔100%", "mentioned_profiles": []}}, "username": "30uk", "power_badge": false, "display_name": "Jiwon", "active_status": "inactive", "verifications": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "follower_count": 1686, "custody_address": "0x0717678be60b82344743230571577199405a539d", "following_count": 2723, "verified_addresses": {"eth_addresses": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1xHwjzDFqEmR5cmDA\"}"}', 'sonata'), - (630264, '0x4f857e8908e78868b0ab20b6a0d0b08ecec555ad', 0, 1, '2024-05-06 13:47:27+00', 0, 1, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1391, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1900, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/V5Gcqe3zZrVnaTDx6\"}"}', NULL), - (547961, '0x84cd9c0b01e32b9121f5d759b233be880e32f00d', 0, 1, '2024-05-06 10:18:18+00', 0, 0, '{"fid": 283780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7b6ae7-127e-45c7-cba3-a01774ca8100/rectcrop3", "profile": {"bio": {"text": "Collab manager• NFT•\nWeb3 content writer\nProfessional Community Manager • Project Advisor • Technical Advisor", "mentioned_profiles": []}}, "username": "tomasalpha.eth", "power_badge": false, "display_name": "ᴛᴏᴍᴀs ᴀʟᴘʜᴀ", "active_status": "inactive", "verifications": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "follower_count": 4707, "custody_address": "0x234d64898fbc7a8844c986f18fd002ad1becc5bd", "following_count": 145, "verified_addresses": {"eth_addresses": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/N3ebr\"}"}', NULL), - (563063, '0xc0e8c7ae571b148786cf0477bb6df3663cbb8a2e', 0, 1, '2024-05-06 11:06:03+00', 0, 1, '{"fid": 499712, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a78fd583-e1e0-4638-e001-e7c681fac300/rectcrop3", "profile": {"bio": {"text": "Welcome to communication. I like sharing good restaurants and travel destinations", "mentioned_profiles": []}}, "username": "godberry", "power_badge": false, "display_name": "Nutria🎩🍖🧀", "active_status": "inactive", "verifications": ["0xec01c8093342c3c38a5415d97f0d02dd6b1c494e"], "follower_count": 918, "custody_address": "0x1a01be17f09897cebbeee9a9ab9f548b30c12d65", "following_count": 1002, "verified_addresses": {"eth_addresses": ["0xec01c8093342c3c38a5415d97f0d02dd6b1c494e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-kr/sets/soul?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (602088, '0xcd054b3a28aef70d34bf4bfc9cacc35c3ca78732', 0, 1, '2024-05-06 12:42:31+00', 0, 1, '{"fid": 445791, "object": "user", "pfp_url": "https://i.imgur.com/QeKxLDp.jpg", "profile": {"bio": {"text": "Purplemind", "mentioned_profiles": []}}, "username": "armanasadi", "power_badge": false, "display_name": "R.maan", "active_status": "inactive", "verifications": ["0x91470af4fa588bed9b19ad81ef0e830c012b0bf2"], "follower_count": 620, "custody_address": "0x00d97f0d3f54dff58ab48747ecf216a2be3fcc2e", "following_count": 333, "verified_addresses": {"eth_addresses": ["0x91470af4fa588bed9b19ad81ef0e830c012b0bf2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HdDrxZuzwrQYwycp9\"}"}', NULL), - (581687, '0xb771d68c2baf9e26ab4d39fe5f016928df3ad395', 0, 1, '2024-05-06 12:02:19+00', 0, 0, '{"fid": 501789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d2c960a-2bb5-4637-ca0e-67fe391ce200/rectcrop3", "profile": {"bio": {"text": "smile 😃\n just do it 최고\n부스터가 뭐시중헌디", "mentioned_profiles": []}}, "username": "mmraz", "power_badge": false, "display_name": "Jay M🎩🍖", "active_status": "inactive", "verifications": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "follower_count": 1090, "custody_address": "0x528e24d99b86845a6ecf98f21cb841fbd46eb2b0", "following_count": 977, "verified_addresses": {"eth_addresses": ["0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/joshkofficial/justin-bieber-love-yourself?si=57f4c185f2054d999674bdfd5001132f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (552662, '0xd55cf309738100dd1bcfd47adea25b4f29909a3a', 0, 1, '2024-05-06 10:28:54+00', 0, 0, '{"fid": 428304, "object": "user", "pfp_url": "https://i.imgur.com/tPdAPch.jpg", "profile": {"bio": {"text": "I love you btc", "mentioned_profiles": []}}, "username": "sanaz2024", "power_badge": false, "display_name": "Sani", "active_status": "inactive", "verifications": ["0x4a3dccf7a089ef2b96d822babbb6bdac9964a7b8"], "follower_count": 517, "custody_address": "0x2de28cfad9d9debb4d1732c0bfaa62ab3702aaf9", "following_count": 693, "verified_addresses": {"eth_addresses": ["0x4a3dccf7a089ef2b96d822babbb6bdac9964a7b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QLK8HrXY1uyC5QUf7\"}"}', NULL), - (559629, '0x8b7e494d3519a5be7aeede0ff1dcdd67d681f059', 0, 1, '2024-05-06 10:56:27+00', 0, 0, '{"fid": 498638, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e782729f-ec3a-4bbe-ee35-6eb1f218e000/original", "profile": {"bio": {"text": "I am Music Creator.", "mentioned_profiles": []}}, "username": "hunttones", "power_badge": false, "display_name": "Hunt Tones 🎼 🩸🎩☔", "active_status": "inactive", "verifications": ["0x6c55545b2d5546853eefd67e0917b99de7b0a52b"], "follower_count": 301, "custody_address": "0xff9298dec52ff4770aed736762503ac3f0f5dc26", "following_count": 919, "verified_addresses": {"eth_addresses": ["0x6c55545b2d5546853eefd67e0917b99de7b0a52b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hunt-tones/toxic-brain-hunt-tones\"}"}', NULL), - (648695, '0x2529a384d6cb78783d5de2072e9bc0e241501fa9', 0, 1, '2024-05-06 14:34:19+00', 0, 4, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1788, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 910, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nutcha-thongkanya/mv-high4-iu-not-spring-love-or?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (560068, '0x461245467a0d57a6c572e079dd1c0534c3a65d4a', 0, 1, '2024-05-06 10:58:05+00', 0, 1, '{"fid": 379695, "object": "user", "pfp_url": "https://i.imgur.com/eZVr8AJ.jpg", "profile": {"bio": {"text": "✏️Writer Suim,\nLife is mostly empty. We each fill that part with something. What are you filling in?", "mentioned_profiles": []}}, "username": "poke00", "power_badge": false, "display_name": "Suimbatoz", "active_status": "inactive", "verifications": ["0xa72b08366c9f06787a3293bf292a2322314d04e2"], "follower_count": 2971, "custody_address": "0xc913935fd0414329589d46762412883fbcf971b6", "following_count": 1968, "verified_addresses": {"eth_addresses": ["0xa72b08366c9f06787a3293bf292a2322314d04e2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GS6iY8SDsxcFm5Aq7\"}"}', NULL), - (574122, '0xd2b08e70c78faf4021eabba06468b81367b67e25', 0, 1, '2024-05-06 11:47:14+00', 0, 11, '{"fid": 500738, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac0ab18d-18ab-44ca-68b6-b047648a5800/rectcrop3", "profile": {"bio": {"text": "열심히 하는건 누구보다 자신 있습니다!\n슈퍼캐스트로 2배로 빠르게 보답하겠습니다🔥", "mentioned_profiles": []}}, "username": "premium191004", "power_badge": false, "display_name": "Degen_Moon", "active_status": "inactive", "verifications": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "follower_count": 1059, "custody_address": "0x86582a580e1ccd25fab0e894ba9598116df46d23", "following_count": 904, "verified_addresses": {"eth_addresses": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c8MMneRakhc3qboh6\"}"}', 'sonata'), - (560042, '0x8a8dc56146c53288f91d37b582795e9b5250c32e', 0, 1, '2024-05-06 10:58:03+00', 0, 3, '{"fid": 500986, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a96d3b22-0ba7-4c81-5171-af59cbda1800/rectcrop3", "profile": {"bio": {"text": "달콤한 초코초코예요❤️🤎\n잘부탁해용😘", "mentioned_profiles": []}}, "username": "chocochoco", "power_badge": false, "display_name": "초코초코🍩🍫🎩", "active_status": "inactive", "verifications": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "follower_count": 1317, "custody_address": "0x3f370379ba03bd08832fb6f0ec20151a34cf914f", "following_count": 750, "verified_addresses": {"eth_addresses": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/maKsV\"}"}', 'sonata'), - (522090, '0x1577b9dc47318d1cfb9d6e9afd9a0a15b08d4f1f', 0, 1, '2024-05-06 09:05:29+00', 0, 8, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1348, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 710, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":501566,\"hash\":\"0x5f659b91118d7a746af2bb2b1b7c6c96d3bde8b0\"}}","{\"url\":\"https://open.spotify.com/track/1BxfuPKGuaTgP7aM0Bbdwr\"}"}', 'sonata'), - (598030, '0x8003283f670156e6e297d485b1269827306c9bc7', 0, 1, '2024-05-06 12:31:19+00', 0, 9, '{"fid": 458191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/883d04b7-1096-4d94-022e-ac074d31fd00/rectcrop3", "profile": {"bio": {"text": "I’ll share my daily life 😎", "mentioned_profiles": []}}, "username": "freesia", "power_badge": false, "display_name": "freesia", "active_status": "inactive", "verifications": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "follower_count": 2915, "custody_address": "0x897d0a8819784d5ade9ea2c0569fdb58d311e717", "following_count": 1835, "verified_addresses": {"eth_addresses": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zxEWoozDrrmntwPW6\"}"}', 'sonata'), - (922957, '0x6f95d7e5890aa7e0bdb9f2f07df73b79fd2b8d77', 0, 1, '2024-05-07 07:27:15+00', 0, 0, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1472, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/baron1_3/sets/band_inst?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (606323, '0xd6207c3bf7398c3991c2d2f1a57ad6892c5c7eb1', 0, 1, '2024-05-06 12:50:23+00', 0, 2, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nathan-dash/craig-david-all-the-way?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (548430, '0x7bfe9691b1a4b915eb66d525c3839e44a0562f3e', 0, 1, '2024-05-06 10:19:17+00', 0, 0, '{"fid": 295057, "object": "user", "pfp_url": "https://ddt5q3jxn2hvazstbv6w6re2cjctekbxfa4zqiqfb4oiwfkajmyq.arweave.net/GOfYbTduj1BmUw19b0SaEkUyKDcoOZgiBQ8cixVASzE/", "profile": {"bio": {"text": "I am here", "mentioned_profiles": []}}, "username": "sarhangi", "power_badge": false, "display_name": "sarhangi 🎩🔵⛓️🍖🍖", "active_status": "inactive", "verifications": ["0xc8c569023ddbec73380f3be0b940309e61f1a14b"], "follower_count": 1095, "custody_address": "0x99e54e573977cb982b3de99a4564b431a38fd91d", "following_count": 1291, "verified_addresses": {"eth_addresses": ["0xc8c569023ddbec73380f3be0b940309e61f1a14b"], "sol_addresses": ["FjB8gsuu2G5BWLhgYrXs584b78rYwU9JzDkyL9ioQts6"]}}', '{"{\"url\":\"https://on.soundcloud.com/Jkf17YNEn2uMGu92A\"}"}', NULL), - (546799, '0x054cdb2889cba7af26af6937f5a254b5ed31a136', 0, 1, '2024-05-06 10:14:26+00', 0, 2, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gimgwangseog/r7wl21kjyfyz?si=5246d3d7bd9b48af8a3faaf693ff286a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (564630, '0xb5bb89cc3f07da1cb1378d5207792fb0d71eb6e7', 0, 1, '2024-05-06 11:10:45+00', 0, 5, '{"fid": 499712, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a78fd583-e1e0-4638-e001-e7c681fac300/rectcrop3", "profile": {"bio": {"text": "Welcome to communication. I like sharing good restaurants and travel destinations", "mentioned_profiles": []}}, "username": "godberry", "power_badge": false, "display_name": "Nutria🎩🍖🧀", "active_status": "inactive", "verifications": ["0xec01c8093342c3c38a5415d97f0d02dd6b1c494e"], "follower_count": 918, "custody_address": "0x1a01be17f09897cebbeee9a9ab9f548b30c12d65", "following_count": 1002, "verified_addresses": {"eth_addresses": ["0xec01c8093342c3c38a5415d97f0d02dd6b1c494e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-kr/sets/soul?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (552674, '0xeb3fa19839070355be18779bc80fdb4afdd29549', 0, 1, '2024-05-06 10:28:54+00', 0, 3, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2496, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8NDwyAgm9Qn5otcd7\"}"}', 'sonata'), - (602388, '0xfc705747cd59bf2b3b708c510dd0e4d20d5efe86', 0, 1, '2024-05-06 12:43:23+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 44, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HWbMHgySj2yyf2jU9\"}"}', NULL), - (560043, '0x43171fa67199c182f8ee65c487e6c7ef059fc604', 0, 1, '2024-05-06 10:58:15+00', 0, 4, '{"fid": 423039, "object": "user", "pfp_url": "https://i.imgur.com/vJ1Tpz7.jpg", "profile": {"bio": {"text": "함께해요!\n\nCrypto beginner | Crossfiter", "mentioned_profiles": []}}, "username": "zzangu", "power_badge": false, "display_name": "zzangu", "active_status": "inactive", "verifications": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "follower_count": 1804, "custody_address": "0xe62def6bb2c4486aba21fdcaf64c88d734fa4646", "following_count": 1655, "verified_addresses": {"eth_addresses": ["0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wnQFwnDtV86Emims5\"}"}', 'sonata'), - (611047, '0xf111dcec0c589d60a5bd6596082cab950f29d529', 3030, 1, '2024-05-06 13:06:29+00', 116, 36, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "follower_count": 1442, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1097, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/z45DuZY6VdJ5DW7Y8\"}"}', NULL), - (526063, '0x8833cd9de87670cbe6992275c427dbc90103b498', 0, 1, '2024-05-06 09:23:12+00', 0, 10, '{"fid": 378690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52f8244c-17aa-4d52-74e3-92ccf556e700/rectcrop3", "profile": {"bio": {"text": "Arzt und fröhlich", "mentioned_profiles": []}}, "username": "ahmad9595", "power_badge": false, "display_name": "Moritz🔄🎩", "active_status": "inactive", "verifications": ["0xdcf98b00ad5c61739f5762f6241a872ac1e0217e"], "follower_count": 1136, "custody_address": "0xe776d1501877fe3190d71ae78e84b4b11c836170", "following_count": 1023, "verified_addresses": {"eth_addresses": ["0xdcf98b00ad5c61739f5762f6241a872ac1e0217e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/561jH07mF1jHuk7KlaeF0s?si=AG5LaMxtQweIHF3jmEKYUg\"}"}', NULL), - (560059, '0x04136f8e8cc5ec2261d138f6dfe04a6dcb25e235', 0, 1, '2024-05-06 10:57:43+00', 0, 0, '{"fid": 320047, "object": "user", "pfp_url": "https://i.imgur.com/HRs0nGc.jpg", "profile": {"bio": {"text": "Japanese🇯🇵|オヒゲ a.k.a beardmen||I like crypto. Degen play is also fun. Have a good time,homies 🫶 co-host /hottopic /dyor-japanese", "mentioned_profiles": []}}, "username": "beardmen", "power_badge": false, "display_name": "ohige a.k.a beardmen🎩", "active_status": "inactive", "verifications": ["0x8988d8e80e4d8709c1b9d910e81760e5d547df9c"], "follower_count": 1848, "custody_address": "0x0e64fb98ec53e04358d2044dce70bac67f07b62b", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x8988d8e80e4d8709c1b9d910e81760e5d547df9c"], "sol_addresses": ["8uUdCC1jcdh81i17PQz34XcL4wgrZ5EjAwULgwqo7yXZ"]}}', '{"{\"url\":\"https://on.soundcloud.com/HL3v2ijGf5DGq6Qu5\"}"}', 'musicjp'), - (648716, '0x2c5627a625c8cc3905980bce582a716b67c85250', 0, 1, '2024-05-06 14:33:50+00', 0, 9, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2670, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2955, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VoYEzVbz4iAJ9rLB7\"}"}', 'sonata'), - (552785, '0x4fad551852b4e272be97f763a3f9d1ba4d9233bd', 0, 1, '2024-05-06 10:30:09+00', 0, 2, '{"fid": 428304, "object": "user", "pfp_url": "https://i.imgur.com/tPdAPch.jpg", "profile": {"bio": {"text": "I love you btc", "mentioned_profiles": []}}, "username": "sanaz2024", "power_badge": false, "display_name": "Sani", "active_status": "inactive", "verifications": ["0x4a3dccf7a089ef2b96d822babbb6bdac9964a7b8"], "follower_count": 517, "custody_address": "0x2de28cfad9d9debb4d1732c0bfaa62ab3702aaf9", "following_count": 693, "verified_addresses": {"eth_addresses": ["0x4a3dccf7a089ef2b96d822babbb6bdac9964a7b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4fAZyCWKb1KHJrWB6\"}"}', NULL), - (577955, '0xe5eec1bdbc842c617748b67d65de1a0ff6b7b386', 0, 1, '2024-05-06 11:57:18+00', 15, 2, '{"fid": 415861, "object": "user", "pfp_url": "https://i.imgur.com/JC04v6T.jpg", "profile": {"bio": {"text": "Degen digger / 조과장 / 강남 자주 출몰 💕 / 부자되고 싶오 💰 / 리액션 주면 바로 달려가요 🔥 ", "mentioned_profiles": []}}, "username": "todays-pnl", "power_badge": false, "display_name": "Today''s PNL", "active_status": "inactive", "verifications": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "follower_count": 4428, "custody_address": "0x26c1825f1d0ef65a08c6ac30a28a086c99bee88d", "following_count": 5241, "verified_addresses": {"eth_addresses": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/z9ux5\"}"}', NULL), - (674716, '0xb9c94833db83a6c9b7b8056e71a01fc03b1c8637', 0, 1, '2024-05-06 16:07:20+00', 0, 0, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 404, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2kyVQg00pphEufGT59M2XH?si=Q8viyjCtT_Ogsg-G_QlgMA\"}"}', NULL), - (581702, '0x37e1fe1469e75eab5fb486eebdc9f5efb43e82dd', 0, 1, '2024-05-06 12:03:22+00', 0, 3, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1171, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 973, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7Ymg7rYETDrgyrABA\"}"}', 'sonata'), - (758565, '0xdfb83101ee7dc466237dfe9e039341619d5810f8', 0, 1, '2024-05-07 00:03:25+00', 0, 2, '{"fid": 260271, "object": "user", "pfp_url": "https://i.imgur.com/nZq1kVh.jpg", "profile": {"bio": {"text": "Car x Crypto", "mentioned_profiles": []}}, "username": "renesisy", "power_badge": false, "display_name": "renesisy", "active_status": "inactive", "verifications": ["0x2d270fc5370ee30b71d5cc84c35b78b88d28a547"], "follower_count": 141, "custody_address": "0x3790154d8b13eaec9b0ddd1c956e326f6880e1d8", "following_count": 140, "verified_addresses": {"eth_addresses": ["0x2d270fc5370ee30b71d5cc84c35b78b88d28a547"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rvPTTeje7HBRuvxz5\"}"}', NULL), - (595163, '0xdfa8ae242f5184d151356db9b74ab84371833a6e', 0, 1, '2024-05-06 12:27:28+00', 0, 1, '{"fid": 19252, "object": "user", "pfp_url": "https://i.imgur.com/cBmxgrL.gif", "profile": {"bio": {"text": " /*Curious about Crypto, Metavers, NFT, Web3...*/", "mentioned_profiles": []}}, "username": "karimi", "power_badge": false, "display_name": "Armstrong 🎩🔵", "active_status": "inactive", "verifications": ["0x4a8b487f55e7c94d481f20a50ac64bb0e91ae8e8"], "follower_count": 4595, "custody_address": "0xfdb1a2bb066ad1c41f1d8614f3bb66ead8f222c7", "following_count": 909, "verified_addresses": {"eth_addresses": ["0x4a8b487f55e7c94d481f20a50ac64bb0e91ae8e8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tran-spire/axwell-ingrosso-more-than-you-know-martin-miller-bootleg-free?in=user-319988354/sets/early-2010s-pop-remix&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (571444, '0x46c850be022b676e9758478de26060af69353af8', 0, 1, '2024-05-06 11:40:00+00', 0, 1, '{"fid": 449851, "object": "user", "pfp_url": "https://i.imgur.com/dj1267x.jpg", "profile": {"bio": {"text": "Life is going on,enjoy it\n🧚‍♀️☀️🌊🧘‍♀️\n", "mentioned_profiles": []}}, "username": "baharrp", "power_badge": false, "display_name": "Bahar 🧚‍♀️", "active_status": "inactive", "verifications": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "follower_count": 766, "custody_address": "0x79ac0726a2a7c83c149276836c4900a4c1b9a75a", "following_count": 835, "verified_addresses": {"eth_addresses": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qPV16\"}"}', NULL), - (574095, '0x90cb40d6480e69b1f4c8ef65563090c76b87bdae', 0, 1, '2024-05-06 11:46:47+00', 0, 10, '{"fid": 406952, "object": "user", "pfp_url": "https://i.imgur.com/CyxbNGv.jpg", "profile": {"bio": {"text": "경제적 자유 / F4F / 언제든지 달려갑니다 🔥", "mentioned_profiles": []}}, "username": "kkasa34", "power_badge": false, "display_name": "허밍버드", "active_status": "inactive", "verifications": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "follower_count": 2489, "custody_address": "0x8017df1d22d340fed25a6b13e9d6da7c05dca91b", "following_count": 2181, "verified_addresses": {"eth_addresses": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/v33jex3fsoje/w2yvpnphtrmp?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (581710, '0x8fdb9f78704cf5a568c2ec23f3a0968ee48e9a46', 0, 1, '2024-05-06 12:02:14+00', 0, 1, '{"fid": 19252, "object": "user", "pfp_url": "https://i.imgur.com/cBmxgrL.gif", "profile": {"bio": {"text": " /*Curious about Crypto, Metavers, NFT, Web3...*/", "mentioned_profiles": []}}, "username": "karimi", "power_badge": false, "display_name": "Armstrong 🎩🔵", "active_status": "inactive", "verifications": ["0x4a8b487f55e7c94d481f20a50ac64bb0e91ae8e8"], "follower_count": 4597, "custody_address": "0xfdb1a2bb066ad1c41f1d8614f3bb66ead8f222c7", "following_count": 908, "verified_addresses": {"eth_addresses": ["0x4a8b487f55e7c94d481f20a50ac64bb0e91ae8e8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-319988354/sets/early-2010s-pop-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (590666, '0xdfb64b46d4bd58ea2b4dcf9d2df059f927d93bcf', 0, 1, '2024-05-06 12:15:36+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/rdntmusic/ily-i-love-you-baby\"}"}', NULL), - (617730, '0x821ead25ee6e3e66dfc9abf627be750c5e625e71', 0, 1, '2024-05-06 13:22:44+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 962, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 915, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/em11NmY1uVqrNkEu8\"}"}', NULL), - (651089, '0x81e9a8c2c436196a841e4ed91392d040f125b5dc', 0, 1, '2024-05-06 14:39:06+00', 10, 1, '{"fid": 426447, "object": "user", "pfp_url": "https://i.imgur.com/obnZ5s1.jpg", "profile": {"bio": {"text": "I Love Crypto\n/northern-army", "mentioned_profiles": []}}, "username": "amiirkashanii", "power_badge": false, "display_name": "aK", "active_status": "inactive", "verifications": ["0x6f9bb70e856cd5a1827f2d57952e5cf19d37fb9a"], "follower_count": 1432, "custody_address": "0x2dda3040b08c1711d021905f636dc46ad9dbb3c8", "following_count": 2292, "verified_addresses": {"eth_addresses": ["0x6f9bb70e856cd5a1827f2d57952e5cf19d37fb9a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ghostly-kisses/empty-note-acoustic?si=3c82ebdb0ac64b66ad6408a23c714970&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (590667, '0x0a81d464644a3e2b18e25bf51724a8fa662513ec', 0, 1, '2024-05-06 12:14:24+00', 0, 0, '{"fid": 292146, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeihr4qdhybr5ca4lnkak7aj6silrakpksj32aiyc2lmjbc7tfjpeoa", "profile": {"bio": {"text": "🫶 Crypto , Forex 🫶", "mentioned_profiles": []}}, "username": "amirzakizadeh", "power_badge": false, "display_name": "Amir Zakizadeh 🎩🔵🐐", "active_status": "inactive", "verifications": ["0xbb812581c6c485416119b14e8c7be7ffedfaaeff"], "follower_count": 1115, "custody_address": "0x35d137abb8b192468da237aa4080e330f07489ae", "following_count": 2139, "verified_addresses": {"eth_addresses": ["0xbb812581c6c485416119b14e8c7be7ffedfaaeff"], "sol_addresses": ["CcK6HLZFT5guDLW729kFeygePAtAGU363Za9k4XryjsE"]}}', '{"{\"url\":\"http://Sonata.tips\"}","{\"url\":\"http://soundcloud.com\"}"}', NULL), - (578841, '0xe75a66c7ca176ab35b552b1fd2f96a3627d6d7b6', 0, 1, '2024-05-06 11:58:58+00', 0, 12, '{"fid": 477674, "object": "user", "pfp_url": "https://i.imgur.com/lSYNMEx.jpg", "profile": {"bio": {"text": "F4F / follow 4 follow / 좋아요🔥 댓글🔥 리캐스트🔥 팔로우🔥 한분 한분 빠짐없이 찾아갈게요", "mentioned_profiles": []}}, "username": "seik0691", "power_badge": false, "display_name": "seik0691", "active_status": "inactive", "verifications": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "follower_count": 2440, "custody_address": "0x0456381954f63442eb1313b89231b46e770cd9f5", "following_count": 2425, "verified_addresses": {"eth_addresses": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xDrzz\"}"}', 'sonata'), - (573401, '0xdf3eb998dea406860ac581f50196790864a439b1', 0, 1, '2024-05-06 11:45:08+00', 0, 4, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1702, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2945, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ftViM\"}"}', 'sonata'), - (546420, '0xfab25e8163640b1ffc09db8e9079809fd2171ab8', 0, 1, '2024-05-06 10:13:04+00', 0, 2, '{"fid": 393161, "object": "user", "pfp_url": "https://54qdrq5nr2jkgwu3r4nenvzcjhoxmse63neqtqz2jw63lttmwy7q.arweave.net/7yA4w62OkqNam48aRtciSd12SJ7bSQnDOk29tc5stj8/", "profile": {"bio": {"text": "모두 부자/AI개발/헬스매니아", "mentioned_profiles": []}}, "username": "paper0125", "power_badge": false, "display_name": "paper0125", "active_status": "inactive", "verifications": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "follower_count": 1729, "custody_address": "0x5ade06d32c4db6778c94a2c4b5162e58e50d2ea3", "following_count": 2792, "verified_addresses": {"eth_addresses": ["0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fTVaGKZvAJNuzrkN8\"}"}', 'sonata'), - (546795, '0x0638c781504574bd963c70df2cd0e5003fdd4340', 0, 1, '2024-05-06 10:13:39+00', 0, 0, '{"fid": 295057, "object": "user", "pfp_url": "https://ddt5q3jxn2hvazstbv6w6re2cjctekbxfa4zqiqfb4oiwfkajmyq.arweave.net/GOfYbTduj1BmUw19b0SaEkUyKDcoOZgiBQ8cixVASzE/", "profile": {"bio": {"text": "I am here", "mentioned_profiles": []}}, "username": "sarhangi", "power_badge": false, "display_name": "sarhangi 🎩🔵⛓️🍖🍖", "active_status": "inactive", "verifications": ["0xc8c569023ddbec73380f3be0b940309e61f1a14b"], "follower_count": 1095, "custody_address": "0x99e54e573977cb982b3de99a4564b431a38fd91d", "following_count": 1291, "verified_addresses": {"eth_addresses": ["0xc8c569023ddbec73380f3be0b940309e61f1a14b"], "sol_addresses": ["FjB8gsuu2G5BWLhgYrXs584b78rYwU9JzDkyL9ioQts6"]}}', '{"{\"url\":\"https://on.soundcloud.com/hkfqtYmahah5YnNS8\"}"}', NULL), - (553168, '0xe333729cd4cc7a46e16357a85003e1a961d79f4f', 0, 1, '2024-05-06 10:32:16+00', 0, 9, '{"fid": 508188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/66ab94f4-7c32-4c5d-ce26-7a5d245ce200/rectcrop3", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 928, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 909, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-471596025/leewoo?si=db51940320bd4750bd92976836bf280a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (924043, '0xc935f8f159d7ecf8a31ae4a1685ee9105f08d8ac', 0, 1, '2024-05-07 07:36:05+00', 0, 0, '{"fid": 446972, "object": "user", "pfp_url": "https://i.imgur.com/PReb6Qm.jpg", "profile": {"bio": {"text": "Use the weekends to build the life you''ve always wanted.", "mentioned_profiles": []}}, "username": "hsyn", "power_badge": false, "display_name": "Hsyn", "active_status": "inactive", "verifications": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "follower_count": 363, "custody_address": "0xf1ee30b6c5e599b198d04a7faec24fe2c7d22cb0", "following_count": 487, "verified_addresses": {"eth_addresses": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qpnKfmwMwV41RDug8\"}"}', NULL), - (615741, '0xc5c6b0b5d7e80cc4a325a97215989a52c1476dd3', 0, 1, '2024-05-06 13:16:32+00', 0, 1, '{"fid": 503301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd149365-f560-4f73-074e-96f79e694d00/rectcrop3", "profile": {"bio": {"text": "Novice crypto investor |\nWife | CXO @ a startup |\nWork hard play harder!💗", "mentioned_profiles": []}}, "username": "woodrose", "power_badge": false, "display_name": "woodrose", "active_status": "inactive", "verifications": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "follower_count": 1024, "custody_address": "0x40a5d849f9631932cdd264d48cd37289c003afd2", "following_count": 1116, "verified_addresses": {"eth_addresses": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K8UP8xv5bx8rdrd37\"}"}', NULL), - (566916, '0xa25b1d77d7ca63254fcbb3febde844b7212cb812', 0, 1, '2024-05-06 11:22:19+00', 0, 0, '{"fid": 286957, "object": "user", "pfp_url": "https://ewhoob6flqqnvto3qqysl5iy24fzzakvgiilwfufevsamzqclwtq.arweave.net/JY7nB8VcINrN24QxJfUY1wucgVUyELsWhSVkBmYCXac/", "profile": {"bio": {"text": "Trading is my thing.\nhttps://zora.co/@slimbear\n", "mentioned_profiles": []}}, "username": "dantaisbest", "power_badge": false, "display_name": "danta🎩🍖", "active_status": "inactive", "verifications": ["0x8091651d8562e720c588639f858457aeb454f613"], "follower_count": 2161, "custody_address": "0x45d9fdf0cdb50644550c3ddc86f0eb39362000a8", "following_count": 992, "verified_addresses": {"eth_addresses": ["0x8091651d8562e720c588639f858457aeb454f613"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/m1VahTJ9eUwbPhcW6\"}"}', NULL), - (581728, '0x50ead825f92bda1e7a14ea13a65ebd872110e158', 0, 1, '2024-05-06 12:03:21+00', 0, 4, '{"fid": 507940, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4b4fd8d-7ccd-4641-62dc-82af221fb800/rectcrop3", "profile": {"bio": {"text": "My diary where I share my daily life <3\n", "mentioned_profiles": []}}, "username": "!507940", "power_badge": false, "display_name": "Vono", "active_status": "inactive", "verifications": ["0xeb0157f5f4ac2293561d65fe416dad9550f86705"], "follower_count": 89, "custody_address": "0xcb5c52587a3737eb6b38170ec75c5308023e5b8f", "following_count": 202, "verified_addresses": {"eth_addresses": ["0xeb0157f5f4ac2293561d65fe416dad9550f86705"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6qsyHiy6nJNacSUL8\"}"}', NULL), - (566761, '0x6647b185365126a40a096800334d464d82221c86', 0, 1, '2024-05-06 11:20:58+00', 0, 7, '{"fid": 316794, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeidv4j2lqgrxvgbaxd2zsxswqag2xbccnj6y3rixmpzlxlxiramsy4", "profile": {"bio": {"text": "Cfd Trader | Intrested in crypto and Web3 Research | @base / @zora / @degen / @goat", "mentioned_profiles": []}}, "username": "ryamoham", "power_badge": false, "display_name": "ryamoham 🎩🍖 🔵", "active_status": "inactive", "verifications": ["0xac6a9f9befa6482381df57d5ce02ff70b371e982"], "follower_count": 1155, "custody_address": "0xb86e5890644a19091daa7d6e4199a03a410e12ae", "following_count": 1082, "verified_addresses": {"eth_addresses": ["0xac6a9f9befa6482381df57d5ce02ff70b371e982"], "sol_addresses": ["FHU6NnBjreDeZYnEzPCx3y5Jp7GYZ65RMFyb5jUySP9h", "FHU6NnBjreDeZYnEzPCx3y5Jp7GYZ65RMFyb5jUySP9h"]}}', '{"{\"url\":\"https://on.soundcloud.com/DN76ry9Q4hFQfZVaA\"}"}', 'sonata'), - (560070, '0xfde180a71366986f8e884906823753d369410b62', 0, 1, '2024-05-06 10:57:52+00', 0, 4, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1779, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 908, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FU1H9XKZcQjuZ5Y67\"}"}', NULL), - (590801, '0x68594d2b9c7cef774fe50c6c674dd30abaff4e2e', 0, 1, '2024-05-06 12:16:45+00', 0, 1, '{"fid": 415861, "object": "user", "pfp_url": "https://i.imgur.com/JC04v6T.jpg", "profile": {"bio": {"text": "Degen digger / 조과장 / 강남 자주 출몰 💕 / 부자되고 싶오 💰 / 리액션 주면 바로 달려가요 🔥 ", "mentioned_profiles": []}}, "username": "todays-pnl", "power_badge": false, "display_name": "Today''s PNL", "active_status": "inactive", "verifications": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "follower_count": 4428, "custody_address": "0x26c1825f1d0ef65a08c6ac30a28a086c99bee88d", "following_count": 5241, "verified_addresses": {"eth_addresses": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5F2Qh\"}"}', NULL), - (603626, '0xd110b6e447d9eacd9505c241c6ea5a5e14f1a5ef', 0, 1, '2024-05-06 12:45:44+00', 0, 6, '{"fid": 499426, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c59ad12-9c89-43a2-26a8-ac05ed9ef900/original", "profile": {"bio": {"text": "F4F Come on bro!", "mentioned_profiles": []}}, "username": "wonnny", "power_badge": false, "display_name": "jay", "active_status": "inactive", "verifications": ["0x03e054022d3756429bbfc17e788a44781b221649"], "follower_count": 2030, "custody_address": "0x354b8e1a7c71b772cc7ca046b5b5816c7caa2795", "following_count": 2485, "verified_addresses": {"eth_addresses": ["0x03e054022d3756429bbfc17e788a44781b221649"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vautdiscovery/ed-sheeran-thinking-out-loud-live-on-jools-holland?si=0c42144859314c6681175f129ae744d5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (590669, '0x592b60765e67391551467cc19e83d08cd2f7406b', 0, 1, '2024-05-06 12:15:35+00', 0, 0, '{"fid": 410922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5188be57-e9e0-4de2-72bb-f0999eda2a00/original", "profile": {"bio": {"text": "Hi", "mentioned_profiles": []}}, "username": "rora", "power_badge": false, "display_name": "Rorachoi", "active_status": "inactive", "verifications": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "follower_count": 2719, "custody_address": "0x483497c64683bc51b3bbca1f4aef8c8dae693b27", "following_count": 2810, "verified_addresses": {"eth_addresses": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ambientbeat/03-r-b-ballad?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (558675, '0xca1491fcce1e42ede25ba78caed109455ac0ca65', 0, 1, '2024-05-06 10:53:55+00', 0, 0, '{"fid": 248529, "object": "user", "pfp_url": "https://i.imgur.com/4y7UPH3.jpg", "profile": {"bio": {"text": "I’m just this guy, you know?\n\nAlso at https://hey.xyz/u/nunonunes", "mentioned_profiles": []}}, "username": "nunonunes.eth", "power_badge": false, "display_name": "Nuno Nunes", "active_status": "inactive", "verifications": ["0x41a6c32d4ad0437bf4820b755e31393654603f6b"], "follower_count": 48, "custody_address": "0xc263f8551e182efef6c1f00233bd71885d55c519", "following_count": 129, "verified_addresses": {"eth_addresses": ["0x41a6c32d4ad0437bf4820b755e31393654603f6b"], "sol_addresses": ["4UFoJiV9o6yDiS5U5qEB8vpexca8zes2dMVh7VcsfSKm"]}}', '{"{\"url\":\"https://open.spotify.com/track/3nqQXoyQOWXiESFLlDF1hG?si=NXQ2qVbVRFOcFb_EihfwLA\"}"}', NULL), - (552664, '0x6633d2c6879c0f8bb22b16fdce5e102bc5fb3e2e', 0, 1, '2024-05-06 10:28:51+00', 0, 4, '{"fid": 326700, "object": "user", "pfp_url": "https://i.imgur.com/WWNWtHc.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "preflop12345", "power_badge": false, "display_name": "preflop🎩 🍖 ", "active_status": "inactive", "verifications": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "follower_count": 1914, "custody_address": "0x57bb96ec480a2043f2ac8386afbd7d3f8fb15ed3", "following_count": 929, "verified_addresses": {"eth_addresses": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95a4c7be-5e08-43c7-bb0f-ca12ae194c00/original\"}","{\"url\":\"https://soundcloud.com/zxcz11/various-artists-03-sbs?si=b554855843f74295b5d41fdf6edcfc2c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (567135, '0x589e71d6ac4fa49805f128dbff204a76eeaa08b2', 0, 1, '2024-05-06 11:25:56+00', 0, 8, '{"fid": 417203, "object": "user", "pfp_url": "https://i.imgur.com/U0jXYDx.jpg", "profile": {"bio": {"text": "반가워요^^ 열심히 소통할께요 ^^\n초선! 반사 :)\n\n", "mentioned_profiles": []}}, "username": "bkbl", "power_badge": false, "display_name": "Bkbl ", "active_status": "inactive", "verifications": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "follower_count": 2313, "custody_address": "0xe9405bfa3a9c004fe826dde1a595d06d7b142e27", "following_count": 1217, "verified_addresses": {"eth_addresses": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Rmi6drVUGsr739GN8\"}"}', 'sonata'), - (549912, '0xa65934e6a66bb92c3f503941c26406c00aed3669', 0, 1, '2024-05-06 10:22:56+00', 0, 3, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2496, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HThRhJCQkRd7N6iZ8\"}"}', 'sonata'), - (546812, '0x68b40503eee6be8b6fb5c743ccc6d5ddf780d3bf', 0, 1, '2024-05-06 10:14:18+00', 0, 2, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2493, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/y5xgp9nagRvtziN8A\"}"}', 'sonata'), - (520042, '0x345eb5ce4f7851fce49e8686d4e9763eb3f12d46', 0, 1, '2024-05-06 08:58:53+00', 0, 2, '{"fid": 441890, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmecrKriwJEq4sCapKfr3nqXSHib6RP2XRmNqsvjznPqZ5/3967.png", "profile": {"bio": {"text": "Metaverse Alliances\n🎮 \n生き甲斐", "mentioned_profiles": []}}, "username": "p0uria.eth", "power_badge": false, "display_name": "Pouria🎩", "active_status": "inactive", "verifications": ["0xf3ba5b880f3c4bc5c55cf069cc2ecd7c81e94a05"], "follower_count": 729, "custody_address": "0xdf3ddd4fa80005d8048952e4daaf17cc536ec1ca", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xf3ba5b880f3c4bc5c55cf069cc2ecd7c81e94a05"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=fjXcEdFyQiqJ4CKObmepMQ\"}"}', 'replyguys'), - (649498, '0xb351268dfe9a763742d17f3d0f149e06aa7edb59', 0, 1, '2024-05-06 14:34:50+00', 0, 2, '{"fid": 508265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69ebf462-b264-4496-5ced-44142e52d800/rectcrop3", "profile": {"bio": {"text": "I like money!!\nI love SNS!!\nI love degen!!", "mentioned_profiles": []}}, "username": "!508265", "power_badge": false, "display_name": "super-sup", "active_status": "inactive", "verifications": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "follower_count": 919, "custody_address": "0x4cf60b0d401222b6478a8b6f1efb2be4b2dec9dc", "following_count": 1716, "verified_addresses": {"eth_addresses": ["0x5608601f11c1cbd1e385587f5e71e5444f2f9a14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/love-blackpink-307127669/tws-ohmymy-7s?si=ea2cc141245f41a0aacb5340c9bea7ee&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://youtu.be/YPg1sA0qNpo?si=6S7E\"}"}', 'sonata'), - (785113, '0xf609bb99dcdec7bf463e1d9ff32509f57b6aefca', 0, 1, '2024-05-07 02:19:54+00', 0, 8, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1228, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1415, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4jFNL\"}"}', 'sonata'), - (553172, '0xeab82f2e085a40e8f8d433ec55904f11a48c6449', 0, 1, '2024-05-06 10:31:41+00', 0, 3, '{"fid": 466532, "object": "user", "pfp_url": "https://i.imgur.com/cWGdehp.jpg", "profile": {"bio": {"text": "I like diving, dogs, traveling, and cooking", "mentioned_profiles": []}}, "username": "gomgomi", "power_badge": false, "display_name": "gomgomi", "active_status": "inactive", "verifications": ["0x3ea65e7f8ddffe83a2a8a6ee59595d84169cb449"], "follower_count": 1512, "custody_address": "0x66a0375dd9d3ba26bfaab36eee0a6455e1818cda", "following_count": 1620, "verified_addresses": {"eth_addresses": ["0x3ea65e7f8ddffe83a2a8a6ee59595d84169cb449"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/princess-beno/oohyo-dandelion-single-ver?si=0ad73d6f6da5497291d6283cfde4da71&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (605431, '0x81fd05dca5268386aaad1e8dad773e8842b7ef00', 0, 1, '2024-05-06 12:49:51+00', 0, 0, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 815, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RgHDiH6pXy9i1HDw7\"}"}', NULL), - (560072, '0x01767c30a837ba17dcc756e1b186e1cda8f4c686', 0, 1, '2024-05-06 10:57:56+00', 0, 1, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1696, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1302, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/peKaLtrdmSmAJkey6\"}"}', 'sonata'), - (603641, '0x92abe71aff1c141fd083e7769372584fdc3d2562', 0, 1, '2024-05-06 12:45:52+00', 0, 0, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-903394743/craig-david-7-days?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (612036, '0x11f9e2e456e7b34b44fab760544a34e6c41b7683', 0, 1, '2024-05-06 13:08:44+00', 0, 2, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1209, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1374, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1swZL\"}"}', 'sonata'), - (615507, '0x9d679adcc7c0443aeb6057e3685d2cdeb886bb8b', 0, 1, '2024-05-06 13:15:15+00', 0, 1, '{"fid": 393489, "object": "user", "pfp_url": "https://i.imgur.com/GchiJIH.gif", "profile": {"bio": {"text": "wanna collect information about NFTs & crypto🚀\nliving in JAPAN\nなまけものが本体です🦥", "mentioned_profiles": []}}, "username": "muimui.eth", "power_badge": false, "display_name": "muimui🦥💮🍖", "active_status": "inactive", "verifications": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "follower_count": 636, "custody_address": "0xbe9290d78be661125bec5a77adf8a04dd6a58289", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tofubeats/music-kurikaeshi-no-music-2015-tofubeats-demotape\"}"}', 'bgm'), - (672077, '0x3383b0b4710c2d192a97b48b4067cce243fef5bb', 0, 1, '2024-05-06 15:51:09+00', 0, 1, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1026, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1205, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QaGBbiyWD7crntqaA\"}"}', 'idol-japan'), - (547196, '0x921fe0f0803073f7cf957cae11bbc32409c97621', 0, 1, '2024-05-06 10:15:57+00', 0, 4, '{"fid": 192631, "object": "user", "pfp_url": "https://arweave.net/ecbDmMZsi8L1cy_V9DP9-Gdhd-WDATr3pELoHUKd4GQ/", "profile": {"bio": {"text": "GM:)\nCrypoto Wanderer", "mentioned_profiles": []}}, "username": "nanamika", "power_badge": false, "display_name": "↑nanamika↑", "active_status": "inactive", "verifications": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "follower_count": 1014, "custody_address": "0xce9779bb8be935083bf80ef70ffedeb2b095e4c6", "following_count": 1351, "verified_addresses": {"eth_addresses": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "sol_addresses": ["EeMPV4WxJm3Pd2Cy3JZaTX6EtkLBJK4XiEeMkaH6tBQA"]}}', '{"{\"url\":\"https://open.spotify.com/track/1NrJYpdAi7uosDRPmSYrsG?si=MMilXjHFSwyJmyxWv6A5fA\"}"}', 'sonata'), - (550270, '0x07e495fd42dad436cdbaad395941e3d874ffc8f6', 0, 1, '2024-05-06 10:23:51+00', 0, 0, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1462, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1095, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/84bdgcDkVumGZa6q9\"}"}', NULL), - (550248, '0x6386c2eb9847a37feacc5778f44cd78d8a55f67e', 0, 1, '2024-05-06 10:24:15+00', 0, 0, '{"fid": 435809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a0c8f29-7abc-4cd6-21b5-d310b4d74500/rectcrop3", "profile": {"bio": {"text": "Gamer \nAnime lover", "mentioned_profiles": []}}, "username": "metanol", "power_badge": false, "display_name": "Mosi ", "active_status": "inactive", "verifications": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "follower_count": 529, "custody_address": "0x36edb1c0063e62765d4a75c95b0617cfc7f7a7db", "following_count": 537, "verified_addresses": {"eth_addresses": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "sol_addresses": ["8xhkzggBcy8uTA6ZhkWkoT1M5EbCHJuyKrQqW2QceyHN"]}}', '{"{\"url\":\"https://soundcloud.com/villafuerte-productions/off-da-drank?in=buzzing-playlists/sets/buzzing-hip-hop&si=db484c7cfdbf4a8a92bc3ecaf3048c66&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (590671, '0x67fafb7ffe9729798f197f392b27874b523a8b6a', 0, 1, '2024-05-06 12:14:19+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/user-662268840/frank-sinatra-i-love-you-baby\"}"}', NULL), - (547190, '0x71e135d7824a21c21ab47a09e8a828411f1e4867', 0, 1, '2024-05-06 10:16:05+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pairpiano/my-neighbor-totoro-ost-path-of-the-wind-piano-cover?si=17c4252a17334b6bb679094e898bd12c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (593350, '0x9ea7ef087b367b4315f39a427d3b7615c6698565', 0, 1, '2024-05-06 12:22:46+00', 0, 6, '{"fid": 307726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5503b1b-bfea-4f4f-a491-50ecd5a91300/rectcrop3", "profile": {"bio": {"text": "SearchFi is Bullish🔥F4F ", "mentioned_profiles": []}}, "username": "elonmask88", "power_badge": false, "display_name": "ElonMask", "active_status": "inactive", "verifications": ["0x9367cf8cbf3c172d7c2471edbbf0f3699bbdb9a1"], "follower_count": 712, "custody_address": "0xad1f609211ebf5791f452677878fca14e7cf0337", "following_count": 723, "verified_addresses": {"eth_addresses": ["0x9367cf8cbf3c172d7c2471edbbf0f3699bbdb9a1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-757189298/vuvkyzqpxncy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (648676, '0xba47cf978fcba6a7d9bb13cc232c8ffc132a8167', 0, 1, '2024-05-06 14:33:34+00', 0, 4, '{"fid": 328924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07e5b1d8-24a3-4966-7159-31859f6f8700/rectcrop3", "profile": {"bio": {"text": "Hello fren! \nI like a duck!!\n❤️🩷🧡💛💚💙\nNFT collector and artist\n반사 100% 갑니다!!", "mentioned_profiles": []}}, "username": "goldenori", "power_badge": false, "display_name": "GoldenOri 🎩🍖", "active_status": "inactive", "verifications": ["0x30e128ad331ae21d467ba3e710cb686fddc2efbf"], "follower_count": 1924, "custody_address": "0xee49413b527ed4b5d38c0132114f05d121d2f81d", "following_count": 1859, "verified_addresses": {"eth_addresses": ["0x30e128ad331ae21d467ba3e710cb686fddc2efbf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ujinban/vb94d3uy99wx?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (565168, '0x0075792d0351d3e105be7cec56772eae7e869f44', 0, 1, '2024-05-06 11:12:30+00', 0, 0, '{"fid": 248529, "object": "user", "pfp_url": "https://i.imgur.com/4y7UPH3.jpg", "profile": {"bio": {"text": "I’m just this guy, you know?\n\nAlso at https://hey.xyz/u/nunonunes", "mentioned_profiles": []}}, "username": "nunonunes.eth", "power_badge": false, "display_name": "Nuno Nunes", "active_status": "inactive", "verifications": ["0x41a6c32d4ad0437bf4820b755e31393654603f6b"], "follower_count": 48, "custody_address": "0xc263f8551e182efef6c1f00233bd71885d55c519", "following_count": 128, "verified_addresses": {"eth_addresses": ["0x41a6c32d4ad0437bf4820b755e31393654603f6b"], "sol_addresses": ["4UFoJiV9o6yDiS5U5qEB8vpexca8zes2dMVh7VcsfSKm"]}}', '{"{\"url\":\"https://soundcloud.com/san-fermin-1/sonsick?si=e870e3c34fe94f6da9b4fdf300ea7df2\"}"}', NULL), - (547195, '0x7db017a277128528e8aa2b27e00006bbd520ed78', 0, 1, '2024-05-06 10:15:01+00', 0, 0, '{"fid": 295057, "object": "user", "pfp_url": "https://ddt5q3jxn2hvazstbv6w6re2cjctekbxfa4zqiqfb4oiwfkajmyq.arweave.net/GOfYbTduj1BmUw19b0SaEkUyKDcoOZgiBQ8cixVASzE/", "profile": {"bio": {"text": "I am here", "mentioned_profiles": []}}, "username": "sarhangi", "power_badge": false, "display_name": "sarhangi 🎩🔵⛓️🍖🍖", "active_status": "inactive", "verifications": ["0xc8c569023ddbec73380f3be0b940309e61f1a14b"], "follower_count": 1095, "custody_address": "0x99e54e573977cb982b3de99a4564b431a38fd91d", "following_count": 1291, "verified_addresses": {"eth_addresses": ["0xc8c569023ddbec73380f3be0b940309e61f1a14b"], "sol_addresses": ["FjB8gsuu2G5BWLhgYrXs584b78rYwU9JzDkyL9ioQts6"]}}', '{"{\"url\":\"https://on.soundcloud.com/hkfqtYmahah5YnNS8\"}"}', NULL), - (574554, '0xf574d429e32cc2f6b1dd3f8c421961b579097f03', 0, 1, '2024-05-06 11:49:19+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2357, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GKhic\"}"}', 'sonata'), - (606783, '0xf3a543af4dbdf938ceaf6b869a3846ececa00181', 0, 1, '2024-05-06 12:52:14+00', 0, 3, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 981, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 909, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FVT5pSz2VoCfZtPR7\"}"}', 'sonata'), - (590765, '0x37c041239bd81c06a815b966187f5a185a7a32c4', 0, 1, '2024-05-06 12:16:16+00', 0, 16, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2741, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2435, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/adinda-putri-utami/bts-go-go-go-8d-use-headphone\"}"}', 'sonata'), - (567685, '0xfeaab8ec6cf5dac9d93c92983f5eae8053faef2f', 0, 1, '2024-05-06 11:27:26+00', 20, 14, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2669, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2953, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jrGzZ8n9k64PSH7b7\"}"}', 'sonata'), - (603646, '0xef1d3beb05ba666e82f79551e99d19c76149b0dc', 0, 1, '2024-05-06 12:45:13+00', 0, 4, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "follower_count": 1443, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1097, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/DkJKADVjEsbUA5z77\"}"}', NULL), - (650328, '0x63b0bec999eeeffbbd9bf462f341857ea26277d3', 0, 1, '2024-05-06 14:35:35+00', 0, 7, '{"fid": 500420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94c827d1-2f8b-4b92-93cc-b822fab86500/rectcrop3", "profile": {"bio": {"text": "I''m crypto investor ", "mentioned_profiles": []}}, "username": "hana1", "power_badge": false, "display_name": "HaNa1", "active_status": "inactive", "verifications": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "follower_count": 657, "custody_address": "0xd386af8943077d2913a03aaedb8550316b3b8f74", "following_count": 777, "verified_addresses": {"eth_addresses": ["0x499e16bad7f457740bfed28ac1d43c14335bb5d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/miear-plando/mi-mancherai-josh-groban?si=001a07b295ba4de7a0c8a49005f21f5f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (553431, '0xa6b3f1a54b7d0f91d0e22a595ade9f42760c1cd7', 0, 1, '2024-05-06 10:33:55+00', 0, 0, '{"fid": 510268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/898f749f-e8b3-4020-1ac6-eb543d004e00/rectcrop3", "profile": {"bio": {"text": "Hello world", "mentioned_profiles": []}}, "username": "!510268", "power_badge": false, "display_name": "doonut🎩", "active_status": "inactive", "verifications": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "follower_count": 418, "custody_address": "0xc1b763b680989873b5abb1bf82730b339bddd5f0", "following_count": 701, "verified_addresses": {"eth_addresses": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/romantruth/priest-of-a-strange-religion-edit-de-roman-truth-the-nocturnal-hazard-orchestra?in=sc-playlists-kr/sets/disco-fever&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (664017, '0x37a4a025befc6b0bf194b5e6d274bec245018c67', 0, 1, '2024-05-06 15:12:15+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/04-hall-oates?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (664019, '0xc35e807446fe68bd1f78d5e74a4c1a0e6f0666ea', 0, 1, '2024-05-06 15:12:10+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/03-i-am-not-your-ocean-anymore?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (540434, '0x63d06c282e37edab36e09b518161e5cf46af783d', 0, 1, '2024-05-06 09:53:30+00', 0, 0, '{"fid": 211286, "object": "user", "pfp_url": "https://i.imgur.com/0IrXyw6.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "yeti0x", "power_badge": false, "display_name": "Yeti", "active_status": "inactive", "verifications": ["0x7fa77093e83c9292c2357ea799ac2c57ec138203"], "follower_count": 150, "custody_address": "0x03de11224567ad98954df6a84341ba9b865186b5", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x7fa77093e83c9292c2357ea799ac2c57ec138203"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6mdGfjrWlzVxcHcqbOVN3q?si=K8zglAkoSjCC9lGYdCUKnw\"}"}', 'onrepeat'), - (637183, '0x8c6643b5c126301b8694409619340ed43a323e18', 0, 1, '2024-05-06 14:06:15+00', 0, 1, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 165, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 509, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4jinN6zd1gqnciat8\"}"}', 'sonata'), - (663768, '0xdd1797c45d1191ef7f1544fa0c390fd153d80965', 0, 1, '2024-05-06 15:11:09+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-925082307/glorilla-wanna-be-feat-megan-thee-stallion?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (957721, '0x31b3a17eb4ee39366ce7b21202f4bf85b54a31a8', 0, 1, '2024-05-07 09:10:48+00', 0, 8, '{"fid": 500303, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4d3ec05-d788-4c65-baaa-86a1fa40c700/rectcrop3", "profile": {"bio": {"text": "만나서 반가워😀\n\n잘 부탁해 ~", "mentioned_profiles": []}}, "username": "sudde", "power_badge": false, "display_name": "나야나", "active_status": "inactive", "verifications": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "follower_count": 1662, "custody_address": "0x0c9ec1bcd0bcc3b7d3daa278e8e531ccca4dba6e", "following_count": 1607, "verified_addresses": {"eth_addresses": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hwt2B\"}"}', 'sonata'), - (560899, '0x5c02911e471343a6f8fdb414caf3919c2f2b4ede', 0, 1, '2024-05-06 11:00:34+00', 0, 4, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2389, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1613, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AbzjyuRni9ZqUSco8\"}"}', 'sonata'), - (567689, '0x74945acf3f40c00711d6d0e5f7b5044a3b4a9479', 0, 1, '2024-05-06 11:27:41+00', 0, 6, '{"fid": 402942, "object": "user", "pfp_url": "https://i.imgur.com/xsHAqsp.jpg", "profile": {"bio": {"text": "Crypto lady", "mentioned_profiles": []}}, "username": "mina1402", "power_badge": false, "display_name": "Mina", "active_status": "inactive", "verifications": ["0x6612b5e6c4e7d976ec31b55d61b9a673ff8d7bbd"], "follower_count": 382, "custody_address": "0xb110d9deb0031b4133b9ffb70b674b43ceb897b0", "following_count": 247, "verified_addresses": {"eth_addresses": ["0x6612b5e6c4e7d976ec31b55d61b9a673ff8d7bbd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Her & The Sea [CLANN] by somniari  on #SoundCloud https://soundcloud.com/wylfi-r-kkurr/her-the-sea?ref=clipboard&p=a&c=0&si=6a0ca9d966da47f68d6d0be6f10b0000&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (593362, '0x7043c3783080ce039fe5eb6697933811a40664ed', 0, 1, '2024-05-06 12:23:20+00', 0, 15, '{"fid": 475621, "object": "user", "pfp_url": "https://i.imgur.com/iDPLKG6.jpg", "profile": {"bio": {"text": "모두부자됩시다 퐈이아 무반", "mentioned_profiles": []}}, "username": "thingkkk", "power_badge": false, "display_name": "ThinGKKK", "active_status": "inactive", "verifications": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "follower_count": 3140, "custody_address": "0xc33e161c1715926354fe84e9e97965a5c34f0049", "following_count": 3464, "verified_addresses": {"eth_addresses": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qFwT2aFYcWhh1kw19\"}"}', 'sonata'), - (547193, '0x1e9fe90d96967e8d3869cd7719c082fc8f93d84c', 0, 1, '2024-05-06 10:16:25+00', 0, 2, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pairpiano/howls-moving-castle-ost-merry-go-round-piano-cover?si=2ad4208fd8a048688e0a1f15985f761c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (551386, '0x06a885a37cb0585f6070996f98ee7ec1ad4b2eef', 0, 1, '2024-05-06 10:24:46+00', 0, 0, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1462, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1095, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/84bdgcDkVumGZa6q9\"}"}', NULL), - (603644, '0xf40935637498f2e159073ce34126e6f94c184a3e', 0, 1, '2024-05-06 12:44:54+00', 0, 3, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1199, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 556, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/APsp6\"}"}', 'sonata'), - (663200, '0xa8ceb4756726bc164628ca65bf6953c28848d721', 0, 1, '2024-05-06 15:08:36+00', 0, 1, '{"fid": 501190, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b4ab624e-a0fc-4d4d-3efc-fba2468e5200/rectcrop3", "profile": {"bio": {"text": "Hello, I''m 아르센 뤼팽 🎩 🇰🇷\n/ Artist 🎨 /\n\n\n\n I wanna steal your heart.\n \"I respect faith, but doubt is what let''s you an Education.\" F4f 💯🧡\n ", "mentioned_profiles": []}}, "username": "lesmiserables", "power_badge": false, "display_name": " Arsène Lupin🎩🔴⛓️", "active_status": "inactive", "verifications": ["0xf3d7bb25f5644818b55c524616d31563ba2dd049"], "follower_count": 1154, "custody_address": "0xb46a72cb105d821e2bfee0fe9382a3389a21fed1", "following_count": 2180, "verified_addresses": {"eth_addresses": ["0xf3d7bb25f5644818b55c524616d31563ba2dd049"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LnkCf\"}"}', 'sonata'), - (568060, '0xf0a90bdfe3e2c3af6ebf53ec1510176e1f6f9350', 0, 1, '2024-05-06 11:29:02+00', 0, 2, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1265, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 888, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamiroquai/spend-a-lifetime-1\"}"}', NULL), - (519293, '0xa0de32790a4abef1f9d07435c5027f681374b2cf', 0, 1, '2024-05-06 08:52:41+00', 0, 2, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 364, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 187, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7a4dc2f-3452-408b-7a43-92085b21e900/original\"}","{\"url\":\"https://open.spotify.com/track/5nayhWICkQGMTkisxVMbRw?si=3xyLOag4Tlm8zQaWI9eyRA\"}"}', 'bangers'), - (525444, '0xce202f33faf6bd6836dc06990bbd4db44baf79c1', 0, 1, '2024-05-06 09:19:56+00', 0, 1, '{"fid": 12495, "object": "user", "pfp_url": "https://i.imgur.com/tEF4Kqf.jpg", "profile": {"bio": {"text": "Landscape & Travel Photographer \n\nhttps://linktr.ee/korayozpalamutcu", "mentioned_profiles": []}}, "username": "korayozpalamutcu", "power_badge": false, "display_name": "Koray🎩", "active_status": "inactive", "verifications": ["0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec"], "follower_count": 648, "custody_address": "0x20893fe826efe9bf65bb2c56dae06cef48808eab", "following_count": 481, "verified_addresses": {"eth_addresses": ["0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/09jscLcwa4usINbtfzo5FL?si=vHgQ86ngQMW7_8-S5rN7jQ&context=spotify%3Aalbum%3A0SeTonJJPjy57LqiCDmeEM\"}"}', 'music-caster'), - (583522, '0x383d7aa15b19bdfeea1e22b77215bad684c2eba6', 0, 1, '2024-05-06 12:04:50+00', 0, 2, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 585, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 895, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8ownY8R3GcCKJaL77\"}"}', NULL), - (536377, '0xc256a8098aa143ccb6d86ee65203c69aaf278f21', 80, 1, '2024-05-06 09:44:31+00', 118, 59, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1355, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2200, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral_source=link\"}"}', NULL), - (595927, '0xb62d14e6287b87784ce87f321ca98a49b2610def', 0, 1, '2024-05-06 12:29:30+00', 0, 0, '{"fid": 432711, "object": "user", "pfp_url": "https://i.imgur.com/vmFyoj3.jpg", "profile": {"bio": {"text": "More cat’s pictures.", "mentioned_profiles": []}}, "username": "iku", "power_badge": false, "display_name": "Rousong🐈", "active_status": "inactive", "verifications": ["0xfeb1842d193aa4ba2c9ff850f78cbf7af99dff23"], "follower_count": 10, "custody_address": "0xe9cc942daa2d571eb07e43d095193d9bdd0f4a5d", "following_count": 70, "verified_addresses": {"eth_addresses": ["0xfeb1842d193aa4ba2c9ff850f78cbf7af99dff23"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0xfeb1842d193aa4ba2c9ff850f78cbf7af99dff23\"}"}', NULL), - (688792, '0x63852cf2d373f7874b1aa4b20c814123122cff9a', 0, 1, '2024-05-06 17:14:19+00', 0, 1, '{"fid": 509433, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca5fc429-4470-4ae4-865e-3fdc1005c700/rectcrop3", "profile": {"bio": {"text": "I love travel ❤\nLove talking with friends ❤\nLove sharing information ❤\nFollow me❤", "mentioned_profiles": []}}, "username": "!509433", "power_badge": false, "display_name": "Reeyuaa", "active_status": "inactive", "verifications": ["0x07004a13f78c13dd8e6678414dd33a2fd7c407f4"], "follower_count": 311, "custody_address": "0x7ef03131810cff12771418f50a68b339ffdf075f", "following_count": 348, "verified_addresses": {"eth_addresses": ["0x07004a13f78c13dd8e6678414dd33a2fd7c407f4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3z8h0TU7ReDPLIbEnYhWZb?si=KLPY_fW6SUW_HX_b_65wCw\"}"}', NULL), - (561147, '0x2350599cb64f9d12b2df73acbadba846c20846a6', 0, 1, '2024-05-06 11:01:18+00', 0, 1, '{"fid": 424774, "object": "user", "pfp_url": "https://i.imgur.com/hKlLOFJ.jpg", "profile": {"bio": {"text": "I am Japanese and would like to communicate with you all.\nAnime🍡, Manga📖, Art🎨, Trade💹, Flower🌸, Pokemon, ogiri\n▼father of 3 kids", "mentioned_profiles": []}}, "username": "kutakuta1001", "power_badge": false, "display_name": "kutakuta1001🍡💉", "active_status": "inactive", "verifications": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "follower_count": 1199, "custody_address": "0x815126572cd6e50d6dd08be2d5289d87f394e80e", "following_count": 1384, "verified_addresses": {"eth_addresses": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "sol_addresses": ["8vdRYGZvottLVRgUraBH2kikvLuaPypY7dweuBSon6BR"]}}', '{"{\"url\":\"https://on.soundcloud.com/5sWMC\"}"}', NULL), - (547620, '0x6c7e91bc610975af639ee72b629996b95c338d5f', 0, 1, '2024-05-06 10:17:34+00', 0, 0, '{"fid": 283780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7b6ae7-127e-45c7-cba3-a01774ca8100/rectcrop3", "profile": {"bio": {"text": "Collab manager• NFT•\nWeb3 content writer\nProfessional Community Manager • Project Advisor • Technical Advisor", "mentioned_profiles": []}}, "username": "tomasalpha.eth", "power_badge": false, "display_name": "ᴛᴏᴍᴀs ᴀʟᴘʜᴀ", "active_status": "inactive", "verifications": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "follower_count": 4707, "custody_address": "0x234d64898fbc7a8844c986f18fd002ad1becc5bd", "following_count": 145, "verified_addresses": {"eth_addresses": ["0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Lady Ocean - Painter (Metwesh Remix) by Metwesh on #SoundCloud https://on.soundcloud.com/N3ebr\"}"}', NULL), - (583517, '0x8a4ea2fa82d014481d961be22f63a8ec04b21e79', 0, 1, '2024-05-06 12:04:54+00', 0, 2, '{"fid": 415861, "object": "user", "pfp_url": "https://i.imgur.com/JC04v6T.jpg", "profile": {"bio": {"text": "Degen digger / 조과장 / 강남 자주 출몰 💕 / 부자되고 싶오 💰 / 리액션 주면 바로 달려가요 🔥 ", "mentioned_profiles": []}}, "username": "todays-pnl", "power_badge": false, "display_name": "Today''s PNL", "active_status": "inactive", "verifications": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "follower_count": 4428, "custody_address": "0x26c1825f1d0ef65a08c6ac30a28a086c99bee88d", "following_count": 5241, "verified_addresses": {"eth_addresses": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Anri - Remember Summer Days by Internet Aristocrat on #SoundCloud https://on.soundcloud.com/HcLSJ\"}"}', NULL), - (551631, '0x3581bd105a5c08c756360b96350dcf03f8641376', 0, 1, '2024-05-06 10:26:31+00', 0, 1, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1462, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1095, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kvnDkVMn9xbcgZ1r5\"}"}', NULL), - (546827, '0x1665c40d469b5e047786bb02d8e52b346ac01bb5', 0, 1, '2024-05-06 10:14:35+00', 0, 2, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1344, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gimgwangseog/nejvagrlyrib?si=1f478904ae7e416c97e5210fa89b602b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (557637, '0xe350e80653da80963fcce378097410d9162d61b5', 0, 1, '2024-05-06 10:50:31+00', 0, 0, '{"fid": 414050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/568505ff-a319-4eb2-e283-dbab51369500/rectcrop3", "profile": {"bio": {"text": "Product Owner @ a Big 4, and Artist.\nPrints and NFTs available:\n\nhttps://linktr.ee/Chiebuniem", "mentioned_profiles": []}}, "username": "pascalokafor", "power_badge": false, "display_name": "Pascal🎩", "active_status": "inactive", "verifications": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "follower_count": 121, "custody_address": "0x53feedd7a49bb51ff6530400dddb7e673deb9c66", "following_count": 190, "verified_addresses": {"eth_addresses": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1XqSILGQNyilzYxXSmtcxR?si=swSJj1P0R6uYDJf-ojT4ZQ\"}"}', NULL), - (663804, '0x235e9b848f1c332d7c24d21cd76d51bce5ed5ca1', 0, 1, '2024-05-06 15:10:19+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (651053, '0xc87851d802bbab8c6186b87ec1afe3efee73a35b', 0, 1, '2024-05-06 14:38:58+00', 0, 4, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1548, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 960, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qy7gnXVJMYHXDZMg8\"}"}', 'sonata'), - (549210, '0xe168b0a8a29277a9c2b41426ed7bc76160aa9ffb', 0, 1, '2024-05-06 10:20:20+00', 0, 4, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1270, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1157, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/35VcWn3lZ4ne9mhN8uMrFm?si=46HDGsjgSAKK0YlFD3HzSA&context=spotify%3Aplaylist%3A37i9dQZF1DWSDoVybeQisg\"}"}', NULL), - (561610, '0xe1b78573487ec9d72b839999780cc05a9d4bbda0', 0, 1, '2024-05-06 11:02:30+00', 0, 2, '{"fid": 513572, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2cfa741f-dac1-4b14-3b17-e910da27b600/original", "profile": {"bio": {"text": "Happy & Shiny 🫠", "mentioned_profiles": []}}, "username": "!513572", "power_badge": false, "display_name": "Blue ", "active_status": "inactive", "verifications": ["0x39c1a1e28aadbdac05454243048976546061128b"], "follower_count": 268, "custody_address": "0x39c1a1e28aadbdac05454243048976546061128b", "following_count": 575, "verified_addresses": {"eth_addresses": ["0x39c1a1e28aadbdac05454243048976546061128b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/direalshaggy/boombastic?si=be0850db67044d1bb8725c411ae43d89&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (545922, '0xc4c0838a7b4f8e8e6624efb2f492e9a7567c0b71', 0, 1, '2024-05-06 10:12:14+00', 0, 2, '{"fid": 498410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ae8a858-bc3b-4145-594d-28aae99d1f00/rectcrop3", "profile": {"bio": {"text": "Hello! Nice to meet you! 방갑습니다! 슈캐로 모두 찾아가 인사드립니다! 잘부탁드립니다!!😆", "mentioned_profiles": []}}, "username": "gism", "power_badge": false, "display_name": "gism", "active_status": "inactive", "verifications": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "follower_count": 1444, "custody_address": "0xfd3503e296ef08d2d93f143d589f9773f47d2484", "following_count": 1547, "verified_addresses": {"eth_addresses": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sila-maumalanga/drake-come-thru?si=c4335fda451a47799e7feaf3fb46d634&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (574941, '0xb527dcc4ad5dd8f444783972c2d3e99e627b0d18', 0, 1, '2024-05-06 11:50:27+00', 0, 0, '{"fid": 477674, "object": "user", "pfp_url": "https://i.imgur.com/lSYNMEx.jpg", "profile": {"bio": {"text": "F4F / follow 4 follow / 좋아요🔥 댓글🔥 리캐스트🔥 팔로우🔥 한분 한분 빠짐없이 찾아갈게요", "mentioned_profiles": []}}, "username": "seik0691", "power_badge": false, "display_name": "seik0691", "active_status": "inactive", "verifications": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "follower_count": 2440, "custody_address": "0x0456381954f63442eb1313b89231b46e770cd9f5", "following_count": 2425, "verified_addresses": {"eth_addresses": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "sol_addresses": []}}', '{"{\"url\":\"Listen to IVE (아이브) THE 2nd EP [IVE SWITCH] (해야 (HEYA), Accendio, Blue Heart, Ice Queen, WOW, RESET.) by send me your location. on #SoundCloud https://on.soundcloud.com/reAby\"}"}', NULL), - (591475, '0xd204c7df77e297b93a55de65a882b0da20f32da8', 0, 1, '2024-05-06 12:17:54+00', 0, 0, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 954, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1358, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"최애 노래입니다~ https://soundcloud.com/lasselindh/the-stuff?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (630261, '0x3f95a4e33298701ef24b9cbb63d5723ed1e9ba32', 0, 1, '2024-05-06 13:48:09+00', 0, 1, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1708, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2947, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LLMbL\"}"}', 'sonata'), - (716227, '0xbe1f96604a130f84908dd0e0a9dca6a188b116c1', 0, 1, '2024-05-06 19:25:20+00', 0, 3, '{"fid": 407424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d1d14ef7-07b5-4fe3-d618-b2080ce95b00/original", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mortezaxan", "power_badge": false, "display_name": "Morteza 🎩 🔄", "active_status": "inactive", "verifications": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "follower_count": 103, "custody_address": "0x81a0acbdaa12ac4f6c2a133211d5acab228dbece", "following_count": 124, "verified_addresses": {"eth_addresses": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/djaxe-sweden/loreen-tattoo-slowed-reverb\"}"}', NULL), - (265757, '0xb575a184f19a6ad1e929ea0d005c37d7d64db95e', 1210, 1, '2024-05-05 16:14:02+00', 12, 66, '{"fid": 392267, "object": "user", "pfp_url": "https://i.imgur.com/CYY2QGl.jpg", "profile": {"bio": {"text": "Crypto lover\nLet''s support each other💟 ", "mentioned_profiles": []}}, "username": "javat-lee", "power_badge": false, "display_name": "Javat-Lee 🎩 🍖 🔮✈️", "active_status": "inactive", "verifications": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "follower_count": 808, "custody_address": "0x2d5e509116a5feca597b1f209f01ff0afee65bc9", "following_count": 1627, "verified_addresses": {"eth_addresses": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0uEp9E98JB5awlA084uaIg\"}"}', 'replyguys'), - (573408, '0x6135685ba9038f7686768e4cc47f0fca11422192', 0, 1, '2024-05-06 11:45:23+00', 0, 3, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1620, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1614, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-793543988-785076913/honne-day-2?si=c90904a3ae294f56bbb3083af76436e0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (558973, '0x73a98752330a9637ec5e7a2f24c4aa7b11368253', 0, 1, '2024-05-06 10:54:15+00', 0, 5, '{"fid": 426662, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b47cd49-a73f-4253-1ce9-a104316e8100/original", "profile": {"bio": {"text": "Hello :) Follow me 💓 \n💚용용입니다💚\nhttps://www.alfafrens.com/channel/0x2264443aA20C382D4f18D63df550002655423951\n\n\n", "mentioned_profiles": []}}, "username": "yg-dragon", "power_badge": false, "display_name": "용용🔵🍖🎩", "active_status": "inactive", "verifications": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "follower_count": 2032, "custody_address": "0x33ed204170cc1d73a6905ca72ad16563e01113c4", "following_count": 3279, "verified_addresses": {"eth_addresses": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3FR2yqZsG07NhXz7uPyUyC\"}"}', 'sonata'), - (675824, '0x79a3f23b72912de47506badb53db1334238a3788', 0, 1, '2024-05-06 16:11:23+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2662, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3133, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c7GitwUKhjNnnQ9w6\"}"}', NULL), - (673972, '0x8085cb110ba577efa2e8bafeb97d5efcb5b1f519', 0, 1, '2024-05-06 16:04:41+00', 0, 0, '{"fid": 508032, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2f84d216-d6a3-4cb8-df8c-278e22e52200/rectcrop3", "profile": {"bio": {"text": "https://twitter.com/fufu_dij\nいわゆるモヒートです。\nこちらでも宜しくお願いします。", "mentioned_profiles": []}}, "username": "!508032", "power_badge": false, "display_name": "モヒート(mojito", "active_status": "inactive", "verifications": ["0xb508ad96f177edf45d910af7d1ba849b8849ef96"], "follower_count": 12, "custody_address": "0x5004ea9de0937f5a97ca1843f0bf94106db0545b", "following_count": 92, "verified_addresses": {"eth_addresses": ["0xb508ad96f177edf45d910af7d1ba849b8849ef96"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4fmXKVN14YI9tcHZNjJSlO?si=lX_ydc9qR6iGg8xuYlCnDQ\"}"}', 'musicjp'), - (785117, '0x7b266e69d738a91c4faa3ded73c10abcb3dbc160', 0, 1, '2024-05-07 02:18:33+00', 0, 0, '{"fid": 316454, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94d8a97b-cee3-429f-9bd1-f54514f31000/rectcrop3", "profile": {"bio": {"text": "Crypto Information Collector 🧐🌈\nMy alfa channel 👉 https://www.alfafrens.com/channel/0x2f177225f8924db2a6017ed9bb2a47b908c8414a\nLets go together 🤝", "mentioned_profiles": []}}, "username": "happyquokka", "power_badge": false, "display_name": "HappyQ🫂🎩⛓️", "active_status": "inactive", "verifications": ["0x15bf1554b8ce0a83a377b66cd5effbe3762d9166"], "follower_count": 2705, "custody_address": "0xccf0edb3db30e09456c9fe150007ac49ca04b695", "following_count": 2525, "verified_addresses": {"eth_addresses": ["0x15bf1554b8ce0a83a377b66cd5effbe3762d9166"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tf6RG\"}"}', 'sonata'), - (590800, '0xb550252d87a814d9ddb937b2a1ea5cd71bcf3d49', 0, 1, '2024-05-06 12:16:02+00', 0, 1, '{"fid": 459385, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02fb44c0-2e32-43c0-c0b0-7e8529973000/rectcrop3", "profile": {"bio": {"text": "I am an adventurous and curious girl. I try to build a perfect life.", "mentioned_profiles": []}}, "username": "sari1996", "power_badge": false, "display_name": "sara 🎩🔮🍖", "active_status": "inactive", "verifications": ["0x111b1bdb01cf89926d08e95e689553673b14002d"], "follower_count": 1891, "custody_address": "0xfc06f98e247922e547abbdb8f2d7241ce5a65351", "following_count": 892, "verified_addresses": {"eth_addresses": ["0x111b1bdb01cf89926d08e95e689553673b14002d"], "sol_addresses": ["EVQ3UJY7XasfkvmkMv2TuvDwQ4ediUA7vBkHD4ftvu3K"]}}', '{"{\"url\":\"https://soundcloud.com/alanwalker/faded-1?ref=clipboard&p=i&c=0&si=9F0FF55BF8744EDFA1FE872B68718503&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (454788, '0xa217c20751fb65ae32bd3aa74174998fda365ad6', 0, 1, '2024-05-06 06:50:10+00', 0, 3, '{"fid": 352294, "object": "user", "pfp_url": "https://i.imgur.com/3jURulC.png", "profile": {"bio": {"text": "I love the airdrops", "mentioned_profiles": []}}, "username": "wundawulf", "power_badge": false, "display_name": "Wunda 🎩 🔵📸", "active_status": "inactive", "verifications": ["0x5d7f5ca8e26c44e009ff378f9608c6e332b0239f"], "follower_count": 519, "custody_address": "0xd31717e9829d9d46659acf8e71f682ef266886ae", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x5d7f5ca8e26c44e009ff378f9608c6e332b0239f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/cella/its-you\"}"}', 'coop-recs'), - (706770, '0x358d814bcb1b222e8467a5da7e230af503eeeec1', 10, 1, '2024-05-06 18:27:35+00', 0, 1, '{"fid": 498981, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93f320e8-beab-4921-3326-457b4bb12200/original", "profile": {"bio": {"text": "Love nature", "mentioned_profiles": []}}, "username": "silverr", "power_badge": false, "display_name": "Silv🎩🏗️", "active_status": "inactive", "verifications": ["0xcc459846ff7587a972caeff28315c8d20390c4bd"], "follower_count": 58, "custody_address": "0x7f7db1ec4042ce65714652ffc89caa0611974231", "following_count": 289, "verified_addresses": {"eth_addresses": ["0xcc459846ff7587a972caeff28315c8d20390c4bd"], "sol_addresses": ["9xk7pLx4q8PxT4V64c4cgnSt4Lr2umeC5w5H2qd733m1"]}}', '{"{\"url\":\"https://soundcloud.com/trending-music-nord/sets/country?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (591887, '0x4fa407269ce356ff3fc1068906109e2fab98fe71', 0, 1, '2024-05-06 12:22:16+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/arashgolzadi/papillon\"}"}', NULL), - (591519, '0x41edd247d539ffddc4f86d0705b121286f84360e', 0, 1, '2024-05-06 12:18:00+00', 0, 4, '{"fid": 290640, "object": "user", "pfp_url": "https://i.imgur.com/O5ZNI75.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "jjjjjuuuuu", "power_badge": false, "display_name": "jjjjjuuuuu🎩🍖", "active_status": "inactive", "verifications": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "follower_count": 983, "custody_address": "0xc6ff0a3a40b66452b33aa97efb339d5bf3f21f9d", "following_count": 496, "verified_addresses": {"eth_addresses": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imnotminda/newjeansbubblegumremixminda?si=45c60ea450f24c1e984e1a2ff5917619&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (628319, '0x0c6270c2bf836355aec5a3755f31ca2935634237', 0, 1, '2024-05-06 13:44:12+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1172, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 989, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EpwkM82sRvibdAYu7\"}"}', 'sonata'), - (611049, '0x9d060525b8035cf9fe291b13c4c054262d464800', 0, 1, '2024-05-06 13:06:20+00', 0, 0, '{"fid": 446821, "object": "user", "pfp_url": "https://i.imgur.com/y7EJWF2.jpg", "profile": {"bio": {"text": "많이 배워가는 중입니다. 반갑습니다.", "mentioned_profiles": []}}, "username": "njyh11", "power_badge": false, "display_name": "njyh11", "active_status": "inactive", "verifications": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "follower_count": 1920, "custody_address": "0xcbe6bbdef680af58a9ec5e9e90208391edf3a21b", "following_count": 2549, "verified_addresses": {"eth_addresses": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nguyentrinhhoangphuong/god-dear-mother?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (615511, '0x3f0326107f9cfb30f2eb165b564ce61636a6c599', 0, 1, '2024-05-06 13:15:13+00', 0, 0, '{"fid": 419626, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26c07dc-79dd-4924-4924-5848d3fc3500/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "rasoulmaleki", "power_badge": false, "display_name": "R...m..🎩.🍖 🔵 🔮", "active_status": "inactive", "verifications": ["0xc7487323e18a9354118767e6c35c53675fc8654f"], "follower_count": 674, "custody_address": "0x4cc7c226dc930cd1e83cb89f8ccbb0cac497bcad", "following_count": 734, "verified_addresses": {"eth_addresses": ["0xc7487323e18a9354118767e6c35c53675fc8654f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AnS917Fx4p2RFdjw6\"}"}', NULL), - (591488, '0x7f4bd66ddc17058a11c357f6199e2fccac6c6aec', 0, 1, '2024-05-06 12:17:48+00', 0, 0, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 729, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1080, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-204213725/lover-taylor-swift?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (650600, '0xc042cf8af4e177335f4294db1723ed9a4ad7b4e0', 0, 1, '2024-05-06 14:37:10+00', 0, 5, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 981, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 911, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Uf9TCxEg8XSGkrDZ7\"}"}', 'sonata'), - (627057, '0x9e340e91a45ce804bd34abab1a84ffc6f1b665b3', 0, 1, '2024-05-06 13:40:40+00', 0, 1, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/isabonquisha/24k-magic-album-bruno-mars?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (784891, '0x81a7020a131217e75abcd8f17df132ab5dd815e3', 0, 1, '2024-05-07 02:17:37+00', 0, 2, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3433, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kHT6TVURXSDY8bPt7\"}"}', 'sonata'), - (613226, '0x1e8018fc5d46d74da39e51c6a04f1ed6d2ae0a4f', 0, 1, '2024-05-06 13:11:12+00', 0, 1, '{"fid": 500619, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd0d8fef-ba41-40cc-62c5-a8c23d818600/rectcrop3", "profile": {"bio": {"text": "🫶 my pet / daily life / crypto ", "mentioned_profiles": []}}, "username": "jamong2", "power_badge": false, "display_name": "woons", "active_status": "inactive", "verifications": ["0x192cc797ee37a5d407ae9fa71cdd86101f7bbab1"], "follower_count": 1701, "custody_address": "0x6af1a3e1000826284894096f603d6e7f1a47d82e", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x192cc797ee37a5d407ae9fa71cdd86101f7bbab1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hRdWweC8m2BB73Rn6\"}"}', NULL), - (616253, '0x9188540ecf1df0cfffcdf4a86bc3203a866bcb9c', 0, 1, '2024-05-06 13:18:19+00', 0, 3, '{"fid": 501820, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60e10659-76b4-4660-8806-1b456771d300/rectcrop3", "profile": {"bio": {"text": "From online to on-chain", "mentioned_profiles": []}}, "username": "b24d", "power_badge": false, "display_name": "Kuny", "active_status": "inactive", "verifications": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "follower_count": 1048, "custody_address": "0x19073cd6a24bd9f4479367b98868184b06e502f1", "following_count": 1342, "verified_addresses": {"eth_addresses": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/i8egudussmRAWqKr5\"}"}', 'sonata'), - (609128, '0xbd4a2c1b4746527604d8861396f7b7a0640c3ac4', 0, 1, '2024-05-06 12:59:28+00', 0, 11, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3878, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3313, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rYf5r\"}"}', NULL), - (630710, '0x8017c780fd66db731b872763d9154e9b767f46c9', 0, 1, '2024-05-06 13:48:35+00', 0, 1, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 1003, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1139, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mr-big/colorado-bulldog-live-2?si=4db06fbc8fd6402e8f9d3408ddc06d7c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (633682, '0xeb72c6d294f4cd443c5dc93d658b4ca33886e15c', 0, 1, '2024-05-06 13:55:53+00', 0, 17, '{"fid": 397290, "object": "user", "pfp_url": "https://i.imgur.com/vhiJrQW.jpg", "profile": {"bio": {"text": "I love my family and travel♡ 세 아이의 엄마♡\n금수저 만들어줄께! 열심히 배우고 나누겠습니다!", "mentioned_profiles": []}}, "username": "cyj3058", "power_badge": false, "display_name": "Mother Bird♡", "active_status": "inactive", "verifications": ["0x4a4d0964edb10863aa0a57746df31f8c4458e8c0"], "follower_count": 3913, "custody_address": "0x0b1db5502363c2c6239f62a02fc2b1d60566f5af", "following_count": 3990, "verified_addresses": {"eth_addresses": ["0x4a4d0964edb10863aa0a57746df31f8c4458e8c0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5ziC8vkzTPTkJuve8\"}"}', 'sonata'), - (690115, '0xdf3cdbb16f0a2501831b7672889ec874db4b96ab', 0, 1, '2024-05-06 17:21:31+00', 0, 0, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 840, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 939, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4K8nD\"}"}', NULL), - (591904, '0x8835ca8d7afc82e10c368d72de4ee278a7ab9280', 0, 1, '2024-05-06 12:22:20+00', 0, 0, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 1001, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1132, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user157514067/kebee-3?si=b8f14036c32041f593306ec8c8258e7b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (604441, '0x2a871cbd091f035c8d02e66c208c8c8fa2c04952', 0, 1, '2024-05-06 12:46:42+00', 0, 2, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 477, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 771, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3954Z\"}"}', 'sonata'), - (673674, '0x48ae8f21aa8f68060a0ee316118dadb398b359b4', 0, 1, '2024-05-06 16:00:45+00', 0, 6, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖💎🎶", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1244, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VWZEngT8LBPNhsuXA\"}"}', 'sonata'), - (615113, '0xbff6e6901404edfa0ea5839ec350c6ebfcc896cb', 0, 1, '2024-05-06 13:14:08+00', 0, 2, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1209, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1374, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TFKWM\"}"}', 'sonata'), - (609164, '0x9604daf722a5600ffba9b5cfbd898bf23ea4310a', 0, 1, '2024-05-06 12:59:40+00', 0, 3, '{"fid": 445791, "object": "user", "pfp_url": "https://i.imgur.com/QeKxLDp.jpg", "profile": {"bio": {"text": "Purplemind", "mentioned_profiles": []}}, "username": "armanasadi", "power_badge": false, "display_name": "R.maan", "active_status": "inactive", "verifications": ["0x91470af4fa588bed9b19ad81ef0e830c012b0bf2"], "follower_count": 620, "custody_address": "0x00d97f0d3f54dff58ab48747ecf216a2be3fcc2e", "following_count": 333, "verified_addresses": {"eth_addresses": ["0x91470af4fa588bed9b19ad81ef0e830c012b0bf2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cq7HaDQYYWU4y9K8A\"}"}', NULL), - (686366, '0xced175f97eca68165bbff21ca6454a5709e59222', 0, 1, '2024-05-06 17:01:10+00', 0, 2, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 668, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 412, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user228096838/the-quiett-ft-kebee-mc-meta?si=8fa1c96c36fa4e6fbf0a2c7c07215181&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (610505, '0x9a3feba1c4f45dbc52c2d7372b19c3773a9fb893', 0, 1, '2024-05-06 13:03:29+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 44, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yG8PSkzQA4VKfDYx7\"}"}', NULL), - (690725, '0xd88619fd0d8262252c94d91fc7d9d7e0c67a8818', 0, 1, '2024-05-06 17:23:49+00', 0, 2, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1273, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1158, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kvohst/dogs-of-chernobyl\"}"}', 'rock'), - (600991, '0x783003f028326fe6923d205a4233861526049f1f', 0, 1, '2024-05-06 12:39:26+00', 0, 2, '{"fid": 305150, "object": "user", "pfp_url": "https://i.imgur.com/YTpxlWF.jpg", "profile": {"bio": {"text": "I''m Makkusha, I''m 27. I''m a neurologist. I love to sing, read books and learn new things. I want to study languages.", "mentioned_profiles": []}}, "username": "tip-top", "power_badge": false, "display_name": "Makkusha 🎩🍿", "active_status": "inactive", "verifications": ["0xea1fff8d0c99a2b9405196c9a8edc56417072f4c"], "follower_count": 1450, "custody_address": "0xa1da88244c9aade6d8da29f1adbdb02ce30881d1", "following_count": 1596, "verified_addresses": {"eth_addresses": ["0xea1fff8d0c99a2b9405196c9a8edc56417072f4c"], "sol_addresses": ["DZ1cAQq6Py2wsRzPBUpmT8T7TfZm5c3ZpPnJUZ6SmBDg"]}}', '{"{\"url\":\"https://on.soundcloud.com/S1y2ZpXNmmmXVzR4A\"}"}', NULL), - (553631, '0x086d9e5059b6174fd49050033d2b2309de696b54', 0, 1, '2024-05-06 10:34:16+00', 0, 9, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1433, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 306, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (606780, '0x861b76e872b2717b58103bb9c0921aeb4f8dc378', 0, 1, '2024-05-06 12:52:31+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 44, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cgsZwG4Vu7g3ggU29\"}"}', NULL), - (563085, '0x830693550d63d0e1d0bc17601d1a112c2d3020e2', 0, 1, '2024-05-06 11:06:40+00', 0, 5, '{"fid": 389207, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ad1bcfd-550b-48ef-e718-f0b6cd3af000/rectcrop3", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 916, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1017, "verified_addresses": {"eth_addresses": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7fBv7CLKzipRk6EC6TWHOB?si=96xAo1yVSyaprnMoKuJlIg&context=spotify%3Asearch%3Athe%2Bh\"}"}', NULL), - (736018, '0x31a4254c31f470987114422a3749ca51db1ad2f9', 0, 1, '2024-05-06 21:51:24+00', 0, 0, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 183, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 528, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AK3idAiWRutKwzwWA\"}"}', 'sonata'), - (756118, '0xe897965c0bf379a6ec20b471ac64ba539889e132', 0, 1, '2024-05-06 23:52:59+00', 0, 2, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1530, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1801, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HdQmFtNzZ5Dxgj6N7\"}"}', NULL), - (591897, '0xba4eb084e76f23784b8c0c6ad6b6f2f83b5750f2', 0, 1, '2024-05-06 12:21:25+00', 0, 0, '{"fid": 459385, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/02fb44c0-2e32-43c0-c0b0-7e8529973000/rectcrop3", "profile": {"bio": {"text": "I am an adventurous and curious girl. I try to build a perfect life.", "mentioned_profiles": []}}, "username": "sari1996", "power_badge": false, "display_name": "sara 🎩🔮🍖", "active_status": "inactive", "verifications": ["0x111b1bdb01cf89926d08e95e689553673b14002d"], "follower_count": 1891, "custody_address": "0xfc06f98e247922e547abbdb8f2d7241ce5a65351", "following_count": 892, "verified_addresses": {"eth_addresses": ["0x111b1bdb01cf89926d08e95e689553673b14002d"], "sol_addresses": ["EVQ3UJY7XasfkvmkMv2TuvDwQ4ediUA7vBkHD4ftvu3K"]}}', '{"{\"url\":\"https://soundcloud.com/alanwalker/faded-1?ref=clipboard&p=i&c=0&si=A03DCF68AA444EF981F36C5F7EA46EB0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (607819, '0x9e453b39ad8c267ff4b079ebca601c1ed595a79f', 0, 1, '2024-05-06 12:55:53+00', 0, 3, '{"fid": 505894, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3ffe313-b27a-4122-2411-b0b4351e4e00/rectcrop3", "profile": {"bio": {"text": "Thank you so much for being friends with me!\n늘 겸손하고 화이팅!!!", "mentioned_profiles": []}}, "username": "kissday771", "power_badge": false, "display_name": "Movieboy1", "active_status": "inactive", "verifications": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "follower_count": 729, "custody_address": "0xeb98f8ee481cef5d0949c6d02faf41a79ea2cbe4", "following_count": 984, "verified_addresses": {"eth_addresses": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AtL3ezEsUygEEtxs6\"}"}', 'sonata'), - (595160, '0x99a428c02e467b00847497b0cc14012726233c2d', 0, 1, '2024-05-06 12:26:44+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2654, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3130, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Bm1JYvd27Tv8Khrq6\"}"}', NULL), - (690137, '0x525cc28bdc5620e3465dced5fbd8dbf070f28ebd', 0, 1, '2024-05-06 17:21:14+00', 0, 1, '{"fid": 500345, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7194d65a-385a-4117-d0b8-9c9edd68e600/rectcrop3", "profile": {"bio": {"text": "Love Crypto, Stocks❤️", "mentioned_profiles": []}}, "username": "ehxin1234", "power_badge": false, "display_name": "ehXin🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "follower_count": 557, "custody_address": "0x9ff2214b14e4089191bb7b51a911d31073d0ebef", "following_count": 924, "verified_addresses": {"eth_addresses": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/07o59OvDiUuVpAbGNntwCy\"}"}', NULL), - (595925, '0x63732920a0899c5e52d8329022800ce126bd7232', 0, 1, '2024-05-06 12:29:44+00', 0, 3, '{"fid": 410922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5188be57-e9e0-4de2-72bb-f0999eda2a00/original", "profile": {"bio": {"text": "Hi", "mentioned_profiles": []}}, "username": "rora", "power_badge": false, "display_name": "Rorachoi", "active_status": "inactive", "verifications": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "follower_count": 2720, "custody_address": "0x483497c64683bc51b3bbca1f4aef8c8dae693b27", "following_count": 2811, "verified_addresses": {"eth_addresses": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zvpcr9fmScWNqJgFA\"}"}', 'sonata'), - (649467, '0xaa779c5ae02f42c38e8ad58857f4b9b9fcd3ffd3', 0, 1, '2024-05-06 14:35:17+00', 0, 3, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1402, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 964, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jckrbrrymc7b/67a?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (629799, '0x8693edfc3e4d651e6a66dc7ede8c6de36e57f17a', 0, 1, '2024-05-06 13:47:10+00', 0, 3, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2146, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1880, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/seFUUrYHuGnsPiZ76\"}"}', 'sonata'), - (591902, '0x760f4e13bba758837656c371874e2abfd8b6a1c4', 0, 1, '2024-05-06 12:21:22+00', 0, 1, '{"fid": 415861, "object": "user", "pfp_url": "https://i.imgur.com/JC04v6T.jpg", "profile": {"bio": {"text": "Degen digger / 조과장 / 강남 자주 출몰 💕 / 부자되고 싶오 💰 / 리액션 주면 바로 달려가요 🔥 ", "mentioned_profiles": []}}, "username": "todays-pnl", "power_badge": false, "display_name": "Today''s PNL", "active_status": "inactive", "verifications": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "follower_count": 4428, "custody_address": "0x26c1825f1d0ef65a08c6ac30a28a086c99bee88d", "following_count": 5241, "verified_addresses": {"eth_addresses": ["0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Disclosure ft Sam Smith - Omen (Claptone Remix) by Claptone on #SoundCloud https://on.soundcloud.com/BRGb4\"}"}', NULL), - (604803, '0x1f6304817e062eb12ac3479acac8d6435db75385', 0, 1, '2024-05-06 12:47:02+00', 0, 3, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tiago-santos-157/craig-david-insomnia?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (616716, '0xd51febe6f0dac8ece0c0758b68d78553a33ebcb4', 0, 1, '2024-05-06 13:20:10+00', 0, 0, '{"fid": 433866, "object": "user", "pfp_url": "https://i.imgur.com/lJtAWQF.jpg", "profile": {"bio": {"text": "Have a good day!!\nI like parenting and food, exercise!!\nI love SUPERRARE", "mentioned_profiles": []}}, "username": "dooristar32", "power_badge": false, "display_name": "RARE-LOVER", "active_status": "inactive", "verifications": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "follower_count": 1859, "custody_address": "0xadd33e67c1876224068545e2497d535dad39027d", "following_count": 2220, "verified_addresses": {"eth_addresses": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/amoriu/wourjn833fdn?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (69806, '0x1efe4102e09be4511a5f4cb6910b3d1d7f155c9d', 2242, 1, '2024-05-04 23:46:17+00', 51, 25, '{"fid": 390928, "object": "user", "pfp_url": "https://i.imgur.com/h937FBC.png", "profile": {"bio": {"text": "Trailblazing Metaverse country star blending classic twang with digital flair.", "mentioned_profiles": []}}, "username": "tokentwangtucker", "power_badge": false, "display_name": "Token Twang Tucker", "active_status": "inactive", "verifications": ["0x5f11276c6afc5ac551585e3d1483601fb35aa72f"], "follower_count": 7, "custody_address": "0xf6ea97684767c35a12b0cf41101d5210338639f9", "following_count": 9, "verified_addresses": {"eth_addresses": ["0x5f11276c6afc5ac551585e3d1483601fb35aa72f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/token-twang-tucker/high-on-coinbase-charts\"}"}', NULL), - (609934, '0x3782875f31968406881712c6d41297ff0ec0745a', 0, 1, '2024-05-06 13:01:14+00', 10, 5, '{"fid": 505894, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3ffe313-b27a-4122-2411-b0b4351e4e00/rectcrop3", "profile": {"bio": {"text": "Thank you so much for being friends with me!\n늘 겸손하고 화이팅!!!", "mentioned_profiles": []}}, "username": "kissday771", "power_badge": false, "display_name": "Movieboy1", "active_status": "inactive", "verifications": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "follower_count": 729, "custody_address": "0xeb98f8ee481cef5d0949c6d02faf41a79ea2cbe4", "following_count": 984, "verified_addresses": {"eth_addresses": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kpPmYBVNEC7VLL5z8\"}"}', 'sonata'), - (614533, '0xf582f4b3ded07b03c08433d5e9e817fe6c3c0907', 0, 1, '2024-05-06 13:13:07+00', 10, 1, '{"fid": 380703, "object": "user", "pfp_url": "https://i.imgur.com/xtAoR60.gif", "profile": {"bio": {"text": "She/Her¦ Musician, Photographer, Audiovisual Artist.\n🥁Yamaha Drums endorser\nlinktr.ee/iineslobo", "mentioned_profiles": []}}, "username": "iineslobo", "power_badge": false, "display_name": "Inês Lobo🎩", "active_status": "inactive", "verifications": ["0x4c6bbe1710314bcddf019cdd713d7b126264ec03"], "follower_count": 269, "custody_address": "0xa4d0f61f1bfcab725d1e352bb905e4184008b314", "following_count": 378, "verified_addresses": {"eth_addresses": ["0x4c6bbe1710314bcddf019cdd713d7b126264ec03"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/theweeknd/the-weeknd-playboi-carti-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (557645, '0x87690429bc3c3d80453865ec8aa1d7638e1adc96', 0, 1, '2024-05-06 10:50:03+00', 0, 4, '{"fid": 426662, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b47cd49-a73f-4253-1ce9-a104316e8100/original", "profile": {"bio": {"text": "Hello :) Follow me 💓 \n💚용용입니다💚\nhttps://www.alfafrens.com/channel/0x2264443aA20C382D4f18D63df550002655423951\n\n\n", "mentioned_profiles": []}}, "username": "yg-dragon", "power_badge": false, "display_name": "용용🔵🍖🎩", "active_status": "inactive", "verifications": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "follower_count": 2032, "custody_address": "0x33ed204170cc1d73a6905ca72ad16563e01113c4", "following_count": 3279, "verified_addresses": {"eth_addresses": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6oh5mZnvl3qfe9OBXTwnCm\"}"}', 'sonata'), - (607611, '0x2c9c10f38a812381b2e8c735a88df0a21cc2da42', 0, 1, '2024-05-06 12:54:33+00', 0, 0, '{"fid": 445791, "object": "user", "pfp_url": "https://i.imgur.com/QeKxLDp.jpg", "profile": {"bio": {"text": "Purplemind", "mentioned_profiles": []}}, "username": "armanasadi", "power_badge": false, "display_name": "R.maan", "active_status": "inactive", "verifications": ["0x91470af4fa588bed9b19ad81ef0e830c012b0bf2"], "follower_count": 620, "custody_address": "0x00d97f0d3f54dff58ab48747ecf216a2be3fcc2e", "following_count": 333, "verified_addresses": {"eth_addresses": ["0x91470af4fa588bed9b19ad81ef0e830c012b0bf2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GkXYF31mPntebARt8\"}"}', NULL), - (676815, '0xc25e0884b056acb9d53210ea31d26227dd4d6359', 0, 1, '2024-05-06 16:15:14+00', 0, 6, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1218, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 972, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KThbVdOoIgqcR9VmCEVx7?si=947f5ac011af4539\"}"}', NULL), - (604813, '0x3c3567c408e1d0d6cc252e53570732375c7395e5', 0, 1, '2024-05-06 12:47:28+00', 0, 0, '{"fid": 505894, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3ffe313-b27a-4122-2411-b0b4351e4e00/rectcrop3", "profile": {"bio": {"text": "Thank you so much for being friends with me!\n늘 겸손하고 화이팅!!!", "mentioned_profiles": []}}, "username": "kissday771", "power_badge": false, "display_name": "Movieboy1", "active_status": "inactive", "verifications": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "follower_count": 729, "custody_address": "0xeb98f8ee481cef5d0949c6d02faf41a79ea2cbe4", "following_count": 984, "verified_addresses": {"eth_addresses": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GMKm89svnFsggq2K7\"}"}', NULL), - (595522, '0x238f6c29c636cda813a7153ed114b7b0c75e25bf', 0, 1, '2024-05-06 12:28:10+00', 0, 0, '{"fid": 195868, "object": "user", "pfp_url": "https://i.imgur.com/5dBXJ6X.jpg", "profile": {"bio": {"text": "Under Construction🔵", "mentioned_profiles": []}}, "username": "ic1101", "power_badge": false, "display_name": "IC1101", "active_status": "inactive", "verifications": ["0xfe1d6413f605eff67fde74727d50dbaedc0db96b", "0x95358758e440b8c1d7ba4b547bd3b3584a7c0306", "0x6ea779c5eef2e7424588b236e92c1f8f0ca07b2a", "0x85abe4b1c9c0a59bdcc5e0b873bbfc7df931d360", "0x83a273b7499693a35160b1a3481930112a8a314f"], "follower_count": 58, "custody_address": "0xd95728f3bfab8226a1440ca9c2795788415fc55d", "following_count": 140, "verified_addresses": {"eth_addresses": ["0xfe1d6413f605eff67fde74727d50dbaedc0db96b", "0x95358758e440b8c1d7ba4b547bd3b3584a7c0306", "0x6ea779c5eef2e7424588b236e92c1f8f0ca07b2a", "0x85abe4b1c9c0a59bdcc5e0b873bbfc7df931d360", "0x83a273b7499693a35160b1a3481930112a8a314f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0scyQTSVzVYz9adJPVBnJa?si=XlqButBzQxKp8T_njZ9qnQ\"}"}', 'sonata'), - (611359, '0x4f487dfcf91c15c1d70190fa8501b0b68114fb4f', 0, 1, '2024-05-06 13:06:46+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1391, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1900, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/283tBCedsF2H4ryF9\"}"}', NULL), - (615109, '0xce0010b9977fd8f30608e93644de1772940a3476', 0, 1, '2024-05-06 13:14:10+00', 0, 4, '{"fid": 501220, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36aeee53-0310-43a8-8e51-d754393b3900/rectcrop3", "profile": {"bio": {"text": "일단 난 슈캐 / 무지개 거울을 좋아하는 흑화된 그무언가 / 봇처럼 댓글 달면 답방 안가유🙏 저도 성심성의껏 적을게요 / f4f / momo AI / catizen / nine chronicles / degen / fingerstyle / fork guitar / K-music", "mentioned_profiles": []}}, "username": "cryptochoni", "power_badge": false, "display_name": "crypto CAT", "active_status": "inactive", "verifications": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "follower_count": 1296, "custody_address": "0x926a7eacdc09e92f80875fccb62b9030c452022f", "following_count": 1547, "verified_addresses": {"eth_addresses": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UER7VT2YJ7yrdyMk6\"}"}', 'sonata'), - (758045, '0x4047a8a2d110ada26cda0eb18148e6c82312f34f', 0, 1, '2024-05-06 23:56:49+00', 0, 9, '{"fid": 402461, "object": "user", "pfp_url": "https://i.imgur.com/ySH9neZ.jpg", "profile": {"bio": {"text": "제주살이 9년차 입니다^ ^", "mentioned_profiles": []}}, "username": "geniusseon", "power_badge": false, "display_name": "geniusseon🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "follower_count": 1564, "custody_address": "0xb5dfed4c234fe2e11150467b49680fdf2612f4a5", "following_count": 1826, "verified_addresses": {"eth_addresses": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ui8oE\"}"}', 'sonata'), - (596364, '0x574f4fa5e01354a2f06959c9deb651de43952d8b', 0, 1, '2024-05-06 12:29:51+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/bobbymcferrinmusic/dont-worry-be-happy-1\"}"}', NULL), - (596367, '0xde91cb6dbb36f8827b0714a02f55a12be1a6375d', 0, 1, '2024-05-06 12:30:36+00', 0, 7, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3548, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2012, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/1RRXVGyYFzamJjC69\"}"}', 'sonata'), - (604839, '0x5b88472c8df46a8ce92772bacdec156672afaeaa', 0, 1, '2024-05-06 12:48:42+00', 0, 0, '{"fid": 489373, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/71570858-c5b6-4460-e2bc-ac5cf6242700/rectcrop3", "profile": {"bio": {"text": "Active in the Internet and virtual space", "mentioned_profiles": []}}, "username": "mohammad-z61z", "power_badge": false, "display_name": "Mohammad Zolfagari🔄🎩", "active_status": "inactive", "verifications": ["0xc18b1664d994ecfa059f3fa433ff1c0c783d335e"], "follower_count": 257, "custody_address": "0x98d3116863974e6300976cb4a55ae276ef642097", "following_count": 1001, "verified_addresses": {"eth_addresses": ["0xc18b1664d994ecfa059f3fa433ff1c0c783d335e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Fred again.. x Duoteque x Orion Sun - ItsNotREEAALLLLLLLL by Fred again.. on #SoundCloud https://on.soundcloud.com/XC3Uz\"}"}', NULL), - (680285, '0xb4c16fc050e65f87113311a3e41f1f7f2c8cfdcb', 0, 1, '2024-05-06 16:24:36+00', 0, 1, '{"fid": 503541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7bd157f-1901-484d-4e68-9a2d9c7abe00/rectcrop3", "profile": {"bio": {"text": "✔️소소한 일상공유✔️소소한 행복🍀 \n\n✔️The best is yet to come🔥", "mentioned_profiles": []}}, "username": "jmggang", "power_badge": false, "display_name": "PassionJM", "active_status": "inactive", "verifications": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "follower_count": 889, "custody_address": "0x3e587e88dca50b6e3f0b99f2645fefbb283ebe7d", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/52HCcrEK8CHpQhhA9\"}"}', NULL), - (613848, '0x9ecc76a8aa8ec1996e69abb94469237c322e9090', 0, 1, '2024-05-06 13:12:06+00', 10, 14, '{"fid": 418296, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61889087-55c2-4f4a-d63b-4d738f320c00/original", "profile": {"bio": {"text": "We''re all friends! Come and play❤️‍🔥\nhttps://zora.co/@creambread", "mentioned_profiles": []}}, "username": "creambread", "power_badge": false, "display_name": "creambread", "active_status": "inactive", "verifications": ["0x6538bc9183bd6637e67b28ddb049a768e4ad3ab8"], "follower_count": 4901, "custody_address": "0xf6496812ad761d8a3715519233790d6cd1117cf0", "following_count": 4610, "verified_addresses": {"eth_addresses": ["0x6538bc9183bd6637e67b28ddb049a768e4ad3ab8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u1xMsNjEKyNEGM899\"}"}', 'sonata'), - (593460, '0x9221f24d043e46081862a5e28997d59eb8ed8b6d', 0, 1, '2024-05-06 12:23:06+00', 0, 4, '{"fid": 323975, "object": "user", "pfp_url": "https://i.imgur.com/aHyJtGw.jpg", "profile": {"bio": {"text": "너와 나의 연결고리. \n매너있게 재미있게 즐겁게 소통해요.\n좋은 정보 공유하도록 노력할께요~", "mentioned_profiles": []}}, "username": "daonpapa", "power_badge": false, "display_name": "Onpapa🎩", "active_status": "inactive", "verifications": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "follower_count": 1607, "custody_address": "0x9f09e9d1b492398f7f5d2a3d780eca0ed24af007", "following_count": 2920, "verified_addresses": {"eth_addresses": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0H96bSaKXHpzmVjljp6Xzy?si=38274e2cbd2c44ff\"}"}', 'sonata'), - (690134, '0x7c893cd1a9d8c92e940d36adf2223365b9d2e826', 0, 1, '2024-05-06 17:21:12+00', 0, 2, '{"fid": 417261, "object": "user", "pfp_url": "https://aoxjfk5aks5jufxlavz5ms6btpko3aatqfzanhhvtadb5j7n2v5q.arweave.net/A66Sq6BUupoW6wVz1kvBm9TtgBOBcgac9ZgGHqft1Xs/", "profile": {"bio": {"text": "Just make money", "mentioned_profiles": []}}, "username": "miladjz", "power_badge": false, "display_name": "Miladjz", "active_status": "inactive", "verifications": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "follower_count": 301, "custody_address": "0x0aee32bc354b9a5f1f03ee5db99f491151029658", "following_count": 388, "verified_addresses": {"eth_addresses": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-126922082/don-xhoni-x-dhurata-dora-lej?ref=clipboard&p=a&c=0&si=e3bcdca28c6a4806a5ba27dffddf335f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (608767, '0xc4f05729537340f5833cf106c6ad323942450e7d', 0, 1, '2024-05-06 12:57:24+00', 0, 8, '{"fid": 513392, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f999be1e-ee9a-46e9-834b-db682e9e6500/rectcrop3", "profile": {"bio": {"text": "Hello I’m pika :)", "mentioned_profiles": []}}, "username": "!513392", "power_badge": false, "display_name": "pika", "active_status": "inactive", "verifications": ["0x99f1059302e6f7b9cbe0fefa3563a20cc3dcf860"], "follower_count": 252, "custody_address": "0x0a289a67f1975bc2d3cada10204a983fc42967d5", "following_count": 335, "verified_addresses": {"eth_addresses": ["0x99f1059302e6f7b9cbe0fefa3563a20cc3dcf860"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/raulgaz/sets/save-your-tears\"}"}', 'sonata'), - (596365, '0x235d64dc949bfad2b7e26a82a603997fcb712d23', 0, 1, '2024-05-06 12:31:04+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/yigitcanbal/bob-marley-dont-worry-be-happy\"}"}', NULL), - (610758, '0xf20961a9d3f4347541a09db34d8eb8a98a2adba3', 0, 1, '2024-05-06 13:04:32+00', 0, 0, '{"fid": 446821, "object": "user", "pfp_url": "https://i.imgur.com/y7EJWF2.jpg", "profile": {"bio": {"text": "많이 배워가는 중입니다. 반갑습니다.", "mentioned_profiles": []}}, "username": "njyh11", "power_badge": false, "display_name": "njyh11", "active_status": "inactive", "verifications": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "follower_count": 1920, "custody_address": "0xcbe6bbdef680af58a9ec5e9e90208391edf3a21b", "following_count": 2549, "verified_addresses": {"eth_addresses": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/search?q=%EC%96%B4%EB%A8%B8%EB%8B%88%EA%BB%98%20god\"}"}', NULL), - (633684, '0xabacea8592def5b4c1e8ddb1d9a4febda3adfe75', 0, 1, '2024-05-06 13:56:14+00', 0, 5, '{"fid": 507495, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b8de9b9-8631-4730-d3a1-764d92058500/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!507495", "power_badge": false, "display_name": "nwjns", "active_status": "inactive", "verifications": ["0x1af8ac8bc8315958023665e32a99253020b05309"], "follower_count": 859, "custody_address": "0xffe6493776d4fc5dec35b8e8abcdd6f737518940", "following_count": 1309, "verified_addresses": {"eth_addresses": ["0x1af8ac8bc8315958023665e32a99253020b05309"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7WrqcTFUKyCheuYd8\"}"}', NULL), - (615495, '0xcdf13c7fe5327b5c927e3e86e6f265299a5fc5ae', 0, 1, '2024-05-06 13:15:55+00', 0, 7, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1209, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1374, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bM54W\"}"}', 'sonata'), - (628168, '0x5b05a7316e4d701710e47ac87a7ba8494588ef56', 0, 1, '2024-05-06 13:42:36+00', 0, 1, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 238, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 347, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/doven3/fusq-perfume-x-moe-shop-superstar-w-hentai-dude?in=hweepain/sets/choices&si=08cecc42d7454da39d7592533e5a1bc3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (529570, '0x7ab1fa6b2b5bf54be72e4109830e67da2ede4010', 0, 1, '2024-05-06 09:31:43+00', 0, 5, '{"fid": 402406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c929b53c-d4ee-4fd1-f9d8-78e288d3e100/original", "profile": {"bio": {"text": "Singer songwriter 🎩\n\nMY VIDEOS ON @DRAKULA https://drakula.app/user/tomasmika?invite=KT7NdT \n", "mentioned_profiles": []}}, "username": "tomasmika", "power_badge": false, "display_name": "Tomas Mika", "active_status": "inactive", "verifications": ["0xd765a67d91a7d186b372e0bc5e6382296e6b216d"], "follower_count": 678, "custody_address": "0xd765a67d91a7d186b372e0bc5e6382296e6b216d", "following_count": 636, "verified_addresses": {"eth_addresses": ["0xd765a67d91a7d186b372e0bc5e6382296e6b216d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/tomasmika/onchain-melody-a-fork-dao-song?referral=0x1f0ba780f8f237696aa2c1229d34a5c260c24489&referral_source=link\"}"}', NULL), - (595525, '0x98fbc8951be6cf7bd22f04919be26caebdeaa120', 0, 1, '2024-05-06 12:28:06+00', 0, 1, '{"fid": 19252, "object": "user", "pfp_url": "https://i.imgur.com/cBmxgrL.gif", "profile": {"bio": {"text": " /*Curious about Crypto, Metavers, NFT, Web3...*/", "mentioned_profiles": []}}, "username": "karimi", "power_badge": false, "display_name": "Armstrong 🎩🔵", "active_status": "inactive", "verifications": ["0x4a8b487f55e7c94d481f20a50ac64bb0e91ae8e8"], "follower_count": 4595, "custody_address": "0xfdb1a2bb066ad1c41f1d8614f3bb66ead8f222c7", "following_count": 909, "verified_addresses": {"eth_addresses": ["0x4a8b487f55e7c94d481f20a50ac64bb0e91ae8e8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tran-spire/axwell-ingrosso-more-than-you-know-martin-miller-bootleg-free?in=user-319988354/sets/early-2010s-pop-remix&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (596366, '0xe959949aba249c3a0cd4c0f2fa45b2a6637d5b65', 0, 1, '2024-05-06 12:29:49+00', 0, 1, '{"fid": 325596, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d166b4b9-2b4c-45c8-95c9-d515e2217400/rectcrop3", "profile": {"bio": {"text": "We live in a beautiful world", "mentioned_profiles": []}}, "username": "teyam", "power_badge": false, "display_name": "Erica🎩", "active_status": "inactive", "verifications": ["0xbf3dc3b7e4859792ac333fc4b3350ce4553e0fd2"], "follower_count": 1531, "custody_address": "0x7a1db07f576e4d4773870ed917b878082d932806", "following_count": 2013, "verified_addresses": {"eth_addresses": ["0xbf3dc3b7e4859792ac333fc4b3350ce4553e0fd2"], "sol_addresses": ["9QJg99jzBCRwsuoLaqzFKBHeH1eBC2GECfMCFe8Gf2Rx"]}}', '{"{\"url\":\"https://on.soundcloud.com/By3dNNNRGwFJZdvB6\"}"}', 'sonata'), - (676707, '0x1616cc1f0d5e029f673020ea0ecf3551235f445b', 0, 1, '2024-05-06 16:15:28+00', 0, 1, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1665, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1256, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kdwNw66xDyp9U3A77\"}"}', NULL), - (605416, '0x31feffc128a39f86a6f9caa4f77ccacf3464345f', 0, 1, '2024-05-06 12:48:55+00', 0, 0, '{"fid": 480461, "object": "user", "pfp_url": "https://i.imgur.com/S0NGLpO.jpg", "profile": {"bio": {"text": "My mind playing tricks on me", "mentioned_profiles": []}}, "username": "rmb", "power_badge": false, "display_name": "RMB🎩", "active_status": "inactive", "verifications": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "follower_count": 44, "custody_address": "0xb452484c5ccbae7677ec3b59c50ec5e40fee8664", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xb58bf2d5ffb52c1fad60f6750b639156ab249f53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jh9L5N77KqZNMZYG6\"}"}', NULL), - (650932, '0x25687c51325e294c35b5d7c27eb7bb83da1d5b8d', 0, 1, '2024-05-06 14:38:02+00', 0, 0, '{"fid": 264690, "object": "user", "pfp_url": "https://i.imgur.com/abmdIi1.png", "profile": {"bio": {"text": "Sometimes I rhyme fast sometimes I rhyme slow. Vegan degen.", "mentioned_profiles": []}}, "username": "and42", "power_badge": false, "display_name": "and42🎩", "active_status": "inactive", "verifications": ["0x87af71ffa2051dc58bbc2da8fdacbc036b701788"], "follower_count": 458, "custody_address": "0x76094293cf91ac4bfac7580c7029492ad79522b0", "following_count": 696, "verified_addresses": {"eth_addresses": ["0x87af71ffa2051dc58bbc2da8fdacbc036b701788"], "sol_addresses": ["2f9dWdcZQt2wvDuELzTVHvzE64uPej9SuBvzR821g4Un"]}}', '{"{\"url\":\"https://soundcloud.com/joeybadass/devastated?si=fb6110191fc34797a1155557c5c6f166&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (675618, '0xd2d5c31656d4591a125ebafc626c994dcdfa5e5d', 0, 1, '2024-05-06 16:08:17+00', 0, 1, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1026, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1205, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"http://でんぱ組.inc\"}","{\"url\":\"https://on.soundcloud.com/ebmB6KDxwu9YpWnL6\"}"}', 'idol-japan'), - (737881, '0x15d6543dd125ffc36bd795f85d5afcd8072c5baa', 0, 1, '2024-05-06 22:08:22+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.\nLook in the mirror, your opponent is in the mirrorv😘💛🌠", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7", "0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 412, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 689, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7", "0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0DnGfA1r8pAssJCuq4ojla?si=uqdz14YdSLqGdp9h28wylw\"}"}', NULL), - (730782, '0x13ff5e8150ffd39e89ba101c8cc6828e0646694f', 0, 1, '2024-05-06 20:54:18+00', 0, 3, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2634, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2453, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KU2P3\"}"}', 'sonata'), - (563064, '0xf21a8ffd5abfe9a978b724b2eff4b3e971a2fc00', 0, 1, '2024-05-06 11:06:00+00', 0, 7, '{"fid": 389207, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ad1bcfd-550b-48ef-e718-f0b6cd3af000/rectcrop3", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 916, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1017, "verified_addresses": {"eth_addresses": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5GcS9zT4iIL7l0JrqZeG6O?si=LMJlmsH1Qi6hFhjmvH01Eg&context=spotify%3Asearch%3Acri\"}"}', NULL), - (593383, '0x9e995f83c5ad37d313bd2a1f95e0096f15dd8479', 0, 1, '2024-05-06 12:22:45+00', 0, 0, '{"fid": 339616, "object": "user", "pfp_url": "https://i.imgur.com/RcyAUym.jpg", "profile": {"bio": {"text": "I am a painter and a 👒crypto enthusiast", "mentioned_profiles": []}}, "username": "zahraderakhshi", "power_badge": false, "display_name": "zahraad🎩🔵🍖🔄", "active_status": "inactive", "verifications": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "follower_count": 1928, "custody_address": "0x043933859392c1ba966b3bf4c0db15af7e258330", "following_count": 3091, "verified_addresses": {"eth_addresses": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Andy Williams -(Where Do I Begin ) Love Story (1971) by Ahmed Maher 235 on #SoundCloud https://on.soundcloud.com/rhAN3\"}"}', NULL), - (633978, '0x65277fe03a3a00c67edb8d1ef1941eb2631c0035', 0, 1, '2024-05-06 13:56:45+00', 0, 5, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 812, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/giovanni-scardoni/painkiller?si=14dcddee079f43f9868dd1ae21d3a625&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (710312, '0x8aed1f1f8ad714f3bbb3541db9056e09a639c197', 0, 1, '2024-05-06 18:43:19+00', 0, 3, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 808, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 923, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/official\"}","{\"url\":\"https://media3.giphy.com/media/SxFhdlPwrkw3TwDkRA/giphy.gif?cid=4f4edd024byequ75kxjclryb2aeds1ynyx4sjx5z614xbmox&ep=v1_gifs_search&rid=giphy.gif\"}"}', 'sonata'), - (617248, '0x1654d40443520c29fefbf1579eda8a5fc395849c', 0, 1, '2024-05-06 13:21:10+00', 0, 3, '{"fid": 503301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd149365-f560-4f73-074e-96f79e694d00/rectcrop3", "profile": {"bio": {"text": "Novice crypto investor |\nWife | CXO @ a startup |\nWork hard play harder!💗", "mentioned_profiles": []}}, "username": "woodrose", "power_badge": false, "display_name": "woodrose", "active_status": "inactive", "verifications": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "follower_count": 1024, "custody_address": "0x40a5d849f9631932cdd264d48cd37289c003afd2", "following_count": 1116, "verified_addresses": {"eth_addresses": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K8UP8xv5bx8rdrd37\"}"}', 'sonata'), - (737891, '0x5f94702ac4be556637701d02b9658682f9f42e0a', 0, 1, '2024-05-06 22:08:52+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.\nLook in the mirror, your opponent is in the mirrorv😘💛🌠", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7", "0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 412, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 689, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7", "0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6z4VNjyxLfRXRx23gzl51x?si=QY6EFQUEQCSjYx6emDy8sg\"}"}', NULL), - (593346, '0x9a87d4f4dabfdd0307140582856c12891f134732', 0, 1, '2024-05-06 12:25:03+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2926, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2358, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/j57bv\"}"}', 'sonata'), - (607612, '0xc3cca3443736411464f0ee2d4fa7fd3c341f101b', 0, 1, '2024-05-06 12:53:53+00', 0, 2, '{"fid": 385616, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/077a794c-7a8e-4709-2ed8-e6bd34183c00/rectcrop3", "profile": {"bio": {"text": "趣味は最近始めたAI画像生成 🤖*\n甘いものとコーヒーがすきななまけもの🦥💜\n\nMy hobby is AI image generation, which I recently started *\nA lazy person who likes sweets and coffee.", "mentioned_profiles": []}}, "username": "maccha8", "power_badge": false, "display_name": "maccha🍕🔵🎩👻🚩", "active_status": "inactive", "verifications": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "follower_count": 246, "custody_address": "0x2dbbac555d9ac7c9a5fcdd0899a97ef18b975b15", "following_count": 452, "verified_addresses": {"eth_addresses": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "sol_addresses": []}}', '{"{\"url\":\"https://youtu.be/fLexgOxsZu0?si=c3nV8OIoqUGB2ZmZ\"}","{\"url\":\"https://on.soundcloud.com/pPxt8nujEQZN1poQ9\"}"}', 'musicjp'), - (593375, '0x6b429c4d1d886d35513952568f31adfbeec52623', 0, 1, '2024-05-06 12:24:23+00', 0, 0, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 394, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/undergroundsun/iyeoka-simply-falling\"}"}', NULL), - (652005, '0x3a6250440c2c85cb71cba29d78574a424159d4d1', 0, 1, '2024-05-06 14:41:21+00', 0, 8, '{"fid": 401276, "object": "user", "pfp_url": "https://i.imgur.com/pZKEwwK.jpg", "profile": {"bio": {"text": "소통/$DEGEN/BASE/맞팔 환영!!\n맞디젠 환영!!🔥🔥", "mentioned_profiles": []}}, "username": "namonamo", "power_badge": false, "display_name": "BTC PEPE", "active_status": "inactive", "verifications": ["0x6cb72521dd4f81e7e82a31d5e2b29cdcb5676cac", "0xb5b2071180eeabadf984d9d04b307ee3c24bfc51"], "follower_count": 3244, "custody_address": "0x77d94163176f4211cbee1142014ba44132d850ce", "following_count": 3891, "verified_addresses": {"eth_addresses": ["0x6cb72521dd4f81e7e82a31d5e2b29cdcb5676cac", "0xb5b2071180eeabadf984d9d04b307ee3c24bfc51"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kL51TvGM6oi5cNyz6\"}"}', 'sonata'), - (634333, '0x2b3fe801ce6c49396cc9f97be6a73808ce1fc8ba', 0, 1, '2024-05-06 13:58:33+00', 0, 1, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1517, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thestrokes/oblivius?si=b42d750f2c1646c78707d6f5e6c7751b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (617239, '0xa90c6c6dd51555635f58f3d204d7b68e2c57e8e6', 0, 1, '2024-05-06 13:20:38+00', 0, 2, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1622, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1614, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/i2Co6\"}"}', 'sonata'), - (663788, '0xbb9bf1dbbdb15fd9c5ae5fca616ae4724aa15536', 0, 1, '2024-05-06 15:10:45+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sexyyred-sc/get-it-sexyy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (785518, '0xae57cb0b629529e0e38da86b6c449920abf3ba29', 0, 1, '2024-05-07 02:24:42+00', 0, 2, '{"fid": 500738, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac0ab18d-18ab-44ca-68b6-b047648a5800/rectcrop3", "profile": {"bio": {"text": "열심히 하는건 누구보다 자신 있습니다!\n슈퍼캐스트로 2배로 빠르게 보답하겠습니다🔥", "mentioned_profiles": []}}, "username": "premium191004", "power_badge": false, "display_name": "Degen_Moon", "active_status": "inactive", "verifications": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "follower_count": 1079, "custody_address": "0x86582a580e1ccd25fab0e894ba9598116df46d23", "following_count": 908, "verified_addresses": {"eth_addresses": ["0xbfc7f7c5647976e32b2247b53cbb72074817861b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K5cKGwPy8Lz29UYf8\"}"}', 'sonata'), - (628588, '0x9fedcad94e4f598c851939baa49d8371c6aceadf', 0, 1, '2024-05-06 13:44:23+00', 10, 1, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/poop-poop-828317186/bruno-mars-when-i-was-your-man?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (664022, '0x8f98c0186ae9daeacad1a6fa6035de5fccc17093', 0, 1, '2024-05-06 15:12:05+00', 0, 2, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2658, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2742, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1LnQki8qfAZGHkyZ8\"}"}', 'sonata'), - (676829, '0xec73a9e69f4d0081a8b02df93f3c3e81eb989073', 0, 1, '2024-05-06 16:15:04+00', 0, 5, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1218, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 972, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4y9PBVP1yDvL6Efur0IXoO?si=9f5a448ad9674792\"}"}', NULL), - (652022, '0x2f5e9ae0e07a3e276d097b59c8a43b323a143250', 0, 1, '2024-05-06 14:42:03+00', 0, 16, '{"fid": 454238, "object": "user", "pfp_url": "https://i.imgur.com/3xSLH5h.jpg", "profile": {"bio": {"text": "Enjoy Warpcast together!", "mentioned_profiles": []}}, "username": "strive", "power_badge": false, "display_name": "StriveD", "active_status": "inactive", "verifications": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "follower_count": 2181, "custody_address": "0xa2bbc7337888cc53d4a80fbb14fae4fa4349e40d", "following_count": 2145, "verified_addresses": {"eth_addresses": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yelo_r/her-best-part-feat-daniel-caesar-yelo-cover\"}"}', 'sonata'), - (664164, '0x3dc0d1d5e692683d2add54f039ccf9938689dc66', 0, 1, '2024-05-06 15:13:36+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/a04-can-i-b-u?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (633687, '0xc525a877c804a1f15aa0737c51cd94cb89163d58', 0, 1, '2024-05-06 13:56:34+00', 0, 2, '{"fid": 471610, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dbd09e4e-019b-44b0-1e4e-830bd4491d00/rectcrop3", "profile": {"bio": {"text": "I am library 🌺🌺🌺", "mentioned_profiles": []}}, "username": "daraazaryar", "power_badge": false, "display_name": "@Daraazaryar 🍗🎩🔵🍖", "active_status": "inactive", "verifications": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "follower_count": 614, "custody_address": "0xa51e52c181a4d3c3b5fae4a9edf52fb3ec31a779", "following_count": 711, "verified_addresses": {"eth_addresses": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/lilyeat/heliman\"}"}', NULL), - (704816, '0xa98d1a40006839512a7983bb4a8fb9e85d859b46', 50, 1, '2024-05-06 18:17:29+00', 1, 1, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 37, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/fuxk-sex-trafficking-sexual-abuse-rape?referral_source=link\"}"}', 'djs'), - (664024, '0x28e6b23c74e531ddf3bbeec4f102585c85fa31f4', 0, 1, '2024-05-06 15:12:09+00', 0, 4, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1788, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 910, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove1/san-e?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (615500, '0x4ceca7eb5ad0302f320ee727ee7d5cc713021179', 0, 1, '2024-05-06 13:15:43+00', 0, 1, '{"fid": 385616, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/077a794c-7a8e-4709-2ed8-e6bd34183c00/rectcrop3", "profile": {"bio": {"text": "趣味は最近始めたAI画像生成 🤖*\n甘いものとコーヒーがすきななまけもの🦥💜\n\nMy hobby is AI image generation, which I recently started *\nA lazy person who likes sweets and coffee.", "mentioned_profiles": []}}, "username": "maccha8", "power_badge": false, "display_name": "maccha🍕🔵🎩👻🚩", "active_status": "inactive", "verifications": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "follower_count": 246, "custody_address": "0x2dbbac555d9ac7c9a5fcdd0899a97ef18b975b15", "following_count": 452, "verified_addresses": {"eth_addresses": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AqGut6JPcSRjcmfK8\"}"}', 'musicjp'), - (682765, '0xc87fb24664ef519d789afb1b4f768376a1541a21', 0, 1, '2024-05-06 16:38:02+00', 0, 4, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1273, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1158, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0PmOFPxB4fjM9fHhDkQ9T1?si=W2Y767e1S7ySlHyR184Pow\"}"}', 'rock'), - (676322, '0x32a8519038a077ce1658089613b6b763d5ab18da', 0, 1, '2024-05-06 16:14:17+00', 0, 0, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1665, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1256, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kdwNw66xDyp9U3A77 이것도 낭만곡! 한번 들어보세요 \"}"}', NULL), - (651050, '0xe7d696ceb4607049683cab735caad5d96621e94f', 0, 1, '2024-05-06 14:39:40+00', 0, 4, '{"fid": 193746, "object": "user", "pfp_url": "https://i.imgur.com/qV0WoeH.jpg", "profile": {"bio": {"text": "猫の恩返しに出てくるナトルが好きです。\nMy creative inspiration comes down at 5~9 PM every day.", "mentioned_profiles": []}}, "username": "luca5642.eth", "power_badge": false, "display_name": "luca🎩🔵👻", "active_status": "inactive", "verifications": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "follower_count": 1300, "custody_address": "0xfcb46afe791a0ff441ecb78341664676e6c9a599", "following_count": 1113, "verified_addresses": {"eth_addresses": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/biyao104/01-2?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (634441, '0x6efbfc55e67808fcb8ba7e0e88a55b91d8bcbe81', 0, 1, '2024-05-06 13:59:14+00', 0, 17, '{"fid": 406493, "object": "user", "pfp_url": "https://i.imgur.com/nVBBwsm.jpg", "profile": {"bio": {"text": "항상 파이팅👍 ", "mentioned_profiles": []}}, "username": "yeomks", "power_badge": false, "display_name": "Yeomks🎩🍖", "active_status": "inactive", "verifications": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "follower_count": 4261, "custody_address": "0xb3043f0e2ae80ab98c9f1b03df36eba4a5dbf15c", "following_count": 3129, "verified_addresses": {"eth_addresses": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/calumscottmusicofficial/you-are-the-reason-1\"}"}', 'sonata'), - (706939, '0x457b3ea7631f7c28e8fef29f2047f995499be77d', 30, 1, '2024-05-06 18:30:28+00', 0, 4, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 37, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/for-thy-lonely-heart?referral_source=link\"}"}', 'musicnft'), - (613217, '0x79391b28409ad9bdb0d8c7760b162d9495af3235', 0, 1, '2024-05-06 13:11:22+00', 0, 7, '{"fid": 446821, "object": "user", "pfp_url": "https://i.imgur.com/y7EJWF2.jpg", "profile": {"bio": {"text": "많이 배워가는 중입니다. 반갑습니다.", "mentioned_profiles": []}}, "username": "njyh11", "power_badge": false, "display_name": "njyh11", "active_status": "inactive", "verifications": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "follower_count": 1920, "custody_address": "0xcbe6bbdef680af58a9ec5e9e90208391edf3a21b", "following_count": 2549, "verified_addresses": {"eth_addresses": ["0x1e314087e196e6ca03733bdff80079b1d8e132fc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bolbbalgan4/psy-father?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (652849, '0x2a210112a4d331129d2eb8d861822e045304df43', 0, 1, '2024-05-06 14:43:09+00', 0, 1, '{"fid": 357078, "object": "user", "pfp_url": "https://i.imgur.com/434kgXf.jpg", "profile": {"bio": {"text": "I Love your Soul ", "mentioned_profiles": []}}, "username": "masouddeldar", "power_badge": false, "display_name": "((M_SpeciaL))🍖🎩🔮🔵", "active_status": "inactive", "verifications": ["0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4"], "follower_count": 1036, "custody_address": "0x2d6a2747097e50ed88e751073de5deba24849caf", "following_count": 1723, "verified_addresses": {"eth_addresses": ["0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4"], "sol_addresses": ["BCKB1ns8GptJwAuyxdkmC7StUktD8FcVb2Qgt4T24PzV"]}}', '{"{\"url\":\"https://on.soundcloud.com/z45DuZY6VdJ5DW7Y8\"}"}', NULL), - (617233, '0xd65adeed4bb8a4ce269358ef9762f1d0b2833f1d', 0, 1, '2024-05-06 13:21:32+00', 0, 3, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1627, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1319, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aXJe9cV1ZJKfgkoM7\"}"}', 'sonata'), - (638530, '0xde6bcc8f557578bd231585d81fafca1bebe58b69', 0, 1, '2024-05-06 14:07:10+00', 0, 0, '{"fid": 508231, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/239719ef-6679-4892-470b-f538e3c2ad00/original", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "!508231", "power_badge": false, "display_name": "happyhappy", "active_status": "inactive", "verifications": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "follower_count": 91, "custody_address": "0x0ceadeaa7100c9b416e4899ff46307e507e461d6", "following_count": 220, "verified_addresses": {"eth_addresses": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ki-sung-kim-131816010/sonorus-beach-party-vibes-2?si=fec2c1cb7d444b6c807b4be9ceb91357&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (634511, '0x69970c35e7d6ed830e345a5e094c1a5812aa5169', 0, 1, '2024-05-06 14:00:06+00', 0, 2, '{"fid": 500500, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2da9745d-b65d-42b6-9cf7-187eacde3500/rectcrop3", "profile": {"bio": {"text": "Hi, i''m Dani''s mother.\nThank u 4 coming!🩷\nLet''s talk! 🫡\n🎩⛓️🟣\nhttps://zora.co/@youmiii", "mentioned_profiles": []}}, "username": "youmii", "power_badge": false, "display_name": "youme1130", "active_status": "inactive", "verifications": ["0xc73ee6e9bef9ebfad3146c0616087b139247402c"], "follower_count": 1220, "custody_address": "0xa1f6faca493a1a5cb380959fcf5ee587a9c0e1ea", "following_count": 1454, "verified_addresses": {"eth_addresses": ["0xc73ee6e9bef9ebfad3146c0616087b139247402c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/popstateofmind/beyonce-love-on-top-live?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (618239, '0x0ff5e46421929ae54a67eebd517bf03fb75eb95a', 0, 1, '2024-05-06 13:23:50+00', 0, 0, '{"fid": 346678, "object": "user", "pfp_url": "https://i.imgur.com/6PryjL1.jpg", "profile": {"bio": {"text": "네오 코인을 투자하고 민트와 워캐스트에 관심이 많은 사람입니다.", "mentioned_profiles": []}}, "username": "steampackmarine", "power_badge": false, "display_name": "Steampackmarine🍖", "active_status": "inactive", "verifications": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "follower_count": 1506, "custody_address": "0x8ba5eefdb660c494528c25f40a2add9ce5f575a9", "following_count": 1725, "verified_addresses": {"eth_addresses": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 버즈(Buzz) - 1St by KWON on #SoundCloud https://on.soundcloud.com/GC8Sn\"}"}', NULL), - (642197, '0x4185e7ac03005199b70c3cc8787e43518d6cb2be', 0, 1, '2024-05-06 14:17:57+00', 0, 1, '{"fid": 406030, "object": "user", "pfp_url": "https://i.imgur.com/vMCIp4x.jpg", "profile": {"bio": {"text": "🥰I love jung&su🎩🍖🔮🥰", "mentioned_profiles": []}}, "username": "luckyhappymom", "power_badge": false, "display_name": "😸luckyhappymom🎩🍖😸", "active_status": "inactive", "verifications": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "follower_count": 2914, "custody_address": "0x2ff561b9b84e0c139bb218f56569e7f6c84f9554", "following_count": 3668, "verified_addresses": {"eth_addresses": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TQt6y\"}"}', 'sonata'), - (942734, '0x2e8d10913f0352398441cbef4f60833ecb81fe68', 0, 1, '2024-05-07 08:29:56+00', 0, 1, '{"fid": 472831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6047f98a-3794-4b65-5525-ae5410183600/rectcrop3", "profile": {"bio": {"text": "World literature 📚 ✒️\nLiving in the light", "mentioned_profiles": []}}, "username": "goldmanbank", "power_badge": false, "display_name": "Ehsan🍖🎩🏦", "active_status": "inactive", "verifications": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "follower_count": 1222, "custody_address": "0x66f337aef04da6aa0c022a6041a02c5034fed87c", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "sol_addresses": ["6LmaJFGTnc8YLUTzjw3ys4miTmzaN9gpz64hmMhfSXAm"]}}', '{"{\"url\":\"Listen to Wael El Fashny - Sma''at Sautan | وائل الفشني- سمعت صوتاً | تترمسلسل الحشاشين by Tarek Eleish on #SoundCloud https://on.soundcloud.com/bJ4gj\"}"}', NULL), - (629802, '0xdc5d471c9ffcf6455bd8e997031a0592ad495786', 0, 1, '2024-05-06 13:47:09+00', 0, 2, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1517, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-226556808/rcp8v3g1wdqc?si=e2e032bf709142efb35ddfab9b846475&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (629047, '0xca195d7beb28679fb2bc498bc336301f533356f8', 0, 1, '2024-05-06 13:45:40+00', 0, 4, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 981, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 909, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ffbc900-a305-47c6-0c84-fe8ddc12a800/original\"}","{\"url\":\"https://on.soundcloud.com/bDgXc7J6UJokhSwK9\"}"}', 'sonata'), - (663196, '0x438f25fdf489e36be4dea2284e46b5cca9fe5dd1', 0, 1, '2024-05-06 15:07:46+00', 0, 2, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1663, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1256, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/H5bXpyXipTXDW3Zw8\"}"}', 'sonata'), - (654036, '0x899405ce8902785daf48ba3905f9395f92595298', 0, 1, '2024-05-06 14:46:03+00', 0, 5, '{"fid": 466946, "object": "user", "pfp_url": "https://i.imgur.com/av57x3f.jpg", "profile": {"bio": {"text": "korea no.1 pepe\ncrypto, degen, meme\n@@@@@@@크립토, 밈, 일상공유!!", "mentioned_profiles": []}}, "username": "rms7282", "power_badge": false, "display_name": "fire pepe", "active_status": "inactive", "verifications": ["0x38902852eceb1421cd632e233f2c1726fe970b43"], "follower_count": 2997, "custody_address": "0x981b5ecfe775795f777138612f0a9b06eb93d431", "following_count": 2415, "verified_addresses": {"eth_addresses": ["0x38902852eceb1421cd632e233f2c1726fe970b43"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/deathismercy/radio-head-creep?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (553448, '0xfd5c39afa6efde6ef213ce412c1154b37bf7b180', 0, 1, '2024-05-06 10:33:45+00', 0, 4, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1433, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 306, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'theblockexp'), - (664176, '0xd686496fe6b069ba398670a6760b40172f33700f', 0, 1, '2024-05-06 15:13:00+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/11-0415?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (664171, '0xafbec93ed904dbf0eba4db04e86aba3acd311c38', 0, 1, '2024-05-06 15:12:44+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/08-homesweethome?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (631026, '0xbb5d9460d3e550de3fc741c93c2ac4c45f14c631', 0, 1, '2024-05-06 13:50:02+00', 0, 10, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1284, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 967, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ads343vkytdo/tws?si=69b31d4c0e5e40d6ac3b9a0be442b67b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (705617, '0x6096ecea8645244d60930a65c80cc01bcd156489', 0, 1, '2024-05-06 18:20:55+00', 0, 3, '{"fid": 414949, "object": "user", "pfp_url": "https://i.imgur.com/F3W5Hd8.jpg", "profile": {"bio": {"text": "Hello There!\nI''m in Korea 🇰🇷 (Of course it''s south)\nI love crypto !🚀 & I like to recommend music in various genres (❛ε ❛)♫♪", "mentioned_profiles": []}}, "username": "youngmin", "power_badge": false, "display_name": "youngmin", "active_status": "inactive", "verifications": ["0x5bff7b079a639fc4c14af12ad89b27c04f6fd010"], "follower_count": 1135, "custody_address": "0x556f077ea00ac55c24dd5543a0b2ce874193eb96", "following_count": 1426, "verified_addresses": {"eth_addresses": ["0x5bff7b079a639fc4c14af12ad89b27c04f6fd010"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/theweeknd/blinding-lights?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (685348, '0xbf2929916b96eaea2d1710109389551f0ce85777', 0, 1, '2024-05-06 16:49:34+00', 0, 2, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 783, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1137, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/so9AEGcDAmfBM6d77\"}"}', NULL), - (634870, '0x56ba8a9172d77c56befd5a0ba51b3538033af6b7', 0, 1, '2024-05-06 14:02:04+00', 0, 6, '{"fid": 499881, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e49f02d2-a431-4686-8a7d-c892deb0a400/rectcrop3", "profile": {"bio": {"text": "crypto, design, cat, anime, jelly", "mentioned_profiles": []}}, "username": "ha-ri-bo", "power_badge": false, "display_name": "Haribo🍭", "active_status": "inactive", "verifications": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "follower_count": 781, "custody_address": "0xa276999a2aa7d23d74589378094f7ac37ae3f0e1", "following_count": 1531, "verified_addresses": {"eth_addresses": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/therarearchive1/tuki-acoustic-ver-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (617246, '0x9ad9c5396a93d19227ddec5bef3a77e7f43a7717', 0, 1, '2024-05-06 13:21:00+00', 0, 1, '{"fid": 346678, "object": "user", "pfp_url": "https://i.imgur.com/6PryjL1.jpg", "profile": {"bio": {"text": "네오 코인을 투자하고 민트와 워캐스트에 관심이 많은 사람입니다.", "mentioned_profiles": []}}, "username": "steampackmarine", "power_badge": false, "display_name": "Steampackmarine🍖", "active_status": "inactive", "verifications": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "follower_count": 1506, "custody_address": "0x8ba5eefdb660c494528c25f40a2add9ce5f575a9", "following_count": 1725, "verified_addresses": {"eth_addresses": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tSkSY\"}"}', 'sonata'), - (673818, '0xa4db2fcf1732fc309ea913c3eb3b1ddac9a081b3', 0, 1, '2024-05-06 16:03:48+00', 0, 4, '{"fid": 12312, "object": "user", "pfp_url": "https://i.imgur.com/Mr9IG47.jpg", "profile": {"bio": {"text": "Web3 newsletters & publishing.\n\nWe automatically summarize and cast about the best posts on Paragraph.", "mentioned_profiles": []}}, "username": "paragraph", "power_badge": false, "display_name": "Paragraph", "active_status": "inactive", "verifications": ["0xc9ddb5e37165827bbbff15b582e232c06862c4e8"], "follower_count": 3674, "custody_address": "0x1e8dc1e7210fc6b64cc6d48f1f04acc23d640477", "following_count": 1, "verified_addresses": {"eth_addresses": ["0xc9ddb5e37165827bbbff15b582e232c06862c4e8"], "sol_addresses": []}}', '{"{\"url\":\"newsletter.sound.xyz/collect-on-sound,-earn-dollarstrm\"}"}', NULL), - (618874, '0x6c7d6370e5fb708ca30a5a60f75ac59b8a6f529e', 0, 1, '2024-05-06 13:25:24+00', 0, 0, '{"fid": 286375, "object": "user", "pfp_url": "https://i.imgur.com/0lq7phu.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "hyo141", "power_badge": false, "display_name": "charlie141🎩🍖🔵", "active_status": "inactive", "verifications": ["0x3146183dadd7eecb6be75960ea3f03809bd66c6b"], "follower_count": 2321, "custody_address": "0x4303459fb96cdd39aed5d43fa44601b3243d8a3b", "following_count": 689, "verified_addresses": {"eth_addresses": ["0x3146183dadd7eecb6be75960ea3f03809bd66c6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/newjeans-bubble-gum?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (619193, '0x3a02ac5a478c8319c149d9be1b7161be0d05e4fb', 0, 1, '2024-05-06 13:27:25+00', 0, 6, '{"fid": 498410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ae8a858-bc3b-4145-594d-28aae99d1f00/rectcrop3", "profile": {"bio": {"text": "Hello! Nice to meet you! 방갑습니다! 슈캐로 모두 찾아가 인사드립니다! 잘부탁드립니다!!😆", "mentioned_profiles": []}}, "username": "gism", "power_badge": false, "display_name": "gism", "active_status": "inactive", "verifications": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "follower_count": 1448, "custody_address": "0xfd3503e296ef08d2d93f143d589f9773f47d2484", "following_count": 1548, "verified_addresses": {"eth_addresses": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/quietheart47/sets/nujabes-samurai-champloo-1?si=db68abd39e8b411c9340c73e585f2276&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (617253, '0x619b4dd14b7f960ea686566b50dbbfc07df1b622', 0, 1, '2024-05-06 13:20:59+00', 10, 6, '{"fid": 500619, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dd0d8fef-ba41-40cc-62c5-a8c23d818600/rectcrop3", "profile": {"bio": {"text": "🫶 my pet / daily life / crypto ", "mentioned_profiles": []}}, "username": "jamong2", "power_badge": false, "display_name": "woons", "active_status": "inactive", "verifications": ["0x192cc797ee37a5d407ae9fa71cdd86101f7bbab1"], "follower_count": 1701, "custody_address": "0x6af1a3e1000826284894096f603d6e7f1a47d82e", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x192cc797ee37a5d407ae9fa71cdd86101f7bbab1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7XAroxGG8F79NRgMA\"}"}', 'sonata'), - (654038, '0x44293f5e7d9bf374cb5fa2876b854f9e35d0395b', 0, 1, '2024-05-06 14:44:53+00', 0, 0, '{"fid": 20280, "object": "user", "pfp_url": "https://i.imgur.com/rqID0sS.jpg", "profile": {"bio": {"text": "The worth living place", "mentioned_profiles": []}}, "username": "aquacity", "power_badge": false, "display_name": "Aquacity", "active_status": "inactive", "verifications": ["0xe04168a3fc8bbf87dff5bef46985e56eb82ed721"], "follower_count": 737, "custody_address": "0x5ed7f1c68717cdc7dacf3017fd85feb661db678c", "following_count": 667, "verified_addresses": {"eth_addresses": ["0xe04168a3fc8bbf87dff5bef46985e56eb82ed721"], "sol_addresses": ["CBTtUe6aVRyduNJ8FooKXHeHUso77xa8U5pXhrmY236S"]}}', '{"{\"url\":\"https://soundcloud.com/user-956334953/coldplay-speed-of-sound\"}"}', NULL), - (664021, '0x57f29ec872e3d7058ec6c9a2aaa9e860414a4581', 0, 1, '2024-05-06 15:11:58+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/01-lovegame?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (637878, '0xbadc2a261d235550aeef234c650e58a9bfbe8f0d', 0, 1, '2024-05-06 14:06:28+00', 0, 13, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 2006, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 1982, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0327e61-fb7d-4416-cf57-12dc3e172e00/original\"}","{\"url\":\"https://soundcloud.com/slime-king-326521628/anri-remember-summer-days?si=9195ca14620b4d8685233552f59fdcbb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (641395, '0xa537f4ff074d79eec2a81413f097775588280c6a', 0, 1, '2024-05-06 14:15:36+00', 0, 6, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1465, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1767, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/404wave/crush-nighty-night-feat-zion-t?si=7e9ebaf865154a07804761df71d05a92&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (619227, '0x211ee0198209e70172050cca57e3fddd78672d28', 0, 1, '2024-05-06 13:27:25+00', 0, 3, '{"fid": 401441, "object": "user", "pfp_url": "https://i.imgur.com/xw6m1Wy.jpg", "profile": {"bio": {"text": "반응이 늦더라도 조금만 기다려주세요. \n", "mentioned_profiles": []}}, "username": "woawoame", "power_badge": false, "display_name": "Lemon", "active_status": "inactive", "verifications": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "follower_count": 2046, "custody_address": "0xe8b627f4c3b83022f8bacbd4d0f957e1f31e6318", "following_count": 2318, "verified_addresses": {"eth_addresses": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t7noi\"}"}', 'sonata'), - (633700, '0xd1d8b0161afdc01126b29fac9271be39ac57db2f', 0, 1, '2024-05-06 13:55:39+00', 0, 3, '{"fid": 389395, "object": "user", "pfp_url": "https://i.imgur.com/ghugzS0.jpg", "profile": {"bio": {"text": "Hello guys , I''m mehdi 💚", "mentioned_profiles": []}}, "username": "mehdi-kh61", "power_badge": false, "display_name": "Mehdi🍖🎩", "active_status": "inactive", "verifications": ["0x788978359ea6c091ada783f94a50500a6b5e4a25"], "follower_count": 550, "custody_address": "0xbca229533c13b1ace020ce416883a58224d31592", "following_count": 1009, "verified_addresses": {"eth_addresses": ["0x788978359ea6c091ada783f94a50500a6b5e4a25"], "sol_addresses": ["2BFwa7rsD2YGq7jNAHCRxrzheE8bpgV7hC8Qj1tL3x3s"]}}', '{"{\"url\":\"https://on.soundcloud.com/rp1Gh\"}"}', NULL), - (654046, '0x0b7f2df3df53b9d264c10746b121e4240495e8dc', 0, 1, '2024-05-06 14:44:28+00', 0, 6, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4919, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2463, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user640515/10-2?si=9189c3e7518d4694867820736318f5e1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (663795, '0x97eea00dd62b8571384b533b9bf751ea83ea3ce3', 0, 1, '2024-05-06 15:11:17+00', 0, 3, '{"fid": 501190, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b4ab624e-a0fc-4d4d-3efc-fba2468e5200/rectcrop3", "profile": {"bio": {"text": "Hello, I''m 아르센 뤼팽 🎩 🇰🇷\n/ Artist 🎨 /\n\n\n\n I wanna steal your heart.\n \"I respect faith, but doubt is what let''s you an Education.\" F4f 💯🧡\n ", "mentioned_profiles": []}}, "username": "lesmiserables", "power_badge": false, "display_name": " Arsène Lupin🎩🔴⛓️", "active_status": "inactive", "verifications": ["0xf3d7bb25f5644818b55c524616d31563ba2dd049"], "follower_count": 1154, "custody_address": "0xb46a72cb105d821e2bfee0fe9382a3389a21fed1", "following_count": 2180, "verified_addresses": {"eth_addresses": ["0xf3d7bb25f5644818b55c524616d31563ba2dd049"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LnkCf\"}"}', 'banmal-mode'), - (664020, '0xe849e599e564914e0e777c4916fdc5743c3bb5ff', 0, 1, '2024-05-06 15:12:04+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/02-youre-so-lonely-now-so-you?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (641385, '0x47729823d37b36db0776f07b19f6ef59b8a24146', 0, 1, '2024-05-06 14:13:32+00', 0, 0, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1467, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1097, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mcFtoCJQLyAcdx6r6\"}"}', NULL), - (664169, '0x228e14023e1141472f91c290f8ff9278472eea63', 0, 1, '2024-05-06 15:13:14+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/14-bubbles-mushrooms?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (785445, '0xf9a970038dc0ea6d97806068e0ed8ab120effcfd', 0, 1, '2024-05-07 02:23:28+00', 0, 0, '{"fid": 379719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5a4786e-5b89-4263-87d6-8430a60ee300/original", "profile": {"bio": {"text": "I love degen 💕 love warpcast 💕 \nHave a happy day 😊 ", "mentioned_profiles": []}}, "username": "eepapa", "power_badge": false, "display_name": "EeloveEe", "active_status": "inactive", "verifications": ["0xace434032e8fae43b1f20b9863d0702b1ada0e9f"], "follower_count": 282, "custody_address": "0x98f5b00e341f1f8c4d0af9516dabd023fe3fb650", "following_count": 457, "verified_addresses": {"eth_addresses": ["0xace434032e8fae43b1f20b9863d0702b1ada0e9f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cloulive/z9yfcvh96owj\"}"}', 'sonata'), - (562491, '0xad708594f207f51c9c217bbbacf1ec0d636a0a73', 0, 1, '2024-05-06 11:03:18+00', 0, 3, '{"fid": 426662, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b47cd49-a73f-4253-1ce9-a104316e8100/original", "profile": {"bio": {"text": "Hello :) Follow me 💓 \n💚용용입니다💚\nhttps://www.alfafrens.com/channel/0x2264443aA20C382D4f18D63df550002655423951\n\n\n", "mentioned_profiles": []}}, "username": "yg-dragon", "power_badge": false, "display_name": "용용🔵🍖🎩", "active_status": "inactive", "verifications": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "follower_count": 2032, "custody_address": "0x33ed204170cc1d73a6905ca72ad16563e01113c4", "following_count": 3279, "verified_addresses": {"eth_addresses": ["0x832ba26354d6033f0009faef84354cef7e03dfba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3FR2yqZsG07NhXz7uPyUyC\"}"}', NULL), - (619748, '0xcbab4ab755cc6350175ec3363a9e753dc3387391', 0, 1, '2024-05-06 13:29:05+00', 0, 2, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1517, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kirinji/daft-punk-something-about-us?si=2873d3f97e054d2e8a07f2785989689d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (654037, '0xdf2f7267837dee8b1c1dde3b52a1e8fddcbe1e6c', 0, 1, '2024-05-06 14:45:44+00', 0, 0, '{"fid": 427654, "object": "user", "pfp_url": "https://i.imgur.com/atrcHtA.jpg", "profile": {"bio": {"text": "遂にデゲンできるようになりました\n帽子はメタマスクです\n積極的に絡んでいきますのでよろしくどうぞ!\n", "mentioned_profiles": []}}, "username": "chianti", "power_badge": false, "display_name": "chianti🐲🎩🔥", "active_status": "inactive", "verifications": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "follower_count": 293, "custody_address": "0xd0698c5468a0e65f51a002502f392954d923d49f", "following_count": 329, "verified_addresses": {"eth_addresses": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/wild-marmalade/sets/wild-marmalade-all?si=04fdeeb9294b4e259621fe4a9b84fea4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (619722, '0x4289497358462667cf19af50666b958e792bfbf7', 0, 1, '2024-05-06 13:30:03+00', 0, 2, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2927, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2358, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9j6Qu\"}"}', 'sonata'), - (619737, '0x67ef9164e3f424bfaeb87a0ab4b43a294975b893', 0, 1, '2024-05-06 13:27:46+00', 0, 4, '{"fid": 401137, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreicsyezfqnce4pu77dnahnx543eivcihqyfgcqyzg7uvtv62niotcy", "profile": {"bio": {"text": "Iwanttoknowabouteverything. \n\n 소통이제일즐거워 뚠뚠🐜🐜🐜", "mentioned_profiles": []}}, "username": "godhee", "power_badge": false, "display_name": "Godhee 🍖🎩", "active_status": "inactive", "verifications": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "follower_count": 2745, "custody_address": "0xee713090ee73a3df4a8113b14862bc87a5a30af6", "following_count": 2920, "verified_addresses": {"eth_addresses": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/f1bpM4UppqW6ZywS6\"}"}', 'sonata'), - (635370, '0x1348ac12a0cd182c82832d6a161272f8ade00a92', 0, 1, '2024-05-06 14:04:12+00', 0, 2, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1177, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 994, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bxuLi5fUEj9eWyYW7\"}"}', 'sonata'), - (664018, '0xd4579e6bcdb1a96f37bbba9a43d08faa4b65edb0', 0, 1, '2024-05-06 15:12:30+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/07-loner?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (654849, '0x082435d0aa139bcde40bd51f4d9a90221c75bf12', 0, 1, '2024-05-06 14:47:06+00', 0, 6, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 964, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1380, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pedigrees/buzz?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (620702, '0x98e0a5404a516c84ea3898e4a0dbe0aa826fa21a', 0, 1, '2024-05-06 13:33:05+00', 0, 4, '{"fid": 326700, "object": "user", "pfp_url": "https://i.imgur.com/WWNWtHc.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "preflop12345", "power_badge": false, "display_name": "preflop🎩 🍖 ", "active_status": "inactive", "verifications": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "follower_count": 1914, "custody_address": "0x57bb96ec480a2043f2ac8386afbd7d3f8fb15ed3", "following_count": 929, "verified_addresses": {"eth_addresses": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eiei216/cover-1?in=upbera5o7fxk/sets/wsljqcd0xj6k&si=25546f02028541ddbb6951ebba0a7589&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (630259, '0x76177193939a2c14963e02d2e7d5a54819d7eb21', 0, 1, '2024-05-06 13:47:56+00', 10, 1, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1169, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1065, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nojam74/0fe0dko1r8bv?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (664168, '0x933248480ed608fc8fe4274d77aefdc476eadd1a', 0, 1, '2024-05-06 15:13:10+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/13-im-in-love?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (720457, '0x3e2f4b161dbdd3ae65cf2dc23726f5394f72e954', 0, 1, '2024-05-06 19:52:01+00', 0, 3, '{"fid": 501587, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98b15191-86a4-4a69-7e11-cafb7d784000/rectcrop3", "profile": {"bio": {"text": "to the moon \nLet''s go!!", "mentioned_profiles": []}}, "username": "moontothe", "power_badge": false, "display_name": "moontothe", "active_status": "inactive", "verifications": ["0x42dc0d7f7ad1d1d188273431ef350a87d105b08b"], "follower_count": 1126, "custody_address": "0x59ff5445e3384e6b64d8789e96fc7ca0a8768529", "following_count": 1947, "verified_addresses": {"eth_addresses": ["0x42dc0d7f7ad1d1d188273431ef350a87d105b08b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/seotaiji-music/f-m-business?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://www.youtube.com/watch?v=h0cHH_nh-Ac\"}"}', 'sonata'), - (664163, '0x3464987316a82c5da4c79cb7331140f1f7d9b92b', 0, 1, '2024-05-06 15:13:40+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/a05-meant-to-be?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (680260, '0xbd1b9d0fcb1ae58c3d75d0b3482f3329de891e0f', 0, 1, '2024-05-06 16:25:44+00', 0, 8, '{"fid": 500922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a212f45-d02f-40d3-27e5-c998de75a500/rectcrop3", "profile": {"bio": {"text": "🌈 Yogurt🍦 🌈 $DEGEN 🌈", "mentioned_profiles": []}}, "username": "grapes", "power_badge": false, "display_name": "Black Yogurt 🎩🍖💎🎵", "active_status": "inactive", "verifications": ["0xbbdf2441782e6fd2f62ff5ba53abc8907b79c109"], "follower_count": 1703, "custody_address": "0xa34eaf0e020f431f5a1fff32656f1529c1c399f2", "following_count": 1540, "verified_addresses": {"eth_addresses": ["0xbbdf2441782e6fd2f62ff5ba53abc8907b79c109"], "sol_addresses": ["GemWiahv9xt5w2vanmH1zKu2ZMDFGYUZJ2HRadK83DaS"]}}', '{"{\"url\":\"https://on.soundcloud.com/uKHLCbiajR13m4HDA\"}"}', 'sonata'), - (631635, '0xd379a11bf8e2b19287c7c7e978b6014dc2b6f969', 0, 1, '2024-05-06 13:51:11+00', 0, 4, '{"fid": 471610, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dbd09e4e-019b-44b0-1e4e-830bd4491d00/rectcrop3", "profile": {"bio": {"text": "I am library 🌺🌺🌺", "mentioned_profiles": []}}, "username": "daraazaryar", "power_badge": false, "display_name": "@Daraazaryar 🍗🎩🔵🍖", "active_status": "inactive", "verifications": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "follower_count": 614, "custody_address": "0xa51e52c181a4d3c3b5fae4a9edf52fb3ec31a779", "following_count": 711, "verified_addresses": {"eth_addresses": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/tommyrichmann\"}"}', NULL), - (785446, '0xcecd6cb58d031ba9ec02e43c0b8c6074d33ec9e3', 0, 1, '2024-05-07 02:23:03+00', 0, 0, '{"fid": 511123, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dde2ad40-533a-4e13-b381-07087329a500/rectcrop3", "profile": {"bio": {"text": "Crypto Trader⛓️ & Wine seller🍷", "mentioned_profiles": []}}, "username": "!511123", "power_badge": false, "display_name": "D.hxxn", "active_status": "inactive", "verifications": ["0x76519c0b80c380b5891e182fa14869bc6ece1819"], "follower_count": 95, "custody_address": "0x6febc85fb41d89347c9ef509afe0b213c9759b7e", "following_count": 134, "verified_addresses": {"eth_addresses": ["0x76519c0b80c380b5891e182fa14869bc6ece1819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Bf7dsiiKa4rL7CyU7\"}"}', 'sonata'), - (654851, '0x56d3e92beb5177fe28b735ff43c15e62a287738b', 0, 1, '2024-05-06 14:46:30+00', 0, 5, '{"fid": 411455, "object": "user", "pfp_url": "https://i.imgur.com/j1ngOFQ.jpg", "profile": {"bio": {"text": "Sunny Day : )\n맛있게 먹고, 재밌게 살기🎶 ", "mentioned_profiles": []}}, "username": "sunny38", "power_badge": false, "display_name": "Sunny🙂🍖", "active_status": "inactive", "verifications": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "follower_count": 2215, "custody_address": "0x58375c5d74a72693c589764f07423f151dd130bc", "following_count": 1562, "verified_addresses": {"eth_addresses": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v3JSX\"}"}', 'sonata'), - (617724, '0xd8c72cd379cb55232e5828d05b9bcec4501cfe4c', 0, 1, '2024-05-06 13:22:14+00', 0, 12, '{"fid": 433866, "object": "user", "pfp_url": "https://i.imgur.com/lJtAWQF.jpg", "profile": {"bio": {"text": "Have a good day!!\nI like parenting and food, exercise!!\nI love SUPERRARE", "mentioned_profiles": []}}, "username": "dooristar32", "power_badge": false, "display_name": "RARE-LOVER", "active_status": "inactive", "verifications": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "follower_count": 1859, "custody_address": "0xadd33e67c1876224068545e2497d535dad39027d", "following_count": 2220, "verified_addresses": {"eth_addresses": ["0x538474a858d9228e023834fe552fe1c7088c56df"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/amoriu/wourjn833fdn?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (654854, '0xda41c4a27d7f68043f5c01f70d76662593f2edf1', 0, 1, '2024-05-06 14:47:35+00', 0, 3, '{"fid": 502477, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4508045-fe7f-46b6-e8e0-f42a84990f00/rectcrop3", "profile": {"bio": {"text": "Peace, freedom, love", "mentioned_profiles": []}}, "username": "gungang", "power_badge": false, "display_name": "gungang", "active_status": "inactive", "verifications": ["0xb8c7a08071b391855f021542bc035af70249c677"], "follower_count": 906, "custody_address": "0x98a3dedc190bec2707178e90952593822a1f63a0", "following_count": 1582, "verified_addresses": {"eth_addresses": ["0xb8c7a08071b391855f021542bc035af70249c677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LWSwFtSunDz6TDLo6\"}"}', 'sonata'), - (664166, '0x1dc5f269f0245a2221d7cfd45e72137bc9f670e9', 0, 1, '2024-05-06 15:13:28+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/a02-rest?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (664165, '0xa7ee258e0b7b99be3359d22775937a808d52affb', 0, 1, '2024-05-06 15:13:22+00', 0, 1, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/14-bubbles-mushrooms?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (666632, '0x812c8d86ea4dabc9adeaaed68ca140e730ae9edd', 0, 1, '2024-05-06 15:27:48+00', 0, 2, '{"fid": 501170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79f99602-1ea7-4532-b2e2-8cb67fbb2100/rectcrop3", "profile": {"bio": {"text": "마이_네임_이즈_준키\n#위스키 #맛집마스터 \n\n#디젠 #코인 #크립토 #잼 #crypto #meme #coin #tip #f4f", "mentioned_profiles": []}}, "username": "emsei", "power_badge": false, "display_name": "jun-key", "active_status": "inactive", "verifications": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "follower_count": 1177, "custody_address": "0x611af52170215e3d3dc4fc8443de600aff2ef9e1", "following_count": 1554, "verified_addresses": {"eth_addresses": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/g4856EmpGK9KBWgv9\"}"}', NULL), - (631025, '0xec0c89129d2d66c31668a83eefef2d4effd3ed77', 0, 1, '2024-05-06 13:50:06+00', 0, 0, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1060, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 1056, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QAQjj83ebjpb6CMP8\"}"}', 'sonata'), - (675642, '0x33a0164a3fae8e614ae68fdcead86c47ae0b9569', 0, 1, '2024-05-06 16:08:23+00', 0, 1, '{"fid": 348320, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b9170ad2-87de-4292-646d-4fb8a682ea00/rectcrop3", "profile": {"bio": {"text": "Screen-Faced visual artist endlessly searching for Paradise 🌹\nAesthetic pleasure is drawn from Love of the Look 📺\n// Please Observe //", "mentioned_profiles": []}}, "username": "gioparadiso", "power_badge": false, "display_name": "Justin Ezio Toppetta-Marino", "active_status": "inactive", "verifications": ["0xec9bb5ee2b8458613f0a6a764ef6a9c5da0ebe70"], "follower_count": 291, "custody_address": "0xa790f8749f4889f09a7d1ac32c5eb0761ad79965", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xec9bb5ee2b8458613f0a6a764ef6a9c5da0ebe70"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/07d3GlCZam4oPw2c2TuhMs?si=kRUgP9ndRZWT08AghbRoVw\"}"}', 'replyguys'), - (619735, '0xbf31b94e8d24a2f2c69d6c47cdcab836119af429', 0, 1, '2024-05-06 13:30:16+00', 0, 6, '{"fid": 486199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9df915a-b4f6-470e-53c4-da38875c4e00/original", "profile": {"bio": {"text": "Be careful, Everyone", "mentioned_profiles": []}}, "username": "joyeehyun", "power_badge": false, "display_name": "Joyeehyun", "active_status": "inactive", "verifications": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "follower_count": 1056, "custody_address": "0xc614ea305d00db50186fcf44457d651bb38c9765", "following_count": 747, "verified_addresses": {"eth_addresses": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gbjb1qztm4oq/heavy-peach-prc-xooos-cover?si=6aa270e07f574b918688005ecf6a9912&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (632166, '0x7083f70ae8fcb1f5ed4f17fa141306a16241bd56', 0, 1, '2024-05-06 13:52:39+00', 0, 4, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍\n\nSuperRare sonata love", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1660, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1806, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NyngM32QADvzTe547\"}"}', 'sonata'), - (753415, '0x79e11ae0228ff4afe173a9d832d1163bfe314a2c', 0, 1, '2024-05-06 23:43:10+00', 0, 0, '{"fid": 508188, "object": "user", "pfp_url": "https://arweave.net/KhRSk37ppLXTjACORWipcn5unjJI-HTC8QCnS42-1V8/", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 968, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 919, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sYLNESjdR723wMDs8\"}"}', 'sonata'), - (631027, '0x3b7d53999d999a2a72caccfa16212898a7356813', 0, 1, '2024-05-06 13:50:40+00', 0, 2, '{"fid": 430244, "object": "user", "pfp_url": "https://i.imgur.com/n6OmbOO.jpg", "profile": {"bio": {"text": "/Programmer\n/Miner\n/Trader\n/Industrial_engineer\n\n⚫️", "mentioned_profiles": []}}, "username": "hu3ein", "power_badge": false, "display_name": "Hussein🎩", "active_status": "inactive", "verifications": ["0x91e6e15765007fb8538eb5ccc90c2c85d79c5591"], "follower_count": 2159, "custody_address": "0x6b0a33edeeb69ed8044d510da1f7f2fa885bc45b", "following_count": 1898, "verified_addresses": {"eth_addresses": ["0x91e6e15765007fb8538eb5ccc90c2c85d79c5591"], "sol_addresses": ["9UTfcdB4BA1GfYxWD6T8FpRzC9iso8g4dK8hKeyfFsTM"]}}', '{"{\"url\":\"https://on.soundcloud.com/rMyD4vyskLjxARgKA\"}"}', NULL), - (680834, '0x3ae301558773f213e205f9dfd9e5cebd1f7cf863', 0, 1, '2024-05-06 16:28:08+00', 0, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "\nhttps://www.alfafrens.com/channel/0x626ea7aa69a420333c70cd2d96f8b44cc05984c0", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩⛓️‍💥", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 244, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 78, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://soundcloud.com/kaytranada/september-21?in=kaytranada/sets/bubba-109943850\"}"}', 'sonata'), - (631029, '0xce1641ac6c0fcb79eb7c06c88202a1879e549738', 0, 1, '2024-05-06 13:50:07+00', 10, 1, '{"fid": 500690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4e319d1-3429-47f3-f878-978a5388dc00/rectcrop3", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1391, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1900, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/V5Gcqe3zZrVnaTDx6\"}"}', 'sonata'), - (619719, '0xbbd7aa3aac8abf43c1c6a283c06d57dfb12e85c8', 0, 1, '2024-05-06 13:28:12+00', 10, 1, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1884, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2253, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nqaiUAyShDb4ekzm9\"}"}', 'sonata'), - (664167, '0x37b3847ef4fabccf4519d280571a6eb022983d24', 0, 1, '2024-05-06 15:13:32+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/a03-popo-how-deep-is-our-love?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (633999, '0x12bb1633db4d10d4c37da16997545fa31ea3b663', 0, 1, '2024-05-06 13:56:54+00', 0, 2, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3081, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mr-killer/bruno-mars-just-the-way-you?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (635381, '0xe07914d282e626533bb822aa6c1b10a01f9f4637', 0, 1, '2024-05-06 14:03:51+00', 0, 7, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1884, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2253, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3YXoFtHpdYCYDqrs6\"}"}', 'sonata'), - (785110, '0xb262e09c4aab6604b2a46f7a247d30c569c4f535', 0, 1, '2024-05-07 02:20:16+00', 0, 2, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2154, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1880, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pdoDKFJhKXpNYFcQ9\"}"}', 'sonata'), - (613253, '0x50940f3c97bfaef1c0e9ca2d9d133439b1b2daa4', 0, 1, '2024-05-06 13:10:44+00', 0, 3, '{"fid": 260151, "object": "user", "pfp_url": "https://i.imgur.com/x5iXe64.gif", "profile": {"bio": {"text": "fun to warpcaster🥳🇯🇵\nperp, airdrop, BCG, kawaii", "mentioned_profiles": []}}, "username": "chocosan", "power_badge": false, "display_name": "chocosan🎩🦀😹✈️", "active_status": "inactive", "verifications": ["0x18925665f141a6370d7b065a74e7729945fae0d2"], "follower_count": 1303, "custody_address": "0x18925665f141a6370d7b065a74e7729945fae0d2", "following_count": 1172, "verified_addresses": {"eth_addresses": ["0x18925665f141a6370d7b065a74e7729945fae0d2"], "sol_addresses": ["2BEM9rS4YnBnjPCXe7Uq7FrDaPihM1UkZQWGjfXt9eH1"]}}', '{"{\"url\":\"https://open.spotify.com/track/7ebceNRVeFRFpd4qLENYpO?si=gszE3k1hTuKxo2fuNifbAg&context=spotify%3Aplaylist%3A37i9dQZF1DXaUfOmgBZyBo\"}"}', 'sonata'), - (675821, '0xa7418b14ba23789007d74240391588633ea2c2c5', 0, 1, '2024-05-06 16:12:42+00', 10, 3, '{"fid": 499881, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e49f02d2-a431-4686-8a7d-c892deb0a400/rectcrop3", "profile": {"bio": {"text": "crypto, design, cat, anime, jelly", "mentioned_profiles": []}}, "username": "ha-ri-bo", "power_badge": false, "display_name": "Haribo🍭", "active_status": "inactive", "verifications": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "follower_count": 783, "custody_address": "0xa276999a2aa7d23d74589378094f7ac37ae3f0e1", "following_count": 1531, "verified_addresses": {"eth_addresses": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/forgdedelilt/bradio-flyers?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (637154, '0x9321d1767d95d500ee167eb506c71e5ba69eb402', 0, 1, '2024-05-06 14:06:20+00', 0, 0, '{"fid": 324411, "object": "user", "pfp_url": "https://i.imgur.com/YXc7vn1.jpg", "profile": {"bio": {"text": "crypto\n", "mentioned_profiles": []}}, "username": "evans2", "power_badge": false, "display_name": "EVA🎩🥚", "active_status": "inactive", "verifications": ["0xaf3d94f1e8a891804a51463039dc5d853caf62f7"], "follower_count": 947, "custody_address": "0xe081e676697ffc02c51f22ba1fbe533cb8663ddf", "following_count": 432, "verified_addresses": {"eth_addresses": ["0xaf3d94f1e8a891804a51463039dc5d853caf62f7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5gl6fs21P7oGC2ATeuGcxs?si=puNw3J1sSRivbEdg0Gjf3g&context=spotify%3Aplaylist%3A37i9dQZF1DX5g3b9u9YfgK\"}"}', NULL), - (691151, '0x67392fe216f697e8595817db0a738caa30cd73b7', 0, 1, '2024-05-06 17:25:03+00', 0, 4, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1303, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki17/nerd-connection-x?si=4e908981d0d14291b85733f4c495dd84&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (620106, '0x011dab4c8d508460bdad7b4d471ddfae7f9c861c', 0, 1, '2024-05-06 13:31:45+00', 0, 4, '{"fid": 397488, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a71198-b236-44b4-88a5-3ee59543b600/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Travel/Love/Crypto/F4F\n\n\n🎩🍖🔵🟣❤️🍀Good Luck to You🍀\nhttps://zora.co/@kanemochi\n", "mentioned_profiles": []}}, "username": "kanemochi1004", "power_badge": false, "display_name": "kanemochi🎩🍖🔵", "active_status": "inactive", "verifications": ["0xe053c8056131ed122307cbe68084d8b5d223b9f2"], "follower_count": 3041, "custody_address": "0x528c04289553050718142e0349b86c9e93299888", "following_count": 2660, "verified_addresses": {"eth_addresses": ["0xe053c8056131ed122307cbe68084d8b5d223b9f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dqxem4ktmu2C8cLn7\"}"}', 'sonata'), - (655323, '0x776f2ebe14846ce2efb5bb81d6883bea283e62c9', 0, 1, '2024-05-06 14:49:35+00', 0, 0, '{"fid": 411828, "object": "user", "pfp_url": "https://i.imgur.com/uGVbzJm.jpg", "profile": {"bio": {"text": "I love degen❤️", "mentioned_profiles": []}}, "username": "onlypark125", "power_badge": false, "display_name": "Tigerdw22 🎩 ", "active_status": "inactive", "verifications": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "follower_count": 1688, "custody_address": "0xf82d20b7c0bc7d26020f250583ad1378c147a5de", "following_count": 2086, "verified_addresses": {"eth_addresses": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dLCDFUiS14a2iC8eA\"}"}', NULL), - (619218, '0xc97d03693999934ecd33b2d90f6fae961c8b2797', 0, 1, '2024-05-06 13:27:27+00', 0, 3, '{"fid": 447737, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fcf5d6f-1a50-4949-29bd-42321380a000/rectcrop3", "profile": {"bio": {"text": "노래 추천해드립니다 🎶", "mentioned_profiles": []}}, "username": "hiddensinger", "power_badge": false, "display_name": "🟣홍사원🟣", "active_status": "inactive", "verifications": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "follower_count": 2710, "custody_address": "0x5df0fad42f00014b8cdd448e352e39f0a65b471a", "following_count": 3130, "verified_addresses": {"eth_addresses": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gbjb1qztm4oq/when-im-still-getting-over-you?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (785234, '0xf5f1aa6a798f105b936c00e0b52c43ca0a770a93', 0, 1, '2024-05-07 02:21:47+00', 0, 1, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 604, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 896, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/antwan-atef/ed-sheeran-sia-shape-of-you-the-greatest-cheap-thrills?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (607619, '0xcbea751efe116a6a5846a4b0637ef85a99faa017', 1438, 1, '2024-05-06 12:54:47+00', 0, 3, '{"fid": 14193, "object": "user", "pfp_url": "https://i.imgur.com/5hOVzWm.png", "profile": {"bio": {"text": "I make music and occasionally point & click adv. games.", "mentioned_profiles": []}}, "username": "r4cerx", "power_badge": false, "display_name": "r4cerx 🎩🐲", "active_status": "inactive", "verifications": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "follower_count": 193, "custody_address": "0x22bfce4279cd025af37dac0cdad95b74e606bf88", "following_count": 103, "verified_addresses": {"eth_addresses": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/r4cerx/m0m-1m-4-h4ck32\"}"}', 'sonata'), - (664593, '0x66f44eb3239779c3db94a48e2667470430ba9e00', 0, 1, '2024-05-06 15:15:48+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yumi-misaki-ii/bigbang-bang-bang-bang?in=gqclhyvofheg/sets/s4jkk3qg1bnr&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (622065, '0x2d13ed2af18acecdb52624a1e449fee0ad069656', 0, 1, '2024-05-06 13:35:34+00', 0, 0, '{"fid": 418569, "object": "user", "pfp_url": "https://i.imgur.com/v2kJH36.jpg", "profile": {"bio": {"text": "Hello~ Nice to meet you.", "mentioned_profiles": []}}, "username": "suheo8357", "power_badge": false, "display_name": "suheo", "active_status": "inactive", "verifications": ["0x66cfb602562d4ccf08f808b4385d1f985baff6c5"], "follower_count": 1825, "custody_address": "0xb18263105f7811d4db9049b20f95bacafc826de9", "following_count": 2112, "verified_addresses": {"eth_addresses": ["0x66cfb602562d4ccf08f808b4385d1f985baff6c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eung-jin-kim/cover?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (655316, '0x4641bc78aabd430c526b55b054cd44ce535d7231', 0, 1, '2024-05-06 14:48:56+00', 0, 0, '{"fid": 411828, "object": "user", "pfp_url": "https://i.imgur.com/uGVbzJm.jpg", "profile": {"bio": {"text": "I love degen❤️", "mentioned_profiles": []}}, "username": "onlypark125", "power_badge": false, "display_name": "Tigerdw22 🎩 ", "active_status": "inactive", "verifications": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "follower_count": 1688, "custody_address": "0xf82d20b7c0bc7d26020f250583ad1378c147a5de", "following_count": 2086, "verified_addresses": {"eth_addresses": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o7Zwi9pkU6Afg2eN9\"}"}', NULL), - (663806, '0x630246bd2cdf0d0067402f813a9a4f8004e4a64b', 0, 1, '2024-05-06 15:10:59+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/atltop20radio/outside-remix-dirty?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (785658, '0xf839da320be582c08e4b9794e669751794d5dd31', 0, 1, '2024-05-07 02:26:45+00', 0, 3, '{"fid": 410852, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04c792fc-3ace-45b6-13b4-253e62286600/original", "profile": {"bio": {"text": "How about reading some mangas?", "mentioned_profiles": []}}, "username": "yoonappa", "power_badge": false, "display_name": "Uneed2sleep", "active_status": "inactive", "verifications": ["0xed7d93da437ad37955a316d61b05b0242e2af4fd"], "follower_count": 1315, "custody_address": "0x55ae0e33e82759611d20ce5183f28514f2463409", "following_count": 1464, "verified_addresses": {"eth_addresses": ["0xed7d93da437ad37955a316d61b05b0242e2af4fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/REQjptNWTeRqHSdM6\"}"}', NULL), - (641799, '0x98f8638470fc1200b2b6b1a5bd58ff31905efa4f', 0, 1, '2024-05-06 14:16:41+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1400, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1907, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GKupK9pQhXadRJe5A\"}"}', NULL), - (640996, '0x13955368fea3e643713c365568ab1340a9b78ad4', 0, 1, '2024-05-06 14:12:16+00', 0, 2, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2654, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2742, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1FXcTnB9kzF7DY4r5\"}"}', 'sonata'), - (634871, '0x2c983d2b362d1409415e47bdcff53a396be24058', 0, 1, '2024-05-06 14:01:04+00', 0, 2, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 165, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 509, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n9cJ38RjTidSdSA37\"}"}', 'sonata'), - (641424, '0x8a1cf0708e9362f538e7eaecb12d96260e136a41', 0, 1, '2024-05-06 14:16:04+00', 0, 2, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 238, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 347, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommisch/it-runs-through-me-feat-de-la-soul?si=3b39558d0872447f857b7b565be63842&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (622069, '0x2a6f353c4062a4218ebc6bd3f2b7cff9c5491914', 0, 1, '2024-05-06 13:35:21+00', 0, 2, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3082, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/timothy-velasquez-2/sets/nothing-on-you-b-o-b?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (622074, '0x0137dd97e46ddcd61b911e51c6a57855463b1bd0', 0, 1, '2024-05-06 13:35:47+00', 0, 1, '{"fid": 419626, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26c07dc-79dd-4924-4924-5848d3fc3500/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "rasoulmaleki", "power_badge": false, "display_name": "R...m..🎩.🍖 🔵 🔮", "active_status": "inactive", "verifications": ["0xc7487323e18a9354118767e6c35c53675fc8654f"], "follower_count": 674, "custody_address": "0x4cc7c226dc930cd1e83cb89f8ccbb0cac497bcad", "following_count": 734, "verified_addresses": {"eth_addresses": ["0xc7487323e18a9354118767e6c35c53675fc8654f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AnS917Fx4p2RFdjw6\"}"}', NULL), - (636354, '0x4acd7c801c27ceefdd2baf592b15233bf7f51a53', 0, 1, '2024-05-06 14:05:59+00', 0, 0, '{"fid": 508231, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/239719ef-6679-4892-470b-f538e3c2ad00/original", "profile": {"bio": {"text": "-", "mentioned_profiles": []}}, "username": "!508231", "power_badge": false, "display_name": "happyhappy", "active_status": "inactive", "verifications": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "follower_count": 91, "custody_address": "0x0ceadeaa7100c9b416e4899ff46307e507e461d6", "following_count": 220, "verified_addresses": {"eth_addresses": ["0xe80eacad88b4e8b98b717d52103664e011d3e2c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ki-sung-kim-131816010/sets/beach-party-vibes-1-2024-05-06?si=ec9c181b408e49afbdfd72db4a7f4b26&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (620705, '0x1104533cdc447599c93af654abae5a1e87827528', 0, 1, '2024-05-06 13:33:42+00', 0, 4, '{"fid": 405106, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreigfoaq7pxandi6t5c2pcdkyr63o5t3etuhonhfjgglopqn2mblgmm", "profile": {"bio": {"text": "🍖Since Dooly is working, he does a lot of activities late in the evening. I will visit you as soon as I have time. Please communicate a lot.🍖", "mentioned_profiles": []}}, "username": "arielyoon", "power_badge": false, "display_name": "yoon Dooly🎩🍖", "active_status": "inactive", "verifications": ["0xad0fdedc4db482f965e3f939b7a6d3dfc239dfea"], "follower_count": 1961, "custody_address": "0xb2df5b126782020229ee129e59a40610d7c2d12d", "following_count": 1614, "verified_addresses": {"eth_addresses": ["0xad0fdedc4db482f965e3f939b7a6d3dfc239dfea"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SpVxb\"}"}', 'sonata'), - (620105, '0x996bdc8d9bd94249b12a7961f21ade8659eab440', 0, 1, '2024-05-06 13:31:56+00', 0, 4, '{"fid": 503190, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/00dd484a-4372-4bd1-2b64-5437a5b55000/rectcrop3", "profile": {"bio": {"text": "I am koala.", "mentioned_profiles": []}}, "username": "koala4424", "power_badge": false, "display_name": "Koala4424😎", "active_status": "inactive", "verifications": ["0x3ce0c57ee36cec0b4eeeb5eafbe9251c59a629df", "0xe5b05c76c30bdfd1d9f88d45668be8a7bde93976"], "follower_count": 903, "custody_address": "0xb0171f23b0b073a374f135ed74e587bed95502a4", "following_count": 592, "verified_addresses": {"eth_addresses": ["0x3ce0c57ee36cec0b4eeeb5eafbe9251c59a629df", "0xe5b05c76c30bdfd1d9f88d45668be8a7bde93976"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fpliudtuskoh/5jd3jo4toul5?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (632163, '0x2eb9e316a5226258cbfa22a766289ab4c5dc7ffc', 0, 1, '2024-05-06 13:52:57+00', 0, 4, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 812, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/devil-red-760955670/qwer?si=f9ea5987f4c440fdad0005ee4e0db7e0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (655318, '0x02782151ed4917962db810085e3b6128f7a8bef3', 0, 1, '2024-05-06 14:49:07+00', 0, 0, '{"fid": 326181, "object": "user", "pfp_url": "https://i.imgur.com/asrQSEM.jpg", "profile": {"bio": {"text": "Art, music, onchain data. Former Director of Research @ Coin Metrics", "mentioned_profiles": []}}, "username": "nmadd", "power_badge": false, "display_name": "Nate Maddrey", "active_status": "inactive", "verifications": ["0x6f8e39673e598e2b701a7f70d9e18e769f915fef"], "follower_count": 86, "custody_address": "0x81ba3e381f090c3c3e2ca84150f470083c0776f0", "following_count": 167, "verified_addresses": {"eth_addresses": ["0x6f8e39673e598e2b701a7f70d9e18e769f915fef"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/49uLH3xvQLd4I4pCQacGH8?si=e6f23e4f7ba14ca4\"}"}', 'soundscapes'), - (619198, '0x9780866b24a6ad3650b038a5494e99a815f21b9a', 0, 1, '2024-05-06 13:27:11+00', 10, 4, '{"fid": 501220, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36aeee53-0310-43a8-8e51-d754393b3900/rectcrop3", "profile": {"bio": {"text": "일단 난 슈캐 / 무지개 거울을 좋아하는 흑화된 그무언가 / 봇처럼 댓글 달면 답방 안가유🙏 저도 성심성의껏 적을게요 / f4f / momo AI / catizen / nine chronicles / degen / fingerstyle / fork guitar / K-music", "mentioned_profiles": []}}, "username": "cryptochoni", "power_badge": false, "display_name": "crypto CAT", "active_status": "inactive", "verifications": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "follower_count": 1296, "custody_address": "0x926a7eacdc09e92f80875fccb62b9030c452022f", "following_count": 1547, "verified_addresses": {"eth_addresses": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HMPjMweLDPeYnhpk7\"}"}', 'sonata'), - (655546, '0xea3a6000e0ff98dd39d5135b5de5d6c8a381fc9d', 0, 1, '2024-05-06 14:50:16+00', 0, 4, '{"fid": 411409, "object": "user", "pfp_url": "https://i.imgur.com/HP4ZzrI.jpg", "profile": {"bio": {"text": "沢にいる蟹です。", "mentioned_profiles": []}}, "username": "payao", "power_badge": false, "display_name": "payao🎩🔥", "active_status": "inactive", "verifications": ["0x79579b2032565133a53f876e80179d0066d293f0"], "follower_count": 518, "custody_address": "0xb01f86116802f40576bf5d68bdfeb05ae81003d9", "following_count": 534, "verified_addresses": {"eth_addresses": ["0x79579b2032565133a53f876e80179d0066d293f0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5PcI0yi7MiVg9qT60Ii1lN?si=r8qc6dHQT--FqsJR7bhpxA\"}"}', 'musicjp'), - (607315, '0x4fc6fb366c2f037a3e33111f9fbc071643e3252f', 0, 1, '2024-05-06 12:53:17+00', 0, 2, '{"fid": 11004, "object": "user", "pfp_url": "https://i.imgur.com/5FGxCDj.jpg", "profile": {"bio": {"text": "Visual artist and Photographer📸 \nhttps://linktr.ee/pornsoup\n\n/pornsoup", "mentioned_profiles": []}}, "username": "pornsoup", "power_badge": true, "display_name": "Pornsoup 🎩🔵", "active_status": "inactive", "verifications": ["0x5b23c893ab99fa6d9ff3532d10a9019cae06383e"], "follower_count": 1758, "custody_address": "0x43d730b46f229ee038836482a6bf060766b4272f", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x5b23c893ab99fa6d9ff3532d10a9019cae06383e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/12LOYGBr0T0IqyuhEILYFh?si=lDcCb48jSzWTMG9PLS-jSA&context=spotify%3Asearch%3Asolumn%2Bsome\"}"}', NULL), - (632171, '0x441adeedfc77b278674da88aaef01563d6ce40a9', 0, 1, '2024-05-06 13:52:04+00', 0, 4, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2146, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1880, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/34e7cVJgdhC2EMkG9\"}"}', 'sonata'), - (785111, '0xd146998c2bbdcb426eedde14fc86fb860662ee77', 0, 1, '2024-05-07 02:19:57+00', 0, 1, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 604, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 896, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/g7ysumvaft8l/my-way?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (639703, '0xb56b350d4bef80c0f165a10e001c13c92894d446', 0, 1, '2024-05-06 14:08:43+00', 0, 0, '{"fid": 516356, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b04e30f7-2052-4fa1-13e7-9d447159da00/rectcrop3", "profile": {"bio": {"text": "Crypto, NFT, Web3, Games, Memes", "mentioned_profiles": []}}, "username": "!516356", "power_badge": false, "display_name": "Satoshireum🎩", "active_status": "inactive", "verifications": ["0xb3b1b418cdf35839712b5b76f3d320dcd52ed766"], "follower_count": 21, "custody_address": "0xb3b1b418cdf35839712b5b76f3d320dcd52ed766", "following_count": 70, "verified_addresses": {"eth_addresses": ["0xb3b1b418cdf35839712b5b76f3d320dcd52ed766"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sophie-ellis-bextor-official/murder-on-the-dancefloor-pnau-remix\"}"}', NULL), - (636391, '0xeda978d03163187d04cb114e4d411b7f1e2a1ce3', 0, 1, '2024-05-06 14:05:37+00', 0, 5, '{"fid": 418569, "object": "user", "pfp_url": "https://i.imgur.com/v2kJH36.jpg", "profile": {"bio": {"text": "Hello~ Nice to meet you.", "mentioned_profiles": []}}, "username": "suheo8357", "power_badge": false, "display_name": "suheo", "active_status": "inactive", "verifications": ["0x66cfb602562d4ccf08f808b4385d1f985baff6c5"], "follower_count": 1827, "custody_address": "0xb18263105f7811d4db9049b20f95bacafc826de9", "following_count": 2112, "verified_addresses": {"eth_addresses": ["0x66cfb602562d4ccf08f808b4385d1f985baff6c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pzt1R\"}"}', 'sonata'), - (691714, '0x1fed3e4a6b238ea52ff818925fd233e5a7c3c178', 0, 1, '2024-05-06 17:28:09+00', 0, 0, '{"fid": 245532, "object": "user", "pfp_url": "https://i.imgur.com/dPiPyO1.jpg", "profile": {"bio": {"text": "Nah, i''d win", "mentioned_profiles": []}}, "username": "gojosatoru", "power_badge": false, "display_name": "Gojosatoru🎩🍖", "active_status": "inactive", "verifications": ["0x39c02d9498f43d089338e104ae031de0becc5955"], "follower_count": 1571, "custody_address": "0x2454e461d8a5ec7975984f844b0b52dde374d662", "following_count": 674, "verified_addresses": {"eth_addresses": ["0x39c02d9498f43d089338e104ae031de0becc5955"], "sol_addresses": ["8sqFupZsGVLZDP7DPXLhavmaarXnnb9Dy68XGEnuEgai"]}}', '{"{\"url\":\"https://soundcloud.com/kitschvian/silica-gel-no-pain\"}"}', NULL), - (624121, '0xea061d93b0f9f8d559b4ad20cc0c2e381464f420', 0, 1, '2024-05-06 13:38:25+00', 0, 4, '{"fid": 429365, "object": "user", "pfp_url": "https://i.imgur.com/iF8ZBO7.png", "profile": {"bio": {"text": "1 Degen = 1USD 기원 🔥\n⭐100% 답장 갑니다⭐\n우리 모두 부자됩시다🥳", "mentioned_profiles": []}}, "username": "chaejonghyun", "power_badge": false, "display_name": "Keep-going🍖🚀", "active_status": "inactive", "verifications": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "follower_count": 3657, "custody_address": "0x4fd1388a37021d7e12d422c0941df22d55a8672b", "following_count": 3876, "verified_addresses": {"eth_addresses": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k9zGh\"}"}', 'sonata'), - (639008, '0xb8fc932344b55b9714e091dc36ba7c1d520e1a13', 0, 1, '2024-05-06 14:07:41+00', 0, 2, '{"fid": 461302, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f20ea39c-42ac-43eb-912b-dc4e90c64e00/rectcrop3", "profile": {"bio": {"text": "Hello~", "mentioned_profiles": []}}, "username": "dd8", "power_badge": false, "display_name": "dd8", "active_status": "inactive", "verifications": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "follower_count": 2660, "custody_address": "0xaea1e717380b4d1722164a4cba18c50e059479c4", "following_count": 2012, "verified_addresses": {"eth_addresses": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lenzt12/degen-mix-3-paradise-blue-b2b-edc-las-vegas-2024?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (620893, '0x7a2c370a7205470464ebcff132bdd9bcf5fa5bf0', 0, 1, '2024-05-06 13:34:43+00', 0, 2, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2366, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2261, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZaAGxqdmrBVohA5i7\"}"}', 'sonata'), - (624122, '0x57c8ff2112d9aa4d085c4db154faffa64c53047e', 0, 1, '2024-05-06 13:38:55+00', 0, 2, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1517, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ank_ica/placebo-english-summer-rain?si=2d59547a794d442ebe38503d6b8a22cb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (630716, '0x29553c48ba715e19675c50fefdf3b3ca5d5eec2b', 0, 1, '2024-05-06 13:49:26+00', 0, 3, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1076, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 944, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9JbBhidg2GJk3cmt8\"}"}', 'sonata'), - (664175, '0x638ef97893241c931d7c0c60edd7e193fa400388', 0, 1, '2024-05-06 15:13:06+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/12-ill-be-your-family?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (237275, '0x965b79266fef07dcb8ef3d1d1d7516fc05b62cd5', 23490, 1, '2024-05-05 13:53:47+00', 180, 25, '{"fid": 453989, "object": "user", "pfp_url": "https://i.imgur.com/Y37BjM9.jpg", "profile": {"bio": {"text": "$JAAD 🎰🎩 yo legends, im jaad. the $DEGEN chain is my life. welcome to a new tipping experience. jaad.tips CA: 0x373e256C754Bf82f09071141b92bEafb83c38c68", "mentioned_profiles": []}}, "username": "jaadtips", "power_badge": false, "display_name": "jaad, the degen 🎩🎰", "active_status": "inactive", "verifications": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "follower_count": 782, "custody_address": "0x1ffcd57133eaca3c2f7fefd475474253b4494b82", "following_count": 120, "verified_addresses": {"eth_addresses": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/famous_dyl/sets/crypto-rich-deluxe\"}"}', NULL), - (633389, '0x5dffca88b6f6ebeaccf0910f709982ece72e52a9', 0, 1, '2024-05-06 13:55:28+00', 0, 1, '{"fid": 404852, "object": "user", "pfp_url": "https://i.imgur.com/DNLFtOl.jpg", "profile": {"bio": {"text": "반사 1000% 갑니다. 항상 화이팅!!", "mentioned_profiles": []}}, "username": "hide2439", "power_badge": false, "display_name": "YuBin24", "active_status": "inactive", "verifications": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "follower_count": 3081, "custody_address": "0x2d44a12aa14bbe3b33cecec5c65a19b01088a0fa", "following_count": 2577, "verified_addresses": {"eth_addresses": ["0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamcardib/please-me?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (633395, '0xf92f43b38a506f92604d415701ea4e6e94e0a43a', 0, 1, '2024-05-06 13:55:15+00', 0, 3, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 812, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-348589186/attack-on-titan-season-2-opening-1?si=1379318824684d37840ae3d9d8334e78&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (633393, '0xc3dd93746056083b5ceccfd86bfb229c5370d055', 0, 1, '2024-05-06 13:55:30+00', 0, 4, '{"fid": 286375, "object": "user", "pfp_url": "https://i.imgur.com/0lq7phu.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "hyo141", "power_badge": false, "display_name": "charlie141🎩🍖🔵", "active_status": "inactive", "verifications": ["0x3146183dadd7eecb6be75960ea3f03809bd66c6b"], "follower_count": 2321, "custody_address": "0x4303459fb96cdd39aed5d43fa44601b3243d8a3b", "following_count": 689, "verified_addresses": {"eth_addresses": ["0x3146183dadd7eecb6be75960ea3f03809bd66c6b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jPLuVVE79cWiTxmg8\"}"}', NULL), - (575703, '0x041922f93872290a625dbdf669dabe19d8ea6eda', 0, 1, '2024-05-06 11:51:47+00', 0, 5, '{"fid": 9218, "object": "user", "pfp_url": "https://i.imgur.com/vQTCwo5.jpg", "profile": {"bio": {"text": "new media artist and internet diarist ✨ \n\nhttps://linktr.ee/tinyrainboot", "mentioned_profiles": []}}, "username": "tinyrainboot", "power_badge": true, "display_name": "tinyrainboot 🔮✈️🎩↑", "active_status": "inactive", "verifications": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "follower_count": 2378, "custody_address": "0x09c6e1d005f69c52ed6c0cf353f806a443e6044a", "following_count": 298, "verified_addresses": {"eth_addresses": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/68jt91LdwCYPd0Zl33ZJN2?si=a03be094b9c249ac\"}"}', 'pink'), - (686745, '0x8a612d725e3c879bcd03989cb004ca3b4ee80629', 0, 1, '2024-05-06 17:02:04+00', 0, 2, '{"fid": 390104, "object": "user", "pfp_url": "https://i.imgur.com/115fo3T.png", "profile": {"bio": {"text": "Someone who live 24h with warpcast😂\nA.K.A 도른자🤣\nUntil be rich!!!", "mentioned_profiles": []}}, "username": "yajirang", "power_badge": false, "display_name": "Yajirang🎩", "active_status": "inactive", "verifications": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "follower_count": 908, "custody_address": "0xf77b90b13adc452595b99ffe222ffcc3f8921c6f", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "sol_addresses": ["Hq5PAi4vYVPa4h58Q5xjQddvaUxuazDSdrgTBx6mycNc"]}}', '{"{\"url\":\"https://on.soundcloud.com/a28SHNVAeKnsySeXA\"}"}', NULL), - (655313, '0xcec181f3ba6f64630897b7086878f2b4e4b94338', 0, 1, '2024-05-06 14:48:45+00', 0, 3, '{"fid": 500856, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d9303ee-19c7-4456-d16c-9e837eab9100/rectcrop3", "profile": {"bio": {"text": "hi rangtto", "mentioned_profiles": []}}, "username": "rangtto", "power_badge": false, "display_name": "rangtto", "active_status": "inactive", "verifications": ["0x9d78fa616913a1dfc7221490be71182e861b5e13"], "follower_count": 601, "custody_address": "0x2c39726afa3167c2d56faa8cf0f1f54e234ae153", "following_count": 892, "verified_addresses": {"eth_addresses": ["0x9d78fa616913a1dfc7221490be71182e861b5e13"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nga-phyo-53875973/izi?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (607616, '0xa02db78e38174543f7b118d9bebddbe31a7f3921', 0, 1, '2024-05-06 12:54:26+00', 0, 0, '{"fid": 343603, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/cb588f4220b35f600cdf998bff07f42f.gif?w=500&auto=format", "profile": {"bio": {"text": "Web3 music producer, mostly make house music and work on web3 community space", "mentioned_profiles": []}}, "username": "imamkikou14", "power_badge": false, "display_name": "Imam Kikou on the Track 14", "active_status": "inactive", "verifications": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "follower_count": 30, "custody_address": "0xc6455d5bad59f5c5c668cb209d8346f991574754", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/107244a6-93ee-4b37-993d-35c052507c00/original\"}","{\"url\":\"https://www.sound.xyz/k14onthetrack/dash-negies?referral_source=link\"}"}', NULL), - (646542, '0xc2421838cda30f9c43c4c960c8cfd4cbe32e36d8', 0, 1, '2024-05-06 14:25:16+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/soul?si=8b2295cd97d14301bcc83c116c4c0867&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (644093, '0x0590118554c51d0a4bad4614c0779c62b50d1956', 0, 1, '2024-05-06 14:20:44+00', 0, 3, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/soundcloud?si=428f362b186d442dabe795851b095bfe&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (644133, '0xdc74437e58d84ec6174212868d774d78ba801de4', 0, 1, '2024-05-06 14:20:28+00', 0, 0, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1556, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2501, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9i73zcvpbNxgizao9\"}"}', NULL), - (664336, '0xb0c74b365040c6bf71a3075da301baaa4b88524f', 0, 1, '2024-05-06 15:14:36+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/melinarbh/2ne1-ugly?in=cecil-torres-775514032/sets/2ne1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (691703, '0x74870d4397a5d67df123e9f05a77b3c6dc44a1a1', 10, 1, '2024-05-06 17:28:26+00', 0, 0, '{"fid": 448959, "object": "user", "pfp_url": "https://i.imgur.com/GglXGFC.jpg", "profile": {"bio": {"text": "Comic Persion", "mentioned_profiles": []}}, "username": "arminhamed", "power_badge": false, "display_name": "Armin Hamed", "active_status": "inactive", "verifications": ["0xb88079585bdf8e36e004af32f3c7475ee376f059"], "follower_count": 447, "custody_address": "0x452affa00ae0261409d620120903064d251b65c8", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb88079585bdf8e36e004af32f3c7475ee376f059"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cleopatra-recs/eye-of-the-tiger\"}"}', 'sonata'), - (670927, '0x2dc3cee83f694db63b0ac94588ca65cece545ce3', 0, 1, '2024-05-06 15:47:56+00', 0, 1, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 299, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 501, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://on.soundcloud.com/aZX6jNGCfLmsRZLZ8\"}"}', NULL), - (641427, '0x9224dbdacac143484909218cefbbaba8573f7156', 0, 1, '2024-05-06 14:14:10+00', 0, 0, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 1003, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1139, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user157514067/kebee-3?si=e53e3931a2b74734a2007c7429542289&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (684923, '0x25baca35d6ce5462824ebef1584e23fb11fec763', 0, 1, '2024-05-06 16:48:24+00', 0, 5, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 492, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 567, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1wYLsHZTwVTfHs4JgqkUCe?si=kO5973NeR32H5C7LTxW-5Q\"}"}', NULL), - (670461, '0xb3978b275238fa96eddf4528d92dc2a8ba43ef2b', 0, 1, '2024-05-06 15:45:15+00', 0, 2, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2109, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2658, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Zvfff\"}"}', 'sonata'), - (664361, '0x29172b24987bd4ce477f8125b7bb638a99727f36', 0, 1, '2024-05-06 15:14:46+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/maig33zx1/2ne1-baby-i-miss-you?in=cecil-torres-775514032/sets/2ne1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (666448, '0x82f76d02b63dd125d108ecb6112dc78f4c06bea0', 0, 1, '2024-05-06 15:27:14+00', 0, 6, '{"fid": 495796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52ce7d-af8e-4823-b6bb-db4330a74f00/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Crypto/Animals/Fun/ 슈캐이용중 /맞팔100%", "mentioned_profiles": []}}, "username": "30uk", "power_badge": false, "display_name": "Jiwon", "active_status": "inactive", "verifications": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "follower_count": 1677, "custody_address": "0x0717678be60b82344743230571577199405a539d", "following_count": 2711, "verified_addresses": {"eth_addresses": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zAKd85f9D4a4SzYj9\"}"}', 'sonata'), - (730234, '0x8975b08bff8bfddc0b6e28eb9174fcca875998a6', 0, 1, '2024-05-06 20:52:25+00', 0, 2, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3181, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2687, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fLMqr7GyGxnFvNqK9\"}"}', NULL), - (664170, '0xfe8ab5a91fbd0497689a1d5bb05d2b43e8ab0cc9', 0, 1, '2024-05-06 15:12:56+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/10-hate-you?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (642186, '0x3ea84fef3d308c8469369ee795d1a1aa435e3f00', 0, 1, '2024-05-06 14:18:46+00', 0, 6, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 596, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-51658009-782742214/qwer-full-ver?si=d78ad11d3c2e4994ab99ff7b4b55ea7d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (664597, '0x48cf6ecd6c0aab742cb3df5c369d9c1450903969', 0, 1, '2024-05-06 15:15:52+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share44/bigbang-last-dance?in=gqclhyvofheg/sets/s4jkk3qg1bnr&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (670535, '0x341ca54129c49abc808a998d55eb1dab277a9e73', 10000, 1, '2024-05-06 15:46:08+00', 0, 27, '{"fid": 488004, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6186e71e-9262-46eb-c312-f05428784d00/rectcrop3", "profile": {"bio": {"text": "슈캐 장착하고 🏃🏃‍♀️🏃‍♂️💨", "mentioned_profiles": []}}, "username": "immyyr", "power_badge": false, "display_name": "Bluev", "active_status": "inactive", "verifications": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "follower_count": 2936, "custody_address": "0x5432cf7d98e934b2cade28db3cffd883f05d54b5", "following_count": 3299, "verified_addresses": {"eth_addresses": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sVktiMYJDhi67grG7\"}"}', 'sonata'), - (461296, '0x4b37f3627b1534a587d28e344ffbb1b159b892d5', 6020, 1, '2024-05-06 07:00:42+00', 20, 18, '{"fid": 507856, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d276afed-cc35-44d7-0154-787a1e562e00/rectcrop3", "profile": {"bio": {"text": "Crypto researcher/web3 gamer/lifelong learner/travel addict", "mentioned_profiles": []}}, "username": "!507856", "power_badge": false, "display_name": "Nil", "active_status": "inactive", "verifications": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "follower_count": 644, "custody_address": "0xe2e74686dbfa00e6e34efb3b5aac7216106cf9f8", "following_count": 925, "verified_addresses": {"eth_addresses": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed?referral_source=link\"}"}', 'sonata'), - (610537, '0xc3e87e599c09ce653b7da891ad7324720a270040', 0, 1, '2024-05-06 13:02:44+00', 0, 8, '{"fid": 323975, "object": "user", "pfp_url": "https://i.imgur.com/aHyJtGw.jpg", "profile": {"bio": {"text": "너와 나의 연결고리. \n매너있게 재미있게 즐겁게 소통해요.\n좋은 정보 공유하도록 노력할께요~", "mentioned_profiles": []}}, "username": "daonpapa", "power_badge": false, "display_name": "Onpapa🎩", "active_status": "inactive", "verifications": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "follower_count": 1608, "custody_address": "0x9f09e9d1b492398f7f5d2a3d780eca0ed24af007", "following_count": 2920, "verified_addresses": {"eth_addresses": ["0xed28106ae893c9d2c0470082713aaac05c4dda2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0PlzctO0nv2sSIFmqDSE6h?si=fc510b5bcf07465e\"}"}', 'sonata'), - (680251, '0x00e3edab5e9d48fa6dc22a48ca67274f246b15eb', 0, 1, '2024-05-06 16:25:32+00', 0, 0, '{"fid": 385605, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b886de91-9dfd-48a9-cc44-4cae2ed1a600/original", "profile": {"bio": {"text": "Host /yotei\nSince 2021", "mentioned_profiles": []}}, "username": "wallmart", "power_badge": false, "display_name": "猫太郎 🎩⛓️", "active_status": "inactive", "verifications": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "follower_count": 1688, "custody_address": "0xfb29425d19d91e38a125fff6482314945498bc53", "following_count": 1343, "verified_addresses": {"eth_addresses": ["0x0eb636405ec2db0f356e254d372a726932058d79"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fbZ1xWYD7L4h7ZZA6\"}"}', 'musicjp'), - (666442, '0xe5f4c2c551225f9593efaad89915e6e60fc75232', 0, 1, '2024-05-06 15:26:41+00', 0, 2, '{"fid": 379723, "object": "user", "pfp_url": "https://i.imgur.com/qz4ePGa.jpg", "profile": {"bio": {"text": "Hardly working on 워캐스트!", "mentioned_profiles": []}}, "username": "kimnoru", "power_badge": false, "display_name": "Kimnoru", "active_status": "inactive", "verifications": ["0x3a722183008048deefd8e1b2d248bf26f627be88"], "follower_count": 1469, "custody_address": "0xd69aac90b35ecde5b4e9f7f736c1a38ac03d6649", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0x3a722183008048deefd8e1b2d248bf26f627be88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/m-crystal-sanskriti-mirai-senpai-seneviratne/gummy-you-are-my-everything-descendants-of-the-sun-ost-part-4?si=c359055bf7b3433d9f761f12c344d12c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (656988, '0x2da393b3ce5298ac574791ec5d4b138b0dd16bb3', 0, 1, '2024-05-06 14:52:40+00', 0, 11, '{"fid": 458191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/883d04b7-1096-4d94-022e-ac074d31fd00/rectcrop3", "profile": {"bio": {"text": "I’ll share my daily life 😎", "mentioned_profiles": []}}, "username": "freesia", "power_badge": false, "display_name": "freesia", "active_status": "inactive", "verifications": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "follower_count": 2916, "custody_address": "0x897d0a8819784d5ade9ea2c0569fdb58d311e717", "following_count": 1855, "verified_addresses": {"eth_addresses": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6g6j1vFwcaHC5RSR7\"}"}', 'sonata'), - (664177, '0x86f7ae5d9be5d588f42e396309d8a8a753495229', 0, 1, '2024-05-06 15:12:50+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/leemmp3/09-loveless?in=user-894111293/sets/777bzi6odisb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (664591, '0x71e7d69e7ed0c9b4aaa7b589f2e8132dcf0b8ed3', 0, 1, '2024-05-06 15:15:11+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jennifer-angela-sillanp/2ne1-lonely?in=cecil-torres-775514032/sets/2ne1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (634068, '0x614242e7c871750091df21d4096f3f5d4576fa71', 0, 1, '2024-05-06 13:57:06+00', 0, 5, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "follower_count": 670, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1as81KphEOxPNBthbuzlcx?si=Pm0SRGY7QjW2mlF_CLBOXA\"}"}', 'sonata'), - (743614, '0xc277f5806ec6cd8c3832ca11eda56018e98e6d34', 0, 1, '2024-05-06 22:55:24+00', 0, 1, '{"fid": 439146, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/997d50df-b831-46a3-f63c-0073c0549d00/original", "profile": {"bio": {"text": "I always used to be a fatfinger, you see i typed my name error.", "mentioned_profiles": []}}, "username": "hyperfatfingger", "power_badge": false, "display_name": "Hyperfatfingger", "active_status": "inactive", "verifications": ["0x5ed86506ff1244bb3ac0c309d5fc5ae6c0375464"], "follower_count": 194, "custody_address": "0x4a755eb5035f22af64e177b3880f6b48d31d32c6", "following_count": 411, "verified_addresses": {"eth_addresses": ["0x5ed86506ff1244bb3ac0c309d5fc5ae6c0375464"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/greyseymour/swarpies-claims-to-justice\"}"}', NULL), - (707076, '0x828ef3b6c69352551feef88b36dde5d3bcfb1d11', 0, 1, '2024-05-06 18:32:05+00', 0, 1, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 37, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/adhd-is-my-superpower?referral_source=link\"}"}', 'musicnft'), - (664589, '0x4f4d8cf2d5d11c20b216ab64ce2752e868029a9c', 0, 1, '2024-05-06 15:16:32+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nhokut/bigbang-we-like-2-party?in=gqclhyvofheg/sets/s4jkk3qg1bnr&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (923458, '0xa2814621560f5eb265bd8c59b6101befbbfa82a7', 0, 1, '2024-05-07 07:28:54+00', 0, 1, '{"fid": 402461, "object": "user", "pfp_url": "https://i.imgur.com/ySH9neZ.jpg", "profile": {"bio": {"text": "제주살이 9년차 입니다^ ^", "mentioned_profiles": []}}, "username": "geniusseon", "power_badge": false, "display_name": "geniusseon🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "follower_count": 1571, "custody_address": "0xb5dfed4c234fe2e11150467b49680fdf2612f4a5", "following_count": 1828, "verified_addresses": {"eth_addresses": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uFhNn\"}"}', 'sonata'), - (667026, '0x78c795ec55d01ebb05e8a41a79a3167f335378f8', 0, 1, '2024-05-06 15:30:15+00', 0, 4, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1699, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1302, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/HT3NC6mUiKSadomu8\"}"}', 'sonata'), - (641402, '0xca492a17c65bdade6047bdea9ef79140b9f17441', 0, 1, '2024-05-06 14:13:47+00', 0, 1, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 35, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 126, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lm7zcKayG3Lkx4rt9\"}"}', 'bgm'), - (656990, '0xe3bd02d8861b8115cd681face58866c63dc19b1a', 0, 1, '2024-05-06 14:52:34+00', 0, 1, '{"fid": 411828, "object": "user", "pfp_url": "https://i.imgur.com/uGVbzJm.jpg", "profile": {"bio": {"text": "I love degen❤️", "mentioned_profiles": []}}, "username": "onlypark125", "power_badge": false, "display_name": "Tigerdw22 🎩 ", "active_status": "inactive", "verifications": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "follower_count": 1688, "custody_address": "0xf82d20b7c0bc7d26020f250583ad1378c147a5de", "following_count": 2086, "verified_addresses": {"eth_addresses": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4v9bKHjTxYJYDKZs6\"}"}', NULL), - (680910, '0x001be12174c01489a4d73ab19116e42353c93245', 0, 1, '2024-05-06 16:30:02+00', 0, 8, '{"fid": 495796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52ce7d-af8e-4823-b6bb-db4330a74f00/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Crypto/Animals/Fun/ 슈캐이용중 /맞팔100%", "mentioned_profiles": []}}, "username": "30uk", "power_badge": false, "display_name": "Jiwon", "active_status": "inactive", "verifications": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "follower_count": 1683, "custody_address": "0x0717678be60b82344743230571577199405a539d", "following_count": 2719, "verified_addresses": {"eth_addresses": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/N1QxgAxsMhwNmqiW7\"}"}', 'sonata'), - (736155, '0x5454b3b1adb4707b26ee7173928c0df7ccc572cb', 0, 1, '2024-05-06 21:54:23+00', 0, 29, '{"fid": 410702, "object": "user", "pfp_url": "https://i.imgur.com/dK04t0j.jpg", "profile": {"bio": {"text": "Blockchain lover\nbtc maxi 🟧", "mentioned_profiles": []}}, "username": "0ximan", "power_badge": false, "display_name": "iMaN", "active_status": "inactive", "verifications": ["0x2ced66da942577e4557ca831da25bb4b7781d736"], "follower_count": 2386, "custody_address": "0xa2e958e90dd505c0b7790ddd9b13cd434d9089ef", "following_count": 2641, "verified_addresses": {"eth_addresses": ["0x2ced66da942577e4557ca831da25bb4b7781d736"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/ghostly-kisses/empty-note\"}"}', NULL), - (677778, '0xeb616b9071765a6dd3bf34abe274fd9090054b57', 0, 1, '2024-05-06 16:15:50+00', 0, 0, '{"fid": 289659, "object": "user", "pfp_url": "https://i.imgur.com/9GD5dX1.jpg", "profile": {"bio": {"text": "Zora → https://zora.co/@yojizzang // Alfafrens → https://www.alfafrens.com/channel/0xd37c250cd60ca1aed0178515afd5b49b1188d97c", "mentioned_profiles": []}}, "username": "yojizzang", "power_badge": false, "display_name": "yojizzang🍀", "active_status": "inactive", "verifications": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "follower_count": 3143, "custody_address": "0x0466acd0e5f6c6c644f99b9cb4a841dec03d4d8d", "following_count": 2718, "verified_addresses": {"eth_addresses": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/9flawless/blackpink-as-if-its-your-last?si=f00ecf4650d141379260552440785994&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (672321, '0xae00683d402bfe172f80f154a9f739756a9ed44a', 0, 1, '2024-05-06 15:52:00+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2662, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3133, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G5gTzs37K7DbWwZS9\"}"}', 'sonata'), - (656992, '0x95fd2fdcb25fc2c364ff5ff962ba5eaa87f0c249', 0, 1, '2024-05-06 14:52:35+00', 0, 4, '{"fid": 402461, "object": "user", "pfp_url": "https://i.imgur.com/ySH9neZ.jpg", "profile": {"bio": {"text": "제주살이 9년차 입니다^ ^", "mentioned_profiles": []}}, "username": "geniusseon", "power_badge": false, "display_name": "geniusseon🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "follower_count": 1555, "custody_address": "0xb5dfed4c234fe2e11150467b49680fdf2612f4a5", "following_count": 1825, "verified_addresses": {"eth_addresses": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AeSCZ\"}"}', 'sonata'), - (642191, '0x76e3aca5205c8154003add1d2e541a84e2db8170', 0, 1, '2024-05-06 14:18:06+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1400, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1907, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ymp9ztPLKMpBtRq29\"}"}', NULL), - (664590, '0x69258231fd7b7794b681dc88c06e8cdfc3851ef6', 0, 1, '2024-05-06 15:15:37+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nhokut/if-you-bigbang?in=gqclhyvofheg/sets/s4jkk3qg1bnr&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (951714, '0xeb2ee4051c86b02f210761c7278fd19a2fb0e4cc', 0, 1, '2024-05-07 08:57:31+00', 0, 2, '{"fid": 486079, "object": "user", "pfp_url": "https://i.imgur.com/kKPwYv0.jpg", "profile": {"bio": {"text": "Crypto newbie ", "mentioned_profiles": []}}, "username": "hyururu", "power_badge": false, "display_name": "Hyururu", "active_status": "inactive", "verifications": ["0xc6a26a71156c65357e4971816258b93f5fd387dc"], "follower_count": 1355, "custody_address": "0xdb974c370c1ef82b73040ee9da2047c115990e4c", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0xc6a26a71156c65357e4971816258b93f5fd387dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wuSnK\"}"}', 'sonata'), - (672319, '0x5d33b4289c7331e70a1a1fefa6b7fe930a984e4e', 0, 1, '2024-05-06 15:52:41+00', 0, 2, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1026, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1205, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uw6w1XtUBgXQNR6G7\"}"}', 'idol-japan'), - (683517, '0x2648f3577c059ae28a8694ecf92e3cd2cf05228d', 0, 1, '2024-05-06 16:39:56+00', 0, 1, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 402, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 656, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/maviue/the-music-played-matt-monro-1989-x\"}"}', NULL), - (672324, '0x6ce3bc84fcab1f59403cdb7a714825d419f4b498', 0, 1, '2024-05-06 15:51:52+00', 0, 0, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 299, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 501, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://on.soundcloud.com/HmnLxt9PiaXpPg119\"}"}', NULL), - (666012, '0xaff99e1730d806de8c98f0fa24a1b829ef8a458b', 0, 1, '2024-05-06 15:25:31+00', 0, 3, '{"fid": 433035, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48a31b2b-d166-4e85-5292-74f512ec5d00/rectcrop3", "profile": {"bio": {"text": "워린이𖤐", "mentioned_profiles": []}}, "username": "tenpercent", "power_badge": false, "display_name": "솔🐣", "active_status": "inactive", "verifications": ["0x05325fc71d0fd9d42cb3e3a223bac6b0cf53ff9c"], "follower_count": 649, "custody_address": "0x81664361be65ea4cac8de8fff67897a65f1c1870", "following_count": 852, "verified_addresses": {"eth_addresses": ["0x05325fc71d0fd9d42cb3e3a223bac6b0cf53ff9c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bao-ngoc-575160414/night-off-sleep\"}"}', 'sonata'), - (686363, '0x927d64c4974a7d61cd8effc44a47493e038fdd64', 0, 1, '2024-05-06 17:00:42+00', 0, 1, '{"fid": 390104, "object": "user", "pfp_url": "https://i.imgur.com/115fo3T.png", "profile": {"bio": {"text": "Someone who live 24h with warpcast😂\nA.K.A 도른자🤣\nUntil be rich!!!", "mentioned_profiles": []}}, "username": "yajirang", "power_badge": false, "display_name": "Yajirang🎩", "active_status": "inactive", "verifications": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "follower_count": 908, "custody_address": "0xf77b90b13adc452595b99ffe222ffcc3f8921c6f", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "sol_addresses": ["Hq5PAi4vYVPa4h58Q5xjQddvaUxuazDSdrgTBx6mycNc"]}}', '{"{\"url\":\"https://on.soundcloud.com/wTou2roXL6ias4kMA\"}"}', NULL), - (664592, '0xe7a0df1c53190c857a76797bc5408b07bfe5de81', 0, 1, '2024-05-06 15:16:00+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yumi-misaki-ii/good-boy-gdxtaeyang?in=gqclhyvofheg/sets/s4jkk3qg1bnr&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (642179, '0x4036b79bf619ecd01b66209428e8e1a659276db2', 0, 1, '2024-05-06 14:18:21+00', 0, 2, '{"fid": 492039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d0c18a46-650f-4cdc-f2cd-0d2ba31eee00/rectcrop3", "profile": {"bio": {"text": "Welcome to all coin info sharing I respect any opinions.", "mentioned_profiles": []}}, "username": "vvely", "power_badge": false, "display_name": "Kirby⭐️", "active_status": "inactive", "verifications": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "follower_count": 1821, "custody_address": "0x4aa36bd75aae9d6cb64f43e154730bd311787e7f", "following_count": 2679, "verified_addresses": {"eth_addresses": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3rYEjrceXFm2iizs8\"}"}', 'sonata'), - (669538, '0xd51f7eb54edadaa0c8adc4ef7f3ea5ecf0ad1890', 0, 1, '2024-05-06 15:40:17+00', 0, 3, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 802, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 731, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share89/iu-drama?si=fc9cebdd1bda4b4cae479873a9c44c9f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (711712, '0x3e5683b6cca2fdda06647991c1dfcff099786569', 0, 1, '2024-05-06 18:52:45+00', 0, 5, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 573, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 239, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2D1hlMwWWXpkc3CZJ5U351?si=5cf31fce4dbb4b81\"}"}', 'bangers'), - (646547, '0xb6979f76b8558152c728ec29407efd9030d1558b', 0, 1, '2024-05-06 14:24:57+00', 0, 2, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o9mJP7Du8cCD2eNK8\"}"}', NULL), - (644107, '0x574dfc5a54922eed616d57e15469243ffc59546a', 0, 1, '2024-05-06 14:20:21+00', 0, 0, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1108, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1153, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vcqEJ\"}"}', 'sonata'), - (657130, '0x17c466b14edf871a0429562473ae92d61b76d2e9', 0, 1, '2024-05-06 14:53:39+00', 0, 0, '{"fid": 508176, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56e7aaed-eac4-4ed3-db64-d87ef3844600/rectcrop3", "profile": {"bio": {"text": "nice play!!!", "mentioned_profiles": []}}, "username": "!508176", "power_badge": false, "display_name": "NICEPLAY", "active_status": "inactive", "verifications": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "follower_count": 200, "custody_address": "0x5ff3dc41301cda755a42ffec67381363f31ccc80", "following_count": 303, "verified_addresses": {"eth_addresses": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DhgDwcSuNkARsB8Z9\"}"}', 'sonata'), - (641827, '0x123f6a36727dfce82e7dfbc6a2e9538702bbd012', 0, 1, '2024-05-06 14:17:41+00', 0, 4, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4919, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2463, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-329806205/hoioutqzs2ob?si=c055aaa1f6154f37ac5d41c66f2f1f2b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (672093, '0xa657a9377a42b081e266a54e214fa75999b6f009', 0, 1, '2024-05-06 15:50:25+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2662, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3133, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G5gTzs37K7DbWwZS9\"}"}', NULL), - (681977, '0x14b24a981bcefa8a4e21c2e3af3c62a125b77974', 0, 1, '2024-05-06 16:34:18+00', 0, 1, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kendrick-lamar-music/euphoria?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (736508, '0x857917d003560017bf0ab12e79790e1d4b575f8d', 0, 1, '2024-05-06 21:59:14+00', 0, 1, '{"fid": 501182, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e010cef1-de7c-4453-d183-c7c1e2a94100/rectcrop3", "profile": {"bio": {"text": "Traveler who want to share my daily lives and areas of interest with various people 💓 F4F 🚀", "mentioned_profiles": []}}, "username": "betterman-kim", "power_badge": false, "display_name": "betterman-kim 🎩 🔵 🚀", "active_status": "inactive", "verifications": ["0xf038ff660d990a1db0fd7c80eb6687f6d63bcd8e"], "follower_count": 522, "custody_address": "0xdbfee5b65148dc0b4e9a3b984a66dd6b758d3bd2", "following_count": 648, "verified_addresses": {"eth_addresses": ["0xf038ff660d990a1db0fd7c80eb6687f6d63bcd8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kVagu\"}"}', 'sonata'), - (657131, '0x884e9726340f0f7b9f8d73148bc7ed85d4c40112', 0, 1, '2024-05-06 14:53:46+00', 0, 1, '{"fid": 411828, "object": "user", "pfp_url": "https://i.imgur.com/uGVbzJm.jpg", "profile": {"bio": {"text": "I love degen❤️", "mentioned_profiles": []}}, "username": "onlypark125", "power_badge": false, "display_name": "Tigerdw22 🎩 ", "active_status": "inactive", "verifications": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "follower_count": 1688, "custody_address": "0xf82d20b7c0bc7d26020f250583ad1378c147a5de", "following_count": 2086, "verified_addresses": {"eth_addresses": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hkUdGCkiPbtgp58s8\"}"}', NULL), - (923459, '0xb41662ff2c2e6eb0df8c5352d8bb6899abc08d1c', 0, 1, '2024-05-07 07:29:26+00', 0, 0, '{"fid": 500414, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e154aa8c-1e34-4a7c-9048-c34ccbb3a300/rectcrop3", "profile": {"bio": {"text": "🌟 일상의 작은 이야기부터 깊은 대화에 이르기까지, 가볍고 편안하게 소통하는 것을 즐깁니다. 🎈함께 이야기를 나누며 즐거운 시간을 보내요. 😊 https://zora.co/@ke_y", "mentioned_profiles": []}}, "username": "beom", "power_badge": false, "display_name": "Key", "active_status": "inactive", "verifications": ["0xa3a13043206f573ea0aad7cec75b111e000e9d1c"], "follower_count": 753, "custody_address": "0x81e21e7c12df858d2fc877fb43e120a6892ce22a", "following_count": 738, "verified_addresses": {"eth_addresses": ["0xa3a13043206f573ea0aad7cec75b111e000e9d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/officialtherose/back-to-me?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (645252, '0x3b9926df7b4b3c8a821725e8bff0c10660c56b07', 0, 1, '2024-05-06 14:21:20+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6H67h5Q1inxCXwDw9\"}"}', NULL), - (642921, '0x51f5e2e00bdf966c3ce6be005af4d480c4696a2b', 0, 1, '2024-05-06 14:19:07+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1400, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1907, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BZdXUgk8BEGXcQDFA\"}"}', NULL), - (642195, '0x0da94dde9fb8d02e93bccffda1cc63276ba698f1', 0, 1, '2024-05-06 14:18:50+00', 0, 0, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4919, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2463, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-329806205/hoioutqzs2ob?si=c055aaa1f6154f37ac5d41c66f2f1f2b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (642901, '0xb7e96163f0d3869690bb8ab9d91dda2ac8126f52', 0, 1, '2024-05-06 14:19:30+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1400, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1907, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8gvEppFFRbDr8SUd8\"}"}', NULL), - (693706, '0x4b2d226b7777f5f437336ccb1a1a2d79383af8f3', 0, 1, '2024-05-06 17:41:20+00', 0, 0, '{"fid": 411409, "object": "user", "pfp_url": "https://i.imgur.com/HP4ZzrI.jpg", "profile": {"bio": {"text": "沢にいる蟹です。", "mentioned_profiles": []}}, "username": "payao", "power_badge": false, "display_name": "payao🎩🔥", "active_status": "inactive", "verifications": ["0x79579b2032565133a53f876e80179d0066d293f0"], "follower_count": 518, "custody_address": "0xb01f86116802f40576bf5d68bdfeb05ae81003d9", "following_count": 534, "verified_addresses": {"eth_addresses": ["0x79579b2032565133a53f876e80179d0066d293f0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/74GJbmNHys47ZfdoQCySpM?si=VOyP94F3TLCQIEfSNdC6Gg\"}"}', 'musicjp'), - (673365, '0xb9e500ab86012b0517a985e1942df4332d2039c1', 0, 1, '2024-05-06 16:00:05+00', 0, 3, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1302, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ihwak/day6-ywb-cover-by-ihwak?si=baaae25fa4b745578f1328f64cd1e14b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (646436, '0x8117d6277dea95ea447c9ad546445a02a6d2d1ab', 0, 1, '2024-05-06 14:24:11+00', 0, 2, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DZ3YpMaAcTrqroGb8\"}"}', NULL), - (657622, '0xe2f05f4bd7b08a2edba8c0ac195cef82c5c0ddb1', 0, 1, '2024-05-06 14:54:16+00', 0, 0, '{"fid": 389318, "object": "user", "pfp_url": "https://i.imgur.com/tdvTm0m.jpg", "profile": {"bio": {"text": "Hello💙\n꿈은 멀리 있지 않다🌸 100억 가즈앙!!", "mentioned_profiles": []}}, "username": "skrud3399", "power_badge": false, "display_name": "kkott_mariban🎩🍖", "active_status": "inactive", "verifications": ["0x4b304bd0133127f2f76b4c7e04b619cdb1c3fa5c"], "follower_count": 1867, "custody_address": "0x8085d8dde495f41e78678b5aad2ca1c5f180d79b", "following_count": 1645, "verified_addresses": {"eth_addresses": ["0x4b304bd0133127f2f76b4c7e04b619cdb1c3fa5c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/j4ZBLj1XgZ19343X7\"}"}', 'sonata'), - (642936, '0x4928331e05c0d1541e1909dcbe06f0934a020a9f', 0, 1, '2024-05-06 14:19:47+00', 0, 0, '{"fid": 323599, "object": "user", "pfp_url": "https://i.imgur.com/ki2KU7o.jpg", "profile": {"bio": {"text": "Musician - Frequency lover -Crypto/Trader", "mentioned_profiles": []}}, "username": "bezu", "power_badge": false, "display_name": "Bezu 🎩🎤", "active_status": "inactive", "verifications": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "follower_count": 182, "custody_address": "0x35d6859e780f030894cc3d070792a503badafe36", "following_count": 507, "verified_addresses": {"eth_addresses": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff45f491-6d30-43c3-2330-42adb2775600/original\"}","{\"url\":\"https://open.spotify.com/track/1MVpa4w2TsjgUoJxMRAP0Z?si=zova-JOQTnmEslFeHkY_xA\"}"}', 'goat'), - (647204, '0x999e0d2c7c18a0674797ab587a29b01a45665dbf', 0, 1, '2024-05-06 14:27:03+00', 0, 0, '{"fid": 389318, "object": "user", "pfp_url": "https://i.imgur.com/tdvTm0m.jpg", "profile": {"bio": {"text": "Hello💙\n꿈은 멀리 있지 않다🌸 바로 지금 내 눈앞!", "mentioned_profiles": []}}, "username": "skrud3399", "power_badge": false, "display_name": "kkott_mariban🎩🍖", "active_status": "inactive", "verifications": ["0x4b304bd0133127f2f76b4c7e04b619cdb1c3fa5c"], "follower_count": 1867, "custody_address": "0x8085d8dde495f41e78678b5aad2ca1c5f180d79b", "following_count": 1645, "verified_addresses": {"eth_addresses": ["0x4b304bd0133127f2f76b4c7e04b619cdb1c3fa5c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T86Wn6jJHCbbTL5H8\"}"}', 'sonata'), - (641018, '0x23c4e17b547c9a41be9cc30d0d9806f607315595', 0, 1, '2024-05-06 14:12:09+00', 0, 7, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1548, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 960, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5SCmqzEsajBWuo2G7\"}"}', 'sonata'), - (664594, '0x061a48277f4b94f2c2a87448d5c2145aa5eff4ac', 0, 1, '2024-05-06 15:16:09+00', 0, 0, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 48, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/placeboworld/placebo-every-you-every-me?si=a7d11113c53940b8865cf26c2e5537b7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (680248, '0x5010e005d81b8a7bae2dc8385be871f846fa3f8d', 0, 1, '2024-05-06 16:24:34+00', 0, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "\nhttps://www.alfafrens.com/channel/0x626ea7aa69a420333c70cd2d96f8b44cc05984c0", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩⛓️‍💥", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 244, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 78, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://soundcloud.com/kendrick-lamar-music/euphoria\"}"}', NULL), - (641390, '0x1923ef4e94799ab80f78e198a94582e46037e760', 0, 1, '2024-05-06 14:16:00+00', 0, 0, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 596, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-51658009-782742214/qwer-full-ver?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (670304, '0xf73bafde8157d5c5586bd521a363e75134a9d308', 0, 1, '2024-05-06 15:43:40+00', 0, 0, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 803, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 732, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hnahkk/bbibbi?si=d86d2953e2cb4c2b90024abb31455511&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (682767, '0x4a57c23f2caf5478a546c2821c070702dfe35da9', 0, 1, '2024-05-06 16:37:33+00', 0, 1, '{"fid": 416495, "object": "user", "pfp_url": "https://i.imgur.com/dKMZ77m.jpg", "profile": {"bio": {"text": "My name is gangpyolee", "mentioned_profiles": []}}, "username": "gangpyo", "power_badge": false, "display_name": "Leegangpyo", "active_status": "inactive", "verifications": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "follower_count": 497, "custody_address": "0xc51d55d4eae0828062467935aa61d1922f4b5fc2", "following_count": 551, "verified_addresses": {"eth_addresses": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-anastovskii/lmfao-ft-lil-jon-shots-anastovskii-edit?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (673340, '0x11fa54aad6fb8f0eb3ddce7c0691b9614171f11e', 0, 1, '2024-05-06 15:59:24+00', 0, 2, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2109, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2658, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8KKTk\"}"}', 'sonata'), - (646440, '0xecf37d1ccfb551c79323579f103504546929f739', 0, 1, '2024-05-06 14:23:41+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u8pKstZAFv28QPuw7\"}"}', NULL), - (666899, '0x91136b59f24bb25b358547d38b981b4b2c73f01c', 0, 1, '2024-05-06 15:29:30+00', 0, 1, '{"fid": 15631, "object": "user", "pfp_url": "https://i.imgur.com/LMuwsSJ.jpg", "profile": {"bio": {"text": "High-tech #EDM Indie Record Label / A&R : @emrahis / https://drakula.app/user/millionrecords.eth?invite=jJzPNc / \n\nhttps://linktr.ee/millionrecordsmusic", "mentioned_profiles": []}}, "username": "millionrecords", "power_badge": false, "display_name": "Million Records", "active_status": "inactive", "verifications": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "follower_count": 628, "custody_address": "0x57febaf71b8dd64e1f0abe6656925a9815bb50b9", "following_count": 75, "verified_addresses": {"eth_addresses": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "sol_addresses": ["6ZhjvqWWFtWWMz5fEsmuLqbaypWWKMo3SzYXmCKwTzcx"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa3e0f3b-0ca6-4d07-ca6a-2b9827011500/original\"}","{\"url\":\"https://www.sound.xyz/millionrecords/redcatt-let-you-know\"}"}', NULL), - (679632, '0x17ff5e1705766e1dbbb7b1f1043122daef0927ce', 0, 1, '2024-05-06 16:21:45+00', 0, 0, '{"fid": 503541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7bd157f-1901-484d-4e68-9a2d9c7abe00/rectcrop3", "profile": {"bio": {"text": "✔️소소한 일상공유✔️소소한 행복🍀 \n\n✔️The best is yet to come🔥", "mentioned_profiles": []}}, "username": "jmggang", "power_badge": false, "display_name": "PassionJM", "active_status": "inactive", "verifications": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "follower_count": 889, "custody_address": "0x3e587e88dca50b6e3f0b99f2645fefbb283ebe7d", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/52HCcrEK8CHpQhhA9\"}"}', NULL), - (639027, '0x4be340b8a92a16b6d8aab14335584e859d1db165', 0, 1, '2024-05-06 14:06:42+00', 0, 13, '{"fid": 468888, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeihazdvtbsweo5jmb4rydwyy3jvk24jssk2wjt6cfgkwa264l6ej4i", "profile": {"bio": {"text": "cat saves the world.\nhttps://www.alfafrens.com/channel/0x5510f8437090E1d7678a68b4AB688A21CEAe7054", "mentioned_profiles": []}}, "username": "bori-papa", "power_badge": false, "display_name": "Bori_papa", "active_status": "inactive", "verifications": ["0xbe20fa4a5e041c94ac6b1a691caba8b89ad25885"], "follower_count": 1340, "custody_address": "0xdc735a42d2a5a4640fa821b94d173d81cdf05e6f", "following_count": 1496, "verified_addresses": {"eth_addresses": ["0xbe20fa4a5e041c94ac6b1a691caba8b89ad25885"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kwonsyuck/vwi2ppfokuim?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (664596, '0x30d7e0c1f1cbd301ca689651e53f8d87caf0652a', 0, 1, '2024-05-06 15:15:41+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/papillonperdu/bigbang-loser?in=gqclhyvofheg/sets/s4jkk3qg1bnr&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (923465, '0xbba93888952e5264e5017bb75820692477e2fc5d', 0, 1, '2024-05-07 07:29:12+00', 0, 7, '{"fid": 505556, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8290c871-b580-42d9-4083-1b5c2adcd100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "pivot", "power_badge": false, "display_name": "pivot", "active_status": "inactive", "verifications": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "follower_count": 920, "custody_address": "0x6c1d49afdb334e1728a0193198584fff3012e63b", "following_count": 805, "verified_addresses": {"eth_addresses": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qib6Yp4PywvnxCvj6\"}"}', NULL), - (641430, '0x0a50f676e67b682ad0f13af9ffbb499f55a9d75f', 0, 1, '2024-05-06 14:15:38+00', 0, 0, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 596, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-51658009-782742214/qwer-full-ver?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (680842, '0xff26760e5e7a1c9173b49916d06da73540ea5682', 0, 1, '2024-05-06 16:27:21+00', 0, 0, '{"fid": 503566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b01a50b5-1f0f-48eb-1931-ed7492d58600/rectcrop3", "profile": {"bio": {"text": "Have a nice day :)", "mentioned_profiles": []}}, "username": "gracerabbit", "power_badge": false, "display_name": "GraceRabbit", "active_status": "inactive", "verifications": ["0x2cf86245b496e3db44e876a428dc9714604f6041"], "follower_count": 1018, "custody_address": "0x861e43ef1caa752bc69ea9b0c7fbda8c35ecab3c", "following_count": 870, "verified_addresses": {"eth_addresses": ["0x2cf86245b496e3db44e876a428dc9714604f6041"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost23/gaho-the-beginning-itaewon-class-ost-part-2?si=e2ce07d0f1ad4dc8a2dab00117e465bd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (678554, '0x797c19d0ba3a0ca1faa000959094b54c8bc44faa', 0, 1, '2024-05-06 16:18:13+00', 0, 4, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1665, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1256, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kdwNw66xDyp9U3A77\"}"}', 'sonata'), - (692494, '0x9a0d3aa2091ad305a53af2a659aac5a0e3647135', 0, 1, '2024-05-06 17:36:24+00', 0, 3, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖💎🎶", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1244, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JapEMAWMGYUg3b5SA\"}"}', 'sonata'), - (680830, '0x1f83164f4b03b3233a1c89cde052d016e9548a0b', 0, 1, '2024-05-06 16:27:50+00', 0, 1, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 300, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 508, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://on.soundcloud.com/mcdc87AdkaJNXFKA7\"}"}', 'sonata'), - (664595, '0x21e6621d2612d7fd29a273f507278d7c11be6807', 0, 1, '2024-05-06 15:15:01+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/2nexx1/please-dont-go-cl-minzy?in=cecil-torres-775514032/sets/2ne1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (657769, '0xcd8860e7a813472f332e0f1a5e7511fa398645cd', 0, 1, '2024-05-06 14:55:28+00', 0, 7, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1886, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2254, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zHWLDEfsXLMR1S697\"}"}', 'sonata'), - (706488, '0x243b022a3168f9a885fe964dfd7f45d127d3e8e5', 0, 1, '2024-05-06 18:25:56+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 37, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/fuxk-sex-trafficking-sexual-abuse-rape?referral_source=link\"}"}', 'soundxyz'), - (664923, '0x4f8aa9bcbb38e729eb2fd76fa03c71b85ac06dd7', 0, 1, '2024-05-06 15:16:41+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share47/2ne1-goodbye?in=gqclhyvofheg/sets/s4jkk3qg1bnr&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (667627, '0x9b6b2cfb74da519e9f45f6ef90e7f61764ab55eb', 0, 1, '2024-05-06 15:32:02+00', 0, 0, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 113, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 188, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/orQkQuxsE37Le7Ar6\"}"}', NULL), - (657001, '0xcb7e2990db8224f8753a03542603b88f5ac2a419', 0, 1, '2024-05-06 14:52:46+00', 10, 31, '{"fid": 269694, "object": "user", "pfp_url": "https://i.imgur.com/8V7KO4z.gif", "profile": {"bio": {"text": "Willennial | Crypto since 2012 | /replyguys | /chatbfg | Bitfloorsghost.twitter | My quest for 400 followers continues daily", "mentioned_profiles": []}}, "username": "bitfloorsghost.eth", "power_badge": true, "display_name": "Bitfloorsghost", "active_status": "inactive", "verifications": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "follower_count": 23152, "custody_address": "0x9af356fa72af2c087024daeed021e3082d59406f", "following_count": 4127, "verified_addresses": {"eth_addresses": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "sol_addresses": ["4uxjUREup6MPbindcZTKUPMtRF3b8oVwY8FgpKpodLFB"]}}', '{"{\"url\":\"https://open.spotify.com/track/2q5IuW012mRgwVDQrsbEYe?si=9m-0lE2hQG6i_YqhYePz8w&context=spotify%3Aplaylist%3A37i9dQZF1E4wKlZyhysMDD\"}"}', 'chatbfg'), - (758173, '0xfc58b3b4c35c09f75cff7a1c9f44858d810c2bb8', 0, 1, '2024-05-06 23:58:12+00', 0, 1, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 2029, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2868, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FvjaeDeMAS1qCcc68\"}"}', NULL), - (657840, '0x0698f2e342f6158a9d0290c49d77d6f29126c834', 0, 1, '2024-05-06 14:56:31+00', 0, 1, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2357, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4125, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Mh8Uc\"}"}', 'sonata'), - (667899, '0x4cb6b11a6204d5f1279974a1de27713cc84a4f84', 0, 1, '2024-05-06 15:33:05+00', 0, 2, '{"fid": 486310, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6071787-b9ac-49a8-f2da-15e311df5e00/rectcrop3", "profile": {"bio": {"text": "F4F 마띠🎩 햄🍖 인간 비타민🍋🍋🍋💛", "mentioned_profiles": []}}, "username": "jennyan", "power_badge": false, "display_name": "J🎩🍋", "active_status": "inactive", "verifications": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "follower_count": 1533, "custody_address": "0xacd0c2b19213be2deaaee6700483b03f545ab108", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mrtexassoul/moments?si=af1d8e321ac741daa897bab10cb27187&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (664948, '0x9cea34261a08bf6a08fd5dd7ae9c986e9b5924f0', 0, 1, '2024-05-06 15:16:44+00', 0, 3, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2109, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2658, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rBjLf\"}"}', 'sonata'), - (743005, '0x61d711cd2bbd23bb565322c3091eecf3762e1b22', 0, 1, '2024-05-06 22:47:28+00', 0, 0, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 417, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/WM4QZi6PWnmVnbat7\"}"}', 'musicjp'), - (681989, '0x8c7862b08908a5c35ff93f3e956e0269795fac73', 0, 1, '2024-05-06 16:34:47+00', 0, 0, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lilyeat/heavy-stunts-feat-don-toliver?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (681699, '0x5f3196dfc8fb7a9448d13264ffc5f7fcd21958f2', 0, 1, '2024-05-06 16:33:33+00', 0, 0, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (131506, '0xc77a6481d3ae6e2660d05a903b00c94d51908ff8', 3230, 1, '2024-05-05 06:15:00+00', 50, 25, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/mine?referral_source=link\"}"}', NULL), - (657911, '0x59b16b6c7e3e7d5790f9c3a1a14b8221eaf7a649', 0, 1, '2024-05-06 14:57:59+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2357, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4125, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MCdS9\"}"}', 'sonata'), - (681385, '0x670985e247b5eabd464776fe47dd3b810a8f8c76', 0, 1, '2024-05-06 16:30:18+00', 0, 6, '{"fid": 407281, "object": "user", "pfp_url": "https://i.imgur.com/ujCy6Yx.jpg", "profile": {"bio": {"text": "리액션 끝까지 찾아가요 / 댓글 하나하나 다 찾아내요", "mentioned_profiles": []}}, "username": "yeonn", "power_badge": false, "display_name": "Kakashi", "active_status": "inactive", "verifications": ["0x085b88ef607cc3978b91f9317591f9f2aef5992e"], "follower_count": 3354, "custody_address": "0x261bf95b130d0b4a83417338d9a6c825d6b5e9d8", "following_count": 2421, "verified_addresses": {"eth_addresses": ["0x085b88ef607cc3978b91f9317591f9f2aef5992e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2LYGf\"}"}', 'sonata'), - (657837, '0xa2f0895e0b9543c42dc2fcdcfa91867c029ea8c0', 0, 1, '2024-05-06 14:57:19+00', 0, 7, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3093, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2297, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qwy5Z\"}"}', 'sonata'), - (704967, '0x8747b20189eff951ee5d83cdc23202205e516803', 0, 1, '2024-05-06 18:19:22+00', 0, 4, '{"fid": 406650, "object": "user", "pfp_url": "https://i.imgur.com/pYxYFDo.jpg", "profile": {"bio": {"text": "반갑습니다. 잘 부탁 드립니다.사진/여행/헬스/맛집/좋아함 좋은하루 되세요!\n★ 소통이 미래다 ★\n", "mentioned_profiles": []}}, "username": "sakamoto-kenzo", "power_badge": false, "display_name": "Sakamoto-kenzo", "active_status": "inactive", "verifications": ["0x780d121c7ae6593dc333a75419e8db83a30629e7"], "follower_count": 2795, "custody_address": "0xf8a15ca32d0d27680d23d77e2b11c330f8d2ca1f", "following_count": 2925, "verified_addresses": {"eth_addresses": ["0x780d121c7ae6593dc333a75419e8db83a30629e7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FgW6U\"}"}', 'sonata'), - (645821, '0xd3d21dbfe7527c518b5da2470031fc091c02e7c2', 0, 1, '2024-05-06 14:22:30+00', 0, 1, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 238, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 347, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/javier-versionaba/the-rain-song-led-zeppelin?si=14b753b4e44a4f5bba0a797eaac6511b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (680840, '0x6fc57e3418fa200bc7469b1c9ca17b064c3d32a3', 0, 1, '2024-05-06 16:27:05+00', 0, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "\nhttps://www.alfafrens.com/channel/0x626ea7aa69a420333c70cd2d96f8b44cc05984c0", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩⛓️‍💥", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 244, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 78, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://soundcloud.com/kaytranada/september-21?in=kaytranada/sets/bubba-109943850\"}"}', NULL), - (720460, '0x6e41e534e3496e7e2928c7f5cb2c81ad4c67ba3c', 0, 1, '2024-05-06 19:50:58+00', 0, 0, '{"fid": 509125, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/682f4ae3-39b6-4261-0030-17afb8d31900/rectcrop3", "profile": {"bio": {"text": "I love warpcast ♡", "mentioned_profiles": []}}, "username": "!509125", "power_badge": false, "display_name": "sunshine🎩🍖", "active_status": "inactive", "verifications": ["0x78e1dd5ba3f8c5be9fb11bdf472c4ecd549ef38c"], "follower_count": 173, "custody_address": "0x9a7b2e74553ae3b473e2da390d24e9b88f71c6fd", "following_count": 265, "verified_addresses": {"eth_addresses": ["0x78e1dd5ba3f8c5be9fb11bdf472c4ecd549ef38c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost11/paul-kim-goodbye-hotel-del-luna-ost-part-10?si=7629d2e65c7b4d359922ec6dd93e8ffc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (644130, '0x1c74e482695518a273da96453043117a7d72ee56', 0, 1, '2024-05-06 14:21:06+00', 0, 2, '{"fid": 323599, "object": "user", "pfp_url": "https://i.imgur.com/ki2KU7o.jpg", "profile": {"bio": {"text": "Musician - Frequency lover -Crypto/Trader", "mentioned_profiles": []}}, "username": "bezu", "power_badge": false, "display_name": "Bezu 🎩🎤", "active_status": "inactive", "verifications": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "follower_count": 184, "custody_address": "0x35d6859e780f030894cc3d070792a503badafe36", "following_count": 509, "verified_addresses": {"eth_addresses": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c22628db-3d63-49f0-871d-298c949f6400/original\"}","{\"url\":\"https://open.spotify.com/track/1MVpa4w2TsjgUoJxMRAP0Z?si=zova-JOQTnmEslFeHkY_xA\"}"}', 'goat'), - (645844, '0x56b6956709deb7425fe727f7212b066abe37462c', 0, 1, '2024-05-06 14:22:32+00', 0, 4, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 596, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 697, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-51658009-782742214/qwer-full-ver?si=481279f9a50b411e91832b9103808247&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (1112424, '0x442fc5c83bf0c5cba7de018796e983d6ca6703b5', 0, 1, '2024-05-07 17:06:23+00', 0, 0, '{"fid": 501191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f60c74be-c8d6-4377-f519-62afaada5600/rectcrop3", "profile": {"bio": {"text": "silversnow papa", "mentioned_profiles": []}}, "username": "sanae-tiger", "power_badge": false, "display_name": "SaNae_tiger", "active_status": "inactive", "verifications": ["0x39379ce055eba5708f80c8519a32a339eea2a00b"], "follower_count": 1424, "custody_address": "0x118fabfb533c12b8081ecc62f8875f472a52a581", "following_count": 1242, "verified_addresses": {"eth_addresses": ["0x39379ce055eba5708f80c8519a32a339eea2a00b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AqApm8L4r9xPBKiL7\"}"}', NULL), - (553473, '0x262f1e0de484aabb78ece3051e2518c39d4258f1', 0, 1, '2024-05-06 10:33:08+00', 0, 4, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1432, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 306, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (629815, '0xc5367146bd3a1c4eacd4840868936a33f703c4d6', 0, 1, '2024-05-06 13:46:44+00', 0, 3, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11d25945-614c-4f57-0e82-2a5992f10900/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0x550273c395e4914e38f131ebeb0cb49da44a6257"], "follower_count": 95, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 315, "verified_addresses": {"eth_addresses": ["0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0x550273c395e4914e38f131ebeb0cb49da44a6257"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/down-the-drain?referral=0xaf5735cc5d392e54e92a54be30c3aacfa16a0096&referral_source=link\"}"}', NULL), - (665174, '0x51abfd9af7b7c5da23cfd8317e37b0a8c6655356', 0, 1, '2024-05-06 15:18:57+00', 0, 0, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1663, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1256, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2r4g8E8qVxSALX19A\"}"}', NULL), - (805467, '0x8992c7739e71c1e8b663457a783d2ffbbc6f2b6f', 0, 1, '2024-05-07 03:31:31+00', 0, 1, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3417, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"#SoundCloud https://on.soundcloud.com/HT9hY\"}"}', NULL), - (713274, '0x149e7993c8f77cb583babeaf9e34d9a930e8dbbf', 0, 1, '2024-05-06 19:10:02+00', 0, 0, '{"fid": 407424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/24b1ae28-8592-45ae-d53e-fa51fbbdfb00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mortezaxan", "power_badge": false, "display_name": "Morteza 🎩 🔄", "active_status": "inactive", "verifications": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "follower_count": 102, "custody_address": "0x81a0acbdaa12ac4f6c2a133211d5acab228dbece", "following_count": 122, "verified_addresses": {"eth_addresses": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user799835639/balthazarbunker\"}"}', NULL), - (646450, '0xaebdf77d7dc817f3fda2638add07a9d0e9c3e2be', 0, 1, '2024-05-06 14:24:35+00', 0, 2, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/hip-hop-rap?si=5dd47e098e864b33a1e3651c52e29127&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646432, '0xf84c31697feed2911d618308acc0278538bdb2af', 0, 1, '2024-05-06 14:24:21+00', 0, 2, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3Bw2EpvCLRgGmZuKA\"}"}', NULL), - (665176, '0x5e2e9a81120d07dc90226e2d6d9da279eb28382c', 0, 1, '2024-05-06 15:18:32+00', 0, 0, '{"fid": 376167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34b0ca74-0495-43f4-3439-786abc38cd00/rectcrop3", "profile": {"bio": {"text": "don''t be perfect be real🕊", "mentioned_profiles": []}}, "username": "haniehniku", "power_badge": false, "display_name": "Haniehnik 🎩🔵🔮", "active_status": "inactive", "verifications": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "follower_count": 674, "custody_address": "0x69ae56667bd5cb07dac272722c772d2d1b5c965d", "following_count": 662, "verified_addresses": {"eth_addresses": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Fortnight (feat. Post Malone) by Taylor Swift on #SoundCloud https://on.soundcloud.com/xSCFb\"}"}', NULL), - (611407, '0xb50a49f904b37527eec3eb94711ab4f030dea184', 0, 1, '2024-05-06 13:07:53+00', 0, 1, '{"fid": 188421, "object": "user", "pfp_url": "https://zerion-dna.s3.us-east-1.amazonaws.com/onepointo/45485468fe86dc228214abe31b84c43362265a15.png", "profile": {"bio": {"text": "Music nfts! \nhttps://www.sound.xyz/playlist/2bb58385-0745-4d0e-a80a-ef0fe58a18f4 ", "mentioned_profiles": []}}, "username": "777999", "power_badge": false, "display_name": "Thanh 🔴🎩🔵", "active_status": "inactive", "verifications": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "follower_count": 608, "custody_address": "0xbc81245772f4d0c531ad1715407e37be9bbe43fd", "following_count": 725, "verified_addresses": {"eth_addresses": ["0xa41a9630b65e4ea1216211ef99c5b2b1db069c85"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0xa41a9630b65e4ea1216211ef99c5b2b1db069c85&referral_source=link\"}"}', 'sonata'), - (658314, '0x72e1ef339d30d51a08b841d0ef7948f0bf4b35f6', 0, 1, '2024-05-06 14:59:27+00', 0, 5, '{"fid": 500303, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4d3ec05-d788-4c65-baaa-86a1fa40c700/rectcrop3", "profile": {"bio": {"text": "만나서 반가워😀\n\n잘 부탁해 ~", "mentioned_profiles": []}}, "username": "sudde", "power_badge": false, "display_name": "나야나", "active_status": "inactive", "verifications": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "follower_count": 1639, "custody_address": "0x0c9ec1bcd0bcc3b7d3daa278e8e531ccca4dba6e", "following_count": 1603, "verified_addresses": {"eth_addresses": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Lee Hyori - U Go Girl by Sine sine on #SoundCloud https://on.soundcloud.com/Us6wJ\"}"}', NULL), - (736168, '0x3cb37bc538ba2903163e39bb5b6c50663c8174f8', 0, 1, '2024-05-06 21:54:32+00', 5, 2, '{"fid": 396686, "object": "user", "pfp_url": "https://i.imgur.com/fPrPJbw.jpg", "profile": {"bio": {"text": "Degen Investor, NFT Designer, Real Estate Investment Expert", "mentioned_profiles": []}}, "username": "cupe", "power_badge": false, "display_name": "Unicbabe🎩", "active_status": "inactive", "verifications": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "follower_count": 627, "custody_address": "0x1cf829fd720262d71df0d31d2daa438b8bcfa33d", "following_count": 1125, "verified_addresses": {"eth_addresses": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "sol_addresses": ["JCwvnP3zV9KCQMMCCsmdPrSoh6K6AbJeUpvuY96YPKj1"]}}', '{"{\"url\":\"https://soundcloud.com/jamesblunt/youre-beautiful\"}"}', NULL), - (678606, '0xe86061a39e2d0c769facccae6baa4f9ffd412b32', 0, 1, '2024-05-06 16:17:53+00', 0, 1, '{"fid": 289659, "object": "user", "pfp_url": "https://i.imgur.com/9GD5dX1.jpg", "profile": {"bio": {"text": "Zora → https://zora.co/@yojizzang // Alfafrens → https://www.alfafrens.com/channel/0xd37c250cd60ca1aed0178515afd5b49b1188d97c", "mentioned_profiles": []}}, "username": "yojizzang", "power_badge": false, "display_name": "yojizzang🍀", "active_status": "inactive", "verifications": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "follower_count": 3143, "custody_address": "0x0466acd0e5f6c6c644f99b9cb4a841dec03d4d8d", "following_count": 2718, "verified_addresses": {"eth_addresses": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lee-gyeongmi-594950693/sets/q3oibz469xtm?si=5c0de73e5bea4664b4d7e40bfd5e38f3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646546, '0x1bb0f7295e29c39be4be058884444f1ca8bcc036', 0, 1, '2024-05-06 14:24:49+00', 0, 2, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/techno?si=c5162e95eda8462f89ee482dbd0f6013&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646549, '0xb26a3e9ad71ee457ae549e8aff078aa9a0ec72cc', 0, 1, '2024-05-06 14:25:24+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/pop?si=1c60c65de87d4c57b8753e37ce21d5e8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (678937, '0xfba4ce8c1fbe55114cf7b5b541821845b5762e88', 0, 1, '2024-05-06 16:18:48+00', 0, 0, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 113, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 188, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nGbawD8AVXtxv1SDA\"}"}', NULL), - (495937, '0x373d79e6ab02c55eae92719af3c9d0c526a5c4a7', 0, 1, '2024-05-06 07:54:34+00', 0, 3, '{"fid": 486262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/908c18c1-a0dd-4cd5-a4c6-c9b61329b300/rectcrop3", "profile": {"bio": {"text": "Hey~ guys 😍like ❣️recast 🔄reply \n💌is good👍 ", "mentioned_profiles": []}}, "username": "yuchanism", "power_badge": false, "display_name": "유차니즘🌈", "active_status": "inactive", "verifications": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "follower_count": 1959, "custody_address": "0xdf28316ba634e3fecdd5c74d269feb378695d1cb", "following_count": 462, "verified_addresses": {"eth_addresses": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qqazumlaagxb/kim-soo-hyun-way-home-ost?si=08887c4720b14e40ba6f5cc3e9b35a6e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmbW1rRnso5oYF2t2YrNytjEWVUY7E7FdTpEaZE2KeqY6f?filename=(2).jpg\"}"}', 'sonata'), - (672326, '0x89a7a936d4c65012e8d2f77363b7c627bf50f316', 0, 1, '2024-05-06 15:51:44+00', 0, 2, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 361, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 548, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-4794204/good-morning-ost?si=0ad2f3dcd59845b5808b92d2d6fce7ee&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (665177, '0xb63696b3ee30998913573c16a9bf0e948b3526a2', 0, 1, '2024-05-06 15:18:45+00', 0, 0, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1663, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1256, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2r4g8E8qVxSALX19A\"}"}', NULL), - (672689, '0xe176368f613a8de9b332ec0ed905112c89db7f3e', 0, 1, '2024-05-06 15:56:33+00', 0, 2, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 418, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/YVBBH8Ud9JsRTuK66\"}"}', 'musicjp'), - (646570, '0xb1ed4233d2abbc7b0d7201063c06cfd7a2aa7cc5', 0, 1, '2024-05-06 14:25:06+00', 0, 2, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/r-b?si=09613a1ec91d4f4ebc3039d818456100&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646551, '0x3a181d37ed22a0984058296f9cd2902844c961a0', 0, 1, '2024-05-06 14:24:50+00', 0, 1, '{"fid": 499591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aee6c3f3-6faf-44fb-ae8d-0d228217d200/rectcrop3", "profile": {"bio": {"text": "i interest in food", "mentioned_profiles": []}}, "username": "carrot23", "power_badge": false, "display_name": "carrot23", "active_status": "inactive", "verifications": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "follower_count": 964, "custody_address": "0xa081b884ab07ba0e01ddf1806ad8a2dee71e641b", "following_count": 1380, "verified_addresses": {"eth_addresses": ["0xc8e85d625547f88bdc963abaf7ca00e6508e3609"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/baeddaragi/3amu3binaryn?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646553, '0x763b1601b9cdf70e91d9ffe2930891575ff87973', 0, 1, '2024-05-06 14:25:53+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-eunon/sets/pop-gym-stereo?si=f3c768a3fe2d4021bcdf3b7654bd7a18&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (658317, '0x91d6df2325336f7c9a0cbc2effe7d96a5b1cc014', 0, 1, '2024-05-06 14:59:10+00', 0, 0, '{"fid": 500789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ecf32acd-8f22-4840-b9cf-1387856adc00/rectcrop3", "profile": {"bio": {"text": "Be happy everyone!!", "mentioned_profiles": []}}, "username": "gummy8103", "power_badge": false, "display_name": "gummy8103", "active_status": "inactive", "verifications": ["0xacf1940b2ed91bf35bc14fe9b3c1e00add4e82df"], "follower_count": 1177, "custody_address": "0xa0b3d463c8777ccbd412fdbc8d81a59217c8cb6d", "following_count": 1092, "verified_addresses": {"eth_addresses": ["0xacf1940b2ed91bf35bc14fe9b3c1e00add4e82df"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QvDqZSkoMhyyjwPR9\"}"}', 'sonata'), - (646552, '0xebceb6dc7d50426db41dc486ac31f93a1ec71f3b', 0, 1, '2024-05-06 14:25:31+00', 0, 0, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 599, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 703, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fvczvraplnmf/cmvd5mpddul4?si=52f29e7f41414e3cb773b095ff4b229d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (497645, '0x893b6d695fb5c76e6b64804e4a229ad9126beb52', 0, 1, '2024-05-06 07:57:28+00', 0, 0, '{"fid": 17582, "object": "user", "pfp_url": "https://i.imgur.com/2m6Z9ab.gif", "profile": {"bio": {"text": "FC OG FID 17582, 🙌 art supporter with >470k $degen tipped | Also web3 & ZK investor, VC & tech podcast host, self-proclaimed digital artist (Rapha.Elgrie.co)", "mentioned_profiles": []}}, "username": "rphgrc.eth", "power_badge": true, "display_name": "RAPH GRIΞCO ↑🔵", "active_status": "inactive", "verifications": ["0xd48ba19c4d8ae08fc189273b52b696931b271e53", "0xdaac0bb7ffb7d9fc06ff2cd4fb813f46157b7481", "0x915c51a7a0399662e63c99e1faf351f668198de8"], "follower_count": 1685, "custody_address": "0xaf9304132708b01aa0c4ff87becf51bdcfc4ba83", "following_count": 998, "verified_addresses": {"eth_addresses": ["0xd48ba19c4d8ae08fc189273b52b696931b271e53", "0xdaac0bb7ffb7d9fc06ff2cd4fb813f46157b7481", "0x915c51a7a0399662e63c99e1faf351f668198de8"], "sol_addresses": ["5s74ej2muAJZCk2thCGeted8ak1Tzj4mZVpbxjgbaeqy"]}}', '{"{\"url\":\"https://open.spotify.com/track/2TIoqfCCtDQ26X5eFCGVAR?si=422b38a85f154c83\"}"}', 'sonata'), - (678940, '0xf96f28961ce6694d2aec0dd5dbeaf9c83f1d83c5', 0, 1, '2024-05-06 16:19:21+00', 0, 2, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2527, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EngWo\"}"}', 'sonata'), - (665499, '0x6cc9f8850c9ced5cee4f5364cc5706a6c81fd9c5', 0, 1, '2024-05-06 15:21:47+00', 0, 4, '{"fid": 376167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34b0ca74-0495-43f4-3439-786abc38cd00/rectcrop3", "profile": {"bio": {"text": "don''t be perfect be real🕊", "mentioned_profiles": []}}, "username": "haniehniku", "power_badge": false, "display_name": "Haniehnik 🎩🔵🔮", "active_status": "inactive", "verifications": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "follower_count": 674, "custody_address": "0x69ae56667bd5cb07dac272722c772d2d1b5c965d", "following_count": 662, "verified_addresses": {"eth_addresses": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Fortnight (feat. Post Malone) by Taylor Swift on #SoundCloud https://on.soundcloud.com/xSCFb\"}"}', NULL), - (646555, '0x84c17d456bfefc64d3ab2ad2af08262b2ba35507', 0, 1, '2024-05-06 14:25:44+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-eunon/sets/feel-good-rap?si=36deb50cc6214009881dbb315eb40910&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646451, '0xfa3f58a4849ee3df967998ef07634c4769b18097', 0, 1, '2024-05-06 14:24:30+00', 0, 2, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/jazz?si=196496fd9331412495f3e1d356afb1f9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (659320, '0x0aa00e4d5d199731abecbc1d4048a77bbd687d7a', 0, 1, '2024-05-06 15:00:39+00', 0, 0, '{"fid": 441339, "object": "user", "pfp_url": "https://i.imgur.com/Dm8d6SG.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nassive", "power_badge": false, "display_name": "Chinazes ", "active_status": "inactive", "verifications": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "follower_count": 193, "custody_address": "0xd64038b044bdaf77f537086fd76e0f60ad56bbc8", "following_count": 267, "verified_addresses": {"eth_addresses": ["0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mnr1b\"}"}', NULL), - (681966, '0xf096fcea1c39652ce421794496d78ed227fe3233', 0, 1, '2024-05-06 16:34:37+00', 0, 9, '{"fid": 6731, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/021972347cf7146c5a219e03840ffe55.jpg?w=500&auto=format", "profile": {"bio": {"text": "Jamie • /devrel @ /reservoir • /bicycling • /chicago • /djs • home @ /chicagolife", "mentioned_profiles": []}}, "username": "chicago", "power_badge": true, "display_name": "Chicago 🎩 @ FarCon", "active_status": "inactive", "verifications": ["0x6d34927441c4a238a84f9f54a47d67cc3d55f575", "0x5c0d9828ca6595db1012a4063c7ae8b6edee7534"], "follower_count": 23013, "custody_address": "0x0faeba7a10eaf727f0ebb9e9d844682d38c4a02a", "following_count": 681, "verified_addresses": {"eth_addresses": ["0x6d34927441c4a238a84f9f54a47d67cc3d55f575", "0x5c0d9828ca6595db1012a4063c7ae8b6edee7534"], "sol_addresses": []}}', '{"{\"url\":\"https://www.youtube.com/watch?v=H4UGSGsfXi4\"}","{\"url\":\"https://open.spotify.com/track/1T9wH859adpd0pIwuQJIvF\"}"}', NULL), - (731389, '0x841f838d113f21b89e65fed46b8ed515a1092985', 0, 1, '2024-05-06 21:10:18+00', 0, 11, '{"fid": 475621, "object": "user", "pfp_url": "https://i.imgur.com/iDPLKG6.jpg", "profile": {"bio": {"text": "모두부자됩시다 퐈이아 무반", "mentioned_profiles": []}}, "username": "thingkkk", "power_badge": false, "display_name": "ThinGKKK", "active_status": "inactive", "verifications": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "follower_count": 3152, "custody_address": "0xc33e161c1715926354fe84e9e97965a5c34f0049", "following_count": 3475, "verified_addresses": {"eth_addresses": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GRgH5JN2PMA85x1n8\"}"}', 'sonata'), - (696880, '0x02a209ce56a8d6328e5c1593ba2b453182222bd3', 0, 1, '2024-05-06 17:55:02+00', 0, 0, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1303, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/anfe7g0j9dqd/akmu-love-lee-3?si=84ad3c39d21145a3929caa9f4b3e4092&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (659353, '0xfbc5820edbf51756db6896f87c9e8bd2f1beafa4', 0, 1, '2024-05-06 15:00:30+00', 0, 0, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 48, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/notinnit-notinnit/odoriko-vaundy?si=5bf718693e7e4fe1b58079ebcd1b19c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (646427, '0xad990980e80414bc3fafa74ba16d6b24a37dc900', 0, 1, '2024-05-06 14:24:34+00', 0, 1, '{"fid": 466946, "object": "user", "pfp_url": "https://i.imgur.com/av57x3f.jpg", "profile": {"bio": {"text": "korea no.1 pepe\ncrypto, degen, meme\n@@@@@@@크립토, 밈, 일상공유!!", "mentioned_profiles": []}}, "username": "rms7282", "power_badge": false, "display_name": "fire pepe", "active_status": "inactive", "verifications": ["0x38902852eceb1421cd632e233f2c1726fe970b43"], "follower_count": 2997, "custody_address": "0x981b5ecfe775795f777138612f0a9b06eb93d431", "following_count": 2415, "verified_addresses": {"eth_addresses": ["0x38902852eceb1421cd632e233f2c1726fe970b43"], "sol_addresses": []}}', '{"{\"url\":\"라디오헤드를 전세계로 알린 곡 https://soundcloud.com/deathismercy/radio-head-creep?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (450680, '0x81d82814a085d0a6608cb487fa1f7e16fd7b42d2', 0, 1, '2024-05-06 06:45:42+00', 0, 12, '{"fid": 507928, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49b4b4b3-3abc-4720-4eae-b3c7a46d2f00/rectcrop3", "profile": {"bio": {"text": "Crypto trader | Web3 gamer", "mentioned_profiles": []}}, "username": "!507928", "power_badge": false, "display_name": "Kasra", "active_status": "inactive", "verifications": ["0x15878850971770adb4d13aaa6ac5f8e7d5927a09"], "follower_count": 699, "custody_address": "0x2458e97ec605db31c7e58f39557f922604764114", "following_count": 965, "verified_addresses": {"eth_addresses": ["0x15878850971770adb4d13aaa6ac5f8e7d5927a09"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/xcelencia/chimbita?referral_source=link\"}"}', 'sonata'), - (665641, '0x9f51e520a67c8a2aeac763b416f149656b409e81', 0, 1, '2024-05-06 15:23:43+00', 0, 3, '{"fid": 379723, "object": "user", "pfp_url": "https://i.imgur.com/qz4ePGa.jpg", "profile": {"bio": {"text": "Hardly working on 워캐스트!", "mentioned_profiles": []}}, "username": "kimnoru", "power_badge": false, "display_name": "Kimnoru", "active_status": "inactive", "verifications": ["0x3a722183008048deefd8e1b2d248bf26f627be88"], "follower_count": 1469, "custody_address": "0xd69aac90b35ecde5b4e9f7f736c1a38ac03d6649", "following_count": 1117, "verified_addresses": {"eth_addresses": ["0x3a722183008048deefd8e1b2d248bf26f627be88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cheng-liu-228378999/2ne1-game-boy-bootleg-freedownload?si=f810acc855d54ebbb67013b75e4916e4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (538218, '0xe3829356f695e2fa6290e2ac09c7c6596fd2c807', 0, 1, '2024-05-06 09:48:21+00', 0, 0, '{"fid": 4383, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94768055-3ff7-479e-2502-3b93e7184e00/original", "profile": {"bio": {"text": "onchain culture learner", "mentioned_profiles": []}}, "username": "pingfeng", "power_badge": true, "display_name": "LilPing", "active_status": "inactive", "verifications": ["0x5ef86da9ed0fc7b54d0cd96b767f2891373718a5"], "follower_count": 1437, "custody_address": "0xc4727a312627d24324c78bb31029ca5fa581aa36", "following_count": 1080, "verified_addresses": {"eth_addresses": ["0x5ef86da9ed0fc7b54d0cd96b767f2891373718a5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbo/resenaren?referral=0x5ef86da9ed0fc7b54d0cd96b767f2891373718a5\"}"}', 'dekodemodoor'), - (665637, '0xad8c8caca6ed9b1caed6b65d87ba9abfe47f07cd', 0, 1, '2024-05-06 15:22:57+00', 0, 5, '{"fid": 492127, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fa4a390-63a9-46eb-5731-20e90d8ecd00/rectcrop3", "profile": {"bio": {"text": "Art\nCrypto💵\n", "mentioned_profiles": []}}, "username": "artmaryam23", "power_badge": false, "display_name": "artmaryam23", "active_status": "inactive", "verifications": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "follower_count": 339, "custody_address": "0xcf3027475526895b40fdca8451eda15a8f665417", "following_count": 489, "verified_addresses": {"eth_addresses": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/ocean-eyes?ref=clipboard&p=a&c=0&si=a290cb2655e84861b33bfaeec312c189&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (680749, '0x91a92967a923692bab35ee9e684c2debd3295cdd', 0, 1, '2024-05-06 16:26:19+00', 0, 1, '{"fid": 413505, "object": "user", "pfp_url": "https://i.imgur.com/Qs5haUX.jpg", "profile": {"bio": {"text": "i''m the king of the world", "mentioned_profiles": []}}, "username": "teetr", "power_badge": false, "display_name": "teetr", "active_status": "inactive", "verifications": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "follower_count": 1273, "custody_address": "0x210e5c9b953144bcc69a2d4f9e46ca20a08f2c3f", "following_count": 1288, "verified_addresses": {"eth_addresses": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Yta37DoWpBLkyy5w9\"}"}', 'sonata'), - (723380, '0xf18036670e3861d86b2c8b25e3a5e354890d1027', 0, 1, '2024-05-06 20:19:40+00', 0, 0, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1353, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1480, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/teDRtdNTQcHEzHLT8\"}"}', NULL), - (693781, '0x3aa15b5a23b635dde33baf1f59804d430ff62a50', 0, 1, '2024-05-06 17:42:25+00', 0, 3, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖💎🎶", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1244, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nkofEzTuLSmhrrBB6\"}"}', 'sonata'), - (731053, '0xd88a40ed321f2157bbebb428e17daa794df11188', 0, 1, '2024-05-06 21:03:27+00', 0, 0, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2111, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2661, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1Gc9s\"}"}', 'sonata'), - (668880, '0x567cd3a42f8354437decfc1d5bc42f14d91639fe', 0, 1, '2024-05-06 15:36:50+00', 0, 8, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 360, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 333, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LrPFt\"}"}', 'sonata'), - (671614, '0x00510020d203d2c93b3d8b50b0cf60aceb184ed5', 0, 1, '2024-05-06 15:48:23+00', 0, 0, '{"fid": 331263, "object": "user", "pfp_url": "https://i.imgur.com/dg2UHVb.jpg", "profile": {"bio": {"text": "music made for getting lost", "mentioned_profiles": []}}, "username": "greenring", "power_badge": false, "display_name": "Green Ring", "active_status": "inactive", "verifications": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "follower_count": 35, "custody_address": "0xf9ae5ec1430d9cb32339a719e9682b0b2411c123", "following_count": 132, "verified_addresses": {"eth_addresses": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/christianloeffler/felt-feat-henry-green\"}"}', NULL), - (665639, '0x101fb4ea0b8d310e98da5c308ec199d425ea75c3', 0, 1, '2024-05-06 15:23:25+00', 0, 0, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 48, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x4b1679f20a4a1b7f848ea12497b210f4791f4ac6&referral_source=link\"}"}', NULL), - (716611, '0x28e00f7d880cbb98bfefc2f5a5d5d74b36f99f90', 111, 1, '2024-05-06 19:27:31+00', 0, 9, '{"fid": 357083, "object": "user", "pfp_url": "https://i.imgur.com/ozqDeqp.jpg", "profile": {"bio": {"text": "\nsmile", "mentioned_profiles": []}}, "username": "cryptographmeet", "power_badge": false, "display_name": "Miss Y", "active_status": "inactive", "verifications": ["0x6431d287a715ca9d5b26831da1724b32e6d65000"], "follower_count": 682, "custody_address": "0x4356bf733cb2c3046dc2b4c246f8d0b62212f59b", "following_count": 924, "verified_addresses": {"eth_addresses": ["0x6431d287a715ca9d5b26831da1724b32e6d65000"], "sol_addresses": ["6b1nszegAzSsrjXovxaEdwvvRSgcEm1nKvm5EEVyMC9r"]}}', '{"{\"url\":\"https://on.soundcloud.com/rvPipiYH5eyzkKAG8\"}"}', 'musick'), - (665410, '0x6e1d21b2e607c9626bd62c68ab88e95bfa4fb5b6', 0, 1, '2024-05-06 15:21:18+00', 0, 8, '{"fid": 291140, "object": "user", "pfp_url": "https://i.imgur.com/Xwdx5DY.gif", "profile": {"bio": {"text": "F4F 몽말인디 알디?😊\nDrakula 👇 👇 👇 \nhttps://drakula.app/user/9bro\n", "mentioned_profiles": []}}, "username": "9bro", "power_badge": false, "display_name": "9rohem", "active_status": "inactive", "verifications": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "follower_count": 2901, "custody_address": "0xa6c71b45173d0ef675c910a85afefa539a69b101", "following_count": 1980, "verified_addresses": {"eth_addresses": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fxawurfdyrwq/jannabi?si=f89c83f96a184bf999248becf9edb841&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (646439, '0xa657119f6070b7711f38e5aab2664e7ad04136e5', 0, 1, '2024-05-06 14:23:56+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CvM6yx7Mg9qFd4n16\"}"}', NULL), - (681399, '0xc05f0a421cfa32f1e0a4183add22acf2567cea8c', 0, 1, '2024-05-06 16:31:07+00', 0, 4, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2527, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LnLQn\"}"}', 'sonata'), - (660278, '0x886a9c9795feda93943a253d39502e11de001f40', 0, 1, '2024-05-06 15:01:39+00', 0, 2, '{"fid": 501169, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a5e704c-06c8-48ca-ec18-588c83ac3700/rectcrop3", "profile": {"bio": {"text": "Top Amateur", "mentioned_profiles": []}}, "username": "haejing", "power_badge": false, "display_name": "haejing🎩🍖", "active_status": "inactive", "verifications": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "follower_count": 1237, "custody_address": "0x68ea6421d2795e06f41e54fe856b8ab596127379", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qMDfpj6VMazPiM3N7\"}"}', NULL), - (477412, '0xc17547ebdac4e0059776a9cf5ff4c7b4945be551', 0, 1, '2024-05-06 07:22:24+00', 0, 2, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 243, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/beats-by-abunai-02?referral_source=link\"}"}', 'soundxyz'), - (677876, '0xf65a2361dd1b8a03b1bcb6976e74d66e2ec22b94', 0, 1, '2024-05-06 16:15:43+00', 0, 6, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1218, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 972, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KThbVdOoIgqcR9VmCEVx7?si=947f5ac011af4539\"}"}', NULL), - (607331, '0x6edf7c07965bfa942ea1bcb1570cd5dfb32b417a', 0, 1, '2024-05-06 10:07:57+00', 0, 1, '{"fid": 194233, "object": "user", "pfp_url": "https://i.imgur.com/68Af7up.jpg", "profile": {"bio": {"text": "Solo Investor\nDeFi Farmer\nDegen explorer ", "mentioned_profiles": []}}, "username": "oxcryptopanda", "power_badge": true, "display_name": "CryptoPanda🎩", "active_status": "inactive", "verifications": ["0x0bebe2165de412e7925ab8352e36f3b0493dd3b9"], "follower_count": 662, "custody_address": "0x8765805e0c6aa73dbc9c4fe2cf94560bb4ecd142", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x0bebe2165de412e7925ab8352e36f3b0493dd3b9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/oagmi-odegen?referral=0x0bebe2165de412e7925ab8352e36f3b0493dd3b9&referral_source=link\"}"}', NULL), - (664342, '0x93182588d7787f54fba7d037fd829fe876ebb68c', 0, 1, '2024-05-06 15:14:55+00', 0, 0, '{"fid": 337368, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cdd034db-2a0e-4ff2-c591-804efb07b300/original", "profile": {"bio": {"text": "more higher\nstart in base", "mentioned_profiles": []}}, "username": "vnell", "power_badge": false, "display_name": "higherHP", "active_status": "inactive", "verifications": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "follower_count": 1461, "custody_address": "0x48563f7a04fd1a800a63150d4ba595a3491aa84b", "following_count": 1643, "verified_addresses": {"eth_addresses": ["0x3948de9202618df3f9e5b84be746af505b523a6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lpspedro/come-back-home?in=cecil-torres-775514032/sets/2ne1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (606389, '0x3cc92eb7d957e78cc691b12830eece8cce0ed8a6', 0, 1, '2024-05-06 12:49:51+00', 0, 13, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1301, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 1999, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7GVUmCP00eSsqc4tzj1sDD?si=5ae09b397918486c\"}"}', 'sonata'), - (669498, '0x74d02066390046c8d4c412194bfe93fefd04f00d', 0, 1, '2024-05-06 15:40:32+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 133, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 161, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/collectivesoulmusic/shine\"}"}', NULL), - (660273, '0x908952597a8439bd1474ccd01d26618eebd38e8a', 0, 1, '2024-05-06 15:01:08+00', 0, 6, '{"fid": 473996, "object": "user", "pfp_url": "https://i.imgur.com/fNZgWUc.jpg", "profile": {"bio": {"text": "야식 가즈아~!!\n$ DEGEN / 조대리! 팔로우 해주시면 찾아가 3종 은혜 보답합니다! \nFollow me, A Degener always pays his debts", "mentioned_profiles": []}}, "username": "im-hayden", "power_badge": false, "display_name": "Go DEGEN", "active_status": "inactive", "verifications": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "follower_count": 1048, "custody_address": "0xe7887f54262b587dd1f1ee1ac5130b1a7da87682", "following_count": 1136, "verified_addresses": {"eth_addresses": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U6PHMVRHv5UrLnQJA\"}"}', 'sonata'), - (619725, '0xf54b9959c3c84c810a10601f50a62bb9b70df81a', 0, 1, '2024-05-06 13:30:20+00', 0, 4, '{"fid": 503284, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d596ed7e-c85c-4777-1fd4-a3e5e520be00/rectcrop3", "profile": {"bio": {"text": "/healing-archive Photography | film | cat lover ", "mentioned_profiles": []}}, "username": "irohaa", "power_badge": false, "display_name": "irohaa𑁤📸🐱", "active_status": "inactive", "verifications": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "follower_count": 626, "custody_address": "0xcfc2606c3651b7513908e59dcb4538d03093ddb7", "following_count": 807, "verified_addresses": {"eth_addresses": ["0x2b2e658eb0ee41677b79e614fe961feed23f1d2c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Rp8ptCpxsdmC3O4LSsJZg?si=My6w69PFQEy9g-tRWigYug\"}"}', 'sonata'), - (679598, '0xf4538ea2b25933eae82610a4b4fad34d306523c5', 0, 1, '2024-05-06 16:20:27+00', 0, 0, '{"fid": 219069, "object": "user", "pfp_url": "https://i.imgur.com/j2SXQEV.png", "profile": {"bio": {"text": "🎩 🍖", "mentioned_profiles": []}}, "username": "vietnd1201", "power_badge": false, "display_name": "Vietdart.eth 🎩 🔵 🍖 🐹", "active_status": "inactive", "verifications": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "follower_count": 359, "custody_address": "0x21f73438f3b1b00374054725a1c0d606831ecda9", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "sol_addresses": ["EuKhNC1Xqmmegj4AxxgqzzHSDPLYDDn29Aie2XKtXztA"]}}', '{"{\"url\":\"https://www.sound.xyz/vividfeverdreams/unseen-angelbaby-vivid-fever-dreams-remix\"}"}', NULL), - (698030, '0x76378300e47f509b342b7b51f6509435ac6d1279', 0, 1, '2024-05-06 17:58:19+00', 0, 5, '{"fid": 4316, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/GBtzV5Z6K8KhrFXQ5i3dseG4Jjamaa2UUtsHfmEE7K-CRd1cnR195zXb_TGKwQSrM95TQXZm-7wZ_bm7fphpP4SczsNHLxJrnhv_4c4", "profile": {"bio": {"text": "Jake (not from State Farm) // community @ courtyard.io\n // sneakerhead // guitar aficionado // xoogler", "mentioned_profiles": []}}, "username": "spin", "power_badge": true, "display_name": "chefspin 🎩", "active_status": "inactive", "verifications": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "follower_count": 817, "custody_address": "0xcaeaab4f1e1c662518456b28e0096b6b9026e4a4", "following_count": 462, "verified_addresses": {"eth_addresses": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2qSkIjg1o9h3YT9RAgYN75?si=334b751bced5445a\"}"}', 'bangers'), - (647465, '0x9dcece7a00373e74bc1b1e8afbcdd1d391f0ae63', 0, 1, '2024-05-06 14:27:37+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-eunon/sets/study-symphonies?si=3c41124bbb6a4980badc756fd8fbd6e2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (647220, '0xef758ca78d088effeea5efb61ff33a211fec7cc7', 0, 1, '2024-05-06 14:26:44+00', 0, 5, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 599, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 703, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fvczvraplnmf/cmvd5mpddul4?si=52f29e7f41414e3cb773b095ff4b229d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (665781, '0x58a483435ffb44600d38f1b30f0830be5bb13786', 0, 1, '2024-05-06 15:25:23+00', 0, 1, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1112, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1154, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ENb1q\"}"}', 'sonata'), - (647241, '0x8274bff75b92e1e79cebd14b608517947128bdc0', 0, 1, '2024-05-06 14:26:47+00', 0, 6, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2527, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iNBUX\"}"}', 'sonata'), - (647483, '0xa8740c63b582a8e27892e799cffb203e83486640', 0, 1, '2024-05-06 14:28:24+00', 0, 2, '{"fid": 499881, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e49f02d2-a431-4686-8a7d-c892deb0a400/rectcrop3", "profile": {"bio": {"text": "crypto, design, cat, anime, jelly", "mentioned_profiles": []}}, "username": "ha-ri-bo", "power_badge": false, "display_name": "Haribo🍭", "active_status": "inactive", "verifications": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "follower_count": 783, "custody_address": "0xa276999a2aa7d23d74589378094f7ac37ae3f0e1", "following_count": 1531, "verified_addresses": {"eth_addresses": ["0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tartagliyah/whatever-neru-z5-ft-kagaminerin-kagaminelen?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (671917, '0xbfe7f8db0d60c8934ecf9fedfeaa2b07ca0ca077', 0, 1, '2024-05-06 15:49:29+00', 0, 5, '{"fid": 501935, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/139ad2dc-7123-4e00-9f52-a2bd4c5b9100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "wooks", "power_badge": false, "display_name": "Wook2", "active_status": "inactive", "verifications": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "follower_count": 447, "custody_address": "0xd31122b0fa655a356ff107934a8e7a0a470fdcc9", "following_count": 567, "verified_addresses": {"eth_addresses": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/will-debar/dan-dan-kokoro-hikareteku-dragon-ball-gt-op?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (650945, '0x5a9f992f8b568cce1d993d901fcfd8afbd5a70e1', 0, 1, '2024-05-06 14:37:44+00', 0, 7, '{"fid": 7464, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05ea92c3-831e-492e-6ae7-890cdfcea200/rectcrop3", "profile": {"bio": {"text": "CVO | guitarist, songwriter, art enjoyoor extraordinaire 🎸@Wakefield | making /demo | holler at a player if you see him in the streets ", "mentioned_profiles": []}}, "username": "spitfunkolips", "power_badge": true, "display_name": "spitfunkolips🎩", "active_status": "inactive", "verifications": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "follower_count": 2670, "custody_address": "0xe1b5dec4da876ca281ffe750fa136cc07314ba0c", "following_count": 918, "verified_addresses": {"eth_addresses": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "sol_addresses": ["ErnvsV8C7GNLjog5FX1km5NpaGfoWDrzbYpYLX91XQQ1"]}}', '{"{\"url\":\"https://open.spotify.com/track/3Qy3NPXBVXPlWMUgwdMjLN?si=G2-N0apPR76aOHlXCvy-jQ&context=spotify%3Aalbum%3A3uej1yRvczYyehQn4pOql1\"}"}', NULL), - (671919, '0x41ec169b160627abcbaec813a69ed8712970ae1d', 0, 1, '2024-05-06 15:50:04+00', 0, 12, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1222, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1394, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WZy24\"}"}', 'sonata'), - (647559, '0x4dac86dabef4fc855f19d697cf39951c2e7db2f4', 0, 1, '2024-05-06 14:28:57+00', 0, 6, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2368, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2263, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/D9MK5J99bd2o4sht8\"}"}', 'sonata'), - (580932, '0x166133efc8dc5ea9c8736d7af62fddf1e8f38b07', 0, 1, '2024-05-06 12:01:06+00', 0, 37, '{"fid": 511517, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/19dfe89e-22a3-453c-72a6-a51cdb328a00/rectcrop3", "profile": {"bio": {"text": "I love nature and music\nI love to travel new place", "mentioned_profiles": []}}, "username": "!511517", "power_badge": false, "display_name": "MohiKh", "active_status": "inactive", "verifications": ["0x7feca2da87cd20c5e040ee142f15e993d88e91a7", "0x7feca2da87cd20c5e040ee142f15e993d88e91a7"], "follower_count": 301, "custody_address": "0x51d58762532edc535b082e0c03db2b2eb2355ce9", "following_count": 663, "verified_addresses": {"eth_addresses": ["0x7feca2da87cd20c5e040ee142f15e993d88e91a7", "0x7feca2da87cd20c5e040ee142f15e993d88e91a7"], "sol_addresses": ["AXir98Y4Y89GZuLjPpHGf2nmS8xX7byJsi8CFjkicshh", "AXir98Y4Y89GZuLjPpHGf2nmS8xX7byJsi8CFjkicshh"]}}', '{"{\"url\":\"https://open.spotify.com/track/6CcJMwBtXByIz4zQLzFkKc?si=bOf3s1IJTMWBMCqWaAh_vg\"}"}', NULL), - (680750, '0xb5ddb028edd84b9ef3e5b874e3dd55c7218eaf1c', 0, 1, '2024-05-06 16:26:28+00', 0, 4, '{"fid": 503541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7bd157f-1901-484d-4e68-9a2d9c7abe00/rectcrop3", "profile": {"bio": {"text": "✔️소소한 일상공유✔️소소한 행복🍀 \n\n✔️The best is yet to come🔥", "mentioned_profiles": []}}, "username": "jmggang", "power_badge": false, "display_name": "PassionJM", "active_status": "inactive", "verifications": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "follower_count": 889, "custody_address": "0x3e587e88dca50b6e3f0b99f2645fefbb283ebe7d", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/52HCcrEK8CHpQhhA9\"}"}', 'sonata'), - (669846, '0x4a9635fd07fd3369f18c35faac532820274c62c4', 0, 1, '2024-05-06 15:41:59+00', 0, 10, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4921, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2465, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-647116590/mlhknwlvwr7d?si=d255c9bfdd914c259462f4a607e476d8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (679619, '0xccaf1b1e56883b3e4851d3441950adcb62705ac7', 0, 1, '2024-05-06 16:21:33+00', 0, 3, '{"fid": 413505, "object": "user", "pfp_url": "https://i.imgur.com/Qs5haUX.jpg", "profile": {"bio": {"text": "i''m the king of the world", "mentioned_profiles": []}}, "username": "teetr", "power_badge": false, "display_name": "teetr", "active_status": "inactive", "verifications": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "follower_count": 1273, "custody_address": "0x210e5c9b953144bcc69a2d4f9e46ca20a08f2c3f", "following_count": 1288, "verified_addresses": {"eth_addresses": ["0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jXGHJGLyCS5RTVhr7\"}"}', 'sonata'), - (699549, '0x032cfbf3d79d997a978f88ea4ed9ad3cc7684680', 20, 1, '2024-05-06 18:01:06+00', 0, 7, '{"fid": 427338, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6cb8340a-2389-4f3b-bd9c-e60d55442d00/rectcrop3", "profile": {"bio": {"text": "Crypto is full of opportunities🐋", "mentioned_profiles": []}}, "username": "pezhi", "power_badge": false, "display_name": "Fury🍖🎩🔮", "active_status": "inactive", "verifications": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "follower_count": 701, "custody_address": "0xb2f39486457bd1831af3b50c1367bbdff9c8770a", "following_count": 1165, "verified_addresses": {"eth_addresses": ["0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ja1koby/late-valentines-jontae-mix-by?si=b33b1c14b05a4a40b3ab6ffa43a09a09&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (679621, '0x0aa96a2357a40f5dfdc366a5d12b0b44634811a9', 0, 1, '2024-05-06 16:21:32+00', 0, 1, '{"fid": 407281, "object": "user", "pfp_url": "https://i.imgur.com/ujCy6Yx.jpg", "profile": {"bio": {"text": "리액션 끝까지 찾아가요 / 댓글 하나하나 다 찾아내요", "mentioned_profiles": []}}, "username": "yeonn", "power_badge": false, "display_name": "Kakashi", "active_status": "inactive", "verifications": ["0x085b88ef607cc3978b91f9317591f9f2aef5992e"], "follower_count": 3352, "custody_address": "0x261bf95b130d0b4a83417338d9a6c825d6b5e9d8", "following_count": 2421, "verified_addresses": {"eth_addresses": ["0x085b88ef607cc3978b91f9317591f9f2aef5992e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/P7NBn\"}"}', 'sonata'), - (661227, '0xef5dd9b2b772640eea2e9bf2cca3288d7b81d56b', 0, 1, '2024-05-06 15:04:22+00', 0, 1, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1062, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/57f4ZVirDRQ6J83b8\"}"}', NULL), - (620897, '0x6bdbeb7cbdd81cde3ea9666afd884d2fa288f378', 0, 1, '2024-05-06 13:34:34+00', 0, 0, '{"fid": 360601, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce1536d0-c296-4767-59ad-4b3444596200/original", "profile": {"bio": {"text": "Normie end user, here to support the homies and creatives. Collective noun #67 ⌐◨-◨ 🔵🟡🟣", "mentioned_profiles": []}}, "username": "loudman.eth", "power_badge": true, "display_name": "Loudman⌐◨-◨🎩🔵🟡", "active_status": "inactive", "verifications": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "follower_count": 1400, "custody_address": "0x37ca8875540d99ace5f8ab1d5990e30277c0f3b4", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/65yq4dInieWeLGqU8bc54f?si=bIEfKKEKSYugFvd6oxo4IQ\"}"}', NULL), - (646574, '0x56a1076abf51b230984168c785173ac675faba79', 0, 1, '2024-05-06 14:26:03+00', 0, 1, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 79, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-eunon/sets/background-house?si=440286a307c6493ca2d6cc330adc99c0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (668218, '0x2812056508502df9ac3264d0c216a8f96a69c10e', 0, 1, '2024-05-06 15:33:27+00', 0, 1, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 404, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0UaaFmF3xUwMjnuAHBq7qL?si=jUkXu8G2SM-J0AfLux0Dyw\"}"}', NULL), - (694158, '0xc50c02fb07006579b794e262311be2529baebd4b', 1000, 1, '2024-05-06 17:43:15+00', 26, 1, '{"fid": 187825, "object": "user", "pfp_url": "https://i.imgur.com/0JctW29.png", "profile": {"bio": {"text": "Software engineer | music lover | host of Prog Rock channel /progrock", "mentioned_profiles": []}}, "username": "kennyjacobson", "power_badge": false, "display_name": "Kenny Jacobson", "active_status": "inactive", "verifications": ["0xf63b3ce2d038f11ca4fc5e11265b7b4417a16adc", "0xef3e26ab66d21f16a575299e5154b8f07d2eb5e7", "0xf54227dc7869c0cd4e8556540c71ff7e3c18a0b7"], "follower_count": 136, "custody_address": "0x3aa13de6a6949f8c52ac9cf5e5d127c695272932", "following_count": 156, "verified_addresses": {"eth_addresses": ["0xf63b3ce2d038f11ca4fc5e11265b7b4417a16adc", "0xef3e26ab66d21f16a575299e5154b8f07d2eb5e7", "0xf54227dc7869c0cd4e8556540c71ff7e3c18a0b7"], "sol_addresses": ["3UEpdbSAyUnQNwdg3zikf2AJsiYrH3uVsf2bocnU7Xtc"]}}', '{"{\"url\":\"https://soundcloud.com/kennyjacobson/how-could-i-say-no\"}"}', NULL), - (665780, '0x97328c785ea254216ad528ec502198a0d750632e', 0, 1, '2024-05-06 15:25:09+00', 0, 2, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 300, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 508, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/2yq3M3snnyltENYlYw8c8B?si=M6UK3vSAT52prdCWL2Ydrg\"}"}', 'musicjp'), - (661230, '0x5054d115cffdc34f9eb3f9473300d43deb18949e', 0, 1, '2024-05-06 15:04:45+00', 0, 4, '{"fid": 428262, "object": "user", "pfp_url": "https://i.imgur.com/fsMvnig.jpg", "profile": {"bio": {"text": "\n\n\nLove 🩷♥️❤️\n\nTravel \n\n\nFood \n\n⛳️⛵️🏝📘", "mentioned_profiles": []}}, "username": "boha0106", "power_badge": false, "display_name": "Boha 🩷 🎩🍖", "active_status": "inactive", "verifications": ["0x161796d461324f30db0d0302ae77f5c5fc72dca3", "0x161796d461324f30db0d0302ae77f5c5fc72dca3"], "follower_count": 3108, "custody_address": "0x00dc37299aafc80258f2b940fab25e99b645ad8e", "following_count": 2826, "verified_addresses": {"eth_addresses": ["0x161796d461324f30db0d0302ae77f5c5fc72dca3", "0x161796d461324f30db0d0302ae77f5c5fc72dca3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Zs7wq\"}"}', 'sonata'), - (666001, '0x213b8a705064ec8290561870f4c8bb359202b815', 0, 1, '2024-05-06 15:25:49+00', 0, 0, '{"fid": 507797, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7ea2a2ac-aab7-4b3c-e917-f87e40e5c600/rectcrop3", "profile": {"bio": {"text": "Maybe a crypto lover?\nA little bit of Sport and Cars\nAnd huge fan of music", "mentioned_profiles": []}}, "username": "!507797", "power_badge": false, "display_name": "Poyan🍖🎩", "active_status": "inactive", "verifications": ["0x22ea4731864645fa33be4af06bc0cd6bc942adc6"], "follower_count": 153, "custody_address": "0x22ea4731864645fa33be4af06bc0cd6bc942adc6", "following_count": 336, "verified_addresses": {"eth_addresses": ["0x22ea4731864645fa33be4af06bc0cd6bc942adc6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/theweeknd/the-weeknd-playboi-carti-1?in=theweeknd/sets/popular-36643935&si=177b5c89b075482bbb068d7a9d5673d0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (634875, '0x14fb24c2da46936e0abcbec5396b6dfc2290796d', 0, 1, '2024-05-06 14:01:12+00', 0, 7, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "follower_count": 670, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Lvc9SbPc0svm9TEoMgFzB?si=jYF14VY7TzGLEpCoh_vtIA\"}"}', 'sonata'), - (647676, '0xca9a415bde571184b9d732f5f07d5f02fe59eae8', 0, 1, '2024-05-06 14:30:37+00', 0, 5, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 371, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 163, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1mz3jQl0nEpyLTCYc9WVVV?si=682c1ed6bf1a4be9\"}"}', NULL), - (648158, '0xd604706444db7b2f9a51f35c3dfd7754d319d6c8', 0, 1, '2024-05-06 14:32:47+00', 0, 3, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 798, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 1317, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HWxM7g5apipKVz6Y7\"}"}', 'sonata'), - (699583, '0x4c993e65034dcb944830011a8f1c4f9db6921fde', 0, 1, '2024-05-06 18:00:16+00', 0, 3, '{"fid": 9887, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c0ddbe-0796-46f9-2be0-4b421f0f6200/original", "profile": {"bio": {"text": "Indie, alt-electronic sounds to help cope with society slowly collapsing around us.", "mentioned_profiles": []}}, "username": "vividfeverdreams", "power_badge": false, "display_name": "Vivid Fever Dreams", "active_status": "inactive", "verifications": ["0xc9737651e2a88e2e3e8395ac98b4e3a360733369"], "follower_count": 91, "custody_address": "0xf1d22963f88dc7664a00b6482d9a1f1fb79e26d7", "following_count": 109, "verified_addresses": {"eth_addresses": ["0xc9737651e2a88e2e3e8395ac98b4e3a360733369"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm\"}"}', NULL), - (682740, '0xbdc9072c28ac1c6201ca982cf201e848967255b6', 0, 1, '2024-05-06 16:37:10+00', 0, 5, '{"fid": 411455, "object": "user", "pfp_url": "https://i.imgur.com/j1ngOFQ.jpg", "profile": {"bio": {"text": "Sunny Day : )\n맛있게 먹고, 재밌게 살기🎶 ", "mentioned_profiles": []}}, "username": "sunny38", "power_badge": false, "display_name": "Sunny🙂🍖", "active_status": "inactive", "verifications": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "follower_count": 2215, "custody_address": "0x58375c5d74a72693c589764f07423f151dd130bc", "following_count": 1562, "verified_addresses": {"eth_addresses": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1t6dm\"}"}', 'sonata'), - (661924, '0x01de75a5cdae57f094b459dce1719bcf2edf6d5f', 0, 1, '2024-05-06 15:05:30+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1177, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 999, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/921qP9oK7pwMeX4t7\"}"}', 'sonata'), - (706145, '0x803c1a6a77f2478c9fca2bb1ba97d0dd5c565b8f', 0, 1, '2024-05-06 18:23:50+00', 0, 0, '{"fid": 453680, "object": "user", "pfp_url": "https://i.imgur.com/MMMSNVY.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "many", "power_badge": false, "display_name": "Many🎩🔵", "active_status": "inactive", "verifications": ["0xe94aa5e19ebf80c95fd1d55702cfd30c6a1e2248"], "follower_count": 209, "custody_address": "0xc16b6ebdd8773bb3762ade5457ad5abb5b115b58", "following_count": 474, "verified_addresses": {"eth_addresses": ["0xe94aa5e19ebf80c95fd1d55702cfd30c6a1e2248"], "sol_addresses": ["5R8UqJviPaqM9vMYHbeKu42UHBGUz9GwWY8Nr9XQbbVh"]}}', '{"{\"url\":\"https://soundcloud.com/trending-music-nord/sets/soundcloud?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (679640, '0xe6249ff7547439032836d117468a62339d90853e', 0, 1, '2024-05-06 16:21:47+00', 0, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "\nhttps://www.alfafrens.com/channel/0x626ea7aa69a420333c70cd2d96f8b44cc05984c0", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩⛓️‍💥", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 245, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 79, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/6MlM7j7otOKpa0jFi8htxm?si=7b9ccdfffcac46ff\"}"}', NULL), - (706477, '0xebe19843200a9e20013ed6ccad078b231f9d6283', 0, 1, '2024-05-06 18:25:28+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 493, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 569, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3ZOEytgrvLwQaqXreDs2Jx?si=iI-C83z4QHyIYh52HMo3_g\"}"}', NULL), - (756485, '0x7f653d4a7e6d580d5c4be88eed4006520217f18d', 0, 1, '2024-05-06 23:54:42+00', 0, 3, '{"fid": 502476, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c8d4e8b-0ab8-4153-fdf3-ea037d4ce100/rectcrop3", "profile": {"bio": {"text": "💓/ happiness will come:)", "mentioned_profiles": []}}, "username": "yejinlee0504", "power_badge": false, "display_name": "jinjin_ing🎩", "active_status": "inactive", "verifications": ["0x804100c300269fde9b93862b089e3db9add7a69a"], "follower_count": 758, "custody_address": "0xcd4dc39422f20cb84e20d2ab2799a27e0319ff6a", "following_count": 713, "verified_addresses": {"eth_addresses": ["0x804100c300269fde9b93862b089e3db9add7a69a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hCUiAG2GDcGxZqxBA\"}"}', 'sonata'), - (682012, '0xb80098f902f7eb263e56f82dbdef48a4ec08f6fc', 0, 1, '2024-05-06 16:34:54+00', 0, 4, '{"fid": 238853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a59d05-ac7c-4a6b-f4d3-0b52f78f9b00/original", "profile": {"bio": {"text": "bringing culture onchain. creating virtual artists. building @hume.", "mentioned_profiles": []}}, "username": "db3045", "power_badge": true, "display_name": "DavidBeiner", "active_status": "inactive", "verifications": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "follower_count": 867, "custody_address": "0xde3cea5bb06f5d18d92a827f0ace525bc714963a", "following_count": 367, "verified_addresses": {"eth_addresses": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/deathpixie/releases\"}"}', 'louder'), - (700330, '0xcd7a735a2554330bea84189e432858e8f8be78eb', 12020, 1, '2024-05-06 18:03:28+00', 0, 22, '{"fid": 376591, "object": "user", "pfp_url": "https://i.imgur.com/26ogZqN.jpg", "profile": {"bio": {"text": "I work hard to fulfill my dreams. ", "mentioned_profiles": []}}, "username": "saadat2026", "power_badge": false, "display_name": "Zahra79", "active_status": "inactive", "verifications": ["0x0b023c4da4065013413220917f651395e1fbf8ef"], "follower_count": 1620, "custody_address": "0x110d4f5671b3b47272baefaed6fdb6e75f23cb43", "following_count": 1506, "verified_addresses": {"eth_addresses": ["0x0b023c4da4065013413220917f651395e1fbf8ef"], "sol_addresses": ["ADi5ywaaQQxqKdfJ3e2XE4aRwkvjTY7eA3p7bbwf6Qoq"]}}', '{"{\"url\":\"https://on.soundcloud.com/fJhZWCxF4GTq1FQ96\"}"}', 'sonata'), - (785959, '0x2bf9b1f36bfd7d8382e7cbc90690104f272ecdcd', 0, 1, '2024-05-07 02:29:54+00', 0, 1, '{"fid": 451020, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fde0d73-4c85-4312-74d9-f28495450b00/original", "profile": {"bio": {"text": "Love Ocean, Sky, Star and IU.\nEnjoy Zora and Warpcast. \nHAM, Perl and Farcast. 🎩 🍖 ↑", "mentioned_profiles": []}}, "username": "eomeo8303", "power_badge": false, "display_name": "Ocean 🎩🍖↑", "active_status": "inactive", "verifications": ["0xbb9425abb19cd7a35eaa4befe319ddae7857b318"], "follower_count": 1202, "custody_address": "0xb4b216c31f5199e16bcf03b0bbb2a55de86b4fe9", "following_count": 1238, "verified_addresses": {"eth_addresses": ["0xbb9425abb19cd7a35eaa4befe319ddae7857b318"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/M7jUrmim8y99pVoEA\"}"}', NULL), - (699547, '0x78b5a00c4362394a0bbe4bf66b5828be000194df', 50, 1, '2024-05-06 18:00:31+00', 0, 6, '{"fid": 393047, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d466d08e-47ce-4a92-cb7c-04a1e2cfa600/original", "profile": {"bio": {"text": "Otter is my fren 🦦💜 | Crypto 💰 | Funny art 🎨 | Pro-warpcaster ♾️ | Loving people who have a sense of humor 👑 ", "mentioned_profiles": []}}, "username": "seaotter-queen", "power_badge": false, "display_name": "Sea otter🦦💜 ", "active_status": "inactive", "verifications": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "follower_count": 3117, "custody_address": "0xd338d15b6526fce37a0ce3a1a046200ea3bd9e7a", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0x78f06e9d837688443a97afd0f7507c29aae03655"], "sol_addresses": ["8eqT4DEY5foT9DMNhCFqGPYi7MnWo893XQFNxJnsyYPx"]}}', '{"{\"url\":\"https://soundcloud.com/user-956334953/coldplay-viva-la-vida?si=07bcdd6684e240c694a98fce837adcc9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (670377, '0xd6a713eedb8ef21503f6f0d67c58575064e60d57', 0, 1, '2024-05-06 15:42:59+00', 0, 2, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1273, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1158, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0l5rXZLcYqSt1f4ROEOzCW?si=ffab0af5463f4b32\"}"}', NULL), - (654045, '0x2bc6647daf5948a6bcbb33a783865bcc9dcde12f', 0, 1, '2024-05-06 14:45:11+00', 0, 1, '{"fid": 7464, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05ea92c3-831e-492e-6ae7-890cdfcea200/rectcrop3", "profile": {"bio": {"text": "CVO | guitarist, songwriter, art enjoyoor extraordinaire 🎸@Wakefield | making /demo | holler at a player if you see him in the streets ", "mentioned_profiles": []}}, "username": "spitfunkolips", "power_badge": true, "display_name": "spitfunkolips🎩", "active_status": "inactive", "verifications": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "follower_count": 2670, "custody_address": "0xe1b5dec4da876ca281ffe750fa136cc07314ba0c", "following_count": 918, "verified_addresses": {"eth_addresses": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "sol_addresses": ["ErnvsV8C7GNLjog5FX1km5NpaGfoWDrzbYpYLX91XQQ1"]}}', '{"{\"url\":\"https://open.spotify.com/track/7jIHUG1tlY3qqk8dZW20v4?si=4ghQwgXjS3e3dXS526AwiQ\"}"}', NULL), - (672569, '0x6a51c00a89f0b8c5f9dc75d16ed08d6fef7a49e4', 0, 1, '2024-05-06 15:55:42+00', 0, 5, '{"fid": 486310, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6071787-b9ac-49a8-f2da-15e311df5e00/rectcrop3", "profile": {"bio": {"text": "F4F 마띠🎩 햄🍖 인간 비타민🍋🍋🍋💛", "mentioned_profiles": []}}, "username": "jennyan", "power_badge": false, "display_name": "J🎩🍋", "active_status": "inactive", "verifications": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "follower_count": 1534, "custody_address": "0xacd0c2b19213be2deaaee6700483b03f545ab108", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/freja-hjerten-johansson/newjeans-get-up-1?si=bb7615f5d7d34ab88863de9fb267891a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (701386, '0x8361b837b89d376dda0ee4fe76a1db2331923c64', 0, 1, '2024-05-06 18:06:15+00', 0, 0, '{"fid": 390759, "object": "user", "pfp_url": "https://i.imgur.com/CtDLiI6.jpg", "profile": {"bio": {"text": "A cool guy", "mentioned_profiles": []}}, "username": "jxtan", "power_badge": false, "display_name": "Jerry Tan", "active_status": "inactive", "verifications": ["0x1e8564a52fc67a68fee78fc6422f19c07cfae198"], "follower_count": 5, "custody_address": "0xe29b2aa447c0b8e69018490579ff262979afa740", "following_count": 75, "verified_addresses": {"eth_addresses": ["0x1e8564a52fc67a68fee78fc6422f19c07cfae198"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3qkFIjYRInFasy2jeDZPgm?si=1549aaa50b3d416c\"}"}', NULL), - (732317, '0xd839a8b5dfbe850dc167bd8fd17da3ed1ab62e20', 0, 1, '2024-05-06 21:14:01+00', 0, 0, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 61, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 43, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up\"}"}', NULL), - (679616, '0xef51071c9ba3a7f7843a46ce8ec0615ab6e78e2b', 0, 1, '2024-05-06 16:20:09+00', 0, 4, '{"fid": 404623, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibnvpblu2ehtow3ydq74ixe7ifbzkbwi2oz6rwx42mlaf5nn52uk4", "profile": {"bio": {"text": "No Risk, No Porsche 911 ", "mentioned_profiles": []}}, "username": "imhassanrezaei", "power_badge": false, "display_name": "Ha$$aN 👽🔄🎩🍖🦄🥷", "active_status": "inactive", "verifications": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "follower_count": 1451, "custody_address": "0xd313785101ba70375b352462cfd38885f02429b6", "following_count": 1703, "verified_addresses": {"eth_addresses": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0dqhaiYYxloVMPaxR7ifB5?si=5XUO85FaRSOTvKMw5ZsJzQ\"}"}', NULL), - (714080, '0x3b62beb65280dda6fd9c79f840f8e118c3a11a65', 3120, 1, '2024-05-06 19:12:22+00', 100, 45, '{"fid": 421585, "object": "user", "pfp_url": "https://i.imgur.com/5LpF8d5.jpg", "profile": {"bio": {"text": "nothing but crypto", "mentioned_profiles": []}}, "username": "th1rt3n", "power_badge": false, "display_name": "dmitry", "active_status": "inactive", "verifications": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "follower_count": 602, "custody_address": "0x1762f00e1642ca50e913595285610358ca4c1903", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "sol_addresses": ["FNLiqWzr8DXDyUYUbxUX4oefZ7ZQ4HzpiCp9j6JB5h2H"]}}', '{"{\"url\":\"https://soundcloud.com/kendrick-lamar-music/euphoria?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (752122, '0x7f0ba325ccb9366231ac279070a013868cbb17aa', 0, 1, '2024-05-06 23:41:17+00', 0, 0, '{"fid": 499287, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45a9e948-eb2b-4019-56c0-40956ba96600/rectcrop3", "profile": {"bio": {"text": "crypto trader\nピュルルルルルゥ!!!", "mentioned_profiles": []}}, "username": "bocchi-crypto", "power_badge": false, "display_name": "bocchi", "active_status": "inactive", "verifications": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "follower_count": 287, "custody_address": "0x634bd6a5e880b1d60699179c21408255e40964b4", "following_count": 351, "verified_addresses": {"eth_addresses": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7vu6jEPJKTXmkcb37\"}"}', 'musicjp'), - (786141, '0xe24f7fad8be3c723565ffe902387eb5db71c28d5', 0, 1, '2024-05-07 02:32:07+00', 0, 0, '{"fid": 512692, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1efd32d1-cca4-4345-0a6b-933f15d44500/rectcrop3", "profile": {"bio": {"text": "Crypto lover, yogini , web 3.0 supporter", "mentioned_profiles": []}}, "username": "!512692", "power_badge": false, "display_name": "Eve", "active_status": "inactive", "verifications": ["0x9e364732b783715384af684d146b7cc5b682b107"], "follower_count": 71, "custody_address": "0x21009b0bad842a5466a44a66127704d93ee1815f", "following_count": 137, "verified_addresses": {"eth_addresses": ["0x9e364732b783715384af684d146b7cc5b682b107"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/doux_nuage/akmu?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (685354, '0x88765a0a8d72b8a64b1a50c6ff1dcd421bb76db4', 0, 1, '2024-05-06 16:49:21+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 493, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 568, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1wYLsHZTwVTfHs4JgqkUCe?si=kO5973NeR32H5C7LTxW-5Q\"}"}', NULL), - (708953, '0x37da09de1cead0efb02019cec9ab8c5a63e4992d', 0, 1, '2024-05-06 18:37:55+00', 0, 1, '{"fid": 326415, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1687c91-1ecd-4d5b-c89b-faa5c76a8a00/original", "profile": {"bio": {"text": "I make psychedelic music and art as Infinati. Sound and soul architect.\nhttps://infinati.wtf", "mentioned_profiles": []}}, "username": "infinati", "power_badge": false, "display_name": "Infinati", "active_status": "inactive", "verifications": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "follower_count": 68, "custody_address": "0xba3bec28da1d9eb0f1a17203a3fb9d607258cf18", "following_count": 208, "verified_addresses": {"eth_addresses": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/infinati/circuit\"}"}', NULL), - (871090, '0x91e1cfec6384318b7578f5fe321d129466aeb5cd', 0, 1, '2024-05-07 05:51:49+00', 0, 2, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 984, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 912, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fkxWfW1qRL2VAAgw5\"}"}', 'sonata'), - (709072, '0x91ce617dddbc3e7949eb109f8c97afa74d058b13', 0, 1, '2024-05-06 18:40:32+00', 0, 1, '{"fid": 499287, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45a9e948-eb2b-4019-56c0-40956ba96600/rectcrop3", "profile": {"bio": {"text": "crypto trader\nピュルルルルルゥ!!!", "mentioned_profiles": []}}, "username": "bocchi-crypto", "power_badge": false, "display_name": "bocchi", "active_status": "inactive", "verifications": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "follower_count": 284, "custody_address": "0x634bd6a5e880b1d60699179c21408255e40964b4", "following_count": 351, "verified_addresses": {"eth_addresses": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yfcXhtnV1BchoKfq9\"}"}', 'musicjp'), - (682566, '0xcb6385f6b8aca216653057408e2a39ccb2c3e125', 0, 1, '2024-05-06 16:35:26+00', 0, 0, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lilyeat/heavy-stunts-feat-don-toliver?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (759581, '0x8281165c7a96006212c2346ba317eddfd39be07d', 0, 1, '2024-05-07 00:04:27+00', 0, 1, '{"fid": 503907, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3d4b7bd-00bc-4f39-7aca-66e2d569e600/rectcrop3", "profile": {"bio": {"text": "diVine inspiration 🌈", "mentioned_profiles": []}}, "username": "amirali1991", "power_badge": false, "display_name": "Nothing😎😎", "active_status": "inactive", "verifications": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "follower_count": 195, "custody_address": "0x114b9f282cd625abc5658a0644e2dd4502337307", "following_count": 809, "verified_addresses": {"eth_addresses": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hzM45jjsNEZVB9249\"}"}', 'sonata'), - (742455, '0x883c509d034cb5894530672572a628a6f350fd23', 0, 1, '2024-05-06 22:41:10+00', 0, 1, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 481, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 771, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LYDPz\"}"}', 'sonata'), - (736341, '0x19173a3f8c2574d237dff3d1ba0cc7c4cc84f955', 0, 1, '2024-05-06 21:58:20+00', 0, 10, '{"fid": 449851, "object": "user", "pfp_url": "https://i.imgur.com/dj1267x.jpg", "profile": {"bio": {"text": "Life is going on,enjoy it\n🧚‍♀️☀️🌊🧘‍♀️\n", "mentioned_profiles": []}}, "username": "baharrp", "power_badge": false, "display_name": "Bahar 🧚‍♀️", "active_status": "inactive", "verifications": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "follower_count": 785, "custody_address": "0x79ac0726a2a7c83c149276836c4900a4c1b9a75a", "following_count": 838, "verified_addresses": {"eth_addresses": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kastilo/strangers?ref=clipboard&p=a&c=0&si=98d2b9991bff444b8d8e9713887ab404&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (781294, '0xf5c09788b1cff734d63676235f0bfd21a8089283', 0, 1, '2024-05-07 01:56:46+00', 0, 2, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1458, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1593, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamescarterpresents/shape-of-you?si=5c9cc11fbb614fbcad00480f37c14518&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (772070, '0x492ec764a4dc28abaa34e27ab5ae96c77dbb866e', 0, 1, '2024-05-07 01:17:53+00', 0, 0, '{"fid": 323324, "object": "user", "pfp_url": "https://i.imgur.com/3JknFA2.jpg", "profile": {"bio": {"text": "/1337 Artsy Geoscientist. High (on weed). You never know which network I’ll be experimenting in. SONG WRITER 📝\nArt💞 @renu 🖼️🎧\nobjkt.com/@rae5555", "mentioned_profiles": []}}, "username": "rae5555", "power_badge": false, "display_name": "Renu 🪄🎩", "active_status": "inactive", "verifications": ["0x2592e904f21ce308249a8ffb25e82e35c69de163"], "follower_count": 168, "custody_address": "0xdc28f684f446115d4f38295bd6c316b45733e93c", "following_count": 314, "verified_addresses": {"eth_addresses": ["0x2592e904f21ce308249a8ffb25e82e35c69de163"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/diljitdosanjh44298/diljit-dosanjh-saweetie-khutti?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (691261, '0x94bd0586fa5eab555e551554ed7ae989f77bcc5b', 0, 1, '2024-05-06 17:26:09+00', 0, 5, '{"fid": 2802, "object": "user", "pfp_url": "https://i.imgur.com/Hf9CCmq.jpg", "profile": {"bio": {"text": "Stay Curious // iixii // Lazer Technologies // CoinDesk", "mentioned_profiles": []}}, "username": "garrett", "power_badge": true, "display_name": "Garrett 🎩↑ᖽ", "active_status": "inactive", "verifications": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "follower_count": 8843, "custody_address": "0xb3b4c5d8a76b33d5db8f94b44444563b9038a7a3", "following_count": 1856, "verified_addresses": {"eth_addresses": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "sol_addresses": ["GBoV4dY33PwzvoTkCaHRwqAsAcBBv9qfgTXexqZBzopk"]}}', '{"{\"url\":\"https://open.spotify.com/track/7fzHQizxTqy8wTXwlrgPQQ?si=_3sUc4DCRTSdAxWlrWHcyQ\"}"}', 'harder'), - (769585, '0x32259fe5beee727e18ace6947038f3f8026c57c5', 0, 1, '2024-05-07 01:01:25+00', 0, 1, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1716, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2952, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lct7H\"}"}', 'sonata'), - (682770, '0xf97adf5b91307375e7c04f58f59dc0273553bd93', 0, 1, '2024-05-06 16:37:52+00', 0, 1, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1432, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 306, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/18c0da98-b2c9-4249-9caa-277450442ad9?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (759568, '0x75b7571d1a3d5b9c0204bfcea0ff2d6932c78fec', 0, 1, '2024-05-07 00:05:11+00', 0, 0, '{"fid": 501956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dfc974c9-092c-4b04-1eee-4d654ffca000/rectcrop3", "profile": {"bio": {"text": "Have a nice day. F4F", "mentioned_profiles": []}}, "username": "snowman7", "power_badge": false, "display_name": "Snow", "active_status": "inactive", "verifications": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "follower_count": 639, "custody_address": "0xa0a8ee605feab4e52ad51887e02672ea0b7cd81c", "following_count": 605, "verified_addresses": {"eth_addresses": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ta2jian-241487429/i90nwp8lkuph?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (742575, '0x6dfae8934a04abccb7f72c000b219a5c8012e6c7', 0, 1, '2024-05-06 22:42:42+00', 0, 4, '{"fid": 503301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd149365-f560-4f73-074e-96f79e694d00/rectcrop3", "profile": {"bio": {"text": "Novice crypto investor |\nWife | CXO @ a startup |\nWork hard play harder!💗", "mentioned_profiles": []}}, "username": "woodrose", "power_badge": false, "display_name": "woodrose", "active_status": "inactive", "verifications": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "follower_count": 1025, "custody_address": "0x40a5d849f9631932cdd264d48cd37289c003afd2", "following_count": 1116, "verified_addresses": {"eth_addresses": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/F6RDFqLECTDhtwT98\"}"}', NULL), - (702811, '0x9bea2a43dffecc359a6b84e548a3feaebb0c503f', 0, 1, '2024-05-06 18:09:24+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 493, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 568, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1HH9AYnSKZaPKgZUGuiDRf?si=LBSA2VS7RiG-jaTyLOTRJg\"}"}', NULL), - (774077, '0xcf9235ff107b407e753c88075094546c69aae99d', 0, 1, '2024-05-07 01:22:39+00', 0, 6, '{"fid": 420117, "object": "user", "pfp_url": "https://i.imgur.com/FtVbAqA.jpg", "profile": {"bio": {"text": "Hi. Have a happy day😀 I want to make a lot of friends😁 ❤️ 초음속 반사🌼 숙제는 미루지않아요 👏 ", "mentioned_profiles": []}}, "username": "elly29", "power_badge": false, "display_name": "Elly", "active_status": "inactive", "verifications": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "follower_count": 2285, "custody_address": "0x9d06907bfcb51d4232ff86c1eb836d8cd00d101f", "following_count": 2300, "verified_addresses": {"eth_addresses": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wta4t\"}"}', 'sonata'), - (538215, '0xe5bdd03d925e4a85e50e3d3f22551f9bfd172f80', 0, 1, '2024-05-06 09:48:33+00', 0, 25, '{"fid": 310815, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef21c6c0-f003-4ed7-2d2f-6d5602b1ef00/rectcrop3", "profile": {"bio": {"text": "Abso-crypto-lutely real cool girl | Lens: alyonushka | Debank: alyonushka | Paragraph: @alyonushka.eth", "mentioned_profiles": []}}, "username": "alyonushka.eth", "power_badge": false, "display_name": "DYOR 🎩 🔵 🐲", "active_status": "inactive", "verifications": ["0x12f8026072fa10a5796deffe7d54b9ea42ff9ccd"], "follower_count": 1237, "custody_address": "0xbb7423cf57459bed8b3649d88039a8e130f7f48d", "following_count": 952, "verified_addresses": {"eth_addresses": ["0x12f8026072fa10a5796deffe7d54b9ea42ff9ccd"], "sol_addresses": ["CqCYyoPPcuTsuBCCiL7CxjRUk3mP6Tp2EeDBb8KQ3he3"]}}', '{"{\"url\":\"https://www.sound.xyz/greyseymour/sonchain-revolution?referral=0x12f8026072fa10a5796deffe7d54b9ea42ff9ccd&referral_source=link\"}"}', NULL), - (673098, '0xe06f9759fd869d88b10e229262f28e98a51ae50a', 0, 1, '2024-05-06 15:57:28+00', 0, 0, '{"fid": 254747, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiefppvss7556msp7qyu5wqtg5nsvg6cww3snqty7jltcgko3j46rm", "profile": {"bio": {"text": "Build My Own Research 🕵‍♂️", "mentioned_profiles": []}}, "username": "fandrop", "power_badge": false, "display_name": "Fandrop", "active_status": "inactive", "verifications": ["0x08a2ac4c8abf3b29d18a33508d333eab9ec29011"], "follower_count": 76, "custody_address": "0x08a2ac4c8abf3b29d18a33508d333eab9ec29011", "following_count": 147, "verified_addresses": {"eth_addresses": ["0x08a2ac4c8abf3b29d18a33508d333eab9ec29011"], "sol_addresses": ["3pkJM8wWZLRSnDFuaSQYcNr1hk4wQ7FoEKUCSbyuUdNZ"]}}', '{"{\"url\":\"http://sound.xyz\"}","{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral=0x08a2ac4c8abf3b29d18a33508d333eab9ec29011&referral_source=link\"}"}', NULL), - (681982, '0x46352bb958c0d8e0a334ae4d492e3544b98078df', 0, 1, '2024-05-06 16:34:42+00', 0, 0, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (707730, '0x454a311617553d7a30dc4bdb55c3853d3c786d44', 0, 1, '2024-05-06 18:35:03+00', 10, 1, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1306, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qay5ptm1bwek/akmu-remix?si=0cf101ef25164bfda15b0c5cb17a3e62&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (731185, '0x9954c8815f62d0c207489333764816e143605d75', 0, 1, '2024-05-06 21:05:57+00', 0, 1, '{"fid": 436790, "object": "user", "pfp_url": "https://i.imgur.com/4sAU5n7.jpg", "profile": {"bio": {"text": "Crypto ", "mentioned_profiles": []}}, "username": "sarabhr", "power_badge": false, "display_name": "Sara", "active_status": "inactive", "verifications": ["0x046c63da46589d3b8241d1acedba1e5e948bf810"], "follower_count": 315, "custody_address": "0x7b6214f8a0bcf36bb50a39ad5cc55a8de514636a", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x046c63da46589d3b8241d1acedba1e5e948bf810"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bdPtmi8vJ4g5oKVz9\"}"}', NULL), - (679892, '0x550a54a433d5970e47b15056baebfd6f43772c90', 0, 1, '2024-05-06 16:23:04+00', 0, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "\nhttps://www.alfafrens.com/channel/0x626ea7aa69a420333c70cd2d96f8b44cc05984c0", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩⛓️‍💥", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 245, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 79, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/76kSIw2pnIwa6STUYXNGQ4?si=c2994072b6fd4857\"}"}', NULL), - (758515, '0xaae8bccd85acdd01d7da382bf4b8a8a0ec6bffce', 0, 1, '2024-05-07 00:01:39+00', 0, 0, '{"fid": 378416, "object": "user", "pfp_url": "https://arweave.net/m84NL03kUMq2EjhKdu6k5yZW-hvdgSL7YkY1wpRpKo8/", "profile": {"bio": {"text": "Medic\nI like warpcast ", "mentioned_profiles": []}}, "username": "amin-phantom", "power_badge": false, "display_name": "Amin 🔄🎩👽🍕", "active_status": "inactive", "verifications": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "follower_count": 1249, "custody_address": "0xbd1ca5951b4cdec1522e3b9a21d2d848d0fc6628", "following_count": 1363, "verified_addresses": {"eth_addresses": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "sol_addresses": ["DWgaBv9RhLQyboeEN1UkPebDz8i7Lz9rtDJADF84bYEC"]}}', '{"{\"url\":\"https://on.soundcloud.com/hhDVDjckZnKHmczc8\"}"}', NULL), - (731187, '0x31895893290fe973fba0763aeda9e50af905faa1', 0, 1, '2024-05-06 21:05:06+00', 0, 0, '{"fid": 504319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d507508-f4b2-404e-8c94-ac8c29b01100/rectcrop3", "profile": {"bio": {"text": "I’m just an ordinary person who likes food, travel and crypto 😀", "mentioned_profiles": []}}, "username": "jaydenoh", "power_badge": false, "display_name": "Jayden", "active_status": "inactive", "verifications": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "follower_count": 446, "custody_address": "0xa3afaf513eeed17783dfb7342f138f8e54fa5644", "following_count": 490, "verified_addresses": {"eth_addresses": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dYHHPwSendSoJzhR9\"}"}', 'sonata'), - (781222, '0xc521e48d3d1f15cd10f4dac3a9e4176ea767c101', 0, 1, '2024-05-07 01:54:49+00', 0, 3, '{"fid": 501914, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b14740fd-c936-4695-d36d-2176896c5200/rectcrop3", "profile": {"bio": {"text": "base/onchain", "mentioned_profiles": []}}, "username": "masch87", "power_badge": false, "display_name": "masch87🎩🦄✅", "active_status": "inactive", "verifications": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "follower_count": 1416, "custody_address": "0xae6ce4dd57535388d8181f11fbc7696244f05ece", "following_count": 1958, "verified_addresses": {"eth_addresses": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-55808555/flower-road-bigbang?si=941586ca0245489091300169f0cca3ea&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (731390, '0x34f4fc2293e059eea67731d983e9de6ea7756f02', 0, 1, '2024-05-06 21:10:03+00', 0, 5, '{"fid": 399724, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNZ7tEXihjCK6C3yPd971zM2xtSpaGz2AiNqjbK38D8nz?filename=7941.png", "profile": {"bio": {"text": "예전보다 의욕이 많이 사라진게 사실이지만 그럼에도 방문해주시면 무조건 답방가겠습니다.", "mentioned_profiles": []}}, "username": "ressentiment", "power_badge": false, "display_name": "WOOJOO", "active_status": "inactive", "verifications": ["0xa8d41cbf189511e7d274b6fe5bbc8c978fb2c439"], "follower_count": 2356, "custody_address": "0xab68c564e748c847e5bc30f10aaa9931aa6556fa", "following_count": 2738, "verified_addresses": {"eth_addresses": ["0xa8d41cbf189511e7d274b6fe5bbc8c978fb2c439"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chldpdnjs091/piano-ver-mp3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (714077, '0xc62fb461a3b959506995e62716ac3fb5f57fb9e0', 1110, 1, '2024-05-06 19:12:38+00', 113, 51, '{"fid": 401736, "object": "user", "pfp_url": "https://i.imgur.com/fi9yxl1.jpg", "profile": {"bio": {"text": "/book-reader\nBe beautiful in your own way\n\n", "mentioned_profiles": []}}, "username": "yasamannn79", "power_badge": false, "display_name": "Yasi🎩 🔄", "active_status": "inactive", "verifications": ["0x7e19f07a79f7efa7c4793289bf750cab8f5d8231"], "follower_count": 4442, "custody_address": "0x1c18aa7240537a452c59fd01f30261f3a4e9c025", "following_count": 4906, "verified_addresses": {"eth_addresses": ["0x7e19f07a79f7efa7c4793289bf750cab8f5d8231"], "sol_addresses": ["Tpy2DefjKFVsRMJa3TSJdTM8USVeFpigMSf5XS5SGRm"]}}', '{"{\"url\":\"https://soundcloud.com/taylorswiftofficial/love-story-taylors-version\"}"}', NULL), - (769583, '0x28eabc9972439b5f0792dba14b53c59ac25988c0', 0, 1, '2024-05-07 01:01:36+00', 0, 0, '{"fid": 508994, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88e8affe-168c-4a7c-af54-a1639826d600/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!508994", "power_badge": false, "display_name": "Roland🎩⛓️", "active_status": "inactive", "verifications": ["0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe", "0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe"], "follower_count": 487, "custody_address": "0x27d5137c54adb3b215bd01096551972cd3c0a408", "following_count": 947, "verified_addresses": {"eth_addresses": ["0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe", "0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/z8RXAVjybwPYq43D7\"}"}', 'sonata'), - (742139, '0xf785e26caa60a6724769a90e4f426bf7f7bb9dae', 0, 1, '2024-05-06 22:36:47+00', 0, 0, '{"fid": 277635, "object": "user", "pfp_url": "https://i.imgur.com/g8dEStq.jpg", "profile": {"bio": {"text": "075 Dao", "mentioned_profiles": []}}, "username": "airehck7", "power_badge": false, "display_name": "Airehck7", "active_status": "inactive", "verifications": ["0xe62c3c86a762392c7c453e01087b5a87a89770b2"], "follower_count": 22, "custody_address": "0xe2744335d6378e2f5aaa25f672286bfc2a01f366", "following_count": 88, "verified_addresses": {"eth_addresses": ["0xe62c3c86a762392c7c453e01087b5a87a89770b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iKCh8RAGqXWJMU6s8\"}"}', NULL), - (740118, '0x4fa544f3fb2863e79ef9b747b5f4dc840e7f5b9b', 0, 1, '2024-05-06 22:23:00+00', 0, 0, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 61, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 43, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/asap?referral_source=link\"}"}', NULL), - (683294, '0x87c12e50c9a93febf97b981379b58d1a01308c61', 0, 1, '2024-05-06 16:39:40+00', 0, 3, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lionelrichieofficial/hello-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (683714, '0x71850eeb7cd6f0564af24b10b124b0e535769af8', 0, 1, '2024-05-06 16:42:29+00', 0, 2, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/caster74/senor-amante-valeria-lynch-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (702803, '0x94f26b5e43692feec58c3c7731778a711f73c62f', 0, 1, '2024-05-06 18:10:26+00', 0, 3, '{"fid": 13939, "object": "user", "pfp_url": "https://i.imgur.com/wLLJtic.jpg", "profile": {"bio": {"text": "A tech lover Blockchain is my love!", "mentioned_profiles": []}}, "username": "nftgo", "power_badge": false, "display_name": "Rad🎩🔵⛓️🔮", "active_status": "inactive", "verifications": ["0xbabd212f4435562569ada6765e274c099ffdaee8"], "follower_count": 1815, "custody_address": "0x75fea33b05849e46d4f20b1a76c696a070617884", "following_count": 3981, "verified_addresses": {"eth_addresses": ["0xbabd212f4435562569ada6765e274c099ffdaee8"], "sol_addresses": ["7SBZkurfdrY3u6rYVS7SNNaeu6Z8GMDJ6zE3CGCxkAnH"]}}', '{"{\"url\":\"https://soundcloud.com/kendrick-lamar-music/euphoria?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (683715, '0x51f065a8e00b00e7b55ade4b9635b608019f0481', 0, 1, '2024-05-06 16:42:07+00', 0, 2, '{"fid": 503566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b01a50b5-1f0f-48eb-1931-ed7492d58600/rectcrop3", "profile": {"bio": {"text": "Have a nice day :)", "mentioned_profiles": []}}, "username": "gracerabbit", "power_badge": false, "display_name": "GraceRabbit", "active_status": "inactive", "verifications": ["0x2cf86245b496e3db44e876a428dc9714604f6041"], "follower_count": 1020, "custody_address": "0x861e43ef1caa752bc69ea9b0c7fbda8c35ecab3c", "following_count": 875, "verified_addresses": {"eth_addresses": ["0x2cf86245b496e3db44e876a428dc9714604f6041"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost23/gaho-the-beginning-itaewon-class-ost-part-2?si=e2ce07d0f1ad4dc8a2dab00117e465bd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (768468, '0x7e4d7878bedacd8faea00d2abd4f40adc4361e42', 0, 1, '2024-05-07 00:52:58+00', 0, 2, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1570, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2526, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fBHBniP9umPLbdbu5\"}"}', NULL), - (725285, '0xe341f63c8a8ad34a1257abdc2374b6fba4652a62', 0, 1, '2024-05-06 20:28:29+00', 0, 0, '{"fid": 495248, "object": "user", "pfp_url": "https://i.imgur.com/7UTjUY9.jpeg", "profile": {"bio": {"text": "medical student.\nlong live the fighters.", "mentioned_profiles": []}}, "username": "jugador6921", "power_badge": false, "display_name": "vinci.", "active_status": "inactive", "verifications": ["0x94eb7315d95a8e5fb0981c64c06e2aa6bb1e7fb6"], "follower_count": 15, "custody_address": "0xfee61425d356934adccd3ed90a07b3410b8a7eaa", "following_count": 93, "verified_addresses": {"eth_addresses": ["0x94eb7315d95a8e5fb0981c64c06e2aa6bb1e7fb6"], "sol_addresses": []}}', '{"{\"url\":\"https://newsletter.sound.xyz/\"}"}', NULL), - (742574, '0x1add93f720bef87f29bd35e86e33a081a0d09f74', 0, 1, '2024-05-06 22:43:33+00', 0, 0, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 481, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 771, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cVRMN\"}"}', 'sonata'), - (557249, '0x7b050f00c343271b9b71b14203304c756f76a2a4', 0, 1, '2024-05-06 10:49:00+00', 0, 2, '{"fid": 499783, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05055ae3-170a-477e-d00b-f66c154eb700/original", "profile": {"bio": {"text": "Building /uniklabs. Based in LF /los-fomos fm host. /cinema-mon-amour simp • Next-gen IPs are Web3 native w/ a skin-in-the-character comm & a virtual economy\n", "mentioned_profiles": []}}, "username": "tako-unik", "power_badge": false, "display_name": "Tako Unik 🌶️", "active_status": "inactive", "verifications": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "follower_count": 31, "custody_address": "0x96c633f9d1b6c20586bae7fd36ea4bf8f7a1bcf9", "following_count": 64, "verified_addresses": {"eth_addresses": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/una-noche?referral=0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917&referral_source=link\"}"}', 'los-fomos'), - (756139, '0x2fa9f6d237048029707271e3f941e2e88135266d', 0, 1, '2024-05-06 23:53:24+00', 0, 6, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃👉 ❶$DEGEN❷$FOMO❸🥚\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1378, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1535, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/spaceboyderek/ice-cream-prod-quentin\"}"}', 'japan777iine'), - (735633, '0x64bee8cfa208448e86f162ed5afdf92324a6e646', 0, 1, '2024-05-06 21:47:22+00', 0, 7, '{"fid": 420496, "object": "user", "pfp_url": "https://arweave.net/hybVP8E28-VL9xBSwLQl1Gc16w8AAaTx_xFFcBk4qTI/", "profile": {"bio": {"text": "In rel with crypto 🫶🏻❤️😎", "mentioned_profiles": []}}, "username": "3pehr", "power_badge": false, "display_name": "3pehr 🔄🎩 ", "active_status": "inactive", "verifications": ["0x54d07de68808476d7b00a23fed829e58967e5310"], "follower_count": 1605, "custody_address": "0xe7b5d4db6c5aff9c9f913abbec8ce03c911b279d", "following_count": 1722, "verified_addresses": {"eth_addresses": ["0x54d07de68808476d7b00a23fed829e58967e5310"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZbmDSMuqAaRSSceK6\"}"}', NULL), - (769046, '0x96f7776ea762cddc7bb93038e20d101e45ff1cc1', 0, 1, '2024-05-07 00:57:18+00', 0, 2, '{"fid": 300020, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ecc9b5a-e2af-46b9-c3a5-07009ffe9000/rectcrop3", "profile": {"bio": {"text": "강원도 사는 엄마 ^^*", "mentioned_profiles": []}}, "username": "smysg99", "power_badge": false, "display_name": "프쉬케🎩🍖", "active_status": "inactive", "verifications": ["0x0626b599a9d8513ed5c060191f7870d1c6415d3a"], "follower_count": 1767, "custody_address": "0x8b669d35ae203e7cd9ff455550cac83908b03e0c", "following_count": 1298, "verified_addresses": {"eth_addresses": ["0x0626b599a9d8513ed5c060191f7870d1c6415d3a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ads343vkytdo/tws?si=1346aed56f854451b37925eee2c424af&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (718245, '0x9f4734d6a932d3ea0bdc5d16998617ed0512e562', 0, 1, '2024-05-06 19:39:06+00', 0, 3, '{"fid": 326415, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1687c91-1ecd-4d5b-c89b-faa5c76a8a00/original", "profile": {"bio": {"text": "I make psychedelic music and art as Infinati. Sound and soul architect.\nhttps://infinati.wtf", "mentioned_profiles": []}}, "username": "infinati", "power_badge": false, "display_name": "Infinati", "active_status": "inactive", "verifications": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "follower_count": 68, "custody_address": "0xba3bec28da1d9eb0f1a17203a3fb9d607258cf18", "following_count": 208, "verified_addresses": {"eth_addresses": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/yoshiromare/buzz-liberation-yoshiro-mare-remix\"}"}', NULL), - (743003, '0x83b0fdeb1b702be8bd02b2d553c9ab1955afcec7', 0, 1, '2024-05-06 22:47:14+00', 0, 4, '{"fid": 320047, "object": "user", "pfp_url": "https://i.imgur.com/HRs0nGc.jpg", "profile": {"bio": {"text": "Japanese🇯🇵|オヒゲ a.k.a beardmen||I like crypto. Degen play is also fun. Have a good time,homies 🫶 co-host /hottopic /dyor-japanese", "mentioned_profiles": []}}, "username": "beardmen", "power_badge": false, "display_name": "ohige a.k.a beardmen🎩", "active_status": "inactive", "verifications": ["0x8988d8e80e4d8709c1b9d910e81760e5d547df9c"], "follower_count": 1850, "custody_address": "0x0e64fb98ec53e04358d2044dce70bac67f07b62b", "following_count": 1045, "verified_addresses": {"eth_addresses": ["0x8988d8e80e4d8709c1b9d910e81760e5d547df9c"], "sol_addresses": ["8uUdCC1jcdh81i17PQz34XcL4wgrZ5EjAwULgwqo7yXZ"]}}', '{"{\"url\":\"https://on.soundcloud.com/dfbHWigzcqXkKXpK9\"}"}', 'musicjp'), - (742907, '0x57799c5d26e0eb86390f516e07e074d37f9d7cec', 0, 1, '2024-05-06 22:47:12+00', 0, 2, '{"fid": 503301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd149365-f560-4f73-074e-96f79e694d00/rectcrop3", "profile": {"bio": {"text": "Novice crypto investor |\nWife | CXO @ a startup |\nWork hard play harder!💗", "mentioned_profiles": []}}, "username": "woodrose", "power_badge": false, "display_name": "woodrose", "active_status": "inactive", "verifications": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "follower_count": 1025, "custody_address": "0x40a5d849f9631932cdd264d48cd37289c003afd2", "following_count": 1116, "verified_addresses": {"eth_addresses": ["0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/F6RDFqLECTDhtwT98\"}"}', 'sonata'), - (702818, '0x10294e1f86254bd7cb778669f5fa217296c8c7db', 0, 1, '2024-05-06 18:07:45+00', 0, 0, '{"fid": 390759, "object": "user", "pfp_url": "https://i.imgur.com/CtDLiI6.jpg", "profile": {"bio": {"text": "A cool guy", "mentioned_profiles": []}}, "username": "jxtan", "power_badge": false, "display_name": "Jerry Tan", "active_status": "inactive", "verifications": ["0x1e8564a52fc67a68fee78fc6422f19c07cfae198"], "follower_count": 5, "custody_address": "0xe29b2aa447c0b8e69018490579ff262979afa740", "following_count": 75, "verified_addresses": {"eth_addresses": ["0x1e8564a52fc67a68fee78fc6422f19c07cfae198"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3qkFIjYRInFasy2jeDZPgm?si=1549aaa50b3d416c\"}"}', NULL), - (683713, '0x774709aa557799ee56255efe49988180591a730e', 100, 1, '2024-05-06 16:41:49+00', 0, 3, '{"fid": 245024, "object": "user", "pfp_url": "https://i.imgur.com/JkyySHx.gif", "profile": {"bio": {"text": "web3 degen | rock lover | hosting Rock Music channel: https://warpcast.com/~/channel/rock", "mentioned_profiles": []}}, "username": "calisay", "power_badge": true, "display_name": "Calisay", "active_status": "inactive", "verifications": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "follower_count": 312, "custody_address": "0xbc218297a4e18c050252b4e527d13de104111085", "following_count": 234, "verified_addresses": {"eth_addresses": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/the-struts-official/the-struts-too-good-at-raising?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (726040, '0xfa0bd4ba683d58f74fbf804e53427f082a595717', 0, 1, '2024-05-06 20:28:57+00', 0, 0, '{"fid": 441816, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42a6148d-00ab-4580-4822-8bffad353300/rectcrop3", "profile": {"bio": {"text": "Interested in football, life movie\n\n\nDear friends, I want to have a good time with you", "mentioned_profiles": []}}, "username": "ayoood", "power_badge": false, "display_name": "AYOOOD", "active_status": "inactive", "verifications": ["0x217f336c393d1fdfc8c9ebd317a87a313c8385a5"], "follower_count": 99, "custody_address": "0x217f336c393d1fdfc8c9ebd317a87a313c8385a5", "following_count": 163, "verified_addresses": {"eth_addresses": ["0x217f336c393d1fdfc8c9ebd317a87a313c8385a5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to حبيبي يا نور العين _ من روائع الهضبة عمرو دياب by Amr Negoo 🇪🇬 The Pharao on #SoundCloud https://on.soundcloud.com/QwX8U\"}"}', NULL), - (683256, '0x6c94cb0c54f138990aa28116a694c4cbb21dd2ca', 0, 1, '2024-05-06 16:38:09+00', 0, 3, '{"fid": 390104, "object": "user", "pfp_url": "https://i.imgur.com/115fo3T.png", "profile": {"bio": {"text": "Someone who live 24h with warpcast😂\nA.K.A 도른자🤣\nUntil be rich!!!", "mentioned_profiles": []}}, "username": "yajirang", "power_badge": false, "display_name": "Yajirang🎩", "active_status": "inactive", "verifications": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "follower_count": 908, "custody_address": "0xf77b90b13adc452595b99ffe222ffcc3f8921c6f", "following_count": 812, "verified_addresses": {"eth_addresses": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "sol_addresses": ["Hq5PAi4vYVPa4h58Q5xjQddvaUxuazDSdrgTBx6mycNc"]}}', '{"{\"url\":\"https://on.soundcloud.com/Xr4nxd6LpZeAWmS68\"}"}', NULL), - (754699, '0xa97a533fa4fbd4a0f71f1d2933ff67eb99c3ef0a', 0, 1, '2024-05-06 23:46:29+00', 0, 4, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 로이킴 (Roy Kim) - 꽃 (Flower) - 사랑이라 말해요 OST (Call It Love Ost) by moonbyulkiki ♡ 달별한♡누누 on #SoundCloud https://on.soundcloud.com/z5qNP\"}"}', NULL), - (736169, '0xfd257f6ae3a71dbc0e7a19ce1f2afb50b91de468', 0, 1, '2024-05-06 21:53:53+00', 0, 0, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 183, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 528, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v3KrukdbfUZs81CH7\"}"}', 'sonata'), - (786299, '0x0f9a7691c86c972e35da1686793f8f02d5b72750', 0, 1, '2024-05-07 02:34:13+00', 0, 3, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3100, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2302, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/umh7X\"}"}', 'sonata'), - (710503, '0x37b8ea53a33b64443dffc4cb0eb389df352f275d', 1010, 1, '2024-05-06 18:44:55+00', 0, 2, '{"fid": 237763, "object": "user", "pfp_url": "https://i.imgur.com/xMlNksi.jpg", "profile": {"bio": {"text": "Adventuring through web3", "mentioned_profiles": []}}, "username": "0xadventurer", "power_badge": false, "display_name": "0xadventurer", "active_status": "inactive", "verifications": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "follower_count": 61, "custody_address": "0x2ce9b30eee00b8bcb204a1b9976db7316c21b4f1", "following_count": 221, "verified_addresses": {"eth_addresses": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rohki/cerulean-feat-angelbaby\"}"}', NULL), - (683980, '0x901eea1603c808c849ff9821af880db5870e805d', 0, 1, '2024-05-06 16:43:42+00', 0, 0, '{"fid": 500425, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVLMqxwkQY7wSKibdiUiYYWiGzBBkHNWHC32LKKsZEq21?filename=810-_AI-Anime.jpg", "profile": {"bio": {"text": "I love base ❤️ I love zora 💕 I love ham 🍖", "mentioned_profiles": []}}, "username": "ssamgjang", "power_badge": false, "display_name": "ssamjang", "active_status": "inactive", "verifications": ["0x4b064e08923fd1ea0dc534212d63d0582a82f9ea"], "follower_count": 1490, "custody_address": "0x8f18ab7f461abeab7b3d44dc0d15456024e4598f", "following_count": 1498, "verified_addresses": {"eth_addresses": ["0x4b064e08923fd1ea0dc534212d63d0582a82f9ea"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hohongss/iy5xrkpjzqcq\"}"}', NULL), - (714079, '0xe475ce96a87f4473bf782a9c8bb991cf937caa71', 0, 1, '2024-05-06 19:12:34+00', 0, 3, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3534, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3564, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iugXNsHTeZrdDvMq8\"}"}', 'sonata'), - (738172, '0x22f32e3cbd6475a9b4ed23d383638da7c0c12d07', 0, 1, '2024-05-06 22:09:23+00', 0, 3, '{"fid": 485732, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": " Stop living your fear and start living your dream.\nLook in the mirror, your opponent is in the mirrorv😘💛🌠", "mentioned_profiles": []}}, "username": "mehran99", "power_badge": false, "display_name": "Dr.oooOOOMMMmmm🍖 🎩🫂", "active_status": "inactive", "verifications": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7", "0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "follower_count": 412, "custody_address": "0x63038066ab1b31a15e180225b3634d75571b0ada", "following_count": 689, "verified_addresses": {"eth_addresses": ["0xe22f200f4e464c58d12120d5221c1558a6b6dec7", "0xe22f200f4e464c58d12120d5221c1558a6b6dec7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7lQ8MOhq6IN2w8EYcFNSUk?si=oOJPWROOTuCgPqUCqMr6FA\"}"}', NULL), - (702824, '0xb1edf66573e3299e6684b257b50945bf9c1fedca', 10, 1, '2024-05-06 18:09:17+00', 10, 2, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 80, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 246, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/davyd/invictus-ft-yoshiro-mare-melodic-mix\"}"}', 'base-builds'), - (726089, '0x7c124b63ecdd93fe30c47182edf6a2e1738603cd', 0, 1, '2024-05-06 20:30:04+00', 0, 3, '{"fid": 499252, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6426fa39-cb02-434b-217b-fffbaa4e2c00/rectcrop3", "profile": {"bio": {"text": "소통왕/반사왕 될게요❄❄\n절대 잊지 않고 찾아봬요😊", "mentioned_profiles": []}}, "username": "nunuwillump", "power_badge": false, "display_name": "NUNU", "active_status": "inactive", "verifications": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "follower_count": 2258, "custody_address": "0x69b0108a354647ac6467250dbad5323cfee38319", "following_count": 2261, "verified_addresses": {"eth_addresses": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nFg4Y\"}"}', 'sonata'), - (742571, '0xcae8b0a1b806f115623374676be5c0e03dca60d5', 0, 1, '2024-05-06 22:43:08+00', 0, 1, '{"fid": 18325, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/816c8cab-759c-4f89-e652-9c983a5a6100/rectcrop3", "profile": {"bio": {"text": "Based in DC. ⛓️ @DANC3 \nfind me enjoying https://zora.co/@crittiep", "mentioned_profiles": []}}, "username": "crittiep", "power_badge": true, "display_name": "↑ ↑ Crittie p ↑ ↑", "active_status": "inactive", "verifications": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "follower_count": 348, "custody_address": "0x34a56e7cf6de51416ab2f84bc6c48fcee32c18a3", "following_count": 474, "verified_addresses": {"eth_addresses": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "sol_addresses": ["5DCTxf6kHtgrFwT4f2FPsCAbECaxn84ZVjKAx9DW7aY2"]}}', '{"{\"url\":\"https://on.soundcloud.com/EswggeHdkGa3t13r5\"}"}', 'sonata'), - (668417, '0x50e3c3224a65ee5d0d999ee7e3c34df27ec6617a', 0, 1, '2024-05-06 15:34:49+00', 0, 3, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 404, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1SS0WlKhJewviwEDZ6dWj0?si=JbtnlEaHQ6yJhTUMhac5BQ\"}"}', NULL), - (717745, '0x2c4697d73c017dc4ec8a963a5411cb427b824d0e', 0, 1, '2024-05-06 19:38:21+00', 0, 12, '{"fid": 419506, "object": "user", "pfp_url": "https://i.imgur.com/TaWGbTU.jpg", "profile": {"bio": {"text": "Someone new to crypto and love to learn about it", "mentioned_profiles": []}}, "username": "komeila", "power_badge": false, "display_name": "Komeil", "active_status": "inactive", "verifications": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "follower_count": 794, "custody_address": "0x04fc2472c81ca9978c5f46d8ee526d948c148879", "following_count": 1127, "verified_addresses": {"eth_addresses": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yRDD1\"}"}', 'sonata'), - (684409, '0x0f2c40e32a74edf144d6d50f29510310553e420c', 0, 1, '2024-05-06 16:45:55+00', 0, 8, '{"fid": 501701, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99081801-c661-44ac-ec0a-dff6229f7500/rectcrop3", "profile": {"bio": {"text": "Thank u for visiting. \nHave a great day🍀 \n\n중고신입 뉴비 잘 부탁드려요🩵", "mentioned_profiles": []}}, "username": "leehu23", "power_badge": false, "display_name": "Unieeeee", "active_status": "inactive", "verifications": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "follower_count": 1225, "custody_address": "0x19aeb2932c76077fae10f8c6ea47fffd07c49cac", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qqazumlaagxb/kim-soo-hyun-way-home-ost\"}"}', 'sonata'), - (702828, '0x30c59ab86b34df8ce152f02f11d14997f1b01e63', 0, 1, '2024-05-06 18:09:31+00', 0, 1, '{"fid": 13939, "object": "user", "pfp_url": "https://i.imgur.com/wLLJtic.jpg", "profile": {"bio": {"text": "A tech lover Blockchain is my love!", "mentioned_profiles": []}}, "username": "nftgo", "power_badge": false, "display_name": "Rad🎩🔵⛓️🔮", "active_status": "inactive", "verifications": ["0xbabd212f4435562569ada6765e274c099ffdaee8"], "follower_count": 1816, "custody_address": "0x75fea33b05849e46d4f20b1a76c696a070617884", "following_count": 3980, "verified_addresses": {"eth_addresses": ["0xbabd212f4435562569ada6765e274c099ffdaee8"], "sol_addresses": ["7SBZkurfdrY3u6rYVS7SNNaeu6Z8GMDJ6zE3CGCxkAnH"]}}', '{"{\"url\":\"https://soundcloud.com/kendrick-lamar-music/euphoria?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (737587, '0x527ff1eac3afd715dc0c7520895baaf6d3414bf3', 0, 1, '2024-05-06 22:07:32+00', 5, 5, '{"fid": 472831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6047f98a-3794-4b65-5525-ae5410183600/rectcrop3", "profile": {"bio": {"text": "World literature 📚 ✒️\nLiving in the light", "mentioned_profiles": []}}, "username": "goldmanbank", "power_badge": false, "display_name": "Ehsan🍖🎩🏦", "active_status": "inactive", "verifications": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "follower_count": 1221, "custody_address": "0x66f337aef04da6aa0c022a6041a02c5034fed87c", "following_count": 1685, "verified_addresses": {"eth_addresses": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "sol_addresses": ["6LmaJFGTnc8YLUTzjw3ys4miTmzaN9gpz64hmMhfSXAm"]}}', '{"{\"url\":\"https://on.soundcloud.com/ydtJM\"}"}', 'sonata'), - (1173471, '0xdf32211ba3cda557d1792a034b418d7e0f36f01a', 3000, 1, '2024-05-16 02:20:59+00', 0, 0, '{"fid": 248216, "object": "user", "pfp_url": "https://i.imgur.com/7sXGA9U.jpg", "profile": {"bio": {"text": "\nco-creator of /farcards", "mentioned_profiles": []}}, "username": "sartocrates", "power_badge": true, "display_name": "sartocrates", "active_status": "inactive", "verifications": ["0x7ff446ecf4a6c7224264eab1ee97e26a1d71152d"], "follower_count": 8271, "custody_address": "0x2be743907dc805099b16351717b2b8f09b7d5938", "following_count": 1656, "verified_addresses": {"eth_addresses": ["0x7ff446ecf4a6c7224264eab1ee97e26a1d71152d"], "sol_addresses": ["55Nh22xdSpRbVwRjQUas8bjwDdNMadnXttVjtuuhwuGJ"]}}', '{"{\"url\":\"https://soundcloud.com/sartocrates/delaware-county-live-from-farhouse-5515\"}"}', NULL), - (758300, '0xca35e9422ebd730fa77628fcb6018a56254f6e3e', 0, 1, '2024-05-06 23:59:36+00', 0, 2, '{"fid": 381086, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee50b6a5-5320-4af2-87ad-b3d53079b300/rectcrop3", "profile": {"bio": {"text": "Film director and writer. Getting better every year and happy as it goes. \nLots of work can be seen on my website:\nmackandco.uk", "mentioned_profiles": []}}, "username": "jamiemccormack", "power_badge": true, "display_name": "Jamie McCormack", "active_status": "inactive", "verifications": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "follower_count": 150, "custody_address": "0xf810f1e885226cd165e10b11e3103c50986e5dc6", "following_count": 179, "verified_addresses": {"eth_addresses": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4zUcDwZpszCAGznQ3hADBs?si=oSnGWQ6TSCGjh_MrITJR6w&context=spotify%3Aalbum%3A6HPNCXxhRfj8tus7gw0dDI\"}"}', 'sonata'), - (729848, '0x7cf697a45fd785b2950e921cdd80cc389200a568', 0, 1, '2024-05-06 20:48:18+00', 0, 0, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2635, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2450, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Pjmw4\"}"}', 'sonata'), - (685825, '0x392e963bbe41467dff90811af46e459b5b1caacf', 0, 1, '2024-05-06 16:57:11+00', 0, 0, '{"fid": 390104, "object": "user", "pfp_url": "https://i.imgur.com/115fo3T.png", "profile": {"bio": {"text": "Someone who live 24h with warpcast😂\nA.K.A 도른자🤣\nUntil be rich!!!", "mentioned_profiles": []}}, "username": "yajirang", "power_badge": false, "display_name": "Yajirang🎩", "active_status": "inactive", "verifications": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "follower_count": 908, "custody_address": "0xf77b90b13adc452595b99ffe222ffcc3f8921c6f", "following_count": 814, "verified_addresses": {"eth_addresses": ["0x1d7f24888b1add9299845234f68c7bdd6ee48c84"], "sol_addresses": ["Hq5PAi4vYVPa4h58Q5xjQddvaUxuazDSdrgTBx6mycNc"]}}', '{"{\"url\":\"https://on.soundcloud.com/awAuBzPhW4uX7xoA9\"}"}', NULL), - (684934, '0xccdff2ed7faff0efc3cc631dcd1f81be71d8cbb3', 0, 1, '2024-05-06 16:48:20+00', 0, 7, '{"fid": 469305, "object": "user", "pfp_url": "https://i.imgur.com/eIrhOrd.jpg", "profile": {"bio": {"text": "I want to thank everyone who clicked on me.\nI''m interested in crypto markets.\nI''m also interested in food and traveling.\nI wish you well.", "mentioned_profiles": []}}, "username": "jrebuild", "power_badge": false, "display_name": "jrebuild", "active_status": "inactive", "verifications": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "follower_count": 2123, "custody_address": "0x25d482ab85de61a33c7ec7985b255f64ddab73d0", "following_count": 2101, "verified_addresses": {"eth_addresses": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/freshasapansy/xv3boxq6oa2k?si=3618ba02d6604cf6bdaebaed4871809e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (702845, '0x44da4009acc0112b2914d2a301d64b3dab25454e', 0, 1, '2024-05-06 18:08:12+00', 0, 1, '{"fid": 406030, "object": "user", "pfp_url": "https://i.imgur.com/vMCIp4x.jpg", "profile": {"bio": {"text": "🥰I love jung&su🎩🍖🔮🥰", "mentioned_profiles": []}}, "username": "luckyhappymom", "power_badge": false, "display_name": "😸luckyhappymom🎩🍖😸", "active_status": "inactive", "verifications": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "follower_count": 2914, "custody_address": "0x2ff561b9b84e0c139bb218f56569e7f6c84f9554", "following_count": 3668, "verified_addresses": {"eth_addresses": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45a1f245-e7a7-42e4-92b3-ed27ac254000/original\"}","{\"url\":\"https://on.soundcloud.com/U3F6k\"}"}', 'sonata'), - (686746, '0xa11fd92d25cfede8f6ec7421a10a4f8636137698', 0, 1, '2024-05-06 17:01:38+00', 0, 4, '{"fid": 406373, "object": "user", "pfp_url": "https://i.imgur.com/FakDoyF.jpg", "profile": {"bio": {"text": "언제까지? 끝까지!\n받은건 돌려주는 철칙!\nyou know? I know!\n\n", "mentioned_profiles": []}}, "username": "yongdie", "power_badge": false, "display_name": "cutey", "active_status": "inactive", "verifications": ["0x92140d2cdf70efbbfdbf246b1f914eda40423a1e"], "follower_count": 2360, "custody_address": "0xaeb1088526a4788ee0785082bab8018a6bfe6b0c", "following_count": 1992, "verified_addresses": {"eth_addresses": ["0x92140d2cdf70efbbfdbf246b1f914eda40423a1e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/livingston-official/architect?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (684924, '0xc31edaec2c9344b6a219114912cdc6325686b2c3', 0, 1, '2024-05-06 16:47:02+00', 0, 1, '{"fid": 500425, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVLMqxwkQY7wSKibdiUiYYWiGzBBkHNWHC32LKKsZEq21?filename=810-_AI-Anime.jpg", "profile": {"bio": {"text": "I love base ❤️ I love zora 💕 I love ham 🍖", "mentioned_profiles": []}}, "username": "ssamgjang", "power_badge": false, "display_name": "ssamjang", "active_status": "inactive", "verifications": ["0x4b064e08923fd1ea0dc534212d63d0582a82f9ea"], "follower_count": 1490, "custody_address": "0x8f18ab7f461abeab7b3d44dc0d15456024e4598f", "following_count": 1498, "verified_addresses": {"eth_addresses": ["0x4b064e08923fd1ea0dc534212d63d0582a82f9ea"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hohongss/iy5xrkpjzqcq\"}"}', 'sonata'), - (730421, '0xefc854175d16e35f39fcc2ac7170117e864d1151', 0, 1, '2024-05-06 20:53:10+00', 0, 3, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3181, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2687, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UddjBuahnj6GYMSB9\"}"}', NULL), - (726779, '0x9599e3b54cb4e0513da8305616b33b33642ae0cf', 0, 1, '2024-05-06 20:38:31+00', 0, 1, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1564, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2516, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gcKCEJqkzNiYdn3KA\"}"}', NULL), - (714285, '0x4c823b959fb384accdc7f591a4a4c45d6c7b9ecb', 0, 1, '2024-05-06 19:14:57+00', 0, 3, '{"fid": 407424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d1d14ef7-07b5-4fe3-d618-b2080ce95b00/original", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mortezaxan", "power_badge": false, "display_name": "Morteza 🎩 🔄", "active_status": "inactive", "verifications": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "follower_count": 103, "custody_address": "0x81a0acbdaa12ac4f6c2a133211d5acab228dbece", "following_count": 124, "verified_addresses": {"eth_addresses": ["0xa002c4ffc3b3646bfe5cec4d523163b2af120aba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user799835639/balthazarbunker\"}"}', NULL), - (758576, '0x75d3224e9fbe1cb00f79ca09c86643ccb304d402', 0, 1, '2024-05-07 00:03:02+00', 0, 2, '{"fid": 510299, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8375343a-38d7-42c8-ee84-d18a33330600/rectcrop3", "profile": {"bio": {"text": "Here we introduce the best and latest 𝗙𝗔𝗥𝗖𝗔𝗦𝗧𝗘𝗥 projects \n\n", "mentioned_profiles": []}}, "username": "!510299", "power_badge": false, "display_name": "𝗙𝗢𝗟𝗗𝗘𝗥", "active_status": "inactive", "verifications": ["0x82bc180ad03f3e7d75da3d0aad28e3b96944e486", "0x82bc180ad03f3e7d75da3d0aad28e3b96944e486", "0x82bc180ad03f3e7d75da3d0aad28e3b96944e486", "0x82bc180ad03f3e7d75da3d0aad28e3b96944e486"], "follower_count": 170, "custody_address": "0xe55e3993d19af4dea57f4a86971e54bc943a9c4e", "following_count": 216, "verified_addresses": {"eth_addresses": ["0x82bc180ad03f3e7d75da3d0aad28e3b96944e486", "0x82bc180ad03f3e7d75da3d0aad28e3b96944e486", "0x82bc180ad03f3e7d75da3d0aad28e3b96944e486", "0x82bc180ad03f3e7d75da3d0aad28e3b96944e486"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Do That There (That Really Long Philicorda Remix) *[PREVIEW]* by The Breakbeat Junkie on #SoundCloud https://on.soundcloud.com/uizRk\"}"}', NULL), - (681985, '0xf79cc20dea0ae4a1bb5a548cc9798be5b1f06515', 0, 1, '2024-05-06 16:34:36+00', 0, 0, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 145, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 191, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby-vhs?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (785812, '0x833a2774c0c6902fdd9a970a86f56c0a7f4941d6', 0, 1, '2024-05-07 02:27:40+00', 0, 2, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1175, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1065, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0koi3jwflfee/sets/89xpcryoinuf?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (742457, '0x746a2d096a41b073fb09f807184c4de7a902de5d', 0, 1, '2024-05-06 22:41:06+00', 0, 5, '{"fid": 442155, "object": "user", "pfp_url": "https://i.imgur.com/MBqUkHV.jpg", "profile": {"bio": {"text": "右も左も分かりません💦良かったらフォローお願いします🙇\nX(Twitter)もやっております💦\n\nhttps://x.com/taka070809", "mentioned_profiles": []}}, "username": "taka3100", "power_badge": false, "display_name": "チャコ♪ぽめ", "active_status": "inactive", "verifications": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "follower_count": 861, "custody_address": "0x62708690449ffc74aa92655739d96584602a9ed5", "following_count": 844, "verified_addresses": {"eth_addresses": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tEE6hxe6UHnPUrca9\"}"}', 'musicjp'), - (732314, '0xec1aa8d68b3fcdd6d3c76b241942ba7ee26ff096', 0, 1, '2024-05-06 21:16:34+00', 0, 1, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1353, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1481, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U8fM71mmMNhB43BX6\"}"}', NULL), - (731786, '0xf0ff354b03d683069d8a4454def411b89f86cb09', 0, 1, '2024-05-06 21:11:19+00', 0, 0, '{"fid": 498997, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2df06909-30da-4571-95f8-bab655d09a00/rectcrop3", "profile": {"bio": {"text": "It''s just Pariya🧚🏻‍♀️", "mentioned_profiles": []}}, "username": "kapariya", "power_badge": false, "display_name": "Pariya", "active_status": "inactive", "verifications": ["0xbfd6e2e66a42f9f768ca4b865ec00bab5d5fa90b"], "follower_count": 47, "custody_address": "0x90670dd581400825e77ab92487050fbc5244e6b4", "following_count": 153, "verified_addresses": {"eth_addresses": ["0xbfd6e2e66a42f9f768ca4b865ec00bab5d5fa90b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0jQxDAN0CBuIdAqbR4OnzV?si=T9Z0dd2kTZapkjqVuH_RyQ\"}"}', 'chatbfg'), - (737101, '0x57e1e1467e71aacf1cef5be23ce8ec0f6b17fc67', 0, 1, '2024-05-06 22:05:16+00', 0, 5, '{"fid": 492039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd8a4449-4451-42bf-efae-a209b0721300/rectcrop3", "profile": {"bio": {"text": "Welcome to all coin info sharing I respect any opinions.", "mentioned_profiles": []}}, "username": "vvely", "power_badge": false, "display_name": "Kirby⭐️", "active_status": "inactive", "verifications": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "follower_count": 1829, "custody_address": "0x4aa36bd75aae9d6cb64f43e154730bd311787e7f", "following_count": 2685, "verified_addresses": {"eth_addresses": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A48tBvEa4EDS8SFh6\"}"}', 'sonata'), - (759986, '0x4009a5bb383a416411b1b80240a549a9b36bf7b6', 0, 1, '2024-05-07 00:05:36+00', 0, 0, '{"fid": 500614, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be078189-3688-4a05-7206-a357cc223100/rectcrop3", "profile": {"bio": {"text": "🌈✨🌈✨🌈We are so early 🌈✨🌈✨🌈 Mint of zora 👉 https://zora.co/@baaambin", "mentioned_profiles": []}}, "username": "baaambin", "power_badge": false, "display_name": "beenni💭🎩🍖", "active_status": "inactive", "verifications": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "follower_count": 1683, "custody_address": "0x76f30b04fca1502795b3aec1f243a36f28d0aabc", "following_count": 1973, "verified_addresses": {"eth_addresses": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4U9teFThcaHZz386DQM6FY?si=hqBpOTyCTPqQFf6rlRoddw\"}"}', NULL), - (727893, '0xd5a81df12de58329e81cac6fa144b88684550556', 0, 1, '2024-05-06 20:41:34+00', 0, 2, '{"fid": 419719, "object": "user", "pfp_url": "https://i.imgur.com/jz2FAOc.jpg", "profile": {"bio": {"text": "Just do it bro🤙🏻", "mentioned_profiles": []}}, "username": "hshmansari47", "power_badge": false, "display_name": "Hashi🍖🎩👽", "active_status": "inactive", "verifications": ["0x119d7d618fd4f18232f22431021e5535da62d917"], "follower_count": 1619, "custody_address": "0x8589428efb2c790803f25c0579149425ea8da972", "following_count": 1639, "verified_addresses": {"eth_addresses": ["0x119d7d618fd4f18232f22431021e5535da62d917"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/69b3eZH8jxEYGifTA\"}"}', 'sonata'), - (685350, '0x5edb9ef69e317fabb587dd92f54aaedf8d535ad0', 0, 1, '2024-05-06 16:50:05+00', 0, 5, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1303, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove10/vx4kfwgmsqth?si=8b206a8dadc943d4a6fbb93395fdada8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (714287, '0x091bcfb74f8ae9bec51ecd59e481af8c0423c1dc', 0, 1, '2024-05-06 19:14:52+00', 0, 1, '{"fid": 453227, "object": "user", "pfp_url": "https://i.imgur.com/aGZ5VCq.jpg", "profile": {"bio": {"text": "Hassan babaloei", "mentioned_profiles": []}}, "username": "hassanba", "power_badge": false, "display_name": "Hassanbabaloei", "active_status": "inactive", "verifications": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "follower_count": 293, "custody_address": "0xa221fc0c8b62c365065a1b900fce9efe0198ba17", "following_count": 284, "verified_addresses": {"eth_addresses": ["0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c", "0x3ba4174b85a73a0879a234ae7824365c729a5a9c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/remixmorteza/ebi-ft-dj-morteza-chizari?ref=clipboard&p=a&c=0&si=3769eb7a9af748e5bfd6ed8d7f250c2a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (738304, '0x4266f4437fa7849113b35bd99460e28fa343e385', 0, 1, '2024-05-06 22:14:03+00', 0, 3, '{"fid": 442155, "object": "user", "pfp_url": "https://i.imgur.com/MBqUkHV.jpg", "profile": {"bio": {"text": "右も左も分かりません💦良かったらフォローお願いします🙇\nX(Twitter)もやっております💦\n\nhttps://x.com/taka070809", "mentioned_profiles": []}}, "username": "taka3100", "power_badge": false, "display_name": "チャコ♪ぽめ", "active_status": "inactive", "verifications": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "follower_count": 860, "custody_address": "0x62708690449ffc74aa92655739d96584602a9ed5", "following_count": 845, "verified_addresses": {"eth_addresses": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1KGi9sZVMeszgZOWivFpxs?si=6bZCxyMkRlumcf7aqHBsJQ&context=spotify%3Aplaylist%3A2kljNjseKKRxOSmvyCaf7L\"}"}', 'musicjp'), - (716456, '0xe773dae0c3fec0f4e7b3e53a64d41583a47ae6a0', 1010, 1, '2024-05-06 19:26:02+00', 0, 1, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9295, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 17, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/6e4f4df3-4f15-4348-8047-1e927dd46929\"}","{\"url\":\"https://www.sound.xyz/iseeblue/ill-go\"}"}', NULL), - (685618, '0x92db53a6d7abb4488cc310051ea01e45b15cb4d3', 0, 1, '2024-05-06 16:54:06+00', 0, 5, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 668, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 412, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-977421934/the-phoenix?si=ff5455aea7b84573b00c18750ba7e99e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (686367, '0x99fde92c81d85656d37f5ac8b89e2d9d1b672c70', 0, 1, '2024-05-06 17:01:09+00', 0, 4, '{"fid": 492276, "object": "user", "pfp_url": "https://arweave.net/J9I4EnTsgMylLfHyU4_sguFCfb1cI_MbiCVwGyCkS40/", "profile": {"bio": {"text": "Architect", "mentioned_profiles": []}}, "username": "reza77", "power_badge": false, "display_name": "Reza", "active_status": "inactive", "verifications": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "follower_count": 784, "custody_address": "0x2794a1e13d19c006210239ce9acfd5e3d9b7b70e", "following_count": 1137, "verified_addresses": {"eth_addresses": ["0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fLVTmYV41yBDaX6m6\"}"}', NULL), - (742908, '0x50f3b5a5afd00122228bdf6423a13225e48c37fe', 0, 1, '2024-05-06 22:47:03+00', 0, 4, '{"fid": 500429, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmd6sMDLmn7Lpkweb2hMmiLbH19pDQu5tAg4kk1nq6Kws3?filename=f9a4486d-f75d-43c3-a601-032529f51f86.png", "profile": {"bio": {"text": "Plz degen to the moon🚀", "mentioned_profiles": []}}, "username": "tomorrowluck", "power_badge": false, "display_name": "toluck", "active_status": "inactive", "verifications": ["0xddf8a6b32b77991de393f1fc94071c82cc901f62"], "follower_count": 2214, "custody_address": "0x2dc49c01a46362312124b681046420b7f0e9fd7e", "following_count": 2089, "verified_addresses": {"eth_addresses": ["0xddf8a6b32b77991de393f1fc94071c82cc901f62"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Vj2is4Qk2nD6ten69\"}"}', 'sonata'), - (759988, '0xe2ad02cdd193ef20e2f1ce3239c4bb1cab991cfe', 0, 1, '2024-05-07 00:06:28+00', 0, 0, '{"fid": 500614, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be078189-3688-4a05-7206-a357cc223100/rectcrop3", "profile": {"bio": {"text": "🌈✨🌈✨🌈We are so early 🌈✨🌈✨🌈 Mint of zora 👉 https://zora.co/@baaambin", "mentioned_profiles": []}}, "username": "baaambin", "power_badge": false, "display_name": "beenni💭🎩🍖", "active_status": "inactive", "verifications": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "follower_count": 1683, "custody_address": "0x76f30b04fca1502795b3aec1f243a36f28d0aabc", "following_count": 1973, "verified_addresses": {"eth_addresses": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4U9teFThcaHZz386DQM6FY?si=hqBpOTyCTPqQFf6rlRoddw\"}"}', NULL), - (688121, '0xc6f1791ca9b3a9fe8c9be68525d2d71441a656a5', 0, 1, '2024-05-06 17:10:26+00', 0, 1, '{"fid": 271878, "object": "user", "pfp_url": "https://ipfs.pixura.io/ipfs/QmQGosejyyMSMWqdRmYkQ9z2ygXrir4Dv4jLsuP398eGFH/Mutagenx11021.jpg", "profile": {"bio": {"text": "Neouroscience, ☯️, decentralization, AI. Building the next phase of onchain capital assets with @ bldx.io. I like mountains, seas and space.", "mentioned_profiles": []}}, "username": "hyp", "power_badge": true, "display_name": "Leo 🎩🔵", "active_status": "inactive", "verifications": ["0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113", "0x8cf7f8a2eb9cbf7a01dfb89f45951de4fb421d27"], "follower_count": 1354, "custody_address": "0x64fc0caaa555b9fbbc9cb730ac964e52325b0e58", "following_count": 1243, "verified_addresses": {"eth_addresses": ["0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113", "0x8cf7f8a2eb9cbf7a01dfb89f45951de4fb421d27"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4NE3oWyUQI2b2NjyMyC8Bi?si=74b4e547ee78474a\"}"}', NULL), - (729178, '0x1cbc952e6ecc6f3ffc6003e2cd73b919b5025b80', 30, 1, '2024-05-06 20:44:08+00', 0, 4, '{"fid": 414095, "object": "user", "pfp_url": "https://i.imgur.com/f1IiJJR.jpg", "profile": {"bio": {"text": "Electrical engineer seeking for the meaning of life...\nBut sometimes, you just have to enjoy the ride 🤓", "mentioned_profiles": []}}, "username": "erfan-nia", "power_badge": false, "display_name": "Erfan", "active_status": "inactive", "verifications": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "follower_count": 979, "custody_address": "0x6b517b43809b0fce8623d0654ca3d1e451b0117b", "following_count": 776, "verified_addresses": {"eth_addresses": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/imaginedragons/whatever-it-takes-1\"}"}', NULL), - (767747, '0xa2bbd76032b81ce7570b4f464e6bd727d932eee6', 0, 1, '2024-05-07 00:50:17+00', 0, 4, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 734, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1080, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/m0qcikhehnkb/jay-park-like-i-do-jay-park-remix-visualizer-original-by-jtajor?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (703456, '0xe17bc177e15646f6a8a3bf4966aa10327927d543', 0, 1, '2024-05-06 18:15:14+00', 0, 3, '{"fid": 417936, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a22d3f19-15c6-43af-d8d0-ae3ba053fd00/rectcrop3", "profile": {"bio": {"text": "[🤗] Nice to meet you all! Always be healthy and happy!🙆‍♀️ ", "mentioned_profiles": []}}, "username": "busanlyk", "power_badge": false, "display_name": "kyoung♥ ", "active_status": "inactive", "verifications": ["0x85f489adf3ce25ad81824856e5712791944fe0ac"], "follower_count": 2461, "custody_address": "0x7f7082a23fe17accc2f73e8ace5b78e45ddf477b", "following_count": 1423, "verified_addresses": {"eth_addresses": ["0x85f489adf3ce25ad81824856e5712791944fe0ac"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wZuQP\"}"}', 'sonata'), - (688790, '0x2dbcf39d4b2881f600ca1f32df030b15660754dd', 0, 1, '2024-05-06 17:13:53+00', 0, 3, '{"fid": 509433, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca5fc429-4470-4ae4-865e-3fdc1005c700/rectcrop3", "profile": {"bio": {"text": "I love travel ❤\nLove talking with friends ❤\nLove sharing information ❤\nFollow me❤", "mentioned_profiles": []}}, "username": "!509433", "power_badge": false, "display_name": "Reeyuaa", "active_status": "inactive", "verifications": ["0x07004a13f78c13dd8e6678414dd33a2fd7c407f4"], "follower_count": 311, "custody_address": "0x7ef03131810cff12771418f50a68b339ffdf075f", "following_count": 348, "verified_addresses": {"eth_addresses": ["0x07004a13f78c13dd8e6678414dd33a2fd7c407f4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3z8h0TU7ReDPLIbEnYhWZb?si=KLPY_fW6SUW_HX_b_65wCw\"}"}', 'sonata'), - (730407, '0x420eff3efb987c3ecf620139477f3a115766b164', 0, 1, '2024-05-06 20:53:08+00', 0, 0, '{"fid": 441816, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42a6148d-00ab-4580-4822-8bffad353300/rectcrop3", "profile": {"bio": {"text": "Interested in football, life movie\n\n\nDear friends, I want to have a good time with you", "mentioned_profiles": []}}, "username": "ayoood", "power_badge": false, "display_name": "AYOOOD", "active_status": "inactive", "verifications": ["0x217f336c393d1fdfc8c9ebd317a87a313c8385a5"], "follower_count": 99, "custody_address": "0x217f336c393d1fdfc8c9ebd317a87a313c8385a5", "following_count": 163, "verified_addresses": {"eth_addresses": ["0x217f336c393d1fdfc8c9ebd317a87a313c8385a5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Bad Blood (Taylor''s Version) [feat. Kendrick Lamar] by Taylor Swift on #SoundCloud https://on.soundcloud.com/e1Vak\"}"}', NULL), - (760327, '0x276a2859fa25ec31384bf470b26e6aeea4ff10a6', 0, 1, '2024-05-07 00:10:33+00', 0, 0, '{"fid": 500614, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be078189-3688-4a05-7206-a357cc223100/rectcrop3", "profile": {"bio": {"text": "🌈✨🌈✨🌈We are so early 🌈✨🌈✨🌈 Mint of zora 👉 https://zora.co/@baaambin", "mentioned_profiles": []}}, "username": "baaambin", "power_badge": false, "display_name": "beenni💭🎩🍖", "active_status": "inactive", "verifications": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "follower_count": 1683, "custody_address": "0x76f30b04fca1502795b3aec1f243a36f28d0aabc", "following_count": 1973, "verified_addresses": {"eth_addresses": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/C7bXT5P3b6Nj7JUY7\"}"}', NULL), - (769141, '0x3810184d54d0c072b5cd749fb6817edf6a248e51', 0, 1, '2024-05-07 00:59:01+00', 0, 0, '{"fid": 300020, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ecc9b5a-e2af-46b9-c3a5-07009ffe9000/rectcrop3", "profile": {"bio": {"text": "강원도 사는 엄마 ^^*", "mentioned_profiles": []}}, "username": "smysg99", "power_badge": false, "display_name": "프쉬케🎩🍖", "active_status": "inactive", "verifications": ["0x0626b599a9d8513ed5c060191f7870d1c6415d3a"], "follower_count": 1767, "custody_address": "0x8b669d35ae203e7cd9ff455550cac83908b03e0c", "following_count": 1298, "verified_addresses": {"eth_addresses": ["0x0626b599a9d8513ed5c060191f7870d1c6415d3a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ads343vkytdo/tws?si=1346aed56f854451b37925eee2c424af&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (832782, '0x42811b8cd2210a9f6ddf71a82864001831fe612e', 0, 1, '2024-05-07 04:19:49+00', 0, 1, '{"fid": 503282, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ce46349-bbd8-4209-da10-6fd8b93c2700/original", "profile": {"bio": {"text": "Hi, guys. Crypto. Dragon. \nhttps://zora.co/@onefourwon", "mentioned_profiles": []}}, "username": "onefourwon", "power_badge": false, "display_name": "onewon 🎩🍖🔵", "active_status": "inactive", "verifications": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "follower_count": 1127, "custody_address": "0x0993505a45968c500db8d13c32ef0928e2fd67bf", "following_count": 1076, "verified_addresses": {"eth_addresses": ["0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fpliudtuskoh/wqvnomujog01?si=f38d0e9d3477446eb034e1552773ce0d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (899634, '0x86bd0f598b2b004a02d93602d291f2d042458585', 0, 1, '2024-05-07 06:47:09+00', 0, 0, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dmlmusic/ghosts-on-a-g6-deadmau5-far-east-movement\"}"}', NULL), - (727516, '0xa4a69daf3cf35b4e831c1842f36be4e130e594cd', 0, 1, '2024-05-06 20:40:03+00', 0, 1, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1306, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost9/boa-mad-clown-tonight-the-best-hit-ost-part-4?si=ccc00c30734640cfa760709828288286&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (688859, '0x41fd1014c2b45bbfcf91815900c9897d40188a21', 0, 1, '2024-05-06 17:15:14+00', 0, 1, '{"fid": 476554, "object": "user", "pfp_url": "https://i.imgur.com/28vc9Y7.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "amiri1370", "power_badge": false, "display_name": "Mr.amiri", "active_status": "inactive", "verifications": ["0xe8724dec7ff81d8eaaab9c9993571efb34ce1c4b", "0x6d1669abc661fa40f27ee2ce0b61940969b2e396"], "follower_count": 1382, "custody_address": "0x2a18bdb07649d8b922307237cda0f558a9bfcd6c", "following_count": 2248, "verified_addresses": {"eth_addresses": ["0xe8724dec7ff81d8eaaab9c9993571efb34ce1c4b", "0x6d1669abc661fa40f27ee2ce0b61940969b2e396"], "sol_addresses": []}}', '{"{\"url\":\"Listen to معین - تنهای تنها by Sepidedam 3 | ۳ سپیده دم on #SoundCloud https://on.soundcloud.com/JRtVw\"}"}', NULL), - (730029, '0x4b8fa2f9de83d110cef82ddb870a4a11314c199a', 0, 1, '2024-05-06 20:49:15+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2634, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2453, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qscmE\"}"}', 'sonata'), - (760347, '0x7a4543a6e726892903830f39710982783e608cb3', 0, 1, '2024-05-07 00:09:20+00', 0, 0, '{"fid": 500614, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be078189-3688-4a05-7206-a357cc223100/rectcrop3", "profile": {"bio": {"text": "🌈✨🌈✨🌈We are so early 🌈✨🌈✨🌈 Mint of zora 👉 https://zora.co/@baaambin", "mentioned_profiles": []}}, "username": "baaambin", "power_badge": false, "display_name": "beenni💭🎩🍖", "active_status": "inactive", "verifications": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "follower_count": 1683, "custody_address": "0x76f30b04fca1502795b3aec1f243a36f28d0aabc", "following_count": 1973, "verified_addresses": {"eth_addresses": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Qvwt9H76n1FfWyw5aT6JJ?si=eVH1NcQSQzetgddZ3zMk3Q\"}"}', NULL), - (738233, '0x924551afc2b3ccd7fa8f0f4fcec75a0b7b0f2d7f', 0, 1, '2024-05-06 22:12:43+00', 0, 5, '{"fid": 16469, "object": "user", "pfp_url": "https://arweave.net/hZBMC3zda8A8fm-dlKNt_VQ1FwHA6ndMlImjunibzaQ/", "profile": {"bio": {"text": "The life is too short so be happy.", "mentioned_profiles": []}}, "username": "abbasmhmdi", "power_badge": false, "display_name": "Alpachino", "active_status": "inactive", "verifications": ["0x65e1decab2466edc05051754dcc643239b26cf18"], "follower_count": 966, "custody_address": "0xc7d8c0fb5f944dd9433298809c69822fdd50321b", "following_count": 891, "verified_addresses": {"eth_addresses": ["0x65e1decab2466edc05051754dcc643239b26cf18"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Laleh Ra Didan by Mahsa on #SoundCloud https://on.soundcloud.com/NYoWD\"}"}', NULL), - (732321, '0xa84a87bfa776808d4bacee02141c77ee5c8f9a29', 0, 1, '2024-05-06 21:12:54+00', 0, 1, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1353, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1481, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eeTbcYizFob2oBUX8\"}"}', NULL), - (684926, '0xe345991f9feacfff5b1c299ea44ddd55c9310c4b', 0, 1, '2024-05-06 16:48:05+00', 0, 5, '{"fid": 316794, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeidv4j2lqgrxvgbaxd2zsxswqag2xbccnj6y3rixmpzlxlxiramsy4", "profile": {"bio": {"text": "Cfd Trader | Intrested in crypto and Web3 Research | @base / @zora / @degen / @goat", "mentioned_profiles": []}}, "username": "ryamoham", "power_badge": false, "display_name": "ryamoham 🎩🍖 🔵", "active_status": "inactive", "verifications": ["0xac6a9f9befa6482381df57d5ce02ff70b371e982"], "follower_count": 1155, "custody_address": "0xb86e5890644a19091daa7d6e4199a03a410e12ae", "following_count": 1085, "verified_addresses": {"eth_addresses": ["0xac6a9f9befa6482381df57d5ce02ff70b371e982"], "sol_addresses": ["FHU6NnBjreDeZYnEzPCx3y5Jp7GYZ65RMFyb5jUySP9h", "FHU6NnBjreDeZYnEzPCx3y5Jp7GYZ65RMFyb5jUySP9h"]}}', '{"{\"url\":\"https://www.sound.xyz/ryamoham.eth/post/92aa762a-539e-46ba-a772-4547ee1822e6\"}"}', 'sonata'), - (760497, '0x4a923b69a37e80c75ae96e65d203ddd687378ba0', 0, 1, '2024-05-07 00:12:46+00', 0, 2, '{"fid": 463117, "object": "user", "pfp_url": "https://i.imgur.com/LMesnuZ.jpg", "profile": {"bio": {"text": "디젠떡상🙏맞팔로우🙌🙌반사바로출동🚀🚀", "mentioned_profiles": []}}, "username": "smilegirl", "power_badge": false, "display_name": "happy-pp", "active_status": "inactive", "verifications": ["0x376c34a9c588cb253de0a2a6f7db224441ad323b"], "follower_count": 1641, "custody_address": "0x8c7dc5ae7da5fee99a5bbec34779689e4742e6d9", "following_count": 1718, "verified_addresses": {"eth_addresses": ["0x376c34a9c588cb253de0a2a6f7db224441ad323b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/s9hKq1X6FwhaNR7M9\"}"}', 'sonata'), - (731785, '0x9ea623394d6e0d25a209cf6578da1a3a991c73bf', 0, 1, '2024-05-06 21:11:49+00', 0, 4, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 818, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 902, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cebxAg9GPXmL6SrN7\"}"}', NULL), - (704250, '0x0ae83b9326ac7dc2e1d9a92e2d9be1ffd7d3806f', 0, 1, '2024-05-06 18:15:20+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 37, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/fuxk-sex-trafficking-sexual-abuse-rape?referral_source=link\"}"}', 'freemint'), - (786376, '0x8d1aa94fe592dbd03d377f725e59a37e723e4a99', 0, 1, '2024-05-07 02:35:01+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/zico-spot-feat-jennie?si=479a416a127a46ee9d2cbf623f064592&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (739246, '0x975f23684586c71ec9b314596d0fe74ae96ba71e', 0, 1, '2024-05-06 22:19:00+00', 0, 3, '{"fid": 377855, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2099be3b-95d3-4f25-5ee6-26f000e0bd00/original", "profile": {"bio": {"text": "We share the good world, daily life, and coin information in Warpcast. \nI Love DEGEN! ", "mentioned_profiles": []}}, "username": "kinghose21", "power_badge": false, "display_name": "GanjiNani🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "follower_count": 872, "custody_address": "0x2c296e0646c0a35b39ec2c92dadef16b15f41bf2", "following_count": 953, "verified_addresses": {"eth_addresses": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/w8w3x\"}"}', 'sonata'), - (732412, '0xbb755d3288153f1cec85e4dfd8e2a93e5f13324c', 0, 1, '2024-05-06 21:17:15+00', 0, 3, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 61, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 43, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/1000-words-produced-by-the-usual-suspects\"}"}', NULL), - (711838, '0xab7bb72d4481ca906dc2eda685fee92a78d01fc6', 0, 1, '2024-05-06 18:55:04+00', 0, 5, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1408, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1623, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JgDN2qxh8CHLvhFF8\"}"}', 'sonata'), - (739252, '0x76a14d1d7cd3e3a3843ae2cd497890f511085af6', 0, 1, '2024-05-06 22:18:37+00', 0, 0, '{"fid": 400975, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2bf53ac-16e2-4b84-4ea0-0da55b8ec100/original", "profile": {"bio": {"text": "data | building | parenting | community | nonsense (in no particular order). \"Likely not a bot\"", "mentioned_profiles": []}}, "username": "yaffle.eth", "power_badge": true, "display_name": "yaffle 👽🎩💊", "active_status": "inactive", "verifications": ["0xa6e455c07eb079b33596a20306d259754517f859", "0x5985219d7732a92bd9f1f6ced443950a4f7440ab"], "follower_count": 193, "custody_address": "0xbf4e10f1e9e006d865913032d618fe0bf6494343", "following_count": 245, "verified_addresses": {"eth_addresses": ["0xa6e455c07eb079b33596a20306d259754517f859", "0x5985219d7732a92bd9f1f6ced443950a4f7440ab"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dieselboy/dieselboy-the-dungeonmasters-guide\"}"}', 'neurodivergent'), - (712069, '0xb2c9ff8ff898c4d731b8370e3ce7d904cb3d40bd', 0, 1, '2024-05-06 18:59:38+00', 0, 3, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 256, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/scrum-free?referral_source=link\"}"}', 'soundxyz'), - (703529, '0x05128d7a4c4394fd71ba94c5a85fb5d1f5e5c044', 0, 1, '2024-05-06 18:15:03+00', 0, 2, '{"fid": 495796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52ce7d-af8e-4823-b6bb-db4330a74f00/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Crypto/Animals/Fun/ 슈캐이용중 /맞팔100%", "mentioned_profiles": []}}, "username": "30uk", "power_badge": false, "display_name": "Jiwon", "active_status": "inactive", "verifications": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "follower_count": 1687, "custody_address": "0x0717678be60b82344743230571577199405a539d", "following_count": 2726, "verified_addresses": {"eth_addresses": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aVHbCzvtg9CisCDk8\"}"}', 'sonata'), - (785960, '0xd7c5df676815224a2754dbebe437bdca371a5efa', 0, 1, '2024-05-07 02:30:06+00', 0, 0, '{"fid": 348007, "object": "user", "pfp_url": "https://i.imgur.com/ujwL86q.jpg", "profile": {"bio": {"text": "Risk taker, Crypto lover, Web 3.0 supporter", "mentioned_profiles": []}}, "username": "bkklove", "power_badge": false, "display_name": "Meens", "active_status": "inactive", "verifications": ["0xf2e91a77746d3197ce4b8d35e086d2174c4ffd9e"], "follower_count": 1034, "custody_address": "0x7810072fde2459c60ac280e2a97b60bd418e33ad", "following_count": 556, "verified_addresses": {"eth_addresses": ["0xf2e91a77746d3197ce4b8d35e086d2174c4ffd9e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/doux_nuage/akmu?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (760498, '0x622befc95e9cb9560ab0803b875c5faf01ca1f40', 0, 1, '2024-05-07 00:11:39+00', 0, 5, '{"fid": 404871, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreifdknfslnjul7ktnxg7ihn3bbleyyrcasinbnvc6x3dfkdf257m2i", "profile": {"bio": {"text": "WarpCast Information Guide / NFT Mining / New frame / Enjoy WarpCast with me / https://www.alfafrens.com/channel/0x113f183839C1c50cA0d25bebf1a6663CD09CB4e6", "mentioned_profiles": []}}, "username": "troika772", "power_badge": false, "display_name": "ZORACAT🎩🫂🍖", "active_status": "inactive", "verifications": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "follower_count": 2391, "custody_address": "0x96ed697426ceaf055d6980581c22e28a8e3bdba3", "following_count": 1616, "verified_addresses": {"eth_addresses": ["0x9ad3bed8365d6a8ffb6529428901cbc74bc57d9b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/duSNmfE4WCsKBNXg9\"}"}', 'sonata'), - (769822, '0xb51270def56392989ff24d6c427ea7bb1131ad00', 0, 1, '2024-05-07 01:03:30+00', 0, 5, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.!!", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 826, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 932, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/heyimmiva/because-of-you-ne-yo\"}"}', 'oldschool'), - (729456, '0x46b4f3ed991cdcbc16f381f100c8f695a77a078f', 0, 1, '2024-05-06 20:44:26+00', 0, 4, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2635, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2450, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t1BCT\"}"}', 'sonata'), - (689056, '0xa4edac9339cf49c1e24d5515e49f84d1b4f24f3d', 0, 1, '2024-05-06 17:17:33+00', 0, 1, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1276, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 424, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0GybyL5gY2kSLgiSwauFei\"}"}', NULL), - (703459, '0x56be6c017efa899929ddb2236a8484f5195de0fc', 0, 1, '2024-05-06 18:15:03+00', 0, 0, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1305, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 990, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost43/melomance-love-maybe-a-business-proposal-ost?in=rulru07/sets/umlgaays4e8b&si=e2cc9c2f2d5b467681598789b5a74e42&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (689131, '0x66ebffaa660eefd935b0092d393121099c92218d', 0, 1, '2024-05-06 17:19:37+00', 0, 4, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 840, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 939, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kmndW\"}"}', 'sonata'), - (760499, '0x74c26c7f42c0662b1e2101da9896f6a96b0c6e9a', 0, 1, '2024-05-07 00:11:16+00', 0, 1, '{"fid": 442155, "object": "user", "pfp_url": "https://i.imgur.com/MBqUkHV.jpg", "profile": {"bio": {"text": "右も左も分かりません💦良かったらフォローお願いします🙇\nX(Twitter)もやっております💦\n\nhttps://x.com/taka070809", "mentioned_profiles": []}}, "username": "taka3100", "power_badge": false, "display_name": "チャコ♪ぽめ", "active_status": "inactive", "verifications": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "follower_count": 860, "custody_address": "0x62708690449ffc74aa92655739d96584602a9ed5", "following_count": 845, "verified_addresses": {"eth_addresses": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cN98GFVQUjkibNkm6\"}"}', 'musicjp'), - (736769, '0xcffd5587c3ae89abf5af19b954d26f4e76edfe96', 0, 1, '2024-05-06 22:04:01+00', 0, 1, '{"fid": 509567, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eea08883-fe01-4b8f-fba5-017543ace500/rectcrop3", "profile": {"bio": {"text": "Software Engineer / Manager / be AI artist 🎩🫶\ndo you like ''extreme'' sports. you know?", "mentioned_profiles": []}}, "username": "!509567", "power_badge": false, "display_name": "inliving", "active_status": "inactive", "verifications": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "follower_count": 184, "custody_address": "0x3f20d2959e24f377e539553d4e912c9522be23a9", "following_count": 528, "verified_addresses": {"eth_addresses": ["0x247eb6861e981b136f39e1e2bcfcc22c52216633"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/P37KDwc91G9eQ1Wb8\"}"}', 'sonata'), - (703335, '0x2aa5d7c41e940c1d9802caf91a3e10e81c49cb23', 0, 1, '2024-05-06 18:13:44+00', 0, 0, '{"fid": 406650, "object": "user", "pfp_url": "https://i.imgur.com/pYxYFDo.jpg", "profile": {"bio": {"text": "반갑습니다. 잘 부탁 드립니다.사진/여행/헬스/맛집/좋아함 좋은하루 되세요!\n★ 소통이 미래다 ★\n", "mentioned_profiles": []}}, "username": "sakamoto-kenzo", "power_badge": false, "display_name": "Sakamoto-kenzo", "active_status": "inactive", "verifications": ["0x780d121c7ae6593dc333a75419e8db83a30629e7"], "follower_count": 2794, "custody_address": "0xf8a15ca32d0d27680d23d77e2b11c330f8d2ca1f", "following_count": 2924, "verified_addresses": {"eth_addresses": ["0x780d121c7ae6593dc333a75419e8db83a30629e7"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 빅뱅 (BIGBANG) - IF YOU by ZanyHee on #SoundCloud https://on.soundcloud.com/7vZ6H\"}"}', NULL), - (729458, '0xf4e600a53f4768524e1458faa8bf4eaf7871139e', 0, 1, '2024-05-06 20:45:08+00', 0, 3, '{"fid": 364763, "object": "user", "pfp_url": "https://i.imgur.com/FFpzKnl.jpg", "profile": {"bio": {"text": "We are going to have a lot of fun here. Join /farcaster to get to know the true meaning of the digital space to infinity and beyond./lp", "mentioned_profiles": []}}, "username": "iammarhz", "power_badge": false, "display_name": "Ammar Hossein Zehi 🎩🍖", "active_status": "inactive", "verifications": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "follower_count": 807, "custody_address": "0x5420e42acc6842e0d702f168affcd105221b9179", "following_count": 1661, "verified_addresses": {"eth_addresses": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/L8yjd\"}"}', 'sonata'), - (732609, '0x68504665596708cbd7cf6277c58bc6b90712382a', 0, 1, '2024-05-06 21:18:44+00', 0, 0, '{"fid": 461146, "object": "user", "pfp_url": "https://i.imgur.com/Ra3wWuT.jpg", "profile": {"bio": {"text": "I''m 35 year old one of interesting of web and internet", "mentioned_profiles": []}}, "username": "subhan68", "power_badge": false, "display_name": "Subhan", "active_status": "inactive", "verifications": ["0x74ae9c2a2cd699302a90156a17658a180e378ac4"], "follower_count": 134, "custody_address": "0x025973294b87fbf1b675b7d084ae17da5fec1d76", "following_count": 181, "verified_addresses": {"eth_addresses": ["0x74ae9c2a2cd699302a90156a17658a180e378ac4"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/koshy-226161802/mj-freestyle?in_system_playlist=charts-top%3Aall-music%3Ajp\"}"}', NULL), - (702799, '0x508fead0abc4b249af580a9ac56e0661c9b220cf', 0, 1, '2024-05-06 18:11:19+00', 0, 1, '{"fid": 426622, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmSVPrv6F9zX1KSuuefPBw9eVajjHe6RELzf93RbCTbVe9?filename=photo_2024-04-23_12-19-11.jpg", "profile": {"bio": {"text": "워캐스트 / 슈퍼캐스트 화이팅 / 우리 모두 좋은 결과 얻어갔으면 좋겠어요 : )", "mentioned_profiles": []}}, "username": "daenamu", "power_badge": false, "display_name": "유호 🔥/🫂", "active_status": "inactive", "verifications": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "follower_count": 2030, "custody_address": "0x58db626491d5343348259ee3d9b65fc00b3879f7", "following_count": 2186, "verified_addresses": {"eth_addresses": ["0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ti-n-th-o-cao-cao-d-n/kim-soo-hyun-way-home-ost-queen-of-tears-ost?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (717352, '0x4ad9cdba92d1c97850276bfb211d57a68b8babc2', 0, 1, '2024-05-06 19:33:55+00', 0, 8, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 809, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 923, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lucy-152635109/2022a1\"}","{\"url\":\"https://media3.giphy.com/media/ZYWH5fVJyyoDzFbJUL/giphy.gif?cid=4f4edd02j7ju10rk2u6imygv0j141lxiz9sf23ldvyu6pc65&ep=v1_gifs_search&rid=giphy.gif\"}"}', 'banmal-mode'), - (785815, '0x7de76fec194b7bb078f99c47d2342ac150cbcfbd', 0, 1, '2024-05-07 02:29:17+00', 0, 1, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3433, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/q1tB7yLk4AEAvVMTA\"}"}', 'sonata'), - (732323, '0x1bb4db6d3beb11e79497926fe39465127911a91e', 0, 1, '2024-05-06 21:14:59+00', 0, 0, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1112, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 620, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1GkAjNMxRkjAgypk6\"}"}', 'sonata'), - (776428, '0x0b1ec68f19a6d2af95d5a3125bede6d6020d43e1', 0, 1, '2024-05-07 01:30:28+00', 0, 1, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1363, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2201, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/salemilese/crypto-boy?referral_source=link\"}"}', 'sonata'), - (775890, '0x8cb6d07a57e2fc0eb5ea528cb719e5a868ac2fd5', 0, 1, '2024-05-07 01:28:35+00', 0, 1, '{"fid": 500300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/39c71e16-1dd3-40ec-0491-f015afaaea00/rectcrop3", "profile": {"bio": {"text": "I''m mad of all kinds of drinks 🍸", "mentioned_profiles": []}}, "username": "swoo", "power_badge": false, "display_name": "Drunken_Sia🎩", "active_status": "inactive", "verifications": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "follower_count": 364, "custody_address": "0x60069e3161a3d5b14d19c56724126c2a16161cef", "following_count": 378, "verified_addresses": {"eth_addresses": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MnZzf\"}"}', 'sonata'), - (786031, '0xee22264389a03cee4583c92176e7252f9c69e96f', 0, 1, '2024-05-07 02:30:42+00', 0, 1, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 774, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 314, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JRCgzcWVsjwLuZMi8\"}"}', NULL), - (688215, '0x4c1c22c6493621b96f156b0b5966133e5ccaec01', 0, 1, '2024-05-06 17:11:04+00', 0, 3, '{"fid": 413717, "object": "user", "pfp_url": "https://i.imgur.com/VOOiRWF.jpg", "profile": {"bio": {"text": "Hi, nice to meet you.💞\nfood photography/South Korea 🇰🇷 \nFollow/f4f/follow4follow\n먹캐스터, 음식, 일상, 여행, Degen, base\n\n맞팔은 댓글달아주시면 늦어도갑니다🫂\n", "mentioned_profiles": []}}, "username": "ggomde", "power_badge": false, "display_name": "ggomdeFoody🎩 ", "active_status": "inactive", "verifications": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "follower_count": 2689, "custody_address": "0xeef0262fd74c8474d1f5724ac2d0eaa2769f281a", "following_count": 2569, "verified_addresses": {"eth_addresses": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/snow-flower-by-v-of-bts-feat-peakboy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (686356, '0x97d60a665dd1f04b32e46ab3cd9e22b0c7b09058', 0, 1, '2024-05-06 17:01:22+00', 0, 3, '{"fid": 413717, "object": "user", "pfp_url": "https://i.imgur.com/VOOiRWF.jpg", "profile": {"bio": {"text": "Hi, nice to meet you.💞\nfood photography/South Korea 🇰🇷 \nFollow/f4f/follow4follow\n먹캐스터, 음식, 일상, 여행, Degen, base\n\n맞팔은 댓글달아주시면 늦어도갑니다🫂\n", "mentioned_profiles": []}}, "username": "ggomde", "power_badge": false, "display_name": "ggomdeFoody🎩 ", "active_status": "inactive", "verifications": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "follower_count": 2689, "custody_address": "0xeef0262fd74c8474d1f5724ac2d0eaa2769f281a", "following_count": 2569, "verified_addresses": {"eth_addresses": ["0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0", "0x443859a0a0a98d54e48de4d96b6ffe569fef68d8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/supertuna-by-jin-of-bts?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (743251, '0x46096e97ffde142f18bea67a628b6764d86dc9ed', 0, 1, '2024-05-06 22:50:59+00', 0, 2, '{"fid": 503140, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2de648f-2d6d-4a8b-61c3-f84fe3ecb200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mtm", "power_badge": false, "display_name": "Khgoo", "active_status": "inactive", "verifications": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "follower_count": 1338, "custody_address": "0xb9b977dc77ca2b13c12603793f1d7ef9e8739f6b", "following_count": 1563, "verified_addresses": {"eth_addresses": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KB7r8\"}"}', 'sonata'), - (760718, '0x7b61654113c313d21d57262f87746a6b20313ecd', 0, 1, '2024-05-07 00:13:56+00', 0, 0, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 809, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 914, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pshbfg99gwr0/mp3-561885670?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (688235, '0xd982c5d0f63d5f12fdb5a03bb29c702e0809b28f', 0, 1, '2024-05-06 17:10:49+00', 0, 2, '{"fid": 425117, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ffa2806-e07f-4d46-1bd8-8fa9debacc00/rectcrop3", "profile": {"bio": {"text": "away", "mentioned_profiles": []}}, "username": "away", "power_badge": false, "display_name": "away", "active_status": "inactive", "verifications": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "follower_count": 1821, "custody_address": "0x0ae06a7d1fb20108b10f4e2ac171e512ccb8fbf4", "following_count": 1931, "verified_addresses": {"eth_addresses": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4BZYq5y27t9l02IyLElK6V?si=DtzgKHtjTGiOdeU62uR6nQ\"}"}', 'sonata'), - (776426, '0x2eb990e35141373ffaa89174427f8424ead3ae3a', 0, 1, '2024-05-07 01:31:06+00', 0, 5, '{"fid": 401276, "object": "user", "pfp_url": "https://i.imgur.com/pZKEwwK.jpg", "profile": {"bio": {"text": "소통/$DEGEN/BASE/맞팔 환영!!\n맞디젠 환영!!🔥🔥", "mentioned_profiles": []}}, "username": "namonamo", "power_badge": false, "display_name": "BTC PEPE", "active_status": "inactive", "verifications": ["0x6cb72521dd4f81e7e82a31d5e2b29cdcb5676cac", "0xb5b2071180eeabadf984d9d04b307ee3c24bfc51"], "follower_count": 3249, "custody_address": "0x77d94163176f4211cbee1142014ba44132d850ce", "following_count": 3910, "verified_addresses": {"eth_addresses": ["0x6cb72521dd4f81e7e82a31d5e2b29cdcb5676cac", "0xb5b2071180eeabadf984d9d04b307ee3c24bfc51"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fvnoynpFogrUqsGV7\"}"}', 'sonata'), - (686396, '0xedd9abd863e7d797a23da35b57cbde8a8f0c63a5', 0, 1, '2024-05-06 17:00:49+00', 0, 6, '{"fid": 501031, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/607e33f6-cda1-404b-5745-b489a5f57d00/rectcrop3", "profile": {"bio": {"text": "Let''s have fun talking!!Welcome anytime~😊소통은 언제나 즐거워~~♡언제든지 놀러오세요~~점찍고 돌아왔다!!! 복수할끄얏!!! 쉿!!!", "mentioned_profiles": []}}, "username": "radiant-mut7", "power_badge": false, "display_name": "Mut", "active_status": "inactive", "verifications": ["0xcc6e7d78fb55e1fa8d534a416cb6ab95abbed2a9"], "follower_count": 1311, "custody_address": "0x86cae105fe5574a01837314e14357969bf90ba6e", "following_count": 1681, "verified_addresses": {"eth_addresses": ["0xcc6e7d78fb55e1fa8d534a416cb6ab95abbed2a9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/satgotnick93/hoshi-left-and-right-feat-lee-mujin-seventeen-charlie-puth?si=d07681d9cdcc4fff8bdecdc2cdc73faf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (688491, '0x19fc31616227b05c15ab15edb07ecd1fdbaac7f1', 0, 1, '2024-05-06 17:13:11+00', 0, 1, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1623, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1614, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UpLb9KraPZFehxWF9\"}"}', 'sonata'), - (688797, '0x4d31a8a20536c44834703bdc18322ffd6a7609f7', 0, 1, '2024-05-06 17:14:07+00', 0, 0, '{"fid": 476554, "object": "user", "pfp_url": "https://i.imgur.com/28vc9Y7.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "amiri1370", "power_badge": false, "display_name": "Mr.amiri", "active_status": "inactive", "verifications": ["0xe8724dec7ff81d8eaaab9c9993571efb34ce1c4b", "0x6d1669abc661fa40f27ee2ce0b61940969b2e396"], "follower_count": 1382, "custody_address": "0x2a18bdb07649d8b922307237cda0f558a9bfcd6c", "following_count": 2248, "verified_addresses": {"eth_addresses": ["0xe8724dec7ff81d8eaaab9c9993571efb34ce1c4b", "0x6d1669abc661fa40f27ee2ce0b61940969b2e396"], "sol_addresses": []}}', '{"{\"url\":\"Listen to معین - تنهای تنها by Sepidedam 3 | ۳ سپیده دم on #SoundCloud https://on.soundcloud.com/uuiXT\"}"}', NULL), - (688793, '0x2f912300f7f6ea3ca37f1e5fde28cc0d54b92230', 0, 1, '2024-05-06 17:14:26+00', 0, 6, '{"fid": 434304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95701dd7-a042-4519-2faa-fce2958a4500/rectcrop3", "profile": {"bio": {"text": "03년생 대학생🫅 Major of Philosophy, 사업가(웰니스)\n /부-자유-행복 /\n20대에 부자되는 것이 목표/\nWarpcast and Degen(Base), will lead the ecosystem of Web3, so I bet my future on Degen.", "mentioned_profiles": []}}, "username": "bini77", "power_badge": false, "display_name": "BINI", "active_status": "inactive", "verifications": ["0x91bc5434327986706d60f1a0670a09e66fa81ae6"], "follower_count": 2712, "custody_address": "0x11f6ee630c2bfccbd057f6a2b9dbeaf409a8a4ff", "following_count": 2640, "verified_addresses": {"eth_addresses": ["0x91bc5434327986706d60f1a0670a09e66fa81ae6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UFzJe\"}"}', 'sonata'), - (715729, '0x9027eda62dc5f5d3709b8d918c99a79a0f33be11', 0, 1, '2024-05-06 19:23:10+00', 0, 1, '{"fid": 384337, "object": "user", "pfp_url": "https://i.imgur.com/ftRlSQ7.jpg", "profile": {"bio": {"text": "I’m a crypto lover", "mentioned_profiles": []}}, "username": "lieblin", "power_badge": false, "display_name": "GiGi", "active_status": "inactive", "verifications": ["0x37d90dd82b571a6fd5a60e12e8b2b32a64950453"], "follower_count": 154, "custody_address": "0xdc85099b95f012de30a742e52d3024d1240ff86c", "following_count": 400, "verified_addresses": {"eth_addresses": ["0x37d90dd82b571a6fd5a60e12e8b2b32a64950453"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1rfofaqEpACxVEHIZBJe6W?si=irjoi9KJRO-Qyzf8acSMyA\"}"}', NULL), - (684249, '0x0099d9a6ff3eecd73120a3249a0993b44c477774', 0, 1, '2024-05-06 16:45:03+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 483, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 562, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1wYLsHZTwVTfHs4JgqkUCe?si=kO5973NeR32H5C7LTxW-5Q\"}"}', NULL), - (740088, '0xd9f597b383f29d2f70f1df8aee03829225d3c622', 0, 1, '2024-05-06 22:22:24+00', 0, 2, '{"fid": 510066, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54eff8e4-0f53-4920-fafa-c2cc610b8a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!510066", "power_badge": false, "display_name": "Saeid", "active_status": "inactive", "verifications": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "follower_count": 208, "custody_address": "0x6fe4b05d6fc7c867484b9f98b1b5d5dff2c27bad", "following_count": 383, "verified_addresses": {"eth_addresses": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "sol_addresses": []}}', '{"{\"url\":\"Listen to David Guetta & OneRepublic - I Don''t Wanna Wait by David Guetta on #SoundCloud https://on.soundcloud.com/26pD6\"}"}', NULL), - (717743, '0xbdb10bf87ee07a11d36e21d0263182dfffac3390', 0, 1, '2024-05-06 19:38:39+00', 0, 4, '{"fid": 509905, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85331178-8354-4bab-5221-93531b51ea00/rectcrop3", "profile": {"bio": {"text": "Anime lover", "mentioned_profiles": []}}, "username": "!509905", "power_badge": false, "display_name": "itadori", "active_status": "inactive", "verifications": ["0xc44a6ac808081a005aec9b5fe4e4e6808dec0a97"], "follower_count": 94, "custody_address": "0xfa6e357eb57a0ceefad93297808a32e42d9e3ea2", "following_count": 281, "verified_addresses": {"eth_addresses": ["0xc44a6ac808081a005aec9b5fe4e4e6808dec0a97"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Ömer Bükülmezoğlu - Maktoub (Remix) by UNIVERSAL MUSIC STUDIO on #SoundCloud https://on.soundcloud.com/fGc9Q\"}"}', NULL), - (717353, '0xdd1be60097e70c3c60959f8859e7f4cd2505f764', 0, 1, '2024-05-06 19:35:03+00', 0, 2, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1408, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1623, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/v4uuJ17AcvEHmepn9\"}"}', 'sonata'), - (740115, '0x032bc21bd513ffde6613cee0f128130cc87fb620', 0, 1, '2024-05-06 22:21:03+00', 0, 2, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 301, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 508, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/0kdqcbwei4MDWFEX5f33yG?si=6-kYaiIsQWaKXfdCsXRPXA\"}"}', 'changepositive'), - (689040, '0xad705c588c41d800491fea4f7ea5754041d677b6', 0, 1, '2024-05-06 17:18:32+00', 0, 8, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 840, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 939, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kmndW\"}"}', 'banmal-mode'), - (688085, '0x01039b5752ee499b6dfa2465fc87e22b2e7b4769', 0, 1, '2024-05-06 17:09:18+00', 0, 2, '{"fid": 398028, "object": "user", "pfp_url": "https://i.imgur.com/xe5sfwP.jpg", "profile": {"bio": {"text": "Fire Dancer | Performing Artist | Yoga | Digital Artist | Creator | Musician | Web3 \n✨🌈🎩🔥⛓️🪐🎪🧘🏼‍♀️👩🏼‍💻 🔗 katwolfie.eth.limo ", "mentioned_profiles": []}}, "username": "katwolfie.eth", "power_badge": false, "display_name": "katwolfie🔥🎩", "active_status": "inactive", "verifications": ["0x495e4f8c59f9b2df760f77c42f27ea514697bf73"], "follower_count": 137, "custody_address": "0xca110bcc79af30175adf1788b54ea78c41d10820", "following_count": 387, "verified_addresses": {"eth_addresses": ["0x495e4f8c59f9b2df760f77c42f27ea514697bf73"], "sol_addresses": []}}', '{"{\"url\":\"https://newsletter.sound.xyz/collect-on-sound,-earn-dollarstrm?referrer=0x495E4f8C59f9b2df760F77C42f27ea514697bf73\"}"}', 'streamz'), - (716610, '0x6ebbd86a01b7c3b2589aa5c871a6c6d00e3f72bd', 1010, 1, '2024-05-06 19:29:45+00', 0, 3, '{"fid": 1136, "object": "user", "pfp_url": "https://i.imgur.com/NJZIVtB.jpg", "profile": {"bio": {"text": "building @seedclub @enjoytech.eth and writing about consumer crypto at paragraph.xyz/@joshcrnls.eth", "mentioned_profiles": []}}, "username": "joshcrnls", "power_badge": true, "display_name": "Josh Cornelius", "active_status": "inactive", "verifications": ["0xa251520154ca342f0b1d702bf5a56f78c982405b"], "follower_count": 2674, "custody_address": "0x9ea8c313cb5ede44d07c987a8c98aaabea03feb3", "following_count": 253, "verified_addresses": {"eth_addresses": ["0xa251520154ca342f0b1d702bf5a56f78c982405b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?song_tab=posts\"}"}', NULL), - (830931, '0x13adb1a17e7467c35e0845310f33c29ba2306d8a', 0, 1, '2024-05-07 04:17:34+00', 0, 6, '{"fid": 500429, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmd6sMDLmn7Lpkweb2hMmiLbH19pDQu5tAg4kk1nq6Kws3?filename=f9a4486d-f75d-43c3-a601-032529f51f86.png", "profile": {"bio": {"text": "Plz degen to the moon🚀", "mentioned_profiles": []}}, "username": "tomorrowluck", "power_badge": false, "display_name": "toluck", "active_status": "inactive", "verifications": ["0xddf8a6b32b77991de393f1fc94071c82cc901f62"], "follower_count": 2224, "custody_address": "0x2dc49c01a46362312124b681046420b7f0e9fd7e", "following_count": 2089, "verified_addresses": {"eth_addresses": ["0xddf8a6b32b77991de393f1fc94071c82cc901f62"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pCum55hFcyMwndHQ7\"}"}', 'sonata'), - (711709, '0x48c3044ba3c1bc83a74beea544eab25cdc7e3a2e', 0, 1, '2024-05-06 18:51:50+00', 0, 2, '{"fid": 409997, "object": "user", "pfp_url": "https://arweave.net/_wviIFcvCM6wEb3010FmnYEPCEH3fQC3e_qt4pPvRR0/", "profile": {"bio": {"text": "Builder / musician / degen\n\nhttps://www.swatchify.xyz/", "mentioned_profiles": []}}, "username": "blueish", "power_badge": true, "display_name": "matt ↑ ᖽ", "active_status": "inactive", "verifications": ["0x226a1dc08c24e217ddbbdf4298d41af4b4d47ca6"], "follower_count": 160, "custody_address": "0x2958b1ac522db1e47e2ab92e3d87c883d0b79cf8", "following_count": 309, "verified_addresses": {"eth_addresses": ["0x226a1dc08c24e217ddbbdf4298d41af4b4d47ca6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6mxQ7gweWm55I6zimCT2cl?si=VAQnSUcqSZa47CfMWe6KAA&context=spotify%3Aalbum%3A2FRYStnujhKjinEFXUXBG1\"}"}', 'no-channel'), - (730913, '0xa213fedd9cf44ce8ad61f3545cec617bb19fa5e1', 0, 1, '2024-05-06 20:59:33+00', 0, 1, '{"fid": 448267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c084f2f-96ec-40a4-de8f-330f4bd3b000/rectcrop3", "profile": {"bio": {"text": "i love crypt♡cat♡budgie♡and‥\n皆さまよろしくお願いします♡\nフォロバします♡健康や趣味に関することについてつぶやきます♡\nおたんこナースです♡", "mentioned_profiles": []}}, "username": "kananap", "power_badge": false, "display_name": "kananap🔮🩵@health", "active_status": "inactive", "verifications": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "follower_count": 505, "custody_address": "0x3bc7cc9fb63fa1c4b70ac5aa8c80475b784f5a6c", "following_count": 753, "verified_addresses": {"eth_addresses": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pc98wAr3vBGTDZxe9\"}"}', 'musicjp'), - (743274, '0xbb5a39a05ab4a9085bfbf95d389bfb48cbca9b9f', 0, 1, '2024-05-06 22:51:38+00', 0, 6, '{"fid": 491718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44f5849-69cc-4805-c6aa-5ef274a2fa00/rectcrop3", "profile": {"bio": {"text": "잘부탁드려요 맞팔갑니다 디젠 파이팅", "mentioned_profiles": []}}, "username": "hduck43", "power_badge": false, "display_name": "hduck43", "active_status": "inactive", "verifications": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "follower_count": 1406, "custody_address": "0x313bb25e8e5a06110334088d0db7fb4979a48e8b", "following_count": 2317, "verified_addresses": {"eth_addresses": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/w9tv9JMHEhfkZhKx8\"}"}', 'sonata'), - (786510, '0x6544c5e9ad9f1d6acbb7e6361d806c4a1258aa77', 0, 1, '2024-05-07 02:36:20+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Breathe by Yeat on #SoundCloud https://on.soundcloud.com/62Pai\"}"}', NULL), - (760876, '0xae742c477ec54376d7cbf222e3c3c3327d81814d', 0, 1, '2024-05-07 00:14:20+00', 0, 20, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1724, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1779, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3cGp1jXxLReLKz7QgVbWZR?si=o0n_TBdtTNq09rwFeM7QcA\"}"}', 'sonata'), - (832362, '0xd66db4dd60de3219acce4a2c71355a40c7aca36a', 0, 1, '2024-05-07 04:19:04+00', 0, 4, '{"fid": 1655, "object": "user", "pfp_url": "https://i.imgur.com/9TxfKZn.jpg", "profile": {"bio": {"text": "$DEGEN President ", "mentioned_profiles": []}}, "username": "juan", "power_badge": true, "display_name": "Juan 🎩", "active_status": "inactive", "verifications": ["0xad5c39984149aa60663bbac47676f84192c04ca8"], "follower_count": 1691, "custody_address": "0xb5e6353fb6d02a9a66e7b83280927b16d87577d8", "following_count": 624, "verified_addresses": {"eth_addresses": ["0xad5c39984149aa60663bbac47676f84192c04ca8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7vafql00S0tEJ8tPpRZFFz?si=5854cd00346e4fc5\"}"}', 'sonata'), - (923952, '0x287e951ff5305c2a58d548d91d66e91c49ebd7fc', 0, 1, '2024-05-07 07:32:41+00', 0, 2, '{"fid": 428666, "object": "user", "pfp_url": "https://i.imgur.com/SYXkR8Y.jpg", "profile": {"bio": {"text": "일상공유하는 새로운공간 💙🩵💜\n새로운 사람들과의 만남 💙🩵💜", "mentioned_profiles": []}}, "username": "blue9", "power_badge": false, "display_name": "Blue9🩵💙", "active_status": "inactive", "verifications": ["0xab2787ce8b79cb8a94fbbf712e03cc5a5078bc41"], "follower_count": 2158, "custody_address": "0x65432b79520c2e25255f173ef8a01e6f1b565aec", "following_count": 2230, "verified_addresses": {"eth_addresses": ["0xab2787ce8b79cb8a94fbbf712e03cc5a5078bc41"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/552gf8zmzjDdBSc26\"}"}', 'sonata'), - (741936, '0xe381035b7279f3673d004ea83d732198c928913a', 0, 1, '2024-05-06 22:31:37+00', 0, 1, '{"fid": 9789, "object": "user", "pfp_url": "https://i.seadn.io/gae/TmVq_93ZIKlBQ-FIL7dwMX040NBZRtgcAGDNjgijNtFe058XHMIh0oWQjT5jwTkldWx3xWlEg7_-JeVfV0WvDOFnv2XLJvgrQCYS?w=500&auto=format", "profile": {"bio": {"text": "Defi expert, The075Dao creator, Music Artist, AI, VR/AR Nft artist", "mentioned_profiles": []}}, "username": "bennyj504", "power_badge": true, "display_name": "BennyJ504 🎩🔵", "active_status": "inactive", "verifications": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "follower_count": 474, "custody_address": "0xcf508cb03936e2730a301d49deaf262ddf3a8745", "following_count": 243, "verified_addresses": {"eth_addresses": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bennyj504/sensei?si=ca48d45a0f024ac1aab5abf22eb48cb3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (733164, '0xb38c9f1b4c54aa8513fd7673043f5f4e16d59d9b', 0, 1, '2024-05-06 21:27:09+00', 0, 2, '{"fid": 448267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c084f2f-96ec-40a4-de8f-330f4bd3b000/rectcrop3", "profile": {"bio": {"text": "i love crypt♡cat♡budgie♡and‥\n皆さまよろしくお願いします♡\nフォロバします♡健康や趣味に関することについてつぶやきます♡\nおたんこナースです♡", "mentioned_profiles": []}}, "username": "kananap", "power_badge": false, "display_name": "kananap🔮🩵@health", "active_status": "inactive", "verifications": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "follower_count": 505, "custody_address": "0x3bc7cc9fb63fa1c4b70ac5aa8c80475b784f5a6c", "following_count": 753, "verified_addresses": {"eth_addresses": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Wph12qe7d4F6U7vW6\"}"}', 'musicjp'), - (742454, '0x0c49d8b8e88b66b3f38b76fa624d2a58373c52a3', 0, 1, '2024-05-06 22:42:09+00', 0, 6, '{"fid": 503328, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59e830e-0465-490d-c526-b964d43c5900/rectcrop3", "profile": {"bio": {"text": "Dr.kk 3배 폭격맨 💣🫡🔥무조건 갑니다\nDr.k", "mentioned_profiles": []}}, "username": "hh7035881", "power_badge": false, "display_name": "Dr.kk", "active_status": "inactive", "verifications": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "follower_count": 1368, "custody_address": "0x2cc415f9dfa832bd167eb5d5d1c42e144d868c40", "following_count": 1422, "verified_addresses": {"eth_addresses": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/V36jNfsnANzyBvo97\"}"}', 'sonata'), - (733163, '0x874b4596f85674b55161583104e60015c2a2c71b', 0, 1, '2024-05-06 21:27:33+00', 10, 2, '{"fid": 448267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c084f2f-96ec-40a4-de8f-330f4bd3b000/rectcrop3", "profile": {"bio": {"text": "i love crypt♡cat♡budgie♡and‥\n皆さまよろしくお願いします♡\nフォロバします♡健康や趣味に関することについてつぶやきます♡\nおたんこナースです♡", "mentioned_profiles": []}}, "username": "kananap", "power_badge": false, "display_name": "kananap🔮🩵@health", "active_status": "inactive", "verifications": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "follower_count": 505, "custody_address": "0x3bc7cc9fb63fa1c4b70ac5aa8c80475b784f5a6c", "following_count": 753, "verified_addresses": {"eth_addresses": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mbMxhdjHGT4doNcM7\"}"}', 'musicjp'), - (786511, '0xefe72d0a7c0653783af1cf55ea5da6ba3c32bba4', 0, 1, '2024-05-07 02:37:31+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bcfmoneyman/blockchain?si=195fa65d0c2f4b88b5288ba939cd4d02&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (744660, '0x2099129a4c0aef618588c760a46c1c44ab17faaf', 0, 1, '2024-05-06 23:11:45+00', 0, 1, '{"fid": 401441, "object": "user", "pfp_url": "https://i.imgur.com/xw6m1Wy.jpg", "profile": {"bio": {"text": "반응이 늦더라도 조금만 기다려주세요. \n", "mentioned_profiles": []}}, "username": "woawoame", "power_badge": false, "display_name": "Lemon", "active_status": "inactive", "verifications": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "follower_count": 2049, "custody_address": "0xe8b627f4c3b83022f8bacbd4d0f957e1f31e6318", "following_count": 2320, "verified_addresses": {"eth_addresses": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iqZTu\"}"}', 'sonata'), - (743541, '0xc6113285be591699c1de2e69361499f6b2f0dd05', 0, 1, '2024-05-06 22:53:45+00', 0, 6, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2906, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3316, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qeg1EqVm82sBrzTs9\"}"}', 'sonata'), - (830387, '0x7ad5ed4116133cf5f031ed6bb0bb7be2be9c5bf8', 0, 1, '2024-05-07 04:15:00+00', 0, 7, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 2042, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 1994, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YnmzzdP8mjNRs7hw5\"}"}', 'sonata'), - (743959, '0x4ec7d1f7d5a73e42341ca3bb4721b935361c4802', 0, 1, '2024-05-06 23:01:19+00', 0, 1, '{"fid": 512692, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1efd32d1-cca4-4345-0a6b-933f15d44500/rectcrop3", "profile": {"bio": {"text": "Crypto lover, yogini,", "mentioned_profiles": []}}, "username": "!512692", "power_badge": false, "display_name": "Eve", "active_status": "inactive", "verifications": ["0x9e364732b783715384af684d146b7cc5b682b107"], "follower_count": 67, "custody_address": "0x21009b0bad842a5466a44a66127704d93ee1815f", "following_count": 135, "verified_addresses": {"eth_addresses": ["0x9e364732b783715384af684d146b7cc5b682b107"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dMy2g\"}"}', 'sonata'), - (768469, '0xb1f3925d464ef408058347b2debc20cf23d1cb34', 0, 1, '2024-05-07 00:52:43+00', 0, 1, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 111, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 321, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://soundcloud.com/eltreintaytres/at-your-doorstep?in=eltreintaytres/sets/djjsets\"}"}', NULL), - (740652, '0x57ffcc5d571dd11c147e04b8e0e92aaec8a04019', 0, 1, '2024-05-06 22:24:07+00', 0, 6, '{"fid": 449301, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreibovradvohaeu53sjhal37kvvaszwdbf5hd4uiyf4lsf7bqu2q6yy", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "milad47", "power_badge": false, "display_name": "Milad.Eth🍖🎩🦕🥷🔄", "active_status": "inactive", "verifications": ["0x29ec3409729ff4cbed66d69a88ac94234b8c0ca1", "0x9e8d4c9ff8605f8aa322d3b99c89f5e7b6a18598"], "follower_count": 741, "custody_address": "0x90f1e85d700a9e7b724aaaa2dfd9d20da1a3b4da", "following_count": 1161, "verified_addresses": {"eth_addresses": ["0x29ec3409729ff4cbed66d69a88ac94234b8c0ca1", "0x9e8d4c9ff8605f8aa322d3b99c89f5e7b6a18598"], "sol_addresses": ["DYp14v5CpZd37hgjmUHsPK9UgbBwsJiY2BAUNjfFFjci"]}}', '{"{\"url\":\"https://open.spotify.com/track/561jH07mF1jHuk7KlaeF0s?si=owEN2NsrSAeQ7g801k9AOA\"}"}', NULL), - (744657, '0xce185954be94ba81db01d4dac0a0bf39aedf6ee3', 0, 1, '2024-05-06 23:14:16+00', 0, 9, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3902, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3333, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6m4DC\"}"}', 'sonata'), - (744655, '0x12ce4d52c039da9a6ee952496f646b0dcc9ac995', 0, 1, '2024-05-06 23:12:14+00', 0, 2, '{"fid": 498476, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af794b95-3b7f-4649-d07e-830ab7c91700/rectcrop3", "profile": {"bio": {"text": "I promised to achieve my dreams", "mentioned_profiles": []}}, "username": "naruto0", "power_badge": false, "display_name": "Naruto 🎩", "active_status": "inactive", "verifications": ["0x2db372ed27478c56c499a57089939f83cf4dae98"], "follower_count": 588, "custody_address": "0x4d2ae8307f6ad0cb06bc4e33f72bcfac8030d0ce", "following_count": 746, "verified_addresses": {"eth_addresses": ["0x2db372ed27478c56c499a57089939f83cf4dae98"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/adelemusic/someone-like-you\"}"}', 'sonata'), - (781582, '0x9e3792646f76d703a46e22ab4e1d79da2788bd84', 111, 1, '2024-05-07 01:58:58+00', 0, 9, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 449, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 298, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZHNQYpWo9N6Rcpi57\"}"}', NULL), - (762090, '0xaffc31188f64a7e2b4fd6d4f29270c61b4029634', 0, 1, '2024-05-07 00:17:44+00', 0, 2, '{"fid": 452471, "object": "user", "pfp_url": "https://i.imgur.com/aZC8Y3z.jpg", "profile": {"bio": {"text": "함께해요!!\n\n화이팅입니다!!", "mentioned_profiles": []}}, "username": "tedkwon", "power_badge": false, "display_name": "tedkwon", "active_status": "inactive", "verifications": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "follower_count": 1027, "custody_address": "0x72dadb57669d45eb0fcf52c5c277d86c3998ae48", "following_count": 1091, "verified_addresses": {"eth_addresses": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jin-roh-353085509/kyzpaungqnbk?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (741931, '0x25eef215e716022c4bdd816e985baca421789c11', 0, 1, '2024-05-06 22:32:41+00', 0, 0, '{"fid": 9789, "object": "user", "pfp_url": "https://i.seadn.io/gae/TmVq_93ZIKlBQ-FIL7dwMX040NBZRtgcAGDNjgijNtFe058XHMIh0oWQjT5jwTkldWx3xWlEg7_-JeVfV0WvDOFnv2XLJvgrQCYS?w=500&auto=format", "profile": {"bio": {"text": "Defi expert, The075Dao creator, Music Artist, AI, VR/AR Nft artist", "mentioned_profiles": []}}, "username": "bennyj504", "power_badge": true, "display_name": "BennyJ504 🎩🔵", "active_status": "inactive", "verifications": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "follower_count": 474, "custody_address": "0xcf508cb03936e2730a301d49deaf262ddf3a8745", "following_count": 243, "verified_addresses": {"eth_addresses": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bennyj504/sensei?si=ca48d45a0f024ac1aab5abf22eb48cb3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (731146, '0x0db26914de10e03f39d49af1e50473ee0d4e7f42', 0, 1, '2024-05-06 21:04:07+00', 0, 0, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1353, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1481, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ER8fo7jJVSjrbjh27\"}"}', 'musicjp'), - (743960, '0x608717c54920627a220e2c10b8560e05b1ce46de', 0, 1, '2024-05-06 23:00:37+00', 0, 3, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 417, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/SLx5kZN6kfEM9EpL9\"}"}', 'anime-japan'), - (786302, '0x63a69c85a1e1bf598ca18ca7370f745e9e1c5ecd', 0, 1, '2024-05-07 02:34:29+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 774, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 314, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kiqrd18yUYdV2JyCA\"}"}', NULL), - (867837, '0x7ed5230fd747de4fe766dbd0e6abd4df35f06908', 0, 1, '2024-05-07 05:47:37+00', 0, 3, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3435, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yUc6XyPdyJ6xTF9T6\"}"}', 'sonata'), - (964442, '0x93e603b539aa9a84dccef2767beaa82bc733ac46', 0, 1, '2024-05-07 09:29:24+00', 0, 3, '{"fid": 497494, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ccca4df-dfd9-488c-7877-11c6be57bb00/rectcrop3", "profile": {"bio": {"text": "I love sports, especially football ، Looking for adventure in Warpcast", "mentioned_profiles": []}}, "username": "mahdi1077", "power_badge": false, "display_name": "Mahdi1077", "active_status": "inactive", "verifications": ["0x1865039a5490cb55f78776de61e186a9f12aff46"], "follower_count": 274, "custody_address": "0x30f33a3af0d35357617c8d9383c626ac3832baf4", "following_count": 367, "verified_addresses": {"eth_addresses": ["0x1865039a5490cb55f78776de61e186a9f12aff46"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p8HddhG1xeQiSBpK8\"}"}', NULL), - (741530, '0xe6555b2382a0ec82b30810b82f5b260c15945731', 0, 1, '2024-05-06 22:29:53+00', 0, 0, '{"fid": 393527, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6e642c6-d7ff-436c-7ba0-c32285120e00/rectcrop3", "profile": {"bio": {"text": "I love cryptocurrency ", "mentioned_profiles": []}}, "username": "orbitals", "power_badge": false, "display_name": "Orbital🎩🍖", "active_status": "inactive", "verifications": ["0xb55b3556cc937633f0e78637c2bd424f5c5da2e7"], "follower_count": 1592, "custody_address": "0xb55b3556cc937633f0e78637c2bd424f5c5da2e7", "following_count": 1784, "verified_addresses": {"eth_addresses": ["0xb55b3556cc937633f0e78637c2bd424f5c5da2e7"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/sepehr-eghbali-329860278/nasini-el-donya-ragheb-alama-sepehr-eghbali-cover\"}"}', 'sonata'), - (733029, '0xddaf12b602c3b011c28d4397dd45821070bf49ec', 0, 1, '2024-05-06 21:25:03+00', 0, 9, '{"fid": 499252, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6426fa39-cb02-434b-217b-fffbaa4e2c00/rectcrop3", "profile": {"bio": {"text": "소통왕/반사왕 될게요❄❄\n절대 잊지 않고 찾아봬요😊", "mentioned_profiles": []}}, "username": "nunuwillump", "power_badge": false, "display_name": "NUNU", "active_status": "inactive", "verifications": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "follower_count": 2259, "custody_address": "0x69b0108a354647ac6467250dbad5323cfee38319", "following_count": 2262, "verified_addresses": {"eth_addresses": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zNeZQ\"}"}', NULL), - (762281, '0xe8764deb9d009a02d053f51f350ad16ae854de40', 0, 1, '2024-05-07 00:19:22+00', 0, 3, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1705, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1302, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/gYX8qV4taq4tymZS8\"}"}', 'sonata'), - (786522, '0xc913ec1e23b1c3ede6e23902b3659d8d33fe71ba', 0, 1, '2024-05-07 02:35:58+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/charlieonnafriday/after-hours?si=e589e08fc90a420fbf277234ee81adc6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (871081, '0xaf6b11476952cee23ae25156a0d21f90cec71a2f', 0, 1, '2024-05-07 05:53:12+00', 0, 0, '{"fid": 448959, "object": "user", "pfp_url": "https://i.imgur.com/GglXGFC.jpg", "profile": {"bio": {"text": "Comic Persion", "mentioned_profiles": []}}, "username": "arminhamed", "power_badge": false, "display_name": "Armin Hamed", "active_status": "inactive", "verifications": ["0xb88079585bdf8e36e004af32f3c7475ee376f059"], "follower_count": 445, "custody_address": "0x452affa00ae0261409d620120903064d251b65c8", "following_count": 646, "verified_addresses": {"eth_addresses": ["0xb88079585bdf8e36e004af32f3c7475ee376f059"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/enriqueiglesias/i-like-it-1?ref=clipboard&p=i&c=0&si=1E4A56D1488F4CC2860EA6A1225DB150&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (789008, '0x93bde21003b5393048b1bef2ddb2e8e965a339f4', 0, 1, '2024-05-07 03:02:45+00', 0, 4, '{"fid": 502049, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf5547fa-26c5-4e6a-c79f-fb509b567c00/rectcrop3", "profile": {"bio": {"text": "I''m hacker in Usa", "mentioned_profiles": []}}, "username": "welloworld", "power_badge": false, "display_name": "Codemania", "active_status": "inactive", "verifications": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "follower_count": 1635, "custody_address": "0x135ad7989e8ee71ad4f272e44d1eecd2278eecc8", "following_count": 786, "verified_addresses": {"eth_addresses": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/selenophlie/damons-year-yours\"}"}', 'sonata'), - (900670, '0x47980fb617ecacc9df0f59f6ebb7efac66404995', 0, 1, '2024-05-07 06:48:49+00', 0, 2, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/winandwoo/naturaldisasterremix\"}"}', NULL), - (762283, '0x4401480224acde9b213ef987752e11b805f2e827', 0, 1, '2024-05-07 00:19:19+00', 0, 3, '{"fid": 504204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreianrx2ogufjpdxymunborokuyf3xs4lgloqcwtme3slrxnuanohxe", "profile": {"bio": {"text": "Degen", "mentioned_profiles": []}}, "username": "perans", "power_badge": false, "display_name": "peransa🎩", "active_status": "inactive", "verifications": ["0x88b34343ff69f5474ebf82d658760c3786175a7c"], "follower_count": 514, "custody_address": "0x0d1c0e7a7e64c90577b8fc0b747970e32a069350", "following_count": 712, "verified_addresses": {"eth_addresses": ["0x88b34343ff69f5474ebf82d658760c3786175a7c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to I Like It (Jason Nevins Remix) [feat. Pitbull] by Enrique Iglesias on #SoundCloud https://on.soundcloud.com/6XMPT\"}"}', NULL), - (770258, '0xbcb7f90bf5ebe062b9e1b7ddbb56497dbc2e155a', 0, 1, '2024-05-07 01:05:34+00', 0, 3, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1531, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1801, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok?si=0aac2b8e419c4e56bbec5d0edfdd671a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (741544, '0x234c0c3d736037c4a4c943cba476ef88033ce64b', 0, 1, '2024-05-06 22:29:07+00', 0, 1, '{"fid": 420765, "object": "user", "pfp_url": "https://i.imgur.com/GTp8uTs.jpg", "profile": {"bio": {"text": "Software Eng. Dumb dad. Aging emo. Reply guy.", "mentioned_profiles": []}}, "username": "big-red", "power_badge": true, "display_name": "Red 🎩", "active_status": "inactive", "verifications": ["0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8"], "follower_count": 1110, "custody_address": "0x9da027fe76c7fcae3ae9abba775641e7a9d473a8", "following_count": 193, "verified_addresses": {"eth_addresses": ["0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Ht5pnWjFGk2quUvsv00TE?si=gfTjftfXR1eivz023vuhJw\"}"}', 'emo'), - (744079, '0x6e0c65c993bda7b8cbf80152fdb1f7d3eeabd8de', 0, 1, '2024-05-06 23:04:50+00', 0, 7, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.!!", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 820, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 926, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-182530694/sets/baklyx2rcibb\"}"}', 'sonata'), - (786029, '0xd8b872a3fdd568b187bd235e3c67a34316afde9d', 0, 1, '2024-05-07 02:31:19+00', 0, 1, '{"fid": 500896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad084dc3-15c2-4a29-147a-3f9b87309800/rectcrop3", "profile": {"bio": {"text": "like music youtube culture food \nno matter what like it", "mentioned_profiles": []}}, "username": "joetaka", "power_badge": false, "display_name": "joetaka", "active_status": "inactive", "verifications": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "follower_count": 814, "custody_address": "0x5db012ed31ad2e1ac2db182dae0f51cf582acb70", "following_count": 886, "verified_addresses": {"eth_addresses": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-861730651/lisa-gurenge-fujikawa-chiai-kobasolo-acoustic-cover\"}"}', NULL), - (829670, '0x8cc7458b0b2e5426c29c4506cd20d37c84953017', 0, 1, '2024-05-07 04:13:55+00', 0, 1, '{"fid": 501188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b342701-7f59-4b3f-8a8d-87bfaa186a00/rectcrop3", "profile": {"bio": {"text": "Manners & money makes a man | Daily life🎩 | Day trader🌱 | 중고신입👻 | 실패는 없다✨", "mentioned_profiles": []}}, "username": "k729", "power_badge": false, "display_name": "regor🎩🍖", "active_status": "inactive", "verifications": ["0x8ee5c408725ccdb8cc8bfc116f3bcbb4a039d567"], "follower_count": 693, "custody_address": "0x75dec736faeb7553ea2835646cba74976738894d", "following_count": 694, "verified_addresses": {"eth_addresses": ["0x8ee5c408725ccdb8cc8bfc116f3bcbb4a039d567"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/satgotnick4/rh1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (786373, '0x4eab88edcf7a7f03e14d655a92be3aa0c20069c9', 0, 1, '2024-05-07 02:35:05+00', 0, 1, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 604, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 896, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/geum-howon/fkee5y8fkjbe?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (742260, '0x11013eefc0586022391734ab787b63ecbbdf9cff', 0, 1, '2024-05-06 22:37:56+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2929, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2361, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JghWa\"}"}', 'sonata'), - (741321, '0x34d99338b47d4f9ab50b12bbfac0b1a34e773d6e', 0, 1, '2024-05-06 22:26:49+00', 0, 2, '{"fid": 455272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3835d739-026b-441b-fc0a-79f6fc734700/rectcrop3", "profile": {"bio": {"text": "I have enthusiasm about life,airdrop,book,coffee🦋💓\n😍🫀\n🍖💸🎩🎩", "mentioned_profiles": []}}, "username": "parisa78", "power_badge": false, "display_name": "pari", "active_status": "inactive", "verifications": ["0x5b4edfbd9f4e731d1c9f43c0f5a0dbe05b88a9bf", "0x4eafa1530f287bd74206e01819fbf18adcd81298"], "follower_count": 768, "custody_address": "0x79500c8a4c9b365b59c0b828a680075442ce3db9", "following_count": 892, "verified_addresses": {"eth_addresses": ["0x5b4edfbd9f4e731d1c9f43c0f5a0dbe05b88a9bf", "0x4eafa1530f287bd74206e01819fbf18adcd81298"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MvuDaQq24hPWw2ps5\"}"}', NULL), - (744088, '0x1d25d62647f7c7c60bfd0e936c80e43daba84760', 0, 1, '2024-05-06 23:03:33+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 3049, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 466, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0pRyOQjr12h9RBEFmhbTQc?si=vaerglTeR1eizepIthaWQA&pi=e-JDvWkqDaTtm5\"}"}', NULL), - (732322, '0xd9ac67e2be853cf6f2242717da491296ae61e26e', 0, 1, '2024-05-06 21:12:55+00', 0, 1, '{"fid": 461146, "object": "user", "pfp_url": "https://i.imgur.com/Ra3wWuT.jpg", "profile": {"bio": {"text": "I''m 35 year old one of interesting of web and internet", "mentioned_profiles": []}}, "username": "subhan68", "power_badge": false, "display_name": "Subhan", "active_status": "inactive", "verifications": ["0x74ae9c2a2cd699302a90156a17658a180e378ac4"], "follower_count": 134, "custody_address": "0x025973294b87fbf1b675b7d084ae17da5fec1d76", "following_count": 181, "verified_addresses": {"eth_addresses": ["0x74ae9c2a2cd699302a90156a17658a180e378ac4"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/metroboomin/bbl-drizzy-bpm-150-mp3\"}"}', NULL), - (786140, '0x98609fa5a74718cb255caa6c1e78e08d5b0f686c', 0, 1, '2024-05-07 02:32:33+00', 0, 2, '{"fid": 496920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b363a068-ae3b-4156-75bc-baa2b63ebf00/rectcrop3", "profile": {"bio": {"text": "선팔 / 맞팔 / 파이어족 가보자!\n맞디 금지!\nFire movement within 10 years", "mentioned_profiles": []}}, "username": "jonathanhwang", "power_badge": false, "display_name": "파이어족 가보자", "active_status": "inactive", "verifications": ["0xdfb9e76960bbad0c1dfc11795579b4bbe105c429"], "follower_count": 1354, "custody_address": "0xd5cabea8674c387418c2cbde2c79c3826c67c55e", "following_count": 1472, "verified_addresses": {"eth_addresses": ["0xdfb9e76960bbad0c1dfc11795579b4bbe105c429"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ks9ZKoMvK4gzXFun9\"}"}', 'sonata'), - (788521, '0xe3eaa58907a38fd655520e49644d24a7a4588b2e', 0, 1, '2024-05-07 02:57:49+00', 0, 3, '{"fid": 307726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5503b1b-bfea-4f4f-a491-50ecd5a91300/rectcrop3", "profile": {"bio": {"text": "SearchFi is Bullish🔥F4F ", "mentioned_profiles": []}}, "username": "elonmask88", "power_badge": false, "display_name": "ElonMask", "active_status": "inactive", "verifications": ["0x9367cf8cbf3c172d7c2471edbbf0f3699bbdb9a1"], "follower_count": 728, "custody_address": "0xad1f609211ebf5791f452677878fca14e7cf0337", "following_count": 737, "verified_addresses": {"eth_addresses": ["0x9367cf8cbf3c172d7c2471edbbf0f3699bbdb9a1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yE8w6uaAaJNrHYoy5\"}"}', 'sonata'), - (786382, '0x4bfe5e6fdf7aa41515602ece17342cc42c30196c', 0, 1, '2024-05-07 02:35:20+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 774, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 314, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dQ7EYoj642r4Cdde8\"}"}', NULL), - (786519, '0x24766ac8d89f3c859a8699e6e71087f498de0514', 0, 1, '2024-05-07 02:35:36+00', 0, 1, '{"fid": 337385, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/de359732-8bf7-4cdb-7be3-6d87bc1a5200/original", "profile": {"bio": {"text": "I love warpcast 🎩", "mentioned_profiles": []}}, "username": "wowswows", "power_badge": false, "display_name": "wowwow🎩🐲 🐉🌸🍖", "active_status": "inactive", "verifications": ["0x6006b05b3e8cc9c73130c2a55f23a2320014721f"], "follower_count": 1853, "custody_address": "0x2fd12107c1c653886fad2b499f3ba596df79a2bb", "following_count": 1588, "verified_addresses": {"eth_addresses": ["0x6006b05b3e8cc9c73130c2a55f23a2320014721f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xeNaMdUjK9r7vAXF9\"}"}', 'sonata'), - (741928, '0x4dbbe3b959443c71e82f27b6e8c0817f78beaa68', 0, 1, '2024-05-06 22:35:09+00', 0, 1, '{"fid": 9789, "object": "user", "pfp_url": "https://i.seadn.io/gae/TmVq_93ZIKlBQ-FIL7dwMX040NBZRtgcAGDNjgijNtFe058XHMIh0oWQjT5jwTkldWx3xWlEg7_-JeVfV0WvDOFnv2XLJvgrQCYS?w=500&auto=format", "profile": {"bio": {"text": "Defi expert, The075Dao creator, Music Artist, AI, VR/AR Nft artist", "mentioned_profiles": []}}, "username": "bennyj504", "power_badge": true, "display_name": "BennyJ504 🎩🔵", "active_status": "inactive", "verifications": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "follower_count": 474, "custody_address": "0xcf508cb03936e2730a301d49deaf262ddf3a8745", "following_count": 243, "verified_addresses": {"eth_addresses": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bennyj504/jammin-on-alpha-centauri?si=f3f80c1521c749dba8393797089c4736&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (830934, '0xa9d80d7a4fb81308bc47d560b525130e6bacaf9c', 0, 1, '2024-05-07 04:16:37+00', 0, 0, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 2059, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2888, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7cYad\"}"}', 'sonata'), - (786375, '0x0ec2942bcec37aef683a80f5b751865d4da7fbe0', 0, 1, '2024-05-07 02:34:51+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 774, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 314, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VNYGpwdED6sBcQva7\"}"}', NULL), - (951717, '0xf94beb00a942a08709b9410128794283014b7793', 0, 1, '2024-05-07 08:57:05+00', 0, 0, '{"fid": 391839, "object": "user", "pfp_url": "https://i.imgur.com/jtSGCZm.jpg", "profile": {"bio": {"text": "@일상소통/투자소통\n@한분한분소중하게 찾아가용!\n@공부하는 오랑이🤗\n\n@조급하지도 걱정도 하자마라.\n@Don''t be impatient and worry.", "mentioned_profiles": []}}, "username": "parkgunwoo", "power_badge": false, "display_name": "오랑이🎩🍖🔵", "active_status": "inactive", "verifications": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "follower_count": 2934, "custody_address": "0x955e52b86ace17f4bcca570234ca7b09d06344c2", "following_count": 2944, "verified_addresses": {"eth_addresses": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kqJBYY7J4ta3J5KKA\"}"}', NULL), - (732313, '0xb20bd9f6437e53152912c51e1932240b216fb35c', 0, 1, '2024-05-06 21:15:16+00', 6, 2, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 61, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 43, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/beamer-feat-robyn-charles\"}"}', NULL), - (871087, '0x8cad2f8b2d714c820de5ca914824ff197e3cb25a', 0, 1, '2024-05-07 05:53:10+00', 0, 0, '{"fid": 512340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b363af66-8f13-4c2b-358b-b0e9ee1bbf00/rectcrop3", "profile": {"bio": {"text": "I live in crypto", "mentioned_profiles": []}}, "username": "!512340", "power_badge": false, "display_name": "AmirHF", "active_status": "inactive", "verifications": ["0xaa8925f1b09396edbd44de198269993a7b331963", "0xaa8925f1b09396edbd44de198269993a7b331963", "0xaa8925f1b09396edbd44de198269993a7b331963", "0xaa8925f1b09396edbd44de198269993a7b331963"], "follower_count": 552, "custody_address": "0xdd58fcea615b96286e4da037487302dee7d50fce", "following_count": 1022, "verified_addresses": {"eth_addresses": ["0xaa8925f1b09396edbd44de198269993a7b331963", "0xaa8925f1b09396edbd44de198269993a7b331963", "0xaa8925f1b09396edbd44de198269993a7b331963", "0xaa8925f1b09396edbd44de198269993a7b331963"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k2418\"}"}', 'sonata'), - (732872, '0xf59b77705066d3b57a35ba7a974f646a48407c47', 0, 1, '2024-05-06 21:21:33+00', 0, 24, '{"fid": 406952, "object": "user", "pfp_url": "https://i.imgur.com/CyxbNGv.jpg", "profile": {"bio": {"text": "경제적 자유 / F4F / 언제든지 달려갑니다 🔥", "mentioned_profiles": []}}, "username": "kkasa34", "power_badge": false, "display_name": "허밍버드", "active_status": "inactive", "verifications": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "follower_count": 2497, "custody_address": "0x8017df1d22d340fed25a6b13e9d6da7c05dca91b", "following_count": 2191, "verified_addresses": {"eth_addresses": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/acefather/cheerfather?si=41c3deb56de8460187b863f3c51d1a90&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (762600, '0xb53e7dfb2f7fefe85499732434f4606b0e8fd830', 1000, 1, '2024-05-07 00:20:38+00', 0, 2, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1878, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1574, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://on.soundcloud.com/i2FhKCgSEeEmsUoJ8\"}"}', 'musicjp'), - (732870, '0xf4e482a68412097d0e4f95da497f5775c9f6d394', 0, 1, '2024-05-06 21:22:11+00', 0, 5, '{"fid": 422449, "object": "user", "pfp_url": "https://i.imgur.com/Vejfyow.jpg", "profile": {"bio": {"text": "I like crypto and NFT", "mentioned_profiles": []}}, "username": "vahid70", "power_badge": false, "display_name": "Vahid🎩🔵🍖🧀", "active_status": "inactive", "verifications": ["0x37a58ca3c08c81a772e395e6ae99127edf4ab467"], "follower_count": 1606, "custody_address": "0xedee68243667323dff2175a9c1e3c343f955e584", "following_count": 1078, "verified_addresses": {"eth_addresses": ["0x37a58ca3c08c81a772e395e6ae99127edf4ab467"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Marco & Seba Feat. INNA - Show Me The Way (John Deeper Remix) by John Deeper on #SoundCloud https://on.soundcloud.com/2C6sY\"}"}', NULL), - (736215, '0xd6fe62e7327b6d31019ae3b24740339316cc65bf', 0, 1, '2024-05-06 21:54:08+00', 0, 1, '{"fid": 453709, "object": "user", "pfp_url": "https://i.imgur.com/x3UbnZi.jpg", "profile": {"bio": {"text": "Founder @undrgrnd\n\nAnti-hype since ‘93", "mentioned_profiles": []}}, "username": "nftjoe", "power_badge": true, "display_name": "NFTjoe", "active_status": "inactive", "verifications": ["0x212a9315016e47e6a3a25e959c1d8d0c2ec3c8f3"], "follower_count": 296, "custody_address": "0x46e8dec48b0115b1c72f30b60c1e695a01a63948", "following_count": 556, "verified_addresses": {"eth_addresses": ["0x212a9315016e47e6a3a25e959c1d8d0c2ec3c8f3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77DRzu7ERs0TX3roZcre7Q?si=rLsJPrSCRSqHN1-sOFqiFQ&context=spotify%3Asearch%3Aeupho\"}"}', NULL), - (733594, '0xa0f303167a44106d9cd85ce78301de778d6f0402', 0, 1, '2024-05-06 21:37:20+00', 5, 5, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1761, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2211, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/tansacproject/can-i-love-cosmic-boy-ft-youra-meego\"}"}', NULL), - (770604, '0x2d1dbf94ec02a3f3d55eb95b1236815907bf876c', 0, 1, '2024-05-07 01:08:07+00', 0, 5, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1636, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1330, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BbUndo3puzobvSrR9\"}"}', 'sonata'), - (776274, '0xdf27899276cf8062c9e344c1510c37d9644938df', 10, 1, '2024-05-07 01:30:21+00', 30, 46, '{"fid": 248532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2843a55-6e10-4831-d18c-0246e29acf00/rectcrop3", "profile": {"bio": {"text": "Trader also like NFT🤡", "mentioned_profiles": []}}, "username": "mesiban", "power_badge": false, "display_name": "Melori", "active_status": "inactive", "verifications": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "follower_count": 1393, "custody_address": "0x86ba576f71ec9462e3e68ef61026c177eafdc1c3", "following_count": 1536, "verified_addresses": {"eth_addresses": ["0xa98ced318a41c1f753f1acaf7324ecc84e229465"], "sol_addresses": ["8X2EPnpX6aLo4GEuLvLQiDrQ9JZq3ZSAaVTrPnCmooDk"]}}', '{"{\"url\":\"https://on.soundcloud.com/kndiabZphLXQ6FDR6\"}"}', NULL), - (733596, '0x53f829caa3214c71af1adeb7375816f0e344119a', 0, 1, '2024-05-06 21:36:39+00', 0, 2, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 417, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/3ipxQ6cPgzo7fVb57\"}"}', 'musicjp'), - (743719, '0xa853383e733254c6c672c979472ec4b1f1e06bd0', 111, 1, '2024-05-06 22:58:16+00', 0, 6, '{"fid": 379722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2036467f-9180-461e-520e-380741901700/rectcrop3", "profile": {"bio": {"text": "I Love Hanni Pham! & NewJeans Lover.🐰❤️\nWe are so early!!!🚀🚀 Ham party letgo🍖", "mentioned_profiles": []}}, "username": "9yuu", "power_badge": false, "display_name": "Hanni Pham🍖🔵⛓️", "active_status": "inactive", "verifications": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "follower_count": 2649, "custody_address": "0xdc4948ac5d6eff31726d6d3461867d5b700333cf", "following_count": 2689, "verified_addresses": {"eth_addresses": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Aua6TRefkD1TqRAy7\"}"}', NULL), - (786381, '0x460a1693817f0549bff4469f4bdb1adff8238bd6', 0, 1, '2024-05-07 02:35:17+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rk1mea33yulh/exo-crowl?si=c32067d45bc14e3fbd0a3cb4e54e31db&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (741932, '0xb170828f207c294f7a7d32231c0d2a797cd3975c', 0, 1, '2024-05-06 22:32:33+00', 0, 5, '{"fid": 376175, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd10a27b-ef99-474f-21ea-f45bdea74e00/rectcrop3", "profile": {"bio": {"text": "🤝", "mentioned_profiles": []}}, "username": "samrad", "power_badge": false, "display_name": "Miss SamantaRad 🍖", "active_status": "inactive", "verifications": ["0x060f631a0cba4731a80f5f168cac504b74c056bb"], "follower_count": 1046, "custody_address": "0x523bc3af82783c6173ec3150b5bd9872c84689f4", "following_count": 1639, "verified_addresses": {"eth_addresses": ["0x060f631a0cba4731a80f5f168cac504b74c056bb"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Relaxing Sleep Music - Fall Asleep Fast, Soft Piano Music, Ocean Waves (Blue Night) by Soothing Relaxation on #SoundCloud https://on.soundcloud.com/g6n2H\"}"}', NULL), - (743411, '0x72053cafe31c7a8ad459aab627819476e6276675', 0, 1, '2024-05-06 22:52:36+00', 0, 1, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 361, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 548, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-938726088/200a1?si=abaa0eee75c84c04ae36465622e767f5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (744081, '0x66ba892106cbad875919e624e2197def8731e708', 0, 1, '2024-05-06 23:04:02+00', 0, 1, '{"fid": 10971, "object": "user", "pfp_url": "https://i.seadn.io/gae/5Y51u8vlx73mQj6R7jObpdvC9nkdAIeMul8ErYUjbXEYC8luNtZs-nniFBATubJHAMv3HtA_G76IG5yDopU9sW9OtKDSoW0gm4TXvxA?w=500&auto=format", "profile": {"bio": {"text": "@usv | jared.xyz | formerly founder of groupme and fundera ", "mentioned_profiles": []}}, "username": "jaredhecht.eth", "power_badge": true, "display_name": "Jared Hecht", "active_status": "inactive", "verifications": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "follower_count": 295, "custody_address": "0xe363817e3eb0f4c3d5628142b63ea7b275a4491b", "following_count": 99, "verified_addresses": {"eth_addresses": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4bWUeJ9Qv0bGyfpR4WQBJP?si=-u5-anE-Slajwi9e1dmMaA\"}"}', NULL), - (1083381, '0x7e0646a8ba27ae45728c748cf481231cbbeda0d9', 0, 1, '2024-05-07 15:37:51+00', 0, 4, '{"fid": 394213, "object": "user", "pfp_url": "https://i.imgur.com/f6uEL7K.jpg", "profile": {"bio": {"text": "다양한 분들과 소통하며 ~ 새로운 세상과 생각을 경험하고 싶어요!! 코인과 재테크에 관심이 많아요!!\nI want to communicate with various people and experience new worlds and ideas!!", "mentioned_profiles": []}}, "username": "hang-jin-nam", "power_badge": false, "display_name": "Jin Nam", "active_status": "inactive", "verifications": ["0x559350639f6d09b3d6399cdd1ac1daf0cf428d48"], "follower_count": 2819, "custody_address": "0x2cc5d4325ca7ba7c6ad848f9cc9f5339c8206628", "following_count": 3115, "verified_addresses": {"eth_addresses": ["0x559350639f6d09b3d6399cdd1ac1daf0cf428d48"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-55808555/psy?si=31f715878e8341958a4aa0e707639c63&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (741934, '0xb7d803a0f6568981c006cef84b5698dd36f59735', 0, 1, '2024-05-06 22:34:45+00', 0, 1, '{"fid": 277635, "object": "user", "pfp_url": "https://i.imgur.com/g8dEStq.jpg", "profile": {"bio": {"text": "075 Dao", "mentioned_profiles": []}}, "username": "airehck7", "power_badge": false, "display_name": "Airehck7", "active_status": "inactive", "verifications": ["0xe62c3c86a762392c7c453e01087b5a87a89770b2"], "follower_count": 22, "custody_address": "0xe2744335d6378e2f5aaa25f672286bfc2a01f366", "following_count": 88, "verified_addresses": {"eth_addresses": ["0xe62c3c86a762392c7c453e01087b5a87a89770b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2ELKkZroRa4UHAn49\"}"}', NULL), - (786743, '0xf764c0487fe140f9dcb1106a75252a10316255f1', 0, 1, '2024-05-07 02:37:40+00', 0, 5, '{"fid": 501896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23f227ba-6847-4352-22a5-017d03310900/rectcrop3", "profile": {"bio": {"text": "hi!! i look forward to your kind cooperation❣️", "mentioned_profiles": []}}, "username": "yuruyuru", "power_badge": false, "display_name": "yuruyuru", "active_status": "inactive", "verifications": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "follower_count": 1777, "custody_address": "0x2a9a19de7beb1ff14bad1f67ddaddd417f1077de", "following_count": 1384, "verified_addresses": {"eth_addresses": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jwhSeFpvB3ovGNADA\"}"}', NULL), - (832778, '0xc335411288f6820aef4fab717eca7070f92f73f5', 0, 1, '2024-05-07 04:19:23+00', 0, 2, '{"fid": 503201, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3054364-607e-4bf5-1423-f9052aeb5b00/rectcrop3", "profile": {"bio": {"text": "l love all!", "mentioned_profiles": []}}, "username": "lovable", "power_badge": false, "display_name": "Lovable🎩🍖", "active_status": "inactive", "verifications": ["0x6e2d1729982ff017efada3345ad986065003462b"], "follower_count": 778, "custody_address": "0xff9805d252f21c34e785855c4d6a5a3aa56bee38", "following_count": 987, "verified_addresses": {"eth_addresses": ["0x6e2d1729982ff017efada3345ad986065003462b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jennis-lee-823010123/n-ex-t-city-people-mp3?si=ec988d29b76649ecb67990010d30092b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (792278, '0x7a888734bffc1dae94e19330f8529b47a86c7cc8', 0, 1, '2024-05-07 03:08:38+00', 0, 1, '{"fid": 512692, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1efd32d1-cca4-4345-0a6b-933f15d44500/rectcrop3", "profile": {"bio": {"text": "Crypto lover, yogini , web 3.0 supporter", "mentioned_profiles": []}}, "username": "!512692", "power_badge": false, "display_name": "Eve", "active_status": "inactive", "verifications": ["0x9e364732b783715384af684d146b7cc5b682b107"], "follower_count": 73, "custody_address": "0x21009b0bad842a5466a44a66127704d93ee1815f", "following_count": 139, "verified_addresses": {"eth_addresses": ["0x9e364732b783715384af684d146b7cc5b682b107"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/3ktqzqy2b7zc/lmqv1yqky6gy?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (788045, '0xfd0c502b8af3a15ab1c68c7dc66cb9e082c86918', 0, 1, '2024-05-07 02:51:59+00', 0, 3, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1329, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bimrc9ynemix/ost-3?si=632b415684844cd8a979fe0ec2b61a06&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (924189, '0xe4936debc962bc04979e0f6ebd03d5b12105d058', 0, 1, '2024-05-07 07:36:56+00', 0, 6, '{"fid": 500749, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94e5c92c-162e-4ec0-9b80-d9f2e54f7400/rectcrop3", "profile": {"bio": {"text": "The blockchain researcher embarks on a journey to find happiness", "mentioned_profiles": []}}, "username": "kasion", "power_badge": false, "display_name": "Kasion🎩🍖🔵", "active_status": "inactive", "verifications": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "follower_count": 1757, "custody_address": "0xa19a05609a7a1be8d950cdd95f0575ad614d7f2e", "following_count": 1551, "verified_addresses": {"eth_addresses": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FFma25YFyzpswxXq6\"}"}', 'sonata'), - (949643, '0x0abad62ece42ce125ab977ee22b84b84cb9ca49b', 0, 1, '2024-05-07 08:52:38+00', 0, 3, '{"fid": 290963, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/592df561-0353-4b9d-73b6-0615db1a3500/rectcrop3", "profile": {"bio": {"text": "Saman\nThe black man in the lonely city\nX @itssamanesi", "mentioned_profiles": []}}, "username": "amosaman", "power_badge": false, "display_name": "Amosaman 🎩", "active_status": "inactive", "verifications": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "follower_count": 1337, "custody_address": "0xd0b702784fc9d73ac1771d92e192695fb320148f", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0x3f216864e9b71d17c483fba83b1af3efe02f5d9e"], "sol_addresses": ["3kbt8VCbeVFNMUJJ9bVtSvnthvG7yzdJUzNNuhWk2S9C"]}}', '{"{\"url\":\"https://soundcloud.com/soelchigini/eghva?si=7be23ddab75243b2b44ac415b99ea5f7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (788641, '0x38799393d226a1b51fca424a02d832f4965064c0', 0, 1, '2024-05-07 02:59:43+00', 0, 3, '{"fid": 408536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f518150-20f3-4ede-6356-812dbd422500/rectcrop3", "profile": {"bio": {"text": "Interests travel and education.\nLove family!", "mentioned_profiles": []}}, "username": "routine1719", "power_badge": false, "display_name": "Routine", "active_status": "inactive", "verifications": ["0x441669d3e05f320ad104c61aa3f294eb6a28185b"], "follower_count": 1701, "custody_address": "0x6462673f126b020647750f9d7eaf95d78b641e0f", "following_count": 1260, "verified_addresses": {"eth_addresses": ["0x441669d3e05f320ad104c61aa3f294eb6a28185b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c2QuaDBe1sTXmNoEA\"}"}', 'sonata'), - (762612, '0xb14403c082a2953e42b493be80297aea1895c45d', 0, 1, '2024-05-07 00:20:51+00', 0, 2, '{"fid": 239664, "object": "user", "pfp_url": "https://i.imgur.com/eX33yaz.jpg", "profile": {"bio": {"text": "It ''s not who u are underneath... \nit ''s what u do that defines u...", "mentioned_profiles": []}}, "username": "czzcc", "power_badge": false, "display_name": "Czzcc", "active_status": "inactive", "verifications": ["0x1d8775623df5469116ece78b55a97bce8424b899"], "follower_count": 90, "custody_address": "0x5c79b6d17e2a9b1723f02536136709260ac5a89e", "following_count": 75, "verified_addresses": {"eth_addresses": ["0x1d8775623df5469116ece78b55a97bce8424b899"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/glorillapimp/wanna-be-with-megan-thee?si=25e7abf8dcf64524a76f47a4691bfa9b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (786301, '0xb9852b3b91b0fdfed4359b802eab8a3cd4b28774', 0, 1, '2024-05-07 02:33:56+00', 0, 0, '{"fid": 500896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad084dc3-15c2-4a29-147a-3f9b87309800/rectcrop3", "profile": {"bio": {"text": "like music youtube culture food \nno matter what like it", "mentioned_profiles": []}}, "username": "joetaka", "power_badge": false, "display_name": "joetaka", "active_status": "inactive", "verifications": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "follower_count": 814, "custody_address": "0x5db012ed31ad2e1ac2db182dae0f51cf582acb70", "following_count": 886, "verified_addresses": {"eth_addresses": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-861730651/lisa-gurenge-fujikawa-chiai-kobasolo-acoustic-cover\"}"}', 'sonata'), - (786300, '0x3973ec8c02f9e0704c1e8c28c6ebf11a10c8b57f', 0, 1, '2024-05-07 02:34:34+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user637100941/adele-adele-set-fire-to-the?si=91d5538682184f4697397c7d63f95b4b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (742692, '0xe9b3e2b954cb10fc64849126a2ec83cdba265062', 0, 1, '2024-05-06 22:44:06+00', 0, 13, '{"fid": 393527, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6e642c6-d7ff-436c-7ba0-c32285120e00/rectcrop3", "profile": {"bio": {"text": "I love cryptocurrency ", "mentioned_profiles": []}}, "username": "orbitals", "power_badge": false, "display_name": "Orbital🎩🍖", "active_status": "inactive", "verifications": ["0xb55b3556cc937633f0e78637c2bd424f5c5da2e7"], "follower_count": 1593, "custody_address": "0xb55b3556cc937633f0e78637c2bd424f5c5da2e7", "following_count": 1784, "verified_addresses": {"eth_addresses": ["0xb55b3556cc937633f0e78637c2bd424f5c5da2e7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mhd-885010874/nasini-el-donya?ref=clipboard&p=a&c=0&si=71f015e82e0844deaa9e4db055c164c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (755111, '0xb72befa5f8e9fdd2e148705f6071977377a4a9f5', 0, 1, '2024-05-06 23:48:02+00', 0, 5, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1286, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 894, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1xWH8zYtDeS9mW1JJG23VZ\"}"}', 'musicjp'), - (786372, '0x1f58697b6052d261ebdc73e08ae3d0a0c81da914', 0, 1, '2024-05-07 02:35:15+00', 0, 0, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1217, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1181, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HCjqBGGiiT34zssN7\"}"}', NULL), - (780088, '0xa2a95091ee888a347cc3baa766ea3764abf6f934', 0, 1, '2024-05-07 01:51:00+00', 0, 5, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 819, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 904, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nX5v9szvkuSsW7kF6\"}"}', 'sonata'), - (743276, '0xf1f2cdee89ca9ac9cbb4c3b3e56d97bd1e271bc8', 0, 1, '2024-05-06 22:51:34+00', 0, 12, '{"fid": 507856, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d276afed-cc35-44d7-0154-787a1e562e00/rectcrop3", "profile": {"bio": {"text": "Crypto researcher/web3 gamer/lifelong learner/travel addict", "mentioned_profiles": []}}, "username": "!507856", "power_badge": false, "display_name": "Nil", "active_status": "inactive", "verifications": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "follower_count": 664, "custody_address": "0xe2e74686dbfa00e6e34efb3b5aac7216106cf9f8", "following_count": 932, "verified_addresses": {"eth_addresses": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ca8dDeSz6cVruKuN9\"}"}', 'sonata'), - (707078, '0x82fd3db2c1b4c96a5a3fdc67740cde18e01083b6', 0, 1, '2024-05-06 18:31:24+00', 0, 3, '{"fid": 19793, "object": "user", "pfp_url": "https://i.imgur.com/fxOuWA4.jpg", "profile": {"bio": {"text": "ORB-FREE PROOF OF PERSONHOOD @ /demos\n\ncome chat /indiemusic /dbacks /greenjeff", "mentioned_profiles": []}}, "username": "greenjeff", "power_badge": true, "display_name": "GREEN JEFF🎩", "active_status": "inactive", "verifications": ["0x37a6156e4a6e8b60b2415af040546cf5e91699bd"], "follower_count": 401, "custody_address": "0xc3054c78dc814a52ba89f371bda8f31980113f7a", "following_count": 540, "verified_addresses": {"eth_addresses": ["0x37a6156e4a6e8b60b2415af040546cf5e91699bd"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d35385b9-ca55-46b1-8446-4c9602b8c900/original\"}","{\"url\":\"https://open.spotify.com/track/6OG05bPAwUuV3OMvy2Vy1P?si=GZWyzmhQTpisD2IgBoQ55g&context=spotify%3Aalbum%3A5XpEKORZ4y6OrCZSKsi46A\"}"}', 'indiemusic'), - (770607, '0x47a110621f5a7b041a16dc11c4a74e0d735996ca', 0, 1, '2024-05-07 01:07:32+00', 0, 1, '{"fid": 420117, "object": "user", "pfp_url": "https://i.imgur.com/FtVbAqA.jpg", "profile": {"bio": {"text": "Hi. Have a happy day😀 I want to make a lot of friends😁 ❤️ 초음속 반사🌼 숙제는 미루지않아요 👏 ", "mentioned_profiles": []}}, "username": "elly29", "power_badge": false, "display_name": "Elly", "active_status": "inactive", "verifications": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "follower_count": 2285, "custody_address": "0x9d06907bfcb51d4232ff86c1eb836d8cd00d101f", "following_count": 2300, "verified_addresses": {"eth_addresses": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Over the Rainbow by Israel Kamakawiwo''ole on #SoundCloud https://on.soundcloud.com/onDnX\"}"}', NULL), - (745600, '0x8ac801f5014d12c3443f5336e9e7b3be5cf37728', 0, 1, '2024-05-06 23:18:35+00', 0, 3, '{"fid": 404349, "object": "user", "pfp_url": "https://i.imgur.com/mhpVtL0.jpg", "profile": {"bio": {"text": "여기 같이 하시는 분들 모두 행복하고 좋은 일만 가득 하길 바랄게요 우리 부자 됩시다\n", "mentioned_profiles": []}}, "username": "jjjang", "power_badge": false, "display_name": "wassup82", "active_status": "inactive", "verifications": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "follower_count": 3322, "custody_address": "0x8a5f460242c275826faa332f3bb0b8e07fb14d45", "following_count": 2638, "verified_addresses": {"eth_addresses": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KExi6evGFx5ZAxAfA\"}"}', 'sonata'), - (745611, '0x12ac96c20f32343a4629a378fe8471f6bd8a8d0a', 0, 1, '2024-05-06 23:18:11+00', 0, 4, '{"fid": 420275, "object": "user", "pfp_url": "https://i.imgur.com/emFFubS.jpg", "profile": {"bio": {"text": "음식, 여행사진, 여행정보 여러가지 일상을 공유합니다!\n관심 부탁드릴께요~♡", "mentioned_profiles": []}}, "username": "lovetree", "power_badge": false, "display_name": "사랑나무", "active_status": "inactive", "verifications": ["0x6251048d2e393c55a20e973ff5cd9c3cfc40a5d8"], "follower_count": 1538, "custody_address": "0x4efcfcc14f5264ef063232b4172a7d5614d3f36e", "following_count": 1464, "verified_addresses": {"eth_addresses": ["0x6251048d2e393c55a20e973ff5cd9c3cfc40a5d8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uY43i\"}"}', 'sonata'), - (786380, '0x12c972b63e466420883ef0a3580b8e95aea7bfc2', 0, 1, '2024-05-07 02:35:06+00', 0, 0, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 774, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 314, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JrXgCrqkC7vMbPoB6\"}"}', NULL), - (786513, '0x21f787643bbb095e6a01a0437d34b41785dbc303', 0, 1, '2024-05-07 02:37:11+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to nothing like uuu by Nettspend on #SoundCloud https://on.soundcloud.com/f1pXg\"}"}', NULL), - (770873, '0xc13c932c60902993132070c353db509e033f8133', 0, 1, '2024-05-07 01:13:26+00', 0, 2, '{"fid": 506657, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/03f1b7cf-dc8a-4ec9-9df8-e1113ce98f00/rectcrop3", "profile": {"bio": {"text": "I love warpcast crypto\n소통은 언제나 환영!!", "mentioned_profiles": []}}, "username": "!506657", "power_badge": false, "display_name": "Kse", "active_status": "inactive", "verifications": ["0x1ec083891fe274d243a38664ffd24a78483163b0"], "follower_count": 724, "custody_address": "0x0134cec44a016a1febb1173890673c16f952fb76", "following_count": 1005, "verified_addresses": {"eth_addresses": ["0x1ec083891fe274d243a38664ffd24a78483163b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dmjzeo8f1swn/sets/jnqafg9rjy7m?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (761499, '0x1500abbde7cc3b4556276c36ced767c2c7a9a112', 0, 1, '2024-05-07 00:16:48+00', 0, 5, '{"fid": 406373, "object": "user", "pfp_url": "https://i.imgur.com/FakDoyF.jpg", "profile": {"bio": {"text": "언제까지? 끝까지!\n받은건 돌려주는 철칙!\nyou know? I know!\n\n", "mentioned_profiles": []}}, "username": "yongdie", "power_badge": false, "display_name": "cutey", "active_status": "inactive", "verifications": ["0x92140d2cdf70efbbfdbf246b1f914eda40423a1e"], "follower_count": 2366, "custody_address": "0xaeb1088526a4788ee0785082bab8018a6bfe6b0c", "following_count": 1992, "verified_addresses": {"eth_addresses": ["0x92140d2cdf70efbbfdbf246b1f914eda40423a1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GBaRqK5bdG1hvaBDA\"}"}', 'sonata'), - (385018, '0x25385ac3522f4fd34afec64deb997de496e769cd', 0, 1, '2024-05-06 04:12:13+00', 0, 1, '{"fid": 404680, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8305e183-56bb-4f14-232b-15286879e900/original", "profile": {"bio": {"text": "Oh yeah, something big is coming👀\n😉", "mentioned_profiles": []}}, "username": "muhmad23", "power_badge": false, "display_name": "Muhammad", "active_status": "inactive", "verifications": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "follower_count": 2211, "custody_address": "0xf06de14417da51b9605b52a2366b7da27cf4c147", "following_count": 2138, "verified_addresses": {"eth_addresses": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/artemaswannabepopstar/i-like-the-way-you-kiss-me?ref=clipboard&p=a&c=0&si=758938d47c5f4cdd9c9d061864aa5f9c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (384673, '0x98a7da7f7ae521963b9ee7d42e171d24664f50c6', 0, 1, '2024-05-06 04:10:37+00', 0, 1, '{"fid": 447691, "object": "user", "pfp_url": "https://i.imgur.com/HuigBmC.jpg", "profile": {"bio": {"text": "💕 ❤️ 🌸 F4F | 빛반사 | 맞팔 💕 ❤️ 🌸\n\n30분내 바로 반사때려버리는 여시코깽이 같은련,, (관심있는건 아님)", "mentioned_profiles": []}}, "username": "bloodtrail", "power_badge": false, "display_name": "Bloodtrail🎩 ", "active_status": "inactive", "verifications": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "follower_count": 2867, "custody_address": "0x684564b6ab9ec5f77fb1c755c22812b0b7569e9c", "following_count": 3045, "verified_addresses": {"eth_addresses": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bea19000-a918-44c1-04ed-de1334279300/original\"}","{\"url\":\"https://on.soundcloud.com/1CDAzwuKcG6GW5a88\"}"}', 'sonata'), - (786509, '0xf4482304d6ab4f15d72431d1cdd810ff90f3f889', 0, 1, '2024-05-07 02:37:34+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Shawty (feat. Arta, Hiphopologist, Vinak, Kagan) by Koorosh on #SoundCloud https://on.soundcloud.com/RWQe6\"}"}', NULL), - (841628, '0x307932b615ec95b0ccfbe200dce0e1cd5752ccd2', 0, 1, '2024-05-07 05:11:00+00', 0, 2, '{"fid": 501009, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4183f6e9-9596-47f6-dcda-bd44e0802900/rectcrop3", "profile": {"bio": {"text": "I love $DEGEN ", "mentioned_profiles": []}}, "username": "rioasm", "power_badge": false, "display_name": "rio", "active_status": "inactive", "verifications": ["0x5ab212db49b54f9b2e35bd91a6a343dd27503371"], "follower_count": 828, "custody_address": "0x3cefc50516848f657d98564c577b747ad242cbad", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0x5ab212db49b54f9b2e35bd91a6a343dd27503371"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Paul Kim(폴킴) - Cant Get Over You(좋아해요) by viiaa on #SoundCloud https://on.soundcloud.com/m7LWM\"}"}', NULL), - (921562, '0x729272a952ca15a6428176342f271ed932f614d7', 0, 1, '2024-05-07 07:21:54+00', 0, 1, '{"fid": 452471, "object": "user", "pfp_url": "https://i.imgur.com/aZC8Y3z.jpg", "profile": {"bio": {"text": "함께해요!!\n\n화이팅입니다!!", "mentioned_profiles": []}}, "username": "tedkwon", "power_badge": false, "display_name": "tedkwon", "active_status": "inactive", "verifications": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "follower_count": 1033, "custody_address": "0x72dadb57669d45eb0fcf52c5c277d86c3998ae48", "following_count": 1097, "verified_addresses": {"eth_addresses": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vWWYZSas7th2voX26\"}"}', 'sonata'), - (770878, '0x4bc0a0eafeddb3d3bb3c3ffc75f265e12a2ee612', 0, 1, '2024-05-07 01:12:20+00', 0, 3, '{"fid": 506657, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/03f1b7cf-dc8a-4ec9-9df8-e1113ce98f00/rectcrop3", "profile": {"bio": {"text": "I love warpcast crypto\n소통은 언제나 환영!!", "mentioned_profiles": []}}, "username": "!506657", "power_badge": false, "display_name": "Kse", "active_status": "inactive", "verifications": ["0x1ec083891fe274d243a38664ffd24a78483163b0"], "follower_count": 724, "custody_address": "0x0134cec44a016a1febb1173890673c16f952fb76", "following_count": 1005, "verified_addresses": {"eth_addresses": ["0x1ec083891fe274d243a38664ffd24a78483163b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0cean_addict/9oe7iersbi6w?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (746192, '0xbccf8affc24d2bebd8b3d15d67656a0cec15f253', 0, 1, '2024-05-06 23:22:30+00', 0, 3, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1715, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2952, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FMfhe\"}"}', 'sonata'), - (745604, '0xedf0529912fb99825f07aeeab59da703ada40faf', 0, 1, '2024-05-06 23:19:25+00', 0, 3, '{"fid": 491718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44f5849-69cc-4805-c6aa-5ef274a2fa00/rectcrop3", "profile": {"bio": {"text": "잘부탁드려요 맞팔갑니다 디젠 파이팅", "mentioned_profiles": []}}, "username": "hduck43", "power_badge": false, "display_name": "hduck43", "active_status": "inactive", "verifications": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "follower_count": 1406, "custody_address": "0x313bb25e8e5a06110334088d0db7fb4979a48e8b", "following_count": 2317, "verified_addresses": {"eth_addresses": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/STY4x1VmXqyHfYdE6\"}"}', 'sonata'), - (387883, '0xdadd25d1ac28b667a8f937654d8a92a47e3d9015', 0, 1, '2024-05-06 04:17:43+00', 0, 0, '{"fid": 418655, "object": "user", "pfp_url": "https://i.imgur.com/2otSRxb.jpg", "profile": {"bio": {"text": "Crypto since 2017. I''m ready for Based Summer / Love music / Share music recommendations /psymusic", "mentioned_profiles": []}}, "username": "guu", "power_badge": false, "display_name": "Gu", "active_status": "inactive", "verifications": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "follower_count": 147, "custody_address": "0x87f6314adbf601f44fbf3fd37edc2fb7aff185a8", "following_count": 233, "verified_addresses": {"eth_addresses": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/griggy1/yaeji-cant-buy-money-griggys-lofi-edit-v1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (350352, '0x3af72b31ff22977085b45e019abea149092bc502', 0, 1, '2024-05-06 01:02:33+00', 0, 3, '{"fid": 214570, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/cluwbae3c01kamhvy175prg45.png", "profile": {"bio": {"text": "Early adopter | Degentlemen #8570", "mentioned_profiles": []}}, "username": "cav4lier.eth", "power_badge": false, "display_name": "cav4lier🎩🐲", "active_status": "inactive", "verifications": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "follower_count": 1091, "custody_address": "0x6ff3403ac94b6d5b79584fc398008f682d2ff591", "following_count": 778, "verified_addresses": {"eth_addresses": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/monovisa/ego?referral=0x17daf278f0d4e406b435ea74387f52d0b18c5c25&referral_source=link\"}"}', NULL), - (830933, '0x677b405e6f95334fa5fa61fee831dbecd8bded59', 0, 1, '2024-05-07 04:16:30+00', 0, 5, '{"fid": 421000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1ddbc0a2-013c-4300-1d16-dd04765af000/original", "profile": {"bio": {"text": "Japanese guy who loves crypto.\nhosting /musicjp /games-jp /stories-jp ", "mentioned_profiles": []}}, "username": "nyasu", "power_badge": false, "display_name": "Nyasu(🎩🎙️🍖🔥)", "active_status": "inactive", "verifications": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "follower_count": 2360, "custody_address": "0xff5035ccce1e588d7ee45dbce9c700ce7b2ab609", "following_count": 1330, "verified_addresses": {"eth_addresses": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/elektrarecords/the-lazy-song?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (865275, '0xc0f4c36c555a3606bf973b18ced22313fb453a94', 0, 1, '2024-05-07 05:44:16+00', 0, 0, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1705, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/E2WTDQaAwEsHKirN6\"}"}', 'sonata'), - (746030, '0xe001fab282b65bdcae37e903c8da7d2d455c6031', 0, 1, '2024-05-06 23:19:55+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3116, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2659, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vwaVh\"}"}', 'sonata'), - (369840, '0x775dd405e7bb5a334b57b9e339ede45db9b1d8bb', 0, 1, '2024-05-06 03:26:36+00', 0, 2, '{"fid": 423559, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdoXAH6xTKfiCR1qrdHcx5SaAANNXudS1YEmv27SPne8d?filename=.gif", "profile": {"bio": {"text": "F4F// Hi, I''m jonny :D Thank you for visiting. If you leave a trace, I''ll visit you! I hope you have a nice day in warpcast", "mentioned_profiles": []}}, "username": "jonnyjonny", "power_badge": false, "display_name": "Jonny", "active_status": "inactive", "verifications": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "follower_count": 1306, "custody_address": "0xde5d220b53d6015b7a6af20036a5673fbd30a3fe", "following_count": 2125, "verified_addresses": {"eth_addresses": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3I9c2OFpB0al6qmYNcyMht\"}"}', 'sonata'), - (755491, '0x9a353ee17c671bf9709521055647db6632539a8c', 0, 1, '2024-05-06 23:50:37+00', 0, 8, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "follower_count": 2148, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2486, "verified_addresses": {"eth_addresses": ["0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HBjaQWVmoptYxFcWA\"}"}', 'sonata'), - (830395, '0x92ba491f57f601bf17ffeea62d810e5f989d488b', 0, 1, '2024-05-07 04:15:02+00', 0, 0, '{"fid": 514406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce843250-84af-49b1-98b0-d1ca12369200/rectcrop3", "profile": {"bio": {"text": "livvy", "mentioned_profiles": []}}, "username": "!514406", "power_badge": false, "display_name": "olivia", "active_status": "inactive", "verifications": ["0xb8e6130f4daa11bbe270fb85f3f5bbe6146dc9ad"], "follower_count": 8, "custody_address": "0x879564d7cea82c2ab56b27c982dd0e1e83e32d30", "following_count": 82, "verified_addresses": {"eth_addresses": ["0xb8e6130f4daa11bbe270fb85f3f5bbe6146dc9ad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/canadabeats/parson-james-only-you-kizomba-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (841624, '0x6e2634174e63df198fdc5c7ef295d5e8f847455e', 0, 1, '2024-05-07 05:11:35+00', 0, 1, '{"fid": 448267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c084f2f-96ec-40a4-de8f-330f4bd3b000/rectcrop3", "profile": {"bio": {"text": "i love crypt♡cat♡budgie♡and‥\n皆さまよろしくお願いします♡\nフォロバします♡健康や趣味に関することについてつぶやきます♡\nおたんこナースです♡", "mentioned_profiles": []}}, "username": "kananap", "power_badge": false, "display_name": "kananap🔮🩵@health", "active_status": "inactive", "verifications": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "follower_count": 511, "custody_address": "0x3bc7cc9fb63fa1c4b70ac5aa8c80475b784f5a6c", "following_count": 755, "verified_addresses": {"eth_addresses": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nzhZ8EYVwC6zKoQB8\"}"}', 'musicjp'), - (780768, '0x0a4cc51122241e214bacad5432c0c4cf7ae8631f', 0, 1, '2024-05-07 01:52:59+00', 0, 5, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3416, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/41sdo\"}"}', 'sonata'), - (788512, '0x7d3945aca3c454d6636acbe8a87e66f572179903', 0, 1, '2024-05-07 02:56:54+00', 20, 36, '{"fid": 9856, "object": "user", "pfp_url": "https://i.imgur.com/GUSNauP.gif", "profile": {"bio": {"text": "crypto-anarchist · DeFi degen · DeSoc explorer, advisor · host /luo · write 0xluo.eth.limo", "mentioned_profiles": []}}, "username": "0xluo.eth", "power_badge": true, "display_name": "0xLuo", "active_status": "inactive", "verifications": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "follower_count": 31135, "custody_address": "0xffe946d9c24ca4d6f785447a923c9e812e4e7b95", "following_count": 1273, "verified_addresses": {"eth_addresses": ["0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd"], "sol_addresses": ["4QKTgi7wnm6ATi1cvdfsUYhuX5HWbywPpoFoHKJJuB76"]}}', '{"{\"url\":\"https://on.soundcloud.com/68jY3t8NmPupHpxs5\"}"}', NULL), - (746031, '0xde72208af3ace993aab113a4cd28c9a9befad113', 0, 1, '2024-05-06 23:20:17+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3116, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2659, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yFuDR\"}"}', 'sonata'), - (383983, '0xac64d04b4006dcf25964fe64d74aeeb2400f2a09', 0, 1, '2024-05-06 04:07:26+00', 0, 0, '{"fid": 434862, "object": "user", "pfp_url": "https://i.imgur.com/XdVircA.jpg", "profile": {"bio": {"text": "본조콜밋 입니다\n😎🤚\n같이 가시죠 🙏\nLETS GO 💯200%300%", "mentioned_profiles": []}}, "username": "bonjocallmit", "power_badge": false, "display_name": "본조콜밋🎩🍖⛓", "active_status": "inactive", "verifications": ["0x2b881a9e071172d871fd4680ba83fa293c519aab"], "follower_count": 2151, "custody_address": "0x78a8c931e726dbea324c4e13b6c42a98ddc631c0", "following_count": 1838, "verified_addresses": {"eth_addresses": ["0x2b881a9e071172d871fd4680ba83fa293c519aab"], "sol_addresses": []}}', '{"{\"url\":\"f(x) - 라차타 (LA chA TA) - SoundCloud - Listen to f(x) - 라차타 (LA chA TA) by ROMEO________ on #SoundCloud https://on.soundcloud.com/owy1b\"}"}', NULL), - (764047, '0x053063d3298a6222c1faf5632479cb91fb94a5b1', 0, 1, '2024-05-07 00:25:03+00', 0, 1, '{"fid": 287924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b080e06a-c0cb-4838-3567-dbdedc192800/rectcrop3", "profile": {"bio": {"text": "fall in love with warpcast and degen LFG!! ", "mentioned_profiles": []}}, "username": "korineshasha", "power_badge": false, "display_name": "k-shasha🇰🇷", "active_status": "inactive", "verifications": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "follower_count": 2010, "custody_address": "0xdc5ed12b37b07e22727a94b20899d414781a07a9", "following_count": 1467, "verified_addresses": {"eth_addresses": ["0x6deb668521436b45cddfd9497b714d9fcb019bfe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oQseemspLxPU4r7M6\"}"}', NULL), - (770890, '0xc282c9c0495ad926c48b88fb989b3f8f7e235cc8', 0, 1, '2024-05-07 01:10:26+00', 0, 3, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1121, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1182, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ddl2cmqw8no9/zpjr6leoi1kb?ref=clipboard&p=a&c=0&si=0aa3cbf65edb4c978eb0769fa080ce3f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (764214, '0x77330267434898a067c6b812f2a33033089472b0', 0, 1, '2024-05-07 00:26:23+00', 0, 2, '{"fid": 239704, "object": "user", "pfp_url": "https://i.imgur.com/7G8maqc.jpg", "profile": {"bio": {"text": "This is power", "mentioned_profiles": []}}, "username": "vergil", "power_badge": false, "display_name": "Vergil", "active_status": "inactive", "verifications": ["0x54922ccfe5b1e5f66f670fedd51d43cc843d569b"], "follower_count": 88, "custody_address": "0xd8763e4b8f3af01d457f828550fc9b39057267cb", "following_count": 65, "verified_addresses": {"eth_addresses": ["0x54922ccfe5b1e5f66f670fedd51d43cc843d569b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sc-playlists-eunon/sets/all-smiles?si=e079f01bebdc4a64a637313706ca313a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (888735, '0x3312d9ac1c90474a4ea0b9373a32f0bcda8decab', 0, 1, '2024-05-07 06:32:51+00', 0, 0, '{"fid": 404680, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8305e183-56bb-4f14-232b-15286879e900/original", "profile": {"bio": {"text": "Oh yeah, something big is coming👀\n😉", "mentioned_profiles": []}}, "username": "muhmad23", "power_badge": false, "display_name": "Muhammad", "active_status": "inactive", "verifications": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "follower_count": 2254, "custody_address": "0xf06de14417da51b9605b52a2366b7da27cf4c147", "following_count": 2186, "verified_addresses": {"eth_addresses": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbo/resenaren?utm_source=floornfts.io\"}"}', NULL), - (826186, '0xa5364989d0dfafd06892de31c437f3d07a9c52e4', 0, 1, '2024-05-07 04:09:54+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 38, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 131, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/body-issues-in-a-teenage-world?referral_source=link\"}"}', 'mentalhealth'), - (691152, '0x4543c9267369ba582024a56424a6c1f0e70a2225', 0, 1, '2024-05-06 17:24:34+00', 0, 1, '{"fid": 500345, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7194d65a-385a-4117-d0b8-9c9edd68e600/rectcrop3", "profile": {"bio": {"text": "Love Crypto, Stocks❤️", "mentioned_profiles": []}}, "username": "ehxin1234", "power_badge": false, "display_name": "ehXin🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "follower_count": 557, "custody_address": "0x9ff2214b14e4089191bb7b51a911d31073d0ebef", "following_count": 924, "verified_addresses": {"eth_addresses": ["0x8be022568931f02eaf41c1647f15dacac9c9228b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/50D5KNyJVSD3Sri94ZNzNJ\"}"}', NULL), - (745614, '0x100a14382c646edddb68cf76e94a14d8b4e996b1', 0, 1, '2024-05-06 23:18:29+00', 0, 7, '{"fid": 456831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ebc50a6d-44c3-4288-cdfa-062e50e34a00/rectcrop3", "profile": {"bio": {"text": "Degen whale", "mentioned_profiles": []}}, "username": "!456831", "power_badge": false, "display_name": "Saeed", "active_status": "inactive", "verifications": ["0xb0b4c7e6331d58829b9957f755130e6316ba8729"], "follower_count": 1079, "custody_address": "0x3ee2b66c42df540a8f915553ccae3a0c9ea2ea50", "following_count": 1639, "verified_addresses": {"eth_addresses": ["0xb0b4c7e6331d58829b9957f755130e6316ba8729"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4yS9mjJiE8dyC8EVg9vupQ?si=KmvldHwPTs-qgwfsgcYMIw&context=spotify%3Atrack%3A4yS9mjJiE8dyC8EVg9vupQ\"}"}', 'sonata'), - (786374, '0xbd600070caa0df8b171ba9bdf7d62e82e1a10be2', 0, 1, '2024-05-07 02:34:48+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gracedaviesofficial/hello-adele?si=141f4269e65f461eb240b8bfe8580584&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (691576, '0x65c8207e6406b8bc4dd6ffece3d57ba2b88dcf05', 0, 1, '2024-05-06 17:27:33+00', 0, 5, '{"fid": 17360, "object": "user", "pfp_url": "https://i.imgur.com/iO7Mrwi.jpg", "profile": {"bio": {"text": "Nothing to explain", "mentioned_profiles": []}}, "username": "toobimoobi", "power_badge": false, "display_name": "Tooba", "active_status": "inactive", "verifications": ["0xd984b81f72fb0c8a061d6a4019c6c5201ad9ceec"], "follower_count": 1584, "custody_address": "0xb0b694798fffc6ac40ecf61b59c04956e5d0853d", "following_count": 2095, "verified_addresses": {"eth_addresses": ["0xd984b81f72fb0c8a061d6a4019c6c5201ad9ceec"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Cj2vqUwlJVG27gJrun92y?si=4moksFc9QrO4nyCxcqyLSw&context=spotify%3Aplaylist%3A37i9dQZF1DX49jUV2NfGku\"}"}', NULL), - (338226, '0xdfee9bc872e9217c64da4890613734219d1c5f13', 0, 1, '2024-05-05 23:32:23+00', 0, 23, '{"fid": 376638, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e35f4c0-4979-4769-c221-ed1ab4a3e200/rectcrop3", "profile": {"bio": {"text": "Japanese🇯🇵▷▶enjoy crypto/illustrater ✍️ \n 🔴⚪️🟡host: /colors- & /ai-geek ♥️💚‎🤍", "mentioned_profiles": []}}, "username": "sally-", "power_badge": false, "display_name": "sally🪬Everyone", "active_status": "inactive", "verifications": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "follower_count": 630, "custody_address": "0xea6eeb79b91923be86d19a155999a2da5c3f8516", "following_count": 955, "verified_addresses": {"eth_addresses": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60a4b9f7-3ae0-409d-9ba1-3e1f7560a800/original\"}","{\"url\":\"https://open.spotify.com/track/1AzMYJm6qTAullM3UKuPY9?si=8xlj3K8nT1CYpY6SwEoeVw&context=spotify%3Aplaylist%3A37i9dQZF1DZ06evO2fOjra\"}"}', 'kawaii'), - (873360, '0xb5110797e5cf0aa1e2c74d4f4eed71531e80005a', 0, 1, '2024-05-07 05:55:30+00', 0, 1, '{"fid": 406455, "object": "user", "pfp_url": "https://i.imgur.com/Agjy8AM.jpg", "profile": {"bio": {"text": "$degen. 🌟🌟", "mentioned_profiles": []}}, "username": "dhk", "power_badge": false, "display_name": "dukhyun🎩🍖", "active_status": "inactive", "verifications": ["0x2852c9666d19f422b88ad8e9426f14f018aed8cd", "0x09dcea9668c4f75885666328b7089d64ebfab5e4"], "follower_count": 4089, "custody_address": "0x7e19b132055a67aa06654b0720e09bdde58c9c1b", "following_count": 3373, "verified_addresses": {"eth_addresses": ["0x2852c9666d19f422b88ad8e9426f14f018aed8cd", "0x09dcea9668c4f75885666328b7089d64ebfab5e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ghAfyjyRmnmUPBeo7\"}"}', NULL), - (792261, '0xc71d5f0ff94b015b8042b9ef2cd0ed09431157e6', 0, 1, '2024-05-07 03:07:56+00', 0, 25, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 481, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 771, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S66hJ\"}"}', 'sonata'), - (776568, '0xaaf7bdbe3bbab7908fe39cb5703cd12ee7152a35', 0, 1, '2024-05-07 01:33:05+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 136, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 170, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/oasisofficial/wonderwall-2\"}"}', NULL), - (746199, '0x49d7bf0c3ce11e5d855d85f139e9735cdafcdf22', 0, 1, '2024-05-06 23:21:01+00', 0, 2, '{"fid": 501169, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a5e704c-06c8-48ca-ec18-588c83ac3700/rectcrop3", "profile": {"bio": {"text": "Top Amateur", "mentioned_profiles": []}}, "username": "haejing", "power_badge": false, "display_name": "haejing🎩🍖", "active_status": "inactive", "verifications": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "follower_count": 1239, "custody_address": "0x68ea6421d2795e06f41e54fe856b8ab596127379", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UqbishE5vrzHTCpi9\"}"}', NULL), - (764215, '0xd85e5984d8963e92858d5c7b4b58c705169f4cb0', 0, 1, '2024-05-07 00:26:26+00', 0, 2, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2637, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2456, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3ejaF\"}"}', 'sonata'), - (363085, '0xd01840b40db9812b0e8839d02bc2837943ab6e74', 0, 1, '2024-05-06 02:30:04+00', 0, 1, '{"fid": 499091, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d892d750-f391-476b-078f-cddc5278b500/rectcrop3", "profile": {"bio": {"text": "일상 & 코인", "mentioned_profiles": []}}, "username": "fuzzypaws", "power_badge": false, "display_name": "Fuzzypaws", "active_status": "inactive", "verifications": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "follower_count": 1238, "custody_address": "0x24b9ca359d7f4f1395e7d7b101e52b3f1784bcbb", "following_count": 1409, "verified_addresses": {"eth_addresses": ["0x937b57b35d355e7f694be333369012e25cc051ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/52p5RtEaTXx1u1udrx8Fqr?si=df92c136cce34f96\"}"}', NULL), - (786816, '0xf2ca6b0b7e44a8aa76c7463abd8bba77822f93c7', 0, 1, '2024-05-07 02:40:13+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dija-landa/love-will-show-you-everything?si=a335e2e2297548d195148b485bd22b90&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (830932, '0xf2b7eb4d554a065dcad0fb46882e07921f2db122', 0, 1, '2024-05-07 04:16:59+00', 0, 1, '{"fid": 300064, "object": "user", "pfp_url": "https://i.imgur.com/QMN2rZi.jpg", "profile": {"bio": {"text": "Partner @ archetype.fund\n", "mentioned_profiles": []}}, "username": "dberenzon", "power_badge": false, "display_name": "Dmitriy Berenzon", "active_status": "inactive", "verifications": ["0xc391ef2402c50e44d75245838e17f17e5cb2a3ae"], "follower_count": 126, "custody_address": "0x69c8f5eeb5dbae255ecce748b4bca483e233b41e", "following_count": 134, "verified_addresses": {"eth_addresses": ["0xc391ef2402c50e44d75245838e17f17e5cb2a3ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pe2NLJs4bRrJg3Uj6\"}"}', NULL), - (1036619, '0xd3c08017fbb05eb0c75a21980144226e34dad0b2', 0, 1, '2024-05-07 13:35:09+00', 0, 8, '{"fid": 474091, "object": "user", "pfp_url": "https://i.imgur.com/Od50sSS.jpg", "profile": {"bio": {"text": "Money and food", "mentioned_profiles": []}}, "username": "silsa", "power_badge": false, "display_name": "James", "active_status": "inactive", "verifications": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "follower_count": 2215, "custody_address": "0x80a753036c43a2c3eee42292769f54e6ccc30b87", "following_count": 2259, "verified_addresses": {"eth_addresses": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/boQ3H\"}"}', 'sonata'), - (900215, '0x0c2f78157d6e67d28c9f90ee028b4f8e706aa8f4', 0, 1, '2024-05-07 06:48:00+00', 0, 0, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bastilleuk/icarus-1\"}"}', NULL), - (764724, '0x07dd1b02dfbfad292a4c78a65b8dc3a89ac08832', 0, 1, '2024-05-07 00:27:50+00', 0, 4, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 이것저것 열심히 다 합니다. 잘 부탁드립니다.", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1434, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2544, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t-b-5/beast-b2st-on-rainy-days?si=aa5c10491e434f5f9a0a80577a68e72d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (345015, '0xa9b1e62c9098847c49f81714c03921a48e862bfd', 0, 1, '2024-05-06 00:14:27+00', 0, 0, '{"fid": 191751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d4dc71ec-9c59-42b9-5687-510c52dfe100/original", "profile": {"bio": {"text": "...", "mentioned_profiles": []}}, "username": "seoulraa", "power_badge": false, "display_name": "seoulraa", "active_status": "inactive", "verifications": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "follower_count": 26, "custody_address": "0xbee4eac0d0bcb4334a034dfa44eb3a96e3b81a9b", "following_count": 37, "verified_addresses": {"eth_addresses": ["0x48555a6c6c88cbe69d36a44ca6095b731f453597", "0x48555a6c6c88cbe69d36a44ca6095b731f453597"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/seoulraa.eth/post/4e3f4893-ed46-4153-84b2-82d787683519\"}"}', NULL), - (746215, '0x9a54273c08c288f490527f58d072593a7bf3b088', 0, 1, '2024-05-06 23:21:00+00', 0, 1, '{"fid": 290681, "object": "user", "pfp_url": "https://i.imgur.com/6yh5rm0.jpg", "profile": {"bio": {"text": "The artist is hungry\nLet''s communicate and help each other!!!!!1\n\n\n", "mentioned_profiles": []}}, "username": "daehoon", "power_badge": false, "display_name": "whiteforest", "active_status": "inactive", "verifications": ["0x41c6daf9e4af1c2215b6353ed42aaa6e82d42fe5", "0x41c6daf9e4af1c2215b6353ed42aaa6e82d42fe5"], "follower_count": 1010, "custody_address": "0x0d6bfab6d1ed65603224b2cb5480b977cecd7e4d", "following_count": 1373, "verified_addresses": {"eth_addresses": ["0x41c6daf9e4af1c2215b6353ed42aaa6e82d42fe5", "0x41c6daf9e4af1c2215b6353ed42aaa6e82d42fe5"], "sol_addresses": ["FNWLjwWoZGPEkVyYJ2XZZnx625sKDjQnba3bZvhLGJbB"]}}', '{"{\"url\":\"https://soundcloud.com/saebyeokk/illit-magnetic?si=6d6c36f471ab422ead5a73f72f84ab6a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (786740, '0x0c97a8193df94346df92216299c8cc3faa48441d', 0, 1, '2024-05-07 02:38:32+00', 0, 1, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 696, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1182, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jin-roh-353085509/kyzpaungqnbk?si=58b01f604f2f4221968bcf1ab77b8bec&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (786819, '0x9c4b39ffd6cd75d29bd521a7276c343ebca36a6b', 0, 1, '2024-05-07 02:38:55+00', 0, 0, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 804, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 740, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-395571055/marry-me?si=00a9a2e67f5c463eb69f06b503a2c237&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (787356, '0xd389eb141fec793b4e2317c522cddb3b67ed0ccf', 0, 1, '2024-05-07 02:46:09+00', 0, 1, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mytypefaceis/newjeans-tell-me-original-inst-studio-ver?si=fed3d0130f12498da1ec8e59c455f397&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1087659, '0xcd65ac7c33e2a043771f90b8068d791c232692f9', 0, 1, '2024-05-07 15:45:46+00', 0, 4, '{"fid": 418881, "object": "user", "pfp_url": "https://i.imgur.com/WjsluD8.jpg", "profile": {"bio": {"text": "3.31 start!\nHappy days~🐾🐾\nhttps://zora.co/@doeuni", "mentioned_profiles": []}}, "username": "doeuni", "power_badge": false, "display_name": "reo_luv", "active_status": "inactive", "verifications": ["0xcf404ce254ac12435505a899889a7a84159bcaad"], "follower_count": 3410, "custody_address": "0x9ddc4ff1518d0c80060682d81d9172a572d80e4e", "following_count": 2943, "verified_addresses": {"eth_addresses": ["0xcf404ce254ac12435505a899889a7a84159bcaad"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qnZWTd1jyA6ngn9D7\"}"}', 'sonata'), - (692231, '0x28de0554a64e117265b740b53c1fe28657bc82bc', 0, 1, '2024-05-06 17:34:18+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 132, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c2564aec-466f-4274-57d3-5e82a1103400/original\"}","{\"url\":\"https://open.spotify.com/track/4vbKczTCpjilxS3wB8qbY6?si=slZXCS0pSR6e-2TpXyrynw&pi=u-NEL9WZXjRzGY\"}"}', 'trance'), - (683289, '0x56571d870881726f7f3484b6338d1e9b2901c9f8', 0, 1, '2024-05-06 16:38:31+00', 0, 4, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1432, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 306, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/18c0da98-b2c9-4249-9caa-277450442ad9?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'theblockexp'), - (683302, '0xb6079e92e399c370ddbb6e191ae798da219eebc8', 0, 1, '2024-05-06 16:38:18+00', 0, 3, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1432, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 306, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/18c0da98-b2c9-4249-9caa-277450442ad9?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/nessytherilla/caught-up?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'nowplaying'), - (764725, '0x6d384baae54c43d2d195516b3888c7451f639aad', 0, 1, '2024-05-07 00:27:30+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2637, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2456, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eHvD1\"}"}', 'sonata'), - (744794, '0x34c0763f080080c406d66658c1920472f3627246', 0, 1, '2024-05-06 23:15:37+00', 0, 2, '{"fid": 391044, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e5f646c-cb3b-482b-f611-403a258a4400/rectcrop3", "profile": {"bio": {"text": "Graphic Designer👁️", "mentioned_profiles": []}}, "username": "umosein", "power_badge": false, "display_name": "Hossein🎩👑", "active_status": "inactive", "verifications": ["0x08fef71b6762e6870cde65eaba7e9b1ca66827a3"], "follower_count": 450, "custody_address": "0xbf2c9af9452d5f719da957583b17a9354ecadb15", "following_count": 836, "verified_addresses": {"eth_addresses": ["0x08fef71b6762e6870cde65eaba7e9b1ca66827a3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-172852047/ubu_lemons-dance-party?si=701747b2c7a8429890a983e896b0e435&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (685349, '0xf1f0c8adb4dcf1de90b493381bdc04958e58b454', 11320, 1, '2024-05-06 16:50:20+00', 11, 1, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 111, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://www.sound.xyz/yoshiromare/kitsune-ft-duo-do?referral=0x94734e11b78680a35b0a86ba3ce634d334d6d2a7\"}"}', 'soundxyz'), - (717236, '0x2df05005ae9008108f4866a9853f916950c4f68d', 0, 1, '2024-05-06 19:32:57+00', 0, 5, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 300, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 250, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/41dc0110-72b7-48bb-a266-caaa5e84f000/original\"}","{\"url\":\"https://open.spotify.com/track/7EQvdUJqZ2i7SWvSB2VqGA?si=pKL_kZmgQIKgUzifNnlA4w&context=spotify%3Asearch%3Amf%2Bdoom%2Bdooms\"}"}', 'chatbfg'), - (764727, '0xaab2a1ab2cb7e4cfc742eaa4ee76b8028c19798f', 0, 1, '2024-05-07 00:27:55+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2637, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2456, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2XPqi\"}"}', 'sonata'), - (770605, '0x204d5f557c952361679741e39f7ae9b3dd0d1291', 0, 1, '2024-05-07 01:07:41+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1531, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1801, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/glen-345337301/home-sweet-home?si=83e85b0cfe1145b28b08804a6bac8333&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (717054, '0x472dd8e2e278a396d84a26b0f577fc76840a4f0e', 0, 1, '2024-05-06 19:32:30+00', 0, 13, '{"fid": 384337, "object": "user", "pfp_url": "https://i.imgur.com/ftRlSQ7.jpg", "profile": {"bio": {"text": "I’m a crypto lover", "mentioned_profiles": []}}, "username": "lieblin", "power_badge": false, "display_name": "GiGi", "active_status": "inactive", "verifications": ["0x37d90dd82b571a6fd5a60e12e8b2b32a64950453"], "follower_count": 156, "custody_address": "0xdc85099b95f012de30a742e52d3024d1240ff86c", "following_count": 401, "verified_addresses": {"eth_addresses": ["0x37d90dd82b571a6fd5a60e12e8b2b32a64950453"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1rfofaqEpACxVEHIZBJe6W?si=Ac45ZecLRH6zT4i_b6VGcA\"}"}', 'sonata'), - (982597, '0x4db03edfb6b605e3691ed4841c2e6ea538509a36', 0, 1, '2024-05-07 10:53:03+00', 0, 4, '{"fid": 508236, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59caaffb-4e06-4196-f253-0d1f74056100/rectcrop3", "profile": {"bio": {"text": "A round world\n\n세계로 가💡", "mentioned_profiles": []}}, "username": "ticdog", "power_badge": false, "display_name": "Javis", "active_status": "inactive", "verifications": ["0x7428e5e5e414c1b0d55eac81fe0f21d11f5b57cc"], "follower_count": 268, "custody_address": "0x5011a25a9856620d29f7ee36f38551d331293532", "following_count": 507, "verified_addresses": {"eth_addresses": ["0x7428e5e5e414c1b0d55eac81fe0f21d11f5b57cc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/blueapple/03-pink-martini-splendor-in-the-grass?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (833474, '0xede39bd3ee6210ffce98ba261fa3234be629aff6', 0, 1, '2024-05-07 04:21:58+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1532, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1802, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lofty-chan/2pm-heartbeat?si=831b225fa20f4fce95fae08fb7210ba3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (924176, '0xc3ffaf41eed5357e781b73a258901ed795294340', 0, 1, '2024-05-07 07:36:53+00', 0, 3, '{"fid": 411455, "object": "user", "pfp_url": "https://i.imgur.com/j1ngOFQ.jpg", "profile": {"bio": {"text": "Sunny Day : )\n맛있게 먹고, 재밌게 살기🎶 ", "mentioned_profiles": []}}, "username": "sunny38", "power_badge": false, "display_name": "Sunny🙂🍖", "active_status": "inactive", "verifications": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "follower_count": 2221, "custody_address": "0x58375c5d74a72693c589764f07423f151dd130bc", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/w3DBQ\"}"}', 'sonata'), - (764841, '0x01040c5bde3a2f4c507812ed2bf2dd426ffc4031', 0, 1, '2024-05-07 00:29:11+00', 0, 0, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃👉 ❶$DEGEN❷$FOMO❸🥚\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1379, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1535, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3jNwPOqdPvQIr5dRT0hzgY?si=hWwXIktYQn2ZJocwTKAVTA&context=spotify%3Aplaylist%3A37i9dQZF1EIYyZyB8mXFN1\"}"}', NULL), - (873358, '0x33c31869a4d97d90ac7af6e411bfdb92a4b7f095', 0, 1, '2024-05-07 05:57:21+00', 0, 1, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1184, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1067, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/young-wook-nam/ngupyfc1x5bs?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (840179, '0xd8a902a7ec8ec0adf5ebbb866b96004d74f60376', 0, 1, '2024-05-07 05:01:38+00', 0, 3, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2930, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2362, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NP8Dn\"}"}', 'sonata'), - (854907, '0x5d1374ef84b82414b2ab844bc24dbd42ccd2d2f3', 0, 1, '2024-05-07 05:30:42+00', 0, 0, '{"fid": 436149, "object": "user", "pfp_url": "https://resolve.mercle.xyz/ipfs/bafkreihfmwvgaujzhk4agmif6nwyeaa72l5uzmehhpj4mvmqf6rwvfkwbi", "profile": {"bio": {"text": "Web3 Gamer 🎮 NFT Enthusiasm 🖼️ Forex Trader 📈\n\nFamily lover 💖", "mentioned_profiles": []}}, "username": "satoshimh", "power_badge": false, "display_name": "🎩 Satoshimh 🍖🔵🔄", "active_status": "inactive", "verifications": ["0x195e607869276ec4603e9945fb35c1dff88b77ad", "0xdf43c2b7bb4829f97839bfd89767fe8241cc4aba"], "follower_count": 730, "custody_address": "0x50f1fda88595f621c727448f0144d216cf3bd210", "following_count": 626, "verified_addresses": {"eth_addresses": ["0x195e607869276ec4603e9945fb35c1dff88b77ad", "0xdf43c2b7bb4829f97839bfd89767fe8241cc4aba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-464461825-269091954/sets/nostalgia?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (885404, '0x4ce68714321d8a9fc959da286010ff35ef58b34a', 0, 1, '2024-05-07 06:27:44+00', 0, 4, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 481, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 773, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UvQH8\"}"}', 'sonata'), - (924046, '0x523b16eb17819cecd71bf6c8af0f978161ecb6ef', 0, 1, '2024-05-07 07:36:03+00', 0, 4, '{"fid": 466312, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9975ea25-819f-429b-3969-c8c0ef401600/original", "profile": {"bio": {"text": "no longer a non-shiny and a non-lurker \n//\ni make dune dashboards\n//\nhttps://dune.com/whimsicott/pokemonensonfarcaster \n//\n⌐◨-◨ pilled", "mentioned_profiles": []}}, "username": "whimsicott.eth", "power_badge": false, "display_name": "Φ テ whimsi 🧢🎩", "active_status": "inactive", "verifications": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "follower_count": 144, "custody_address": "0x39a2de2cbdac5a19ed60f4c43e3ae5a539580a6b", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/w1gxfScopXL5qV1b8\"}"}', NULL), - (900662, '0x844acef99f4bb63d8c44e0cc6f8ab28ac7059101', 2605, 1, '2024-05-07 06:49:41+00', 0, 3, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/saintmotel/move-1\"}"}', NULL), - (747001, '0xf877bb1d75ea8b1501f7394eca1a5957c84008af', 0, 1, '2024-05-06 23:25:20+00', 0, 1, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1282, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 890, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mnogaaa/basket-case\"}"}', NULL), - (786523, '0x256329990c3726e054dc5cb50bda056c81be081e', 0, 1, '2024-05-07 02:37:14+00', 0, 2, '{"fid": 337385, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/de359732-8bf7-4cdb-7be3-6d87bc1a5200/original", "profile": {"bio": {"text": "I love warpcast 🎩", "mentioned_profiles": []}}, "username": "wowswows", "power_badge": false, "display_name": "wowwow🎩🐲 🐉🌸🍖", "active_status": "inactive", "verifications": ["0x6006b05b3e8cc9c73130c2a55f23a2320014721f"], "follower_count": 1853, "custody_address": "0x2fd12107c1c653886fad2b499f3ba596df79a2bb", "following_count": 1588, "verified_addresses": {"eth_addresses": ["0x6006b05b3e8cc9c73130c2a55f23a2320014721f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8ZwFUzA4piuscJcj6\"}"}', 'sonata'), - (786821, '0x63aadc4e964bc83667de6676d4c77cc33512d2fa', 0, 1, '2024-05-07 02:39:20+00', 0, 3, '{"fid": 400234, "object": "user", "pfp_url": "https://i.imgur.com/I4wpiBh.jpg", "profile": {"bio": {"text": "깜박깜박 잊고 있다가 “아맞다!!!!!”\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n그래서 내 별명은 amadda 💕 아마따 💕\n", "mentioned_profiles": []}}, "username": "amadda", "power_badge": false, "display_name": "Amadda", "active_status": "inactive", "verifications": ["0xf483e2d4da3e190f1cd6fdc42adc87fc29b6e066"], "follower_count": 2222, "custody_address": "0x3f313dd8fb8a9a130bbbbf5da2b2aef0c95dde81", "following_count": 1934, "verified_addresses": {"eth_addresses": ["0xf483e2d4da3e190f1cd6fdc42adc87fc29b6e066"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KBnqrVb68UMzzEH37\"}"}', 'sonata'), - (764844, '0xd2b7c80f99c144b1339541733747d86337e56c68', 0, 1, '2024-05-07 00:29:15+00', 0, 1, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2637, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2456, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5DmAo\"}"}', 'sonata'), - (758512, '0x0c05bb8f89bb3b9510c096ead94a1981e747c8f6', 1111, 1, '2024-05-07 00:00:46+00', 0, 6, '{"fid": 238853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a59d05-ac7c-4a6b-f4d3-0b52f78f9b00/original", "profile": {"bio": {"text": "bringing culture onchain. creating virtual artists. building @hume.", "mentioned_profiles": []}}, "username": "db3045", "power_badge": true, "display_name": "DavidBeiner", "active_status": "inactive", "verifications": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "follower_count": 874, "custody_address": "0xde3cea5bb06f5d18d92a827f0ace525bc714963a", "following_count": 368, "verified_addresses": {"eth_addresses": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/am-i-just-high\"}"}', 'sonata'), - (830396, '0xd37214c8b73c0606c7b49eea5329e7b40607424a', 0, 1, '2024-05-07 04:15:04+00', 0, 0, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1118, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 627, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eNf6uGf6WCM89ZWG9\"}"}', NULL), - (779852, '0x66f3783380aebfe8d22f83cf758cd7adfe3691fc', 0, 1, '2024-05-07 01:47:23+00', 0, 3, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1463, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1737, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8nA2nWXU7j1JqQ3Q8\"}"}', NULL), - (747003, '0x2236369c752fc4e30092c3df156c77a6a9361e9e', 0, 1, '2024-05-06 23:25:49+00', 0, 3, '{"fid": 401137, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreicsyezfqnce4pu77dnahnx543eivcihqyfgcqyzg7uvtv62niotcy", "profile": {"bio": {"text": "Iwanttoknowabouteverything. \n\n 소통이제일즐거워 뚠뚠🐜🐜🐜", "mentioned_profiles": []}}, "username": "godhee", "power_badge": false, "display_name": "Godhee 🍖🎩", "active_status": "inactive", "verifications": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "follower_count": 2751, "custody_address": "0xee713090ee73a3df4a8113b14862bc87a5a30af6", "following_count": 2922, "verified_addresses": {"eth_addresses": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aaKHZbq8SXmWqWL78\"}"}', 'sonata'), - (746629, '0x3f10b931b424f0df7aeb8182bdfd4b527721b42e', 0, 1, '2024-05-06 23:23:30+00', 0, 5, '{"fid": 4564, "object": "user", "pfp_url": "https://i.imgur.com/hKWxU5e.jpg", "profile": {"bio": {"text": "I like building things and exploring new places. MrKevinOConnell.github\n\nDoing work at @neynar", "mentioned_profiles": []}}, "username": "kevinoconnell", "power_badge": true, "display_name": "kevin", "active_status": "inactive", "verifications": ["0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7", "0x69689f02c4154b049fb42761ef8fa00808f1b7ea"], "follower_count": 23682, "custody_address": "0x4622146b77ecefe4ca7552a81949d54eac991512", "following_count": 905, "verified_addresses": {"eth_addresses": ["0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7", "0x69689f02c4154b049fb42761ef8fa00808f1b7ea"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3MBAedkX9Al5Yfn8xMxvMa?si=sB_RluB7TsObUAyPOTtMmA\"}"}', NULL), - (833580, '0x69c048724ce11c3c7b2091dce4902ae82bbc6e31', 0, 1, '2024-05-07 04:22:42+00', 0, 0, '{"fid": 366037, "object": "user", "pfp_url": "https://i.imgur.com/1pGQsmg.jpg", "profile": {"bio": {"text": "Love nature 자연광\n맞팔환영\nhttps://zora.co/@jjaekani", "mentioned_profiles": []}}, "username": "jjaekani", "power_badge": false, "display_name": "jjaekani", "active_status": "inactive", "verifications": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "follower_count": 755, "custody_address": "0x02dd0d4a46042be8548d3a06680448c925e7e487", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ipccKVcfzdyi2RiY9\"}"}', 'sonata'), - (833578, '0xb3f0e98265f6a2102b24458048ee7f93335f1653', 0, 1, '2024-05-07 04:23:52+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1532, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1802, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yoomans/backstreet-boys-i-want-it-that-way-yoomans-remix?si=94239b746bb44636ae07477f5eed3da0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (832329, '0xe5beb147549db2a5437e7655410aa783cfe2640c', 0, 1, '2024-05-07 04:19:01+00', 0, 0, '{"fid": 500262, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbkR53dVasVCecCSxk8vdg92vF39Zct65V3yUkLpjmMb7?filename=skywalker.png", "profile": {"bio": {"text": "freedom ✅Honestly.✅NO Farm✅NO Abusing✅ 무지개 반사🌈\n\n", "mentioned_profiles": []}}, "username": "selenayoon", "power_badge": false, "display_name": "Skywalker🍖 🌈", "active_status": "inactive", "verifications": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "follower_count": 1298, "custody_address": "0x1b1e2a16503e2802d95de4398bc50ccc527c7d48", "following_count": 1191, "verified_addresses": {"eth_addresses": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AzDMU7qUC6e5Lw4w6\"}"}', 'sonata'), - (733328, '0x64ab282ed152e9fe812821916ad7ec0da670fd45', 0, 1, '2024-05-06 21:31:09+00', 0, 5, '{"fid": 214570, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/cluwbae3c01kamhvy175prg45.png", "profile": {"bio": {"text": "Early adopter | Degentlemen #8570", "mentioned_profiles": []}}, "username": "cav4lier.eth", "power_badge": false, "display_name": "cav4lier🎩🐲", "active_status": "inactive", "verifications": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "follower_count": 1105, "custody_address": "0x6ff3403ac94b6d5b79584fc398008f682d2ff591", "following_count": 794, "verified_addresses": {"eth_addresses": ["0x17daf278f0d4e406b435ea74387f52d0b18c5c25"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/packrecs/suave-punk-heatdeath?referral=0x17daf278f0d4e406b435ea74387f52d0b18c5c25&referral_source=link\"}"}', NULL), - (873349, '0x672af59135cc827e3c2ad58055d7caafb686bf29', 0, 1, '2024-05-07 05:56:27+00', 0, 1, '{"fid": 472643, "object": "user", "pfp_url": "https://i.imgur.com/6iLzIu4.jpg", "profile": {"bio": {"text": "A wise man''s life is based around fuck you.", "mentioned_profiles": []}}, "username": "vn4ras2", "power_badge": false, "display_name": "Ne0one🎩🔵🍖", "active_status": "inactive", "verifications": ["0x039b169dd3f622eafe8f33c669a681f6693a792d", "0xc2b30d3e2576933f5902de944e34d2fc7d6b6b5b"], "follower_count": 1189, "custody_address": "0xbc5950548b098840c04e7b7fa243b3821f8e95d9", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0x039b169dd3f622eafe8f33c669a681f6693a792d", "0xc2b30d3e2576933f5902de944e34d2fc7d6b6b5b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZALc9p2UHwXpNsWs5\"}"}', 'sonata'), - (923599, '0x5627e5d2116a67318b95e8930ee82e22ed47eddb', 0, 1, '2024-05-07 07:30:10+00', 0, 1, '{"fid": 287306, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNTbdC51BzXUjxjnJr2UNn1NCUaGyHiDE232wABnM8WCd?filename=suzy.jpg", "profile": {"bio": {"text": "Follow me🙋‍♀️🙆‍♀️ 🙏/ $DEGEN/ Crypto ", "mentioned_profiles": []}}, "username": "sh0070", "power_badge": false, "display_name": "gim74713🎩🍖🔮", "active_status": "inactive", "verifications": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "follower_count": 1731, "custody_address": "0x3253aea02e5d297c7d61c4c71e0d1e28bac2d889", "following_count": 1046, "verified_addresses": {"eth_addresses": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/a2QzRUYqSQPA1DjY7\"}"}', 'sonata'), - (770879, '0x76ad235f2dbf85cf63e164f04f9c74ebe7797a39', 0, 1, '2024-05-07 01:13:45+00', 0, 3, '{"fid": 506657, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/03f1b7cf-dc8a-4ec9-9df8-e1113ce98f00/rectcrop3", "profile": {"bio": {"text": "I love warpcast crypto\n소통은 언제나 환영!!", "mentioned_profiles": []}}, "username": "!506657", "power_badge": false, "display_name": "Kse", "active_status": "inactive", "verifications": ["0x1ec083891fe274d243a38664ffd24a78483163b0"], "follower_count": 724, "custody_address": "0x0134cec44a016a1febb1173890673c16f952fb76", "following_count": 1005, "verified_addresses": {"eth_addresses": ["0x1ec083891fe274d243a38664ffd24a78483163b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (777014, '0xb5b0ec0a2b56f4f2b3dc0fcc174c27b9bd7f3ccc', 0, 1, '2024-05-07 01:36:04+00', 0, 1, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 812, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pshbfg99gwr0/mp3-561885670?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (779949, '0x9bf580fb0ecffb7b14c64c665b75dad5dbb0a1e5', 0, 1, '2024-05-07 01:47:57+00', 0, 7, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1349, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 713, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":501566,\"hash\":\"0xef0376e61b1b29f52ec23d95a26baf52f676d332\"}}","{\"url\":\"https://on.soundcloud.com/JdTrf15jc1DgPD1m6\"}"}', 'sonata'), - (764875, '0x5e4d9ea72e77ad6ecbe0655314373a820a22a962', 0, 1, '2024-05-07 00:30:14+00', 0, 2, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2637, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2456, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8P6ro\"}"}', 'sonata'), - (768492, '0x5c8fe784b3b411153b5ff1253016d6d47046ad6d', 0, 1, '2024-05-07 00:53:59+00', 0, 4, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 4049, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 361, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=1d012d30a2924352\"}"}', 'bangers'), - (901591, '0x0a3405ec5bb84b76e6189d09a9c9ae9b130d6e20', 0, 1, '2024-05-07 06:50:13+00', 0, 3, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yungestbae/datstick\"}"}', NULL), - (786843, '0xb994e9a83e698dc7feba4f9dc11ec377e77b616b', 0, 1, '2024-05-07 02:39:59+00', 0, 11, '{"fid": 433444, "object": "user", "pfp_url": "https://i.imgur.com/vnqeXNb.jpg", "profile": {"bio": {"text": "민두 | 놀러와 주신분들 너무 감사합니다💕", "mentioned_profiles": []}}, "username": "mindu", "power_badge": false, "display_name": "Mindu🎩_🎩", "active_status": "inactive", "verifications": ["0x8a09b32439ee7debc7cd5003f81f9228a2b0e95c"], "follower_count": 3286, "custody_address": "0xf4fb500b8cd36116a49fb592fd126fa12a13171d", "following_count": 3009, "verified_addresses": {"eth_addresses": ["0x8a09b32439ee7debc7cd5003f81f9228a2b0e95c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/selenophlie/damons-year-yours?si=f43a8a04bcaf48918f4a195c37021be2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (765366, '0x57c8c6ca40378c6e52d3bccdf03928afb3248d93', 0, 1, '2024-05-07 00:30:54+00', 10, 4, '{"fid": 379875, "object": "user", "pfp_url": "https://i.imgur.com/wVusqBa.jpg", "profile": {"bio": {"text": "I love warpcast & degen 영앤리치 부자되는그날까지!", "mentioned_profiles": []}}, "username": "plm2627", "power_badge": false, "display_name": "Dior🎩 ", "active_status": "inactive", "verifications": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "follower_count": 2637, "custody_address": "0x0affba53c568e54964333380e0d7a61b861bf0af", "following_count": 2456, "verified_addresses": {"eth_addresses": ["0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/b7mFt\"}"}', 'sonata'), - (765782, '0x47221c9ee0c6e7d65ae636ad1ddb0a4b00ab79fd', 0, 1, '2024-05-07 00:34:00+00', 10, 6, '{"fid": 406030, "object": "user", "pfp_url": "https://i.imgur.com/vMCIp4x.jpg", "profile": {"bio": {"text": "🥰I love jung&su🎩🍖🔮🥰", "mentioned_profiles": []}}, "username": "luckyhappymom", "power_badge": false, "display_name": "😸luckyhappymom🎩🍖😸", "active_status": "inactive", "verifications": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "follower_count": 2913, "custody_address": "0x2ff561b9b84e0c139bb218f56569e7f6c84f9554", "following_count": 3668, "verified_addresses": {"eth_addresses": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DkFTw\"}"}', 'sonata'), - (779864, '0x75381efff4dd4b9bcd50c1ca6121efcfeb234ae3', 0, 1, '2024-05-07 01:46:07+00', 0, 1, '{"fid": 507495, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b8de9b9-8631-4730-d3a1-764d92058500/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!507495", "power_badge": false, "display_name": "nwjns", "active_status": "inactive", "verifications": ["0x1af8ac8bc8315958023665e32a99253020b05309"], "follower_count": 913, "custody_address": "0xffe6493776d4fc5dec35b8e8abcdd6f737518940", "following_count": 1405, "verified_addresses": {"eth_addresses": ["0x1af8ac8bc8315958023665e32a99253020b05309"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/carvouJLpeNGGUwL9\"}"}', NULL), - (771607, '0x063534b3d4e962333c439457822e4a18c0965573', 0, 1, '2024-05-07 01:14:03+00', 0, 0, '{"fid": 500192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ce5a3a6-a9f6-42b8-f629-f50bf9ac5800/original", "profile": {"bio": {"text": "I''m into a crypto\n", "mentioned_profiles": []}}, "username": "slimbear", "power_badge": false, "display_name": "magnet", "active_status": "inactive", "verifications": ["0x82209111e235613802e6a95f0a4371307408461a"], "follower_count": 132, "custody_address": "0x26a5a24457559d2daf1c38ea21d169f7dc112885", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x82209111e235613802e6a95f0a4371307408461a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jyXBCVzg4dbX8hh29\"}"}', NULL), - (779854, '0xd35d1fd80f19475761109adaf7e278f3f57939d5', 0, 1, '2024-05-07 01:46:35+00', 0, 0, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1451, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1593, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ililil-588179922/steal-the-show?si=d2ca6f7163594c01a106078080c81cce&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (776564, '0x305c872d1aa03bb3fb2c06eede2174528fd142fc', 0, 1, '2024-05-07 01:34:03+00', 0, 0, '{"fid": 499057, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92eb5b0b-027b-405c-550d-59f4268c8000/rectcrop3", "profile": {"bio": {"text": "Shiba will save the world🐾 존대말을 못배운 카와이시바 4가지없는게 아니야! 은혜는 무조건 갚는 카와이시바!", "mentioned_profiles": []}}, "username": "kawaiishiba", "power_badge": false, "display_name": "Kawaii_Shiba🎩", "active_status": "inactive", "verifications": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "follower_count": 1079, "custody_address": "0x1fd5449710120b982115e31881eb221ef9979283", "following_count": 1232, "verified_addresses": {"eth_addresses": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xRTzzWBmGWFVq3UX8\"}"}', NULL), - (744661, '0x9d9578bab43cf239c6f6cfb8d4ca67c11e49d905', 0, 1, '2024-05-06 23:12:43+00', 0, 2, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 417, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"cast_id\":{\"fid\":492400,\"hash\":\"0x608717c54920627a220e2c10b8560e05b1ce46de\"}}","{\"url\":\"https://on.soundcloud.com/jjDrUeptw7K28ZQp9\"}"}', 'musicjp'), - (765800, '0x06a5d500b9aa6c4168249b4a5b610a2f23f01573', 0, 1, '2024-05-07 00:34:16+00', 10, 3, '{"fid": 239745, "object": "user", "pfp_url": "https://i.imgur.com/Vp9u8Ko.jpg", "profile": {"bio": {"text": "🍉🍍🥝", "mentioned_profiles": []}}, "username": "yuna", "power_badge": false, "display_name": "Yuna", "active_status": "inactive", "verifications": ["0x75cf55a1a228e691342521b01a7de4e113fac30d"], "follower_count": 99, "custody_address": "0xe40939f3c5b3f095a521aa3ba7e3c9781ecc3432", "following_count": 67, "verified_addresses": {"eth_addresses": ["0x75cf55a1a228e691342521b01a7de4e113fac30d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yarek-pro/do-skoryx-vstrech-na-myatyx?in=trending-music-eunon/sets/r-b&si=aa033685efa14ff8bbeec9d94e8fb4d0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (768478, '0xc4d0000b95690c4fc70ac8951dc5686426842b12', 0, 1, '2024-05-07 00:52:26+00', 0, 2, '{"fid": 286957, "object": "user", "pfp_url": "https://ewhoob6flqqnvto3qqysl5iy24fzzakvgiilwfufevsamzqclwtq.arweave.net/JY7nB8VcINrN24QxJfUY1wucgVUyELsWhSVkBmYCXac/", "profile": {"bio": {"text": "Trading is my thing.\nhttps://zora.co/@slimbear\n", "mentioned_profiles": []}}, "username": "dantaisbest", "power_badge": false, "display_name": "danta🎩🍖", "active_status": "inactive", "verifications": ["0x8091651d8562e720c588639f858457aeb454f613"], "follower_count": 2163, "custody_address": "0x45d9fdf0cdb50644550c3ddc86f0eb39362000a8", "following_count": 993, "verified_addresses": {"eth_addresses": ["0x8091651d8562e720c588639f858457aeb454f613"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/X2DeKoahtC9gDsrG8\"}"}', NULL), - (747859, '0xe9fa1308c343a39dad4fc5385ea96468749b53a5', 0, 1, '2024-05-06 23:26:34+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1530, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1799, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/a5uTeTQBcSrb6bpQ9\"}"}', NULL), - (833575, '0xbf953f0757c767306d0c713761cb0aade7f22ae9', 0, 1, '2024-05-07 04:23:22+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1532, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1802, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/simplymonday/hxhaxcy5uqqd?si=7b049d79b4164cd9ad40042ae527b5f7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (780523, '0xb2da4c44f207d28289a5bb359e2f7432cb0421c8', 0, 1, '2024-05-07 01:51:45+00', 0, 1, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1463, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1737, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5uo8ZLMayB62fCbe6\"}"}', NULL), - (786853, '0x768e7fe1423c42c04626d3adb467f8cc8c71646d', 0, 1, '2024-05-07 02:40:09+00', 0, 1, '{"fid": 505556, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8290c871-b580-42d9-4083-1b5c2adcd100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "pivot", "power_badge": false, "display_name": "pivot", "active_status": "inactive", "verifications": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "follower_count": 900, "custody_address": "0x6c1d49afdb334e1728a0193198584fff3012e63b", "following_count": 790, "verified_addresses": {"eth_addresses": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RACSBz97hZUDmaPH9\"}"}', NULL), - (765788, '0x0c3a110dd9876ce40ea9bf28affc8a582903bcea', 0, 1, '2024-05-07 00:34:31+00', 0, 4, '{"fid": 415663, "object": "user", "pfp_url": "https://i.imgur.com/DRWpTH0.jpg", "profile": {"bio": {"text": "강원도 사는 고맘 ^^* 저는 프시케예요", "mentioned_profiles": []}}, "username": "coffeetea-csk", "power_badge": false, "display_name": "커피여행", "active_status": "inactive", "verifications": ["0x3b5e16973408e1c60a049693589e62b101a19426"], "follower_count": 956, "custody_address": "0xd8dde5fa3df108289bdc7de3f693ac2a30bef45b", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x3b5e16973408e1c60a049693589e62b101a19426"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-274076136-270370150/newjeans-bubble-gum-official?si=2f9112b066db46e487beed769a232ed7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (746216, '0xc7f632f3c47cb81389ea27434da5007b2b37b622', 0, 1, '2024-05-06 23:21:19+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1530, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1799, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Go5ZyDpR5eGNfbP57\"}"}', NULL), - (765814, '0x071589224b44db67aa9870c161a61011443215e4', 0, 1, '2024-05-07 00:33:27+00', 0, 0, '{"fid": 415663, "object": "user", "pfp_url": "https://i.imgur.com/DRWpTH0.jpg", "profile": {"bio": {"text": "강원도 사는 고맘 ^^* 저는 프시케예요", "mentioned_profiles": []}}, "username": "coffeetea-csk", "power_badge": false, "display_name": "커피여행", "active_status": "inactive", "verifications": ["0x3b5e16973408e1c60a049693589e62b101a19426"], "follower_count": 956, "custody_address": "0xd8dde5fa3df108289bdc7de3f693ac2a30bef45b", "following_count": 898, "verified_addresses": {"eth_addresses": ["0x3b5e16973408e1c60a049693589e62b101a19426"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-274076136-270370150/newjeans-bubble-gum-official?si=2f9112b066db46e487beed769a232ed7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (764850, '0x4b1128ce1220b1db04ed1acb71a8ff725513fe0f', 0, 1, '2024-05-07 00:30:00+00', 0, 1, '{"fid": 4564, "object": "user", "pfp_url": "https://i.imgur.com/hKWxU5e.jpg", "profile": {"bio": {"text": "I like building things and exploring new places. MrKevinOConnell.github\n\nDoing work at @neynar", "mentioned_profiles": []}}, "username": "kevinoconnell", "power_badge": true, "display_name": "kevin", "active_status": "inactive", "verifications": ["0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7", "0x69689f02c4154b049fb42761ef8fa00808f1b7ea"], "follower_count": 23682, "custody_address": "0x4622146b77ecefe4ca7552a81949d54eac991512", "following_count": 905, "verified_addresses": {"eth_addresses": ["0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7", "0x69689f02c4154b049fb42761ef8fa00808f1b7ea"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1gNcPHAiVIQZmqJFJdt3ti?si=5c4eb8e9d16c40da\"}"}', 'kevinoconnell'), - (779619, '0x10afc222d098995052d729d7da3550f62d16f250', 0, 1, '2024-05-07 01:44:56+00', 0, 2, '{"fid": 339616, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fddce9c7-6ee8-4739-25d1-79320a6aed00/rectcrop3", "profile": {"bio": {"text": "I am a painter and a 👒crypto enthusiast", "mentioned_profiles": []}}, "username": "zahraderakhshi", "power_badge": false, "display_name": "zahraad🎩🔵🍖🔄", "active_status": "inactive", "verifications": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "follower_count": 1935, "custody_address": "0x043933859392c1ba966b3bf4c0db15af7e258330", "following_count": 3094, "verified_addresses": {"eth_addresses": ["0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h8kXF\"}"}', 'sonata'), - (853441, '0x86c2c57f21a453b73f482cb7f4b70f0be15d2ab8', 0, 1, '2024-05-07 05:27:46+00', 0, 0, '{"fid": 287674, "object": "user", "pfp_url": "https://i.imgur.com/eKRHQek.jpg", "profile": {"bio": {"text": "Hi~ I''m choi who wants to make many friends~ Please be friends with me!\nso glad to meet u every friends.", "mentioned_profiles": []}}, "username": "choihy", "power_badge": false, "display_name": "choichoi🎩", "active_status": "inactive", "verifications": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "follower_count": 1008, "custody_address": "0xee9478fcdcbee02652b2dc62f13e0344fed8d3b9", "following_count": 1178, "verified_addresses": {"eth_addresses": ["0x11212242ba29e3544b7fe2bd18ae328914b0ec5e"], "sol_addresses": ["AcNwE2N4LmVCcJJ2Ct7RCGiHBqm43BmgPGs1H8RLWt75"]}}', '{"{\"url\":\"https://on.soundcloud.com/ozfm6j5Hoa2XBzNn8\"}"}', 'sonata'), - (880871, '0x46f7c46d7896898619bcde90a2e646107885b2d6', 0, 1, '2024-05-07 06:12:15+00', 0, 1, '{"fid": 325706, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWnD9SHLqXBn3EGZDAEMwkoBsJmBwQisjpscGHc2tXdUd?filename=zora-(9).jpg", "profile": {"bio": {"text": "🔆긍정🔆-🐮소통🐮-🪞반사🪞", "mentioned_profiles": []}}, "username": "miconox", "power_badge": false, "display_name": "MICONOX", "active_status": "inactive", "verifications": ["0xdfc3675c1b76fe2b98b77e1de7ac1a4fe48c4fec"], "follower_count": 2252, "custody_address": "0x8d60212ac84b48b4a605b4a084f4459d177f9d1b", "following_count": 1379, "verified_addresses": {"eth_addresses": ["0xdfc3675c1b76fe2b98b77e1de7ac1a4fe48c4fec"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t-trang-801042212/cool-aloha?si=85dcbfa9c4cd4e878bd9c9f18707de34&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (786859, '0x0c5f0b6af71cc5534fabcf71ec49b0df77ee7c3c', 0, 1, '2024-05-07 02:38:45+00', 0, 0, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/anmol-rajoriya/ive-heya-1?si=c14f182f11b0422e941f58be811d7006&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (761485, '0x9e39b19b420c94f42b3ac1b9717f21e61e687832', 0, 1, '2024-05-07 00:16:40+00', 0, 0, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3095, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2298, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sUZKA\"}"}', 'sonata'), - (745602, '0x9db58750f43d83abe87f30db3cda6551ac96abdb', 0, 1, '2024-05-06 23:19:40+00', 0, 2, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3116, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2659, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Fd3My\"}"}', 'sonata'), - (746027, '0x339f3c91e634fed775bc6a5dea0f1760e3eb88af', 0, 1, '2024-05-06 23:20:27+00', 0, 1, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11d25945-614c-4f57-0e82-2a5992f10900/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0x550273c395e4914e38f131ebeb0cb49da44a6257"], "follower_count": 100, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0x550273c395e4914e38f131ebeb0cb49da44a6257"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/612uaHMgsm5fTqi97\"}"}', 'sonata'), - (833581, '0xdc0f33380595ee4be7dd47893fab840259f522c8', 0, 1, '2024-05-07 04:23:45+00', 0, 0, '{"fid": 354417, "object": "user", "pfp_url": "https://i.imgur.com/pFKJHwi.jpg", "profile": {"bio": {"text": "⛰️Mt.Waka⛰️ド田舎住み🚶Japanese🇯🇵 アレのアレは不要。 🫶は独断と偏見で。 \n🎩🍖⚙️🍑", "mentioned_profiles": []}}, "username": "jimo", "power_badge": false, "display_name": "Jimo3.degen 🇯🇵🎩🍖🔄", "active_status": "inactive", "verifications": ["0x5a99d1dfabbfaf5f0f1cf5ade3d380c0afe11341"], "follower_count": 871, "custody_address": "0xe673b9f35f9c5d2ff9b992eec9955c6c14b79097", "following_count": 1181, "verified_addresses": {"eth_addresses": ["0x5a99d1dfabbfaf5f0f1cf5ade3d380c0afe11341"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sorriow/sets/to-far-away-times-chrono-trigger-chrono-cross-arrangement-album?si=8f9ee98a33324282bc0c43ac9b6007c2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (776561, '0x50251a0a93118f4f543167e215245c335d235fbf', 0, 1, '2024-05-07 01:34:03+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1531, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1801, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/simpluhfied/george-lets-go-picnic?si=8b41730c8fdb485290455b37ed4fec0d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (720608, '0xf94f4c2e5895e9007058f5f7cee599374d92bfc2', 0, 1, '2024-05-06 19:51:09+00', 0, 3, '{"fid": 1134, "object": "user", "pfp_url": "https://i.imgur.com/1IovpAV.jpg", "profile": {"bio": {"text": "Building /bello 🍄 | Podcasting about creators https://adamlevy.io/mint | @a16zcrypto CSX alum", "mentioned_profiles": []}}, "username": "levy", "power_badge": true, "display_name": "levy.eth ↑ 🎩", "active_status": "inactive", "verifications": ["0x74667801993b457b8ccf19d03bbbaa52b7fff43b"], "follower_count": 5430, "custody_address": "0xad0e87cefaa6b64b967285a2fa2b7b2d7a830ee5", "following_count": 185, "verified_addresses": {"eth_addresses": ["0x74667801993b457b8ccf19d03bbbaa52b7fff43b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x74667801993b457b8ccf19d03bbbaa52b7fff43b\"}"}', NULL), - (746218, '0x0c2c767f9e2e176b3db7237154ac1e6f1708be77', 0, 1, '2024-05-06 23:22:32+00', 0, 2, '{"fid": 420275, "object": "user", "pfp_url": "https://i.imgur.com/emFFubS.jpg", "profile": {"bio": {"text": "음식, 여행사진, 여행정보 여러가지 일상을 공유합니다!\n관심 부탁드릴께요~♡", "mentioned_profiles": []}}, "username": "lovetree", "power_badge": false, "display_name": "사랑나무", "active_status": "inactive", "verifications": ["0x6251048d2e393c55a20e973ff5cd9c3cfc40a5d8"], "follower_count": 1538, "custody_address": "0x4efcfcc14f5264ef063232b4172a7d5614d3f36e", "following_count": 1464, "verified_addresses": {"eth_addresses": ["0x6251048d2e393c55a20e973ff5cd9c3cfc40a5d8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/86kRp\"}"}', 'sonata'), - (786943, '0x4885f24977319e58a21621590f2b1a6f0754bb94', 0, 1, '2024-05-07 02:41:51+00', 0, 2, '{"fid": 410852, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04c792fc-3ace-45b6-13b4-253e62286600/original", "profile": {"bio": {"text": "How about reading some mangas?", "mentioned_profiles": []}}, "username": "yoonappa", "power_badge": false, "display_name": "Uneed2sleep", "active_status": "inactive", "verifications": ["0xed7d93da437ad37955a316d61b05b0242e2af4fd"], "follower_count": 1316, "custody_address": "0x55ae0e33e82759611d20ce5183f28514f2463409", "following_count": 1466, "verified_addresses": {"eth_addresses": ["0xed7d93da437ad37955a316d61b05b0242e2af4fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yhevQnvmQ7ST67nRA\"}"}', NULL), - (748509, '0x4e34e21c4b4dfb86237334e83e6ae85e4011f6a9', 0, 1, '2024-05-06 23:28:55+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 정승환 - 안녕이란 말 by wonderfulday on #SoundCloud https://on.soundcloud.com/7Vp5p\"}"}', NULL), - (748809, '0x7fbc22cddf229726baae71cfddcee8067dc5ee07', 0, 1, '2024-05-06 23:29:47+00', 0, 0, '{"fid": 500461, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc4873ea-85ed-420e-739f-e960fb8b8600/rectcrop3", "profile": {"bio": {"text": "괜찮아.\nYou''ll be happy.", "mentioned_profiles": []}}, "username": "mondss", "power_badge": false, "display_name": "shine_my_life🎩", "active_status": "inactive", "verifications": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "follower_count": 1165, "custody_address": "0xa044138872bbb075008d24c1921fac2f00e7c58b", "following_count": 1029, "verified_addresses": {"eth_addresses": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Paranoid by Lauv on #SoundCloud https://on.soundcloud.com/5FVXj\"}"}', NULL), - (787168, '0x6f44bc8093be36c8054bd7748fe048c80d65bc3f', 0, 1, '2024-05-07 02:44:07+00', 0, 1, '{"fid": 17137, "object": "user", "pfp_url": "https://i.imgur.com/jaz8927.png", "profile": {"bio": {"text": "keep exploring…", "mentioned_profiles": []}}, "username": "d-ttang", "power_badge": false, "display_name": "d_ttang 🔵 ᖽ↑🎩", "active_status": "inactive", "verifications": ["0x4630cf0fa55f83e11e43286ff04fc6930e1eb095"], "follower_count": 719, "custody_address": "0x777539de0af05dc7ac42579aa0324adc8729eb43", "following_count": 1547, "verified_addresses": {"eth_addresses": ["0x4630cf0fa55f83e11e43286ff04fc6930e1eb095"], "sol_addresses": ["3112ASdPyfQFAvoyatxRdUrhe6MwN3TrWzxiBia6UdqA"]}}', '{"{\"url\":\"https://soundcloud.com/metroboomin/bbl-drizzy-bpm-150-mp3\"}"}', NULL), - (788042, '0xb3aeab76e3cb23ad026f5a9302ba950532b71c12', 0, 1, '2024-05-07 02:52:08+00', 0, 0, '{"fid": 503239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c42c66b2-9338-45e6-e1eb-5d5b3541bc00/rectcrop3", "profile": {"bio": {"text": "i''m happy day you to happy!!", "mentioned_profiles": []}}, "username": "mangolike", "power_badge": false, "display_name": "misslee", "active_status": "inactive", "verifications": ["0x47a7f4a461ef9b6b1646343afaa1ccbf646d4c45"], "follower_count": 1001, "custody_address": "0x0e16641794cede6b5cb7c3a31cfa64d2b05ece57", "following_count": 855, "verified_addresses": {"eth_addresses": ["0x47a7f4a461ef9b6b1646343afaa1ccbf646d4c45"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AQVBK\"}"}', 'sonata'), - (766316, '0x3fec84f5d7518c21541c1c9e2905b5a6f5a36783', 0, 1, '2024-05-07 00:36:38+00', 0, 15, '{"fid": 492181, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce798017-869a-443c-346e-b7f241eec900/rectcrop3", "profile": {"bio": {"text": "일상 생활 공유해요~\n같이 즐겨요(맞조대리팔!) F4F", "mentioned_profiles": []}}, "username": "jaeyoung87", "power_badge": false, "display_name": "F4F JY87", "active_status": "inactive", "verifications": ["0x48d22ec1033e26433969885e5b2adc82b683491f"], "follower_count": 1342, "custody_address": "0x0b2d3a2a3d277e6929780e5b4d65e8c1b096643d", "following_count": 1732, "verified_addresses": {"eth_addresses": ["0x48d22ec1033e26433969885e5b2adc82b683491f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h6oBH\"}"}', 'sonata'), - (750058, '0x56dc5bb9b14b43bd02ef7aa803b6e70be74961d9', 0, 1, '2024-05-06 23:31:21+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 별 (Dear) - 정승환 by Kimogu on #SoundCloud https://on.soundcloud.com/LRmdB\"}"}', NULL), - (750398, '0x1239c2db9e104298354bcade46ce8c9db80964f0', 0, 1, '2024-05-06 23:35:12+00', 0, 5, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 846, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 944, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k1Ub3\"}"}', 'sonata'), - (786944, '0xf0bc9b96a4b8b6e2287034a29691564fa0503690', 0, 1, '2024-05-07 02:41:17+00', 0, 2, '{"fid": 504754, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2676f47c-6b13-4229-6771-cf5169266f00/rectcrop3", "profile": {"bio": {"text": "I love a cat, do u?", "mentioned_profiles": []}}, "username": "mokdoarchi", "power_badge": false, "display_name": "mokdoarchi🍒🍖🌱🎩", "active_status": "inactive", "verifications": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "follower_count": 1368, "custody_address": "0x14296b08e3313501be5388cf1acff0bcefa2b621", "following_count": 1292, "verified_addresses": {"eth_addresses": ["0xf830e85397264cf6134f69605fb1df09ed9d1ebd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share49/girls-generation-ohgg-lil-touch-1?si=4a3a77aed1f64f95a8cc1f193c9e1629&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (766390, '0x91c87b703289f5e5f4d96143f03b2b449da32917', 0, 1, '2024-05-07 00:38:12+00', 0, 1, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 201, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 189, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RDEDVYexggtCQCK27\"}"}', 'sonata'), - (943212, '0x0df9fa73a2d73883dffcc115aeba299e19c9e57e', 0, 1, '2024-05-07 08:32:46+00', 0, 12, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3964, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2236, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A6KC8PMFwuUkUmLz9\"}"}', 'sonata'), - (788515, '0x175e999f0de0871a9b256905c4f49f0ade72b1a0', 0, 1, '2024-05-07 02:56:48+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Spill The Tea by sorry xoxo on #SoundCloud https://on.soundcloud.com/AKxGh\"}"}', NULL), - (748332, '0x7e024bd0d623d4b03235f557b7679c94386e7955', 0, 1, '2024-05-06 23:27:49+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 눈사람 - 정승환 (LIVE ver.) by lvya on #SoundCloud https://on.soundcloud.com/TqS1F\"}"}', NULL), - (746200, '0x23a520f8e2681e2f40bb243c8e85524efed7cb3f', 0, 1, '2024-05-06 23:22:26+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1530, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1799, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fbnsHzwumjjAmSPg6\"}"}', NULL), - (748329, '0x3693ddbe73976189ed5561d22398e79effe48e1f', 0, 1, '2024-05-06 23:27:12+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 너였다면 If It Is You · 정승환 Jung Seung-Hwan by daz on #SoundCloud https://on.soundcloud.com/P3jJL\"}"}', NULL), - (771592, '0x67f40bb1f1c55a19c96ab4dfb8f74cd28a19abcd', 0, 1, '2024-05-07 01:14:07+00', 0, 4, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3550, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2016, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/xjjoHAV6SRswFovi6\"}"}', 'sonata'), - (869322, '0x49f1fd96f3ea18f22dfff761be4f24fbc070e6dc', 0, 1, '2024-05-07 05:49:33+00', 0, 1, '{"fid": 501698, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54b20527-69dd-496c-d3cd-5d37211b0000/original", "profile": {"bio": {"text": "💙BASE 💜DEGEN 💛Web3.0 💕FOOD 💢MUSIC \nhttps://zora.co/@daggaya\n", "mentioned_profiles": []}}, "username": "yokoi", "power_badge": false, "display_name": "yokoi", "active_status": "inactive", "verifications": ["0x2070f355a7b475c719bac8d93da8c28494b61836"], "follower_count": 559, "custody_address": "0x1d0211d45a070470592db0c0c31151feb7a659ec", "following_count": 1240, "verified_addresses": {"eth_addresses": ["0x2070f355a7b475c719bac8d93da8c28494b61836"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fyvtjiy6lh0g/01-192-mp3?si=4a5a8e050afe438db96d69e10145bcc1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (793449, '0xb0b2d75dcb513b8a13d51e5a1a172155cb87995b', 0, 1, '2024-05-07 03:09:59+00', 0, 1, '{"fid": 370822, "object": "user", "pfp_url": "https://i.imgur.com/Gd9SY0v.jpg", "profile": {"bio": {"text": "alien girl movie star 💖🎬 \nactress & filmmaker ⚡️ vibing on chain 💫 ", "mentioned_profiles": []}}, "username": "cvl", "power_badge": true, "display_name": "Carly 💖👽", "active_status": "inactive", "verifications": ["0x94edf2efbc71123fadd9d8ae4ec471419be43376"], "follower_count": 255, "custody_address": "0xeb6292d6df13fffdacff68513eb2a2c7c70d6fa1", "following_count": 277, "verified_addresses": {"eth_addresses": ["0x94edf2efbc71123fadd9d8ae4ec471419be43376"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7eqoqGkKwgOaWNNHx90uEZ?si=Yr6LFxjNQz2OB1hgcnDplw&context=spotify%3Aalbum%3A3mH6qwIy9crq0I9YQbOuDf\"}"}', NULL), - (881576, '0x8a9d0dd750e7ca4e11c9d179b72c54f9a78033c4', 0, 1, '2024-05-07 06:19:07+00', 0, 1, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 367, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 553, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9NjXGL3cAvEzPfW88\"}"}', 'sonata'), - (843196, '0xe50452e1010f25830cabd687885dd793d4818206', 0, 1, '2024-05-07 05:14:05+00', 0, 0, '{"fid": 474091, "object": "user", "pfp_url": "https://i.imgur.com/Od50sSS.jpg", "profile": {"bio": {"text": "Money and food", "mentioned_profiles": []}}, "username": "silsa", "power_badge": false, "display_name": "James", "active_status": "inactive", "verifications": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "follower_count": 2199, "custody_address": "0x80a753036c43a2c3eee42292769f54e6ccc30b87", "following_count": 2259, "verified_addresses": {"eth_addresses": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5jaU1JdDD6tEwfEK6\"}"}', NULL), - (779860, '0x8dc927a4020a36b7e8e70991aa57f163c9e4fc6c', 0, 1, '2024-05-07 01:46:33+00', 0, 1, '{"fid": 286957, "object": "user", "pfp_url": "https://ewhoob6flqqnvto3qqysl5iy24fzzakvgiilwfufevsamzqclwtq.arweave.net/JY7nB8VcINrN24QxJfUY1wucgVUyELsWhSVkBmYCXac/", "profile": {"bio": {"text": "Trading is my thing.\nhttps://zora.co/@slimbear\n", "mentioned_profiles": []}}, "username": "dantaisbest", "power_badge": false, "display_name": "danta🎩🍖", "active_status": "inactive", "verifications": ["0x8091651d8562e720c588639f858457aeb454f613"], "follower_count": 2165, "custody_address": "0x45d9fdf0cdb50644550c3ddc86f0eb39362000a8", "following_count": 993, "verified_addresses": {"eth_addresses": ["0x8091651d8562e720c588639f858457aeb454f613"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/so1BjeduaBp9nZF79\"}"}', NULL), - (750429, '0xb36266d4160738a99c38ae9bf19b7931ac86d7e0', 0, 1, '2024-05-06 23:32:30+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to [cover] 보통의 하루 - 정승환 by kimcrong on #SoundCloud https://on.soundcloud.com/n7rjN\"}"}', NULL), - (748802, '0x8f9e236913a0cc092656be8c151ff6b9eefd5807', 0, 1, '2024-05-06 23:30:46+00', 0, 1, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 이수현(Lee Su-hyun)x정승환(Jung Seung-hwan) - 어떻게 이별까지 사랑하겠어, 널 사랑하는 거지 〈비긴어게인 코리아(beginagainkorea)〉 by yoooungwave on #SoundCloud https://on.soundcloud.com/i5rgx\"}"}', NULL), - (833461, '0x7f83f21fa4abd8790ce34cfa3b5bebb93f75103b', 0, 1, '2024-05-07 04:21:37+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1532, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1802, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jesus-valentino/nsync-bye-bye-bye?si=c61273c0d0944467b0191ebcb7750dbf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (786946, '0x1a9033b8dc756544e66b4de57ed5a86cd678fb0d', 0, 1, '2024-05-07 02:41:29+00', 0, 2, '{"fid": 505556, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8290c871-b580-42d9-4083-1b5c2adcd100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "pivot", "power_badge": false, "display_name": "pivot", "active_status": "inactive", "verifications": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "follower_count": 900, "custody_address": "0x6c1d49afdb334e1728a0193198584fff3012e63b", "following_count": 790, "verified_addresses": {"eth_addresses": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1uP95vG44ZUFexVm6\"}"}', NULL), - (766319, '0x678957d6e91510de882f80446cd0a57fcdcfb9d1', 0, 1, '2024-05-07 00:36:30+00', 10, 6, '{"fid": 411455, "object": "user", "pfp_url": "https://i.imgur.com/j1ngOFQ.jpg", "profile": {"bio": {"text": "Sunny Day : )\n맛있게 먹고, 재밌게 살기🎶 ", "mentioned_profiles": []}}, "username": "sunny38", "power_badge": false, "display_name": "Sunny🙂🍖", "active_status": "inactive", "verifications": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "follower_count": 2215, "custody_address": "0x58375c5d74a72693c589764f07423f151dd130bc", "following_count": 1564, "verified_addresses": {"eth_addresses": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PqrQZ\"}"}', 'sonata'), - (771617, '0x4ab4941924f2fa728ec223cfafc05481cc8a07e2', 0, 1, '2024-05-07 01:14:48+00', 0, 0, '{"fid": 395831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3905647a-1017-4df6-131f-5eb2e4beda00/original", "profile": {"bio": {"text": "i love crypto", "mentioned_profiles": []}}, "username": "foryou", "power_badge": false, "display_name": "foryou", "active_status": "inactive", "verifications": ["0x27ed00c709de12cb89c69460b32243f89542b3fb"], "follower_count": 1140, "custody_address": "0xa7e29ae1aa37f5a8e3f6392fd51caf5d8c0641ea", "following_count": 1650, "verified_addresses": {"eth_addresses": ["0x27ed00c709de12cb89c69460b32243f89542b3fb"], "sol_addresses": ["8YzNZ1CaRemSvAtpjyohBv3tTeNuvKhRRdJe7ThsqNtZ"]}}', '{"{\"url\":\"https://on.soundcloud.com/QbjDM\"}"}', 'sonata'), - (20105, '0x355d6d1073e13dc08f24b4b3aaef9e7d3c29f367', 7342, 1, '2024-05-04 20:29:05+00', 1, 10, '{"fid": 316982, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ccd7380-b6d6-4fb2-9d84-40b8431ae400/original", "profile": {"bio": {"text": "I sell ice creams in Zora / Objkt\n", "mentioned_profiles": []}}, "username": "whoisponyboy", "power_badge": false, "display_name": "PONY BOY 🎠", "active_status": "inactive", "verifications": ["0x4b764659c758928aa6b8b09e703618d46d2136b5"], "follower_count": 211, "custody_address": "0x73b17723071c45a0d4292a59efe93679ae845564", "following_count": 311, "verified_addresses": {"eth_addresses": ["0x4b764659c758928aa6b8b09e703618d46d2136b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0ESdtt9cjGZUkUbaubSrv2?si=DefqrBpFQo2K_SJ2eouBIQ\"}"}', 'albumoftheday'), - (750439, '0xbcd046840784b16abc9f4833bedcb8fa37a0a275', 0, 1, '2024-05-06 23:33:15+00', 0, 1, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 정승환 스물다섯 스물하나 by User 600890070 on #SoundCloud https://on.soundcloud.com/nQZJs\"}"}', NULL), - (777631, '0x2d68d265ce2ae7c7657ae76210d86546c6531e8f', 0, 1, '2024-05-07 01:39:37+00', 0, 1, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1451, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1593, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/zico-spot-feat-jennie?si=5107d937c57f4739814f4ad1f414c886&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (748807, '0x91e4783baeb896dd2541ed18cfa5b3131deb4d1a', 0, 1, '2024-05-06 23:30:36+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2929, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2361, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9T2SA\"}"}', 'sonata'), - (750401, '0x432fa9818ed19f76e0e3ce7881da23eb70238b15', 0, 1, '2024-05-06 23:35:04+00', 0, 0, '{"fid": 328948, "object": "user", "pfp_url": "https://i.imgur.com/0uCFGPh.jpg", "profile": {"bio": {"text": "crypto/mystery/game", "mentioned_profiles": []}}, "username": "fffftttt", "power_badge": false, "display_name": "fffftttt", "active_status": "inactive", "verifications": ["0x29e51338196ca590ee1f713e891834f5ebedacfe"], "follower_count": 504, "custody_address": "0xb29ab071c1f3070d12ea5921d70b6cd1317ca885", "following_count": 513, "verified_addresses": {"eth_addresses": ["0x29e51338196ca590ee1f713e891834f5ebedacfe"], "sol_addresses": ["XCqGhhmDnP7tuwE1Gtnvnqt8VxANa5Lb3k7d5EmYEK6"]}}', '{"{\"url\":\"https://soundcloud.com/zain-hassan-483606760/the-xx-intro?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (829689, '0xf1a22d5fcbe9bb6951569ec6c2f6db4448b84e0c', 0, 1, '2024-05-07 04:13:54+00', 0, 0, '{"fid": 425741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa1a29b7-ef68-4ac5-00e1-8c73d6301600/rectcrop3", "profile": {"bio": {"text": "egg, ham, donut and?", "mentioned_profiles": []}}, "username": "bluemoney", "power_badge": false, "display_name": "eggfry", "active_status": "inactive", "verifications": ["0xb41e96fe689ae23a59339edaffdd9279263e0290"], "follower_count": 1293, "custody_address": "0x1d52f1457ac1aa27c2e3e5975139dc36408e9009", "following_count": 393, "verified_addresses": {"eth_addresses": ["0xb41e96fe689ae23a59339edaffdd9279263e0290"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3qVxST3otpUEQ8R69\"}"}', NULL), - (744663, '0x23560d7086b3dd29c53d21fda377ac2e56d7d6ec', 0, 1, '2024-05-06 23:13:14+00', 0, 1, '{"fid": 368013, "object": "user", "pfp_url": "https://i.imgur.com/XwwEshf.gif", "profile": {"bio": {"text": "The biggest things in life are your friends and family", "mentioned_profiles": []}}, "username": "ryanhube", "power_badge": true, "display_name": "Ryan🎩🤫🍖", "active_status": "inactive", "verifications": ["0x1da6a4cf0a189fff6c3bfc383941a898baa2c503"], "follower_count": 547, "custody_address": "0x4535ca4f26391f926b49b8e88e5a911147e0a93f", "following_count": 483, "verified_addresses": {"eth_addresses": ["0x1da6a4cf0a189fff6c3bfc383941a898baa2c503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/18Qp2oQlUvoG09Xh5vlp4Z?si=cntMV5bkRmCcH6LRU4RlzQ&context=spotify%3Aalbum%3A2VZolgD2RKzb5F4gSNkx1Y\"}"}', NULL), - (856953, '0xdb9390317c3d08f89e29c6e07394729c815b66fa', 0, 1, '2024-05-07 05:31:59+00', 0, 5, '{"fid": 469305, "object": "user", "pfp_url": "https://i.imgur.com/eIrhOrd.jpg", "profile": {"bio": {"text": "I want to thank everyone who clicked on me.\nI''m interested in crypto markets.\nI''m also interested in food and traveling.\nI wish you well.", "mentioned_profiles": []}}, "username": "jrebuild", "power_badge": false, "display_name": "jrebuild", "active_status": "inactive", "verifications": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "follower_count": 2150, "custody_address": "0x25d482ab85de61a33c7ec7985b255f64ddab73d0", "following_count": 2113, "verified_addresses": {"eth_addresses": ["0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sp9yi\"}"}', 'sonata'), - (748330, '0x727711310af27ddd6be6bc11a0e105644cf3d7f4', 0, 1, '2024-05-06 23:28:41+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 정승환 (Jung Seung Hwan) - 잘 지내요 [라이프 - Life OST Part 6] by L2ShareOST14 on #SoundCloud https://on.soundcloud.com/UcvYS\"}"}', NULL), - (719242, '0x9a5ab0b67663172c6dcdcbfd84c24cc5f83f49de', 0, 1, '2024-05-06 19:42:15+00', 0, 1, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11d25945-614c-4f57-0e82-2a5992f10900/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 99, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/aarontaos/candy-mandy-moore-cover?referral=0xaf5735cc5d392e54e92a54be30c3aacfa16a0096&referral_source=link\"}"}', 'soundxyz'), - (751012, '0x486339a55be295782e9378eaf1664cf3f848754e', 0, 1, '2024-05-06 23:38:39+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 로이킴 - 그때 헤어지면 돼 by 노희진 on #SoundCloud https://on.soundcloud.com/mxEor\"}"}', NULL), - (733167, '0xd99d1f0b4dfd688d09a3e7dc545090cb0d7c145a', 0, 1, '2024-05-06 21:28:41+00', 0, 0, '{"fid": 242729, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a70e05b-5890-4b26-0733-e0bb0a336400/rectcrop3", "profile": {"bio": {"text": "Rebellion in my blood. SheFi alumnae. Brand, marcomms & PR. Africa 🫶🏽 | Le bois sacré 🧘🏽‍♀️🛖🌳", "mentioned_profiles": []}}, "username": "hellofady", "power_badge": true, "display_name": "Fady 🎩🔵💫", "active_status": "inactive", "verifications": ["0x7deacf4aa3332e33a5c2dd5e344bbf6a61de4fa8"], "follower_count": 647, "custody_address": "0x5f7977b31a9d469521b1c0afb17ff4cff31cf8d9", "following_count": 188, "verified_addresses": {"eth_addresses": ["0x7deacf4aa3332e33a5c2dd5e344bbf6a61de4fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/49wEdWGkL2CcOrXEKklXtJ?si=4RK0MlS6QcWdUBEmusNlMg&context=spotify%3Aplaylist%3A37i9dQZF1E8MsIn4aRzlcD\"}"}', NULL), - (830935, '0x3f322536f2c199aca69c9af1d6bebc016ac39933', 0, 1, '2024-05-07 04:16:40+00', 0, 0, '{"fid": 503201, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3054364-607e-4bf5-1423-f9052aeb5b00/rectcrop3", "profile": {"bio": {"text": "l love all!", "mentioned_profiles": []}}, "username": "lovable", "power_badge": false, "display_name": "Lovable🎩🍖", "active_status": "inactive", "verifications": ["0x6e2d1729982ff017efada3345ad986065003462b"], "follower_count": 778, "custody_address": "0xff9805d252f21c34e785855c4d6a5a3aa56bee38", "following_count": 987, "verified_addresses": {"eth_addresses": ["0x6e2d1729982ff017efada3345ad986065003462b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/januarypocket/1988a?si=227587dee9f249d89cd301fdf3e54e9d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (786938, '0x3797a875067d88fea6a94d183bfaee24732f496a', 0, 1, '2024-05-07 02:41:04+00', 0, 1, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃👉 ❶$DEGEN❷$FOMO❸🥚\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1380, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1537, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8AaVmocks3oMGaKV8\"}"}', NULL), - (1052467, '0xd2b87629b7ab80cb75ae5f6c98135723157a122c', 0, 1, '2024-05-07 14:32:15+00', 0, 7, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2507, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2374, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PBMtNtKEHzcsuB9g6\"}"}', 'sonata'), - (828139, '0x4087ded11f3235d778325b7a5045e33a66f6ef30', 0, 1, '2024-05-07 04:11:57+00', 0, 7, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1572, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 960, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BkjS1CBj5eyjsQsU8\"}"}', 'sonata'), - (923596, '0xa76c3e898ebd19d067dbf4c60f445c5ad232d406', 0, 1, '2024-05-07 07:30:13+00', 0, 0, '{"fid": 341200, "object": "user", "pfp_url": "https://i.imgur.com/k6cMomI.jpg", "profile": {"bio": {"text": "シャドバンからやっと開放されたっぽいっす。そんだけ。", "mentioned_profiles": []}}, "username": "nokoshiki", "power_badge": false, "display_name": "🔵necoshiki🔵", "active_status": "inactive", "verifications": ["0x31119d09e83d6b13d0af6c31cc72471e4804754c"], "follower_count": 831, "custody_address": "0x9a10cd973d59bfe8cb9c8f14276721e2134df27a", "following_count": 1044, "verified_addresses": {"eth_addresses": ["0x31119d09e83d6b13d0af6c31cc72471e4804754c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/skylineguy/pixies-where-is-my-mind?si=e47493fc3fbb4e11972130964009c830&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (751047, '0x103706b52cc9a2375d7fc7070d2c3c4a04c408b7', 0, 1, '2024-05-06 23:38:38+00', 0, 7, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1450, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XGNQC\"}"}', 'banmal-mode'), - (787167, '0xe06f9efe4bef17e2367a43370d4c95f07920b896', 0, 1, '2024-05-07 02:42:51+00', 10, 1, '{"fid": 500896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad084dc3-15c2-4a29-147a-3f9b87309800/rectcrop3", "profile": {"bio": {"text": "like music youtube culture food \nno matter what like it", "mentioned_profiles": []}}, "username": "joetaka", "power_badge": false, "display_name": "joetaka", "active_status": "inactive", "verifications": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "follower_count": 814, "custody_address": "0x5db012ed31ad2e1ac2db182dae0f51cf582acb70", "following_count": 891, "verified_addresses": {"eth_addresses": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cristaylor_music/ariana-grande-7-rings-cris-taylor-drill-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (858352, '0x75d8bb28faee6d1be0daded4aae3c6d0179a5c9d', 0, 1, '2024-05-07 05:33:09+00', 0, 1, '{"fid": 501009, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4183f6e9-9596-47f6-dcda-bd44e0802900/rectcrop3", "profile": {"bio": {"text": "I love $DEGEN ", "mentioned_profiles": []}}, "username": "rioasm", "power_badge": false, "display_name": "rio", "active_status": "inactive", "verifications": ["0x5ab212db49b54f9b2e35bd91a6a343dd27503371"], "follower_count": 828, "custody_address": "0x3cefc50516848f657d98564c577b747ad242cbad", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0x5ab212db49b54f9b2e35bd91a6a343dd27503371"], "sol_addresses": []}}', '{"{\"url\":\"박효신 - 해줄 수 없는 일 https://soundcloud.com/user472071602/at-4?si=d1a0851cc36e4c9582b60c6aa6de519d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (843195, '0xc7e514a9b88a67bddf96f40c70ce16bb766a43e4', 0, 1, '2024-05-07 05:13:40+00', 0, 6, '{"fid": 403379, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07cd3518-ead3-40b0-ffb8-d7118fbeff00/rectcrop3", "profile": {"bio": {"text": "\n\n#캐나다사는Knadian #영어어려워 #사실워캐도어려워 #그래사실마흔틴이야 \n\nF4F!!! 연중무휴~!!! 유후~~!!!", "mentioned_profiles": []}}, "username": "gmin", "power_badge": false, "display_name": "Gmin Lee", "active_status": "inactive", "verifications": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "follower_count": 2387, "custody_address": "0xde1c043501c2a703b140a33aa24bad2c0f7a8497", "following_count": 2622, "verified_addresses": {"eth_addresses": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K3ZC4\"}"}', 'sonata'), - (766580, '0x1884dd42cd8499cac3ec0f6023355d3ae924b9b3', 1000, 1, '2024-05-07 00:40:01+00', 0, 4, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1308, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 2005, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/65fpYBrI8o2cfrwf2US4gq?si=9b0290c06ac545e8\"}"}', 'sonata'), - (751022, '0x23842567132e8d366b8894de6bcfbf0239491738', 0, 1, '2024-05-06 23:38:58+00', 0, 0, '{"fid": 503907, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3d4b7bd-00bc-4f39-7aca-66e2d569e600/rectcrop3", "profile": {"bio": {"text": "diVine inspiration 🌈", "mentioned_profiles": []}}, "username": "amirali1991", "power_badge": false, "display_name": "Nothing😎😎", "active_status": "inactive", "verifications": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "follower_count": 195, "custody_address": "0x114b9f282cd625abc5658a0644e2dd4502337307", "following_count": 809, "verified_addresses": {"eth_addresses": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KLoBZr7d7isTD8J16\"}"}', 'sonata'), - (733462, '0xe14b643e9c8fe8310d9ffe768a2127d9b254f56d', 0, 1, '2024-05-06 21:32:04+00', 0, 1, '{"fid": 244822, "object": "user", "pfp_url": "https://i.imgur.com/Yni4rd4.jpg", "profile": {"bio": {"text": "Embracing the divine madness in it all. Fellow lover of mysteries and riddles exploring the extraordinary and supernatural through art. Let’s ponder on infinity", "mentioned_profiles": []}}, "username": "bytemage", "power_badge": false, "display_name": "ByteMage", "active_status": "inactive", "verifications": ["0x905893f53d0fa232fc00eabd5cdb5ac5d57ab18c"], "follower_count": 854, "custody_address": "0xd5b6efcae7159bdac7b016c165392f5795ed05e3", "following_count": 2390, "verified_addresses": {"eth_addresses": ["0x905893f53d0fa232fc00eabd5cdb5ac5d57ab18c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7qGoMOzR9pJ1bPl4bFmTN7?si=XigBts_PRzqPDaTMVoSOXg&context=spotify%3Aplaylist%3A37i9dQZF1EYkqdzj48dyYq\"}"}', NULL), - (730916, '0x621a845caf730ca396889ed626f33c28e717472b', 0, 1, '2024-05-06 20:59:08+00', 0, 2, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 301, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 508, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/6BPO0YTbDZ18RlQFJCj1Zs?si=UbXy2-A5RWmAbOV3nHYIpg\"}"}', 'musicjp'), - (732318, '0xff474eae1b5c71029f58a3286be124f214362e1d', 0, 1, '2024-05-06 21:14:29+00', 0, 0, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 61, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 43, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/lime-squeeze-w-snoop-dogg-october-london\"}"}', NULL), - (834249, '0xc1381c4c56ad226242961df9c5f58337d4f3ad0e', 0, 1, '2024-05-07 04:24:12+00', 0, 4, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1626, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1615, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8D41s\"}"}', 'sonata'), - (767041, '0x76343d14db196dc9c0ae6fea397d115b5a48e804', 0, 1, '2024-05-07 00:40:41+00', 0, 1, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "\nhttps://www.alfafrens.com/channel/0x626ea7aa69a420333c70cd2d96f8b44cc05984c0", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩🦄⛓️‍💥", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 247, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 80, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://on.soundcloud.com/kVG3YBD4NMYbAg6C9\"}"}', 'sonata'), - (787164, '0x6661ee605f836d8682a036c0140da90d11eab7f7', 0, 1, '2024-05-07 02:44:08+00', 0, 1, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1719, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2960, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"Listen to IU (아이유) - Love wins all by whakfl on #SoundCloud https://on.soundcloud.com/MhWw2\"}"}', NULL), - (752149, '0xda7fbcb7b69ac63bfa442e6723102ab7e49e0cb8', 0, 1, '2024-05-06 23:39:04+00', 0, 1, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Roy Kim - Home by Wanda Alifah MS on #SoundCloud https://on.soundcloud.com/V9g3j\"}"}', NULL), - (752142, '0xe73daa6cdc2bac0f6b5175f1a770c29f44d94014', 0, 1, '2024-05-06 23:39:19+00', 0, 2, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1530, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1801, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2wxVjoND8MP3WafF6\"}"}', NULL), - (900660, '0xcf34474c0da7d3d7529fc58205935456de14eddf', 0, 1, '2024-05-07 06:49:16+00', 0, 1, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/griz/a-fine-way-to-die-remix\"}"}', NULL), - (750436, '0x310936044c44f8f0a24f42b3ff34fc2472b6518f', 0, 1, '2024-05-06 23:35:02+00', 0, 0, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": " 🖌️\n⚡️\n🎵", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 655, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 315, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/djsmilezofficial/deep-inside-remix-w-richtanner?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (752131, '0x749b1be2b718ddfe91de6fbca494604e858e9f50', 0, 1, '2024-05-06 23:40:17+00', 0, 4, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 로이킴 - 잘 지내자, 우리 by wonderfulday on #SoundCloud https://on.soundcloud.com/L6p8p\"}"}', NULL), - (834256, '0x9eb68970aabc320e7411de4fc5e00bd892ddaa15', 0, 1, '2024-05-07 04:24:25+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1532, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1802, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/princesseaugust/brown-eyed-soul-go?si=45c744a3b62a426e80bcd88e921cfa80&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (952042, '0x096583fa60eca2d75c6055432c7527be256509a5', 0, 1, '2024-05-07 08:59:15+00', 0, 4, '{"fid": 391839, "object": "user", "pfp_url": "https://i.imgur.com/jtSGCZm.jpg", "profile": {"bio": {"text": "@일상소통/투자소통\n@한분한분소중하게 찾아가용!\n@공부하는 오랑이🤗\n\n@조급하지도 걱정도 하자마라.\n@Don''t be impatient and worry.", "mentioned_profiles": []}}, "username": "parkgunwoo", "power_badge": false, "display_name": "오랑이🎩🍖🔵", "active_status": "inactive", "verifications": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "follower_count": 2934, "custody_address": "0x955e52b86ace17f4bcca570234ca7b09d06344c2", "following_count": 2944, "verified_addresses": {"eth_addresses": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kqJBYY7J4ta3J5KKA\"}"}', 'sonata'), - (776761, '0x2015ebc28a34fbb491713645a0bab5269b2c307b', 0, 1, '2024-05-07 01:34:57+00', 0, 3, '{"fid": 458191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/883d04b7-1096-4d94-022e-ac074d31fd00/rectcrop3", "profile": {"bio": {"text": "I’ll share my daily life 😎", "mentioned_profiles": []}}, "username": "freesia", "power_badge": false, "display_name": "freesia", "active_status": "inactive", "verifications": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "follower_count": 2939, "custody_address": "0x897d0a8819784d5ade9ea2c0569fdb58d311e717", "following_count": 1861, "verified_addresses": {"eth_addresses": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eCxaJMGudaTnXJyRA\"}"}', 'sonata'), - (753414, '0x8da4c98cbe2e6c83ac8351feca9f028b134f6826', 0, 1, '2024-05-06 23:44:00+00', 0, 3, '{"fid": 499287, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45a9e948-eb2b-4019-56c0-40956ba96600/rectcrop3", "profile": {"bio": {"text": "crypto trader\nピュルルルルルゥ!!!", "mentioned_profiles": []}}, "username": "bocchi-crypto", "power_badge": false, "display_name": "bocchi", "active_status": "inactive", "verifications": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "follower_count": 287, "custody_address": "0x634bd6a5e880b1d60699179c21408255e40964b4", "following_count": 351, "verified_addresses": {"eth_addresses": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":492400,\"hash\":\"0x53f829caa3214c71af1adeb7375816f0e344119a\"}}","{\"url\":\"https://on.soundcloud.com/goErVcq1Z5ZnnRf76\"}"}', 'musicjp'), - (773621, '0x255e7643686e59ae25717a195c704ea4b563dcd0', 0, 1, '2024-05-07 01:20:52+00', 0, 1, '{"fid": 382891, "object": "user", "pfp_url": "https://i.imgur.com/OpEpcBh.png", "profile": {"bio": {"text": "Freelance Writer. Independent Researcher. Building /opinion https://mirror.xyz/ameliehua.eth", "mentioned_profiles": []}}, "username": "ameliehua", "power_badge": false, "display_name": "Hua", "active_status": "inactive", "verifications": ["0x8142b9a50a603ea0ed05c5d71e91e0fc41a6ef0b"], "follower_count": 185, "custody_address": "0xa34b7edf8402617a31b3377631d6c9f28cd6e798", "following_count": 235, "verified_addresses": {"eth_addresses": ["0x8142b9a50a603ea0ed05c5d71e91e0fc41a6ef0b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yingying-sang/mp3\"}"}', NULL), - (779843, '0xe6f609276db35e07c6612cebc2daa56f3f028225', 0, 1, '2024-05-07 01:47:06+00', 0, 1, '{"fid": 508176, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56e7aaed-eac4-4ed3-db64-d87ef3844600/rectcrop3", "profile": {"bio": {"text": "nice play!!!", "mentioned_profiles": []}}, "username": "!508176", "power_badge": false, "display_name": "NICEPLAY", "active_status": "inactive", "verifications": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "follower_count": 214, "custody_address": "0x5ff3dc41301cda755a42ffec67381363f31ccc80", "following_count": 315, "verified_addresses": {"eth_addresses": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/49NgwvUsGLUXcaSz6\"}"}', 'sonata'), - (752488, '0x757eab4ea4b6cca989e75bf3eb2f827fa3f5f717', 0, 1, '2024-05-06 23:41:39+00', 0, 6, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1308, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 2005, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2KNEK9rGKQKKNE6FTt8PvQ\"}"}', 'sonata'), - (873225, '0xd5d647126b7855260beb6f18c63ca1d2d1e56fdd', 0, 1, '2024-05-07 05:56:12+00', 0, 1, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 967, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Guw0GTidmG8nH3Cz4v9k4?si=NcakDGvyTdGKl2aAROjU8w\"}"}', NULL), - (767430, '0x85643e2c4766f4dc0bc55e038b162ea39cad34fa', 111, 1, '2024-05-07 00:43:46+00', 0, 1, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 568, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 520, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/helloworld/heartpiece?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (787349, '0xf1949f2f9e3ca495af62539fe98d5dd733f961e7', 0, 1, '2024-05-07 02:45:24+00', 0, 0, '{"fid": 418655, "object": "user", "pfp_url": "https://i.imgur.com/2otSRxb.jpg", "profile": {"bio": {"text": "Crypto since 2017. I''m ready for Based Summer / Love music / Share music recommendations /psymusic", "mentioned_profiles": []}}, "username": "guu", "power_badge": false, "display_name": "Gu", "active_status": "inactive", "verifications": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "follower_count": 148, "custody_address": "0x87f6314adbf601f44fbf3fd37edc2fb7aff185a8", "following_count": 236, "verified_addresses": {"eth_addresses": ["0x4e9875febf00122ce929b36c6698fcf850512a02"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/estyoficial/chuki-chuki-sped-up?si=4856f40f9ef048efa7aa4cc2395f984a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (755108, '0xcfd2aff912455b4282e87eb7380a22bcd5e79768', 0, 1, '2024-05-06 23:48:24+00', 0, 5, '{"fid": 339677, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2649c70f-1a5a-4688-e859-24d3b75e5c00/rectcrop3", "profile": {"bio": {"text": "Thinking about the future and now. \nAnd Im always trying to figure out the problems.", "mentioned_profiles": []}}, "username": "sijin", "power_badge": false, "display_name": "korean indie music🍖🎩", "active_status": "inactive", "verifications": ["0xdb5d7166afeceae378d1393f6e4adb822fbb9530"], "follower_count": 2438, "custody_address": "0xc9ab905d007b877c67ed835225b4adc60f2eddca", "following_count": 2682, "verified_addresses": {"eth_addresses": ["0xdb5d7166afeceae378d1393f6e4adb822fbb9530"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XtddF\"}"}', 'sonata'), - (754356, '0xcd7bbafa3c10fa4e4da318e5fa5e60210b3dcb08', 0, 1, '2024-05-06 23:46:40+00', 0, 0, '{"fid": 340315, "object": "user", "pfp_url": "https://i.imgur.com/XelM9yN.jpg", "profile": {"bio": {"text": "Web3 Enthusiast and Solana Degen", "mentioned_profiles": []}}, "username": "luke123", "power_badge": false, "display_name": "Luke 🎩🔵", "active_status": "inactive", "verifications": ["0x558b067ecb915c9866db1cba46b0609263645ced"], "follower_count": 16, "custody_address": "0x09653ac80577f67fa7951c27c53e7c2d1f45095e", "following_count": 84, "verified_addresses": {"eth_addresses": ["0x558b067ecb915c9866db1cba46b0609263645ced"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5fR8XrWAQrIkkPy7kdYyMo?si=cb52b742bc104ca3\"}"}', NULL), - (774073, '0x940000f5590fcad316919bca5e5d6c4e5d5e24da', 0, 1, '2024-05-07 01:23:14+00', 0, 0, '{"fid": 382891, "object": "user", "pfp_url": "https://i.imgur.com/OpEpcBh.png", "profile": {"bio": {"text": "Freelance Writer. Independent Researcher. Building /opinion https://mirror.xyz/ameliehua.eth", "mentioned_profiles": []}}, "username": "ameliehua", "power_badge": false, "display_name": "Hua", "active_status": "inactive", "verifications": ["0x8142b9a50a603ea0ed05c5d71e91e0fc41a6ef0b"], "follower_count": 185, "custody_address": "0xa34b7edf8402617a31b3377631d6c9f28cd6e798", "following_count": 235, "verified_addresses": {"eth_addresses": ["0x8142b9a50a603ea0ed05c5d71e91e0fc41a6ef0b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yingying-sang/mp3\"}"}', NULL), - (755107, '0x323c75a22ac46b2880d95f7fa157c0866468ab51', 0, 1, '2024-05-06 23:47:15+00', 0, 3, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1481, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1774, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nbhxuf4CugRA2MqB7\"}"}', 'sonata'), - (748795, '0x189b1553384cfb8bf1efc19a26be6c20812cc114', 0, 1, '2024-05-06 23:30:18+00', 0, 0, '{"fid": 500461, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc4873ea-85ed-420e-739f-e960fb8b8600/rectcrop3", "profile": {"bio": {"text": "괜찮아.\nYou''ll be happy.", "mentioned_profiles": []}}, "username": "mondss", "power_badge": false, "display_name": "shine_my_life🎩", "active_status": "inactive", "verifications": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "follower_count": 1165, "custody_address": "0xa044138872bbb075008d24c1921fac2f00e7c58b", "following_count": 1029, "verified_addresses": {"eth_addresses": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Modern Loneliness by Lauv on #SoundCloud https://on.soundcloud.com/qZMH7\"}"}', NULL), - (834403, '0xe4c998895c7249be203798ba7cb8e3d9fb7414a8', 0, 1, '2024-05-07 04:26:18+00', 0, 1, '{"fid": 411828, "object": "user", "pfp_url": "https://i.imgur.com/uGVbzJm.jpg", "profile": {"bio": {"text": "I love degen❤️", "mentioned_profiles": []}}, "username": "onlypark125", "power_badge": false, "display_name": "Tigerdw22 🎩 ", "active_status": "inactive", "verifications": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "follower_count": 1692, "custody_address": "0xf82d20b7c0bc7d26020f250583ad1378c147a5de", "following_count": 2088, "verified_addresses": {"eth_addresses": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rvLTAdRdexYPTZ7u5\"}"}', NULL), - (1173392, '0x5a4e292f9bb270ce63c0b33981cf945c8e1f3dc8', 2000, 1, '2024-05-15 22:22:57+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/1zi7xx7UVEFkmKfv06H8x0?si=18-2SLWPRfO3iwHmsCH42w\"}"}', NULL), - (834404, '0x69de1b7c8f77d68b2c6fccf22cfd0c19cdc77b05', 0, 1, '2024-05-07 04:28:31+00', 0, 11, '{"fid": 500749, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94e5c92c-162e-4ec0-9b80-d9f2e54f7400/rectcrop3", "profile": {"bio": {"text": "The blockchain researcher embarks on a journey to find happiness", "mentioned_profiles": []}}, "username": "kasion", "power_badge": false, "display_name": "Kasion🎩🍖🔵", "active_status": "inactive", "verifications": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "follower_count": 1755, "custody_address": "0xa19a05609a7a1be8d950cdd95f0575ad614d7f2e", "following_count": 1550, "verified_addresses": {"eth_addresses": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jXQqj8U6Xd16DTwy8\"}"}', 'sonata'), - (723078, '0xd7daa9db4cac15811371061c1c5ac6ed5f388cd5', 0, 1, '2024-05-06 20:17:32+00', 0, 2, '{"fid": 15207, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b5662c9-1e6a-4722-03c4-9ccf3e76c100/original", "profile": {"bio": {"text": "ESP/ENG web3 pioonering Digital street music since 2017, I Onboard and Teach 1:1\n\nCyborg Amish Being balancing his poles\n\nMusic & Education\n\nA=432hz /live-music", "mentioned_profiles": []}}, "username": "joseacabrerav", "power_badge": false, "display_name": "José Cabrera 🦈🐝", "active_status": "inactive", "verifications": ["0x29185eb8cfd22aa719529217bfbade61677e0ad2"], "follower_count": 112, "custody_address": "0xdf01431655561285782313b438d41ca37b7edd07", "following_count": 429, "verified_addresses": {"eth_addresses": ["0x29185eb8cfd22aa719529217bfbade61677e0ad2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/joseacabrerav/no-winters-land-unplugged?referral_source=link\"}"}', NULL), - (748510, '0xaa18a2f2b85874f8d9a57390d3dd51d630db31fc', 0, 1, '2024-05-06 23:29:21+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 헤이즈(Heize), 정승환 - 언젠간 괜찮아질 이야기 by Moonbyulkiki18 on #SoundCloud https://on.soundcloud.com/mRaUN\"}"}', NULL), - (748333, '0x07efe69ef7834f2136355a89b0efbf974ba74ed6', 0, 1, '2024-05-06 23:28:19+00', 0, 0, '{"fid": 504343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc0d05cb-28fb-4ae2-f765-581bcbb73d00/rectcrop3", "profile": {"bio": {"text": "I ❤ 🎩🔮🧀🌈🐈🦮🌹🎶💎🟣🟠🔴🔵⚪", "mentioned_profiles": []}}, "username": "magicmeow", "power_badge": false, "display_name": "magicmeow🎩🔮🧀🌈🐈", "active_status": "inactive", "verifications": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "follower_count": 717, "custody_address": "0x8f4c24a501666cc02ea4b54d6b85dac510bf59f7", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xb693724eb0646a1e98adc31316fa81a6a5164349"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 눈사람 - 정승환 by Hy3on on #SoundCloud https://on.soundcloud.com/zidor\"}"}', NULL), - (874336, '0x097e5a3e86da435f67d5e96d5e4a765e83b15f16', 0, 1, '2024-05-07 05:58:05+00', 0, 1, '{"fid": 406455, "object": "user", "pfp_url": "https://i.imgur.com/Agjy8AM.jpg", "profile": {"bio": {"text": "$degen. 🌟🌟", "mentioned_profiles": []}}, "username": "dhk", "power_badge": false, "display_name": "dukhyun🎩🍖", "active_status": "inactive", "verifications": ["0x2852c9666d19f422b88ad8e9426f14f018aed8cd", "0x09dcea9668c4f75885666328b7089d64ebfab5e4"], "follower_count": 4089, "custody_address": "0x7e19b132055a67aa06654b0720e09bdde58c9c1b", "following_count": 3373, "verified_addresses": {"eth_addresses": ["0x2852c9666d19f422b88ad8e9426f14f018aed8cd", "0x09dcea9668c4f75885666328b7089d64ebfab5e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AUTr411Ty7fEaj1cA\"}"}', 'sonata'), - (775888, '0x68f537b8bbe1df0329f736ca335f89ee968e77d6', 0, 1, '2024-05-07 01:28:56+00', 0, 2, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 418, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/ALccSQoxmhmrrhTn6\"}"}', 'musicjp'), - (767721, '0xa0a0291c9583105ab0b2598b89f375db57c85691', 0, 1, '2024-05-07 00:48:50+00', 0, 1, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 734, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1080, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-612643857-622196152/paul-kim-new-day?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (755493, '0xa9c08d3ebced7040f7fd983e1e5eab3a3f86f6f2', 0, 1, '2024-05-06 23:49:57+00', 0, 0, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1627, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1614, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/euxs4\"}"}', 'sonata'), - (755105, '0xdc8c891a87fdd3fa3a885a66e145a17ab4a6da9f', 0, 1, '2024-05-06 23:47:57+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2929, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2361, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hd14o\"}"}', 'sonata'), - (788508, '0xef49b596a5a62df7d35de89c01715d6b577e06cc', 0, 1, '2024-05-07 02:57:24+00', 0, 2, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3416, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t5p3H\"}"}', 'sonata'), - (834406, '0x081c2a747166ffdfee4dde4387169e22b7394b9a', 0, 1, '2024-05-07 04:25:55+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1532, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1802, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qx0r4rx2dobt/iu-feat-of-history?si=13a0d6d4d7cb4276a783637e010a2195&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (874317, '0x530ae65daca374813d2b8fe2187615a630b8a543', 0, 1, '2024-05-07 05:58:48+00', 0, 4, '{"fid": 439362, "object": "user", "pfp_url": "https://i.imgur.com/HwYnYQY.jpg", "profile": {"bio": {"text": "Life is live", "mentioned_profiles": []}}, "username": "moji21", "power_badge": false, "display_name": "Mojtaba🎩🍖", "active_status": "inactive", "verifications": ["0xfae69f3ba41a4b7bce0f8b993768de6b0f304b2e"], "follower_count": 2378, "custody_address": "0xafe12f922a6703fa266c8ca6facac05c70b102dc", "following_count": 3372, "verified_addresses": {"eth_addresses": ["0xfae69f3ba41a4b7bce0f8b993768de6b0f304b2e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iranmediamusic/haydeh-aroosak\"}"}', 'sonata'), - (880872, '0xec5f9898e5934754defd60fba0bd3fb4636a0076', 0, 1, '2024-05-07 06:11:57+00', 0, 0, '{"fid": 416877, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffabf3c0-2b27-42f5-0428-137c31585e00/rectcrop3", "profile": {"bio": {"text": "AI Developer/육아/Crypto Lover !!\n좀 늦더라고 맞팔/반사 무조건 갑니당~\n한국어/日本語/中文/English 👌", "mentioned_profiles": []}}, "username": "dalpangpang", "power_badge": false, "display_name": "Dalpangang🎩", "active_status": "inactive", "verifications": ["0xaecef32d4df9c19de2d9cd202b65bac3f8dacdf4"], "follower_count": 1602, "custody_address": "0x2c6f6375608bf2b253d800ba51ec92411b9f35a4", "following_count": 1822, "verified_addresses": {"eth_addresses": ["0xaecef32d4df9c19de2d9cd202b65bac3f8dacdf4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xjydDMBVRQBbgvjL7\"}"}', NULL), - (754322, '0xe08ce6cf83890eb7394e4c1bf17f49e952f14a88', 0, 1, '2024-05-06 23:46:15+00', 0, 16, '{"fid": 376638, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e35f4c0-4979-4769-c221-ed1ab4a3e200/rectcrop3", "profile": {"bio": {"text": "Japanese🇯🇵▷▶enjoy crypto/illustrater ✍️ \n 🔴⚪️🟡host: /colors- & /ai-geek ♥️💚‎🤍", "mentioned_profiles": []}}, "username": "sally-", "power_badge": false, "display_name": "sally🪬Everyone", "active_status": "inactive", "verifications": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "follower_count": 633, "custody_address": "0xea6eeb79b91923be86d19a155999a2da5c3f8516", "following_count": 964, "verified_addresses": {"eth_addresses": ["0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef5f9fc4-6e6f-421d-3c6e-935427637f00/original\"}","{\"url\":\"https://open.spotify.com/track/1jJ2Bwutp5eQn0aY8MU53v?si=bWN4j3EORtuoTi9nifvqOA\"}"}', 'kawaii'), - (755485, '0x5a4b35ff7140619299201a6dd14ee4476b32a0f7', 111, 1, '2024-05-06 23:50:22+00', 0, 0, '{"fid": 340315, "object": "user", "pfp_url": "https://i.imgur.com/XelM9yN.jpg", "profile": {"bio": {"text": "Web3 Enthusiast and Solana Degen", "mentioned_profiles": []}}, "username": "luke123", "power_badge": false, "display_name": "Luke 🎩🔵", "active_status": "inactive", "verifications": ["0x558b067ecb915c9866db1cba46b0609263645ced"], "follower_count": 16, "custody_address": "0x09653ac80577f67fa7951c27c53e7c2d1f45095e", "following_count": 84, "verified_addresses": {"eth_addresses": ["0x558b067ecb915c9866db1cba46b0609263645ced"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/falloutboy/tiffany-blews-album-version?si=b6d302e2c02843988302a489958ba8a6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (755498, '0xfe5e3a71074fa60c47e58005962c05b70001cde8', 111, 1, '2024-05-06 23:49:16+00', 0, 2, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 446, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 297, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DdpUFn8ZS2oRxwnu8\"}"}', 'sonata'), - (787485, '0x2a92bde0b97c2b12e707a9638c00873ec2fab2c2', 0, 1, '2024-05-07 02:47:47+00', 0, 1, '{"fid": 499426, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c59ad12-9c89-43a2-26a8-ac05ed9ef900/original", "profile": {"bio": {"text": "F4F Come on bro!", "mentioned_profiles": []}}, "username": "wonnny", "power_badge": false, "display_name": "jay", "active_status": "inactive", "verifications": ["0x03e054022d3756429bbfc17e788a44781b221649"], "follower_count": 2034, "custody_address": "0x354b8e1a7c71b772cc7ca046b5b5816c7caa2795", "following_count": 2486, "verified_addresses": {"eth_addresses": ["0x03e054022d3756429bbfc17e788a44781b221649"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/5-444283480/lcemlak6yzpg?si=73cf3873cd9a49858369e91e531bb734&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173395, '0x7d126ba51cd78507b708bc418a62690961fab63d', 2020, 1, '2024-05-15 22:40:46+00', 0, 2, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a923b5e7-44bd-417e-33ab-da4a746dc900/original\"}","{\"url\":\"https://open.spotify.com/track/4YOH3cBrhf4F6T4iYFUdz5?si=JHvZC_8JTCmqyLq5e0ckrw\"}"}', NULL), - (746621, '0x316145d3eb003e7ec6fd793debefbcde12c83928', 0, 1, '2024-05-06 23:24:28+00', 0, 2, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 408, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 362, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/46kQMDy00uThRyoUnUPLJ4?si=T_PsFphtQWamGvqlUHXUQA&context=spotify%3Aalbum%3A1YAvqhRktm7QEsuWYHSDgl\"}"}', NULL), - (755526, '0xf682c97c10b5d6dd6791dabe7b8315e58760b033', 0, 1, '2024-05-06 23:50:25+00', 0, 1, '{"fid": 16236, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/ea436138ed433b0e2aecf47bdabf9f19.png?w=500&auto=format", "profile": {"bio": {"text": "🎛️Experimental electronic #Web3Music #MusicNFT | 🤝🏽 Cultural management | 🖤 @sitiocaos cofounder | 🌿 sttsm.lens", "mentioned_profiles": []}}, "username": "sttsm", "power_badge": false, "display_name": "STTSM", "active_status": "inactive", "verifications": ["0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e"], "follower_count": 196, "custody_address": "0x995233179b880dee23002446103923bf18c65739", "following_count": 542, "verified_addresses": {"eth_addresses": ["0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/sttsm/glitchy-lullaby?referral_source=link\"}"}', NULL), - (834408, '0x7797a24ce70eee6cc6a23e822a6da6cca87f3ca5', 0, 1, '2024-05-07 04:28:11+00', 0, 3, '{"fid": 428405, "object": "user", "pfp_url": "https://i.imgur.com/p5CZ3um.jpg", "profile": {"bio": {"text": "Wish not so much to live long as to live well.\n👉오늘도 잘 살기위해 노력중인 세아이맘👈\n#소통좋아요#무한소통#슈퍼캐스트", "mentioned_profiles": []}}, "username": "klcom", "power_badge": false, "display_name": "cocomi🎩🍖", "active_status": "inactive", "verifications": ["0x7c84f7c00f36fe2f4fffb6c5080ba2103c680c4a"], "follower_count": 2996, "custody_address": "0x8e8d4ddfca4d7b2da4d2d825f828ca3363e1f49b", "following_count": 2981, "verified_addresses": {"eth_addresses": ["0x7c84f7c00f36fe2f4fffb6c5080ba2103c680c4a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YomtK\"}"}', 'sonata'), - (858377, '0x92c9444df1846813e34f92eda5a2e6627b87f4d4', 0, 1, '2024-05-07 05:32:12+00', 0, 2, '{"fid": 385222, "object": "user", "pfp_url": "https://i.imgur.com/f3fYjax.jpg", "profile": {"bio": {"text": "I am a small yellow fat Japanese rabbit 🐰 \nLove trip n food. Living in /restarea (sweets & snacks) /meteorcity ", "mentioned_profiles": []}}, "username": "ameame.eth", "power_badge": false, "display_name": "ameli.degen", "active_status": "inactive", "verifications": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "follower_count": 762, "custody_address": "0x55f4b3d35eb11612aa4d141ce8c5a62d68f79485", "following_count": 440, "verified_addresses": {"eth_addresses": ["0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2", "0xf6fe83569c9091352e529f12f807fcd438ab92b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rFs1VcAqnpJezf7Z8\"}"}', 'sonata'), - (835191, '0x77cccc904588670eaba5b070d3139d4f42395753', 0, 1, '2024-05-07 04:29:31+00', 0, 4, '{"fid": 411828, "object": "user", "pfp_url": "https://i.imgur.com/uGVbzJm.jpg", "profile": {"bio": {"text": "I love degen❤️", "mentioned_profiles": []}}, "username": "onlypark125", "power_badge": false, "display_name": "Tigerdw22 🎩 ", "active_status": "inactive", "verifications": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "follower_count": 1692, "custody_address": "0xf82d20b7c0bc7d26020f250583ad1378c147a5de", "following_count": 2088, "verified_addresses": {"eth_addresses": ["0x6ed98629baade9397a050bf3465ee161551cb5a3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rvLTAdRdexYPTZ7u5\"}"}', 'sonata'), - (787483, '0x38676cb62f6b8e5327a87fdab12e4174051b8493', 0, 1, '2024-05-07 02:47:07+00', 0, 1, '{"fid": 492039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd8a4449-4451-42bf-efae-a209b0721300/rectcrop3", "profile": {"bio": {"text": "Welcome to all coin info sharing I respect any opinions.", "mentioned_profiles": []}}, "username": "vvely", "power_badge": false, "display_name": "Kirby⭐️", "active_status": "inactive", "verifications": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "follower_count": 1833, "custody_address": "0x4aa36bd75aae9d6cb64f43e154730bd311787e7f", "following_count": 2690, "verified_addresses": {"eth_addresses": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2bumXrBasFqPTiq48\"}"}', 'sonata'), - (1173403, '0xaf2b30d69b7817dc01fd652883966179dae57f64', 1000, 1, '2024-05-15 22:45:22+00', 0, 0, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ab183d8-a3a3-4b00-e549-b1b6555b5500/original\"}","{\"url\":\"https://open.spotify.com/track/7xQAfvXzm3AkraOtGPWIZg?si=yZz7dyBiQNm8AfA8b5_kvg\"}"}', NULL), - (768162, '0xa9488477ba7e466371a531d5165656bba435db9b', 0, 1, '2024-05-07 00:51:30+00', 0, 5, '{"fid": 486262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/908c18c1-a0dd-4cd5-a4c6-c9b61329b300/rectcrop3", "profile": {"bio": {"text": "Hey~ guys 😍like ❣️recast 🔄reply \n💌is good👍 ", "mentioned_profiles": []}}, "username": "yuchanism", "power_badge": false, "display_name": "유차니즘🌈", "active_status": "inactive", "verifications": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "follower_count": 1986, "custody_address": "0xdf28316ba634e3fecdd5c74d269feb378695d1cb", "following_count": 464, "verified_addresses": {"eth_addresses": ["0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jHbWCzahMLoHDqTy7\"}"}', 'sonata'), - (992298, '0xbcfdebba589cf4af6d1bd2d5c7ad370a7fb354df', 0, 1, '2024-05-07 11:30:31+00', 0, 6, '{"fid": 400377, "object": "user", "pfp_url": "https://i.imgur.com/EkxQ6n2.jpg", "profile": {"bio": {"text": "I love Socola", "mentioned_profiles": []}}, "username": "socola", "power_badge": false, "display_name": "Socola", "active_status": "inactive", "verifications": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "follower_count": 1783, "custody_address": "0x5bcb1b7f6b604f60fb82b055ac587547bb50bd6a", "following_count": 3112, "verified_addresses": {"eth_addresses": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GZKcfAr5bbqEG6gU6\"}"}', 'sonata'), - (779855, '0x2cc4537eac78db40031e933408b6e1cdd7749667', 0, 1, '2024-05-07 01:46:12+00', 0, 1, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1463, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1737, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QgXw7AyqGaNpc6568\"}"}', NULL), - (778570, '0xa021b30f37f839caa7b1c1d748bfd52c02bdf3dc', 0, 1, '2024-05-07 01:41:38+00', 0, 4, '{"fid": 503496, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a82b474-8a6a-40c4-12a1-13c4062b2800/rectcrop3", "profile": {"bio": {"text": "Hello f4f 맞팔 Thank you", "mentioned_profiles": []}}, "username": "leo-", "power_badge": false, "display_name": "LeoLeo", "active_status": "inactive", "verifications": ["0x8475ee11ed898fb1d75756688affe3306a1ba814"], "follower_count": 877, "custody_address": "0x5167d24c50c9808676e0e1e437c8f1a9fc23457c", "following_count": 1252, "verified_addresses": {"eth_addresses": ["0x8475ee11ed898fb1d75756688affe3306a1ba814"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Hkhs35c1B2W1HAv2A\"}"}', 'sonata'), - (779863, '0xef0376e61b1b29f52ec23d95a26baf52f676d332', 0, 1, '2024-05-07 01:45:56+00', 0, 2, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1349, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 713, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JdTrf15jc1DgPD1m6\"}"}', NULL), - (788507, '0x992e6d20b4ccc50785bd7063250e7fb1b8c6ff72', 0, 1, '2024-05-07 02:57:57+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Ember''s Edge by Inkwell Canvas on #SoundCloud https://on.soundcloud.com/pBbS6\"}"}', NULL), - (787482, '0x7b468d777f10c2b6c01de4bfd2672931972743b2', 0, 1, '2024-05-07 02:47:38+00', 0, 1, '{"fid": 415663, "object": "user", "pfp_url": "https://i.imgur.com/DRWpTH0.jpg", "profile": {"bio": {"text": "강원도 사는 고맘 ^^* 저는 프시케예요", "mentioned_profiles": []}}, "username": "coffeetea-csk", "power_badge": false, "display_name": "커피여행", "active_status": "inactive", "verifications": ["0x3b5e16973408e1c60a049693589e62b101a19426"], "follower_count": 958, "custody_address": "0xd8dde5fa3df108289bdc7de3f693ac2a30bef45b", "following_count": 900, "verified_addresses": {"eth_addresses": ["0x3b5e16973408e1c60a049693589e62b101a19426"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/khang-inh-640903699/justin-bieber-peaches?si=cdb23c63d3a54c018466652deb683641&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (779151, '0x2866a034f822e2212fc74ee6a23e7aa84c3ee2e9', 0, 1, '2024-05-07 01:43:40+00', 0, 0, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2154, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1880, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"계속 날이 꿀꿀해서 오늘 점심은 느낌있는 노래추천. https://on.soundcloud.com/r5fkjiQidi8FXRcM8 \"}"}', NULL), - (835338, '0xb23478a1f8e19c89201488daacda29619861bece', 0, 1, '2024-05-07 04:30:00+00', 0, 10, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4964, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2466, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/m63pxzyukqbf/xgqyalkstt6j?si=718d5ab3ff0944f9acb1151e0d44c440&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (788240, '0xfbda152135337377a9a771358ae1cf68f3a34b42', 0, 1, '2024-05-07 02:56:32+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Independent by LJ Henry on #SoundCloud https://on.soundcloud.com/zgf96\"}"}', NULL), - (787352, '0x0e5a5a8d67124dc403add1f9bc53606065a3e397', 0, 1, '2024-05-07 02:45:02+00', 0, 1, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 81, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 250, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/davyd/invictus-ft-yoshiro-mare-melodic-mix\"}"}', NULL), - (781291, '0xd7f9e82d8d9abbdb2c8385d60a4309225ccaabbe', 0, 1, '2024-05-07 01:56:08+00', 0, 5, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 449, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 298, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/g9araFkHFyQRF7ny8\"}"}', NULL), - (755529, '0xd552666490a3d147a00af4d50799068497144ea7', 0, 1, '2024-05-06 23:51:24+00', 0, 1, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 506, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 149, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5lib0mrfrKl6yqxKTSP2Gc?si=bDkmGaUYS-SPuTVygAol4Q&context=spotify%3Aalbum%3A5y27dKpTOQRBMWpgAS7TD2\"}"}', NULL), - (782373, '0x381eda7c18190c24b72f61ae39cdeefd55739505', 0, 1, '2024-05-07 02:01:07+00', 0, 0, '{"fid": 390219, "object": "user", "pfp_url": "https://i.imgur.com/o8ft3dj.jpg", "profile": {"bio": {"text": "Here for the vibes \n•\n", "mentioned_profiles": []}}, "username": "theninemystic", "power_badge": false, "display_name": "Nine 🦋🎩⚪", "active_status": "inactive", "verifications": ["0x91f626b833cf1da926174f30c8dc8962747f5ad8"], "follower_count": 125, "custody_address": "0x4bd81ec0cefaf1b8708b77163c7b681f63702ac3", "following_count": 95, "verified_addresses": {"eth_addresses": ["0x91f626b833cf1da926174f30c8dc8962747f5ad8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5K6FJQHFFv1DPxeZ3gZtSE?si=85_uZaoqQdGdru-e0K-2dQ\"}"}', NULL), - (835760, '0xe5d7caa59282ac3b74fd11b1a5b6f2e3ee6dafdd', 0, 1, '2024-05-07 04:31:20+00', 0, 7, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1128, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1182, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MMbk7\"}"}', 'sonata'), - (900659, '0x022a900267364615303e6e872cb7d682094a3299', 0, 1, '2024-05-07 06:49:02+00', 0, 2, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ihfmusic/departure\"}"}', NULL), - (881389, '0xc3eb9f32e8fd637160e3ce5a7921865a6b9daefa', 0, 1, '2024-05-07 06:16:32+00', 0, 1, '{"fid": 288345, "object": "user", "pfp_url": "https://i.imgur.com/FwGqpQ9.jpg", "profile": {"bio": {"text": " I want to learn various things\nBeing a Good Dad\n", "mentioned_profiles": []}}, "username": "gylee", "power_badge": false, "display_name": "Gygygy🍖🎩💧", "active_status": "inactive", "verifications": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "follower_count": 2547, "custody_address": "0xc02b424283200788e3059b9dec77711175743775", "following_count": 1989, "verified_addresses": {"eth_addresses": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/joshua-kangmin-choi/up-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (809541, '0x9bc26705a533c2536ed60f71f4a9097d65a34686', 0, 1, '2024-05-07 03:42:34+00', 0, 1, '{"fid": 219069, "object": "user", "pfp_url": "https://i.imgur.com/j2SXQEV.png", "profile": {"bio": {"text": "🎩 🍖", "mentioned_profiles": []}}, "username": "vietnd1201", "power_badge": false, "display_name": "Vietdart.eth 🎩 🔵 🍖 🐹", "active_status": "inactive", "verifications": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "follower_count": 361, "custody_address": "0x21f73438f3b1b00374054725a1c0d606831ecda9", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "sol_addresses": ["EuKhNC1Xqmmegj4AxxgqzzHSDPLYDDn29Aie2XKtXztA"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0xCa1A6e5fE34293775fE0dD109d74539b567eEc34&referral_source=link\"}"}', NULL), - (783741, '0xdf692f7c127d36b4ee3b3038f059cdf7e5c19ee5', 0, 1, '2024-05-07 02:07:52+00', 0, 0, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 449, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 298, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9ArYX4fg9pMhDVq47\"}"}', NULL), - (787690, '0xc96309f5384fc87a504ed53904df893afd4f75ca', 0, 1, '2024-05-07 02:48:48+00', 0, 6, '{"fid": 410852, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04c792fc-3ace-45b6-13b4-253e62286600/original", "profile": {"bio": {"text": "How about reading some mangas?", "mentioned_profiles": []}}, "username": "yoonappa", "power_badge": false, "display_name": "Uneed2sleep", "active_status": "inactive", "verifications": ["0xed7d93da437ad37955a316d61b05b0242e2af4fd"], "follower_count": 1316, "custody_address": "0x55ae0e33e82759611d20ce5183f28514f2463409", "following_count": 1466, "verified_addresses": {"eth_addresses": ["0xed7d93da437ad37955a316d61b05b0242e2af4fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/w6xuFWkWv3dTCWwWA\"}"}', 'sonata'), - (778053, '0xc56043603ee5bbb10f1ffc52b79740a02532a3fe', 0, 1, '2024-05-07 01:40:42+00', 0, 3, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1451, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1593, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alexanderstewart-1/perfect-ed-sheeran?si=275ced885e9348eaa1be33853c2b6233&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (732311, '0xf4a42420fe25c8a28345656e3d0ce3563f0ca507', 0, 1, '2024-05-06 21:16:18+00', 0, 1, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 61, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 43, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/11\"}"}', NULL), - (788776, '0xba58537612bc4eecc91dad341d3f79ca3df2b4c9', 0, 1, '2024-05-07 02:59:54+00', 0, 0, '{"fid": 379722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2036467f-9180-461e-520e-380741901700/rectcrop3", "profile": {"bio": {"text": "I Love Hanni Pham! & NewJeans Lover.🐰❤️\nWe are so early!!!🚀🚀 Ham party letgo🍖", "mentioned_profiles": []}}, "username": "9yuu", "power_badge": false, "display_name": "Hanni Pham🍖🔵⛓️", "active_status": "inactive", "verifications": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "follower_count": 2652, "custody_address": "0xdc4948ac5d6eff31726d6d3461867d5b700333cf", "following_count": 2689, "verified_addresses": {"eth_addresses": ["0x91775ca17fdfd55306be30da23dca0de2457722f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/D8mmxi1mVtie6GHE7\"}"}', NULL), - (835761, '0x6198b084a82c434f2e54ca6d5ccd257e08974070', 0, 1, '2024-05-07 04:31:14+00', 0, 1, '{"fid": 451767, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d3e3a01-93e7-4d69-e50a-742d466c5f00/rectcrop3", "profile": {"bio": {"text": "I love $Degen", "mentioned_profiles": []}}, "username": "shafeeq", "power_badge": false, "display_name": "Ayeza Shafeeq", "active_status": "inactive", "verifications": ["0x6df7c9cc271288d5804b92a77813b20f744bfe60"], "follower_count": 704, "custody_address": "0x6df7c9cc271288d5804b92a77813b20f744bfe60", "following_count": 1820, "verified_addresses": {"eth_addresses": ["0x6df7c9cc271288d5804b92a77813b20f744bfe60"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ipccKVcfzdyi2RiY9\"}"}', NULL), - (783748, '0x97578ff8d2c55d0eea71454ec6eeb7e8fc133a55', 10, 1, '2024-05-07 02:09:03+00', 3230, 51, '{"fid": 506122, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9d8c35c-9216-4b81-3e40-4a8764433d00/rectcrop3", "profile": {"bio": {"text": "Interesting cryptocurrency also nft", "mentioned_profiles": []}}, "username": "meri20", "power_badge": false, "display_name": "Mahsam", "active_status": "inactive", "verifications": ["0xdace67093ce21b2459f2c03d3f524bf706218b66"], "follower_count": 241, "custody_address": "0xbb12f8c0c862552817165cc7f0f31ff1e1ca6d4b", "following_count": 270, "verified_addresses": {"eth_addresses": ["0xdace67093ce21b2459f2c03d3f524bf706218b66"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6XnqiSF4Ct5YaEV46\"}"}', NULL), - (788903, '0xc954ea63eb1c32847851532efa3b13583ba47c29', 0, 1, '2024-05-07 03:02:00+00', 0, 1, '{"fid": 515761, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/091006ff-cdad-4397-e394-8d8865454300/rectcrop3", "profile": {"bio": {"text": "I''m a talking hat :)", "mentioned_profiles": []}}, "username": "!515761", "power_badge": false, "display_name": "Bittersweet🎩", "active_status": "inactive", "verifications": ["0xeb13f7de87ce1a73bfe196e109ac03cfba42d62c"], "follower_count": 138, "custody_address": "0xf066537da83d3a34daf37e1ac9aa51694553ac97", "following_count": 258, "verified_addresses": {"eth_addresses": ["0xeb13f7de87ce1a73bfe196e109ac03cfba42d62c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xUKeX9XwWro7uKRg8\"}"}', 'sonata'), - (787689, '0x89b5bbdd12cdc85ca865a0034118882d4df3cbdb', 0, 1, '2024-05-07 02:50:03+00', 0, 0, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1329, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 1008, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-471596025/caip1nc7khmx?si=be0f4c3fc0e54a158e20c4163752e765&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173352, '0x1e760320466156aa92bceaf61fbe3e703dcbc52c', 3000, 1, '2024-05-15 21:03:44+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4bjvLvKovcWqZwDbXT5QQX?si=r5B-X_jATyCvYiUYTa4-cA\"}"}', NULL), - (902464, '0xf9dea53bf1c04c3261e965c50cf109ddb8694c71', 0, 1, '2024-05-07 06:51:08+00', 0, 0, '{"fid": 458862, "object": "user", "pfp_url": "https://arweave.net/IPtwc2-0iPFoqhFalsAzMaBETzQ90RZNhA9AW9Lh3AE/", "profile": {"bio": {"text": "Follow for Daily analysis\nRegisterd nurse\nAthlete ", "mentioned_profiles": []}}, "username": "antonio-d", "power_badge": false, "display_name": "Reza Dadar", "active_status": "inactive", "verifications": ["0x7393380b2de024bd52bd154a80e199fc5a48948d"], "follower_count": 1246, "custody_address": "0xe9d1a349762d9d42576698413cce103cbf62e802", "following_count": 1178, "verified_addresses": {"eth_addresses": ["0x7393380b2de024bd52bd154a80e199fc5a48948d"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/dorcci/damn-things\"}"}', 'sonata'), - (788237, '0x8551f94e99795ceb8d2c867bd29339fabdadccf0', 0, 1, '2024-05-07 02:54:21+00', 0, 3, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1798, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 912, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JG6ttrjaN2wtjLwF6\"}"}', NULL), - (788899, '0x538a9f6eed2ee642a6ec50c37c0d8c1a4236f882', 0, 1, '2024-05-07 03:02:03+00', 0, 1, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1265, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1275, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki28/lim-jae-hyun-rhapsody-of-sadness?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (924438, '0x7e4ca25b30caed420fb305e390659d3a883ec27a', 127, 1, '2024-05-07 07:38:52+00', 70, 80, '{"fid": 448399, "object": "user", "pfp_url": "https://i.imgur.com/COsaKWy.jpg", "profile": {"bio": {"text": "디젠1달러가즈아$ 선팔.맞팔 끝까지갑니다.좋아요 리퀘는 사랑입니다.", "mentioned_profiles": []}}, "username": "daddyman", "power_badge": false, "display_name": "Daddyman", "active_status": "inactive", "verifications": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "follower_count": 1619, "custody_address": "0x6d8774f82e69b17974493a324ec868b6ac7514a6", "following_count": 1315, "verified_addresses": {"eth_addresses": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nSWV8\"}"}', 'sonata'), - (952041, '0xb705c66ae2d64418816b2a7d2b3b252129e13b70', 0, 1, '2024-05-07 09:00:31+00', 0, 1, '{"fid": 500728, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3987297-3fc4-4424-563b-1259c4e73b00/rectcrop3", "profile": {"bio": {"text": "Hi~~ I''m come on)\n하 ㄴ 꾸 ㄱ인 입니다 친gu 해요!!!", "mentioned_profiles": []}}, "username": "mumu11", "power_badge": false, "display_name": "Mumu🎩🧳", "active_status": "inactive", "verifications": ["0xee2f7afb924c20b2c40f818767b9ed58796a8033"], "follower_count": 871, "custody_address": "0xf6fd18ce23034b77ff32f6d79fe8cab9985bb2fc", "following_count": 1012, "verified_addresses": {"eth_addresses": ["0xee2f7afb924c20b2c40f818767b9ed58796a8033"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ph-m-thu-trang-47466572/nothing-on-you-barry-brizzy?si=52129aa7961445edb53b81cab49b2f72&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (782390, '0x70d77c04ed7dfd563dc110de33441e688e80c3b2', 0, 1, '2024-05-07 02:00:59+00', 0, 0, '{"fid": 276658, "object": "user", "pfp_url": "https://i.imgur.com/wXOGoxy.jpg", "profile": {"bio": {"text": "Those who trust in their perseverance do not value luck🔥🔥\n😵‍💫😵‍💫😵‍💫😵‍💫\nFID:276658\n😵‍💫😵‍💫😵‍💫😵‍💫\n", "mentioned_profiles": []}}, "username": "omid081", "power_badge": false, "display_name": "Omid🎩", "active_status": "inactive", "verifications": ["0x59a63491332d79c1a7087db3738f1683b47e66cf"], "follower_count": 944, "custody_address": "0x59a63491332d79c1a7087db3738f1683b47e66cf", "following_count": 900, "verified_addresses": {"eth_addresses": ["0x59a63491332d79c1a7087db3738f1683b47e66cf"], "sol_addresses": ["6rbo1J7icLgk1SceRwuyN3EGNvEwVF1zXeiS8Cg7y1HR"]}}', '{"{\"url\":\"https://on.soundcloud.com/V1A8j\"}"}', NULL), - (787692, '0xe5d6f5644ba65b1eb15d758c6fb5623b37d96c5a', 0, 1, '2024-05-07 02:50:20+00', 0, 3, '{"fid": 425915, "object": "user", "pfp_url": "https://i.imgur.com/Mlu6njb.png", "profile": {"bio": {"text": "Hi, I''m POVI 🐻‍❄️✨ \nWould you be my friend? 🐻‍❄️✨✨\nT2T ", "mentioned_profiles": []}}, "username": "povi", "power_badge": false, "display_name": "Povi🐻‍❄️", "active_status": "inactive", "verifications": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "follower_count": 3473, "custody_address": "0x066d863acc9e5464adbf6fb4eac6ec02d40bcd6f", "following_count": 2256, "verified_addresses": {"eth_addresses": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user_96879275/zico-seoul?si=48062cacb56a4dee943917f8894d886f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (874329, '0x028602abd38607c17038052d28a17163bf7ba86a', 0, 1, '2024-05-07 05:59:17+00', 0, 1, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 734, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1088, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/okqygWP13Zh6gsfv7\"}"}', NULL), - (1173385, '0x6a2b014afda0a34a013c87e9a1098d71a7da5757', 1000, 1, '2024-05-15 22:13:20+00', 0, 12, '{"fid": 3115, "object": "user", "pfp_url": "https://i.imgur.com/q1Rk1Yp.jpg", "profile": {"bio": {"text": "working on /music", "mentioned_profiles": []}}, "username": "ghostlinkz.eth", "power_badge": true, "display_name": "ildi", "active_status": "inactive", "verifications": ["0x05ff7cc8b490b38898744037f951f3247673c2ed"], "follower_count": 38709, "custody_address": "0x218ea80280a139e7e835744bbd3a4ade6b5f7c0d", "following_count": 1294, "verified_addresses": {"eth_addresses": ["0x05ff7cc8b490b38898744037f951f3247673c2ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1gJnLSxvNGu96XBj2uweja\"}"}', NULL), - (858341, '0xcf66baa4351c21dd8f66d8c0ee3e23bc88fcea83', 0, 1, '2024-05-07 05:32:25+00', 0, 3, '{"fid": 290288, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmf9bNFBZS1fC5P5h3XGoEpW7J3Ct9rN5ft543tfcDnhme?filename=KakaoTalk_20240427_202428375_05.jpg", "profile": {"bio": {"text": "BOS^^", "mentioned_profiles": []}}, "username": "jiyujeong", "power_badge": false, "display_name": "BOS", "active_status": "inactive", "verifications": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "follower_count": 2307, "custody_address": "0xf9c173d7657ad1969ee2b93d87b0ff607364ab69", "following_count": 2800, "verified_addresses": {"eth_addresses": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-939025781/huyrjbgc5h0s?si=fda81de49bd143c5bdd14cc746fde0f1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (881182, '0xcca1a35b29d4efd739fe28b3e82b3751a53f1930', 0, 1, '2024-05-07 06:14:03+00', 0, 1, '{"fid": 286613, "object": "user", "pfp_url": "https://i.imgur.com/Wk4j00c.jpg", "profile": {"bio": {"text": "enjoy enjoy enjoy", "mentioned_profiles": []}}, "username": "jj85", "power_badge": false, "display_name": "jj85🎩", "active_status": "inactive", "verifications": ["0x388f3fabe51dfc21d54a34102c6aecc46134f153"], "follower_count": 1206, "custody_address": "0x3c6ccca5eebaaf576f98c20052ff844d7edf3661", "following_count": 1651, "verified_addresses": {"eth_addresses": ["0x388f3fabe51dfc21d54a34102c6aecc46134f153"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-374925376-397649303/aimyon?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (900224, '0x8cce5da2c4080ddf4abb188cc460db9dd15c4eaa', 0, 1, '2024-05-07 06:48:37+00', 0, 0, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ghostloft/overflow\"}"}', NULL), - (885405, '0xfba4df6929eda7099a13767e03d213818b347a46', 0, 1, '2024-05-07 06:28:01+00', 0, 0, '{"fid": 511123, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dde2ad40-533a-4e13-b381-07087329a500/rectcrop3", "profile": {"bio": {"text": "Crypto Trader⛓️ & Wine seller🍷", "mentioned_profiles": []}}, "username": "!511123", "power_badge": false, "display_name": "D.hxxn", "active_status": "inactive", "verifications": ["0x76519c0b80c380b5891e182fa14869bc6ece1819"], "follower_count": 100, "custody_address": "0x6febc85fb41d89347c9ef509afe0b213c9759b7e", "following_count": 139, "verified_addresses": {"eth_addresses": ["0x76519c0b80c380b5891e182fa14869bc6ece1819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KTXfNbSBvnsUf69P8\"}"}', 'sonata'), - (782391, '0x3c2ea3eeb347b91b76a55632c82e07132e8d8dae', 0, 1, '2024-05-07 02:01:09+00', 0, 0, '{"fid": 501188, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b342701-7f59-4b3f-8a8d-87bfaa186a00/rectcrop3", "profile": {"bio": {"text": "Manners & money makes a man | Daily life🎩 | Day trader🌱 | 중고신입👻 | 실패는 없다✨", "mentioned_profiles": []}}, "username": "k729", "power_badge": false, "display_name": "regor🎩🍖", "active_status": "inactive", "verifications": ["0x8ee5c408725ccdb8cc8bfc116f3bcbb4a039d567"], "follower_count": 692, "custody_address": "0x75dec736faeb7553ea2835646cba74976738894d", "following_count": 688, "verified_addresses": {"eth_addresses": ["0x8ee5c408725ccdb8cc8bfc116f3bcbb4a039d567"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U5Q3DgYbkpyRDoAX8\"}"}', NULL), - (900661, '0x020f26a6182dd10043c08abd28dd35cd0b8a2303', 0, 1, '2024-05-07 06:49:28+00', 0, 1, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/area21/spaceships\"}"}', NULL), - (833479, '0x0aaa85ea0423f7889a64b841c6110902a0e611cc', 0, 1, '2024-05-07 04:22:39+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1532, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1802, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-632174231/sets/wtbytewajwrf?si=91304334fce94d329142f531a5110987&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160116, '0x90d6dce05dae7521cf90e8592f348218acd2ca57', 0, 1, '2024-05-08 13:09:16+00', 0, 8, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 563, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 592, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5w7zABMCN6IYHlTXkvA8Ty?si=8zT1BA8kQj-4M-u0XN6AgA\"}"}', NULL), - (858367, '0x4a69e7be8dcb03c34d24b5b2690a0e26026d37ae', 0, 1, '2024-05-07 05:32:34+00', 0, 5, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3435, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ELspo3N3CAsDGe4N6\"}"}', 'sonata'), - (950250, '0xe7796dcb96c903a96bc0f331f70589b312b917d4', 0, 1, '2024-05-07 08:53:58+00', 0, 0, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 48, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 161, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nonesuchrecords/wilco-jesus-etc-from-yankee?si=10d52f3671054258ac6cce2eb8d585fa&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (788518, '0x9f3904aa3a6e27c1e4eb3766df75a120a92ad868', 0, 1, '2024-05-07 02:57:46+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to KosapwUti_AgeJay (Sleepless Beats).mp3 by AgeJay L0/\\\\/!K0\\\\/\\\\/ on #SoundCloud https://on.soundcloud.com/woC1K\"}"}', NULL), - (1173328, '0x8c5a8790f368714ffc8cb3376f85590274d5f70b', 0, 1, '2024-05-15 20:25:37+00', 100, 10, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4542, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3PachG6WWWV6lVtXDtTdGQ?si=O3DqmdmRRx2Me5-EsoD1zA&context=spotify%3Aplaylist%3A37i9dQZF1DZ06evO0ENBD3\"}"}', NULL), - (782726, '0x30d0021b1d2a84142fd591a20b129a92ad652207', 0, 1, '2024-05-07 02:01:47+00', 0, 0, '{"fid": 276658, "object": "user", "pfp_url": "https://i.imgur.com/wXOGoxy.jpg", "profile": {"bio": {"text": "Those who trust in their perseverance do not value luck🔥🔥\n😵‍💫😵‍💫😵‍💫😵‍💫\nFID:276658\n😵‍💫😵‍💫😵‍💫😵‍💫\n", "mentioned_profiles": []}}, "username": "omid081", "power_badge": false, "display_name": "Omid🎩", "active_status": "inactive", "verifications": ["0x59a63491332d79c1a7087db3738f1683b47e66cf"], "follower_count": 944, "custody_address": "0x59a63491332d79c1a7087db3738f1683b47e66cf", "following_count": 900, "verified_addresses": {"eth_addresses": ["0x59a63491332d79c1a7087db3738f1683b47e66cf"], "sol_addresses": ["6rbo1J7icLgk1SceRwuyN3EGNvEwVF1zXeiS8Cg7y1HR"]}}', '{"{\"url\":\"Listen to My.Love.Doshka.320.BeysMusic.ir.mp3 by Omid mahdavi on #SoundCloud https://on.soundcloud.com/V1A8j\"}"}', NULL), - (789005, '0x8665f585dd1d032214e59120822f66d3d3f06ea6', 0, 1, '2024-05-07 03:03:13+00', 0, 4, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1265, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1275, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share42/thats-okay?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (902466, '0xa18c67d7e9549a76b27f0dca72680be9b9eebedb', 0, 1, '2024-05-07 06:50:59+00', 0, 3, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cardsmusic/cards-one-too-many-movies-1\"}"}', NULL), - (836529, '0x380126a37f12dc0cb9d7248056f40ef603c7abc8', 0, 1, '2024-05-07 04:32:04+00', 0, 1, '{"fid": 347212, "object": "user", "pfp_url": "https://i.imgur.com/p1Wg11V.jpg", "profile": {"bio": {"text": "ヤサシナと申します。\nFX 修行中です。\nお金は後から付いてくる\n\n\"Money will come later, so be patient for now.\"\n\n", "mentioned_profiles": []}}, "username": "yassa47-88", "power_badge": false, "display_name": "ヤサシナ🎩🔵", "active_status": "inactive", "verifications": ["0x35b798337d68ed8b86e7872975fe9f2a94cbdac9"], "follower_count": 567, "custody_address": "0x3a74cbebe730aa9974ef5700d136e860a29701a7", "following_count": 737, "verified_addresses": {"eth_addresses": ["0x35b798337d68ed8b86e7872975fe9f2a94cbdac9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RUgAox1bu15EaBX36\"}"}', 'sonata'), - (787840, '0xd4504eea4505797facba766bc639e5bc2f4aa66c', 0, 1, '2024-05-07 02:51:22+00', 0, 2, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 364, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 333, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6c79b\"}"}', 'sonata'), - (782738, '0x2435c7db3cada6d57c133dd9030b4d057826dbd4', 0, 1, '2024-05-07 02:01:24+00', 0, 0, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2154, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1880, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bGuajzDhB6pYZQHw7\"}"}', NULL), - (766323, '0x9848029795f029fd95ed1b1c66d223c3b8ef0f43', 0, 1, '2024-05-07 00:36:34+00', 0, 2, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 568, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 520, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/iseeblue/ill-go?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (787847, '0xd53f94a6361daf453626fb0b1054462b2a22372c', 0, 1, '2024-05-07 02:50:56+00', 0, 0, '{"fid": 500876, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c36cfae-2adf-4db7-bf7b-5182b4a56400/rectcrop3", "profile": {"bio": {"text": "Happy things happen everyday :-)", "mentioned_profiles": []}}, "username": "seayu", "power_badge": false, "display_name": "seayu", "active_status": "inactive", "verifications": ["0x577a72f341252a8704647be6f0b9d34e78f1b750"], "follower_count": 782, "custody_address": "0xec50194b1b3d5a5758e21e67dfe2725982b3547a", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x577a72f341252a8704647be6f0b9d34e78f1b750"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6adea04-8b0b-48cb-363e-e12e0731e500/original\"}","{\"url\":\"https://on.soundcloud.com/TLMC2PC3wgrKeNdr7\"}"}', 'sonata'), - (1173443, '0xd9ba2565149cf825bc6ef82508dad4345d14524a', 1000, 1, '2024-05-15 23:31:47+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/050f1a3b-998f-4ab9-ebd0-e81f7323ff00/original\"}","{\"url\":\"https://open.spotify.com/track/7aEjUdVMgHPQQdIIcaWnyt?si=9PIY1nknSWKUwBLBHoUYog\"}"}', NULL), - (783037, '0x1ef54ba3032e8f3daef0bdb2bcfef5b7c2a9748a', 0, 1, '2024-05-07 02:03:03+00', 0, 1, '{"fid": 409670, "object": "user", "pfp_url": "https://i.imgur.com/3PTErgd.jpg", "profile": {"bio": {"text": "picture🌻/I like records/커피, 식물, 소소한 행복 ☕️🪴🥰👍", "mentioned_profiles": []}}, "username": "sonagi", "power_badge": false, "display_name": "Sonje", "active_status": "inactive", "verifications": ["0x626aef5c0d4dd0eee86818240f59ffe47f4165e2"], "follower_count": 1223, "custody_address": "0xdb18305d986651814f6d4c083eb287f9bfbca0f0", "following_count": 1094, "verified_addresses": {"eth_addresses": ["0x626aef5c0d4dd0eee86818240f59ffe47f4165e2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TRERB4mfYXkAQtT69\"}"}', 'sonata'), - (783032, '0x0df95ff0e4413f6d760b74521cdc3417f8771101', 1000, 1, '2024-05-07 02:02:47+00', 0, 0, '{"fid": 265597, "object": "user", "pfp_url": "https://i.imgur.com/4oW3yZ9.gif", "profile": {"bio": {"text": "Japanese🇯🇵 \nlike ▶︎ BCG、エアドロ、お酒🍶、犬🐶\n沢山いいね、リキャストしていきます👍\n", "mentioned_profiles": []}}, "username": "ginsan", "power_badge": false, "display_name": "ginsan.degen🎩🔮", "active_status": "inactive", "verifications": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "follower_count": 1151, "custody_address": "0xe4c97bd2e6864247d76555c72e624c6113343c9b", "following_count": 552, "verified_addresses": {"eth_addresses": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "sol_addresses": ["5vmkrAHfaLYDP4kdt7HUph6rPLk6Z1xhj8sPPLNy9w7e"]}}', '{"{\"url\":\"https://on.soundcloud.com/kwEwp94Pr2wQsbNo6\"}"}', NULL), - (783165, '0xb9b8155e4dcfd697c02d6fef53b96109a0a80afa', 0, 1, '2024-05-07 02:04:03+00', 0, 2, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3416, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KqHmr\"}"}', 'sonata'), - (782378, '0x8dd256eadb55563f696871caa5bc02ccab5459e8', 0, 1, '2024-05-07 02:01:20+00', 0, 2, '{"fid": 417059, "object": "user", "pfp_url": "https://i.imgur.com/Bs403P4.jpg", "profile": {"bio": {"text": "GM! GA! GE!\nEverything''s gonna be fine.\nHave a nice day.\nMuhandojeon!! \nInfinite Challenge", "mentioned_profiles": []}}, "username": "lets-gotothemoon", "power_badge": false, "display_name": "무한상사정대리", "active_status": "inactive", "verifications": ["0x57301eb05d2aec733c239fd21d79764682e30b2c"], "follower_count": 3361, "custody_address": "0x0743aa74e9cc43f970dd0ae12b7865e65b2bed72", "following_count": 3120, "verified_addresses": {"eth_addresses": ["0x57301eb05d2aec733c239fd21d79764682e30b2c"], "sol_addresses": ["3Tqco7xa91tjdgS6vR5Xfi2ukEikixProi8PtNLqq4cv"]}}', '{"{\"url\":\"https://on.soundcloud.com/Uu8wmC3fPWqYESgw9\"}"}', 'sonata'), - (788524, '0x0bc085dda654177703836a6e7293e75b6eaef1db', 0, 1, '2024-05-07 02:56:40+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Loud Enough by Pottoo Records on #SoundCloud https://on.soundcloud.com/xocQX\"}"}', NULL), - (788904, '0x9b8545765100e1219c70b9369a00c0dd486cfa72', 0, 1, '2024-05-07 03:01:34+00', 0, 2, '{"fid": 502049, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf5547fa-26c5-4e6a-c79f-fb509b567c00/rectcrop3", "profile": {"bio": {"text": "I''m hacker in Usa", "mentioned_profiles": []}}, "username": "welloworld", "power_badge": false, "display_name": "Codemania", "active_status": "inactive", "verifications": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "follower_count": 1635, "custody_address": "0x135ad7989e8ee71ad4f272e44d1eecd2278eecc8", "following_count": 786, "verified_addresses": {"eth_addresses": ["0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tiffani-guidotti/iu-rain-drop-4\"}"}', 'sonata'), - (783740, '0x18f8e64600d4a1f44e96cf0d0a656a25551c806b', 0, 1, '2024-05-07 02:07:17+00', 0, 1, '{"fid": 406744, "object": "user", "pfp_url": "https://i.imgur.com/90jbphs.jpg", "profile": {"bio": {"text": "Positive!", "mentioned_profiles": []}}, "username": "miracledoo", "power_badge": false, "display_name": "HEEGOO", "active_status": "inactive", "verifications": ["0xe1f8f232f4b861ffe1d041f33a7c17aaf015c6d1"], "follower_count": 1370, "custody_address": "0x6944a8dad8490ca3abf699e561bf6e9a4a452bd1", "following_count": 2238, "verified_addresses": {"eth_addresses": ["0xe1f8f232f4b861ffe1d041f33a7c17aaf015c6d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/willbaileyy/sarah-brightman-andrea-bocelli\"}"}', 'sonata'), - (1173417, '0x141c08d6ab15f588298e14d53c39f7a038fbbf10', 1000, 1, '2024-05-15 23:17:44+00', 0, 0, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/5l7icgnicl7JToRxPkSXyy?si=O5gVTHo0SP6ZHwyQPBW3kA\"}"}', NULL), - (783038, '0x933768b48b9baadc21b55702ae338523d48eec17', 0, 1, '2024-05-07 02:03:15+00', 0, 1, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2931, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2362, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Fy1EK\"}"}', 'sonata'), - (899664, '0x52f7c821c17f7dcfcf0bd3b82e5492123e95986d', 0, 1, '2024-05-07 06:47:33+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1535, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/allstao1106/crush-dont-forget-feat-taeyeon?si=b4d387ff378343ada10d3b56273188bb&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (783621, '0x0cce5996fc4da86c1b584569bde62ad114cf6e76', 0, 1, '2024-05-07 02:05:59+00', 0, 0, '{"fid": 416064, "object": "user", "pfp_url": "https://i.imgur.com/A6GEMtH.jpg", "profile": {"bio": {"text": "마지막 기회, 그거슨 바로 디젠. \n\n\nThe last chance, that''s Degen.", "mentioned_profiles": []}}, "username": "chchn2", "power_badge": false, "display_name": "chchn2", "active_status": "inactive", "verifications": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "follower_count": 2913, "custody_address": "0xc6576a3e4a013dede662fad6f93ab4e99ed36f51", "following_count": 2536, "verified_addresses": {"eth_addresses": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost11/paul-kim-goodbye-hotel-del-luna-ost-part-10?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (783739, '0x6ba58fa72354ae0b9eca906c300839ab0ce98a0a', 0, 1, '2024-05-07 02:08:43+00', 0, 2, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3959, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2233, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KN4MZqnzQJ8Livob9\"}"}', 'sonata'), - (783742, '0x2f1fb13c5af8651bea736ed464e25e4c5e84dc0b', 0, 1, '2024-05-07 02:07:43+00', 0, 0, '{"fid": 292154, "object": "user", "pfp_url": "https://i.imgur.com/rtWcOLQ.jpg", "profile": {"bio": {"text": "Crypto info\nFood Travel \nhttps://zora.co/@dannyping", "mentioned_profiles": []}}, "username": "dannykim", "power_badge": false, "display_name": "Danny Ping", "active_status": "inactive", "verifications": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "follower_count": 2132, "custody_address": "0x37e0c88ecc4897422b55ab72ab2d9c9e624b50e4", "following_count": 2253, "verified_addresses": {"eth_addresses": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Time is Running Out by Muse on #SoundCloud https://on.soundcloud.com/5HdVF\"}"}', NULL), - (854918, '0x5abf6c7b6f75f757a7be337f17b2d5cc5aa482fa', 0, 1, '2024-05-07 05:30:39+00', 0, 2, '{"fid": 290288, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmf9bNFBZS1fC5P5h3XGoEpW7J3Ct9rN5ft543tfcDnhme?filename=KakaoTalk_20240427_202428375_05.jpg", "profile": {"bio": {"text": "BOS^^", "mentioned_profiles": []}}, "username": "jiyujeong", "power_badge": false, "display_name": "BOS", "active_status": "inactive", "verifications": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "follower_count": 2307, "custody_address": "0xf9c173d7657ad1969ee2b93d87b0ff607364ab69", "following_count": 2800, "verified_addresses": {"eth_addresses": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iuz4knh5vped/sets/egigok9eiomq?si=189a5b7d54404a1b8650f1d3f14eb885&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmVxf8Jd7xL6nnb1Hudwuz7nAcyHpvf6xkpUEYmMXaPjLq?filename=KakaoTalk_20240504_202248077_01.jpg\"}"}', 'sonata'), - (1173412, '0x88739ca63ca5959d28c025acc87f4c01fb875dc8', 3222, 1, '2024-05-15 23:13:52+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/6I9VzXrHxO9rA9A5euc8Ak?si=r9iuWfucShCtf6Okkie86A\"}"}', NULL), - (775255, '0x18143e70b4b32488931b272940f348b817795832', 0, 1, '2024-05-07 01:26:41+00', 0, 1, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 491, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4vHNeBWDQpVCmGbaccrRzi?si=d84ea08b73434b20\"}"}', NULL), - (900234, '0x4735387843eda035acd3a7c20b54877d12e2068d', 0, 1, '2024-05-07 06:48:23+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1535, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fsrcr9sqxukh/sucix7s7cjm0?si=c96a340255f64cc5b381986a6b64cdff&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (800786, '0x70c14e7f54ac7cd5c353d3e2b992c6d0f0dc544a', 0, 1, '2024-05-07 03:22:31+00', 0, 7, '{"fid": 424518, "object": "user", "pfp_url": "https://i.imgur.com/fHAcZme.jpg", "profile": {"bio": {"text": "반말 못하는사람.", "mentioned_profiles": []}}, "username": "yso", "power_badge": false, "display_name": "Goodm", "active_status": "inactive", "verifications": ["0x12311ae0c2b1c9e4c0aba2ff210ebf15f1f5528a"], "follower_count": 764, "custody_address": "0xf6479cd4b2290ed21e3ac82d549291f9bd590543", "following_count": 649, "verified_addresses": {"eth_addresses": ["0x12311ae0c2b1c9e4c0aba2ff210ebf15f1f5528a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/33221123/cover-7\"}"}', 'sonata'), - (788784, '0x2a68d6405b38a29d8eca9aa8c9142323bc0ef50d', 0, 1, '2024-05-07 03:00:15+00', 0, 3, '{"fid": 417704, "object": "user", "pfp_url": "https://i.imgur.com/p6NbQjC.jpg", "profile": {"bio": {"text": "i like cryptocurrency\nbe the specialist\nProvides information, news, chart analysis, and air-drop", "mentioned_profiles": []}}, "username": "intro12", "power_badge": false, "display_name": "Intro", "active_status": "inactive", "verifications": ["0x304d493028c592829a05222b65671d1944c8e56b"], "follower_count": 3056, "custody_address": "0xe48e93b40bd32463d986d1fae13f8f390679e5ba", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x304d493028c592829a05222b65671d1944c8e56b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share92/yerin-baek-square-2017?in=1uui8plmjvy5/sets/91sgwgdhzg3l&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (783961, '0x1e62696f89b8454330790b5a40fe7fde6276c4ef', 0, 1, '2024-05-07 02:09:45+00', 0, 0, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 418, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/Ex77cQKbm3YFAqKZ8\"}"}', NULL), - (788786, '0x73920e43223f194a9c1cc0e442748e9538bbc155', 0, 1, '2024-05-07 03:00:18+00', 0, 2, '{"fid": 506167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a791ac3a-65f2-4def-608c-59ae24c67400/rectcrop3", "profile": {"bio": {"text": "In crypto since 2017", "mentioned_profiles": []}}, "username": "onlydh", "power_badge": false, "display_name": "daniel", "active_status": "inactive", "verifications": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "follower_count": 772, "custody_address": "0x9c94baca26c8a6b031bdb5025963fcdac9f0eaa2", "following_count": 1088, "verified_addresses": {"eth_addresses": ["0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/y88qf5o5r63z/xx-1?si=1a7e027db153488794145bead9be00d2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (803111, '0xb00ffad0e0deb5c93651c041bb9e871e492dcf1b', 0, 1, '2024-05-07 03:28:28+00', 0, 1, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K4TkDgqyuNk4e5hp8\"}"}', NULL), - (788033, '0x2f3bacc086fea75a100603ba912dedbabb6e299b', 0, 1, '2024-05-07 02:53:15+00', 0, 1, '{"fid": 406046, "object": "user", "pfp_url": "https://i.imgur.com/jtx4Z4h.jpg", "profile": {"bio": {"text": "Supercast✅ ❤️ \n\n Dongguk Univ. Seoul Campus \n\n", "mentioned_profiles": []}}, "username": "toptrader", "power_badge": false, "display_name": "Seongwook Jung", "active_status": "inactive", "verifications": ["0x34ad6b081979c44ecf4402edbbe5c969b95e5b60"], "follower_count": 3587, "custody_address": "0x30bec1d6725bed097e205907c12ee3e4c8b130a1", "following_count": 2971, "verified_addresses": {"eth_addresses": ["0x34ad6b081979c44ecf4402edbbe5c969b95e5b60"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yBnrPXzDAXnhwHDG7\"}"}', 'sonata'), - (784490, '0xf142fae0b9d2f620073e9d698c6432425910a826', 0, 1, '2024-05-07 02:11:50+00', 0, 3, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2667, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3137, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LFRmLD1YBjAiq9Y4A\"}"}', 'sonata'), - (1173490, '0x19645c1e421381b6d87590de1b510fa2ff3667d2', 0, 1, '2024-05-16 03:29:45+00', 0, 2, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/2ZDkZV0SUhoP3mXGX6ASZm?si=G0YflNT7RICb4iOPWWYD-A\"}"}', NULL), - (783962, '0x61e8d3a248db115ee887a205cef381ed3c1679de', 0, 1, '2024-05-07 02:09:56+00', 0, 1, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1763, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2211, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/88rising/midsummer-madness-feat-joji\"}"}', NULL), - (782369, '0x44f7a776f924b458703d675cb24a2f0f8dd016ef', 0, 1, '2024-05-07 02:00:50+00', 0, 1, '{"fid": 501956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dfc974c9-092c-4b04-1eee-4d654ffca000/rectcrop3", "profile": {"bio": {"text": "Have a nice day. F4F", "mentioned_profiles": []}}, "username": "snowman7", "power_badge": false, "display_name": "Snow", "active_status": "inactive", "verifications": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "follower_count": 642, "custody_address": "0xa0a8ee605feab4e52ad51887e02672ea0b7cd81c", "following_count": 623, "verified_addresses": {"eth_addresses": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hakidoki/9vv2itq4quqb#:~:text=https%3A//soundcloud.com/hakidoki/9vv2itq4quqb%3Fsi%3D2160e084efdc4394be08b8fdaf0178a4%26utm_source%3Dclipboard%26utm_medium%3Dtext%26utm_campaign%3Dsocial_sharing\"}"}', NULL), - (900209, '0x6ab510a4be0c87491daa571a01a75de7e3ee3ee7', 0, 1, '2024-05-07 06:47:45+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1535, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-82884052/jonghyun-lonely-feat-mv-1?si=f3e01336f3c140228ce855542615e6d9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (784480, '0x394b182f5a8f52fc849ef0304f867cb0ebe34711', 0, 1, '2024-05-07 02:11:36+00', 0, 4, '{"fid": 416064, "object": "user", "pfp_url": "https://i.imgur.com/A6GEMtH.jpg", "profile": {"bio": {"text": "마지막 기회, 그거슨 바로 디젠. \n\n\nThe last chance, that''s Degen.", "mentioned_profiles": []}}, "username": "chchn2", "power_badge": false, "display_name": "chchn2", "active_status": "inactive", "verifications": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "follower_count": 2913, "custody_address": "0xc6576a3e4a013dede662fad6f93ab4e99ed36f51", "following_count": 2536, "verified_addresses": {"eth_addresses": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-902649010/flac?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (846005, '0xc990c56e4c93460faf57032df6f795a2a5d412fa', 0, 1, '2024-05-07 05:15:51+00', 0, 1, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 367, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 334, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RYx8R\"}"}', 'sonata'), - (563890, '0x2dab4fedb07c966584f98381861d63a5cc8e114b', 111, 1, '2024-05-06 11:06:51+00', 0, 24, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 1990, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 1932, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/matthewbkk/joji-slow-dancing-in-the-dark-8d-audio?si=c433f821bd5c4a83811610af37e16f14&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (788783, '0xbf42e20f7c4fad7359eef46f121a148c00b3d636', 0, 1, '2024-05-07 03:00:49+00', 0, 3, '{"fid": 379673, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/796a10d9-f28f-464d-f026-dee963f63300/rectcrop3", "profile": {"bio": {"text": "Can win\nhttps://gonish77.tistory.com/", "mentioned_profiles": []}}, "username": "gonish77", "power_badge": false, "display_name": "Goni🍖🎩", "active_status": "inactive", "verifications": ["0x944de1cc15d4916f68bbb018c4ae274141904a56"], "follower_count": 1530, "custody_address": "0xec7a92edf2b97ee65a70cd4fc80967da829bbc9c", "following_count": 1388, "verified_addresses": {"eth_addresses": ["0x944de1cc15d4916f68bbb018c4ae274141904a56"], "sol_addresses": ["486rh1UqhE9C8CqKwZB8rkEoWyXvQMuvR2p55izmQsZi"]}}', '{"{\"url\":\"https://on.soundcloud.com/pB4Dg\"}"}', 'sonata'), - (784653, '0xd7a663798cb5ff95b539cb2f4daee7edcb546a05', 0, 1, '2024-05-07 02:14:18+00', 0, 0, '{"fid": 424774, "object": "user", "pfp_url": "https://i.imgur.com/hKlLOFJ.jpg", "profile": {"bio": {"text": "I am Japanese and would like to communicate with you all.\nAnime🍡, Manga📖, Art🎨, Trade💹, Flower🌸, Pokemon, ogiri\n▼father of 3 kids", "mentioned_profiles": []}}, "username": "kutakuta1001", "power_badge": false, "display_name": "kutakuta1001🍡💉", "active_status": "inactive", "verifications": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "follower_count": 1204, "custody_address": "0x815126572cd6e50d6dd08be2d5289d87f394e80e", "following_count": 1392, "verified_addresses": {"eth_addresses": ["0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e"], "sol_addresses": ["8vdRYGZvottLVRgUraBH2kikvLuaPypY7dweuBSon6BR"]}}', '{"{\"url\":\"https://soundcloud.com/isaiahau3/pursuing-my-true-self?in=isaiahau3/sets/persona-4-ost&si=8999a0c9bc3840c59922f73611d22545&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (784654, '0x25854919f5bb226ad1c44d2e7a88b646176a4fb8', 0, 1, '2024-05-07 02:14:28+00', 0, 0, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3100, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2302, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"감성크립고 점심선곡🌈🌈 Listen to Four Seasons by L2Share♫42 on #SoundCloud https://on.soundcloud.com/apfKv\"}"}', NULL), - (784576, '0xd0f7dbb5c5e9ff40d4c146669e4517ce6ba0c2b1', 0, 1, '2024-05-07 02:13:04+00', 0, 4, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍\n\nSuperRare sonata love", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1671, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1820, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-36339546/fgepkd1npulm?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (788037, '0xdaf480eacb901f359beb061fc24550a8ad789fc4', 0, 1, '2024-05-07 02:52:22+00', 0, 3, '{"fid": 400377, "object": "user", "pfp_url": "https://i.imgur.com/EkxQ6n2.jpg", "profile": {"bio": {"text": "I love Socola", "mentioned_profiles": []}}, "username": "socola", "power_badge": false, "display_name": "Socola", "active_status": "inactive", "verifications": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "follower_count": 1766, "custody_address": "0x5bcb1b7f6b604f60fb82b055ac587547bb50bd6a", "following_count": 3055, "verified_addresses": {"eth_addresses": ["0x19b4c89628ba0e2600d551ca9ab180b280389c3e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FJZaNZUUSy8T2rCJ7\"}"}', 'sonata'), - (859732, '0xa225b801ad55bfa1bf23096deee86af39af9eca0', 0, 1, '2024-05-07 05:34:21+00', 0, 7, '{"fid": 501896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23f227ba-6847-4352-22a5-017d03310900/rectcrop3", "profile": {"bio": {"text": "hi!! i look forward to your kind cooperation❣️", "mentioned_profiles": []}}, "username": "yuruyuru", "power_badge": false, "display_name": "yuruyuru", "active_status": "inactive", "verifications": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "follower_count": 1785, "custody_address": "0x2a9a19de7beb1ff14bad1f67ddaddd417f1077de", "following_count": 1384, "verified_addresses": {"eth_addresses": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BWa2HiU6WgDggD2r7\"}"}', NULL), - (890649, '0x83583e5e4bcfdd68a7a55cfe9d871bf6258380a1', 0, 1, '2024-05-07 06:36:13+00', 0, 1, '{"fid": 422947, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d0ead45-b2a4-4eb0-d599-9ee3018a1c00/rectcrop3", "profile": {"bio": {"text": "榰蟆摝蘑", "mentioned_profiles": []}}, "username": "songkoon", "power_badge": false, "display_name": "SONG0415🎩🍖", "active_status": "inactive", "verifications": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "follower_count": 1922, "custody_address": "0xf6a8e05780dd25addfffa7f4752da8529e0e6df4", "following_count": 1519, "verified_addresses": {"eth_addresses": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AVULSE4UcqpMVoWs7\"}"}', NULL), - (1117081, '0x2e536c6298c8b0cb252847b0549e3ea9997f93a5', 0, 1, '2024-05-07 17:38:59+00', 0, 2, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 593, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 240, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4aHN7SjWuXXG9fhpxGaME6?si=zhd6UkcRRpCdVuL-MvyQ5g\"}"}', 'bangers'), - (859724, '0x6c6787038065df2e12329b5e29354d6accf3a8f2', 0, 1, '2024-05-07 05:34:40+00', 0, 0, '{"fid": 500192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4ce5a3a6-a9f6-42b8-f629-f50bf9ac5800/original", "profile": {"bio": {"text": "I''m into a crypto\n", "mentioned_profiles": []}}, "username": "slimbear", "power_badge": false, "display_name": "magnet", "active_status": "inactive", "verifications": ["0x82209111e235613802e6a95f0a4371307408461a"], "follower_count": 133, "custody_address": "0x26a5a24457559d2daf1c38ea21d169f7dc112885", "following_count": 268, "verified_addresses": {"eth_addresses": ["0x82209111e235613802e6a95f0a4371307408461a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/odVTYsRRi8WvgqwS7\"}"}', NULL), - (774613, '0x00da4949e8af78aea90853b8baf20fa589f75e35', 0, 1, '2024-05-07 01:24:27+00', 0, 0, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 417, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 425, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7rBMZvgeWnOTHWUh3Pvw51?si=5770e014d85b4220\"}"}', 'albumoftheday'), - (964622, '0x2585198618defd866f868fe0bae8218c0e0d244f', 0, 1, '2024-05-07 09:30:25+00', 0, 0, '{"fid": 411804, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bc16fe2-19df-4232-7e22-e49900d54d00/original", "profile": {"bio": {"text": "Korean💕🎩🍖 \n재미있게 살아요~💕💕", "mentioned_profiles": []}}, "username": "stomach", "power_badge": false, "display_name": "Stomach🎩🍖🔮", "active_status": "inactive", "verifications": ["0x2cadb7fb5fc5eadfb167e8390b7aac15065b9317"], "follower_count": 2103, "custody_address": "0x8ec351fea7290d7544f7c4d0cc2e4389c380147d", "following_count": 1911, "verified_addresses": {"eth_addresses": ["0x2cadb7fb5fc5eadfb167e8390b7aac15065b9317"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XE1ycywEAsxzhRWGA\"}"}', NULL), - (881687, '0xf567972d34699d451439cfcbbcd58dcbccbe1fc6', 0, 1, '2024-05-07 06:20:39+00', 0, 3, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.!!", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 841, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 941, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/i6or7hubng2x/bigbang-mp3\"}"}', 'sonata'), - (888731, '0xad021ca264af4cb27296decc6e8ba4614887e7e2', 0, 1, '2024-05-07 06:32:22+00', 0, 1, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1496, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1424, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/aZPKH6UPBb9tTwe18\"}"}', 'sonata'), - (900243, '0x8648264dc32c049212eb61e5ee94996e2e7fae6c', 0, 1, '2024-05-07 06:48:36+00', 0, 0, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1286, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1144, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SHjaEhCfJmXaNt4h8\"}"}', NULL), - (788513, '0xd62ebffc337c2345e8b1d7dbcc4e773b471de6bb', 0, 1, '2024-05-07 02:57:16+00', 0, 2, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Can’t Save U by shawtyy on #SoundCloud https://on.soundcloud.com/bK6K6\"}"}', NULL), - (881301, '0x36950d89ac02d29db71e995b78954ecb6760aa21', 0, 1, '2024-05-07 06:15:17+00', 0, 5, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 2060, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2895, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Eitzo\"}"}', 'sonata'), - (845975, '0x1bfb12c481638a3a7d3e5e82d2157ab5a3e0cd0c', 0, 1, '2024-05-07 05:16:14+00', 0, 31, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 449, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 308, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rzWTY3Lx4xhX9wgk6\"}"}', 'sonata'), - (951716, '0xea3e0f55a07a94f7c6d4d3ad1d199c1d570dc8c8', 0, 1, '2024-05-07 08:58:21+00', 0, 3, '{"fid": 401805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baf0f02d-0a81-476e-78af-98c7aaa38000/original", "profile": {"bio": {"text": "Lovely 🤩\n대한민국 국민 🇰🇷 \n\n볼수록 매력있고 꽤 괜찮은사람.\n\n경제적으로 완전한 자유를 누리는 자.\n\n", "mentioned_profiles": []}}, "username": "peaceful-hj", "power_badge": false, "display_name": "Peaceful-hj", "active_status": "inactive", "verifications": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "follower_count": 1821, "custody_address": "0xe6520f1c42419d3526a8a812fe3850aaae6208ef", "following_count": 3260, "verified_addresses": {"eth_addresses": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ADxgP\"}"}', 'sonata'), - (984227, '0x204238dec6e9d8ca99923712f94eea3ed69d05d0', 0, 1, '2024-05-07 11:00:35+00', 0, 6, '{"fid": 500876, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c36cfae-2adf-4db7-bf7b-5182b4a56400/rectcrop3", "profile": {"bio": {"text": "Happy things happen everyday :-)", "mentioned_profiles": []}}, "username": "seayu", "power_badge": false, "display_name": "seayu", "active_status": "inactive", "verifications": ["0x577a72f341252a8704647be6f0b9d34e78f1b750"], "follower_count": 797, "custody_address": "0xec50194b1b3d5a5758e21e67dfe2725982b3547a", "following_count": 463, "verified_addresses": {"eth_addresses": ["0x577a72f341252a8704647be6f0b9d34e78f1b750"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dgZYouYwjzhacMkW7\"}"}', 'sonata'), - (901602, '0x9cc78c4b65ea54d0474fadd39b1eb6fc79cb50da', 1000, 1, '2024-05-07 06:50:26+00', 0, 2, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/odesza/late-night\"}"}', NULL), - (788509, '0x314da976d60279979224e54696be514761a86aaa', 0, 1, '2024-05-07 02:57:40+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to @chauiemade - TrapHouse by chauiemade on #SoundCloud https://on.soundcloud.com/tcCDH\"}"}', NULL), - (892817, '0x677e44737dfadaa4d39239b4972060815fa2ab2e', 0, 1, '2024-05-07 06:38:34+00', 0, 0, '{"fid": 503580, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01a53cc6-ebff-457d-f04e-6e57e58c9400/rectcrop3", "profile": {"bio": {"text": "맞팔! 언제나 환영입니다🌈🌈\n💯프로 달려갑니다❣️\n소통하면서 재미있게 지내봐요🥰\n", "mentioned_profiles": []}}, "username": "hyosuni", "power_badge": false, "display_name": "Hyosuni", "active_status": "inactive", "verifications": ["0x30fc654b4809a1cb1380225f66bce3a35c62a39b"], "follower_count": 313, "custody_address": "0xdf2dbd4dfb8b7cfe463da8dcde427910ffb2b782", "following_count": 454, "verified_addresses": {"eth_addresses": ["0x30fc654b4809a1cb1380225f66bce3a35c62a39b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1MRe7CNpQ4GNCeKv9\"}"}', 'sonata'), - (890648, '0x4fa8b5f09d525ad1661668f080a89fe03eec284b', 0, 1, '2024-05-07 06:34:02+00', 0, 1, '{"fid": 366037, "object": "user", "pfp_url": "https://i.imgur.com/1pGQsmg.jpg", "profile": {"bio": {"text": "Love nature 자연광\n맞팔환영\nhttps://zora.co/@jjaekani", "mentioned_profiles": []}}, "username": "jjaekani", "power_badge": false, "display_name": "jjaekani", "active_status": "inactive", "verifications": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "follower_count": 756, "custody_address": "0x02dd0d4a46042be8548d3a06680448c925e7e487", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KD5gXg3XvWtc2beW8\"}"}', 'sonata'), - (837587, '0xd2533942233f7e38853000b677908d721249edcd', 0, 1, '2024-05-07 04:36:22+00', 0, 0, '{"fid": 286447, "object": "user", "pfp_url": "https://i.imgur.com/xwCv8ft.gif", "profile": {"bio": {"text": "비관론자\n\n", "mentioned_profiles": []}}, "username": "pessimist", "power_badge": false, "display_name": "pessimist", "active_status": "inactive", "verifications": ["0xbcbb0a171beabbff0bd3f96c5abe5c6c5889f766"], "follower_count": 1315, "custody_address": "0x4ff526a6a8a1bc6a6d86108769c21ea063c9a7ed", "following_count": 1311, "verified_addresses": {"eth_addresses": ["0xbcbb0a171beabbff0bd3f96c5abe5c6c5889f766"], "sol_addresses": ["3kQZCvbtxEgifJiGEWo8aNf54xAiMNThvWnXAxNuZB2M"]}}', '{"{\"url\":\"https://soundcloud.com/s1ivnsfzoxui/2005a?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (873352, '0xe6cfa13a3d6eb48ecf49dc6551eb98744916f0ea', 0, 1, '2024-05-07 05:57:32+00', 0, 1, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 589, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 712, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/18BSUqFUAV85J8MW9\"}"}', NULL), - (881055, '0x9104c36442bfa8f58b54835c241a6c78c1d026f1', 0, 1, '2024-05-07 06:12:33+00', 0, 0, '{"fid": 416877, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffabf3c0-2b27-42f5-0428-137c31585e00/rectcrop3", "profile": {"bio": {"text": "AI Developer/육아/Crypto Lover !!\n좀 늦더라고 맞팔/반사 무조건 갑니당~\n한국어/日本語/中文/English 👌", "mentioned_profiles": []}}, "username": "dalpangpang", "power_badge": false, "display_name": "Dalpangang🎩", "active_status": "inactive", "verifications": ["0xaecef32d4df9c19de2d9cd202b65bac3f8dacdf4"], "follower_count": 1602, "custody_address": "0x2c6f6375608bf2b253d800ba51ec92411b9f35a4", "following_count": 1822, "verified_addresses": {"eth_addresses": ["0xaecef32d4df9c19de2d9cd202b65bac3f8dacdf4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xjydDMBVRQBbgvjL7\"}"}', NULL), - (902467, '0xf2f00bf9fe40c2c0615f615c7c701b596ae3cec2', 0, 1, '2024-05-07 06:50:55+00', 0, 2, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2780, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2486, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/muhammad-hassan-766019970/jungkook-standing-next-to-you\"}"}', 'sonata'), - (788510, '0x93d17c8f480372371a70823e18e2fc03d1e6cd5c', 0, 1, '2024-05-07 02:56:56+00', 0, 1, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to The Same As Before by aidan vaughn on #SoundCloud https://on.soundcloud.com/UFu55\"}"}', NULL), - (860378, '0x3f92d8cd69132468b75e4530e8c7ebbdc44d1064', 0, 1, '2024-05-07 05:35:03+00', 0, 0, '{"fid": 442638, "object": "user", "pfp_url": "https://i.imgur.com/D0GTBF4.jpg", "profile": {"bio": {"text": "\nI’m in Degen, Ton ecosys ✈️\ntalking to crypto, life\n🫡\n(Sometimes the reaction can be slow, please understand)\n\n전) 여의도 직장인", "mentioned_profiles": []}}, "username": "sonorus", "power_badge": false, "display_name": "sonorus", "active_status": "inactive", "verifications": ["0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb"], "follower_count": 1385, "custody_address": "0xdeae3f26f7ec54cd017e976d9457075383360d87", "following_count": 1691, "verified_addresses": {"eth_addresses": ["0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb", "0x99567e06b166c61153afca62bce095db5ffe64eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ry7pCLnaCGprFXyg8\"}"}', 'sonata'), - (788777, '0xb164c6d2ea4113a893ccc3af743cd8c1d608e65e', 0, 1, '2024-05-07 03:00:36+00', 0, 2, '{"fid": 472997, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ2i1YDjqg6f16wUJgNpqTqrtNQyUa18wMNC6B6uXNGmD?filename=KakaoTalk_20240419_025514877.png", "profile": {"bio": {"text": "It''s a place where I share my daily life I want to be close with you.Come and see me often Have a nice day!", "mentioned_profiles": []}}, "username": "jinkyo", "power_badge": false, "display_name": " Jaykay", "active_status": "inactive", "verifications": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "follower_count": 3019, "custody_address": "0x9359eee17224661c3bc0df15f8f3367ed0f1884c", "following_count": 2971, "verified_addresses": {"eth_addresses": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ggchile_multimedia/girls-generation-genie?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (845978, '0x84c75532452b0cdee52aeb6cf619e03ec057a4fe', 0, 1, '2024-05-07 05:15:24+00', 0, 1, '{"fid": 421703, "object": "user", "pfp_url": "https://i.imgur.com/NfwQLaI.jpg", "profile": {"bio": {"text": "investor💎\ntrader📊\nComputer engineering👨‍💻\ngamer🎮\nNFT lover 🖼️", "mentioned_profiles": []}}, "username": "1amirhosein1", "power_badge": false, "display_name": "Amirhosein🎩", "active_status": "inactive", "verifications": ["0x0d6b62cca88a61a2e1f092c243ed01570ab2c08a"], "follower_count": 1466, "custody_address": "0x836dfc1b58003a3153c188d3e08e681ab29ac74d", "following_count": 1069, "verified_addresses": {"eth_addresses": ["0x0d6b62cca88a61a2e1f092c243ed01570ab2c08a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imaginedragons/bones\"}"}', NULL), - (901601, '0x403173199977961c5fcd24976b2f2f84a82a9618', 0, 1, '2024-05-07 06:50:31+00', 0, 3, '{"fid": 475621, "object": "user", "pfp_url": "https://i.imgur.com/iDPLKG6.jpg", "profile": {"bio": {"text": "모두부자됩시다 퐈이아 무반", "mentioned_profiles": []}}, "username": "thingkkk", "power_badge": false, "display_name": "ThinGKKK", "active_status": "inactive", "verifications": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "follower_count": 3157, "custody_address": "0xc33e161c1715926354fe84e9e97965a5c34f0049", "following_count": 3478, "verified_addresses": {"eth_addresses": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vjYyLAb8uuU2mfk78\"}"}', 'sonata'), - (881694, '0x3a90791e3a4a69f376403d9808c7b0129e577186', 0, 1, '2024-05-07 06:20:44+00', 0, 7, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 202, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 190, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CZGuU1UXiSqDG1fv5\"}"}', 'sonata'), - (1158756, '0xa4da505667a013686ef0219bf412355ddb7537c8', 0, 1, '2024-05-08 04:27:33+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 520, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1PMXpTPJfh3ViK8PMZ9ZnY?si=lOEdTTqqRfK47Njx4HbyxA&context=spotify%3Aalbum%3A2811CkGSYR9SUtIoFWWiTk\"}"}', NULL), - (790401, '0x9bed1de6d88bbcd7709b81d2e4c00f286a671470', 0, 1, '2024-05-07 03:05:42+00', 0, 2, '{"fid": 498500, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4e8f4c79-a285-4bbb-27e9-f25b12e65800/rectcrop3", "profile": {"bio": {"text": "I like learning new things", "mentioned_profiles": []}}, "username": "wikisan", "power_badge": false, "display_name": "Angry Bird 🎩", "active_status": "inactive", "verifications": ["0x2741c5ba9a49eb3bc7ca6933c73c30393a8b34d8"], "follower_count": 998, "custody_address": "0x261c03211f71e3cbfcfb311c6a1a79cb3610cee1", "following_count": 1798, "verified_addresses": {"eth_addresses": ["0x2741c5ba9a49eb3bc7ca6933c73c30393a8b34d8"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Yankı by Simge on #SoundCloud https://on.soundcloud.com/Wm8c8\"}"}', NULL), - (837589, '0xc1599b9df7b542a461c83f81a6a68b091bfcb1c6', 0, 1, '2024-05-07 04:35:38+00', 0, 25, '{"fid": 484256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58979a6c-5974-4eb5-0d8f-d4ef62071f00/rectcrop3", "profile": {"bio": {"text": "한다면 하는 남자 real 오또코", "mentioned_profiles": []}}, "username": "puffmommy", "power_badge": false, "display_name": "ddogas", "active_status": "inactive", "verifications": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "follower_count": 2541, "custody_address": "0xa3e79ae97323b1c623fc2bd636ebec9bc5e418b6", "following_count": 2434, "verified_addresses": {"eth_addresses": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-838571425/shining-road-sultan-of-the-disco?si=3559780b05494866b6d165eb3ffd5a61&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (874497, '0xb655537d84fb66df5784127366093b7c64e35e93', 0, 1, '2024-05-07 05:59:20+00', 0, 3, '{"fid": 469005, "object": "user", "pfp_url": "https://i.imgur.com/JSRHEF3.jpg", "profile": {"bio": {"text": "반가워요 👑👑👑\n우리소통하며지내요 ʕ·͡ˑ·ཻʔ \n선팔/맞팔/좋아요/댓글/반사", "mentioned_profiles": []}}, "username": "sodaling", "power_badge": false, "display_name": "Sodaling", "active_status": "inactive", "verifications": ["0x3f853e2c93daac0fdb23b2d0464533ab7467e7bb"], "follower_count": 1368, "custody_address": "0xb190a7840ec4b23bfde4b505c2f606828bce375a", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x3f853e2c93daac0fdb23b2d0464533ab7467e7bb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4EUx1QT6nzoz4fL38\"}"}', 'sonata'), - (860402, '0x3c2946761ca30a2178073c1025a26421626c4c80', 0, 1, '2024-05-07 05:35:17+00', 0, 1, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1705, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1193, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aKNdDxjhciBU8Diu6\"}"}', 'sonata'), - (766584, '0x8665e4c70b9631599b77e58963c9c368cd93433f', 0, 1, '2024-05-07 00:39:44+00', 0, 0, '{"fid": 450453, "object": "user", "pfp_url": "https://i.imgur.com/8MbkP9D.jpg", "profile": {"bio": {"text": "#NFTmusic & #AI Newsletter collabs and more | \n\nPress, PR & Marketing: Web3Metal@gmail.com", "mentioned_profiles": []}}, "username": "web3metal", "power_badge": false, "display_name": "WEB3 METAL 🤘", "active_status": "inactive", "verifications": ["0x7df4e62ce78d4b32b8d7d4a3b5ef2964579d1c53"], "follower_count": 6, "custody_address": "0xafc0c5b6bcba152872b08668e39264250110c0e2", "following_count": 17, "verified_addresses": {"eth_addresses": ["0x7df4e62ce78d4b32b8d7d4a3b5ef2964579d1c53"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b31cb25-d01d-48f1-b3c1-5596690eae00/original\"}","{\"url\":\"https://www.sound.xyz/web3metal/my-black-metal-baby?referral_source=link\"}"}', 'sonata'), - (881666, '0xa59127184f67d8403aaa339842c50861a1c2fd75', 0, 1, '2024-05-07 06:20:04+00', 0, 2, '{"fid": 422947, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d0ead45-b2a4-4eb0-d599-9ee3018a1c00/rectcrop3", "profile": {"bio": {"text": "榰蟆摝蘑", "mentioned_profiles": []}}, "username": "songkoon", "power_badge": false, "display_name": "SONG0415🎩🍖", "active_status": "inactive", "verifications": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "follower_count": 1922, "custody_address": "0xf6a8e05780dd25addfffa7f4752da8529e0e6df4", "following_count": 1519, "verified_addresses": {"eth_addresses": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9B9cdaRuvXiydxGi8\"}"}', NULL), - (107, '0xbbac4c9481051ec43f7edef034f5f24e59646869', 5613, 1, '2024-04-30 17:38:03+00', 407, 25, '{"fid": 5860, "object": "user", "pfp_url": "https://i.imgur.com/fuYB0LT.jpg", "profile": {"bio": {"text": "/outcasts, abandonedcuriosities.com", "mentioned_profiles": []}}, "username": "sum", "power_badge": true, "display_name": "sumit 📚", "active_status": "inactive", "verifications": ["0xf005bc919b57dc1a95070a614c0d51a2897d11ff"], "follower_count": 19183, "custody_address": "0x318e7aea9a79d9153e82f228361ba21e3a4fb314", "following_count": 41, "verified_addresses": {"eth_addresses": ["0xf005bc919b57dc1a95070a614c0d51a2897d11ff"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2c7c5de-c651-4e29-b07f-fa1413095700/original\"}","{\"url\":\"https://www.sound.xyz/gino/speed\"}"}', NULL), - (860414, '0x4b331b86e4ab295916d54a5ff119c33277059e73', 0, 1, '2024-05-07 05:35:07+00', 0, 2, '{"fid": 500371, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7acbb460-b029-47f7-a44d-549b4b8eeb00/rectcrop3", "profile": {"bio": {"text": "Warpcast is good🌸\nLet''s go together🩵\n슈캐 신입 인사드려용", "mentioned_profiles": []}}, "username": "10poon", "power_badge": false, "display_name": "🌈 10poon🎩", "active_status": "inactive", "verifications": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "follower_count": 1768, "custody_address": "0xc4594cf253dcfd3d97b1d03b4045278b7b64bfa7", "following_count": 2799, "verified_addresses": {"eth_addresses": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KrbUdb6yzPSxwMjv6\"}"}', 'sonata'), - (837590, '0xad8f023548a1f6dcfdd8cd0b1e95a385149b4071', 0, 1, '2024-05-07 04:36:48+00', 0, 2, '{"fid": 503150, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f0f973c-8cd9-4d59-700f-b1271961aa00/rectcrop3", "profile": {"bio": {"text": "I like traveling and music.", "mentioned_profiles": []}}, "username": "athenablessing", "power_badge": false, "display_name": "BOBBY", "active_status": "inactive", "verifications": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "follower_count": 366, "custody_address": "0xe57547012f3c9ab59e3ed21cf30f5a0cd6afe3f5", "following_count": 373, "verified_addresses": {"eth_addresses": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eWQPZqXyVo87nVJ68\"}"}', 'sonata'), - (788519, '0x7824a359744173de72c9f305b03d92002dc4bbf5', 0, 1, '2024-05-07 02:57:32+00', 0, 3, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3121, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2680, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to RajahWild, Sp!da - Call Me by New Era on #SoundCloud https://on.soundcloud.com/H8qcg\"}"}', NULL), - (901597, '0x0842878e7a76a9a577b70d0e0bbe045a015d1c4b', 0, 1, '2024-05-07 06:50:08+00', 0, 0, '{"fid": 422947, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d0ead45-b2a4-4eb0-d599-9ee3018a1c00/rectcrop3", "profile": {"bio": {"text": "榰蟆摝蘑", "mentioned_profiles": []}}, "username": "songkoon", "power_badge": false, "display_name": "SONG0415🎩🍖", "active_status": "inactive", "verifications": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "follower_count": 1922, "custody_address": "0xf6a8e05780dd25addfffa7f4752da8529e0e6df4", "following_count": 1519, "verified_addresses": {"eth_addresses": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/N4TkbkPVnMxNbn8C8\"}"}', NULL), - (881707, '0x0fa0496b1c68a1fb6eb0d5cd246fb0eb17a47372', 0, 1, '2024-05-07 06:20:50+00', 0, 1, '{"fid": 424395, "object": "user", "pfp_url": "https://i.imgur.com/MHGJpEw.jpg", "profile": {"bio": {"text": "I’m a duelist", "mentioned_profiles": []}}, "username": "duelist", "power_badge": false, "display_name": "Duelist", "active_status": "inactive", "verifications": ["0x0338d0e211da8565b0ac507c1d83a2bcdc157468"], "follower_count": 733, "custody_address": "0x266ee1c52b51356a42479ad9075885598770a88a", "following_count": 706, "verified_addresses": {"eth_addresses": ["0x0338d0e211da8565b0ac507c1d83a2bcdc157468"], "sol_addresses": ["95cbtapVKe6f4g6mDfPNuc3K9XhSBEFQiKfUcnGG69gN"]}}', '{"{\"url\":\"https://soundcloud.com/elpares-channel-elpare/yorushika-n-buna-official-say-to\"}"}', NULL), - (1173445, '0x62895f99b87a4a4de51b32788ff98a2bfd1c5bc7', 400, 1, '2024-05-15 23:46:04+00', 0, 2, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 555, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 140, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0wztpcU585JTnviRQwftah?si=e2965ac2385441c8\"}"}', NULL), - (924044, '0xc1b774a9bdbcb6110af8f7c938bdff343ed0fde7', 0, 1, '2024-05-07 07:35:52+00', 0, 1, '{"fid": 508896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59c56aa-6d67-4854-c474-9aea14fe5400/rectcrop3", "profile": {"bio": {"text": "I love cat, people and wow things🫶🏻\nLet''s enjoy it together!", "mentioned_profiles": []}}, "username": "!508896", "power_badge": false, "display_name": "tteriring", "active_status": "inactive", "verifications": ["0xbcfec3e7c5bdc063f106fbe663c2c57e57f3c710"], "follower_count": 297, "custody_address": "0xa0dbafc778aaa7809a18aec5f4aeb3ed2366f9ac", "following_count": 526, "verified_addresses": {"eth_addresses": ["0xbcfec3e7c5bdc063f106fbe663c2c57e57f3c710"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7cmByg2T5rrg73U58\"}"}', 'sonata'), - (846558, '0x9b7f5be813e6160bacc9b34d11873dd930c3b4f9', 0, 1, '2024-05-07 05:18:11+00', 0, 4, '{"fid": 452471, "object": "user", "pfp_url": "https://i.imgur.com/aZC8Y3z.jpg", "profile": {"bio": {"text": "함께해요!!\n\n화이팅입니다!!", "mentioned_profiles": []}}, "username": "tedkwon", "power_badge": false, "display_name": "tedkwon", "active_status": "inactive", "verifications": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "follower_count": 1031, "custody_address": "0x72dadb57669d45eb0fcf52c5c277d86c3998ae48", "following_count": 1096, "verified_addresses": {"eth_addresses": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LBWfnDLnHYphHAnv5\"}"}', 'sonata'), - (1173350, '0x2ff25dc6e5e1528f216a18a74fb3d75afb2e298b', 4000, 1, '2024-05-15 21:02:32+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3WClFDcNSivwJdPPh8f1Pk?si=XEMf8ozbQoWHIBcdMzx3LA\"}"}', NULL), - (860420, '0xd081b5476cf4966a9f08c57d4bac7d7ddaa42af7', 0, 1, '2024-05-07 05:35:07+00', 0, 1, '{"fid": 290288, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmf9bNFBZS1fC5P5h3XGoEpW7J3Ct9rN5ft543tfcDnhme?filename=KakaoTalk_20240427_202428375_05.jpg", "profile": {"bio": {"text": "BOS^^", "mentioned_profiles": []}}, "username": "jiyujeong", "power_badge": false, "display_name": "BOS", "active_status": "inactive", "verifications": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "follower_count": 2307, "custody_address": "0xf9c173d7657ad1969ee2b93d87b0ff607364ab69", "following_count": 2800, "verified_addresses": {"eth_addresses": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-939025781/huyrjbgc5h0s?si=fda81de49bd143c5bdd14cc746fde0f1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (790413, '0xe75211bdcf7053a87c2ade57ade85abed04fa169', 0, 1, '2024-05-07 03:04:30+00', 0, 0, '{"fid": 500261, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d93120e4-9ca4-4c3c-29fd-3a268ab91f00/rectcrop3", "profile": {"bio": {"text": "Im actor is US, I will learn about America and talk about dramas, movies, and my daily life\n❤️US, Korea", "mentioned_profiles": []}}, "username": "actors-review", "power_badge": false, "display_name": "actor-review1", "active_status": "inactive", "verifications": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "follower_count": 1144, "custody_address": "0x99c7217798a58ce8ee28769d93c223d5de34c245", "following_count": 1560, "verified_addresses": {"eth_addresses": ["0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pyG1ZZxySjMTYhtDA\"}"}', 'sonata'), - (755510, '0x158e7d9b5a3336189b5507ae9231bc845ed8fe5b', 0, 1, '2024-05-06 23:51:16+00', 0, 4, '{"fid": 16236, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/ea436138ed433b0e2aecf47bdabf9f19.png?w=500&auto=format", "profile": {"bio": {"text": "🎛️Experimental electronic #Web3Music #MusicNFT | 🤝🏽 Cultural management | 🖤 @sitiocaos cofounder | 🌿 sttsm.lens", "mentioned_profiles": []}}, "username": "sttsm", "power_badge": false, "display_name": "STTSM", "active_status": "inactive", "verifications": ["0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e"], "follower_count": 196, "custody_address": "0x995233179b880dee23002446103923bf18c65739", "following_count": 542, "verified_addresses": {"eth_addresses": ["0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/sttsm/sentido-ft-yoshiro-mare?referral_source=link\"}"}', NULL), - (846578, '0xf737b4eef8634675d2be5f7dee1de452b99032d1', 0, 1, '2024-05-07 05:17:42+00', 0, 2, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3435, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KSNXtbSF8ZZRZNEDA\"}"}', 'sonata'), - (902477, '0x75be716aaff8843efd8dbf6215357e9bda2906c3', 0, 1, '2024-05-07 06:50:52+00', 0, 0, '{"fid": 404680, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8305e183-56bb-4f14-232b-15286879e900/original", "profile": {"bio": {"text": "Oh yeah, something big is coming👀\n😉", "mentioned_profiles": []}}, "username": "muhmad23", "power_badge": false, "display_name": "Muhammad", "active_status": "inactive", "verifications": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "follower_count": 2255, "custody_address": "0xf06de14417da51b9605b52a2366b7da27cf4c147", "following_count": 2190, "verified_addresses": {"eth_addresses": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbo/resenaren?utm_source=floornfts.io\"}"}', NULL), - (923951, '0x8efc5ac7e4ed9bdd030461f69bfbf772b126aec7', 0, 1, '2024-05-07 07:34:01+00', 0, 0, '{"fid": 489893, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acfbf5f1-9b73-4e1e-3628-af1def309a00/rectcrop3", "profile": {"bio": {"text": "슈캐💛워캐💛Degen💛🎩💛", "mentioned_profiles": []}}, "username": "lovemango", "power_badge": false, "display_name": "Mango", "active_status": "inactive", "verifications": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "follower_count": 1535, "custody_address": "0xe2b9accc46f0747c26f07483ea17ab9fd21bd965", "following_count": 1707, "verified_addresses": {"eth_addresses": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NoBKAuzfdjvDtWYd6\"}"}', NULL), - (900663, '0x982262a33f099beaf911e662b1e679ca8c12d6ff', 0, 1, '2024-05-07 06:48:59+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1535, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mossionpop/jay-park-joah?si=c404585c87a949e48c8826aef2f7400e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (846582, '0x7d1735d64585d112a54454387493dd511b695621', 0, 1, '2024-05-07 05:17:31+00', 0, 3, '{"fid": 471939, "object": "user", "pfp_url": "https://i.imgur.com/2W62eK2.jpg", "profile": {"bio": {"text": "F4F 뉴비라 팔로우 쩜요\n비투카 화이팅!!", "mentioned_profiles": []}}, "username": "mini486", "power_badge": false, "display_name": "Mini", "active_status": "inactive", "verifications": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "follower_count": 2125, "custody_address": "0xeba06dcd2197f32a581434165b801a9401c395c4", "following_count": 2093, "verified_addresses": {"eth_addresses": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UKP7H\"}"}', 'sonata'), - (861576, '0xebccbf2579dd48f04ed23592a18db65639f14ad9', 0, 1, '2024-05-07 05:36:41+00', 0, 3, '{"fid": 290288, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmf9bNFBZS1fC5P5h3XGoEpW7J3Ct9rN5ft543tfcDnhme?filename=KakaoTalk_20240427_202428375_05.jpg", "profile": {"bio": {"text": "BOS^^", "mentioned_profiles": []}}, "username": "jiyujeong", "power_badge": false, "display_name": "BOS", "active_status": "inactive", "verifications": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "follower_count": 2307, "custody_address": "0xf9c173d7657ad1969ee2b93d87b0ff607364ab69", "following_count": 2800, "verified_addresses": {"eth_addresses": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1253-12/voorpuceqkuz?si=fd9ab9051cf74e68b9e233de135c449b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (900664, '0x643edcf9a2bada54803e6ad3052a0c64df0dd2ad', 0, 1, '2024-05-07 06:48:46+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1535, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lifespasscode005/jay-park-all-i-wanna-do-k-feat-hoody-loco?si=fbbdd6dfcd5848ddb555a218caaaf398&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (837588, '0xc653c9126af99c186729368b34a47f4bd0e5f0c4', 0, 1, '2024-05-07 04:36:13+00', 0, 0, '{"fid": 453791, "object": "user", "pfp_url": "https://i.imgur.com/g0L7cgm.jpg", "profile": {"bio": {"text": "I am a kind girl, I love sports and animals and I like horse riding", "mentioned_profiles": []}}, "username": "hghadri58155", "power_badge": false, "display_name": "Hadis ", "active_status": "inactive", "verifications": ["0x037f1c446ce82382a9491ede5b125c6dac160550"], "follower_count": 630, "custody_address": "0xff3832c48f227132210352fef9de47b832d2c72a", "following_count": 2165, "verified_addresses": {"eth_addresses": ["0x037f1c446ce82382a9491ede5b125c6dac160550"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZXBS79Lf6omqBWpT9\"}"}', NULL), - (881302, '0xdf752f98e1f58ca147347f22d56546803830048b', 0, 1, '2024-05-07 06:15:17+00', 0, 1, '{"fid": 500238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a553df2e-a175-43c1-1ee0-71e13aed7e00/original", "profile": {"bio": {"text": "i love degen&warpcast😍\n\nSuperRare sonata love", "mentioned_profiles": []}}, "username": "kyi1102", "power_badge": false, "display_name": "Kook🎩🍖", "active_status": "inactive", "verifications": ["0x72398167e2c65261083226591a13e72fee4791b4"], "follower_count": 1678, "custody_address": "0x6494bfe31a6141b9c08f470fc98be2fb5cf08438", "following_count": 1823, "verified_addresses": {"eth_addresses": ["0x72398167e2c65261083226591a13e72fee4791b4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JnTSgcctrbHGM6Pz8\"}"}', 'sonata'), - (901637, '0xb66225157e0f7675097d253b92596aa11cd7ad5c', 0, 1, '2024-05-07 06:50:44+00', 0, 2, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thehails/younger\"}"}', NULL), - (881708, '0xd416082fc2486582662bec731f482db5394314da', 0, 1, '2024-05-07 06:21:19+00', 0, 5, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4972, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2468, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hyzyttyxxglp/djseok-klubb-bumping-korea-vol62?si=84efedc8acf84a50a87dea69b6ee3738&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (874494, '0x62094a3375b53189299e090212daae11c81e2454', 0, 1, '2024-05-07 05:59:41+00', 0, 4, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "follower_count": 696, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 653, "verified_addresses": {"eth_addresses": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3n6tXOLOrgMiXTAsTBNWDj?si=edc550f18fec4cbc\"}"}', 'sonata'), - (1173320, '0x14269a6aa91f02402559842efb0ac2f52d08bbbf', 0, 1, '2024-05-15 19:18:18+00', 0, 2, '{"fid": 11835, "object": "user", "pfp_url": "https://i.seadn.io/gae/WlJtqA99vlFpCVgqgHR5FCkWrK5UIeDE51-pI0hDsKY5PtFUu3M3QAEebz5VjBl0vPDRrr36XS9yzvLoiSkIZrJV?w=500&auto=format", "profile": {"bio": {"text": "Cofounder @openpool (openpool.co), fan of burritos, skiing, the Nets, and making crypto more accessible", "mentioned_profiles": []}}, "username": "joetoledano", "power_badge": true, "display_name": "Joe Toledano", "active_status": "inactive", "verifications": ["0xaacd601c5377ddf3f1f41eb1758ba0d2fa2b39bd"], "follower_count": 1014, "custody_address": "0x1295e0b82955ae01408f8ad8aa1a0b313c3da759", "following_count": 936, "verified_addresses": {"eth_addresses": ["0xaacd601c5377ddf3f1f41eb1758ba0d2fa2b39bd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5HFvMPiNjclAq8DbEAPWMw?si=3DsTzxf3Q0Wi4tXZWjaDrg&context=spotify%3Aplaylist%3A37i9dQZF1E8JiUkUbiCUHR\"}"}', NULL), - (789004, '0x363490607db5360887ca89a8ee6a3845c30f75a4', 0, 1, '2024-05-07 03:03:13+00', 0, 3, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 2030, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2868, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Pk59kndJMWCJ2FRt5\"}"}', 'sonata'), - (875072, '0x8e42424f5fd936b6be0e79d3aebfee95e7ff338c', 0, 1, '2024-05-07 06:00:33+00', 0, 2, '{"fid": 449776, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1af8cdbc-55ea-4cab-b8a3-4151d75d7100/rectcrop3", "profile": {"bio": {"text": "Active in the field of crypto", "mentioned_profiles": []}}, "username": "hadiakbari", "power_badge": false, "display_name": "Hadiakbari🎩 🦕", "active_status": "inactive", "verifications": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "follower_count": 1061, "custody_address": "0x340b33d619dfb09ceb791810ffbe3db592a83414", "following_count": 1366, "verified_addresses": {"eth_addresses": ["0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Bir Sebebi Var (feat. Ozan Doğulu) by Ebru Gündeş on #SoundCloud https://on.soundcloud.com/H8xTc\"}"}', NULL), - (886340, '0x64bedc62657a3537e647dd0317a236a3c8167bf5', 0, 1, '2024-05-07 06:28:42+00', 0, 1, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2156, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1880, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gJfYuU8ZM1om8LJh8\"}"}', NULL), - (881716, '0x10fdd2fc561ee45506ae29ce69fc3ff53242ec4c', 0, 1, '2024-05-07 06:20:53+00', 0, 1, '{"fid": 420117, "object": "user", "pfp_url": "https://i.imgur.com/FtVbAqA.jpg", "profile": {"bio": {"text": "Hi. Have a happy day😀 I want to make a lot of friends😁 ❤️ 초음속 반사🌼 숙제는 미루지않아요 👏 ", "mentioned_profiles": []}}, "username": "elly29", "power_badge": false, "display_name": "Elly", "active_status": "inactive", "verifications": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "follower_count": 2294, "custody_address": "0x9d06907bfcb51d4232ff86c1eb836d8cd00d101f", "following_count": 2301, "verified_addresses": {"eth_addresses": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7MvkY\"}"}', 'sonata'), - (902465, '0x65f04de348b1cd4324b8ce738b5ecbf8db5bdf59', 0, 1, '2024-05-07 06:51:23+00', 0, 3, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iamtheelephante/elephante-plans-feat-brandyn-burnette\"}"}', NULL), - (1018205, '0xa6818e009274b1a9c99f490c3603553656f92967', 0, 1, '2024-05-07 12:49:35+00', 0, 1, '{"fid": 416138, "object": "user", "pfp_url": "https://i.imgur.com/bMnfMZq.jpg", "profile": {"bio": {"text": "F4F!! hello.Welcome to follow!! #맞팔", "mentioned_profiles": []}}, "username": "purm", "power_badge": false, "display_name": "MUN", "active_status": "inactive", "verifications": ["0x4f559820d481d75d9d0ad44046ca45a0b481fbc0"], "follower_count": 2227, "custody_address": "0xc555d118e3cc4f6aac3470e443e44b0611dd2c27", "following_count": 2063, "verified_addresses": {"eth_addresses": ["0x4f559820d481d75d9d0ad44046ca45a0b481fbc0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/j6jrbaftqobu/mp3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (881392, '0xfaa206c53970c4fab2469f2098e84eb6a75b4234', 1505, 1, '2024-05-07 06:16:30+00', 443, 161, '{"fid": 448399, "object": "user", "pfp_url": "https://i.imgur.com/COsaKWy.jpg", "profile": {"bio": {"text": "디젠1달러가즈아$ 선팔.맞팔 끝까지갑니다.좋아요 리퀘는 사랑입니다.", "mentioned_profiles": []}}, "username": "daddyman", "power_badge": false, "display_name": "Daddyman", "active_status": "inactive", "verifications": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "follower_count": 1616, "custody_address": "0x6d8774f82e69b17974493a324ec868b6ac7514a6", "following_count": 1307, "verified_addresses": {"eth_addresses": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NyhKt\"}"}', 'sonata'), - (794180, '0x29f68a9be3ac5e9e77a5e0d857540b7f5612555c', 0, 1, '2024-05-07 03:11:50+00', 0, 4, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.!!", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 834, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 937, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rmxxme/axmxyvpenrah\"}"}', 'sonata'), - (797787, '0x63dfde98e1dff58560b66403b7e0940d473d1db5', 0, 1, '2024-05-07 03:19:38+00', 0, 4, '{"fid": 503140, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2de648f-2d6d-4a8b-61c3-f84fe3ecb200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mtm", "power_badge": false, "display_name": "Khgoo", "active_status": "inactive", "verifications": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "follower_count": 1349, "custody_address": "0xb9b977dc77ca2b13c12603793f1d7ef9e8739f6b", "following_count": 1593, "verified_addresses": {"eth_addresses": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3QRej\"}"}', 'sonata'), - (861580, '0xac571a5e8df37298517aaae10f52f796a02269cf', 0, 1, '2024-05-07 05:36:13+00', 0, 0, '{"fid": 226234, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51ab0322-aa71-4855-3f20-31070f04bb00/rectcrop3", "profile": {"bio": {"text": "Ai artist stranded on the planet surface taking poison couldn’t be avoided. https://pixelgravyproductions.blog/", "mentioned_profiles": []}}, "username": "jonrt", "power_badge": false, "display_name": "Pixel Gravy 🎩🍖", "active_status": "inactive", "verifications": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "follower_count": 231, "custody_address": "0xbec78c6235cf3d17accc444d1a1fa073c19bc1c5", "following_count": 220, "verified_addresses": {"eth_addresses": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "sol_addresses": ["A8LbzGsRzuXsCAQajZc557FSCN7ysNpdAVnGZjAKW6W7"]}}', '{"{\"url\":\"https://soundcloud.com/bleep-bloop/fukaswisherremix?si=1236c28c3c8e4d16b11f0130e1ac5735&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (794173, '0x1918f348dbde6aab01e0e88db3d3e9175cd012cc', 0, 1, '2024-05-07 03:12:13+00', 0, 1, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 799, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1550, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Fp4tb\"}"}', 'sonata'), - (875480, '0x8182292f9c82d9983381e72f16aa431b8dd41225', 0, 1, '2024-05-07 06:01:36+00', 0, 0, '{"fid": 442770, "object": "user", "pfp_url": "https://i.imgur.com/Jdm5FMW.jpg", "profile": {"bio": {"text": "NFT Creater です\n\nXもよろしくね\n\nhttps://twitter.com/CryptoEggmen\n\nNFTはこちらhttps://linktr.ee/cryptoeggmen", "mentioned_profiles": []}}, "username": "eggcooker", "power_badge": false, "display_name": "EggCooker", "active_status": "inactive", "verifications": ["0x8e19969e14cb17bc4fe528073cb3b1683cd74740"], "follower_count": 1009, "custody_address": "0xd5f697c6ce72a946dba2932f57e73a8d3ba81ecc", "following_count": 1052, "verified_addresses": {"eth_addresses": ["0x8e19969e14cb17bc4fe528073cb3b1683cd74740"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-616272695/sets/japanese-80s-funk-city-pop-1?si=3d1c86ca087e44eda737a19293898c9a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (888719, '0x35a57f3ce29485be2db3050dd09af6939f18a1ef', 0, 1, '2024-05-07 06:33:02+00', 0, 1, '{"fid": 422947, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d0ead45-b2a4-4eb0-d599-9ee3018a1c00/rectcrop3", "profile": {"bio": {"text": "榰蟆摝蘑", "mentioned_profiles": []}}, "username": "songkoon", "power_badge": false, "display_name": "SONG0415🎩🍖", "active_status": "inactive", "verifications": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "follower_count": 1922, "custody_address": "0xf6a8e05780dd25addfffa7f4752da8529e0e6df4", "following_count": 1519, "verified_addresses": {"eth_addresses": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DpMZc98Tt22mQnUH8\"}"}', NULL), - (793431, '0xea88e8a25298f602fd21a01d895fe58b3460826a', 0, 1, '2024-05-07 03:09:24+00', 0, 0, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2529, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2530, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NfdPD\"}"}', 'sonata'), - (837586, '0x3dc55a044d1b724d3a65c41411510d5027469bab', 0, 1, '2024-05-07 04:37:05+00', 0, 0, '{"fid": 453791, "object": "user", "pfp_url": "https://i.imgur.com/g0L7cgm.jpg", "profile": {"bio": {"text": "I am a kind girl, I love sports and animals and I like horse riding", "mentioned_profiles": []}}, "username": "hghadri58155", "power_badge": false, "display_name": "Hadis ", "active_status": "inactive", "verifications": ["0x037f1c446ce82382a9491ede5b125c6dac160550"], "follower_count": 630, "custody_address": "0xff3832c48f227132210352fef9de47b832d2c72a", "following_count": 2165, "verified_addresses": {"eth_addresses": ["0x037f1c446ce82382a9491ede5b125c6dac160550"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZXBS79Lf6omqBWpT9\"}"}', NULL), - (884804, '0x1d57ccd5bde14dde395725b0af8f7f2787a2218e', 0, 1, '2024-05-07 06:26:08+00', 0, 6, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 369, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 334, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uzE4Y\"}"}', 'sonata'), - (788511, '0xe5dfe650d61c4ad13680c6f5127a66a7f1021bbb', 0, 1, '2024-05-07 02:57:46+00', 0, 12, '{"fid": 406493, "object": "user", "pfp_url": "https://i.imgur.com/nVBBwsm.jpg", "profile": {"bio": {"text": "항상 파이팅👍 ", "mentioned_profiles": []}}, "username": "yeomks", "power_badge": false, "display_name": "Yeomks🎩🍖", "active_status": "inactive", "verifications": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "follower_count": 4278, "custody_address": "0xb3043f0e2ae80ab98c9f1b03df36eba4a5dbf15c", "following_count": 3145, "verified_addresses": {"eth_addresses": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nj2uptfx0xsk/fed-up-with-us?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (875092, '0x9f99261ebeba75f8fcf8d94ac76d095a4b25d16e', 0, 1, '2024-05-07 06:00:53+00', 0, 5, '{"fid": 406815, "object": "user", "pfp_url": "https://i.imgur.com/j0lCl8I.jpg", "profile": {"bio": {"text": "Hello everyone. Let''s enjoy COIN, DEGEN, https://zora.co/@eiza", "mentioned_profiles": []}}, "username": "eiza", "power_badge": false, "display_name": "EIZA_JEONG", "active_status": "inactive", "verifications": ["0x31330d2f5d714c04f6b0f6ed4d5fe0cad405f6e4"], "follower_count": 3565, "custody_address": "0x0edb7182d5959e5fc0bcd2b63da8623eb10c63e7", "following_count": 2010, "verified_addresses": {"eth_addresses": ["0x31330d2f5d714c04f6b0f6ed4d5fe0cad405f6e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/M4QEG56mapAvtoVB6\"}"}', 'sonata'), - (962832, '0x8d3566e379f3c47bbffa287bb511ef4011ee36d8', 0, 1, '2024-05-07 09:27:12+00', 0, 3, '{"fid": 500863, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a51bc49-f9bb-4927-3bd4-81bcf024d300/original", "profile": {"bio": {"text": "web3, blockchain, game, traveling...", "mentioned_profiles": []}}, "username": "toorgasm", "power_badge": false, "display_name": "richard🎩🍖", "active_status": "inactive", "verifications": ["0xbe7c2c20438fe46d49dba73a2928deabc261d590"], "follower_count": 742, "custody_address": "0x842e4241328b69c85f0bc199bd3eb5ed94f04c67", "following_count": 529, "verified_addresses": {"eth_addresses": ["0xbe7c2c20438fe46d49dba73a2928deabc261d590"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SUWwD\"}"}', 'sonata'), - (972152, '0x620563ca221395c85760ca820f17b258985c217e', 0, 1, '2024-05-07 10:06:36+00', 0, 1, '{"fid": 326700, "object": "user", "pfp_url": "https://i.imgur.com/WWNWtHc.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "preflop12345", "power_badge": false, "display_name": "preflop🎩 🍖 ", "active_status": "inactive", "verifications": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "follower_count": 1928, "custody_address": "0x57bb96ec480a2043f2ac8386afbd7d3f8fb15ed3", "following_count": 936, "verified_addresses": {"eth_addresses": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bolbbalgan4/psyfan?si=afc41bce5a5e4f9b8bccb6a8704f4d0b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (901619, '0x981d0262d93883b684eaf74cc1b68a8beb256de9', 0, 1, '2024-05-07 06:49:53+00', 0, 2, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kngdavdmusic/poppies\"}"}', NULL), - (1173468, '0x50846398a24d7101dc935db1793b34c6adba3739', 0, 1, '2024-05-16 01:56:33+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/7nZZOOarDwO82Iv4f6p993?si=OLSVEsJjTEmps-gT3nEV9g\"}"}', NULL), - (900218, '0x3693a70b83e8b3982ca5046574ef325b289a54d2', 0, 1, '2024-05-07 06:48:24+00', 0, 0, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/enterwolfsaga/wolflyon-yolo\"}"}', NULL), - (896818, '0xf8e0321d666b1fa0ae75358d2247c3eaa0917ca4', 0, 1, '2024-05-07 06:43:32+00', 0, 1, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1228, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 980, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0EFhJVbOD1m9nwRVg1eoIB?si=9634b3f15d264218\"}"}', NULL), - (785534, '0x90e219011cf51e57a32809b2e7446c85eeb2f77d', 0, 1, '2024-05-07 02:24:01+00', 0, 2, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 418, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 425, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KDNFlHAdDJ84fhK27c35X?si=1e02ed31e5e04d50\"}"}', NULL), - (795068, '0xdddbaa6b1a9e608c964863e5a1db0555e32da04a', 0, 1, '2024-05-07 03:12:36+00', 0, 2, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2529, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2530, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JvmcA\"}"}', 'sonata'), - (795838, '0x3a7598816b86d9d5d3958cc3e3de75fb9ba0c3a2', 0, 1, '2024-05-07 03:14:13+00', 0, 6, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3541, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3564, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mPeqLTmu7u2LY2Gy8\"}"}', 'sonata'), - (1166415, '0x86a5c0198e9d9f845ea559c6708492abc11cc28e', 1060, 1, '2024-05-12 16:31:01+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1901, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/gm\"}"}', 'soundxyz'), - (1000400, '0x4e29445334c611842deccd721033d0878c876519', 0, 1, '2024-05-07 11:53:25+00', 0, 1, '{"fid": 481625, "object": "user", "pfp_url": "https://i.imgur.com/tKgrHhY.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "tory27", "power_badge": false, "display_name": "Tory", "active_status": "inactive", "verifications": ["0x97b820ae0e998eba0e8156298e7cd0db3ed3f711"], "follower_count": 58, "custody_address": "0x19bd7f3b9765db2de47ff167c1876e390bfc528d", "following_count": 94, "verified_addresses": {"eth_addresses": ["0x97b820ae0e998eba0e8156298e7cd0db3ed3f711"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gmykmaszlvae/demo-1?in=trending-music-kr/sets/indie&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (796438, '0xc85b6e99db7bef1afc11da062a1cf4e42f1dbaff', 0, 1, '2024-05-07 03:16:52+00', 0, 4, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2529, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2530, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MTrHb\"}"}', 'sonata'), - (796442, '0x2d4cd0d3b399c4c4add8464773ed4550c7a17a96', 0, 1, '2024-05-07 03:16:56+00', 0, 10, '{"fid": 498410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ae8a858-bc3b-4145-594d-28aae99d1f00/rectcrop3", "profile": {"bio": {"text": "Hello! Nice to meet you! 방갑습니다! 슈캐로 모두 찾아가 인사드립니다! 잘부탁드립니다!!😆", "mentioned_profiles": []}}, "username": "gism", "power_badge": false, "display_name": "gism", "active_status": "inactive", "verifications": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "follower_count": 1504, "custody_address": "0xfd3503e296ef08d2d93f143d589f9773f47d2484", "following_count": 1637, "verified_addresses": {"eth_addresses": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ghdlseh/track?si=5996256e625d46a3a9f60ce8fa73e42e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (797788, '0x6c493956a810290829981b61e108b79cff56e7dd', 0, 1, '2024-05-07 03:19:53+00', 0, 10, '{"fid": 417704, "object": "user", "pfp_url": "https://i.imgur.com/p6NbQjC.jpg", "profile": {"bio": {"text": "i like cryptocurrency\nbe the specialist\nProvides information, news, chart analysis, and air-drop", "mentioned_profiles": []}}, "username": "intro12", "power_badge": false, "display_name": "Intro", "active_status": "inactive", "verifications": ["0x304d493028c592829a05222b65671d1944c8e56b"], "follower_count": 3056, "custody_address": "0xe48e93b40bd32463d986d1fae13f8f390679e5ba", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x304d493028c592829a05222b65671d1944c8e56b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share92/yerin-baek-square-2017?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (837594, '0xfb64ad8d1c041d0207a6311a73b1aad7adbe82a9', 0, 1, '2024-05-07 04:35:50+00', 0, 0, '{"fid": 404910, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f4cb9a8-92d3-4745-b793-fa36fa3ec400/rectcrop3", "profile": {"bio": {"text": " ❤️ ❤️\n\n일상공유.코인으로 돈벌어요~!! 서로 방문하며 흔적 남깁시다!! 🐾🐾🍖☕️🍻", "mentioned_profiles": []}}, "username": "chadori", "power_badge": false, "display_name": "chadori", "active_status": "inactive", "verifications": ["0x2e2d0045ffd0ebfed105d9d5e8d76552410ce41d"], "follower_count": 1550, "custody_address": "0x34b7cb0c69cf43424ddd821c7413043a39d46935", "following_count": 1563, "verified_addresses": {"eth_addresses": ["0x2e2d0045ffd0ebfed105d9d5e8d76552410ce41d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Rain - 김예림(투개월) by Blayded on #SoundCloud https://on.soundcloud.com/qCjpG\"}"}', NULL), - (794172, '0x574dcc9a142e50a56ce895d65ebba50efef6a91b', 0, 1, '2024-05-07 03:11:33+00', 0, 0, '{"fid": 506311, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7cafab0e-a961-47a7-fa4d-1aca4236a100/rectcrop3", "profile": {"bio": {"text": "F4f Au life ", "mentioned_profiles": []}}, "username": "totoro-", "power_badge": false, "display_name": "Totoro", "active_status": "inactive", "verifications": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "follower_count": 626, "custody_address": "0x3a6c6aaf81924bd0f76f9420131f7a2c4e7d5586", "following_count": 1171, "verified_addresses": {"eth_addresses": ["0x5318943a11d19c9ce6d17deca05ee2acead650ac"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/niceshrp/yiruma-stay-in-memory-cover?si=9b294b2ec74f4864be8772e2b570ec15&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (848469, '0xd13c0ce952225ceb1221a639982c480073974994', 0, 1, '2024-05-07 05:19:12+00', 0, 8, '{"fid": 474091, "object": "user", "pfp_url": "https://i.imgur.com/Od50sSS.jpg", "profile": {"bio": {"text": "Money and food", "mentioned_profiles": []}}, "username": "silsa", "power_badge": false, "display_name": "James", "active_status": "inactive", "verifications": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "follower_count": 2199, "custody_address": "0x80a753036c43a2c3eee42292769f54e6ccc30b87", "following_count": 2259, "verified_addresses": {"eth_addresses": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ads343vkytdo/tws?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (871040, '0xa38f4f0d063c40f1c06c8f4526e2784b2abe63c1', 0, 1, '2024-05-07 05:53:30+00', 0, 1, '{"fid": 417261, "object": "user", "pfp_url": "https://aoxjfk5aks5jufxlavz5ms6btpko3aatqfzanhhvtadb5j7n2v5q.arweave.net/A66Sq6BUupoW6wVz1kvBm9TtgBOBcgac9ZgGHqft1Xs/", "profile": {"bio": {"text": "Just make money", "mentioned_profiles": []}}, "username": "miladjz", "power_badge": false, "display_name": "Miladjz", "active_status": "inactive", "verifications": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "follower_count": 305, "custody_address": "0x0aee32bc354b9a5f1f03ee5db99f491151029658", "following_count": 391, "verified_addresses": {"eth_addresses": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 04 Drugs You Should Try It by Travis Scott on #SoundCloud https://soundcloud.com/travisscott-2/04-drugs-you-should-try-it?ref=clipboard&p=a&c=0&si=d0ac08efd0894a2d81d37793be540d29&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (862381, '0x876a77559d2bdec141e9f62946a7e8a5bbab900a', 0, 1, '2024-05-07 05:38:24+00', 0, 3, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1816, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 923, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/swimming-fool/17-boo-drawingourmoments?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (797792, '0x78957ac370e65686d2db03b96441b86d86ff63c4', 0, 1, '2024-05-07 03:18:58+00', 0, 3, '{"fid": 402682, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreie2nrcfdnb4pyfypmmycwp6iflm4xx2262zpfbyl5qzoeo5scgjaa", "profile": {"bio": {"text": " Make the world better, love and peace, mindfulness, Art, Photo", "mentioned_profiles": []}}, "username": "gdragon", "power_badge": false, "display_name": "xxxibgdrgn", "active_status": "inactive", "verifications": ["0x2d2cadf39f7c1856fb15b8cb2d5a39808b2cbd89"], "follower_count": 2053, "custody_address": "0xa47ca87ec0a14d15f5c551ee02fc7889aa884b7b", "following_count": 1352, "verified_addresses": {"eth_addresses": ["0x2d2cadf39f7c1856fb15b8cb2d5a39808b2cbd89"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MSYVL5up9cLUohPt9\"}"}', 'sonata'), - (797786, '0x3eeabbd9a0de87d7cc8893740efb477fc1ef2860', 0, 1, '2024-05-07 03:20:47+00', 0, 1, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 799, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1550, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Enchanted (Taylor''s Version) by Taylor Swift on #SoundCloud https://on.soundcloud.com/JVEKu\"}"}', NULL), - (848497, '0xcc5ce75eaaf5bd831b26dbe9c31b36e5f7b2ab70', 0, 1, '2024-05-07 05:19:16+00', 0, 4, '{"fid": 458734, "object": "user", "pfp_url": "https://i.imgur.com/g9k64Pa.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "leilamm", "power_badge": false, "display_name": "leila 🎩🔵", "active_status": "inactive", "verifications": ["0xe787889dcb7d1f3bc1dbdf4bacdf555e2c509f92"], "follower_count": 1403, "custody_address": "0x0767b71bedf83ec536dda9bf0cfc9a2224139c6e", "following_count": 1624, "verified_addresses": {"eth_addresses": ["0xe787889dcb7d1f3bc1dbdf4bacdf555e2c509f92"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rauwalejandro/santa?ref=clipboard&p=a&c=0&si=80c312811f3b4264a33db08906bc0489&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (797807, '0x956c951c9b85ea3898ca767347223badfcf289d6', 0, 1, '2024-05-07 03:19:07+00', 0, 4, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2529, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2530, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/H3zRX\"}"}', 'sonata'), - (838395, '0x104884d31e917838f078b081c38ec78ae9925308', 0, 1, '2024-05-07 04:39:21+00', 0, 1, '{"fid": 430593, "object": "user", "pfp_url": "https://i.imgur.com/TBxdrF5.jpg", "profile": {"bio": {"text": "Movie time", "mentioned_profiles": []}}, "username": "shabnamksh", "power_badge": false, "display_name": "Shabnamksh☔️", "active_status": "inactive", "verifications": ["0x579280eb39ea75d964052719d5c2b784c19f3e01"], "follower_count": 1772, "custody_address": "0xb3ea5c96d52b92765b105be2ca4abf1bf89d8f77", "following_count": 2659, "verified_addresses": {"eth_addresses": ["0x579280eb39ea75d964052719d5c2b784c19f3e01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YgeDvBAxgWfYh7GG8\"}"}', NULL), - (1173347, '0x48122bcbfda93b0fc23d41c40a0026d9036897d1', 0, 1, '2024-05-15 21:01:01+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6grFWYpLQul3nAHjzzPKT8?si=wRM5MO0KTzSKIcdT9V3SBg\"}"}', NULL), - (881387, '0x2857c7363218b5deb9362aa4d69115da8e13103a', 0, 1, '2024-05-07 06:16:21+00', 0, 4, '{"fid": 413804, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeid4egu3uatkl2aqjnnpktstyjiidnjvgy2caz2kutkufcg3t3qedy", "profile": {"bio": {"text": "$degen, $enjoy, $imagine, $higher, $RARE", "mentioned_profiles": []}}, "username": "j2inu", "power_badge": false, "display_name": "Jinwoo", "active_status": "inactive", "verifications": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "follower_count": 1923, "custody_address": "0xab1265d965e7155f47a4c3bca8a91d560631ec8a", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yixoedenml3f/lg1ainujfcuh?si=53e80440d2744c2fbbb5fa69d37ee3c1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173444, '0x986713804e577609efd7c2b2e0726884bd256408', 0, 1, '2024-05-15 23:43:41+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/3lt2mRsjIO1cW98Ep9RGiY?si=n88vJv_OSCmf8xU-hwWIkQ\"}"}', NULL), - (838599, '0x0d07e0efacc0a84908174486b716889d9c8369bf', 0, 1, '2024-05-07 04:41:50+00', 0, 4, '{"fid": 411455, "object": "user", "pfp_url": "https://i.imgur.com/j1ngOFQ.jpg", "profile": {"bio": {"text": "Sunny Day : )\n맛있게 먹고, 재밌게 살기🎶 ", "mentioned_profiles": []}}, "username": "sunny38", "power_badge": false, "display_name": "Sunny🙂🍖", "active_status": "inactive", "verifications": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "follower_count": 2217, "custody_address": "0x58375c5d74a72693c589764f07423f151dd130bc", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iD7tL\"}"}', 'sonata'), - (797795, '0x4388a6e01ccdc614d5e3e8bf98af55c32ccd02c0', 0, 1, '2024-05-07 03:19:38+00', 0, 6, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 276, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/cypher-open-mic?referral_source=link\"}"}', 'replyke'), - (875076, '0xbdaf30092618e94fe1a5d5968835162df1dba973', 0, 1, '2024-05-07 06:00:39+00', 0, 1, '{"fid": 501012, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1fb823ea-ced2-4ad3-e8c6-c64434e23300/rectcrop3", "profile": {"bio": {"text": "Good Morning ! Create the good ! Preoccupy !", "mentioned_profiles": []}}, "username": "rengoku37", "power_badge": false, "display_name": "Rengoku37 🛢️🔥", "active_status": "inactive", "verifications": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "follower_count": 984, "custody_address": "0x92f675d9f40fea5338e384028d1c309f605ad0d5", "following_count": 912, "verified_addresses": {"eth_addresses": ["0xa44080bbdc8be2dcb43873db457d02a3207f896d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/124o25ByZAZF7t2M6\"}"}', 'sonata'), - (862364, '0xf756fd234437587edc5f584081e8068be5d0d356', 0, 1, '2024-05-07 05:39:03+00', 0, 2, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3435, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9xS9XdU7QhgXHGGW7\"}"}', 'sonata'), - (902858, '0xbd35ee82a6c2226d8c084dc004dca1ff6a4eb44c', 0, 1, '2024-05-07 06:53:13+00', 0, 0, '{"fid": 403379, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07cd3518-ead3-40b0-ffb8-d7118fbeff00/rectcrop3", "profile": {"bio": {"text": "\n\n#캐나다사는Knadian #영어어려워 #사실워캐도어려워 #그래사실마흔틴이야 \n\nF4F!!! 연중무휴~!!! 유후~~!!!", "mentioned_profiles": []}}, "username": "gmin", "power_badge": false, "display_name": "Gmin Lee", "active_status": "inactive", "verifications": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "follower_count": 2390, "custody_address": "0xde1c043501c2a703b140a33aa24bad2c0f7a8497", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UtCws\"}"}', 'sonata'), - (902845, '0x1f22d3a050c97a259671e148660908e8b83ce0a7', 0, 1, '2024-05-07 06:53:18+00', 0, 1, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/snakehips-1/banks-warm-water-snakehips\"}"}', NULL), - (924277, '0x1ceb21aa72cb27883a47466c1cf31969271022e6', 10000, 1, '2024-05-07 07:37:44+00', 0, 0, '{"fid": 466312, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9975ea25-819f-429b-3969-c8c0ef401600/original", "profile": {"bio": {"text": "no longer a non-shiny and a non-lurker \n//\ni make dune dashboards\n//\nhttps://dune.com/whimsicott/pokemonensonfarcaster \n//\n⌐◨-◨ pilled", "mentioned_profiles": []}}, "username": "whimsicott.eth", "power_badge": false, "display_name": "Φ テ whimsi 🧢🎩", "active_status": "inactive", "verifications": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "follower_count": 144, "custody_address": "0x39a2de2cbdac5a19ed60f4c43e3ae5a539580a6b", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/whimsi-beats/dynasty?in=whimsi-beats/sets/garageband-shenanigans&si=20c8a857a5d34bb18531a54cfea117d4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (838600, '0xaf569109b8ddab1fe78f33b80e1951f262bf0d9c', 0, 1, '2024-05-07 04:42:45+00', 0, 1, '{"fid": 372611, "object": "user", "pfp_url": "https://i.imgur.com/BRNZ7aw.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "darrywong", "power_badge": false, "display_name": "Darrywong", "active_status": "inactive", "verifications": ["0x12f4d36fb204677ae2451e051bb4b1ed8787e0b9", "0xafed1e7c188ba6bdea4a02aa4d7ce4228e5910b0"], "follower_count": 13, "custody_address": "0xc771c5e15667b99fe47e4a228549823238c2d704", "following_count": 97, "verified_addresses": {"eth_addresses": ["0x12f4d36fb204677ae2451e051bb4b1ed8787e0b9", "0xafed1e7c188ba6bdea4a02aa4d7ce4228e5910b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann\"}"}', NULL), - (799635, '0x67a3bd49f9e8a8303eb2ef1aca6bfb680937cad9', 0, 1, '2024-05-07 03:21:04+00', 0, 0, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2063, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2656, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/layans/seven?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (863306, '0x18aec0df00fc4487031cebee8898340b6a90e088', 0, 1, '2024-05-07 05:40:24+00', 0, 0, '{"fid": 226234, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51ab0322-aa71-4855-3f20-31070f04bb00/rectcrop3", "profile": {"bio": {"text": "Ai artist stranded on the planet surface taking poison couldn’t be avoided. https://pixelgravyproductions.blog/", "mentioned_profiles": []}}, "username": "jonrt", "power_badge": false, "display_name": "Pixel Gravy 🎩🍖", "active_status": "inactive", "verifications": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "follower_count": 231, "custody_address": "0xbec78c6235cf3d17accc444d1a1fa073c19bc1c5", "following_count": 220, "verified_addresses": {"eth_addresses": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "sol_addresses": ["A8LbzGsRzuXsCAQajZc557FSCN7ysNpdAVnGZjAKW6W7"]}}', '{"{\"url\":\"https://soundcloud.com/baybeebaybee/slutmouth-girlpool?si=bdea8437b2e54ccd80a26e094266dd91&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173393, '0x9336d49287bd99588c323aa462b98b439ae0ff78', 1000, 1, '2024-05-15 22:24:09+00', 0, 72, '{"fid": 617, "object": "user", "pfp_url": "https://i.imgur.com/HCrwukM.gif", "profile": {"bio": {"text": "/cameron for content experiments. I help Creators grow faster @ seemore.tv + /seemore. Posts at creator3x3.com.\nDev + Veteran + HBS. \nseemore.tv/cameron 🫡", "mentioned_profiles": []}}, "username": "cameron", "power_badge": true, "display_name": "Cameron Armstrong", "active_status": "inactive", "verifications": ["0x19ce57b670121e73e43be6c2fea5c254bb4c8760"], "follower_count": 170807, "custody_address": "0x70844dc4c5084a3fabbfede2b49c4038ddfe66a3", "following_count": 196, "verified_addresses": {"eth_addresses": ["0x19ce57b670121e73e43be6c2fea5c254bb4c8760"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Dioc5wCu4sUXTjwQv4Cuw?si=X8QVaDPCQL2NsTSKrOGOwA&context=spotify%3Aalbum%3A4pfs6RS2T9Ic6GbtXFmpNN\"}"}', 'emo'), - (902846, '0x364f585783ef8d053d86521a96951dcbe3fce016', 0, 1, '2024-05-07 06:52:54+00', 0, 2, '{"fid": 404567, "object": "user", "pfp_url": "https://i.imgur.com/LW1foL3.jpg", "profile": {"bio": {"text": "Let''s communicate and make a good relationship\nI wish you happiness.", "mentioned_profiles": []}}, "username": "rau", "power_badge": false, "display_name": "mini", "active_status": "inactive", "verifications": ["0x2a0d77adb85c46260cc1ebea2e70573ef518a252"], "follower_count": 2260, "custody_address": "0xacb87dd82e2e71e37539691adb9e8e0eb7fd9e0f", "following_count": 3462, "verified_addresses": {"eth_addresses": ["0x2a0d77adb85c46260cc1ebea2e70573ef518a252"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation2/on6kq4ylok?si=6aa92baeb0e84893bdac09378cf067d8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (902853, '0x50889b01c78486addee12620bb7474ff74b239f7', 0, 1, '2024-05-07 06:52:21+00', 0, 0, '{"fid": 489893, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acfbf5f1-9b73-4e1e-3628-af1def309a00/rectcrop3", "profile": {"bio": {"text": "슈캐💛워캐💛Degen💛🎩💛", "mentioned_profiles": []}}, "username": "lovemango", "power_badge": false, "display_name": "Mango", "active_status": "inactive", "verifications": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "follower_count": 1534, "custody_address": "0xe2b9accc46f0747c26f07483ea17ab9fd21bd965", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jyreYRASbhQYM75Y8\"}"}', NULL), - (983183, '0xb4539c317f18623f77914eb20363fd29d88f5c6c', 0, 1, '2024-05-07 10:56:46+00', 0, 3, '{"fid": 500896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad084dc3-15c2-4a29-147a-3f9b87309800/rectcrop3", "profile": {"bio": {"text": "like music youtube culture food \nno matter what like it", "mentioned_profiles": []}}, "username": "joetaka", "power_badge": false, "display_name": "joetaka", "active_status": "inactive", "verifications": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "follower_count": 823, "custody_address": "0x5db012ed31ad2e1ac2db182dae0f51cf582acb70", "following_count": 893, "verified_addresses": {"eth_addresses": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/apieceofonion/tws-plot-twist-apieceofonion-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (907876, '0xc95abc6d949045804637d65fac301a482147e0d0', 0, 1, '2024-05-07 06:59:19+00', 0, 2, '{"fid": 465063, "object": "user", "pfp_url": "https://i.imgur.com/RT2T71u.jpg", "profile": {"bio": {"text": "Professional over-thinker. Amateur human.\nDegen c. 1996\nETH c. 2017\n/classic /miamicrypto", "mentioned_profiles": []}}, "username": "indicub.eth", "power_badge": true, "display_name": "Blockchain Bandido", "active_status": "inactive", "verifications": ["0x0b255cd2188dae3787c1447a8dd99fb9611f461f"], "follower_count": 453, "custody_address": "0xaa92958f21cf0a16e30d85d2a29241eaa79c6e0e", "following_count": 449, "verified_addresses": {"eth_addresses": ["0x0b255cd2188dae3787c1447a8dd99fb9611f461f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uhvPyjgZqLSmj3ZY7\"}"}', NULL), - (800807, '0x6a43b54e7311b40b0c81ed69993b23c3b0364941', 0, 1, '2024-05-07 03:23:10+00', 0, 4, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2063, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2656, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/layans/seven?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (838605, '0xd62beb2e1f51f7f3621024b4c866ddd18ac75d34', 0, 1, '2024-05-07 04:42:50+00', 0, 2, '{"fid": 372611, "object": "user", "pfp_url": "https://i.imgur.com/BRNZ7aw.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "darrywong", "power_badge": false, "display_name": "Darrywong", "active_status": "inactive", "verifications": ["0x12f4d36fb204677ae2451e051bb4b1ed8787e0b9", "0xafed1e7c188ba6bdea4a02aa4d7ce4228e5910b0"], "follower_count": 13, "custody_address": "0xc771c5e15667b99fe47e4a228549823238c2d704", "following_count": 97, "verified_addresses": {"eth_addresses": ["0x12f4d36fb204677ae2451e051bb4b1ed8787e0b9", "0xafed1e7c188ba6bdea4a02aa4d7ce4228e5910b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann\"}"}', NULL), - (802025, '0x703a5baa6ffff68668d48c5cf2c80031bcc13a84', 0, 1, '2024-05-07 03:24:58+00', 0, 3, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 799, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1550, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RCVKC\"}"}', 'sonata'), - (848500, '0x5872010e909fa94c615a74633ae8bf55055c6396', 0, 1, '2024-05-07 05:18:51+00', 0, 2, '{"fid": 311486, "object": "user", "pfp_url": "https://arweave.net/a4mAQ-Lyas_vYJJF_sCwOPToRY5uA5luz5k0fb4skSQ/", "profile": {"bio": {"text": "football lover ⚽", "mentioned_profiles": []}}, "username": "shahishahrak", "power_badge": false, "display_name": "Ebrahim🔮 🎩 🔵", "active_status": "inactive", "verifications": ["0x2e09ef7918e64ddabeb45e4dc81cb10c6554246c"], "follower_count": 2010, "custody_address": "0x55a33cefab1643b70678423741b247c49bf46009", "following_count": 2120, "verified_addresses": {"eth_addresses": ["0x2e09ef7918e64ddabeb45e4dc81cb10c6554246c"], "sol_addresses": ["D3nDH7yhhWKp1X7XBzqqy23ajMV4mkq8YvUsQZZUFct3"]}}', '{"{\"url\":\"https://soundcloud.com/dane-171492578/x2downloadapp-rauw-alejandro-diluvio-visualizer?ref=clipboard&p=a&c=0&si=12d0271bab7d454fb0749d32345646de&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173346, '0x40d123494cced67855bfa245789ee079e56f4e99', 0, 1, '2024-05-15 20:59:54+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5l9c6bJmzvftumhz4TMPgk?si=m-g2AnC9RD61YeZfubJB9g\"}"}', NULL), - (882927, '0xd0fe9e1e95a64ee84d02e4e91dc248ba9ca8ed3d', 0, 1, '2024-05-07 06:23:57+00', 0, 3, '{"fid": 500124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28fe94f9-5119-4ffa-904e-7f7f7bdbc700/rectcrop3", "profile": {"bio": {"text": "dex", "mentioned_profiles": []}}, "username": "dexlover", "power_badge": false, "display_name": "dexlover🎩🍖", "active_status": "inactive", "verifications": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "follower_count": 988, "custody_address": "0x2cf0493a0cabe5b42db8ee724595ee1f3594ae6c", "following_count": 1549, "verified_addresses": {"eth_addresses": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8Uamx\"}"}', 'sonata'), - (871041, '0x010bd2e8a95c06ff7224025a38f51067660f6186', 0, 1, '2024-05-07 05:52:14+00', 0, 2, '{"fid": 499252, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6426fa39-cb02-434b-217b-fffbaa4e2c00/rectcrop3", "profile": {"bio": {"text": "소통왕/반사왕 될게요❄❄\n절대 잊지 않고 찾아봬요😊", "mentioned_profiles": []}}, "username": "nunuwillump", "power_badge": false, "display_name": "NUNU", "active_status": "inactive", "verifications": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "follower_count": 2266, "custody_address": "0x69b0108a354647ac6467250dbad5323cfee38319", "following_count": 2265, "verified_addresses": {"eth_addresses": ["0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rjpp2ovwcy3r/young-cocoa-manila?ref=clipboard&p=a&c=0&si=ba569633a015433599f0e2618ea67451&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (902847, '0xcde4692a5582e63ad3617867f803c9c3e219f91a', 0, 1, '2024-05-07 06:53:32+00', 0, 6, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/crystalfighters/crystal-fighters-love-natural\"}"}', NULL), - (799633, '0xf222429ca51d704d29f5aa0bf46fe62b9d45029b', 0, 1, '2024-05-07 03:21:14+00', 0, 2, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2205, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2084, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2sharebts2/boy-with-luv?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (875472, '0xad5ef6c58024e2a11ae98731c4b5b310f6188848', 0, 1, '2024-05-07 06:01:53+00', 0, 5, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1241, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1438, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8WvAP\"}"}', 'sonata'), - (882121, '0xe6bb7b05b231707fbecf9a2dcc40c41c50afaa7a', 0, 1, '2024-05-07 06:22:00+00', 0, 5, '{"fid": 417892, "object": "user", "pfp_url": "https://i.imgur.com/PkaU6Re.jpg", "profile": {"bio": {"text": "안녕하세요!!", "mentioned_profiles": []}}, "username": "greenpappergood", "power_badge": false, "display_name": "Sangsangkoon", "active_status": "inactive", "verifications": ["0xed3a4d7fad1cea09a8c619d6bb3fe3b34c316fce", "0x9a37654e3883f4d58738a045288d9dc652d15841"], "follower_count": 3342, "custody_address": "0xef06768a268f811268ef096892de8e2f0fabebc7", "following_count": 3387, "verified_addresses": {"eth_addresses": ["0xed3a4d7fad1cea09a8c619d6bb3fe3b34c316fce", "0x9a37654e3883f4d58738a045288d9dc652d15841"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R77ac\"}"}', 'sonata'), - (802072, '0x8199182065446df5d69d9fbc8fcd8a7c79bd8095', 0, 1, '2024-05-07 03:25:03+00', 0, 1, '{"fid": 506817, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f199229-6daf-42c9-e4a1-c13531428900/rectcrop3", "profile": {"bio": {"text": "I am the person who delivers the crypto issue.", "mentioned_profiles": []}}, "username": "!506817", "power_badge": false, "display_name": "crypto issue", "active_status": "inactive", "verifications": ["0x394e68dd0a477c92642b226d69688281e34ec679"], "follower_count": 80, "custody_address": "0x44498c5533a367df3033924e58a0dae1b35a20b3", "following_count": 74, "verified_addresses": {"eth_addresses": ["0x394e68dd0a477c92642b226d69688281e34ec679"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/URjStH9KMyUybfba6\"}"}', 'sonata'), - (850252, '0x3574299492036b2b4a8d48701adb8a3994da76cc', 0, 1, '2024-05-07 05:22:23+00', 0, 4, '{"fid": 500749, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94e5c92c-162e-4ec0-9b80-d9f2e54f7400/rectcrop3", "profile": {"bio": {"text": "The blockchain researcher embarks on a journey to find happiness", "mentioned_profiles": []}}, "username": "kasion", "power_badge": false, "display_name": "Kasion🎩🍖🔵", "active_status": "inactive", "verifications": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "follower_count": 1756, "custody_address": "0xa19a05609a7a1be8d950cdd95f0575ad614d7f2e", "following_count": 1550, "verified_addresses": {"eth_addresses": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1PQvvsUgMSJcjTe57\"}"}', 'sonata'), - (863323, '0x6948bcb86af395cce05dd0e3dc400fc3722cc690', 0, 1, '2024-05-07 05:40:22+00', 0, 3, '{"fid": 448944, "object": "user", "pfp_url": "https://arweave.net/vRw6Z4p2GvDcMQDW9iadHxThmdWTGjYu12gl_4Zm4rY/", "profile": {"bio": {"text": "A coder who loves crypto", "mentioned_profiles": []}}, "username": "mohammadjani", "power_badge": false, "display_name": "mohammadjani", "active_status": "inactive", "verifications": ["0x35acaeb4fb2238fcb24fd348214df589bf57ba85"], "follower_count": 724, "custody_address": "0x2c46f9f762ca957f354508ce1732ae0e349ae0d1", "following_count": 728, "verified_addresses": {"eth_addresses": ["0x35acaeb4fb2238fcb24fd348214df589bf57ba85"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/ehsan-haqiqat/mahsun-kirmizigul-dinle\"}"}', NULL), - (924568, '0xdff3cbf18b510cc91b3c7d30c191c30457a0dfbf', 0, 1, '2024-05-07 07:40:06+00', 0, 1, '{"fid": 446972, "object": "user", "pfp_url": "https://i.imgur.com/PReb6Qm.jpg", "profile": {"bio": {"text": "Use the weekends to build the life you''ve always wanted.", "mentioned_profiles": []}}, "username": "hsyn", "power_badge": false, "display_name": "Hsyn", "active_status": "inactive", "verifications": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "follower_count": 363, "custody_address": "0xf1ee30b6c5e599b198d04a7faec24fe2c7d22cb0", "following_count": 487, "verified_addresses": {"eth_addresses": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TaJeN25Nn3wJCg887\"}"}', NULL), - (929028, '0xebee2d2abac727125102fc441b33805280bbce7f', 0, 1, '2024-05-07 08:00:32+00', 0, 0, '{"fid": 505632, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4057e7ac-7ad9-4932-cfb3-ca878e9e8700/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "oscure", "power_badge": false, "display_name": "부리부리", "active_status": "inactive", "verifications": ["0x5151cb6aa222c128e5969d2b4f4cbae9f472f4be"], "follower_count": 54, "custody_address": "0xd90511f6f86fd5fb4b52eeeb7120b24920530530", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x5151cb6aa222c128e5969d2b4f4cbae9f472f4be"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fabroprod/7years\"}"}', NULL), - (803612, '0xd88dd5ad4566a44c502bbb3fa4b015c552c896e5', 0, 1, '2024-05-07 03:28:37+00', 0, 4, '{"fid": 501083, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd325875-0b22-4d4f-b23f-fb7d3e6bb800/rectcrop3", "profile": {"bio": {"text": "맞팔 매우 환영!! ", "mentioned_profiles": []}}, "username": "sun111", "power_badge": false, "display_name": "Spring1", "active_status": "inactive", "verifications": ["0xd1a5b9caabade7afbd14e8885a8b785bcff50a59"], "follower_count": 1241, "custody_address": "0x8dbe6ba722a3ca495bc3be416099c46880b5b239", "following_count": 1421, "verified_addresses": {"eth_addresses": ["0xd1a5b9caabade7afbd14e8885a8b785bcff50a59"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EGpdp\"}"}', 'sonata'), - (838606, '0xa4b8e9d10a7830e9d01c52e9b142630a59be8e01', 20, 1, '2024-05-07 04:42:26+00', 0, 40, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1741, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1795, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1l3fqUSoSAiFwVbjkyldux?si=_LD91-QgSt2sLxYzjvjBWg\"}"}', 'sonata'), - (802810, '0x6342e602bf63d08fdcd74d966a22bd1f45bff137', 0, 1, '2024-05-07 03:26:17+00', 0, 3, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3551, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2017, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/9wY8NRyvsYUwJvqv5\"}"}', 'sonata'), - (802805, '0x92ed9c7e5424a5f991cf20a3a2676c51f05f8bc9', 0, 1, '2024-05-07 03:27:10+00', 0, 3, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2529, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2530, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/StCpY\"}"}', 'sonata'), - (1173379, '0x0f0b2ea4931fdc3b5015a552393883bca619902f', 0, 1, '2024-05-15 21:46:00+00', 0, 2, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/1NHwvBmrUje4L1dxfWnXCH?si=VqZzcbw5Q3ifn9aamU0r-w\"}"}', NULL), - (838692, '0x58354707d84602bba00d92061e897b375bdd3e1f', 0, 1, '2024-05-07 04:43:26+00', 0, 0, '{"fid": 470263, "object": "user", "pfp_url": "https://i.imgur.com/Ai6ywfm.jpg", "profile": {"bio": {"text": "Im a person who like help people", "mentioned_profiles": []}}, "username": "drali", "power_badge": false, "display_name": "Travex 🔵 🎩 🍖 🔄", "active_status": "inactive", "verifications": ["0x6f834a4b9f42aac14aecd50e145a30f9779aeab4"], "follower_count": 554, "custody_address": "0x6aa9e7a05c301b225d578b7996cad6ec4c79d92b", "following_count": 847, "verified_addresses": {"eth_addresses": ["0x6f834a4b9f42aac14aecd50e145a30f9779aeab4"], "sol_addresses": ["AhXZkxUm72AmKQi5VZVZdpBWk1T1uRtsuannQUbGyzwG"]}}', '{"{\"url\":\"https://on.soundcloud.com/tgWc8Gbgh1MtPjQ67\"}"}', NULL), - (850253, '0x189b3cd24ac817ca047e3023cf7b06772ebf9a4b', 0, 1, '2024-05-07 05:22:41+00', 0, 1, '{"fid": 408885, "object": "user", "pfp_url": "https://i.imgur.com/d7ax5ib.jpg", "profile": {"bio": {"text": "Follow Follow me 😉 #f4f", "mentioned_profiles": []}}, "username": "mimis", "power_badge": false, "display_name": "Mimi ❤️", "active_status": "inactive", "verifications": ["0x556de82288d24298a8baff2c3a98270653691b3e"], "follower_count": 769, "custody_address": "0xd3d97aabb51f923cb48f9b01d298a8212c64499c", "following_count": 730, "verified_addresses": {"eth_addresses": ["0x556de82288d24298a8baff2c3a98270653691b3e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/r6zKm\"}"}', 'sonata'), - (923751, '0xc39f3e7892e80429fc221c9be99ed9bd044c88ac', 0, 1, '2024-05-07 07:32:13+00', 0, 2, '{"fid": 503907, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3d4b7bd-00bc-4f39-7aca-66e2d569e600/rectcrop3", "profile": {"bio": {"text": "diVine inspiration 🌈", "mentioned_profiles": []}}, "username": "amirali1991", "power_badge": false, "display_name": "Nothing😎😎", "active_status": "inactive", "verifications": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "follower_count": 195, "custody_address": "0x114b9f282cd625abc5658a0644e2dd4502337307", "following_count": 811, "verified_addresses": {"eth_addresses": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CbdGgigvdFRf59i69\"}"}', NULL), - (864023, '0x3faa4202c0efc72cd5158678385517acd3148898', 0, 1, '2024-05-07 05:41:37+00', 0, 3, '{"fid": 452471, "object": "user", "pfp_url": "https://i.imgur.com/aZC8Y3z.jpg", "profile": {"bio": {"text": "함께해요!!\n\n화이팅입니다!!", "mentioned_profiles": []}}, "username": "tedkwon", "power_badge": false, "display_name": "tedkwon", "active_status": "inactive", "verifications": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "follower_count": 1031, "custody_address": "0x72dadb57669d45eb0fcf52c5c277d86c3998ae48", "following_count": 1096, "verified_addresses": {"eth_addresses": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c3KmC1BkxREV2MM19\"}"}', 'sonata'), - (850254, '0x3d3fded93ba25aade774a77eabc994e060285457', 0, 1, '2024-05-07 05:23:17+00', 0, 1, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 449, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 308, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/X6FuWLdbmj3KHU9H6\"}"}', 'sonata'), - (800803, '0x8ec4be2b46a1e372da62ef4f3ec14cb1215c5b1a', 0, 1, '2024-05-07 03:22:24+00', 0, 8, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1332, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yrlocation3/ive-the-2nd-ep-ive-switch-1?si=9ab8a5d3cd1f40bb80f0c098536bbc18&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (838907, '0xa5af0c18f339512e77451492839caf223475cc3e', 0, 1, '2024-05-07 04:46:44+00', 0, 8, '{"fid": 509165, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9361601-73c9-4e20-727c-cc543e785700/rectcrop3", "profile": {"bio": {"text": "F4F 무조건 맞팔!!", "mentioned_profiles": []}}, "username": "!509165", "power_badge": false, "display_name": "cheonhs", "active_status": "inactive", "verifications": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "follower_count": 812, "custody_address": "0x6bcf73121e12de68c66963299a7ea8c0be67bffe", "following_count": 1410, "verified_addresses": {"eth_addresses": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NyubjvKhu1A7DrkC7\"}"}', NULL), - (804506, '0x5884031acce0e9f7e9b197e5af92c1c88f45e677', 0, 1, '2024-05-07 03:30:35+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DivVFw4CU3uKCne89\"}"}', NULL), - (875508, '0x919067a46d4932981c04574208887c643661d985', 0, 1, '2024-05-07 06:02:10+00', 0, 2, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3438, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EtUsZ8qqzPvsPyp86\"}"}', 'sonata'), - (1173345, '0x3cd6b5011c3e5f1aba55a391ecd2ff11cbb3f6f0', 0, 1, '2024-05-15 20:59:30+00', 0, 6, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/51JND25US7QYHuj6ZgZStJ?si=M1QKTfJ0TTmmLhriH7sxEg\"}"}', 'sonata'), - (877008, '0x92b1acd2fea2b1d584b41f4d1f1db7e33af13bb4', 0, 1, '2024-05-07 06:04:46+00', 0, 1, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1358, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1481, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/49F3htNmwzPKFycPdOrDvf?si=zXDD18gbRsmLpkraPUYNpw\"}"}', 'musicjp'), - (838906, '0x64bad808092c8247b049ffd8108c53c7877fe4d8', 0, 1, '2024-05-07 04:45:08+00', 0, 2, '{"fid": 420117, "object": "user", "pfp_url": "https://i.imgur.com/FtVbAqA.jpg", "profile": {"bio": {"text": "Hi. Have a happy day😀 I want to make a lot of friends😁 ❤️ 초음속 반사🌼 숙제는 미루지않아요 👏 ", "mentioned_profiles": []}}, "username": "elly29", "power_badge": false, "display_name": "Elly", "active_status": "inactive", "verifications": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "follower_count": 2292, "custody_address": "0x9d06907bfcb51d4232ff86c1eb836d8cd00d101f", "following_count": 2300, "verified_addresses": {"eth_addresses": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HzDdG\"}"}', 'sonata'), - (838695, '0x1b6c8b1f2ad2e4e311a22dd48a2cff11fcb90fc1', 0, 1, '2024-05-07 04:43:38+00', 0, 6, '{"fid": 508082, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09e1b144-51f7-4e45-e20c-e6c0a2c33600/rectcrop3", "profile": {"bio": {"text": "팔루우 해주시면 맞팔 고고^^\n교감하며 서로 아픔을 이겨봐요♡♡♡", "mentioned_profiles": []}}, "username": "!508082", "power_badge": false, "display_name": "greenever", "active_status": "inactive", "verifications": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "follower_count": 835, "custody_address": "0xd37464128c23cb688dedb4972b43394fedfdcce8", "following_count": 920, "verified_addresses": {"eth_addresses": ["0xbc8689a07a4fa38cba728af18cc9b057248e4caf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7R9nM\"}"}', 'sonata'), - (802035, '0xab53aa2e13253eef0deb61616775e617a33c8bed', 0, 1, '2024-05-07 03:25:18+00', 0, 0, '{"fid": 336644, "object": "user", "pfp_url": "https://i.imgur.com/oY7Eavo.jpg", "profile": {"bio": {"text": "Hiker nature laver photographer", "mentioned_profiles": []}}, "username": "arredia", "power_badge": false, "display_name": "arredia", "active_status": "inactive", "verifications": ["0x43d1a22c1dd5ac43385385af38a9ff5cc68bc50d", "0x43d1a22c1dd5ac43385385af38a9ff5cc68bc50d"], "follower_count": 11, "custody_address": "0xd0275299c89001473173cbff895c6d1ed9e2c725", "following_count": 67, "verified_addresses": {"eth_addresses": ["0x43d1a22c1dd5ac43385385af38a9ff5cc68bc50d", "0x43d1a22c1dd5ac43385385af38a9ff5cc68bc50d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/48w5C9a4f2cN7f3icY8CAI?si=_6X8vzUZR5m3ULuAoJ761Q\"}"}', NULL), - (875936, '0x2804e9096c97b76848fbdf17575eae38b8df7045', 0, 1, '2024-05-07 06:02:08+00', 0, 0, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 967, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Nu5zYIXwbiZdzPpqnKiHM?si=-7VeRe-2Sfexy365Wy6eYA\"}"}', NULL), - (795846, '0xfdc3312d54f2b93c4817b2158e8a1af756eaac5a', 0, 1, '2024-05-07 03:14:38+00', 0, 1, '{"fid": 291290, "object": "user", "pfp_url": "https://i.imgur.com/7y185Nd.jpg", "profile": {"bio": {"text": "Surfing🧚‍♀️", "mentioned_profiles": []}}, "username": "minji80", "power_badge": false, "display_name": "Minji", "active_status": "inactive", "verifications": ["0x0d69365a2b1c548a155a2ed30f22aad60adaec85"], "follower_count": 30, "custody_address": "0x6735ce642a05b0e5f4ff4c5d5980fe625a561e3d", "following_count": 44, "verified_addresses": {"eth_addresses": ["0x0d69365a2b1c548a155a2ed30f22aad60adaec85"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chou-jay-563261526/u4sgc4tfz50g?si=cf469c12939547df9c3a4c7c78e0297e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (923953, '0xa3e62aba688c2718cad6fd03e158e5253a428661', 0, 1, '2024-05-07 07:33:37+00', 0, 0, '{"fid": 419103, "object": "user", "pfp_url": "https://i.imgur.com/cWyDUB7.jpg", "profile": {"bio": {"text": "どうもこんにちは。\n\n田中です。\n\n今期は血尿猫さんに養って貰ってます。\n\nI''m Top of the tanaka.", "mentioned_profiles": []}}, "username": "tanakakamei", "power_badge": false, "display_name": "田中(仮名)🎩🔥", "active_status": "inactive", "verifications": ["0x5bb9bb14a11af42de68fa2c9b9089a29d993e3d0", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319"], "follower_count": 893, "custody_address": "0x6e11a25b6a62e1db5d65767e78fd67b579f9eeef", "following_count": 646, "verified_addresses": {"eth_addresses": ["0x5bb9bb14a11af42de68fa2c9b9089a29d993e3d0", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VM9utBzkYhre3HMr5\"}"}', NULL), - (881192, '0x7e023e71f263c63296762de37969b0c0553dd2ce', 0, 1, '2024-05-07 06:14:49+00', 0, 1, '{"fid": 389058, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiadgqpq5wwfelyjrw4ga3pugpycjiegikoigpv7np4qx7rnge3oke", "profile": {"bio": {"text": "IT technician\nEnglish teacher\nkickboxer\nfootball fan\ncrypto fan", "mentioned_profiles": []}}, "username": "mowhitewolf", "power_badge": false, "display_name": "Mohamad Sedigh🎩👑", "active_status": "inactive", "verifications": ["0x606287e4fbf1d4fda67a3a0a6f822ee331c2fd75"], "follower_count": 679, "custody_address": "0xf874b30c7f85e7d4091d9f26ccb3613440799f51", "following_count": 382, "verified_addresses": {"eth_addresses": ["0x606287e4fbf1d4fda67a3a0a6f822ee331c2fd75"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/barrycantswim/kimbara-76768053?in=soundcloud%2Fsets%2Ftracks-of-the-week\"}"}', NULL), - (805464, '0x6eaf9d1ef294b4dac5f3e9260948e0a4b30d2188', 0, 1, '2024-05-07 03:31:36+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bVzPbvRUxmz7EEbr5\"}"}', NULL), - (838910, '0x1c14b928e0e7f2787aacdca633df451db86375c2', 0, 1, '2024-05-07 04:45:18+00', 0, 6, '{"fid": 292132, "object": "user", "pfp_url": "https://i.imgur.com/QaPE2CR.jpg", "profile": {"bio": {"text": "드라마♥️ 코인♥️ 디젠♥️ \n놓치지 않을 거에요🧨🪅🪆🕹🎯", "mentioned_profiles": []}}, "username": "musik07", "power_badge": false, "display_name": "Mr.쭈", "active_status": "inactive", "verifications": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "follower_count": 1128, "custody_address": "0x507c0d1fb7d0433a02776aebdcb4d0c6ec1a74ba", "following_count": 1182, "verified_addresses": {"eth_addresses": ["0x8dbe4c061273af56306a1aa6bdf7346f2678600b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wGLs4\"}"}', 'sonata'), - (805618, '0x47f3252b5492cfa19731d0aa3ee756a6d667a219', 0, 1, '2024-05-07 03:32:15+00', 0, 10, '{"fid": 500303, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c4d3ec05-d788-4c65-baaa-86a1fa40c700/rectcrop3", "profile": {"bio": {"text": "만나서 반가워😀\n\n잘 부탁해 ~", "mentioned_profiles": []}}, "username": "sudde", "power_badge": false, "display_name": "나야나", "active_status": "inactive", "verifications": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "follower_count": 1648, "custody_address": "0x0c9ec1bcd0bcc3b7d3daa278e8e531ccca4dba6e", "following_count": 1605, "verified_addresses": {"eth_addresses": ["0xb39f0d7a2e76df206e864863ff7197d1caa75205"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JyB3S\"}"}', 'sonata'), - (881173, '0x6ab7958315240c4f0ae6a30c2eac3d94502c1978', 0, 1, '2024-05-07 06:14:26+00', 0, 0, '{"fid": 406030, "object": "user", "pfp_url": "https://i.imgur.com/vMCIp4x.jpg", "profile": {"bio": {"text": "🥰I love jung&su🎩🍖🔮🥰", "mentioned_profiles": []}}, "username": "luckyhappymom", "power_badge": false, "display_name": "😸luckyhappymom🎩🍖😸", "active_status": "inactive", "verifications": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "follower_count": 2914, "custody_address": "0x2ff561b9b84e0c139bb218f56569e7f6c84f9554", "following_count": 3668, "verified_addresses": {"eth_addresses": ["0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k8tz1\"}"}', 'sonata'), - (850255, '0x272e8ce0006652384698994f2232616f2804adb5', 0, 1, '2024-05-07 05:23:13+00', 0, 1, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1672, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1258, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RoNMq9ed6KNez6gg6\"}"}', NULL), - (864056, '0x776b5f66eb772d8bbe44be9d4963559ebd33eb53', 0, 1, '2024-05-07 05:40:57+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 801, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1563, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZDgYf\"}"}', 'sonata'), - (907878, '0x8f8f738edc58e8548ef7ba6e41950d6107cfdccc', 0, 1, '2024-05-07 06:59:29+00', 0, 4, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1423, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 964, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jhrevolution/sung-si-kyung-on-the-street-cover?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (881685, '0x1716a1b4e0a1461760c2f776489eaf8e69097b7d', 0, 1, '2024-05-07 06:21:09+00', 0, 0, '{"fid": 15485, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bda55b4e-b059-4cac-2b4c-55c22f072c00/rectcrop3", "profile": {"bio": {"text": "I Love crypto , football and betting ...", "mentioned_profiles": []}}, "username": "mehran2021", "power_badge": false, "display_name": "Mehran 🎩", "active_status": "inactive", "verifications": ["0x28b8fbcebdc3114dd7ce20eb0642015ea3a21718"], "follower_count": 617, "custody_address": "0x7a457183bf0f1a83866cde52e8fe3d32e26a67ee", "following_count": 874, "verified_addresses": {"eth_addresses": ["0x28b8fbcebdc3114dd7ce20eb0642015ea3a21718"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fkvpo\"}"}', 'sonata'), - (864068, '0x35338391d3c99f63305d1f50d2314ac79d23458c', 0, 1, '2024-05-07 05:40:44+00', 0, 2, '{"fid": 443429, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3b6a8462-3e20-4d95-a121-68c27b6f5800/rectcrop3", "profile": {"bio": {"text": "Artist 👩🏻‍🎨🖼️🖌️🎨", "mentioned_profiles": []}}, "username": "sabanzm", "power_badge": false, "display_name": "Pasha 🐶🎩🍖🔮", "active_status": "inactive", "verifications": ["0xc1dbfe2532a6538cb33a771647130af2d3fac310"], "follower_count": 1261, "custody_address": "0x6f5be66f55ccfdaa6e37cb10c9b60300b37d1b1e", "following_count": 745, "verified_addresses": {"eth_addresses": ["0xc1dbfe2532a6538cb33a771647130af2d3fac310"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eng-mohsen-farag/eyes-on-me-celine-dion-cover?ref=clipboard&p=i&c=0&si=B7AD0AE5A3B741B29DFDDE1A72E6E168&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (839252, '0x85012c694494d85a29d08ffa7d18293b48f99a92', 0, 1, '2024-05-07 04:51:09+00', 0, 1, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1765, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2211, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ne-yo/so-sick?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (838694, '0x01fad6f887ea132aff29cc9d48cd8bc74a1556d1', 1000, 1, '2024-05-07 04:44:25+00', 0, 0, '{"fid": 385242, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiggp52wnkuqowiewtsdpsj6lu2avnndesprstiddjwguqdgyfbpgu", "profile": {"bio": {"text": "i love farcaster\nCH host:/ogiri /casnews", "mentioned_profiles": []}}, "username": "harefine.eth", "power_badge": false, "display_name": "hare🎩", "active_status": "inactive", "verifications": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "follower_count": 1396, "custody_address": "0xf7c15b2215c1a2c7390746209dee17f98aca29f1", "following_count": 773, "verified_addresses": {"eth_addresses": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "sol_addresses": ["CKpihsP5fsG5KckWo7fUZnsVDYXy2Zpx9c1PFam39eFK"]}}', '{"{\"url\":\"https://soundcloud.com/cfm_miku/ill-miku-miku-you-for-reals?si=0ad41e3f687742ec932083c5aa9aee38&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'bgm'), - (948893, '0x920da7fd49fca07b36452c841b1f920b39795b86', 0, 1, '2024-05-07 08:48:23+00', 0, 18, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-457747497/pateko-rainy-day-feat-ash-island-skinny-brown?in=kimwsqvmathh/sets/ydzchyh2koom&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (806641, '0x34f8f6aad5a141f503f2c07d3e45ef11b3409c4d', 0, 1, '2024-05-07 03:34:37+00', 0, 3, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3417, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HT9hY\"}"}', 'sonata'), - (923742, '0xec4c618cb4e2620d2f88b88b5fa466c18119d403', 0, 1, '2024-05-07 07:31:10+00', 0, 3, '{"fid": 437984, "object": "user", "pfp_url": "https://i.imgur.com/Z6eBT4Q.jpg", "profile": {"bio": {"text": "아이스맨입니다.선팔 맞팔 좋/댓/리 칼같이 찾아갑니다! Welcome to iceman world!\n조대리 환영♡", "mentioned_profiles": []}}, "username": "heybro", "power_badge": false, "display_name": "Iceman", "active_status": "inactive", "verifications": ["0xc88135892864309c30ec51734b02ba197c137830"], "follower_count": 2342, "custody_address": "0x5ed9a31cc288a761cde7160645e1975c070d1968", "following_count": 1937, "verified_addresses": {"eth_addresses": ["0xc88135892864309c30ec51734b02ba197c137830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2VJJw\"}"}', 'sonata'), - (902854, '0xaa0e7799c6acc77a301e37574f0ec65c5be9c09f', 0, 1, '2024-05-07 06:52:26+00', 0, 1, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3103, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2324, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LUCtj\"}"}', 'sonata'), - (874493, '0x95452056d8d1db0ba5db653ee507fa75ec8c1f8b', 0, 1, '2024-05-07 05:59:48+00', 0, 3, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 967, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Guw0GTidmG8nH3Cz4v9k4?si=NcakDGvyTdGKl2aAROjU8w\"}"}', 'sonata'), - (839253, '0xb5aade16547f89524f68ae306b14571895005db2', 0, 1, '2024-05-07 04:51:16+00', 0, 0, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2223, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2264, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-575031428-67263114/3ybxfg6qiubf?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (839110, '0x4de9653da6826056faefaa81d64d3d52043059df', 0, 1, '2024-05-07 04:49:34+00', 0, 1, '{"fid": 286539, "object": "user", "pfp_url": "https://i.imgur.com/atCF5mk.jpg", "profile": {"bio": {"text": "about business, medical, coffee and food.", "mentioned_profiles": []}}, "username": "maruhani", "power_badge": false, "display_name": "Haniru🎩🍖", "active_status": "inactive", "verifications": ["0xf2cac69e4bb8d1b63bb3e1d8794a78035f44ed84"], "follower_count": 956, "custody_address": "0x233d43ad8fd4408a9a709aeb4f07f62b4463656c", "following_count": 1214, "verified_addresses": {"eth_addresses": ["0xf2cac69e4bb8d1b63bb3e1d8794a78035f44ed84"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/neweditionofficial/im-still-in-love-with-you-6?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (945234, '0xf2dcbf94f9dba709f18638f1a9ad6b8d1dcd488b', 0, 1, '2024-05-07 08:38:36+00', 0, 1, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1706, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/WXS6KCT5AQ37UASa8\"}"}', 'sonata'), - (911534, '0x613ec71edc4d807eaab6ae8dcdffeba7038d1924', 0, 1, '2024-05-07 07:04:50+00', 0, 4, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 316, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 537, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uHgBc\"}"}', 'sonata'), - (858376, '0xc2983dff3df3eb23ae983dd581b117ff19cfc633', 0, 1, '2024-05-07 05:32:21+00', 0, 2, '{"fid": 486193, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95baa334-c1cc-465f-e818-6b94f6616500/rectcrop3", "profile": {"bio": {"text": "일상, 소통, 여행, 맛집💕\n자주 소통해요! ", "mentioned_profiles": []}}, "username": "lilyjeong", "power_badge": false, "display_name": "Jeooong2", "active_status": "inactive", "verifications": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "follower_count": 1820, "custody_address": "0xede1aa09cac174e537213ff3936a68a4b468ff12", "following_count": 1926, "verified_addresses": {"eth_addresses": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Q9WePNS6YD2Lmsga9\"}"}', NULL), - (949868, '0x151bc6c88ff094183bdcd2843024250171a66606', 0, 1, '2024-05-07 08:52:59+00', 0, 1, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeong-yeon-seo-480604856/beautiful-ashes-onewe?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (807148, '0x8cd2d8c833c473d70d14aad4a7f0eeac0dcb801b', 0, 1, '2024-05-07 03:37:30+00', 0, 0, '{"fid": 500300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/39c71e16-1dd3-40ec-0491-f015afaaea00/rectcrop3", "profile": {"bio": {"text": "I''m mad of all kinds of drinks 🍸", "mentioned_profiles": []}}, "username": "swoo", "power_badge": false, "display_name": "Drunken_Sia🎩", "active_status": "inactive", "verifications": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "follower_count": 368, "custody_address": "0x60069e3161a3d5b14d19c56724126c2a16161cef", "following_count": 380, "verified_addresses": {"eth_addresses": ["0xbbe733e93adddf5819e401646ae2890ac15ea96b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to NewJeans 뉴진스 ''OMG'' by zelmoir3000 on #SoundCloud https://on.soundcloud.com/Va9jA\"}"}', NULL), - (812241, '0xc8776b52a45f527e7313bbdc8a31f051138ce301', 0, 1, '2024-05-07 03:46:39+00', 0, 1, '{"fid": 500262, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbkR53dVasVCecCSxk8vdg92vF39Zct65V3yUkLpjmMb7?filename=skywalker.png", "profile": {"bio": {"text": "freedom ✅Honestly.✅NO Farm✅NO Abusing✅ 무지개 반사🌈\n\n", "mentioned_profiles": []}}, "username": "selenayoon", "power_badge": false, "display_name": "Skywalker🍖 🌈", "active_status": "inactive", "verifications": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "follower_count": 1298, "custody_address": "0x1b1e2a16503e2802d95de4398bc50ccc527c7d48", "following_count": 1191, "verified_addresses": {"eth_addresses": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uqb4J7yR69ts5Dzx8\"}"}', 'sonata'), - (822253, '0x10bfef5307b40200df9e81b077ca51fd80110068', 0, 1, '2024-05-07 04:03:26+00', 0, 4, '{"fid": 473996, "object": "user", "pfp_url": "https://i.imgur.com/fNZgWUc.jpg", "profile": {"bio": {"text": "야식 가즈아~!!\n$ DEGEN / 조대리! 팔로우 해주시면 찾아가 3종 은혜 보답합니다! \nFollow me, A Degener always pays his debts", "mentioned_profiles": []}}, "username": "im-hayden", "power_badge": false, "display_name": "Go DEGEN", "active_status": "inactive", "verifications": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "follower_count": 1058, "custody_address": "0xe7887f54262b587dd1f1ee1ac5130b1a7da87682", "following_count": 1142, "verified_addresses": {"eth_addresses": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5PbSyRadVgPahnBx5\"}"}', 'sonata'), - (1173378, '0xe5dc7c1e7b56c116254129135a8c6aa49333ae2f', 1000, 1, '2024-05-15 21:38:12+00', 0, 2, '{"fid": 4163, "object": "user", "pfp_url": "https://i.imgur.com/lsVrWMs.jpg", "profile": {"bio": {"text": "🎩🍌Ethereum builder & people connector. @juicebox revnet.eth.limo defifa.net d33m:liv", "mentioned_profiles": []}}, "username": "kmacb.eth", "power_badge": true, "display_name": "KMac🎩🍌", "active_status": "inactive", "verifications": ["0x8b80755c441d355405ca7571443bb9247b77ec16"], "follower_count": 27627, "custody_address": "0x85f9886c48b17b534f3a64f2460dd9c04ab9a236", "following_count": 1858, "verified_addresses": {"eth_addresses": ["0x8b80755c441d355405ca7571443bb9247b77ec16"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1oTHteQbmJw15rPxPVXUTv\"}"}', NULL), - (816300, '0xdc7a5bd5df726778fe700ac090f65e9ea458d52e', 0, 1, '2024-05-07 03:51:42+00', 0, 9, '{"fid": 481486, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmR5BGMPmMtF93MD6ooXWbt33oMPfow8rRDEqHBzqwBT2s?filename=KakaoTalk_20230115_071916721_06.jpg", "profile": {"bio": {"text": "F4F 빠르고 정확 신속 소통 대응 반사1000%", "mentioned_profiles": []}}, "username": "oliviahong", "power_badge": false, "display_name": "HongHong", "active_status": "inactive", "verifications": ["0xb3542dd5af419ee2538a9c222dcab6d7f0d79c16"], "follower_count": 2321, "custody_address": "0x9c5f402d4ff808e57cd3cf53aa8664691a41f038", "following_count": 2136, "verified_addresses": {"eth_addresses": ["0xb3542dd5af419ee2538a9c222dcab6d7f0d79c16"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/djdadungedit/dj-dadung-xx-mix-covid-19-stress-mix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (820595, '0x574825f2b01e9dfbe34d6f758a7c2519c02df7e0', 0, 1, '2024-05-07 03:59:09+00', 0, 4, '{"fid": 448399, "object": "user", "pfp_url": "https://i.imgur.com/COsaKWy.jpg", "profile": {"bio": {"text": "디젠1달러가즈아$ 선팔.맞팔 끝까지갑니다.좋아요 리퀘는 사랑입니다.", "mentioned_profiles": []}}, "username": "daddyman", "power_badge": false, "display_name": "Daddyman", "active_status": "inactive", "verifications": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "follower_count": 1611, "custody_address": "0x6d8774f82e69b17974493a324ec868b6ac7514a6", "following_count": 1306, "verified_addresses": {"eth_addresses": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tKQYM\"}"}', 'sonata'), - (770907, '0xfc0c5d2a952aaa729949040f4ee6f7e9baec7e20', 0, 1, '2024-05-07 01:08:43+00', 0, 0, '{"fid": 18561, "object": "user", "pfp_url": "https://i.imgur.com/tEcz0eq.jpg", "profile": {"bio": {"text": "NFToholic, Web3 native, Metaverse MC, been out here through many bear and bull😉", "mentioned_profiles": []}}, "username": "ezincrypto", "power_badge": false, "display_name": "EZinCrypto", "active_status": "inactive", "verifications": ["0xfab9a3d37999e12252b47468d2ffd4be15936012"], "follower_count": 400, "custody_address": "0x7583d6be155e882f9cae50441e1d69dc13f72ac3", "following_count": 403, "verified_addresses": {"eth_addresses": ["0xfab9a3d37999e12252b47468d2ffd4be15936012"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/joseacabrerav/no-winters-land-unplugged\"}"}', NULL), - (902857, '0xafe1731b3a1cba1f04ced57ac7974ddfa9dbb4f7', 1603, 1, '2024-05-07 06:53:37+00', 32, 120, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1575, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 960, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SUAH7gHvd87wydtw8\"}"}', 'sonata'), - (839411, '0x958f919eedc48431bf2474ba2227d9965f82e141', 0, 1, '2024-05-07 04:54:15+00', 0, 0, '{"fid": 420326, "object": "user", "pfp_url": "https://i.imgur.com/Ijm5XxX.jpg", "profile": {"bio": {"text": "元パチンコ開発者、今はただのファン🎰\n仮想通貨と競馬とマンガやゲームが好き\n最近、warpcastに沼ってきている😅", "mentioned_profiles": []}}, "username": "bearishkato", "power_badge": false, "display_name": "ponpon🎩🥚", "active_status": "inactive", "verifications": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "follower_count": 718, "custody_address": "0x86e0d7d1a7f98dbdaac5e495fa36f1b79b18084f", "following_count": 1096, "verified_addresses": {"eth_addresses": ["0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ejj8iWUiWYJJrmDq9\"}"}', NULL), - (948866, '0x7cffd8b70a42b8938040b08ba7d85fe5ef71afc6', 0, 1, '2024-05-07 08:49:09+00', 0, 1, '{"fid": 451063, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dea5f59a-bb9a-4f77-9da4-58cb823c0900/original", "profile": {"bio": {"text": "I /gobig that''s why I am /builtdifferent", "mentioned_profiles": []}}, "username": "swifty", "power_badge": false, "display_name": "The.artist 🖌🎨", "active_status": "inactive", "verifications": ["0x4375a2f277069c6ddea80f3092344a7ab0dd1e17"], "follower_count": 225, "custody_address": "0x0173bef41522dfe8f321619be07b75a4b9e3bfc7", "following_count": 175, "verified_addresses": {"eth_addresses": ["0x4375a2f277069c6ddea80f3092344a7ab0dd1e17"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/toolroom-trax/sllash-doppe-kyrenia?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (813271, '0x3483437c1df38e290bce9d3ce62d1db36598222d', 0, 1, '2024-05-07 03:47:17+00', 0, 5, '{"fid": 501144, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNfcLjsgVPmvikXW3UNfCv6zivzKeEmtNWxTZDJqtNnP1?filename=photo-output.jpeg", "profile": {"bio": {"text": "Crash, crackle, crypto world💗", "mentioned_profiles": []}}, "username": "nahyeon", "power_badge": false, "display_name": "nahyeon🎩🍖💎🎶", "active_status": "inactive", "verifications": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "follower_count": 1254, "custody_address": "0x1f64eec39b8889da6b83536dda7eae8868855cfe", "following_count": 816, "verified_addresses": {"eth_addresses": ["0x20705fa27af22dfc29bb6702089c085464a04a36", "0x20705fa27af22dfc29bb6702089c085464a04a36"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/25453d04-a390-45ff-f02c-8d14b8f66c00/original\"}","{\"url\":\"https://on.soundcloud.com/XpEkDQW9MtDRxEHfA\"}"}', 'sonata'), - (818129, '0xeefd2091b3cf6415caa86ae7da20cf394bc35af9', 0, 1, '2024-05-07 03:54:09+00', 0, 1, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1705, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1302, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/gkr46CwU61q66PYJ9\"}"}', 'sonata'), - (820605, '0x48e636cca877cff80759e59551cf1d20bdc8b864', 0, 1, '2024-05-07 03:58:09+00', 0, 1, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7DYCRDtdVx62RE4t7\"}"}', NULL), - (1173319, '0x088290e9d465803a805d3b3376fa4317404be39b', 0, 1, '2024-05-15 19:17:22+00', 0, 3, '{"fid": 14515, "object": "user", "pfp_url": "https://i.imgur.com/ipJRbGn.gif", "profile": {"bio": {"text": "Playfully Controversial | Art in All The Fancy Places | Destigmatize | #cc0 |\nrc.xyz/empresstrash\nbeacons.ai/empresstrash\n/cryptoart\n/trash-art\n/empress-trash", "mentioned_profiles": []}}, "username": "empresstrash", "power_badge": true, "display_name": "Empress Trash 🎩🌈🖤", "active_status": "inactive", "verifications": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "follower_count": 2896, "custody_address": "0x1fe3a27087710e956deab0a498ec7f0f031a7da2", "following_count": 719, "verified_addresses": {"eth_addresses": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "sol_addresses": ["81gcTouikeKU4vtqWKGVuGwBA9yTgM3EbDCquPp6MGXE"]}}', '{"{\"url\":\"https://open.spotify.com/track/3d0cOnODFcbVxWpClu7tLm?si=857a9cd47dfe45d2\"}"}', NULL), - (839628, '0x9fd5383aab20e45b82a1137da91adb247808a278', 0, 1, '2024-05-07 04:55:02+00', 0, 6, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1419, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1642, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4c6gzFm5iyqjA86C8\"}"}', 'sonata'), - (799663, '0xb751936145f2172a13ea9d903723f9675cb7aced', 0, 1, '2024-05-07 03:21:53+00', 0, 41, '{"fid": 270684, "object": "user", "pfp_url": "https://i.imgur.com/yBkGIrw.gif", "profile": {"bio": {"text": "Artist, (Skullture)\nDegen,\nCryptoPunk,\nMy X - https://twitter.com/zaharia_af\n", "mentioned_profiles": []}}, "username": "zafgod", "power_badge": true, "display_name": "ZafGod 🎩 ", "active_status": "inactive", "verifications": ["0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3"], "follower_count": 15551, "custody_address": "0x3cff8ae0740248932b824545bed5e1a8ee47011e", "following_count": 684, "verified_addresses": {"eth_addresses": ["0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5751c735-737f-47e6-7ddb-bf71b4711700/original\"}","{\"url\":\"https://open.spotify.com/track/3Q1qtbLc4UQTdWBFrK5mU5?si=breTLthdTpusOp6MeBhP0w&context=spotify%3Aalbum%3A2WCnWcLzQj6nXIdJNeVUjM\"}"}', 'gifart'), - (818130, '0xa0e985e6f8c6c0ef6b7254d52d7c3170f3107972', 0, 1, '2024-05-07 03:54:35+00', 0, 1, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/38GX8DFfeFVWDq5D8\"}"}', NULL), - (821812, '0x5939ff7b44eaf3c7ef956c0449a582f7d019e9f4', 0, 1, '2024-05-07 04:01:45+00', 0, 3, '{"fid": 464182, "object": "user", "pfp_url": "https://i.imgur.com/lUv0zNG.jpg", "profile": {"bio": {"text": "안녕하세요😊잘 부탁드립니다 :)", "mentioned_profiles": []}}, "username": "eodeodd", "power_badge": false, "display_name": "클라", "active_status": "inactive", "verifications": ["0x5be29e46442492f66c53a565f1c35d354a02aaf7"], "follower_count": 1060, "custody_address": "0x9245088761f376d63087ddd3f26bd9861d745a2e", "following_count": 1022, "verified_addresses": {"eth_addresses": ["0x5be29e46442492f66c53a565f1c35d354a02aaf7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hjbA4uiju6iqwGXd9\"}"}', 'sonata'), - (839408, '0xada4e67b877ccb6f929cefd49401102931e83682', 0, 1, '2024-05-07 04:54:14+00', 0, 0, '{"fid": 486193, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95baa334-c1cc-465f-e818-6b94f6616500/rectcrop3", "profile": {"bio": {"text": "일상, 소통, 여행, 맛집💕\n자주 소통해요! ", "mentioned_profiles": []}}, "username": "lilyjeong", "power_badge": false, "display_name": "Jeooong2", "active_status": "inactive", "verifications": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "follower_count": 1818, "custody_address": "0xede1aa09cac174e537213ff3936a68a4b468ff12", "following_count": 1924, "verified_addresses": {"eth_addresses": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5jh1q4BAkrmSvLHD6\"}"}', NULL), - (807855, '0x20416853d7e4d8c187d15491484e948d7b96eadb', 0, 1, '2024-05-07 03:40:00+00', 0, 1, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1724, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2960, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/afjGF\"}"}', 'sonata'), - (839626, '0x6a37e15a72897d865021d7c613b6972416112ce2', 0, 1, '2024-05-07 04:56:47+00', 0, 0, '{"fid": 411315, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74fba8fa-c42c-433d-c2b7-1f2d60e5fa00/rectcrop3", "profile": {"bio": {"text": "Japanese living in Bangkok🇹🇭 Photographer📸 タイ在住。バンコクで会社経営。タイ生活のリアルや現地から写真をお届け!タイ旅行や移住のご相談は遠慮なくコメント、DMください😁", "mentioned_profiles": []}}, "username": "sukhumvit", "power_badge": false, "display_name": "Kasol", "active_status": "inactive", "verifications": ["0x24b725082d34e45c9c5affa42d2cbd8a2f9209c4"], "follower_count": 1061, "custody_address": "0x33a5410c674345cad95c85b7fa72818982b0009f", "following_count": 896, "verified_addresses": {"eth_addresses": ["0x24b725082d34e45c9c5affa42d2cbd8a2f9209c4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sHAEdyxwCdYMasV1A\"}"}', NULL), - (839631, '0x78c53eceabb96c4685519c68540c1902ba16c395', 0, 1, '2024-05-07 04:56:35+00', 0, 0, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3123, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2682, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to HNTR - Just a Dream by mau5trap on #SoundCloud https://on.soundcloud.com/i4e9x\"}"}', NULL), - (1173419, '0x7cf7d2a7967e85621bd7ca6d87fb3c814006ea73', 0, 1, '2024-05-15 23:20:56+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/6DwiGVCgXGREeCyJZtX7S1?si=M2trcSy0RX2zgNtZd1xUJw\"}"}', NULL), - (902843, '0x53d3f9d770e537e650c9bba5604dffa3753912be', 0, 1, '2024-05-07 06:53:28+00', 0, 4, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 316, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 536, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1ZMFT\"}"}', 'sonata'), - (807864, '0x7026ed9d7817f2a14bd70fc7766a2250fe1c32ae', 0, 1, '2024-05-07 03:39:57+00', 0, 2, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2529, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2530, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RTQc2\"}"}', 'sonata'), - (1173324, '0xb99fcfa9674bbf178837ca0a02c98f7a93ac2478', 2000, 1, '2024-05-15 20:10:49+00', 0, 2, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 519, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 186, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3onYsieuDICdVt5ULZSExF?si=6a440b9151274bca\"}"}', 'latinmusic'), - (818131, '0x236931acbf51b18d1fca649eb7ccc36215229100', 0, 1, '2024-05-07 03:53:54+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UBeUvok2QFn5T11YA\"}"}', NULL), - (851782, '0xec5f29754ac3e5f098f3b18c2bc0e4bbd32912ed', 0, 1, '2024-05-07 05:24:15+00', 0, 1, '{"fid": 495796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52ce7d-af8e-4823-b6bb-db4330a74f00/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Crypto/Animals/Fun/ 슈캐이용중 /맞팔100%", "mentioned_profiles": []}}, "username": "30uk", "power_badge": false, "display_name": "Jiwon", "active_status": "inactive", "verifications": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "follower_count": 1702, "custody_address": "0x0717678be60b82344743230571577199405a539d", "following_count": 2731, "verified_addresses": {"eth_addresses": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UuF8CNyxTEVG7YFF6\"}"}', 'sonata'), - (828136, '0xa4ec2d7d5a6bedec68c3b9b065b27a9f2b434c37', 0, 1, '2024-05-07 04:11:36+00', 0, 3, '{"fid": 410922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5188be57-e9e0-4de2-72bb-f0999eda2a00/original", "profile": {"bio": {"text": "Hi", "mentioned_profiles": []}}, "username": "rora", "power_badge": false, "display_name": "Rorachoi", "active_status": "inactive", "verifications": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "follower_count": 2733, "custody_address": "0x483497c64683bc51b3bbca1f4aef8c8dae693b27", "following_count": 2818, "verified_addresses": {"eth_addresses": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MyPb3ar7s9asBX5k8\"}"}', 'sonata'), - (839627, '0x291a77e439f0a6eaf632716eb0b59568247bbc64', 0, 1, '2024-05-07 04:55:41+00', 0, 8, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1765, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2211, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ne-yo/so-sick?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (902855, '0xd25789720824f0f1b12ed1c09dd246f72fd045f1', 0, 1, '2024-05-07 06:52:27+00', 0, 4, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/whatsonot/innerbloom-what-so-not-remix\"}"}', NULL), - (783971, '0xddae33ac689b5fee152b1142fbbb368b0fc0f06b', 0, 1, '2024-05-07 02:09:29+00', 0, 0, '{"fid": 382891, "object": "user", "pfp_url": "https://i.imgur.com/OpEpcBh.png", "profile": {"bio": {"text": "Freelance Writer. Independent Researcher. Building /opinion https://mirror.xyz/ameliehua.eth", "mentioned_profiles": []}}, "username": "ameliehua", "power_badge": false, "display_name": "Hua", "active_status": "inactive", "verifications": ["0x8142b9a50a603ea0ed05c5d71e91e0fc41a6ef0b"], "follower_count": 185, "custody_address": "0xa34b7edf8402617a31b3377631d6c9f28cd6e798", "following_count": 235, "verified_addresses": {"eth_addresses": ["0x8142b9a50a603ea0ed05c5d71e91e0fc41a6ef0b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Qj9Fy8BPbWmICTiNkuqB7\"}"}', NULL), - (918395, '0x6700fe5110f9702fb2c695f51580e652565256ce', 0, 1, '2024-05-07 07:11:58+00', 0, 1, '{"fid": 489893, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acfbf5f1-9b73-4e1e-3628-af1def309a00/rectcrop3", "profile": {"bio": {"text": "슈캐💛워캐💛Degen💛🎩💛", "mentioned_profiles": []}}, "username": "lovemango", "power_badge": false, "display_name": "Mango", "active_status": "inactive", "verifications": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "follower_count": 1534, "custody_address": "0xe2b9accc46f0747c26f07483ea17ab9fd21bd965", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ynhZR6Ex3WN4mzbh7\"}"}', 'sonata'), - (806640, '0xe29d5696187d48c388cff8e4f412ad0bd3d90e15', 0, 1, '2024-05-07 03:34:39+00', 0, 4, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2205, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2084, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2sharebts2/boy-with-luv?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (805466, '0xc1f5debd1f4321f00b8231b4cc9c03e8cd6cdc7e', 0, 1, '2024-05-07 03:31:12+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JrXeFTskiiijr6nE9\"}"}', NULL), - (821813, '0x0495fc56a32f40161c461fb41dd383a5446cf783', 0, 1, '2024-05-07 04:02:13+00', 0, 1, '{"fid": 491462, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f37f288c-17b8-461d-5675-95640156a900/original", "profile": {"bio": {"text": "Interesting to getting money", "mentioned_profiles": []}}, "username": "bannoo", "power_badge": false, "display_name": "Bannoo", "active_status": "inactive", "verifications": ["0x9ed3a8db7e0b9f13dc76b47fac7ef946b6ca42b2"], "follower_count": 345, "custody_address": "0xaf6c8d9d28e741d59eaa4117f0aac63c7ff93a5d", "following_count": 831, "verified_addresses": {"eth_addresses": ["0x9ed3a8db7e0b9f13dc76b47fac7ef946b6ca42b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user181262110/sets/disney-songs-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (821819, '0x07422ddf39282addab60cf9f8ee68abf68d98aca', 0, 1, '2024-05-07 04:02:22+00', 0, 3, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4963, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2466, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nojam74/0fe0dko1r8bv?si=ccd7e27d09dd41a69ba654bf3c43e158&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (818649, '0xa6f9651ecfe2fab4f3948b939d4bcfe3013a546e', 0, 1, '2024-05-07 03:55:56+00', 0, 0, '{"fid": 404927, "object": "user", "pfp_url": "https://i.imgur.com/QuHuLhE.jpg", "profile": {"bio": {"text": "F4F / \"2배+a\"로 보답합니다💜 / 슈퍼캐스트🚀 ", "mentioned_profiles": []}}, "username": "parkpyung", "power_badge": false, "display_name": "parkpyung🎩🍖", "active_status": "inactive", "verifications": ["0xcb166bc7748dd28730fbab086dc06a6d21f8fbc8"], "follower_count": 2066, "custody_address": "0xe9b4e29580c709681dbda71f364c48f98bf38454", "following_count": 1941, "verified_addresses": {"eth_addresses": ["0xcb166bc7748dd28730fbab086dc06a6d21f8fbc8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HBEwFyjDstWU8pTY7\"}"}', NULL), - (840180, '0xa94b99be54465c87fb99b8968aaf82db3a16cf1f', 0, 1, '2024-05-07 05:02:12+00', 0, 0, '{"fid": 501956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dfc974c9-092c-4b04-1eee-4d654ffca000/rectcrop3", "profile": {"bio": {"text": "Have a nice day. F4F", "mentioned_profiles": []}}, "username": "snowman7", "power_badge": false, "display_name": "Snow", "active_status": "inactive", "verifications": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "follower_count": 645, "custody_address": "0xa0a8ee605feab4e52ad51887e02672ea0b7cd81c", "following_count": 629, "verified_addresses": {"eth_addresses": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ericyimusic/hd-big-bang-monster-cover-by?si=dd7592c3260641eb9206d36a5c7ebf49&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (851784, '0x68cc63607947b2bb1c65c64c1cdaa1eaa294669c', 0, 1, '2024-05-07 05:24:58+00', 0, 2, '{"fid": 505951, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/43bc8085-0de9-4452-5ef4-d7d281b95300/rectcrop3", "profile": {"bio": {"text": "ROSÉ🌹\n찾아주셔서 감사합니다. Welcome ", "mentioned_profiles": []}}, "username": "raincome", "power_badge": false, "display_name": "roses🌹", "active_status": "inactive", "verifications": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "follower_count": 449, "custody_address": "0x08f3e8a20188bca1d014380c5fc772f2d4359189", "following_count": 308, "verified_addresses": {"eth_addresses": ["0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hGPMcm2pHhutAeZA6\"}"}', 'sonata'), - (1173354, '0xbbb7d071c0ed52cb5c7969148ce8f77a46acb871', 3000, 1, '2024-05-15 21:03:56+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6reF60Z1fDFvCpIVLlGupg?si=NdOnSeQyQCiStKOWgOPpAg\"}"}', NULL), - (807773, '0x975024d01d95180d469963c2c1d3e0ab91f48016', 0, 1, '2024-05-07 03:38:19+00', 0, 0, '{"fid": 503248, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf6a40ac-f61c-455e-0701-59d6f709c900/rectcrop3", "profile": {"bio": {"text": "hello~ let''s start again!🏃🏻", "mentioned_profiles": []}}, "username": "anyoyo", "power_badge": false, "display_name": "yoyo", "active_status": "inactive", "verifications": ["0x47a6d7223e375d33d7235c9654d728eb108d78ae"], "follower_count": 299, "custody_address": "0x671233c6ac0ffecdd45a28698ec8fb7b3203d924", "following_count": 743, "verified_addresses": {"eth_addresses": ["0x47a6d7223e375d33d7235c9654d728eb108d78ae"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/user-577073854/merry-go-round-hisaishi-joe\"}"}', NULL), - (839940, '0x333b910ee8f66cdc30a1443c539eab54888a9907', 0, 1, '2024-05-07 04:58:53+00', 0, 3, '{"fid": 503541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7bd157f-1901-484d-4e68-9a2d9c7abe00/rectcrop3", "profile": {"bio": {"text": "✔️소소한 일상공유✔️소소한 행복🍀 \n\n✔️The best is yet to come🔥", "mentioned_profiles": []}}, "username": "jmggang", "power_badge": false, "display_name": "PassionJM", "active_status": "inactive", "verifications": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "follower_count": 898, "custody_address": "0x3e587e88dca50b6e3f0b99f2645fefbb283ebe7d", "following_count": 917, "verified_addresses": {"eth_addresses": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5BFmXqeWWhBAjZ1o6\"}"}', 'sonata'), - (818652, '0x43159707593dbf60af1860a67e7732e31d060f89', 0, 1, '2024-05-07 03:56:33+00', 0, 0, '{"fid": 503496, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a82b474-8a6a-40c4-12a1-13c4062b2800/rectcrop3", "profile": {"bio": {"text": "Hello f4f 맞팔 Thank you", "mentioned_profiles": []}}, "username": "leo-", "power_badge": false, "display_name": "LeoLeo", "active_status": "inactive", "verifications": ["0x8475ee11ed898fb1d75756688affe3306a1ba814"], "follower_count": 882, "custody_address": "0x5167d24c50c9808676e0e1e437c8f1a9fc23457c", "following_count": 1253, "verified_addresses": {"eth_addresses": ["0x8475ee11ed898fb1d75756688affe3306a1ba814"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QvHjDuaEuLzWvAp5A\"}"}', NULL), - (924190, '0x395b1b79cc30eb35c17607e88d1b82b660683c72', 0, 1, '2024-05-07 07:36:16+00', 0, 2, '{"fid": 466312, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9975ea25-819f-429b-3969-c8c0ef401600/original", "profile": {"bio": {"text": "no longer a non-shiny and a non-lurker \n//\ni make dune dashboards\n//\nhttps://dune.com/whimsicott/pokemonensonfarcaster \n//\n⌐◨-◨ pilled", "mentioned_profiles": []}}, "username": "whimsicott.eth", "power_badge": false, "display_name": "Φ テ whimsi 🧢🎩", "active_status": "inactive", "verifications": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "follower_count": 144, "custody_address": "0x39a2de2cbdac5a19ed60f4c43e3ae5a539580a6b", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XtywGpphN84qRjQf6\"}"}', NULL), - (851796, '0xe567d9410b02f307a9016b589c62ae25ad60ff35', 0, 1, '2024-05-07 05:24:33+00', 0, 1, '{"fid": 434862, "object": "user", "pfp_url": "https://i.imgur.com/XdVircA.jpg", "profile": {"bio": {"text": "본조콜밋 입니다\n😎🤚\n같이 가시죠 🙏\nLETS GO 💯200%300%", "mentioned_profiles": []}}, "username": "bonjocallmit", "power_badge": false, "display_name": "본조콜밋🎩🍖⛓", "active_status": "inactive", "verifications": ["0x2b881a9e071172d871fd4680ba83fa293c519aab"], "follower_count": 2164, "custody_address": "0x78a8c931e726dbea324c4e13b6c42a98ddc631c0", "following_count": 1843, "verified_addresses": {"eth_addresses": ["0x2b881a9e071172d871fd4680ba83fa293c519aab"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LonCD\"}"}', 'sonata'), - (824801, '0x223b0a8029d49831b25e9eda34008d928c8bed1b', 0, 1, '2024-05-07 04:08:20+00', 0, 0, '{"fid": 410922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5188be57-e9e0-4de2-72bb-f0999eda2a00/original", "profile": {"bio": {"text": "Hi", "mentioned_profiles": []}}, "username": "rora", "power_badge": false, "display_name": "Rorachoi", "active_status": "inactive", "verifications": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "follower_count": 2733, "custody_address": "0x483497c64683bc51b3bbca1f4aef8c8dae693b27", "following_count": 2818, "verified_addresses": {"eth_addresses": ["0x13369c76e7b5c4308a6e6428acdc7b644d5966a2"], "sol_addresses": []}}', '{"{\"url\":\"Ariana Grande - yes, and? https://on.soundcloud.com/MyPb3ar7s9asBX5k8\"}"}', NULL), - (952626, '0xa628ad2ad0af5ede40ccf2cce52b3cfa487814b4', 0, 1, '2024-05-07 09:01:08+00', 0, 2, '{"fid": 507495, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2b8de9b9-8631-4730-d3a1-764d92058500/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!507495", "power_badge": false, "display_name": "nwjns", "active_status": "inactive", "verifications": ["0x1af8ac8bc8315958023665e32a99253020b05309"], "follower_count": 969, "custody_address": "0xffe6493776d4fc5dec35b8e8abcdd6f737518940", "following_count": 1468, "verified_addresses": {"eth_addresses": ["0x1af8ac8bc8315958023665e32a99253020b05309"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S3YUiD8dwpLnGM8d6\"}"}', NULL), - (881172, '0xca61d769a191f8f88700ed0d382041b3f8713b63', 0, 1, '2024-05-07 06:14:55+00', 0, 1, '{"fid": 416877, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffabf3c0-2b27-42f5-0428-137c31585e00/rectcrop3", "profile": {"bio": {"text": "AI Developer/육아/Crypto Lover !!\n좀 늦더라고 맞팔/반사 무조건 갑니당~\n한국어/日本語/中文/English 👌", "mentioned_profiles": []}}, "username": "dalpangpang", "power_badge": false, "display_name": "Dalpangang🎩", "active_status": "inactive", "verifications": ["0xaecef32d4df9c19de2d9cd202b65bac3f8dacdf4"], "follower_count": 1602, "custody_address": "0x2c6f6375608bf2b253d800ba51ec92411b9f35a4", "following_count": 1822, "verified_addresses": {"eth_addresses": ["0xaecef32d4df9c19de2d9cd202b65bac3f8dacdf4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xjydDMBVRQBbgvjL7\"}"}', 'sonata'), - (822498, '0x6f1ac8e8ac93484d5943ea0db8fcc7adb3f297b5', 0, 1, '2024-05-07 04:03:53+00', 0, 7, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3197, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3859, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share84/ateez-wave?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (814330, '0xabb0d1e50626448f7454c4666e9cc783a43e24ed', 0, 1, '2024-05-07 03:49:07+00', 0, 0, '{"fid": 507940, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4b4fd8d-7ccd-4641-62dc-82af221fb800/rectcrop3", "profile": {"bio": {"text": "My diary where I share my daily life <3\n", "mentioned_profiles": []}}, "username": "!507940", "power_badge": false, "display_name": "Vono", "active_status": "inactive", "verifications": ["0xeb0157f5f4ac2293561d65fe416dad9550f86705"], "follower_count": 92, "custody_address": "0xcb5c52587a3737eb6b38170ec75c5308023e5b8f", "following_count": 202, "verified_addresses": {"eth_addresses": ["0xeb0157f5f4ac2293561d65fe416dad9550f86705"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/acanegittakyu/asoto-union-think-aboutchu\"}"}', NULL), - (902848, '0x196cf86eeea9a638fd8a80dd724966dee8531d8a', 0, 1, '2024-05-07 06:53:38+00', 0, 1, '{"fid": 508296, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e3de37f4-ae24-4990-1a91-2e23b74e4000/original", "profile": {"bio": {"text": "love this world", "mentioned_profiles": []}}, "username": "!508296", "power_badge": false, "display_name": "jiajia971223", "active_status": "inactive", "verifications": ["0x5fc562c33c7d56a3a3b9ef67768552a8bb8407cd"], "follower_count": 12, "custody_address": "0x186fe937d6611632194a4acc69059c49c4b9c6ce", "following_count": 89, "verified_addresses": {"eth_addresses": ["0x5fc562c33c7d56a3a3b9ef67768552a8bb8407cd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (839941, '0x5a7860f3d58a32991171ba0703d7fcbd003b47ef', 0, 1, '2024-05-07 04:58:19+00', 0, 3, '{"fid": 442155, "object": "user", "pfp_url": "https://i.imgur.com/MBqUkHV.jpg", "profile": {"bio": {"text": "右も左も分かりません💦良かったらフォローお願いします🙇\nX(Twitter)もやっております💦\n\nhttps://x.com/taka070809", "mentioned_profiles": []}}, "username": "taka3100", "power_badge": false, "display_name": "チャコ♪ぽめ", "active_status": "inactive", "verifications": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "follower_count": 862, "custody_address": "0x62708690449ffc74aa92655739d96584602a9ed5", "following_count": 854, "verified_addresses": {"eth_addresses": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XuLMGcqc813g1Ysa8\"}"}', 'musicjp'), - (828168, '0x9961bbe6a9bb0488254fcf527dffdb7d024d19d0', 0, 1, '2024-05-07 04:11:54+00', 0, 0, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 81, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 250, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/paulapazos/modo-avion?referral_source=link\"}"}', NULL), - (824814, '0x295190f60c06bd6ffd3464d77d9192fc5fb2a74c', 1010, 1, '2024-05-07 04:06:44+00', 110, 65, '{"fid": 448399, "object": "user", "pfp_url": "https://i.imgur.com/COsaKWy.jpg", "profile": {"bio": {"text": "디젠1달러가즈아$ 선팔.맞팔 끝까지갑니다.좋아요 리퀘는 사랑입니다.", "mentioned_profiles": []}}, "username": "daddyman", "power_badge": false, "display_name": "Daddyman", "active_status": "inactive", "verifications": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "follower_count": 1611, "custody_address": "0x6d8774f82e69b17974493a324ec868b6ac7514a6", "following_count": 1306, "verified_addresses": {"eth_addresses": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UABWs\"}"}', 'sonata'), - (839943, '0x06f76880c20093c942c9bdeba0720255749c8de6', 0, 1, '2024-05-07 04:57:40+00', 0, 5, '{"fid": 509165, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9361601-73c9-4e20-727c-cc543e785700/rectcrop3", "profile": {"bio": {"text": "F4F 무조건 맞팔!!", "mentioned_profiles": []}}, "username": "!509165", "power_badge": false, "display_name": "cheonhs", "active_status": "inactive", "verifications": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "follower_count": 811, "custody_address": "0x6bcf73121e12de68c66963299a7ea8c0be67bffe", "following_count": 1410, "verified_addresses": {"eth_addresses": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LUpX8rjeKfuFgQtr6\"}"}', NULL), - (818679, '0xdbc0d9d457b769736903d2013e70b6bbdc67dbea', 0, 1, '2024-05-07 03:56:45+00', 0, 2, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 2060, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2887, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EcWjh\"}"}', 'sonata'), - (806632, '0xd02bf13f70708acf77918e408e33f72182eb741e', 0, 1, '2024-05-07 03:34:45+00', 0, 5, '{"fid": 388644, "object": "user", "pfp_url": "https://arweave.net/5v1K6iERUyiBU3Lsg8c5sxYLxAzux4MmQ5vue_59fCk/", "profile": {"bio": {"text": "I am Amir, but the good one.", "mentioned_profiles": []}}, "username": "sadeqiduki", "power_badge": false, "display_name": "Amir 🍖🔄🎩💎", "active_status": "inactive", "verifications": ["0x99003cfcad31e3b95be0f7e8e783b63533a916a3"], "follower_count": 1266, "custody_address": "0x568aca53fe0b0503b96d095ca7bfb48ce8b13444", "following_count": 700, "verified_addresses": {"eth_addresses": ["0x99003cfcad31e3b95be0f7e8e783b63533a916a3"], "sol_addresses": ["12uufqKMRu8Y2hoM9EKbVtYtUQ3RanXCJT6UFV9DqaAe"]}}', '{"{\"url\":\"https://on.soundcloud.com/rJb4fjcUyDnmYwEA8\"}"}', NULL), - (814331, '0xe0e04bc557731718d5a48c6c553b11dddc650506', 0, 1, '2024-05-07 03:49:00+00', 0, 2, '{"fid": 329782, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/31f24c01-cfaa-4b89-f0c6-6fa134d40200/original", "profile": {"bio": {"text": "부산 맛집채널 운영중\n/busan-hotplace\n", "mentioned_profiles": []}}, "username": "als901215", "power_badge": false, "display_name": "Crong 🎩🍖", "active_status": "inactive", "verifications": ["0x25e52ed2c80b96f5a6c4383db72db48f323fd504"], "follower_count": 1499, "custody_address": "0xcc2208dd3764b54a3e669e1c7eac24a6c199bdad", "following_count": 1720, "verified_addresses": {"eth_addresses": ["0x25e52ed2c80b96f5a6c4383db72db48f323fd504"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/zico-spot-feat-jennie?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (766317, '0x6fafd65f5b1501996f04213e156853869ac1a641', 210, 1, '2024-05-07 00:36:09+00', 0, 3, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman @ farcon", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 491, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby-vhs?si=6e26130be9944bbaab0afa8a85e42c43&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'bangers'), - (877143, '0xe6cf2a92c9aa415cf2af19f47eb35a2b5adc2589', 0, 1, '2024-05-07 06:04:30+00', 0, 3, '{"fid": 394889, "object": "user", "pfp_url": "https://i.imgur.com/mxnZUkX.jpg", "profile": {"bio": {"text": "Enjoy it in moderation🤗", "mentioned_profiles": []}}, "username": "hokaha", "power_badge": false, "display_name": "aha", "active_status": "inactive", "verifications": ["0x27786775fb295c160be26fe27e6ce8c5c95a31f0"], "follower_count": 2449, "custody_address": "0x42c8f17bddf519baa5cdcc4baad86fbf69bce301", "following_count": 2533, "verified_addresses": {"eth_addresses": ["0x27786775fb295c160be26fe27e6ce8c5c95a31f0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rPYZf\"}"}', 'sonata'), - (826990, '0xb16dd643ad5e12a88ce6c37604615d9ce41f65aa', 0, 1, '2024-05-07 04:11:11+00', 0, 0, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 81, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 250, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/heybela/heybela-session-001-ft-davyd?referral_source=link\"}"}', NULL), - (839871, '0xb4a92288c05af6e476cf7ca7f78033bb8cc43874', 0, 1, '2024-05-07 04:57:00+00', 0, 4, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 2059, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2888, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yw6br\"}"}', 'sonata'), - (818690, '0xe39fc4923bacf4c86ff9b50b8f02efa7c621986a', 0, 1, '2024-05-07 03:56:03+00', 0, 0, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 115, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 194, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Shy3eMCwcbDTmhqY9\"}"}', NULL), - (809557, '0xc86782b5f8ef964d7ed262abb169c9753b66e10a', 0, 1, '2024-05-07 03:42:14+00', 0, 3, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1094, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 959, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5kgVNGD9BDCYQiRh6\"}"}', 'sonata'), - (802038, '0x21e065bed5599696ce933e048c8bb9526206e2a6', 0, 1, '2024-05-07 03:23:55+00', 0, 1, '{"fid": 481970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3c31b1f-251d-4057-d7c6-81590502d400/rectcrop3", "profile": {"bio": {"text": "Artist | Web3 Marketing Specialist | Co-Founder: Minted Merch & LostArtistCo | @svvvg3.eth 💜", "mentioned_profiles": []}}, "username": "katkartel.eth", "power_badge": false, "display_name": "Kat Kartel", "active_status": "inactive", "verifications": ["0x109094d990adbdfc97c5c9ea5f5bce54f4eb1bdb"], "follower_count": 69, "custody_address": "0xe672f92af7eb43d338eab1f14546d60650e53a3a", "following_count": 184, "verified_addresses": {"eth_addresses": ["0x109094d990adbdfc97c5c9ea5f5bce54f4eb1bdb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5AoBNJQDXXEnIJGjJjZu3y?si=oAU7hogsTk2VnDhq0PsCoQ\"}"}', 'bangers'), - (822493, '0x37095099800c0929c0379bcc580f9d4ab12ab4cb', 0, 1, '2024-05-07 04:05:10+00', 0, 5, '{"fid": 501378, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4067342-4c1f-4d0f-3c01-3fa479b76500/rectcrop3", "profile": {"bio": {"text": "/Degen lover/crypto investor", "mentioned_profiles": []}}, "username": "bluemonster", "power_badge": false, "display_name": "BlueMonster🎩🍖🌈🌈🌈", "active_status": "inactive", "verifications": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "follower_count": 2059, "custody_address": "0xfa311b30c85da49246770e87b35f0cd39e9f4d79", "following_count": 2888, "verified_addresses": {"eth_addresses": ["0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3jKXH\"}"}', 'sonata'), - (1173351, '0xa78ce34953427c3bb5028b2bdc30c588e4e75eb7', 4000, 1, '2024-05-15 21:02:48+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6JYPtlf8twuCTnjCCqFT5X?si=xnN3rNIESOmXhED5rYff1w\"}"}', NULL), - (839944, '0xa22116076dc15f57dcdd414500425c1c431f0673', 0, 1, '2024-05-07 04:57:47+00', 0, 11, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2682, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2972, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1nB5f9HruxvsQehn8\"}"}', 'sonata'), - (877157, '0x88d1bbba0da27558a55f5b705a9dbdae8bdf935c', 0, 1, '2024-05-07 06:04:29+00', 0, 4, '{"fid": 401137, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreicsyezfqnce4pu77dnahnx543eivcihqyfgcqyzg7uvtv62niotcy", "profile": {"bio": {"text": "Iwanttoknowabouteverything. \n\n 소통이제일즐거워 뚠뚠🐜🐜🐜", "mentioned_profiles": []}}, "username": "godhee", "power_badge": false, "display_name": "Godhee 🍖🎩", "active_status": "inactive", "verifications": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "follower_count": 2758, "custody_address": "0xee713090ee73a3df4a8113b14862bc87a5a30af6", "following_count": 2933, "verified_addresses": {"eth_addresses": ["0x5bd1e9bea6128076370bbeb9292a103f1c277533"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xKP5LP3enE9vVcrk7\"}"}', 'sonata'), - (822271, '0x6631d0094a0e42579f46e84b2c77049adb9ae80a', 0, 1, '2024-05-07 04:02:40+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2668, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3139, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rDc6HPn196d5AAR9A\"}"}', NULL), - (824810, '0xa82dd8fdb34fa88bd8e8b781356da7c1bc9d173b', 0, 1, '2024-05-07 04:08:10+00', 0, 0, '{"fid": 508236, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59caaffb-4e06-4196-f253-0d1f74056100/rectcrop3", "profile": {"bio": {"text": "A round world\n\n세계로 가💡", "mentioned_profiles": []}}, "username": "ticdog", "power_badge": false, "display_name": "Javis", "active_status": "inactive", "verifications": ["0x7428e5e5e414c1b0d55eac81fe0f21d11f5b57cc"], "follower_count": 253, "custody_address": "0x5011a25a9856620d29f7ee36f38551d331293532", "following_count": 495, "verified_addresses": {"eth_addresses": ["0x7428e5e5e414c1b0d55eac81fe0f21d11f5b57cc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/montellfish/coming-home-to-you?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (809515, '0x21cbcd3a983b20f559ee82313fbda18139cecc2f', 0, 1, '2024-05-07 03:42:10+00', 0, 2, '{"fid": 500262, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbkR53dVasVCecCSxk8vdg92vF39Zct65V3yUkLpjmMb7?filename=skywalker.png", "profile": {"bio": {"text": "freedom ✅Honestly.✅NO Farm✅NO Abusing✅ 무지개 반사🌈\n\n", "mentioned_profiles": []}}, "username": "selenayoon", "power_badge": false, "display_name": "Skywalker🍖 🌈", "active_status": "inactive", "verifications": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "follower_count": 1298, "custody_address": "0x1b1e2a16503e2802d95de4398bc50ccc527c7d48", "following_count": 1191, "verified_addresses": {"eth_addresses": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/horguslu-oglu/narciso-yepes-guitarist-concerto-de-aranjuez-adagio-by-joaquin-rodrigo?si=baa801d94cd541b58676e46706a86923&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (809517, '0x5bd8cd530ae0d913d74fcbb491d7ffa5810c0639', 0, 1, '2024-05-07 03:41:58+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/a6dZCs5teq6ZCKwu9\"}"}', NULL), - (877165, '0xe95c55d920ada47a4022c7698a5d52e12845ecdd', 0, 1, '2024-05-07 06:03:47+00', 0, 4, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1241, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1438, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eUvtt\"}"}', 'sonata'), - (839947, '0x6e7210bb6e1ca35137498e6df9a9e04c05147879', 0, 1, '2024-05-07 04:58:08+00', 0, 0, '{"fid": 459252, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbPVzQRUDbcyETMCvt4vt6QN3GZwnRGoEKyTyHTzyJ85p?filename=..-5-12-screenshot.png", "profile": {"bio": {"text": "My Life is Gold", "mentioned_profiles": []}}, "username": "nomong", "power_badge": false, "display_name": "Nomong2", "active_status": "inactive", "verifications": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "follower_count": 1381, "custody_address": "0xc50f4e6e0cd1d5076d64e68662e9798f9fbab778", "following_count": 1856, "verified_addresses": {"eth_addresses": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ionmazur/ernst-last-rose-of-the-summer-ion-mazur-violin?si=2539967c9e7045b8a7bd9bdc55f8747f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (840188, '0x3995e8e910c54e9b81cfeb96b3d1c5ef5006c883', 0, 1, '2024-05-07 05:00:32+00', 0, 5, '{"fid": 509165, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9361601-73c9-4e20-727c-cc543e785700/rectcrop3", "profile": {"bio": {"text": "F4F 무조건 맞팔!!", "mentioned_profiles": []}}, "username": "!509165", "power_badge": false, "display_name": "cheonhs", "active_status": "inactive", "verifications": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "follower_count": 813, "custody_address": "0x6bcf73121e12de68c66963299a7ea8c0be67bffe", "following_count": 1410, "verified_addresses": {"eth_addresses": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Jrrv38H69KPMKLXm6\"}"}', NULL), - (1173394, '0x148f7897f2a55246eaa1dbf2e33c8c46094604f1', 0, 1, '2024-05-15 22:29:39+00', 0, 2, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/5iHO0dAm9FmDA017mWdFkB?si=pZzk4LnlSqeBspoxCv4XZA\"}"}', NULL), - (818658, '0xb927bf6242150378d9f2eba0444ccc17df60833c', 0, 1, '2024-05-07 03:56:12+00', 0, 0, '{"fid": 503496, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a82b474-8a6a-40c4-12a1-13c4062b2800/rectcrop3", "profile": {"bio": {"text": "Hello f4f 맞팔 Thank you", "mentioned_profiles": []}}, "username": "leo-", "power_badge": false, "display_name": "LeoLeo", "active_status": "inactive", "verifications": ["0x8475ee11ed898fb1d75756688affe3306a1ba814"], "follower_count": 882, "custody_address": "0x5167d24c50c9808676e0e1e437c8f1a9fc23457c", "following_count": 1253, "verified_addresses": {"eth_addresses": ["0x8475ee11ed898fb1d75756688affe3306a1ba814"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QvHjDuaEuLzWvAp5A\"}"}', NULL), - (875938, '0x0302c5ba69557523055223bc33eced36d09ddd69', 0, 1, '2024-05-07 06:02:12+00', 0, 4, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "follower_count": 696, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 653, "verified_addresses": {"eth_addresses": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6h5XDQlLhrqSERsaw8sn2S?si=d48a30caf5a542ec\"}"}', 'sonata'), - (802418, '0xf1716c7f3fdd771cc2a13ece21c28c9b7e58d270', 0, 1, '2024-05-07 03:25:10+00', 0, 2, '{"fid": 515885, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/64263222-b4d8-42c5-4015-31b24b619600/rectcrop3", "profile": {"bio": {"text": "Follow for follow back", "mentioned_profiles": []}}, "username": "!515885", "power_badge": false, "display_name": "I.K Lover", "active_status": "inactive", "verifications": ["0x9209b4eb58c504b61ad96f71b8d20ab099bf8f91"], "follower_count": 291, "custody_address": "0x9209b4eb58c504b61ad96f71b8d20ab099bf8f91", "following_count": 905, "verified_addresses": {"eth_addresses": ["0x9209b4eb58c504b61ad96f71b8d20ab099bf8f91"], "sol_addresses": ["43NasrQc8JV8QCKMWXwJskeWEDqYdwajPZj2gNhxUc2f", "43NasrQc8JV8QCKMWXwJskeWEDqYdwajPZj2gNhxUc2f"]}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/cypher-open-mic\"}"}', NULL), - (840189, '0xf487070b5793b09ecd571d127a6610f0719ad746', 0, 1, '2024-05-07 05:01:15+00', 0, 2, '{"fid": 510268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/898f749f-e8b3-4020-1ac6-eb543d004e00/rectcrop3", "profile": {"bio": {"text": "Hello world/\n\nArtists, designers🎨 ", "mentioned_profiles": []}}, "username": "!510268", "power_badge": false, "display_name": "doonut", "active_status": "inactive", "verifications": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "follower_count": 451, "custody_address": "0xc1b763b680989873b5abb1bf82730b339bddd5f0", "following_count": 710, "verified_addresses": {"eth_addresses": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/disco-gram/discogram-susana-free-download?in=sc-playlists-kr/sets/disco-fever&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (815750, '0xc862ffbfee61fc635a4096e8fd1f7fbbf0f4be06', 0, 1, '2024-05-07 03:49:35+00', 0, 2, '{"fid": 423559, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdoXAH6xTKfiCR1qrdHcx5SaAANNXudS1YEmv27SPne8d?filename=.gif", "profile": {"bio": {"text": "F4F// Hi, I''m jonny :D Thank you for visiting. If you leave a trace, I''ll visit you! I hope you have a nice day in warpcast", "mentioned_profiles": []}}, "username": "jonnyjonny", "power_badge": false, "display_name": "Jonny", "active_status": "inactive", "verifications": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "follower_count": 1324, "custody_address": "0xde5d220b53d6015b7a6af20036a5673fbd30a3fe", "following_count": 2131, "verified_addresses": {"eth_addresses": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2jyzwg8ZIXvzOI0zIGP9W7\"}"}', 'sonata'), - (877186, '0xe7cedd8177e9609ae4dc4537e274b569665c2644', 0, 1, '2024-05-07 06:03:42+00', 0, 2, '{"fid": 248509, "object": "user", "pfp_url": "https://i.imgur.com/YglXOof.jpg", "profile": {"bio": {"text": "I love my family", "mentioned_profiles": []}}, "username": "985412", "power_badge": false, "display_name": "Mansoureh🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x4465358bfedabdc99f0a20c5d42b4945a79af03a"], "follower_count": 1433, "custody_address": "0xbdfb1316fef80f66658fba7ca71d617ad3ba0e18", "following_count": 1850, "verified_addresses": {"eth_addresses": ["0x4465358bfedabdc99f0a20c5d42b4945a79af03a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/milad98/majid-yahyaei-beham-mirizeh?si=e7665b0a366a4f1c8ae2f774d4e84b7c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (906701, '0x3b9a42c549f4aec26d37a8bb4ccf9c85b2da56ad', 0, 1, '2024-05-07 06:55:37+00', 0, 1, '{"fid": 468054, "object": "user", "pfp_url": "https://i.imgur.com/X5JABnE.jpg", "profile": {"bio": {"text": "워친 한국인", "mentioned_profiles": []}}, "username": "btsbts", "power_badge": false, "display_name": "btsbts", "active_status": "inactive", "verifications": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "follower_count": 2063, "custody_address": "0xb63ddb5a32597b17576016f6f21f2479ded87762", "following_count": 2656, "verified_addresses": {"eth_addresses": ["0xb1f1658832da1624f5a7c1ef829ebe05069e5732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mojock_bts/bts-the-earth-traveler-studio-version?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (806124, '0xc487e34e81a4dc4a152482df5476924ebb46b926', 0, 1, '2024-05-07 03:33:53+00', 0, 7, '{"fid": 500986, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a96d3b22-0ba7-4c81-5171-af59cbda1800/rectcrop3", "profile": {"bio": {"text": "달콤한 초코초코예요❤️🤎\n잘부탁해용😘", "mentioned_profiles": []}}, "username": "chocochoco", "power_badge": false, "display_name": "초코초코🍩🍫🎩", "active_status": "inactive", "verifications": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "follower_count": 1341, "custody_address": "0x3f370379ba03bd08832fb6f0ec20151a34cf914f", "following_count": 757, "verified_addresses": {"eth_addresses": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/biq9W\"}"}', 'sonata'), - (916739, '0x5c9a1258968a2d18439dee2ea873aae591f16b81', 0, 1, '2024-05-07 07:10:33+00', 0, 0, '{"fid": 399796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d79ee2f8-924d-4313-b433-81d5db330d00/rectcrop3", "profile": {"bio": {"text": "Degen spirit meets global wanderlust & cuisine quests. Early adopter, savoring life’s simplicities & cool vibes. ", "mentioned_profiles": []}}, "username": "degen-master", "power_badge": false, "display_name": "Max", "active_status": "inactive", "verifications": ["0x1c89d7d1721770fd404bc9d7702696a2951c9a46"], "follower_count": 419, "custody_address": "0xdb75ea773c2402787d899429fb02fea21ccb4f29", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x1c89d7d1721770fd404bc9d7702696a2951c9a46"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2XaWJtJsjjbwbdHc6\"}"}', NULL), - (1173492, '0xeededc22e5a263fac9c449f427a3f1c0505ba746', 1000, 1, '2024-05-16 03:36:27+00', 0, 5, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🇯🇵💿", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1159, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1007, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0IZonFIeRHblWsP0pFieyS?si=c63282a35ae74615\"}"}', 'clique-tracks'), - (822500, '0xa6df5c5fabfe55ae63263e482091addd15def119', 0, 1, '2024-05-07 04:05:03+00', 0, 0, '{"fid": 506783, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZwo8f62hDBqKVPMKEce77h5sHqXmC1GJb11MLs6rv7Ww?filename=(3).jpg", "profile": {"bio": {"text": "hello sooah", "mentioned_profiles": []}}, "username": "!506783", "power_badge": false, "display_name": "jungsooah", "active_status": "inactive", "verifications": ["0x3dff897a7f229f7d5666de577c3e5cc760851cc6"], "follower_count": 83, "custody_address": "0x7c5de87f046811edc6670ea1a19827e8a95a7e8e", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x3dff897a7f229f7d5666de577c3e5cc760851cc6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/iew-v-828617851/red-velvet-russian-roulette?si=d1e2990dcbc74bddb132b5443712415e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (818694, '0x5d2235b47fe1231aa50e76c10c69cb38165b9be2', 0, 1, '2024-05-07 03:55:34+00', 0, 1, '{"fid": 246627, "object": "user", "pfp_url": "https://i.imgur.com/h9TvjYH.jpg", "profile": {"bio": {"text": "i''m donny", "mentioned_profiles": []}}, "username": "donny-donny", "power_badge": false, "display_name": "donny🎩 🍖", "active_status": "inactive", "verifications": ["0xf17fbe2dcb26ffdd621ae04719a4d10b19913edd"], "follower_count": 742, "custody_address": "0x72772fd1e39bc4c3b0698ba7c30eef7d7f455060", "following_count": 887, "verified_addresses": {"eth_addresses": ["0xf17fbe2dcb26ffdd621ae04719a4d10b19913edd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sonic-exe-711037897/we-cant-be-friends-wait-for-your-love-ariana-grandesped-up?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmS3nqHXHUAUvY1NTYSSTrLwfYLema2n5ZtX6HhVnQcm95?filename=image.png\"}"}', 'sonata'), - (821824, '0x01e438cd392dee6dbd28527ec0c9f00352fafaeb', 0, 1, '2024-05-07 04:01:49+00', 0, 5, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2223, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2264, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x6YQJ\"}"}', 'sonata'), - (950261, '0xc8a2b23356ed93d83e4cabf71e85c524545c9e3f', 0, 1, '2024-05-07 08:54:39+00', 0, 1, '{"fid": 451063, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dea5f59a-bb9a-4f77-9da4-58cb823c0900/original", "profile": {"bio": {"text": "I /gobig that''s why I am /builtdifferent", "mentioned_profiles": []}}, "username": "swifty", "power_badge": false, "display_name": "The.artist 🖌🎨", "active_status": "inactive", "verifications": ["0x4375a2f277069c6ddea80f3092344a7ab0dd1e17"], "follower_count": 225, "custody_address": "0x0173bef41522dfe8f321619be07b75a4b9e3bfc7", "following_count": 175, "verified_addresses": {"eth_addresses": ["0x4375a2f277069c6ddea80f3092344a7ab0dd1e17"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ina-ervi/made-in-romania?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'romania'), - (771579, '0x62190a907065a06148f22a621cf4a6ae69a63529', 1000, 1, '2024-05-07 01:15:03+00', 0, 1, '{"fid": 2461, "object": "user", "pfp_url": "https://i.imgur.com/zNjXy7f.jpg", "profile": {"bio": {"text": "{ full circle } ◎︎ { host } // ↝↝↝ follow @fullcircle ↜↜↜ ", "mentioned_profiles": []}}, "username": "lwsnbaker", "power_badge": true, "display_name": "{ Lawson.fm } ⭕️", "active_status": "inactive", "verifications": ["0x135c21b2da426760718e39da954974c4572ae9f6"], "follower_count": 603, "custody_address": "0xae4a6486e904e9a22826376cc7bb226debc0b252", "following_count": 151, "verified_addresses": {"eth_addresses": ["0x135c21b2da426760718e39da954974c4572ae9f6"], "sol_addresses": []}}', '{"{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmXASvT22qwszRaWHXAHzGhJL8zuw4cB97GTqgUg7u82Gr?filename=image.png\"}","{\"url\":\"https://www.sound.xyz/mialailani/play-out-ft-latasha-remix\"}"}', NULL), - (819471, '0x30db63cbc077c2318affb9817ee469fcb64c4755', 0, 1, '2024-05-07 03:57:09+00', 0, 1, '{"fid": 461302, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f20ea39c-42ac-43eb-912b-dc4e90c64e00/rectcrop3", "profile": {"bio": {"text": "Hello~", "mentioned_profiles": []}}, "username": "dd8", "power_badge": false, "display_name": "dd8", "active_status": "inactive", "verifications": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "follower_count": 2671, "custody_address": "0xaea1e717380b4d1722164a4cba18c50e059479c4", "following_count": 2016, "verified_addresses": {"eth_addresses": ["0xaed98608ccdf79238aed02c21390caed483c87d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lucky-571222232/degen-to-the-moon?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (810363, '0x3bca4f3c109cd5f30c67ac82b24a8704d673addb', 0, 1, '2024-05-07 03:43:11+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5iSHVwsssktqvtjz5\"}"}', NULL), - (877206, '0x312fed2adbe627a0b1d2dd751778df21dfa5f81f', 0, 1, '2024-05-07 06:05:44+00', 0, 0, '{"fid": 436819, "object": "user", "pfp_url": "https://2jukrz4coow5njxjuld44cc6skw5bdusjzhcw2f3qzp3tnlppajq.arweave.net/0mio54Jzrdam6aLHzghekq3QjpJOTitou4ZfubVveBM/", "profile": {"bio": {"text": "Interested in the decentralized and Blockchain world\nClimber\nNature Lover\n\n", "mentioned_profiles": []}}, "username": "0xariantq", "power_badge": false, "display_name": "0xAriantq 🔄 🎩", "active_status": "inactive", "verifications": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "follower_count": 694, "custody_address": "0x2b237b7c0bdd2ea29b2a55388f9d0279e9c39d2f", "following_count": 827, "verified_addresses": {"eth_addresses": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/avwhAaodZhi1K4wr9\"}"}', NULL), - (815777, '0xf301c25ea4b4b17d26dad78dab6e363f77561396', 0, 1, '2024-05-07 03:50:43+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UBeUvok2QFn5T11YA\"}"}', NULL), - (819505, '0x7c31f22356d6e7c7dec438d19e54a2cdbd275f86', 0, 1, '2024-05-07 03:57:25+00', 0, 2, '{"fid": 404927, "object": "user", "pfp_url": "https://i.imgur.com/QuHuLhE.jpg", "profile": {"bio": {"text": "F4F / \"2배+a\"로 보답합니다💜 / 슈퍼캐스트🚀 ", "mentioned_profiles": []}}, "username": "parkpyung", "power_badge": false, "display_name": "parkpyung🎩🍖", "active_status": "inactive", "verifications": ["0xcb166bc7748dd28730fbab086dc06a6d21f8fbc8"], "follower_count": 2066, "custody_address": "0xe9b4e29580c709681dbda71f364c48f98bf38454", "following_count": 1941, "verified_addresses": {"eth_addresses": ["0xcb166bc7748dd28730fbab086dc06a6d21f8fbc8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HBEwFyjDstWU8pTY7\"}"}', 'sonata'), - (824806, '0x7756344cfac397b985a633a50f2f0716020cf1a1', 1000, 1, '2024-05-07 04:07:08+00', 0, 1, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 301, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 509, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://on.soundcloud.com/FfsBM7WcoES3E9Tz8\"}"}', 'musicjp'), - (840513, '0x37326854b62ef264d09e8b47cd4a9b403f78bf32', 0, 1, '2024-05-07 05:04:47+00', 0, 1, '{"fid": 432080, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6573282d-aa86-4949-14f7-eff122a26f00/original", "profile": {"bio": {"text": "Building securitylabs.xyz\n\nPassionate about mathematical sociology simulations, dynamical systems and cryptographic protocols :)", "mentioned_profiles": []}}, "username": "flancaster", "power_badge": false, "display_name": "FelipeFlores.⌐◨-◨", "active_status": "inactive", "verifications": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "follower_count": 52, "custody_address": "0xfcfdecfc528dad0ba4e23940939eb8bca199b2be", "following_count": 28, "verified_addresses": {"eth_addresses": ["0x88eb76fe6a0c439394cab8956cdfc7f84922f73b"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":432080,\"hash\":\"0x4edba969dcee03aecaa6ac2560cee39064f35c88\"}}","{\"url\":\"https://soundcloud.com/taiki02/digimon-world-4-humid-cave\"}"}', NULL), - (1173396, '0xe36dd508d345d430102b6fce19b37c469ef20b9a', 2011, 1, '2024-05-15 22:40:13+00', 1, 3, '{"fid": 4163, "object": "user", "pfp_url": "https://i.imgur.com/lsVrWMs.jpg", "profile": {"bio": {"text": "🎩🍌Ethereum builder & people connector. @juicebox revnet.eth.limo defifa.net d33m:liv", "mentioned_profiles": []}}, "username": "kmacb.eth", "power_badge": true, "display_name": "KMac🎩🍌", "active_status": "inactive", "verifications": ["0x8b80755c441d355405ca7571443bb9247b77ec16"], "follower_count": 27627, "custody_address": "0x85f9886c48b17b534f3a64f2460dd9c04ab9a236", "following_count": 1858, "verified_addresses": {"eth_addresses": ["0x8b80755c441d355405ca7571443bb9247b77ec16"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7yotKA30dwTKNEGomV9ZsI\"}"}', NULL), - (815780, '0xf66c70b2eb1b5f9a82956528067a77047ab56af2', 0, 1, '2024-05-07 03:50:21+00', 0, 1, '{"fid": 455076, "object": "user", "pfp_url": "https://i.imgur.com/ymn9Qer.jpg", "profile": {"bio": {"text": "Hi nice to see u :)", "mentioned_profiles": []}}, "username": "yerinnn", "power_badge": false, "display_name": "yerin", "active_status": "inactive", "verifications": ["0xdcd6d315326c77742f3aec25e7270839c9f3fb45"], "follower_count": 1182, "custody_address": "0x4cca9cc40cef5da5e1a384e0d5497d8878498d4b", "following_count": 804, "verified_addresses": {"eth_addresses": ["0xdcd6d315326c77742f3aec25e7270839c9f3fb45"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/isabonquisha/24k-magic-album-bruno-mars?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (810368, '0x97a3612600fe788b87f8c86d3097ab18421bcbb6', 0, 1, '2024-05-07 03:42:44+00', 0, 3, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2205, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2084, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com\"}"}', NULL), - (840514, '0x4d71561f207a49beab1e130b2673d31a172feb95', 0, 1, '2024-05-07 05:05:13+00', 0, 3, '{"fid": 509165, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9361601-73c9-4e20-727c-cc543e785700/rectcrop3", "profile": {"bio": {"text": "F4F 무조건 맞팔!!", "mentioned_profiles": []}}, "username": "!509165", "power_badge": false, "display_name": "cheonhs", "active_status": "inactive", "verifications": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "follower_count": 813, "custody_address": "0x6bcf73121e12de68c66963299a7ea8c0be67bffe", "following_count": 1410, "verified_addresses": {"eth_addresses": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZcCnSmrU8aXJgBPz7\"}"}', 'sonata'), - (822701, '0x584f5511a8777da90bb82d3e37605daf07b489ab', 0, 1, '2024-05-07 04:06:05+00', 0, 3, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2668, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3139, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rDc6HPn196d5AAR9A\"}"}', 'sonata'), - (924188, '0x14651b67ebe7fe085e58f908d907db81995878d0', 0, 1, '2024-05-07 07:36:26+00', 0, 2, '{"fid": 466312, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9975ea25-819f-429b-3969-c8c0ef401600/original", "profile": {"bio": {"text": "no longer a non-shiny and a non-lurker \n//\ni make dune dashboards\n//\nhttps://dune.com/whimsicott/pokemonensonfarcaster \n//\n⌐◨-◨ pilled", "mentioned_profiles": []}}, "username": "whimsicott.eth", "power_badge": false, "display_name": "Φ テ whimsi 🧢🎩", "active_status": "inactive", "verifications": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "follower_count": 144, "custody_address": "0x39a2de2cbdac5a19ed60f4c43e3ae5a539580a6b", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TfqCXqXPShX6427E8\"}"}', NULL), - (851797, '0x6aa07b3dd2112dafa229e23d3b9d463ccd0de175', 0, 1, '2024-05-07 05:24:55+00', 0, 2, '{"fid": 385250, "object": "user", "pfp_url": "https://i.imgur.com/F56qHvX.gif", "profile": {"bio": {"text": "LFG🔥🔥🔥\ndrakula \nhttps://drakula.app/user/kiba333?invite=dTJbm8", "mentioned_profiles": []}}, "username": "kiba333", "power_badge": false, "display_name": "kibakiba.degen🎩", "active_status": "inactive", "verifications": ["0x308d912e26eeb489d313765e5662b5c860220efa", "0xb55e7a149f51dada6150a3176b1946e1f005dd62"], "follower_count": 557, "custody_address": "0x1afb0ca345a75597965b7b1c080e2e20102f925c", "following_count": 886, "verified_addresses": {"eth_addresses": ["0x308d912e26eeb489d313765e5662b5c860220efa", "0xb55e7a149f51dada6150a3176b1946e1f005dd62"], "sol_addresses": ["2oU1cHniEYM5ByKTDnfYUqdPCq3wNEAg6CUCXMu2z9Zu"]}}', '{"{\"url\":\"https://open.spotify.com/track/5yxIenY5kSLlgTr3XGYw9p?si=4ZACfPJeQPW3f2YY27jNFA&context=spotify%3Atrack%3A5yxIenY5kSLlgTr3XGYw9p\"}"}', NULL), - (902849, '0x80588e0db632b712ef31bf04d93a3c0e970a9516', 0, 1, '2024-05-07 06:52:49+00', 0, 3, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/theophilusl/11-i-stand-alone-042111\"}"}', NULL), - (821834, '0x193c585f4a36c0e2abf5697a4ab015bb1a988d1a', 0, 1, '2024-05-07 04:01:21+00', 0, 0, '{"fid": 422681, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3583f305-f068-42b6-11e9-27eee95ef200/rectcrop3", "profile": {"bio": {"text": "Degen / TN00x / Enjoy ", "mentioned_profiles": []}}, "username": "closecast", "power_badge": false, "display_name": "goat⚽️", "active_status": "inactive", "verifications": ["0x9999aaa8f2b377d59c52bfa90224ac381c0778ce"], "follower_count": 1004, "custody_address": "0x4834daab503040f5378064319a9e10ac92c1d627", "following_count": 716, "verified_addresses": {"eth_addresses": ["0x9999aaa8f2b377d59c52bfa90224ac381c0778ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4tPB6qqhyvkQMjeK7\"}"}', NULL), - (810371, '0x76778687ad4376431155bfb4b3ae47a72ddb709f', 0, 1, '2024-05-07 03:43:26+00', 0, 4, '{"fid": 501083, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd325875-0b22-4d4f-b23f-fb7d3e6bb800/rectcrop3", "profile": {"bio": {"text": "맞팔 매우 환영!! ", "mentioned_profiles": []}}, "username": "sun111", "power_badge": false, "display_name": "Spring1", "active_status": "inactive", "verifications": ["0xd1a5b9caabade7afbd14e8885a8b785bcff50a59"], "follower_count": 1241, "custody_address": "0x8dbe6ba722a3ca495bc3be416099c46880b5b239", "following_count": 1421, "verified_addresses": {"eth_addresses": ["0xd1a5b9caabade7afbd14e8885a8b785bcff50a59"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KJKRx\"}"}', 'sonata'), - (1173337, '0x96d64978ebeebf2de80a7b97d2d9bb4ffad2aee4', 0, 1, '2024-05-15 20:38:18+00', 1, 2, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 519, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 186, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5bfMCnJZF1VYMa806m0mL2?si=a1f221fbcbbe41e2\"}"}', NULL), - (815771, '0x0d00704eeef51a1772c74caa5c7f063c366be377', 0, 1, '2024-05-07 03:50:40+00', 0, 0, '{"fid": 508924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9577aec6-5fb8-45ba-c1c6-87264545fa00/rectcrop3", "profile": {"bio": {"text": "Patience is always a reward🙏💓", "mentioned_profiles": []}}, "username": "!508924", "power_badge": false, "display_name": "Daegu vk🎩🍖", "active_status": "inactive", "verifications": ["0xc73601486eaab127b05a878559c5bed2c7f3e125"], "follower_count": 198, "custody_address": "0xc59b85e5c22a172fa6bd51bb2aead61e1185a31f", "following_count": 431, "verified_addresses": {"eth_addresses": ["0xc73601486eaab127b05a878559c5bed2c7f3e125"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sjBNm\"}"}', 'sonata'), - (840516, '0x909e97be2b5dd5c0de120bd5733b0102a7700a81', 0, 1, '2024-05-07 05:03:45+00', 0, 0, '{"fid": 500216, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2150447d-3010-4ac1-d0af-80b82f949300/rectcrop3", "profile": {"bio": {"text": "$Degen 1$ 🌙\nFollow me :)\nhttps://zora.co/@bitsla", "mentioned_profiles": []}}, "username": "bitsla0928", "power_badge": false, "display_name": "SLA🔥", "active_status": "inactive", "verifications": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "follower_count": 918, "custody_address": "0xa8a47f59700d7727ffd26ae2aaccc37239e50e94", "following_count": 974, "verified_addresses": {"eth_addresses": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Qqht9Xno8CQrn5U87https://on.soundcloud.com/Qqht9Xno8CQrn5U87\"}"}', 'sonata'), - (877210, '0x1211308b348b0bfd096ee9721567b23a06787b2f', 0, 1, '2024-05-07 06:05:07+00', 0, 15, '{"fid": 403624, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeia7wulb64evac5iu4eyjwgenz4nykoi2rcn5tbidfzwmekovno6gu", "profile": {"bio": {"text": "즐거운 인생 살기!💚\n새로운 것에 도전하는 삶!\n오늘도 배움에 감사합니다!\n맞팔✨️소통✨️좋아요❤️\nWe are the one✨️\nCommunication possible at any time🎉", "mentioned_profiles": []}}, "username": "lthmc", "power_badge": false, "display_name": "✨️Threshold✨️", "active_status": "inactive", "verifications": ["0xd6aaa4993952e5c6016a5a36829c99cb252f160a"], "follower_count": 4131, "custody_address": "0x7ae0ee0a2a3c1cb2c76bec407be00e9d5d5df9e7", "following_count": 4984, "verified_addresses": {"eth_addresses": ["0xd6aaa4993952e5c6016a5a36829c99cb252f160a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/L19ge\"}"}', 'sonata'), - (902859, '0xcb2d1c872053d1ee3ba3cb24e0b2a56e17ce571d', 0, 1, '2024-05-07 06:51:56+00', 0, 6, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2930, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8YEeF\"}"}', 'sonata'), - (909397, '0x61012944a8e1cbf4abf77f1f59c6db4b198f69b0', 0, 1, '2024-05-07 07:00:13+00', 0, 5, '{"fid": 439086, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b5966976-f72f-4cd6-25ed-a33fcb7fd700/rectcrop3", "profile": {"bio": {"text": "older friends next door 🇰🇷 \nF4F I4I🚀 reply\n일상소통해요🫶 \ndaily life communicate \n.\n.\n.\n.\n.\n.\n.\n\n🤖 = unfollow 🙅‍♀️\n", "mentioned_profiles": []}}, "username": "iboram3054", "power_badge": false, "display_name": "Didi", "active_status": "inactive", "verifications": ["0xe9b4de0efb4572110e49504aca350eb7e43f01aa"], "follower_count": 1119, "custody_address": "0xc8ad231a386914a3f0390b81e52b23ac89d8bea1", "following_count": 2389, "verified_addresses": {"eth_addresses": ["0xe9b4de0efb4572110e49504aca350eb7e43f01aa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n6jaP\"}"}', 'sonata'), - (923741, '0xa71c66b3ee47516310eaa4aee48503359f8f249b', 0, 1, '2024-05-07 07:31:18+00', 0, 2, '{"fid": 434995, "object": "user", "pfp_url": "https://i.imgur.com/dCBbkJu.png", "profile": {"bio": {"text": "전 무조건 3종 남기고 갑니다!! \n\n일평! 비평! 비투카!! 화이팅100% 🎃🎃 맞팔로우! 100% like! Follow comments100%", "mentioned_profiles": []}}, "username": "goooo", "power_badge": false, "display_name": "Goo🎩🎩", "active_status": "inactive", "verifications": ["0xb0b8ba190c97edaaa3e09332a2501117b143687f"], "follower_count": 3287, "custody_address": "0x67ff484437a7b75d05dd339c5dabb2aa430d3c46", "following_count": 3459, "verified_addresses": {"eth_addresses": ["0xb0b8ba190c97edaaa3e09332a2501117b143687f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-19623507/0fbhllzuflcx\"}"}', 'sonata'), - (820576, '0x6fca24e9bd9a5625b2f01f9b0ca3ca8a52594f34', 0, 1, '2024-05-07 03:59:40+00', 0, 6, '{"fid": 429365, "object": "user", "pfp_url": "https://i.imgur.com/iF8ZBO7.png", "profile": {"bio": {"text": "1 Degen = 1USD 기원 🔥\n⭐100% 답장 갑니다⭐\n우리 모두 부자됩시다🥳", "mentioned_profiles": []}}, "username": "chaejonghyun", "power_badge": false, "display_name": "Keep-going🍖🚀", "active_status": "inactive", "verifications": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "follower_count": 3667, "custody_address": "0x4fd1388a37021d7e12d422c0941df22d55a8672b", "following_count": 3885, "verified_addresses": {"eth_addresses": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MiTFo\"}"}', 'sonata'), - (840520, '0x2a7072223dc479648369fe31032303a38ada432f', 0, 1, '2024-05-07 05:05:03+00', 0, 0, '{"fid": 506804, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7186eb59-e24f-494a-4203-d6c5637b7a00/rectcrop3", "profile": {"bio": {"text": "orosiku! taku", "mentioned_profiles": []}}, "username": "!506804", "power_badge": false, "display_name": "takusang", "active_status": "inactive", "verifications": ["0x9683aa73c2da0a2ff49eac372ca2b9e38f1e0b58"], "follower_count": 88, "custody_address": "0xdfe11c5129b65f9639e243687b908a2464e15c7d", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x9683aa73c2da0a2ff49eac372ca2b9e38f1e0b58"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chaoticxz/yoasobi-yuusha?si=2b59c891c55f47a3a83475c1fbcff79e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173309, '0x1635ba54ffde72b5594d8cd501aabde1c5c30dd6', 0, 1, '2024-05-15 18:37:24+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 960, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/01N1T689bhEHqXWs3ZMZcO?si=C1o4eSsFSxyJR10fKcORjA\"}"}', NULL), - (806642, '0x866bba2b2b093fd5b651fbd094003134e88635c6', 0, 1, '2024-05-07 03:35:05+00', 0, 0, '{"fid": 506817, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f199229-6daf-42c9-e4a1-c13531428900/rectcrop3", "profile": {"bio": {"text": "I am the person who delivers the crypto issue.", "mentioned_profiles": []}}, "username": "!506817", "power_badge": false, "display_name": "crypto issue", "active_status": "inactive", "verifications": ["0x394e68dd0a477c92642b226d69688281e34ec679"], "follower_count": 80, "custody_address": "0x44498c5533a367df3033924e58a0dae1b35a20b3", "following_count": 74, "verified_addresses": {"eth_addresses": ["0x394e68dd0a477c92642b226d69688281e34ec679"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eQDX5PYevdYno9zS7\"}"}', 'sonata'), - (811353, '0x42c6ea82540d7d6b807334ffbf6a6f3e64b398d6', 0, 1, '2024-05-07 03:45:34+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Mkx55RNYXikjUbSQ7\"}"}', NULL), - (952623, '0xcceb06cab937af105608d5a44eef423a7d0176a4', 0, 1, '2024-05-07 09:01:06+00', 0, 0, '{"fid": 501732, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8635c48c-a8ae-4010-8932-0fb00b29d000/rectcrop3", "profile": {"bio": {"text": "Your daily request has arrived.\nDo you want to accept it?", "mentioned_profiles": []}}, "username": "lisashin", "power_badge": false, "display_name": "lisashin", "active_status": "inactive", "verifications": ["0xdb8538d46da031a07e3ee1bf2b2878b491db57a9"], "follower_count": 915, "custody_address": "0x6b7e8d6cd49e3c3cc1e7effc84cd2f945d0cc1a8", "following_count": 1041, "verified_addresses": {"eth_addresses": ["0xdb8538d46da031a07e3ee1bf2b2878b491db57a9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZKi66\"}"}', 'sonata'), - (802834, '0x3b3f72b862a514662a762df4b26ff71e38da1040', 1010, 1, '2024-05-07 03:26:23+00', 0, 51, '{"fid": 270684, "object": "user", "pfp_url": "https://i.imgur.com/yBkGIrw.gif", "profile": {"bio": {"text": "Artist, (Skullture)\nDegen,\nCryptoPunk,\nMy X - https://twitter.com/zaharia_af\n", "mentioned_profiles": []}}, "username": "zafgod", "power_badge": true, "display_name": "ZafGod 🎩 ", "active_status": "inactive", "verifications": ["0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3"], "follower_count": 15551, "custody_address": "0x3cff8ae0740248932b824545bed5e1a8ee47011e", "following_count": 684, "verified_addresses": {"eth_addresses": ["0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b97581e-57cd-45d4-f562-85fdc448b400/original\"}","{\"url\":\"https://open.spotify.com/track/5hOFvMvYR6ys2h6bFnitAA?si=NaBS3e5vSQODD-jPb-W7Gg&context=spotify%3Aalbum%3A2WCnWcLzQj6nXIdJNeVUjM\"}"}', NULL), - (811366, '0x6970de7d6e0b8102d62cb724efbe240233666555', 0, 1, '2024-05-07 03:44:00+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/s6jjynCgdMCyiB4V6\"}"}', NULL), - (841625, '0x3b0fbaf66bbe935c6775b56d9d26458f3f3dbd04', 0, 1, '2024-05-07 05:12:30+00', 0, 0, '{"fid": 411315, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74fba8fa-c42c-433d-c2b7-1f2d60e5fa00/rectcrop3", "profile": {"bio": {"text": "Japanese living in Bangkok🇹🇭 Photographer📸 タイ在住。バンコクで会社経営。タイ生活のリアルや現地から写真をお届け!タイ旅行や移住のご相談は遠慮なくコメント、DMください😁", "mentioned_profiles": []}}, "username": "sukhumvit", "power_badge": false, "display_name": "Kasol", "active_status": "inactive", "verifications": ["0x24b725082d34e45c9c5affa42d2cbd8a2f9209c4"], "follower_count": 1061, "custody_address": "0x33a5410c674345cad95c85b7fa72818982b0009f", "following_count": 896, "verified_addresses": {"eth_addresses": ["0x24b725082d34e45c9c5affa42d2cbd8a2f9209c4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gtZajHCuB5cECkdx6\"}"}', 'base-degen'), - (840522, '0x89cc05bc99a695d5eaa396d82deb32b53dcafd3d', 0, 1, '2024-05-07 05:05:38+00', 0, 2, '{"fid": 501220, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36aeee53-0310-43a8-8e51-d754393b3900/rectcrop3", "profile": {"bio": {"text": "일단 난 슈캐 / 무지개 거울을 좋아하는 흑화된 그무언가 / 봇처럼 댓글 달면 답방 안가유🙏 저도 성심성의껏 적을게요 / f4f / momo AI / catizen / nine chronicles / degen / fingerstyle / fork guitar / K-music", "mentioned_profiles": []}}, "username": "cryptochoni", "power_badge": false, "display_name": "crypto CAT", "active_status": "inactive", "verifications": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "follower_count": 1310, "custody_address": "0x926a7eacdc09e92f80875fccb62b9030c452022f", "following_count": 1557, "verified_addresses": {"eth_addresses": ["0x6a28d159d8fd5f164da44082851abc23ba8a922f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yCFxAvXSgbrn4uvs6\"}"}', 'sonata'), - (816284, '0xbe3446072102665242a001cd77970c43f0d53495', 0, 1, '2024-05-07 03:51:25+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UBeUvok2QFn5T11YA\"}"}', NULL), - (820578, '0x98155ceb750b081192464493185d522cddb3ba62', 0, 1, '2024-05-07 03:58:39+00', 0, 0, '{"fid": 471730, "object": "user", "pfp_url": "https://i.imgur.com/zfmX8FW.jpg", "profile": {"bio": {"text": "..", "mentioned_profiles": []}}, "username": "fardin028", "power_badge": false, "display_name": "Fardin", "active_status": "inactive", "verifications": ["0x722ced42de320c54b0a6617c3fdbfb9686a7adee"], "follower_count": 504, "custody_address": "0xa0af438fe7cb81575e6dcc0018bb44ae54a0d46d", "following_count": 569, "verified_addresses": {"eth_addresses": ["0x722ced42de320c54b0a6617c3fdbfb9686a7adee"], "sol_addresses": ["8XziAzzPG8DXUmttw5dsNjb4M5c6dB328GcARpm6ygns"]}}', '{"{\"url\":\"https://on.soundcloud.com/7AgwW\"}"}', NULL), - (820592, '0xb3d2946bed9cc985d4b395bef9d0b30549ef1495', 0, 1, '2024-05-07 03:58:36+00', 0, 5, '{"fid": 501935, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/139ad2dc-7123-4e00-9f52-a2bd4c5b9100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "wooks", "power_badge": false, "display_name": "Wook2", "active_status": "inactive", "verifications": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "follower_count": 455, "custody_address": "0xd31122b0fa655a356ff107934a8e7a0a470fdcc9", "following_count": 579, "verified_addresses": {"eth_addresses": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/hello-mr-my-yesterday-10-op?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (877213, '0x96ba36692b4c8b8fd56cfaa8e18ae56cd86b7d68', 0, 1, '2024-05-07 06:05:28+00', 0, 7, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1241, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1438, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QypmA\"}"}', 'sonata'), - (1173308, '0x8adda5a3bfad7f408dea0ec1187dbd0041411075', 0, 1, '2024-05-15 18:36:47+00', 0, 12, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 960, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":348501,\"hash\":\"0xbd5d8cf11c9cbed889d4ada929816687fdcbdd32\"}}","{\"url\":\"https://open.spotify.com/track/01N1T689bhEHqXWs3ZMZcO?si=C1o4eSsFSxyJR10fKcORjA\"}"}', 'positivevibes'), - (822499, '0x61cdd017a7f9582734f86eed65946d127398ce89', 0, 1, '2024-05-07 04:04:31+00', 0, 3, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1177, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1065, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mabyeolnunu2052/jumper-feat-gaeko-mino-jumper-feat-mino?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (820596, '0x6798fce7d14aa0b4d5ef1f41a4f6d7ff5962a97b', 0, 1, '2024-05-07 03:58:33+00', 0, 2, '{"fid": 501169, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a5e704c-06c8-48ca-ec18-588c83ac3700/rectcrop3", "profile": {"bio": {"text": "Top Amateur", "mentioned_profiles": []}}, "username": "haejing", "power_badge": false, "display_name": "haejing🎩🍖", "active_status": "inactive", "verifications": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "follower_count": 1244, "custody_address": "0x68ea6421d2795e06f41e54fe856b8ab596127379", "following_count": 615, "verified_addresses": {"eth_addresses": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mB7EVFLEAEzx2xhG9\"}"}', NULL), - (816290, '0x9709f237f02eb1e2889e7f7037f6950943f293f8', 0, 1, '2024-05-07 03:52:42+00', 0, 2, '{"fid": 406632, "object": "user", "pfp_url": "https://i.imgur.com/5UKgbQM.jpg", "profile": {"bio": {"text": "Let''s all go to degen''s country together🎈", "mentioned_profiles": []}}, "username": "euni", "power_badge": false, "display_name": "k-pop", "active_status": "inactive", "verifications": ["0x5297e223f443e0b81c51bfe96c8d44dc11f0a0c1"], "follower_count": 1900, "custody_address": "0xed6368e8f7d7f9909bdb393bb543ca667557c797", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0x5297e223f443e0b81c51bfe96c8d44dc11f0a0c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musiic_time/jannabi-sweet-memories?si=bbe033bc3a7b4a30b69485e8cd3085a5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173314, '0xb3345e9eb56fcd6589388e070fc5e6a3c6a914c7', 1000, 1, '2024-05-15 19:01:03+00', 0, 1, '{"fid": 451, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/d172183e374ee8690e9b447dadb49b87.gif?w=500&auto=format", "profile": {"bio": {"text": "𝓵𝓲𝓿𝓲𝓷𝓰 𝓽𝓱𝓮 𝓮𝓷𝓭𝓵𝓮𝓼𝓼 𝓼𝓾𝓶𝓶𝓮𝓻 • building @buoy 🛟 • @dawnpatrol • pfista.com", "mentioned_profiles": []}}, "username": "pfista", "power_badge": true, "display_name": "Michael Pfister", "active_status": "inactive", "verifications": ["0x8a95d5f9ac0eebd5880199ea8fcd0fae845bbbf2", "0x92382f5c6ad39829a07537d18807462960025725"], "follower_count": 118384, "custody_address": "0xd2344f892241e3a83c7eca8e586093714be8ca7f", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0x8a95d5f9ac0eebd5880199ea8fcd0fae845bbbf2", "0x92382f5c6ad39829a07537d18807462960025725"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4GNBjMLPjb0YaHlRv7dBR2?si=14e5c424ef664dec\"}"}', NULL), - (840741, '0xd09644d9f565dc8f045801622dd8e8e5a6ab74e9', 0, 1, '2024-05-07 05:06:53+00', 0, 6, '{"fid": 509165, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9361601-73c9-4e20-727c-cc543e785700/rectcrop3", "profile": {"bio": {"text": "F4F 무조건 맞팔!!", "mentioned_profiles": []}}, "username": "!509165", "power_badge": false, "display_name": "cheonhs", "active_status": "inactive", "verifications": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "follower_count": 813, "custody_address": "0x6bcf73121e12de68c66963299a7ea8c0be67bffe", "following_count": 1410, "verified_addresses": {"eth_addresses": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/edpjJWU6eg9nVR61A\"}"}', 'sonata'), - (840733, '0xdc19193eb43254702d39f68714afe2b67f1ba49d', 0, 1, '2024-05-07 05:06:44+00', 0, 10, '{"fid": 417059, "object": "user", "pfp_url": "https://i.imgur.com/Bs403P4.jpg", "profile": {"bio": {"text": "GM! GA! GE!\nEverything''s gonna be fine.\nHave a nice day.\nMuhandojeon!! \nInfinite Challenge", "mentioned_profiles": []}}, "username": "lets-gotothemoon", "power_badge": false, "display_name": "무한상사정대리", "active_status": "inactive", "verifications": ["0x57301eb05d2aec733c239fd21d79764682e30b2c"], "follower_count": 3367, "custody_address": "0x0743aa74e9cc43f970dd0ae12b7865e65b2bed72", "following_count": 3124, "verified_addresses": {"eth_addresses": ["0x57301eb05d2aec733c239fd21d79764682e30b2c"], "sol_addresses": ["3Tqco7xa91tjdgS6vR5Xfi2ukEikixProi8PtNLqq4cv"]}}', '{"{\"url\":\"https://on.soundcloud.com/z8zwbczhyT6oowuh9\"}"}', 'sonata'), - (852900, '0x6585e55c9d2d1422a58647b6243f2e34a74f72c5', 0, 1, '2024-05-07 05:26:34+00', 0, 1, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2226, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2266, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-575031428-67263114/3ybxfg6qiubf?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (880494, '0xfe85c1c2c786ee5ee6fda0d0999f05d2b7c4df4b', 0, 1, '2024-05-07 06:07:25+00', 0, 0, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1358, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1481, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/49F3htNmwzPKFycPdOrDvf?si=msIlfbtQQ46aXKQz4q-_Uw&context=spotify%3Aplaylist%3A37i9dQZF1EIWvLw54O32Ci\"}"}', NULL), - (1173265, '0x85b0019c6d47687a17637bf4e1a7fe6dc4da8ad9', 0, 1, '2024-05-15 16:38:51+00', 0, 1, '{"fid": 557, "object": "user", "pfp_url": "https://i.seadn.io/gae/5hjYfRyqiRJV4EQ7ieSJrmb1LtO_vcAvREXSqnlY4HXXBsvgh1vumOwj5e4GwGhppEU2jLC9qJHEgEkaJ9V_B02jIFY9XmzgK1_F?w=500&auto=format", "profile": {"bio": {"text": "𝚆𝙾𝚁𝙺𝙸𝙽𝙶 𝙾𝙽: ensdata.net ✦ pugson.net/rfe ✦ @vision 👁️ ✦ 𝙿𝚄𝙶.𝙴𝚃𝙷 ✦ 𝙿𝚁𝙴𝚅: @rainbow 🌈 ", "mentioned_profiles": []}}, "username": "pugson", "power_badge": true, "display_name": "pugson", "active_status": "inactive", "verifications": ["0x96a77560146501eaeb5e6d5b7d8dd1ed23defa23"], "follower_count": 130139, "custody_address": "0xd7648b9d940e051b76fc7d755138159e6ce2436e", "following_count": 1788, "verified_addresses": {"eth_addresses": ["0x96a77560146501eaeb5e6d5b7d8dd1ed23defa23"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2qSkIjg1o9h3YT9RAgYN75?si=6abf47ea309b4014\"}"}', NULL), - (851779, '0x0990938ed87290add92dd4d623ac7a436af2641b', 0, 1, '2024-05-07 05:24:16+00', 0, 1, '{"fid": 409314, "object": "user", "pfp_url": "https://i.imgur.com/pIEyr4u.jpg", "profile": {"bio": {"text": "F4F F2F reaction 100%//\n좋아요만 남겨도 100% 찾아갑니다. ", "mentioned_profiles": []}}, "username": "chuchu", "power_badge": false, "display_name": "Mico F4F", "active_status": "inactive", "verifications": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "follower_count": 3435, "custody_address": "0x7cc0e132b143785f2e1a77d2dc3733f8b768ef0a", "following_count": 2143, "verified_addresses": {"eth_addresses": ["0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PwzTqTx8JgMjiKxFA\"}"}', 'sonata'), - (840906, '0xc7c23434061fbb0a67e388cf60900f9c05d56dcc', 0, 1, '2024-05-07 05:08:59+00', 0, 6, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1454, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1956, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/q3HHH\"}"}', 'banmal-mode'), - (865569, '0xf72ec71609c8e4ee3840a0e2a4eecac5b26b4631', 0, 1, '2024-05-07 05:45:17+00', 0, 6, '{"fid": 409058, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c15dcb51-4870-4679-a255-0806c9188300/rectcrop3", "profile": {"bio": {"text": "🇰🇷🥑👍♻️🎩🍖\nDegen 1$ \nHam 1$ \n", "mentioned_profiles": []}}, "username": "jjury", "power_badge": false, "display_name": "Avo🎩🍖", "active_status": "inactive", "verifications": ["0x0fb4772a2e06dc905afd79bd94a10b950c692d8e"], "follower_count": 3988, "custody_address": "0xaa22c9696d2e0d81f202a17cb2a7890cc1d97044", "following_count": 2870, "verified_addresses": {"eth_addresses": ["0x0fb4772a2e06dc905afd79bd94a10b950c692d8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KFJaNV3eNgJ1cwRi7\"}"}', 'sonata'), - (949254, '0x7d14e9c753910fde9d07f3e1c36841fdeb459abb', 0, 1, '2024-05-07 08:50:15+00', 0, 3, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ma8o4dadatok/fapwlgs7y4cj?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (840038, '0x99546ae20a5d8b4727ade727a42b5cc292fbad12', 0, 1, '2024-05-07 05:00:02+00', 0, 7, '{"fid": 290288, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmf9bNFBZS1fC5P5h3XGoEpW7J3Ct9rN5ft543tfcDnhme?filename=KakaoTalk_20240427_202428375_05.jpg", "profile": {"bio": {"text": "BOS^^", "mentioned_profiles": []}}, "username": "jiyujeong", "power_badge": false, "display_name": "BOS", "active_status": "inactive", "verifications": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "follower_count": 2312, "custody_address": "0xf9c173d7657ad1969ee2b93d87b0ff607364ab69", "following_count": 2800, "verified_addresses": {"eth_addresses": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3ImDzyDVlxu6qjxT49vlX0?si=rgQuvfK8TN2clSvrSZ6gcA&pi=qn3bRrhHTka2n\"}"}', 'sonata'), - (875471, '0x0bd28135057f59c84ea9eda29b34169025c14148', 0, 1, '2024-05-07 06:01:47+00', 0, 3, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1725, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2960, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7yvxN\"}"}', 'sonata'), - (771573, '0xdaf2eb4460bc255438e2dc524484c19957712ffc', 0, 1, '2024-05-07 01:15:58+00', 0, 2, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 491, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Sz8P5ZFLARe2oJeb0qsyb?si=a9334014295746aa\"}"}', NULL), - (1173295, '0xfa9bb773cd7a44a0d572581c5252e07d7d5eb7b9', 0, 1, '2024-05-15 17:42:40+00', 0, 2, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 329, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 272, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5S46E2UNGDYcwZ26yj6aNr?si=bDy9tl5LTTWAiJ38ycmKxg&context=spotify%3Aplaylist%3A2dHBpMwZpXu1TSelmeYUHr\"}"}', 'bangers'), - (827008, '0x4fdf4af7b5a6a04fc0e277c4b3afbc0bdaa9d6ca', 0, 1, '2024-05-07 04:10:38+00', 0, 0, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 81, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 250, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/xandforshort/somebody-to-love?referral_source=link\"}"}', NULL), - (820597, '0xbdce484ba254ceaa8a13b0bf5d2ca7c78b252bc2', 0, 1, '2024-05-07 03:59:16+00', 0, 1, '{"fid": 471730, "object": "user", "pfp_url": "https://i.imgur.com/zfmX8FW.jpg", "profile": {"bio": {"text": "..", "mentioned_profiles": []}}, "username": "fardin028", "power_badge": false, "display_name": "Fardin", "active_status": "inactive", "verifications": ["0x722ced42de320c54b0a6617c3fdbfb9686a7adee"], "follower_count": 504, "custody_address": "0xa0af438fe7cb81575e6dcc0018bb44ae54a0d46d", "following_count": 569, "verified_addresses": {"eth_addresses": ["0x722ced42de320c54b0a6617c3fdbfb9686a7adee"], "sol_addresses": ["8XziAzzPG8DXUmttw5dsNjb4M5c6dB328GcARpm6ygns"]}}', '{"{\"url\":\"https://on.soundcloud.com/7AgwW\"}"}', NULL), - (812232, '0x300102b125b85ff1053ab76f36daaa6bad8b2f70', 0, 1, '2024-05-07 03:46:19+00', 0, 0, '{"fid": 286406, "object": "user", "pfp_url": "https://i.imgur.com/KK3UVc3.jpg", "profile": {"bio": {"text": "Do it best", "mentioned_profiles": []}}, "username": "dingoes", "power_badge": false, "display_name": "Raseed ", "active_status": "inactive", "verifications": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "follower_count": 965, "custody_address": "0xaa93e03e24443aa272114a4ca5850e9f626c7cdd", "following_count": 917, "verified_addresses": {"eth_addresses": ["0xf0546c9156225ac240ed0791e013cdbca72e8074"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Sj7wokSnAmNwxYth9\"}"}', NULL), - (820584, '0x82162d4357453b743767b3053d943caf26c63837', 0, 1, '2024-05-07 03:58:06+00', 0, 1, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1350, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 716, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tyEnzS2StvLhGhgk9\"}"}', NULL), - (816296, '0x1ef04620aeacebd48316359cfeb14a1301da3a4e', 0, 1, '2024-05-07 03:52:25+00', 0, 4, '{"fid": 427649, "object": "user", "pfp_url": "https://i.imgur.com/Qy8rpU5.jpg", "profile": {"bio": {"text": "I am interesting about investment specially NFT&Crypto. I would like to share my opinion and want to get many alpha information. Thanks", "mentioned_profiles": []}}, "username": "speciallt", "power_badge": false, "display_name": "LT🎩🍖", "active_status": "inactive", "verifications": ["0x60f3119a7fb0620f7e0af2adeeca3c9b1f51a61e"], "follower_count": 2644, "custody_address": "0x0577b83af5f553b70f55da3008c467c14a7eb9cd", "following_count": 2464, "verified_addresses": {"eth_addresses": ["0x60f3119a7fb0620f7e0af2adeeca3c9b1f51a61e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yEqLdTTvRU8uFBqY9\"}"}', 'sonata'), - (923950, '0x9336d326da6e43b428e68003ce311a63ca5a52d6', 0, 1, '2024-05-07 07:33:51+00', 0, 0, '{"fid": 500982, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f001303-7936-4b12-5cfb-be2ddbc47900/rectcrop3", "profile": {"bio": {"text": "I love Warpcast & Degen. Let''s be close to each other. Also, I like exercising such as Yoga and Pilates!", "mentioned_profiles": []}}, "username": "santal", "power_badge": false, "display_name": "santal", "active_status": "inactive", "verifications": ["0x9f0bc86429bb348d26d861b5b266ab92d87359b3"], "follower_count": 1410, "custody_address": "0x2f3bdbf23adf5d8adcf05bd00c02a9a876faf69a", "following_count": 1153, "verified_addresses": {"eth_addresses": ["0x9f0bc86429bb348d26d861b5b266ab92d87359b3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zQFcc4vKkEnCsqd38\"}"}', NULL), - (781584, '0xbc40f9719c9bb00c907c76226746450679d5ff23', 0, 1, '2024-05-07 01:58:51+00', 0, 6, '{"fid": 19627, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e9d7489f-e851-464a-9caf-900862358e00/original", "profile": {"bio": {"text": "experience-building ┆ proliferating /pangea", "mentioned_profiles": []}}, "username": "lk", "power_badge": true, "display_name": "venet", "active_status": "inactive", "verifications": ["0x88ed3861d35e33dc8da7789da0b9efcf2299bb1c"], "follower_count": 3235, "custody_address": "0xcf58282be910a9e2d991c779d0c114d52fdea55c", "following_count": 253, "verified_addresses": {"eth_addresses": ["0x88ed3861d35e33dc8da7789da0b9efcf2299bb1c"], "sol_addresses": ["BKxK8vo1CuMedDUdUB6n8zomTcvqGqtSb19NhyHQyrXJ"]}}', '{"{\"url\":\"https://open.spotify.com/track/2cvmmDtc4YfdtoEzgDNOcj?si=7eb4728a75fd4254\"}"}', 'sonata'), - (1173227, '0xba2cf83b0b0597c929ef2b6d4c5abae2019ae006', 1000, 1, '2024-05-15 14:35:44+00', 0, 31, '{"fid": 1606, "object": "user", "pfp_url": "https://i.seadn.io/gae/wOKvMXEOs1E7KRs9QpMJiYPGwHWkiGJ34Asl_1q0y9h8-9eGsVHJhCf2EXnhaanthIJ2nrUaiJZd9owHE_EZ-Y8Q-SOa9XO6tcDt?w=500&auto=format", "profile": {"bio": {"text": "they/them, candlemaker at 🕯️humankind 🕯️, seemore.tv/humankind, hosting /founders, /samantha, /humankind", "mentioned_profiles": []}}, "username": "samantha", "power_badge": true, "display_name": "Sam (crazy candle person) ✦ ", "active_status": "inactive", "verifications": ["0xd5b472ffaf39476f83b8975667169ab6f9216dcd"], "follower_count": 34713, "custody_address": "0x224d5945d8037918df5d21d917a6ce31125c2040", "following_count": 541, "verified_addresses": {"eth_addresses": ["0xd5b472ffaf39476f83b8975667169ab6f9216dcd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5oEJyOsT68BDRwLoQQJl6W?si=554c0ec4cc784df3\"}"}', 'jazz'), - (802039, '0x2669b14ec62140677ea2ff0770d3ad42be75d431', 0, 1, '2024-05-07 03:24:37+00', 0, 1, '{"fid": 418760, "object": "user", "pfp_url": "https://arweave.net/wpWjn_yxYsNMcjCFUjZBlcBvNx4ccUTtLvqy6JbMllw/", "profile": {"bio": {"text": "No next no ex money is the best 😎🕊️", "mentioned_profiles": []}}, "username": "azazilsky", "power_badge": false, "display_name": "azazilsky12", "active_status": "inactive", "verifications": ["0xb3873616623f16874f0c4757c2e0647cae8a0451"], "follower_count": 921, "custody_address": "0xf026b229f7ce0ead4f194b95dc5868f9469489ba", "following_count": 1088, "verified_addresses": {"eth_addresses": ["0xb3873616623f16874f0c4757c2e0647cae8a0451"], "sol_addresses": []}}', '{"{\"url\":\"Listen to HOPE by XXXTENTACION on #SoundCloud https://on.soundcloud.com/NvxUY\"}"}', NULL), - (840901, '0x63713f07cfb2839bd143f7798e7ebe2cb0ac8dc3', 0, 1, '2024-05-07 05:09:31+00', 0, 4, '{"fid": 479163, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/583abf0a-a477-46d4-d227-28bcbae00000/original", "profile": {"bio": {"text": "Something with a good vibe, enjoy the ai-art\nhttps://zora.co/@mozziyam", "mentioned_profiles": []}}, "username": "momentum1", "power_badge": false, "display_name": "mozzi🟣🔵🍖💕", "active_status": "inactive", "verifications": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "follower_count": 3213, "custody_address": "0x063037d85b616ed101c33dd43eb9ba26154c8b3d", "following_count": 3861, "verified_addresses": {"eth_addresses": ["0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share77/beo-feat-mino-prod-gray?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (768751, '0xba2113c96df3cab9e7c04998ca150f5483f146d6', 0, 1, '2024-05-07 00:55:57+00', 0, 0, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 568, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 520, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/probcause/joyride?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', 'sonata'), - (881661, '0x3a6fb045ae65e16f4dcb1079813aebe54001084e', 0, 1, '2024-05-07 06:20:00+00', 0, 4, '{"fid": 391632, "object": "user", "pfp_url": "https://i.imgur.com/2lmbDG4.jpg", "profile": {"bio": {"text": "Inner peace / meme creator / spreading warmth", "mentioned_profiles": []}}, "username": "kick-your-brain", "power_badge": false, "display_name": "Kozy🎩🍖", "active_status": "inactive", "verifications": ["0x2ce843b5300415a98902368ee120735b4ae122df"], "follower_count": 951, "custody_address": "0x4c9f8f63851535bae2b5a01adfa2f9a14bf8c63f", "following_count": 957, "verified_addresses": {"eth_addresses": ["0x2ce843b5300415a98902368ee120735b4ae122df"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3qXDF1ox5JiyeaPs5\"}"}', 'sonata'), - (853459, '0x03a64f73487310e5782fbcb6da04ea8aad1d759e', 0, 1, '2024-05-07 05:27:39+00', 0, 1, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 303, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 508, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/4dmruTsdHIOjfOIeaFitXK?si=UA-xkA9vTVqDDqNPekpByw\"}"}', 'sonata'), - (1052907, '0xc7f25716aee3e1c5a33ef77a72f1c44a116c6339', 0, 1, '2024-05-07 14:33:03+00', 0, 0, '{"fid": 413488, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ef28212-4bd5-4146-1f56-cf3523df6200/rectcrop3", "profile": {"bio": {"text": "I am very happy man,and work at school", "mentioned_profiles": []}}, "username": "0xking1", "power_badge": false, "display_name": "king", "active_status": "inactive", "verifications": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "follower_count": 488, "custody_address": "0x91ab7af5a609ad9ddf0d877dbf0ccbbaf2533c9a", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T3Eyh\"}"}', 'sonata'), - (1018731, '0x52a1bf0936e1608e6c7e49b2fffa63ccea488464', 0, 1, '2024-05-07 12:50:03+00', 0, 1, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 709, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 863, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VAmPct435AmU3uVo7\"}"}', NULL), - (865277, '0xcfa99fb01e2a320016e2f964ce66ae5777cf96a8', 0, 1, '2024-05-07 05:42:52+00', 0, 0, '{"fid": 226234, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51ab0322-aa71-4855-3f20-31070f04bb00/rectcrop3", "profile": {"bio": {"text": "Ai artist stranded on the planet surface taking poison couldn’t be avoided. https://pixelgravyproductions.blog/", "mentioned_profiles": []}}, "username": "jonrt", "power_badge": false, "display_name": "Pixel Gravy 🎩🍖", "active_status": "inactive", "verifications": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "follower_count": 231, "custody_address": "0xbec78c6235cf3d17accc444d1a1fa073c19bc1c5", "following_count": 220, "verified_addresses": {"eth_addresses": ["0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03", "0xaaf17ea36a38b693bd67290bedbc4a6c6d66c4aa"], "sol_addresses": ["A8LbzGsRzuXsCAQajZc557FSCN7ysNpdAVnGZjAKW6W7"]}}', '{"{\"url\":\"https://soundcloud.com/judgejoebrown/hotnrotten-part-2?si=380d5e4d6cb049ceb614ec59455a8f76&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (840905, '0xd8eafb0f84801d60a2b486dfbde0a5919d1b43b5', 0, 1, '2024-05-07 05:07:15+00', 0, 0, '{"fid": 392118, "object": "user", "pfp_url": "https://i.imgur.com/cZ4Wdwk.gif", "profile": {"bio": {"text": "hello Have a nice day~~ ", "mentioned_profiles": []}}, "username": "oklee", "power_badge": false, "display_name": "oklee", "active_status": "inactive", "verifications": ["0x2bd335bcb96eaa93b41146c888db4989865e07d1"], "follower_count": 1965, "custody_address": "0xc43cb5b36b05187138b319eca360bf5a79483086", "following_count": 3096, "verified_addresses": {"eth_addresses": ["0x2bd335bcb96eaa93b41146c888db4989865e07d1"], "sol_addresses": []}}', '{"{\"url\":\"Listen to STAYC(스테이씨) - Bubble by 화영(Hwayoung) on #SoundCloud https://on.soundcloud.com/toKcC\"}"}', NULL), - (881686, '0x67da43c683bca82fcc25fa47299a2106cb3a1049', 0, 1, '2024-05-07 06:21:22+00', 0, 5, '{"fid": 406461, "object": "user", "pfp_url": "https://i.imgur.com/iBWFHwq.jpg", "profile": {"bio": {"text": "Supercast 🧨🚀\n\n🇰🇷\n\n", "mentioned_profiles": []}}, "username": "btcusdt", "power_badge": false, "display_name": "Dante", "active_status": "inactive", "verifications": ["0x2c7fd0347707222eff8cb633ebc1e18ac8768f9a"], "follower_count": 4249, "custody_address": "0x727ccf7fed1900f8952a721b9dfb1ae8f2d146db", "following_count": 4411, "verified_addresses": {"eth_addresses": ["0x2c7fd0347707222eff8cb633ebc1e18ac8768f9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KdkGYj2XgYEHLYw27\"}"}', 'sonata'), - (924179, '0x67af799535a3b6a32c3a152102918ff573046591', 0, 1, '2024-05-07 07:36:48+00', 0, 9, '{"fid": 406493, "object": "user", "pfp_url": "https://i.imgur.com/nVBBwsm.jpg", "profile": {"bio": {"text": "항상 파이팅👍 ", "mentioned_profiles": []}}, "username": "yeomks", "power_badge": false, "display_name": "Yeomks🎩🍖", "active_status": "inactive", "verifications": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "follower_count": 4289, "custody_address": "0xb3043f0e2ae80ab98c9f1b03df36eba4a5dbf15c", "following_count": 3151, "verified_addresses": {"eth_addresses": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/5tidggyxjwnj/yonezu-kenshi-lemon-cover-by-pi-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (853477, '0x1ef88d813786f44e9278bff0648a2ef0ecc0e4cc', 0, 1, '2024-05-07 05:27:15+00', 0, 4, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2231, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2575, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Si6Xk\"}"}', 'sonata'), - (949644, '0xa6bc3756f632cafeadd8bd5677151a165eac6dd9', 0, 1, '2024-05-07 08:51:09+00', 0, 0, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 804, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bnYzx\"}"}', 'sonata'), - (1173247, '0x00bca4f5d50614fe5057a31f9c17b1e73c3596eb', 0, 1, '2024-05-15 15:27:15+00', 0, 1, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1525, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 429, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1xtGoO8YNsio7Q2s8Uu21j?si=81d80489682c488d\"}"}', NULL), - (902844, '0x03be5f2619cd46d5ecb06f151de66742fdf3100b', 0, 1, '2024-05-07 06:53:44+00', 0, 7, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thaots/madeon-pop-culture\"}"}', NULL), - (841049, '0x9026f42264c80480e944c042d955a59c63302c25', 0, 1, '2024-05-07 05:08:35+00', 0, 1, '{"fid": 343971, "object": "user", "pfp_url": "https://i.imgur.com/GWICAfH.jpg", "profile": {"bio": {"text": "I want to see farcaster grow from Japan.\nart/music lover", "mentioned_profiles": []}}, "username": "chielilybell0110", "power_badge": false, "display_name": "chielilybell🎩🔮🍖", "active_status": "inactive", "verifications": ["0x8b67305dcd897d380498bf38c9a1992bfafab763"], "follower_count": 1318, "custody_address": "0xcf16c0e28dcb5e82f0b9a77a46d6594e6ecb816d", "following_count": 852, "verified_addresses": {"eth_addresses": ["0x8b67305dcd897d380498bf38c9a1992bfafab763"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2o7cOj0V9YziUyLR8F1qpV?si=Yz-Z60EZSTSAdHsILkALYw\"}"}', 'sonata'), - (841040, '0xfc8e733f7715696a30325d78ee43cfffb26d7741', 0, 1, '2024-05-07 05:10:55+00', 0, 0, '{"fid": 448267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c084f2f-96ec-40a4-de8f-330f4bd3b000/rectcrop3", "profile": {"bio": {"text": "i love crypt♡cat♡budgie♡and‥\n皆さまよろしくお願いします♡\nフォロバします♡健康や趣味に関することについてつぶやきます♡\nおたんこナースです♡", "mentioned_profiles": []}}, "username": "kananap", "power_badge": false, "display_name": "kananap🔮🩵@health", "active_status": "inactive", "verifications": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "follower_count": 511, "custody_address": "0x3bc7cc9fb63fa1c4b70ac5aa8c80475b784f5a6c", "following_count": 755, "verified_addresses": {"eth_addresses": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JrEsA8towaeHrmWW7\"}"}', 'musicjp'), - (1173305, '0xb7659f4da9fcb2a3683c9f94e1c7ad0fa6395486', 0, 1, '2024-05-15 18:31:30+00', 0, 1, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 301, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 334, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1xV07RDwmg4DUBqCYkv1pK?si=727d79bffc6f406c\"}"}', 'housemusic'), - (880171, '0x595149e3e54367ca4aafb2e9a846fcd0069185ff', 0, 1, '2024-05-07 06:06:43+00', 0, 4, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 368, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 334, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JwZ9i\"}"}', 'sonata'), - (853447, '0xb7e0a6ed3836010bd4c5a08c802975a9c95bbb74', 0, 1, '2024-05-07 05:27:16+00', 0, 2, '{"fid": 379750, "object": "user", "pfp_url": "https://i.imgur.com/zg0Eae1.jpg", "profile": {"bio": {"text": " 맞팔 환영 😎 소통 환영 🤩", "mentioned_profiles": []}}, "username": "qqsksk12", "power_badge": false, "display_name": "qqsksk12🎩 ✪ ", "active_status": "inactive", "verifications": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "follower_count": 4366, "custody_address": "0x2b765933821cc6f0b68ccfc71ba23e69ec8f13b4", "following_count": 5053, "verified_addresses": {"eth_addresses": ["0x849996677f339617487ee8c4b134200d1a1d9522"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oMvuBDek6wCyRp8x5\"}"}', NULL), - (867801, '0x8e10c0d82e763461cb585dacc55d677882d2d96c', 0, 1, '2024-05-07 05:47:22+00', 0, 1, '{"fid": 496665, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQLfrGWJ1KXBP5tPNrEhSQiBYGpzdCvy6DmgLxfwMVrJj?filename=.jpg", "profile": {"bio": {"text": "NewjeanSNKRS page", "mentioned_profiles": []}}, "username": "ruvv", "power_badge": false, "display_name": "NewjeanSNKRS", "active_status": "inactive", "verifications": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "follower_count": 1322, "custody_address": "0xfed77a68bf6da88aa0b78e904820451ebaecfc94", "following_count": 2202, "verified_addresses": {"eth_addresses": ["0x296180138ffc4833ff6da617b51089d56ac45bf0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/M4VJr\"}"}', 'sonata'), - (753444, '0xfa5472b1d382454b379d3bc63ebd5962d57a43f2', 0, 1, '2024-05-06 23:43:42+00', 0, 0, '{"fid": 326415, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1687c91-1ecd-4d5b-c89b-faa5c76a8a00/original", "profile": {"bio": {"text": "I make psychedelic music and art as Infinati. Sound and soul architect.\nhttps://infinati.wtf", "mentioned_profiles": []}}, "username": "infinati", "power_badge": false, "display_name": "Infinati", "active_status": "inactive", "verifications": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "follower_count": 68, "custody_address": "0xba3bec28da1d9eb0f1a17203a3fb9d607258cf18", "following_count": 208, "verified_addresses": {"eth_addresses": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/infinati/organized-slime\"}"}', NULL), - (927216, '0xcd270327d0098add77fe74ff727c36dd34888447', 0, 1, '2024-05-07 07:57:14+00', 0, 3, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1584, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2540, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/J3HhSDT3GacqSbvV6\"}"}', NULL), - (828153, '0x6b0f5e8c534ce156414009dc5bb5982641b9f0ad', 0, 1, '2024-05-07 04:11:22+00', 0, 1, '{"fid": 500262, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbkR53dVasVCecCSxk8vdg92vF39Zct65V3yUkLpjmMb7?filename=skywalker.png", "profile": {"bio": {"text": "freedom ✅Honestly.✅NO Farm✅NO Abusing✅ 무지개 반사🌈\n\n", "mentioned_profiles": []}}, "username": "selenayoon", "power_badge": false, "display_name": "Skywalker🍖 🌈", "active_status": "inactive", "verifications": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "follower_count": 1298, "custody_address": "0x1b1e2a16503e2802d95de4398bc50ccc527c7d48", "following_count": 1191, "verified_addresses": {"eth_addresses": ["0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ziFLG9qoSMoumrzVA\"}"}', 'sonata'), - (820582, '0x7137f66118001906ae1e785e1b998bb53ab49374', 0, 1, '2024-05-07 03:59:22+00', 0, 0, '{"fid": 501566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e7bd537-88da-4692-8187-6bd264ca9200/rectcrop3", "profile": {"bio": {"text": "AI art & Workout: Enjoying 🍖🍖🍖🍖", "mentioned_profiles": []}}, "username": "cyab-", "power_badge": false, "display_name": "Cyclone🎩🍖🔵", "active_status": "inactive", "verifications": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "follower_count": 1350, "custody_address": "0x67d8af18f0d6e392f843ab6f249b3df788385995", "following_count": 716, "verified_addresses": {"eth_addresses": ["0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":501566,\"hash\":\"0x82162d4357453b743767b3053d943caf26c63837\"}}","{\"url\":\"https://on.soundcloud.com/tyEnzS2StvLhGhgk9\"}"}', 'sonata'), - (881187, '0x050ca5c6a7f53db5fadc7d7e9f67d94b7bb96b68', 0, 1, '2024-05-07 06:14:53+00', 0, 0, '{"fid": 286613, "object": "user", "pfp_url": "https://i.imgur.com/Wk4j00c.jpg", "profile": {"bio": {"text": "enjoy enjoy enjoy", "mentioned_profiles": []}}, "username": "jj85", "power_badge": false, "display_name": "jj85🎩", "active_status": "inactive", "verifications": ["0x388f3fabe51dfc21d54a34102c6aecc46134f153"], "follower_count": 1206, "custody_address": "0x3c6ccca5eebaaf576f98c20052ff844d7edf3661", "following_count": 1651, "verified_addresses": {"eth_addresses": ["0x388f3fabe51dfc21d54a34102c6aecc46134f153"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-374925376-397649303/aimyon?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (853454, '0x6a5bee3662d7014b3a07ed646286725ccc9366b0', 0, 1, '2024-05-07 05:27:35+00', 0, 8, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1765, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2211, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jasonmraz/im-yours?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (841044, '0x133c3b64bbfef5cbccb8e6ab369d6930c384c429', 0, 1, '2024-05-07 05:09:56+00', 0, 0, '{"fid": 505043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/efc5c7fd-c896-45dc-c031-566e6e239200/rectcrop3", "profile": {"bio": {"text": "F4F, 워린이, 장사하는 20대 까칠녀", "mentioned_profiles": []}}, "username": "devilangle", "power_badge": false, "display_name": "angelina", "active_status": "inactive", "verifications": ["0xc0a495d6eed30d3f1385649de4bdd7cb5c8fa02f"], "follower_count": 576, "custody_address": "0x393acb00ccf2d0d27fa9181e1f65966f4091ce2a", "following_count": 675, "verified_addresses": {"eth_addresses": ["0xc0a495d6eed30d3f1385649de4bdd7cb5c8fa02f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JH7Hhxipw9nCfXT2A\"}"}', 'sonata'), - (924185, '0xb0351f1eaa1fe2bdbb93e9e743b6d455512d0773', 0, 1, '2024-05-07 07:36:57+00', 0, 5, '{"fid": 492039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd8a4449-4451-42bf-efae-a209b0721300/rectcrop3", "profile": {"bio": {"text": "Welcome to all coin info sharing I respect any opinions.", "mentioned_profiles": []}}, "username": "vvely", "power_badge": false, "display_name": "Kirby⭐️", "active_status": "inactive", "verifications": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "follower_count": 1841, "custody_address": "0x4aa36bd75aae9d6cb64f43e154730bd311787e7f", "following_count": 2694, "verified_addresses": {"eth_addresses": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QwEtxk6wx4t2Cw7b8\"}"}', 'sonata'), - (880191, '0x9907d71003de97a482bfcae0bcfc11419ae9a5fe', 0, 1, '2024-05-07 06:06:45+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2929, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 윤미래(T) - 시간이 흐른뒤(As Time Goes By) by qkrals _88 on #SoundCloud https://on.soundcloud.com/4RVnZ\"}"}', NULL), - (1173248, '0xfffafb52ffb4f5ea965b87b0bcee90ccbebb2039', 0, 1, '2024-05-15 15:27:25+00', 0, 0, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1525, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 429, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/05AdoHHC2t9FaU9Dz7Zi0J?si=6efab589485e494f\"}"}', NULL), - (923743, '0x55b70b26d878b9fcafa966410ae9f46807671223', 0, 1, '2024-05-07 07:32:11+00', 0, 2, '{"fid": 483140, "object": "user", "pfp_url": "https://arweave.net/OIFWkJWJGgbWYnNFClD97qOc-HnMNr-Mk-A99DA4iM4/", "profile": {"bio": {"text": "Love to make and share meme", "mentioned_profiles": []}}, "username": "thememe", "power_badge": false, "display_name": "Alex", "active_status": "inactive", "verifications": ["0x9c11ab5683786b6fb26bb5077175bab69b65fa84"], "follower_count": 142, "custody_address": "0x225b0864d31f7e12316340725bc851de6b433792", "following_count": 175, "verified_addresses": {"eth_addresses": ["0x9c11ab5683786b6fb26bb5077175bab69b65fa84"], "sol_addresses": []}}', '{"{\"url\":\"Listen to DHARIA - Sugar & Brownies by Dark Lab Records Ltd on #SoundCloud https://on.soundcloud.com/CGVdi\"}"}', NULL), - (1173313, '0xb055fc706dfc036d255e600a5e07c4311eb3015b', 0, 1, '2024-05-15 18:50:11+00', 0, 11, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4542, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=L1sBHtQ9QXihJE9bQeEnQA&context=spotify%3Aplaylist%3A37i9dQZF1DZ06evO0ENBD3\"}"}', NULL), - (869337, '0x806b049204a2b853bf41eb598afcb9977eb52bbb', 0, 1, '2024-05-07 05:51:08+00', 0, 0, '{"fid": 385250, "object": "user", "pfp_url": "https://i.imgur.com/F56qHvX.gif", "profile": {"bio": {"text": "LFG🔥🔥🔥\ndrakula \nhttps://drakula.app/user/kiba333?invite=dTJbm8", "mentioned_profiles": []}}, "username": "kiba333", "power_badge": false, "display_name": "kibakiba.degen🎩", "active_status": "inactive", "verifications": ["0x308d912e26eeb489d313765e5662b5c860220efa", "0xb55e7a149f51dada6150a3176b1946e1f005dd62"], "follower_count": 556, "custody_address": "0x1afb0ca345a75597965b7b1c080e2e20102f925c", "following_count": 885, "verified_addresses": {"eth_addresses": ["0x308d912e26eeb489d313765e5662b5c860220efa", "0xb55e7a149f51dada6150a3176b1946e1f005dd62"], "sol_addresses": ["2oU1cHniEYM5ByKTDnfYUqdPCq3wNEAg6CUCXMu2z9Zu"]}}', '{"{\"url\":\"https://on.soundcloud.com/mkZYzD7XP3DKxLgc9\"}"}', NULL), - (824821, '0x5805e93e3e9e58379124be9a178c2e37e0946790', 0, 1, '2024-05-07 04:07:57+00', 0, 4, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1640, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1334, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4AmW9CR1U4ehnmCT9\"}"}', 'sonata'), - (841051, '0x7c1e8909312381e62e9c9a3530c71b4c401a5082', 0, 1, '2024-05-07 05:10:20+00', 0, 12, '{"fid": 406461, "object": "user", "pfp_url": "https://i.imgur.com/iBWFHwq.jpg", "profile": {"bio": {"text": "Supercast 🧨🚀\n\n🇰🇷\n\n", "mentioned_profiles": []}}, "username": "btcusdt", "power_badge": false, "display_name": "Dante", "active_status": "inactive", "verifications": ["0x2c7fd0347707222eff8cb633ebc1e18ac8768f9a"], "follower_count": 4246, "custody_address": "0x727ccf7fed1900f8952a721b9dfb1ae8f2d146db", "following_count": 4398, "verified_addresses": {"eth_addresses": ["0x2c7fd0347707222eff8cb633ebc1e18ac8768f9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MWGbrAC6HkRnh9VeA\"}"}', 'sonata'), - (853482, '0x0643e0d61b4052ce7ae83e129cee15c4bc969794', 0, 1, '2024-05-07 05:27:33+00', 0, 13, '{"fid": 418296, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61889087-55c2-4f4a-d63b-4d738f320c00/original", "profile": {"bio": {"text": "We''re all friends! Come and play❤️‍🔥\nhttps://zora.co/@creambread", "mentioned_profiles": []}}, "username": "creambread", "power_badge": false, "display_name": "creambread", "active_status": "inactive", "verifications": ["0x6538bc9183bd6637e67b28ddb049a768e4ad3ab8"], "follower_count": 4943, "custody_address": "0xf6496812ad761d8a3715519233790d6cd1117cf0", "following_count": 4619, "verified_addresses": {"eth_addresses": ["0x6538bc9183bd6637e67b28ddb049a768e4ad3ab8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/J982R88kUxfna8Yu5\"}"}', 'sonata'), - (911515, '0x71a88613bd310555d4fa8700c4db17d5d587a199', 0, 1, '2024-05-07 07:05:15+00', 0, 1, '{"fid": 287306, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNTbdC51BzXUjxjnJr2UNn1NCUaGyHiDE232wABnM8WCd?filename=suzy.jpg", "profile": {"bio": {"text": "Follow me🙋‍♀️🙆‍♀️ 🙏/ $DEGEN/ Crypto ", "mentioned_profiles": []}}, "username": "sh0070", "power_badge": false, "display_name": "gim74713🎩🍖🔮", "active_status": "inactive", "verifications": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "follower_count": 1731, "custody_address": "0x3253aea02e5d297c7d61c4c71e0d1e28bac2d889", "following_count": 1046, "verified_addresses": {"eth_addresses": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/13X6RU2ByuANcz6QA\"}"}', 'sonata'), - (886353, '0xef5c686b89c3afe7e129e0e1bd0f7dcd9db41ad2', 0, 1, '2024-05-07 06:29:00+00', 0, 1, '{"fid": 420117, "object": "user", "pfp_url": "https://i.imgur.com/FtVbAqA.jpg", "profile": {"bio": {"text": "Hi. Have a happy day😀 I want to make a lot of friends😁 ❤️ 초음속 반사🌼 숙제는 미루지않아요 👏 ", "mentioned_profiles": []}}, "username": "elly29", "power_badge": false, "display_name": "Elly", "active_status": "inactive", "verifications": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "follower_count": 2294, "custody_address": "0x9d06907bfcb51d4232ff86c1eb836d8cd00d101f", "following_count": 2301, "verified_addresses": {"eth_addresses": ["0x2f6993d416b418f98c98c630f250736c996173a2"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/09dfb75b-c24b-4d93-2359-d25e574c4700/original\"}","{\"url\":\"https://on.soundcloud.com/jw3Xt\"}"}', 'sonata'), - (787358, '0x19f5306343ea815bdefe2361f340fb2472aeee26', 0, 1, '2024-05-07 02:46:40+00', 0, 4, '{"fid": 514319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8547ca01-73b7-4f03-c93f-eb485ed18c00/rectcrop3", "profile": {"bio": {"text": "Passionate about music, traveling, and constant exploration.", "mentioned_profiles": []}}, "username": "!514319", "power_badge": false, "display_name": "Franco", "active_status": "inactive", "verifications": ["0xdf24fa7d7d0b869e05016495f23dc89eecd0a878"], "follower_count": 33, "custody_address": "0xbee49440bfcae93b411bd4f43febbbe93baf3270", "following_count": 115, "verified_addresses": {"eth_addresses": ["0xdf24fa7d7d0b869e05016495f23dc89eecd0a878"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1MglqgabKH4iSkw8xHJ0J9?si=6V6MrurAReaJWNjCvxQRwA\"}"}', NULL), - (881174, '0x2f25e409f176f90eae6340f2a354834ca5c1a452', 0, 1, '2024-05-07 06:14:24+00', 0, 0, '{"fid": 453489, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/611a6f69-2d95-443b-166a-b2ad44e35a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "6reder", "power_badge": false, "display_name": "Hoosein", "active_status": "inactive", "verifications": ["0xcadf8999361237362d9bd0f02331c24231e3f86f"], "follower_count": 509, "custody_address": "0x37b3afea116c12ca72b515c944d9607f3c2bc38e", "following_count": 1373, "verified_addresses": {"eth_addresses": ["0xcadf8999361237362d9bd0f02331c24231e3f86f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/heisrema/calm-down\"}"}', NULL), - (828171, '0x5f856db5a1cfdb174fa293d08ce6293475127d31', 0, 1, '2024-05-07 04:11:34+00', 0, 0, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 81, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 250, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/danc3/davyd-feel-tha?referral_source=link\"}"}', NULL), - (880562, '0x37f2b9512326ef7870d6fb582d7718242d94e7fe', 0, 1, '2024-05-07 06:07:57+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2929, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4RVnZ\"}"}', 'sonata'), - (904319, '0x7bc53108c566ae5e47964a7326e6d427e6ad24d2', 0, 1, '2024-05-07 06:54:38+00', 0, 0, '{"fid": 501701, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99081801-c661-44ac-ec0a-dff6229f7500/rectcrop3", "profile": {"bio": {"text": "Thank u for visiting. \nHave a great day🍀 \n\n중고신입 뉴비 잘 부탁드려요🩵", "mentioned_profiles": []}}, "username": "leehu23", "power_badge": false, "display_name": "Unieeeee", "active_status": "inactive", "verifications": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "follower_count": 1247, "custody_address": "0x19aeb2932c76077fae10f8c6ea47fffd07c49cac", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove2/kpavjlcbh8xi\"}"}', NULL), - (826169, '0x591d7a1b64555e483e0c954a746f98714077e1f1', 0, 1, '2024-05-07 04:09:57+00', 0, 0, '{"fid": 216939, "object": "user", "pfp_url": "https://i.imgur.com/rxT15ve.jpg", "profile": {"bio": {"text": "Sound.xyz/felpsmiera\nIndependent Artist", "mentioned_profiles": []}}, "username": "felpsmiera", "power_badge": false, "display_name": "Felipe Matos", "active_status": "inactive", "verifications": ["0xbf88e9e0f0bd3e0f1a76d02a573512e63b26299c"], "follower_count": 5, "custody_address": "0xe7c50bc1dcaad76a90c51bcd12ed9d2c49a8e9f5", "following_count": 16, "verified_addresses": {"eth_addresses": ["0xbf88e9e0f0bd3e0f1a76d02a573512e63b26299c"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59767c30-138b-472a-7b3e-1774e1979700/original\"}","{\"url\":\"https://www.sound.xyz/felpsmiera/wormhole-impact?referral_source=link\"}"}', 'p00ls'), - (874205, '0x85fd2ee1b3bfe00f486471c0e5832bdfd7f67ca9', 0, 1, '2024-05-07 05:57:05+00', 0, 1, '{"fid": 385242, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiggp52wnkuqowiewtsdpsj6lu2avnndesprstiddjwguqdgyfbpgu", "profile": {"bio": {"text": "i love farcaster\nCH host:/ogiri /casnews", "mentioned_profiles": []}}, "username": "harefine.eth", "power_badge": false, "display_name": "hare🎩", "active_status": "inactive", "verifications": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "follower_count": 1397, "custody_address": "0xf7c15b2215c1a2c7390746209dee17f98aca29f1", "following_count": 775, "verified_addresses": {"eth_addresses": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "sol_addresses": ["CKpihsP5fsG5KckWo7fUZnsVDYXy2Zpx9c1PFam39eFK"]}}', '{"{\"url\":\"https://open.spotify.com/track/0GtFgR54C5c6JMR998K6NT?si=CwJQ50AoTWybWCKtE-xhCw\"}"}', NULL), - (1173460, '0xe7060e599c5473f470af7ca6659b68ce719c4928', 0, 1, '2024-05-16 00:21:03+00', 0, 3, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3878, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1009, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/93GNx\"}"}', 'sonata'), - (924278, '0xfd3edd78545251322f698575d4c248bdf024eff7', 0, 1, '2024-05-07 07:37:50+00', 0, 2, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 857, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 953, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HHC7e\"}"}', 'sonata'), - (880563, '0x835b1053e7c8206af47c014039c29cd5ac2db319', 0, 1, '2024-05-07 06:08:16+00', 0, 0, '{"fid": 436819, "object": "user", "pfp_url": "https://2jukrz4coow5njxjuld44cc6skw5bdusjzhcw2f3qzp3tnlppajq.arweave.net/0mio54Jzrdam6aLHzghekq3QjpJOTitou4ZfubVveBM/", "profile": {"bio": {"text": "Interested in the decentralized and Blockchain world\nClimber\nNature Lover\n\n", "mentioned_profiles": []}}, "username": "0xariantq", "power_badge": false, "display_name": "0xAriantq 🔄 🎩", "active_status": "inactive", "verifications": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "follower_count": 694, "custody_address": "0x2b237b7c0bdd2ea29b2a55388f9d0279e9c39d2f", "following_count": 827, "verified_addresses": {"eth_addresses": ["0xa00cbc3f7f054103531e7d6d703990c78fba2149"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uG7QTjia9AUo5q9Y7\"}"}', NULL), - (982344, '0xf89fe1e67e3dd10a70449e8093efd2c15ae87bb5', 0, 1, '2024-05-07 10:51:18+00', 0, 0, '{"fid": 330349, "object": "user", "pfp_url": "https://i.imgur.com/51eIJhU.jpg", "profile": {"bio": {"text": "Making a better world\nhttps://drakula.app/user/opensailor?invite=BMMWWb", "mentioned_profiles": []}}, "username": "opensailor", "power_badge": false, "display_name": "Opensailor 🔄🎩🍖🔵", "active_status": "inactive", "verifications": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "follower_count": 1095, "custody_address": "0x5922692e4b16b225413b73d2fdd1736bf4819a09", "following_count": 619, "verified_addresses": {"eth_addresses": ["0xeff086c66223a846b9038bdf5cbfcee421a89c83"], "sol_addresses": []}}', '{"{\"url\":\"Escucha Whatcha Doing de Dua Lipa en #SoundCloud https://on.soundcloud.com/QpEhP\"}"}', NULL), - (1160228, '0x4f9fa755d3c24c151333da05e6375d0c04564589', 1300, 1, '2024-05-08 15:55:01+00', 0, 7, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/buck\"}"}', NULL), - (929029, '0x8c2df44468dc470a4baceee7dc5b1978c464a84d', 0, 1, '2024-05-07 08:00:09+00', 0, 0, '{"fid": 506789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/361b6d66-0316-4358-fdca-48a11516ec00/rectcrop3", "profile": {"bio": {"text": "a professional inconvenience", "mentioned_profiles": []}}, "username": "!506789", "power_badge": false, "display_name": "opsa", "active_status": "inactive", "verifications": ["0x586d40e35ea1f08b63a46158eaf12d50e427fec1"], "follower_count": 652, "custody_address": "0xb5965cfff5f58538c6e8de4ba729570b7c31c6fa", "following_count": 868, "verified_addresses": {"eth_addresses": ["0x586d40e35ea1f08b63a46158eaf12d50e427fec1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0lamnguyet0/epxqjilyotlb?si=deab423477d04c22ac255a5f632775b6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1012944, '0x9e142eb318601cf1a076f50cab467b7afff08ad7', 0, 1, '2024-05-07 12:37:20+00', 0, 0, '{"fid": 289911, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0bf9ffe-c91d-413a-4dca-e7c726796000/original", "profile": {"bio": {"text": "\n", "mentioned_profiles": []}}, "username": "savoir", "power_badge": false, "display_name": "Younghyun🎩🍖🩸🔮🔵", "active_status": "inactive", "verifications": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "follower_count": 1231, "custody_address": "0x64fb1e0672d9e28747b34ecfb02be694319b7963", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Mys1gf9SkMBAVGGxpkJ7d?si=0327112cd75946f8\"}"}', NULL), - (888715, '0x4a39d7dbec181da19a09e556e9b8a21dbbec4e0d', 100, 1, '2024-05-07 06:33:42+00', 0, 1, '{"fid": 419103, "object": "user", "pfp_url": "https://i.imgur.com/cWyDUB7.jpg", "profile": {"bio": {"text": "どうもこんにちは。\n\n田中です。\n\n今期は血尿猫さんに養って貰ってます。\n\nI''m Top of the tanaka.", "mentioned_profiles": []}}, "username": "tanakakamei", "power_badge": false, "display_name": "田中(仮名)🎩🔥", "active_status": "inactive", "verifications": ["0x5bb9bb14a11af42de68fa2c9b9089a29d993e3d0", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319"], "follower_count": 893, "custody_address": "0x6e11a25b6a62e1db5d65767e78fd67b579f9eeef", "following_count": 646, "verified_addresses": {"eth_addresses": ["0x5bb9bb14a11af42de68fa2c9b9089a29d993e3d0", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319", "0x45e6f3ab332e2a8e82ab27126dd248c59e613319"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jEEWhqhcE5WyhToF8\"}"}', NULL), - (1173203, '0x2a2a55c373b9908be6819c87869779c3e2c1c359', 1000, 1, '2024-05-15 09:28:53+00', 0, 16, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2754, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 785, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1iAz43LMhD7SSfUxlwkCKV\"}"}', 'sonata'), - (880566, '0x86b0e9a24efa2dd96cba6237d2983f702f760bc9', 0, 1, '2024-05-07 06:09:13+00', 0, 0, '{"fid": 19613, "object": "user", "pfp_url": "https://i.imgur.com/KxI1kCp.gif", "profile": {"bio": {"text": "FractalVisions.xyz 🔴 FVPGF.eth RetroPGF & QF ♻️ Impact Initiative Platform 🚀 built with funding from @retropgf on @optimism layer 2 network. /fractalvisions", "mentioned_profiles": []}}, "username": "fractalvisions.eth", "power_badge": true, "display_name": "Fractal Visions🎩🌱", "active_status": "inactive", "verifications": ["0xc4fc57dedd2463314a3fd2dbadb86b4404c257e5"], "follower_count": 1292, "custody_address": "0xf269034de93402c2268d96dc55f9655294ca47d7", "following_count": 981, "verified_addresses": {"eth_addresses": ["0xc4fc57dedd2463314a3fd2dbadb86b4404c257e5"], "sol_addresses": ["H5Uv5HiFvp9hxm197VPUtn2TSzcmY2ezdys28grYLPpi"]}}', '{"{\"url\":\"https://www.sound.xyz/joenix/night-shift\"}"}', NULL), - (904322, '0x6489096b57ab636044879d58fe997456bb2f43ee', 0, 1, '2024-05-07 06:54:50+00', 0, 3, '{"fid": 471610, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dbd09e4e-019b-44b0-1e4e-830bd4491d00/rectcrop3", "profile": {"bio": {"text": "I am library 🌺🌺🌺", "mentioned_profiles": []}}, "username": "daraazaryar", "power_badge": false, "display_name": "@Daraazaryar 🍗🎩🔵🍖", "active_status": "inactive", "verifications": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "follower_count": 631, "custody_address": "0xa51e52c181a4d3c3b5fae4a9edf52fb3ec31a779", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x16d0521e17a5c59cf835227062b2e42d42235fdf"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/metroboomin/bbl-drizzy-bpm-150-mp3\"}"}', NULL), - (777016, '0xa8718807e43f4a405842882ce0640ad0b5828cff', 0, 1, '2024-05-07 01:36:31+00', 0, 2, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1363, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2201, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/salemilese/crypto-boy?referral_source=link\"}"}', 'sonata'), - (888728, '0x9340f58408c22e8123daea60dd5d5f9d01be484d', 0, 1, '2024-05-07 06:33:25+00', 0, 2, '{"fid": 516187, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5eb3758-cc4d-472e-a69e-14040b4a7d00/rectcrop3", "profile": {"bio": {"text": "초보신입/맞팔💯💯/선팔주시면 달려갑니다/무조건반사갑니다", "mentioned_profiles": []}}, "username": "!516187", "power_badge": false, "display_name": "느티고을나무늘보", "active_status": "inactive", "verifications": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "follower_count": 225, "custody_address": "0x774d0caf03af43ca9e47069d48f1dd34469439c6", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mWkCi93oiSf88L3WA\"}"}', NULL), - (904321, '0x361d5c8d032f026bcba0e0f1d508b12c0b5a2ab2', 0, 1, '2024-05-07 06:53:57+00', 0, 2, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2374, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2264, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/y1p6mk6gAUaMSMJU9\"}"}', 'sonata'), - (924708, '0x774d59b9ec4a67554cda7bd94136a14ca4ad545f', 0, 1, '2024-05-07 07:41:02+00', 0, 2, '{"fid": 419626, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26c07dc-79dd-4924-4924-5848d3fc3500/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "rasoulmaleki", "power_badge": false, "display_name": "R...m..🎩.🍖 🔵 🔮", "active_status": "inactive", "verifications": ["0xc7487323e18a9354118767e6c35c53675fc8654f"], "follower_count": 687, "custody_address": "0x4cc7c226dc930cd1e83cb89f8ccbb0cac497bcad", "following_count": 739, "verified_addresses": {"eth_addresses": ["0xc7487323e18a9354118767e6c35c53675fc8654f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to I Luv U by Sofia Carson on #SoundCloud https://on.soundcloud.com/oC153\"}"}', NULL), - (884805, '0x6dd7cfff07e8ea71caf69b36402288bbc88a6f12', 0, 1, '2024-05-07 06:25:08+00', 0, 2, '{"fid": 350598, "object": "user", "pfp_url": "https://i.imgur.com/Cj4MrAk.png", "profile": {"bio": {"text": "hello world!!\nlove crypto music food art", "mentioned_profiles": []}}, "username": "thor909", "power_badge": false, "display_name": "thor999 🎩", "active_status": "inactive", "verifications": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "follower_count": 1020, "custody_address": "0x6b0364809b88d4a8d57db0034882807aabd85171", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "sol_addresses": ["GkCYMc1FHJPKvN8cLQXywSUYUVsSXEQvexDs8SwT7jyV"]}}', '{"{\"url\":\"https://on.soundcloud.com/susnjH8iJGHgmByB8\"}"}', 'sonata'), - (1173204, '0xeea722995b38da92fc988a318c0e4c18161c0e45', 1000, 1, '2024-05-15 09:45:55+00', 0, 26, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30881, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/307ZBrMJEoKG6khQpX0g4N?si=Ac0p6bDFS2eG5NK5jO9HiQ\"}"}', NULL), - (984221, '0x799139ba309cc930bbb62b1021d33ba3a87e98a1', 0, 1, '2024-05-07 10:59:59+00', 0, 5, '{"fid": 400888, "object": "user", "pfp_url": "https://i.imgur.com/QpkYpS1.jpg", "profile": {"bio": {"text": "Hi, I want to introduce you to delicious food and beautiful scenery&AlfaFrens", "mentioned_profiles": []}}, "username": "ncsoft", "power_badge": false, "display_name": "noisysky🎩🔄", "active_status": "inactive", "verifications": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "follower_count": 4648, "custody_address": "0x9f10badebd3c0a615dff74a777d5cfff66e08831", "following_count": 4622, "verified_addresses": {"eth_addresses": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "sol_addresses": ["FTa1LfZzaFzEz79ne72Qrw51tQnX2dkwGJbiV3WgtP6S"]}}', '{"{\"url\":\"https://soundcloud.com/colin-lee-687105449/drunken-tiger-slowed-reverb?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (925039, '0x338585b4387a2b06f50cf9fd19849078410396fd', 0, 1, '2024-05-07 07:44:34+00', 100, 17, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2204, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2085, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/joenast/ive-wow-joenast-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (924860, '0x39359c24a9382c4574b3e158f9ffca50d8274656', 0, 1, '2024-05-07 07:44:00+00', 0, 1, '{"fid": 501170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/79f99602-1ea7-4532-b2e2-8cb67fbb2100/rectcrop3", "profile": {"bio": {"text": "마이_네임_이즈_준키\n#위스키 #맛집마스터 \n\n#디젠 #코인 #크립토 #잼 #crypto #meme #coin #tip #f4f", "mentioned_profiles": []}}, "username": "emsei", "power_badge": false, "display_name": "jun-key", "active_status": "inactive", "verifications": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "follower_count": 1195, "custody_address": "0x611af52170215e3d3dc4fc8443de600aff2ef9e1", "following_count": 1561, "verified_addresses": {"eth_addresses": ["0x9bf21fa5558c620497223846bd88593a6b905f93"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EuxuCWkevqfjaSe89\"}"}', NULL), - (1000107, '0x5dd2234b255bad3af3d765b37d54db5ddf6290e3', 0, 1, '2024-05-07 11:52:52+00', 0, 3, '{"fid": 409059, "object": "user", "pfp_url": "https://i.imgur.com/qNLSCrN.jpg", "profile": {"bio": {"text": "Experimental audio 🔊 and visual 📼\n\nhttps://linktr.ee/sx_zr04", "mentioned_profiles": []}}, "username": "sx-zr04", "power_badge": false, "display_name": "sx_zr04", "active_status": "inactive", "verifications": ["0x3b073a8d0ce0589eef40dd5015a27526260b2c38"], "follower_count": 433, "custody_address": "0x5eadf844d2b23debb92043a97424569bd2b68c87", "following_count": 535, "verified_addresses": {"eth_addresses": ["0x3b073a8d0ce0589eef40dd5015a27526260b2c38"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/08ZUOlAjNu34wj283BPDJJ?si=dgvTChUpS3mei9afjQIYWQ\"}"}', 'sonata'), - (952043, '0x25194eb60d7cab8336fc16a7eaf04186158b1ced', 0, 1, '2024-05-07 09:00:04+00', 0, 3, '{"fid": 419506, "object": "user", "pfp_url": "https://i.imgur.com/TaWGbTU.jpg", "profile": {"bio": {"text": "Someone new to crypto and love to learn about it", "mentioned_profiles": []}}, "username": "komeila", "power_badge": false, "display_name": "Komeil", "active_status": "inactive", "verifications": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "follower_count": 807, "custody_address": "0x04fc2472c81ca9978c5f46d8ee526d948c148879", "following_count": 1138, "verified_addresses": {"eth_addresses": ["0x74c38b94b963711574d15f48f132c33e8fbd759c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ppn4s\"}"}', 'sonata'), - (915567, '0xb4b52b739c05049d2fb7e824a4fcaf1a6d5e8eb2', 0, 1, '2024-05-07 07:09:29+00', 0, 10, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3963, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2235, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fpK37Uopcvr3rFRaA\"}"}', 'sonata'), - (1035469, '0x67d4b179bc03c5266de9b6cf6f0ffbb126a4f684', 0, 1, '2024-05-07 13:30:07+00', 0, 0, '{"fid": 414347, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88aed08f-0fcd-4978-6d66-082e10859900/rectcrop3", "profile": {"bio": {"text": "Once you dig in, you study until you die\nI''ll make a lot of mistakes, but I''ll succeed in the end\nPlease help me a lot\n\nUntil the day I become a coding expert", "mentioned_profiles": []}}, "username": "makkangabba", "power_badge": false, "display_name": "Strong father🎩🚀🫂", "active_status": "inactive", "verifications": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "follower_count": 2163, "custody_address": "0x3231fcc81c4a65404fa552ffc4d5d3fbc81c2ac0", "following_count": 1888, "verified_addresses": {"eth_addresses": ["0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9SBo3iMyxBpxbQuv5\"}"}', NULL), - (893769, '0x8048e7ff3ceda867358ecd039ffbac624f82fecd', 0, 1, '2024-05-07 06:39:36+00', 0, 0, '{"fid": 372218, "object": "user", "pfp_url": "https://i.imgur.com/lj6N0Dz.jpg", "profile": {"bio": {"text": "I love excitement. I can say that I love social media very much", "mentioned_profiles": []}}, "username": "bigdadi02", "power_badge": false, "display_name": "Bigdadi02🎩,➡️Farcon", "active_status": "inactive", "verifications": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "follower_count": 301, "custody_address": "0x28cc1bbc9e00df08d127bf3316a858c5e1d89766", "following_count": 362, "verified_addresses": {"eth_addresses": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xug7bnsRrBKizUcS8\"}"}', NULL), - (929360, '0xf3957de41a6e3d2151d3115f2adedaa7289038bd', 0, 1, '2024-05-07 08:00:47+00', 10, 2, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2203, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2086, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yeahofficial_icecreamsubteam/beautiful-crush-goblin-ost-part4?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (902852, '0x9c726fcf33256008f74745861216bb31e0c45baa', 0, 1, '2024-05-07 06:52:26+00', 0, 1, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1496, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1424, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/FydAaX423U3AX1hw5\"}"}', 'sonata'), - (1173285, '0xe3c37791f911d359dcf842ad0f9c2241c207e9cf', 0, 1, '2024-05-15 17:31:46+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 960, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Ezmm08Oy4772SkEoC18Kt?si=FFKFJn0oQ0y9V-ygLcpYRw\"}"}', NULL), - (892829, '0x88980909378dadfa3ab667efa3fbc2c211ff7bfc', 0, 1, '2024-05-07 06:38:58+00', 0, 0, '{"fid": 372218, "object": "user", "pfp_url": "https://i.imgur.com/lj6N0Dz.jpg", "profile": {"bio": {"text": "I love excitement. I can say that I love social media very much", "mentioned_profiles": []}}, "username": "bigdadi02", "power_badge": false, "display_name": "Bigdadi02🎩,➡️Farcon", "active_status": "inactive", "verifications": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "follower_count": 301, "custody_address": "0x28cc1bbc9e00df08d127bf3316a858c5e1d89766", "following_count": 362, "verified_addresses": {"eth_addresses": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xug7bnsRrBKizUcS8\"}"}', NULL), - (983686, '0x9144919cb3d278e3a4578c7515e182ce86a9af2d', 0, 1, '2024-05-07 10:58:52+00', 0, 1, '{"fid": 500639, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7862bc6e-71a4-4252-fbc8-a27243ceac00/rectcrop3", "profile": {"bio": {"text": "Love you Korea,", "mentioned_profiles": []}}, "username": "bituin1", "power_badge": false, "display_name": "Bituin", "active_status": "inactive", "verifications": ["0xbc695b44d5cb3c9a9d7a57d9394fffe14e3af95a"], "follower_count": 283, "custody_address": "0xbc695b44d5cb3c9a9d7a57d9394fffe14e3af95a", "following_count": 680, "verified_addresses": {"eth_addresses": ["0xbc695b44d5cb3c9a9d7a57d9394fffe14e3af95a"], "sol_addresses": ["DMo3NCQLUe6tEYY5EkF34o9gAEPFgbQNj8jVYtw6QKj5"]}}', '{"{\"url\":\"https://on.soundcloud.com/JuPnF\"}"}', NULL), - (929939, '0xc5f12b4d287520eab1b9948d334057bcc9e1bc02', 0, 1, '2024-05-07 08:03:55+00', 0, 0, '{"fid": 9135, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d4c3b0e-52dc-4e80-c166-862f2b200200/original", "profile": {"bio": {"text": "consistently curious | host of /art and /collector-walls | self-proclaimed ambassador of /higher | ex Sismo.io", "mentioned_profiles": []}}, "username": "kugusha.eth", "power_badge": true, "display_name": "kugusha ↑", "active_status": "inactive", "verifications": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "follower_count": 32404, "custody_address": "0x7ad6cbeaed607851ca0201faa835f01f123d5be6", "following_count": 702, "verified_addresses": {"eth_addresses": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2GxrNKugF82CnoRFbQfzPf?si=udDvPAWBQ7C_iSAWosQ7hQ\"}"}', NULL), - (1018725, '0x388e9e6cd646b2ad5b173d81c39c686e3fa5d02d', 0, 1, '2024-05-07 12:50:05+00', 0, 2, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 818, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 633, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G57j795hSuNqZVJJ6\"}"}', 'sonata'), - (875965, '0x2f089dcae2bb0d20541a6a4bac689e8214af094b', 0, 1, '2024-05-07 06:01:32+00', 0, 2, '{"fid": 385242, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiggp52wnkuqowiewtsdpsj6lu2avnndesprstiddjwguqdgyfbpgu", "profile": {"bio": {"text": "i love farcaster\nCH host:/ogiri /casnews", "mentioned_profiles": []}}, "username": "harefine.eth", "power_badge": false, "display_name": "hare🎩", "active_status": "inactive", "verifications": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "follower_count": 1397, "custody_address": "0xf7c15b2215c1a2c7390746209dee17f98aca29f1", "following_count": 775, "verified_addresses": {"eth_addresses": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "sol_addresses": ["CKpihsP5fsG5KckWo7fUZnsVDYXy2Zpx9c1PFam39eFK"]}}', '{"{\"url\":\"https://open.spotify.com/track/1Lwx1QELCMAzn4MGvCtRG6?si=txmD79weRyG-dq7Uje7ZNA\"}"}', 'videogamemusic'), - (919847, '0x03fbd02c4ac10b928e5d24d050f092928f033b20', 0, 1, '2024-05-07 07:17:23+00', 0, 4, '{"fid": 405451, "object": "user", "pfp_url": "https://i.imgur.com/NgcYN5x.jpg", "profile": {"bio": {"text": "I''m accountant", "mentioned_profiles": []}}, "username": "soltanhadi", "power_badge": false, "display_name": "Kian:D🎩", "active_status": "inactive", "verifications": ["0xf8b33cb564d3a8d83a147282b4ecbf9c1765907f"], "follower_count": 2661, "custody_address": "0x099c78f851d75739c874320e25bbe0d397f0a319", "following_count": 2508, "verified_addresses": {"eth_addresses": ["0xf8b33cb564d3a8d83a147282b4ecbf9c1765907f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imsangryuh/mbtti?ref=clipboard&p=i&c=0&si=D447B2EBE0D749629763C2C15ECACD27&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (893762, '0xa8ef0492e3494c2b75e705167c8357032cc39546', 0, 1, '2024-05-07 06:39:02+00', 0, 1, '{"fid": 284291, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d8e50e3-1c39-4152-eea0-29c37db34600/original", "profile": {"bio": {"text": "웹3 러버", "mentioned_profiles": []}}, "username": "jinee", "power_badge": false, "display_name": "jinee 🎩🍖", "active_status": "inactive", "verifications": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "follower_count": 1496, "custody_address": "0x007ad6d0b4f142379330a6a98b86f615799e5c89", "following_count": 1424, "verified_addresses": {"eth_addresses": ["0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418"], "sol_addresses": ["Gt42yarmUibtMiaTbVNKCHhFecFVyxr9XGCnGb6DCNvr"]}}', '{"{\"url\":\"https://on.soundcloud.com/7BpqEESzjsu6Yrw58\"}"}', 'sonata'), - (952614, '0xbb5cfbfd9c2fd63d2a1807d1bf276a234f262d78', 0, 1, '2024-05-07 09:00:42+00', 0, 1, '{"fid": 500461, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc4873ea-85ed-420e-739f-e960fb8b8600/rectcrop3", "profile": {"bio": {"text": "괜찮아.\nYou''ll be happy.", "mentioned_profiles": []}}, "username": "mondss", "power_badge": false, "display_name": "shine_my_life🎩", "active_status": "inactive", "verifications": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "follower_count": 1173, "custody_address": "0xa044138872bbb075008d24c1921fac2f00e7c58b", "following_count": 816, "verified_addresses": {"eth_addresses": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Modern Loneliness by Lauv on #SoundCloud https://on.soundcloud.com/AyLPV\"}"}', NULL), - (1173209, '0x087729aad21d69fbe5a08bdf2f5c5702108ae4a3', 0, 1, '2024-05-15 11:08:47+00', 0, 1, '{"fid": 292310, "object": "user", "pfp_url": "https://arweave.net/DY0e8pPFH1qVuqFXwGGXzpqQPwicUzyG3VBak8y0S-0/", "profile": {"bio": {"text": "Host of /aviation, /justbuild, and /mystery | Crypto investor since 2020 ", "mentioned_profiles": []}}, "username": "flight", "power_badge": true, "display_name": "flight 🛩️↑ ", "active_status": "inactive", "verifications": ["0xe8d5f8f74d25291ea0b8c07667897c19745d111b"], "follower_count": 478, "custody_address": "0x2a5e6174f91ff3c48fa42291ae70ef0aba8836cf", "following_count": 421, "verified_addresses": {"eth_addresses": ["0xe8d5f8f74d25291ea0b8c07667897c19745d111b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4L0T3usCoeUO85dJeuxbBf?si=cAD4W47sT-Gi51FSRm6qHQ\"}"}', NULL), - (962360, '0x382e2d5c697c20825752631bfafa012d6bcc06ce', 0, 1, '2024-05-07 09:25:13+00', 0, 1, '{"fid": 427017, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c51631d-70e5-4382-79ae-f7dc7b339100/original", "profile": {"bio": {"text": "I think I''ll have a good exchange with you.\n\nwhat ever you can manage\nなんとかなれー\n\nhttps://warpcast.com/saiga/0xa865c085", "mentioned_profiles": []}}, "username": "saiga", "power_badge": false, "display_name": "saiga", "active_status": "inactive", "verifications": ["0x8437df1f56c7a144adefb71653f871bc43a63f7f"], "follower_count": 662, "custody_address": "0xcc9227622532b262c003032763cb02d405fd6e77", "following_count": 599, "verified_addresses": {"eth_addresses": ["0x8437df1f56c7a144adefb71653f871bc43a63f7f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hujikopro/amen-punk-mix\"}"}', NULL), - (918539, '0x99f443951e64ec94ecea7d394510be013584a547', 0, 1, '2024-05-07 07:14:23+00', 0, 9, '{"fid": 501914, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b14740fd-c936-4695-d36d-2176896c5200/rectcrop3", "profile": {"bio": {"text": "base/onchain", "mentioned_profiles": []}}, "username": "masch87", "power_badge": false, "display_name": "masch87🎩🦄✅", "active_status": "inactive", "verifications": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "follower_count": 1418, "custody_address": "0xae6ce4dd57535388d8181f11fbc7696244f05ece", "following_count": 1958, "verified_addresses": {"eth_addresses": ["0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang?si=8a479e23b03646338b3a5b9d04099588&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (917861, '0x9862119406b763400626e3005437d2a497a81211', 0, 1, '2024-05-07 07:11:02+00', 0, 5, '{"fid": 495796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52ce7d-af8e-4823-b6bb-db4330a74f00/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Crypto/Animals/Fun/ 슈캐이용중 /맞팔100%", "mentioned_profiles": []}}, "username": "30uk", "power_badge": false, "display_name": "Jiwon", "active_status": "inactive", "verifications": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "follower_count": 1703, "custody_address": "0x0717678be60b82344743230571577199405a539d", "following_count": 2739, "verified_addresses": {"eth_addresses": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dEJ5GU7Hos1AbSWA7\"}"}', 'sonata'), - (1173199, '0x4439dea73f420debf11654a4f440aad0b7e2fa21', 0, 1, '2024-05-15 08:30:35+00', 0, 0, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1949, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 493, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5H4rKylLnO8KrmdXTRhj5s?si=pQQ9ErbjT6-4fmVifGHI4w\"}"}', NULL), - (925035, '0x6e5a94771b1f9d9ceac98008cd8a11d037cd41e9', 0, 1, '2024-05-07 07:44:34+00', 0, 2, '{"fid": 422681, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3583f305-f068-42b6-11e9-27eee95ef200/rectcrop3", "profile": {"bio": {"text": "Degen / TN00x / Enjoy ", "mentioned_profiles": []}}, "username": "closecast", "power_badge": false, "display_name": "goat⚽️", "active_status": "inactive", "verifications": ["0x9999aaa8f2b377d59c52bfa90224ac381c0778ce"], "follower_count": 1004, "custody_address": "0x4834daab503040f5378064319a9e10ac92c1d627", "following_count": 716, "verified_addresses": {"eth_addresses": ["0x9999aaa8f2b377d59c52bfa90224ac381c0778ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7N3R4cGJECivggh68\"}"}', 'sonata'), - (962830, '0x563bcf7a953caa40079c799379cfd6f53dc898cb', 0, 1, '2024-05-07 09:26:46+00', 0, 3, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2597, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2160, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/N5cQwKcvH37Xiyn67\"}"}', NULL), - (892023, '0xb758c1ee433d39cab05ef55d975bec79c8c1c996', 0, 1, '2024-05-07 06:36:52+00', 20, 0, '{"fid": 501698, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54b20527-69dd-496c-d3cd-5d37211b0000/original", "profile": {"bio": {"text": "💙BASE 💜DEGEN 💛Web3.0 💕FOOD 💢MUSIC \nhttps://zora.co/@daggaya\n", "mentioned_profiles": []}}, "username": "yokoi", "power_badge": false, "display_name": "yokoi", "active_status": "inactive", "verifications": ["0x2070f355a7b475c719bac8d93da8c28494b61836"], "follower_count": 561, "custody_address": "0x1d0211d45a070470592db0c0c31151feb7a659ec", "following_count": 1241, "verified_addresses": {"eth_addresses": ["0x2070f355a7b475c719bac8d93da8c28494b61836"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/alaahedar/michael-bolton-how-am-i-supposed-to-live-without-you?in=lionel-andrews-427969331/sets/michael-bolton&si=2a667c4e0fe84385a85268416f33cff8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (907864, '0x0c3c3981b353a9a314b77e8ec39968ebcd1e7358', 0, 1, '2024-05-07 06:59:01+00', 0, 1, '{"fid": 503372, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36fecfe6-25b2-4260-9f0e-418991dff000/rectcrop3", "profile": {"bio": {"text": "We''ve scored front-row tickets to this cosmic carnival—let''s dance through the stardust! 🎡🌠", "mentioned_profiles": []}}, "username": "z-eliza", "power_badge": false, "display_name": "ELISA ", "active_status": "inactive", "verifications": ["0x3a88cf9c05cb64cad550e9f90c360ba748e06b02"], "follower_count": 734, "custody_address": "0x84a161665ddfdabd1dd2a87b454d9a96dc761dcc", "following_count": 839, "verified_addresses": {"eth_addresses": ["0x3a88cf9c05cb64cad550e9f90c360ba748e06b02"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZaYBBsQK1wAaoGXe7\"}"}', 'sonata'), - (934429, '0xa3f31926a6910ac632afa055b6ea4db52d7cad50', 0, 1, '2024-05-07 08:15:56+00', 0, 0, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/68SO1oHqtFvxRXSbAXISM5?si=8489d1dd43864467\"}"}', NULL), - (913562, '0x3e5407917a91f34cc7b7c3a450109d0ff5370efe', 0, 1, '2024-05-07 07:06:45+00', 0, 7, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2930, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XeWqa\"}"}', 'sonata'), - (933484, '0x3c791bf64799df8fc81b7a1e875ef5a2618f0d7d', 0, 1, '2024-05-07 08:15:25+00', 0, 2, '{"fid": 500425, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVLMqxwkQY7wSKibdiUiYYWiGzBBkHNWHC32LKKsZEq21?filename=810-_AI-Anime.jpg", "profile": {"bio": {"text": "I love base ❤️ I love zora 💕 I love ham 🍖", "mentioned_profiles": []}}, "username": "ssamgjang", "power_badge": false, "display_name": "ssamjang", "active_status": "inactive", "verifications": ["0x4b064e08923fd1ea0dc534212d63d0582a82f9ea"], "follower_count": 1519, "custody_address": "0x8f18ab7f461abeab7b3d44dc0d15456024e4598f", "following_count": 1541, "verified_addresses": {"eth_addresses": ["0x4b064e08923fd1ea0dc534212d63d0582a82f9ea"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/yec3jcHRUbe4rfoW6\"}"}', 'sonata'), - (972127, '0x6d057405809b8b33cfb365baa3e1c2c7ccf7e2fc', 0, 1, '2024-05-07 10:07:36+00', 0, 1, '{"fid": 507437, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60ffa0d7-f161-470d-7fe2-0ba39b14b200/rectcrop3", "profile": {"bio": {"text": "Veterinary student🦢🦙", "mentioned_profiles": []}}, "username": "!507437", "power_badge": false, "display_name": "Soheil", "active_status": "inactive", "verifications": ["0xd94961c033529e58a8696dbb351f55225b05b6c5"], "follower_count": 397, "custody_address": "0x6a9ef095c6f1fe5b253030bfc88ed1e070bc727e", "following_count": 545, "verified_addresses": {"eth_addresses": ["0xd94961c033529e58a8696dbb351f55225b05b6c5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/taylorswiftofficial/sets/the-tortured-poets-2\"}"}', NULL), - (1173486, '0x9735b37153013d8fd1ee6f94d98129877107934f', 0, 1, '2024-05-16 03:06:43+00', 0, 11, '{"fid": 248216, "object": "user", "pfp_url": "https://i.imgur.com/7sXGA9U.jpg", "profile": {"bio": {"text": "\nco-creator of /farcards", "mentioned_profiles": []}}, "username": "sartocrates", "power_badge": true, "display_name": "sartocrates", "active_status": "inactive", "verifications": ["0x7ff446ecf4a6c7224264eab1ee97e26a1d71152d"], "follower_count": 8282, "custody_address": "0x2be743907dc805099b16351717b2b8f09b7d5938", "following_count": 1658, "verified_addresses": {"eth_addresses": ["0x7ff446ecf4a6c7224264eab1ee97e26a1d71152d"], "sol_addresses": ["55Nh22xdSpRbVwRjQUas8bjwDdNMadnXttVjtuuhwuGJ"]}}', '{"{\"cast_id\":{\"fid\":248216,\"hash\":\"0x04ecf7ccebaeb8918754b577ef04f9e11545428c\"}}","{\"url\":\"https://soundcloud.com/sartocrates/delaware-county-live-from-farhouse-5515\"}"}', 'sonata'), - (890659, '0xc06b299a7956034a9d2e1b9317f339bff95b0b22', 0, 1, '2024-05-07 06:35:02+00', 0, 3, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 369, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 334, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/58Zmv\"}"}', 'sonata'), - (904616, '0x7e2c963a103039232fac89088111771395e6fd8a', 0, 1, '2024-05-07 06:55:02+00', 0, 1, '{"fid": 492423, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWam5yoCBhtMXsNgsXHV2SeEZWAZhKqquGBFgB95vRNPA?filename=.jpg", "profile": {"bio": {"text": "나는 봇이 아니에요!! 살려줘요 ㅠㅠㅠ", "mentioned_profiles": []}}, "username": "kimchoi", "power_badge": false, "display_name": "kimchoi", "active_status": "inactive", "verifications": ["0x75e4daa70bb3c0a52f4db6d7e92d348240bb20d0"], "follower_count": 415, "custody_address": "0xea1542219a2762bd5ed2e6b65c24420b638dbbe1", "following_count": 260, "verified_addresses": {"eth_addresses": ["0x75e4daa70bb3c0a52f4db6d7e92d348240bb20d0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/buzzing-playlists/sets/buzzing-pop?si=545f1a9dd7e34e629f71859f3a1645a2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (965219, '0x67109f2e43ad2576a03714e90932fce6b57a139a', 0, 1, '2024-05-07 09:32:29+00', 0, 2, '{"fid": 497723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e26a6e18-e548-42f9-4c3b-da09da2d0400/rectcrop3", "profile": {"bio": {"text": "The world is bigger than what we think. So much bigger that it doesn''t even fit in our imaginations", "mentioned_profiles": []}}, "username": "metaworld", "power_badge": false, "display_name": "metaworld🎩🔮", "active_status": "inactive", "verifications": ["0x159ac29c338c0ce4787d4ace66d44d64060df165"], "follower_count": 547, "custody_address": "0x290692b706fdb2122662e9b7b42c5490198a0ef4", "following_count": 596, "verified_addresses": {"eth_addresses": ["0x159ac29c338c0ce4787d4ace66d44d64060df165"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/conan-gray/sets/superache-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1020936, '0x9ab9cec9f142c78d7613d792a7ef5b7cb29c59ff', 0, 1, '2024-05-07 12:54:42+00', 0, 2, '{"fid": 486310, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6071787-b9ac-49a8-f2da-15e311df5e00/rectcrop3", "profile": {"bio": {"text": "F4F 마띠🎩 햄🍖 인간 비타민🍋🍋🍋💛", "mentioned_profiles": []}}, "username": "jennyan", "power_badge": false, "display_name": "J🎩🍋", "active_status": "inactive", "verifications": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "follower_count": 1536, "custody_address": "0xacd0c2b19213be2deaaee6700483b03f545ab108", "following_count": 1534, "verified_addresses": {"eth_addresses": ["0xadff8aed47fdcc0ff393cc02d9be646d70c2736f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/chet-baker-official/i-fall-in-love-too-34890748?si=64627faf2c054201b3a950c03e9390df&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1035466, '0xa0838069ec4ac33e0451736f969cb293b6018c9b', 0, 1, '2024-05-07 13:30:49+00', 0, 2, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 621, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 896, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hossony/r3e2raoyt2ng?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (918534, '0x8685a623deabb923096473d2d0b1caa9c65424c2', 0, 1, '2024-05-07 07:15:04+00', 0, 1, '{"fid": 387528, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b2ad7f9-9595-4aa5-6c2d-a90ed20df900/original", "profile": {"bio": {"text": "crypto勉強中です🥹楽しくワーキャスしたい!🍖🎩studying crypto🎩fid:387528", "mentioned_profiles": []}}, "username": "umak", "power_badge": false, "display_name": "🍖umak🎩", "active_status": "inactive", "verifications": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "follower_count": 916, "custody_address": "0xba46d0958c44912f98d84c354ea445457a29fe60", "following_count": 1131, "verified_addresses": {"eth_addresses": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-234995373/kikuchi-hellixzerolivemix-2023jun?si=60d5c3a5a8f94eb184d780aaa5cd881f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173296, '0xf343ebf6505745cf21829ed480fe8adfbee01e40', 0, 1, '2024-05-15 17:44:11+00', 0, 1, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4542, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=0a11a3eba20e464f\"}"}', NULL), - (892058, '0xa2c3a6094cda46ca2e92bb7a74036697d8cdc822', 0, 1, '2024-05-07 06:36:48+00', 10, 0, '{"fid": 404910, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0f4cb9a8-92d3-4745-b793-fa36fa3ec400/rectcrop3", "profile": {"bio": {"text": " ❤️ ❤️\n\n일상공유.코인으로 돈벌어요~!! 서로 방문하며 흔적 남깁시다!! 🐾🐾🍖☕️🍻", "mentioned_profiles": []}}, "username": "chadori", "power_badge": false, "display_name": "chadori", "active_status": "inactive", "verifications": ["0x2e2d0045ffd0ebfed105d9d5e8d76552410ce41d"], "follower_count": 1550, "custody_address": "0x34b7cb0c69cf43424ddd821c7413043a39d46935", "following_count": 1567, "verified_addresses": {"eth_addresses": ["0x2e2d0045ffd0ebfed105d9d5e8d76552410ce41d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to TAEYEON 태연 - ''To. X'' by Moonbyulkiki27 𓂆 on #SoundCloud https://on.soundcloud.com/Pu4VU\"}"}', NULL), - (912571, '0x6c016ab4768b8e7dcf7d7874f440b1a362ea1273', 0, 1, '2024-05-07 07:06:31+00', 0, 0, '{"fid": 411315, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74fba8fa-c42c-433d-c2b7-1f2d60e5fa00/rectcrop3", "profile": {"bio": {"text": "Japanese living in Bangkok🇹🇭 Photographer📸 タイ在住。バンコクで会社経営。タイ生活のリアルや現地から写真をお届け!タイ旅行や移住のご相談は遠慮なくコメント、DMください😁", "mentioned_profiles": []}}, "username": "sukhumvit", "power_badge": false, "display_name": "Kasol", "active_status": "inactive", "verifications": ["0x24b725082d34e45c9c5affa42d2cbd8a2f9209c4"], "follower_count": 1061, "custody_address": "0x33a5410c674345cad95c85b7fa72818982b0009f", "following_count": 897, "verified_addresses": {"eth_addresses": ["0x24b725082d34e45c9c5affa42d2cbd8a2f9209c4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c3fHAGsSxBWHExmV8\"}"}', 'degen-japan'), - (904611, '0xf3c9e5899fa46db6faae14b8af786fe73f2a0e4f', 0, 1, '2024-05-07 06:55:18+00', 0, 1, '{"fid": 343646, "object": "user", "pfp_url": "https://i.imgur.com/TQ2ARpW.gif", "profile": {"bio": {"text": "i’m hamuhamu\n\nデゲン初心者です。\nシャドバン組です。\n影の者です。\n見えてないの悲しいです。\nよろしくお願いします。", "mentioned_profiles": []}}, "username": "hamuhamu", "power_badge": false, "display_name": "hamuhamu 🎩🥚", "active_status": "inactive", "verifications": ["0x43c31d27ed189070d50f8b20f8a1c908ec2050bc", "0x43c31d27ed189070d50f8b20f8a1c908ec2050bc"], "follower_count": 820, "custody_address": "0x3b97b704ea290e960468bc3441f3a6db9df981fe", "following_count": 998, "verified_addresses": {"eth_addresses": ["0x43c31d27ed189070d50f8b20f8a1c908ec2050bc", "0x43c31d27ed189070d50f8b20f8a1c908ec2050bc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zeroofficialmusic/neyo-closerzero-remix?si=bf50bc0fd0994d6a9be0dc1c8682524e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173611, '0x16558bcf1dd18e4bb57b0948f6c60fca41754ac2', 0, 1, '2024-05-15 08:36:08+00', 0, 0, '{"fid": 17892, "object": "user", "pfp_url": "https://i.imgur.com/zwxa0tc.jpg", "profile": {"bio": {"text": "Building /herocast. Consumer crypto, /clouds and Italo /disco.", "mentioned_profiles": []}}, "username": "biji", "power_badge": true, "display_name": "Biji", "active_status": "inactive", "verifications": ["0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee"], "follower_count": 147, "custody_address": "0xbc3d093148abebfde9f9e8c7bb589da881eb375b", "following_count": 220, "verified_addresses": {"eth_addresses": ["0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6NSqiyQWIyZLouviktad9X?si=ddbf757e8b2a49b2\"}"}', 'disco'), - (966483, '0x2596225fd5f09e8dedc47ce8bd4c4086bcaa6847', 0, 1, '2024-05-07 09:34:17+00', 0, 4, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 837, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 906, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GEgzcqt3qPMqsCnR8\"}"}', 'sonata'), - (925040, '0x941053443918be47b0bac99ceb62bfdb2aa3d1d8', 0, 1, '2024-05-07 07:44:34+00', 0, 1, '{"fid": 500429, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmd6sMDLmn7Lpkweb2hMmiLbH19pDQu5tAg4kk1nq6Kws3?filename=f9a4486d-f75d-43c3-a601-032529f51f86.png", "profile": {"bio": {"text": "Plz degen to the moon🚀", "mentioned_profiles": []}}, "username": "tomorrowluck", "power_badge": false, "display_name": "toluck", "active_status": "inactive", "verifications": ["0xddf8a6b32b77991de393f1fc94071c82cc901f62"], "follower_count": 2225, "custody_address": "0x2dc49c01a46362312124b681046420b7f0e9fd7e", "following_count": 2090, "verified_addresses": {"eth_addresses": ["0xddf8a6b32b77991de393f1fc94071c82cc901f62"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uKAnaoKqseCyBueZA\"}"}', 'sonata'), - (904317, '0x186175a1b37d6102b7df1c0eeb7abfc107a207e6', 0, 1, '2024-05-07 06:54:12+00', 0, 16, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/edbangerrecords/justice-on-n-on-justin\"}"}', NULL), - (888739, '0x19bed87e3b5c8b4c41eaf1f9c0979ddf08c89d5c', 0, 1, '2024-05-07 06:32:17+00', 0, 1, '{"fid": 441301, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/44f27765-407b-472d-374c-9024d733c400/rectcrop3", "profile": {"bio": {"text": "The largest holder of the Crazy Ferns project, Dragon and Fukaff investment fund\nInterested in investing, stock market portfolio manager", "mentioned_profiles": []}}, "username": "nasserz67", "power_badge": false, "display_name": "nasserz67", "active_status": "inactive", "verifications": ["0x868025b6f9b42f88159d5ba30eebd12a0f0c2903"], "follower_count": 924, "custody_address": "0xec7f1a6d3d58df6424bf2d2ca57d5c05e122aacf", "following_count": 903, "verified_addresses": {"eth_addresses": ["0x868025b6f9b42f88159d5ba30eebd12a0f0c2903"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Do3oEEE9nfFHHetn8\"}"}', NULL), - (1173198, '0x29de06f8540a4a7ea19f47de771b5c10262bcfd7', 0, 1, '2024-05-15 08:15:13+00', 0, 29, '{"fid": 365925, "object": "user", "pfp_url": "https://i.imgur.com/WbZgJkY.jpg", "profile": {"bio": {"text": "My life, travels and first steps in crypto • 🐾 • Let''s see together where this goes!", "mentioned_profiles": []}}, "username": "kriptokotya", "power_badge": true, "display_name": "Kriptokotya 🎩", "active_status": "inactive", "verifications": ["0x91bf3c7bf154b49aa4858ae0d17e39a6d9ec72d6"], "follower_count": 2890, "custody_address": "0x684bf8cb6af3253a873b4422d989df37e66fdfa4", "following_count": 1147, "verified_addresses": {"eth_addresses": ["0x91bf3c7bf154b49aa4858ae0d17e39a6d9ec72d6"], "sol_addresses": ["cZR3M2EaHuSd6XZz4jJekxeFxae3B3XPgd6cDExwXt2"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/811c917c-6bec-4c35-3b3c-8b9e89828100/original\"}","{\"url\":\"https://open.spotify.com/track/1PYG9Akj0LAZZUDXzV9m1S?si=SMGgipGcSZKFcRDQHThDDg\"}"}', 'ventures'), - (909395, '0x007a4153afd202599964fdd9532e899c71a7b4d7', 0, 1, '2024-05-07 07:00:02+00', 0, 1, '{"fid": 500839, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f3ca434-96aa-4bb9-6495-6ae249568400/rectcrop3", "profile": {"bio": {"text": "hello my name is amellia", "mentioned_profiles": []}}, "username": "amellia", "power_badge": false, "display_name": "amellia", "active_status": "inactive", "verifications": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "follower_count": 247, "custody_address": "0x9acfd223eb6f1deadc2984042d96f83fa0f4fe86", "following_count": 229, "verified_addresses": {"eth_addresses": ["0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mysticalnights/dj-okawari-luv-letter?si=e4aeaf9cbf5f4968a3541042ef293cff&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (892033, '0x7b3abb09c94fc9d88b0692e29ad769c4e6f2779c', 0, 1, '2024-05-07 06:36:40+00', 0, 1, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1467, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1613, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/giusyferrigno/ill-never-love-again-lady-gaga-a-star-is-born-giusy-ferrigno-cover?si=4c5f418a241f49d8bf35eb9e00efd2ac&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (966485, '0x0682486a8084430c78f87b5b531ca79ce008f33f', 0, 1, '2024-05-07 09:33:51+00', 0, 2, '{"fid": 425117, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ffa2806-e07f-4d46-1bd8-8fa9debacc00/rectcrop3", "profile": {"bio": {"text": "away", "mentioned_profiles": []}}, "username": "away", "power_badge": false, "display_name": "away", "active_status": "inactive", "verifications": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "follower_count": 1825, "custody_address": "0x0ae06a7d1fb20108b10f4e2ac171e512ccb8fbf4", "following_count": 1940, "verified_addresses": {"eth_addresses": ["0x8bdaae81a398ca6618e38e3dd769c0035712450e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4qHdhSUkmDh6r7Ea4NzAvM?si=oASUfsi9TxebbhWqIHK5aQ\"}"}', 'cs2'), - (926705, '0x52584606bedac438487771af07a03cde574e6c12', 0, 1, '2024-05-07 07:56:00+00', 0, 2, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1584, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2540, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VzDqXAZsNQzNS7j88\"}"}', NULL), - (924435, '0x4bdc862db7cbb51cfafaa15d7f8fdcb9bbf2d854', 0, 1, '2024-05-07 07:38:17+00', 0, 1, '{"fid": 385297, "object": "user", "pfp_url": "https://i.imgur.com/vPdQxWb.jpg", "profile": {"bio": {"text": "i''m a ghost\nJAPAN", "mentioned_profiles": []}}, "username": "sdl-nemo", "power_badge": false, "display_name": "Nemo🔵⛓️👻", "active_status": "inactive", "verifications": ["0xa93883c125a4f26001720457253448116c60ff67"], "follower_count": 734, "custody_address": "0xca54c1d3b3391a3906314f8e820255172f9ea61e", "following_count": 1088, "verified_addresses": {"eth_addresses": ["0xa93883c125a4f26001720457253448116c60ff67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NYFVgM1bcXSq66Nj6\"}"}', 'sonata'), - (1017876, '0xa62d1e7e5a0d9d174c01ba59809ad2bc3051db54', 0, 1, '2024-05-07 12:48:38+00', 0, 0, '{"fid": 516812, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd0c9bf6-57d6-413d-f419-f325db504200/rectcrop3", "profile": {"bio": {"text": "DJ / DRONE / Single speed Bike\nDJしたりキャンプしてます\n\nMixcloud:https://www.mixcloud.com/djinnhaq/\nX:https://twitter.com/illegal1312", "mentioned_profiles": []}}, "username": "!516812", "power_badge": false, "display_name": "djinnhaq", "active_status": "inactive", "verifications": ["0xc06fdc18b618eb9713b806a8d67d9c3deae98229"], "follower_count": 25, "custody_address": "0xf9e1b4d3a2b7b121fcb058e29ab2fea93bcf4a82", "following_count": 92, "verified_addresses": {"eth_addresses": ["0xc06fdc18b618eb9713b806a8d67d9c3deae98229"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R82BdZtHbQxhuhjX8\"}"}', 'musicjp'), - (869375, '0x1205fb0c40a603826a4bd41d89f473adc27fe5ac', 0, 1, '2024-05-07 05:49:37+00', 0, 1, '{"fid": 385242, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiggp52wnkuqowiewtsdpsj6lu2avnndesprstiddjwguqdgyfbpgu", "profile": {"bio": {"text": "i love farcaster\nCH host:/ogiri /casnews", "mentioned_profiles": []}}, "username": "harefine.eth", "power_badge": false, "display_name": "hare🎩", "active_status": "inactive", "verifications": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "follower_count": 1397, "custody_address": "0xf7c15b2215c1a2c7390746209dee17f98aca29f1", "following_count": 775, "verified_addresses": {"eth_addresses": ["0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a"], "sol_addresses": ["CKpihsP5fsG5KckWo7fUZnsVDYXy2Zpx9c1PFam39eFK"]}}', '{"{\"url\":\"https://open.spotify.com/track/6rjnRocdCULjLF61x2NR5e?si=hYqJdaFJRIuymdYvrEXuMw\"}"}', NULL), - (972337, '0x6f58cbece73a714d5214555ffb4c25c518d73ad8', 0, 1, '2024-05-07 10:10:55+00', 0, 0, '{"fid": 376144, "object": "user", "pfp_url": "https://arm22i2isixk3waiiw53vakcpyofspalzlxpjgleh5gmhohrbqbq.arweave.net/BFmtI0iSLq3YCEW7uoFCfhxZPAvK7vSZZD9Mw7jxDAM/", "profile": {"bio": {"text": "love crypto \n\nhard worker \n\nnever give up", "mentioned_profiles": []}}, "username": "pouryagholami", "power_badge": false, "display_name": "pourya gholami🎩👑", "active_status": "inactive", "verifications": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "follower_count": 1116, "custody_address": "0x45912cea45d90d71a0808b305d7edac73985743b", "following_count": 1964, "verified_addresses": {"eth_addresses": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "sol_addresses": ["EysELknAFZbd8GoKsnYLei4DWyZojpVqEPg6fxtfX196"]}}', '{"{\"url\":\"https://soundcloud.com/rap_farsi_2024/catchybeatz-x-sajad-shahi-haydeh?ref=clipboard&p=i&c=0&si=E69F5EBDF3DC40849333789F95721AD3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (892031, '0x180b42f22c50eeea3848309ccd1f55c7a9483f70', 0, 1, '2024-05-07 06:36:35+00', 0, 2, '{"fid": 514153, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7f05dd2-b38f-4106-1969-7fb26a6cd200/rectcrop3", "profile": {"bio": {"text": "Web3 developer. I’m girl from /farcaster", "mentioned_profiles": []}}, "username": "!514153", "power_badge": false, "display_name": "Sara.eth", "active_status": "inactive", "verifications": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "follower_count": 199, "custody_address": "0x006d4bf65143528a0e7e8860a2fee6c7a4ba2aec", "following_count": 635, "verified_addresses": {"eth_addresses": ["0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EM8YN\"}"}', 'sonata'), - (877189, '0x6775713806478a75d37f67fb3fe140b03c47726a', 0, 1, '2024-05-07 06:04:48+00', 0, 7, '{"fid": 278653, "object": "user", "pfp_url": "https://i.imgur.com/Ph6d9IU.jpg", "profile": {"bio": {"text": "My dog/cat thinks I''m cool.", "mentioned_profiles": []}}, "username": "alexescd.eth", "power_badge": true, "display_name": "alexesc 🎩", "active_status": "inactive", "verifications": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "follower_count": 757, "custody_address": "0xdfeb78e753bc0811431b73cf830ff114e10619ae", "following_count": 1266, "verified_addresses": {"eth_addresses": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/tomasmika/onchain-melody-a-fork-dao-song\"}"}', NULL), - (983683, '0xbbd5d9c311033a651ca2477cd4bb91efe35f597c', 0, 1, '2024-05-07 10:58:00+00', 0, 8, '{"fid": 471528, "object": "user", "pfp_url": "https://i.imgur.com/7nmDvaz.jpg", "profile": {"bio": {"text": "일단시작!선팔환영!🎩 🍖 🚀 맞팔조대리 무한반사(슈캐) 🔥 SHOW ME THE LIKES 👍 일상을 공유하고 소통합니다.", "mentioned_profiles": []}}, "username": "digino", "power_badge": false, "display_name": "DigiNo👍", "active_status": "inactive", "verifications": ["0xe717cca45aa886420645abe2e3fbf54b376a4e3c"], "follower_count": 2136, "custody_address": "0xec197fa6c407168baf16810202df1bcd10e16dd8", "following_count": 2373, "verified_addresses": {"eth_addresses": ["0xe717cca45aa886420645abe2e3fbf54b376a4e3c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545698615/kim-yeon-woo-1?si=22b25699495e478b914e24b570a87ac6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (906698, '0xe1e0d4bbd3deff8af31a002ea7b44ca842bfea8b', 0, 1, '2024-05-07 06:56:14+00', 0, 4, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 369, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 334, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4EBP7\"}"}', 'sonata'), - (992304, '0x83a4eb2771b15e609fe343710c5b09e851df2194', 0, 1, '2024-05-07 11:31:52+00', 0, 0, '{"fid": 508697, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb796574-fdac-4ba0-21bc-b2f686014c00/original", "profile": {"bio": {"text": "Android developer. | \nIf you can dream it, you can do it.\n", "mentioned_profiles": []}}, "username": "!508697", "power_badge": false, "display_name": "Ashkan 🎩🔵🔮", "active_status": "inactive", "verifications": ["0x7b82c850f5acc730f880ccb472c2d5dfe1fe84ec"], "follower_count": 148, "custody_address": "0xb5a0c70a1adbf135d44a2af8cc00760169fa29f3", "following_count": 183, "verified_addresses": {"eth_addresses": ["0x7b82c850f5acc730f880ccb472c2d5dfe1fe84ec"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/luis-tenorio-gomez-751937757/sting-shape-of-my-heart?ref=clipboard&p=a&c=0&si=b211bfdd897b424abeb0152d5a975421&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173279, '0x1fc61ccf4c5289e9722f2dc60d242aefb1fe15fd', 0, 1, '2024-05-15 17:05:45+00', 0, 21, '{"fid": 298503, "object": "user", "pfp_url": "https://i.imgur.com/yOTQE1k.gif", "profile": {"bio": {"text": "Digital Artist from Argentina 🇦🇷\nSupporting on /degenartists 🎨 \n/albumoftheday 🎶\nhttps://linktr.ee/vinotintooo", "mentioned_profiles": []}}, "username": "vinito", "power_badge": true, "display_name": "VINITO 🎩 🍖 🍷 ", "active_status": "inactive", "verifications": ["0xd275fa8933c6994e51a3337b65237800f4ba54c1"], "follower_count": 5716, "custody_address": "0x7e719d012b33ab491b8dc9fda3191e4296f72a13", "following_count": 604, "verified_addresses": {"eth_addresses": ["0xd275fa8933c6994e51a3337b65237800f4ba54c1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5A2vl9MadJ87kas3R3GoTm?si=0VFlFU6hRTWYZK_DlITMgQ&context=spotify%3Aalbum%3A4JwjxPyISbFEUeh267bYbg\"}"}', 'confessions'), - (896574, '0x199aac7b951747103ee4e70fbaa04d8808e46069', 0, 1, '2024-05-07 06:42:46+00', 0, 2, '{"fid": 516187, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5eb3758-cc4d-472e-a69e-14040b4a7d00/rectcrop3", "profile": {"bio": {"text": "초보신입/맞팔💯💯/선팔주시면 달려갑니다/무조건반사갑니다", "mentioned_profiles": []}}, "username": "!516187", "power_badge": false, "display_name": "느티고을나무늘보", "active_status": "inactive", "verifications": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "follower_count": 225, "custody_address": "0x774d0caf03af43ca9e47069d48f1dd34469439c6", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G5sd1ypV3qabBNop6\"}"}', NULL), - (896587, '0x264876e2357e0ae81f6ab398c3dfbc9f673970ac', 0, 1, '2024-05-07 06:40:23+00', 0, 1, '{"fid": 501722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da05e855-b8b7-4447-2e94-72f460ba8500/original", "profile": {"bio": {"text": "긍정적인 마음으로 즐기자!\n달을 보며 소원 빌어요.\n수리수리마수리~ 이뤄져라 얍!\n서로 추앙해요~ ", "mentioned_profiles": []}}, "username": "suri2", "power_badge": false, "display_name": "긍정이", "active_status": "inactive", "verifications": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "follower_count": 1383, "custody_address": "0xe7df0b2d94a885326148388a58f46104bbce9c5a", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 너에게난나에게넌 - 자전거탄풍경 by kightshw on #SoundCloud https://on.soundcloud.com/WXunz\"}"}', NULL), - (904605, '0xffa17b6ff59923639619f07219dc6b45c8a7b7bf', 0, 1, '2024-05-07 06:55:03+00', 0, 2, '{"fid": 489893, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acfbf5f1-9b73-4e1e-3628-af1def309a00/rectcrop3", "profile": {"bio": {"text": "슈캐💛워캐💛Degen💛🎩💛", "mentioned_profiles": []}}, "username": "lovemango", "power_badge": false, "display_name": "Mango", "active_status": "inactive", "verifications": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "follower_count": 1534, "custody_address": "0xe2b9accc46f0747c26f07483ea17ab9fd21bd965", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jyreYRASbhQYM75Y8\"}"}', 'sonata'), - (1173208, '0x9629fb666f4e140f94f30262c82dd3493d9c5f3b', 0, 1, '2024-05-15 10:55:09+00', 0, 9, '{"fid": 12425, "object": "user", "pfp_url": "https://i.imgur.com/9F7rUZB.jpg", "profile": {"bio": {"text": "Farcaster OG 676, EDM producer,Teacher, Fundamental Researcher, Technoholic , MONAD''s ambassador ", "mentioned_profiles": []}}, "username": "fab", "power_badge": true, "display_name": "HadiFab ", "active_status": "inactive", "verifications": ["0x309471398adfa2b136970583ad0db66294f035e3"], "follower_count": 1757, "custody_address": "0x7aaad5acd163a8e2a93129ce8c0fdd4a9e9d0d1e", "following_count": 938, "verified_addresses": {"eth_addresses": ["0x309471398adfa2b136970583ad0db66294f035e3"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/5d76e441c233bec79c3e639d61313ea0.m3u8\"}","{\"url\":\"https://open.spotify.com/track/5eeFqSafvpmp30pehPKXb7?si=QO4Yj99USRigxJmwVQBRWA\"}"}', 'rock'), - (915600, '0x08f1ee422cc696c5e4562e21bf108786c222beac', 0, 1, '2024-05-07 07:09:42+00', 0, 0, '{"fid": 504638, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4e2261a9-fc92-4fd4-1d77-b6aae0bbd200/rectcrop3", "profile": {"bio": {"text": "Music 🎼 , fitness 🏋🏻‍♀️ , crypto 💰", "mentioned_profiles": []}}, "username": "giti74", "power_badge": false, "display_name": "Giti 🎩🔮", "active_status": "inactive", "verifications": ["0xc2b8d0e853a2b0b8401f93fce9f80c67c089907c"], "follower_count": 318, "custody_address": "0xaf9b68570601aae996e49969c8cad055fad74401", "following_count": 436, "verified_addresses": {"eth_addresses": ["0xc2b8d0e853a2b0b8401f93fce9f80c67c089907c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/buzzing\"}"}', NULL), - (930511, '0x59f3b681924d2bcabcc14eabd9cd0f24e65a5ee8', 0, 1, '2024-05-07 08:05:12+00', 0, 4, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1705, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/YV2s3jYZA71AS42K8\"}"}', 'sonata'), - (1021863, '0xf1e2af629454bb067b2a657ba81860ef25fda96d', 0, 1, '2024-05-07 12:55:44+00', 0, 1, '{"fid": 316060, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5de8e6a4-d3c6-4d10-566e-1be26edb4700/original", "profile": {"bio": {"text": "Likes to visit new place such great place, restaurant, and so on.\nEnjoy Cycling, Running, Hiking\n", "mentioned_profiles": []}}, "username": "landaulet", "power_badge": false, "display_name": "Orangina🎩🍖", "active_status": "inactive", "verifications": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "follower_count": 1706, "custody_address": "0x56cf3a1fe369ecf2db31d4f68dc0e76fdf600d10", "following_count": 1197, "verified_addresses": {"eth_addresses": ["0x9282ec150adbc39d555699052916bd29ac8f2f09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ki11x7RK3LNA1KTJ9\"}"}', 'sonata'), - (918402, '0x5eda969c143640d7597d60343eb9f2eacf6ba133', 0, 1, '2024-05-07 07:12:28+00', 0, 1, '{"fid": 428088, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6e65f436-babe-4c83-0fd9-2e5ac92aa700/rectcrop3", "profile": {"bio": {"text": "Life is good. Everything changes.🤹‍♀️", "mentioned_profiles": []}}, "username": "lifeisgood", "power_badge": false, "display_name": "Vivian💕", "active_status": "inactive", "verifications": ["0x06bd33b42eda4802f3b39f6d7745117e176258f6"], "follower_count": 1108, "custody_address": "0xe061b25bf5087c00a675a08fb975094b0f257883", "following_count": 776, "verified_addresses": {"eth_addresses": ["0x06bd33b42eda4802f3b39f6d7745117e176258f6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UKaE3Sh3PwXcewa46\"}"}', 'sonata'), - (896799, '0x739a85dad487afd951456c5bb726b3239004ea34', 0, 1, '2024-05-07 06:43:42+00', 0, 8, '{"fid": 425948, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e42b789-88aa-4165-805b-66e97e1b7800/original", "profile": {"bio": {"text": "HI\n", "mentioned_profiles": []}}, "username": "j-pajk", "power_badge": false, "display_name": "JPARK", "active_status": "inactive", "verifications": ["0x2fbec7e3d8f1b4460503bea71412438d5fb0b32a"], "follower_count": 2889, "custody_address": "0x5cdbfb399a756f719e2a9b94558c66e7ad747926", "following_count": 3498, "verified_addresses": {"eth_addresses": ["0x2fbec7e3d8f1b4460503bea71412438d5fb0b32a"], "sol_addresses": ["GmpP7TiNbMLvEJGpFmULcFxjdZUCsyA7rhPtgdQsEBrW"]}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang\"}"}', 'sonata'), - (910565, '0xfed299f6093bc55130d87f3bcc37073ec74b3c61', 0, 1, '2024-05-07 07:04:13+00', 0, 0, '{"fid": 422947, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d0ead45-b2a4-4eb0-d599-9ee3018a1c00/rectcrop3", "profile": {"bio": {"text": "榰蟆摝蘑", "mentioned_profiles": []}}, "username": "songkoon", "power_badge": false, "display_name": "SONG0415🎩🍖", "active_status": "inactive", "verifications": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "follower_count": 1922, "custody_address": "0xf6a8e05780dd25addfffa7f4752da8529e0e6df4", "following_count": 1519, "verified_addresses": {"eth_addresses": ["0x139e589e354f58fde0401bf1dc07b77dc5fb3b34"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sXHNsnWfmiW6u2ym9\"}"}', NULL), - (925252, '0x7182b66089c9ebe2e6f4b0d0f6f7c21264554d55', 0, 1, '2024-05-07 07:45:37+00', 0, 4, '{"fid": 463262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1a69422e-14ca-4290-b56a-178f09a99f00/rectcrop3", "profile": {"bio": {"text": "소통이 재밌어서 의리로 하는 사람🫰", "mentioned_profiles": []}}, "username": "peggy-j", "power_badge": false, "display_name": "Peggyya", "active_status": "inactive", "verifications": ["0x1fa0d05c78f4a67cf146d3c46f49d05ecab6aff4"], "follower_count": 1289, "custody_address": "0x4a9028e5e03111e9ede40fbaf8f9dd19beec9cf8", "following_count": 1208, "verified_addresses": {"eth_addresses": ["0x1fa0d05c78f4a67cf146d3c46f49d05ecab6aff4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/roxsann/richard-sanderson-dreams-are?si=71d18d349bad4dc6a9c2d19a4008543c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (915561, '0x16062fb5d2751d4729b687f7d3bc198190d19e58', 0, 1, '2024-05-07 07:08:25+00', 0, 0, '{"fid": 375995, "object": "user", "pfp_url": "https://i.imgur.com/GcoocZb.jpg", "profile": {"bio": {"text": "Stellaron Hunter", "mentioned_profiles": []}}, "username": "firefly183", "power_badge": false, "display_name": "Firefly Sam", "active_status": "inactive", "verifications": ["0xbec391ccb109e2b60c97b7cccf3771ddef80caa3"], "follower_count": 400, "custody_address": "0x2b4adf23c6609c22af830db92bd30b0fc0b666c5", "following_count": 573, "verified_addresses": {"eth_addresses": ["0xbec391ccb109e2b60c97b7cccf3771ddef80caa3"], "sol_addresses": ["5t1JwMW1vnw1n8mFqQzaR9Gz3GCYE3ianMPma46BJ1nM"]}}', '{"{\"url\":\"https://soundcloud.com/cardsmusic/too-bad\"}"}', NULL), - (921950, '0x1bb4ebc88e4c0421fa25fda5eb3d5495642e2b9a', 0, 1, '2024-05-07 07:24:01+00', 0, 0, '{"fid": 437984, "object": "user", "pfp_url": "https://i.imgur.com/Z6eBT4Q.jpg", "profile": {"bio": {"text": "아이스맨입니다.선팔 맞팔 좋/댓/리 칼같이 찾아갑니다! Welcome to iceman world!\n조대리 환영♡", "mentioned_profiles": []}}, "username": "heybro", "power_badge": false, "display_name": "Iceman", "active_status": "inactive", "verifications": ["0xc88135892864309c30ec51734b02ba197c137830"], "follower_count": 2342, "custody_address": "0x5ed9a31cc288a761cde7160645e1975c070d1968", "following_count": 1937, "verified_addresses": {"eth_addresses": ["0xc88135892864309c30ec51734b02ba197c137830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BY1Wc\"}"}', 'sonata'), - (966684, '0x1f32ef0ea5034cc537adb53311e389bf6baa103e', 0, 1, '2024-05-07 09:37:29+00', 0, 0, '{"fid": 500896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad084dc3-15c2-4a29-147a-3f9b87309800/rectcrop3", "profile": {"bio": {"text": "like music youtube culture food \nno matter what like it", "mentioned_profiles": []}}, "username": "joetaka", "power_badge": false, "display_name": "joetaka", "active_status": "inactive", "verifications": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "follower_count": 822, "custody_address": "0x5db012ed31ad2e1ac2db182dae0f51cf582acb70", "following_count": 891, "verified_addresses": {"eth_addresses": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-947432110/sex-and-the-city?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (897775, '0xbbe0630edc0219eae3c973e6368144ff1c026f0c', 0, 1, '2024-05-07 06:45:16+00', 0, 0, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1535, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1807, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-354603372/dean-die-4-you-mp3-2?si=a3e5b456f73d4389bdf9c48ff7967415&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (925256, '0x271b4ccbc1ddc5f4edb8352b5ae9af49395706fc', 0, 1, '2024-05-07 07:45:55+00', 0, 4, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1728, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2960, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WnztP\"}"}', 'sonata'), - (1173287, '0xe6c5dff883b5937bf90c453f92db62df83db6011', 0, 1, '2024-05-15 17:33:40+00', 0, 0, '{"fid": 399, "object": "user", "pfp_url": "https://img.chainrunners.xyz/api/v1/tokens/png/8665", "profile": {"bio": {"text": "chadpeterson.eth // Current: BizOps @ Alluvial,\nPrev: Cambridge Associates, 6th Man Ventures, Blockworks, Amherst Math & Econ", "mentioned_profiles": []}}, "username": "chad", "power_badge": true, "display_name": "Chad🎩", "active_status": "inactive", "verifications": ["0x126d2cebd1ff6da07ccbc905fd6e0ee97ca265ad"], "follower_count": 999, "custody_address": "0x0c4cf7670c1333032bbf057d0978c4aef1f58984", "following_count": 1100, "verified_addresses": {"eth_addresses": ["0x126d2cebd1ff6da07ccbc905fd6e0ee97ca265ad"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5JRYVSZ6K2jY0kznYBmoqr?si=Bsx-KUBRR2Sb2XoC3Hv8gQ\"}"}', 'countrymusic'), - (897802, '0x35ea80681908bdf7c627a91e15f262ea590b718c', 0, 1, '2024-05-07 06:45:09+00', 0, 0, '{"fid": 501722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da05e855-b8b7-4447-2e94-72f460ba8500/original", "profile": {"bio": {"text": "긍정적인 마음으로 즐기자!\n달을 보며 소원 빌어요.\n수리수리마수리~ 이뤄져라 얍!\n서로 추앙해요~ ", "mentioned_profiles": []}}, "username": "suri2", "power_badge": false, "display_name": "긍정이", "active_status": "inactive", "verifications": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "follower_count": 1383, "custody_address": "0xe7df0b2d94a885326148388a58f46104bbce9c5a", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 너에게난나에게넌 - 자전거탄풍경 by kightshw on #SoundCloud https://on.soundcloud.com/WXunz\"}"}', NULL), - (952627, '0x218bd91168966e1f60d7a72efe55c655be031dc2', 0, 1, '2024-05-07 09:01:57+00', 0, 1, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1360, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1482, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/172fMG26G2OoEzzg0wn26r?si=ScIbnFayQtKNq3NEmoOAaA\"}"}', NULL), - (828177, '0x48c13d5d8c1a8b603f073c91d65e37ce11d9a0d2', 0, 1, '2024-05-07 04:12:11+00', 0, 2, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 81, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 250, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fifirong/colourful-souls?referral_source=link\"}"}', NULL), - (907869, '0x3eb05f991c995b42439178911cb93de6449291ca', 0, 1, '2024-05-07 06:59:20+00', 0, 0, '{"fid": 278452, "object": "user", "pfp_url": "https://i.imgur.com/uWj6RMT.jpg", "profile": {"bio": {"text": "🎨 VR/3D Artist | Avatar Artist | Creating the /phettaverse | Brooklyn based | /burrito Founder | hey@emotionull.art", "mentioned_profiles": []}}, "username": "emotionull", "power_badge": false, "display_name": "emotionull", "active_status": "inactive", "verifications": ["0x2e307ceab1b4c5f4cac508e3b13c3dbfe86a3c81", "0x8437e886661a045b696a38ec95f49b81de161eba"], "follower_count": 309, "custody_address": "0x1de29988bb7819446d77a20fa783dfd6fc0c2aa3", "following_count": 117, "verified_addresses": {"eth_addresses": ["0x2e307ceab1b4c5f4cac508e3b13c3dbfe86a3c81", "0x8437e886661a045b696a38ec95f49b81de161eba"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2voxLLEeRZFTqm7H8\"}"}', NULL), - (873371, '0x348e9f8f56e47ae6168d57a9adb7ea4b6fd6eed3', 0, 1, '2024-05-07 05:56:34+00', 0, 1, '{"fid": 278653, "object": "user", "pfp_url": "https://i.imgur.com/Ph6d9IU.jpg", "profile": {"bio": {"text": "My dog/cat thinks I''m cool.", "mentioned_profiles": []}}, "username": "alexescd.eth", "power_badge": true, "display_name": "alexesc 🎩", "active_status": "inactive", "verifications": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "follower_count": 757, "custody_address": "0xdfeb78e753bc0811431b73cf830ff114e10619ae", "following_count": 1266, "verified_addresses": {"eth_addresses": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/alexescd.eth/post/da48f7a9-37c2-4800-a356-8f520050a1ff\"}"}', NULL), - (877009, '0x3c42408c3d5bb53f5b70ac9ee8adec1e0f897e23', 0, 1, '2024-05-07 06:04:13+00', 0, 3, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 967, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Nu5zYIXwbiZdzPpqnKiHM?si=-7VeRe-2Sfexy365Wy6eYA\"}"}', 'sonata'), - (954033, '0x19262ef45f984b0721f883a178bf342e782b7661', 0, 1, '2024-05-07 09:03:18+00', 0, 0, '{"fid": 505556, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8290c871-b580-42d9-4083-1b5c2adcd100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "pivot", "power_badge": false, "display_name": "pivot", "active_status": "inactive", "verifications": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "follower_count": 922, "custody_address": "0x6c1d49afdb334e1728a0193198584fff3012e63b", "following_count": 805, "verified_addresses": {"eth_addresses": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/itshamsandwichtime/takemeaway?si=9483904d950046738a986dda06682a1b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (966685, '0x82edf97c3ccf0eab1cc6d33149c387dbf2a51b0b', 0, 1, '2024-05-07 09:36:40+00', 0, 0, '{"fid": 474917, "object": "user", "pfp_url": "https://i.imgur.com/Dxz9XJX.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mehdiii", "power_badge": false, "display_name": "Target", "active_status": "inactive", "verifications": ["0x73eb871d4163b3671407c1615e89cabe5ac39905"], "follower_count": 1161, "custody_address": "0x73cab37e6fc6dbc9a9007e9b9c5fb317261a0647", "following_count": 1461, "verified_addresses": {"eth_addresses": ["0x73eb871d4163b3671407c1615e89cabe5ac39905"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5cbd2zu6Wb3xWEUb7\"}"}', NULL), - (897771, '0xb241c21c5a88e60c37ca2b025dabd831d1f4dfb6', 0, 1, '2024-05-07 06:45:17+00', 0, 0, '{"fid": 489893, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acfbf5f1-9b73-4e1e-3628-af1def309a00/rectcrop3", "profile": {"bio": {"text": "슈캐💛워캐💛Degen💛🎩💛", "mentioned_profiles": []}}, "username": "lovemango", "power_badge": false, "display_name": "Mango", "active_status": "inactive", "verifications": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "follower_count": 1534, "custody_address": "0xe2b9accc46f0747c26f07483ea17ab9fd21bd965", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jungle-8/back-on-74?si=1a4a25072653455b9f7a33e34c5da88a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (906693, '0xa1d9f9d7e8ec2a4024e1ee2b237a32f111ed4c0c', 0, 1, '2024-05-07 06:57:02+00', 0, 4, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 2042, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2876, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FUxAupDEcJTLzqDLA\"}"}', 'sonata'), - (1173249, '0xdebd6700e76b0a969dbd51a68ad54a7b1dd1e8e4', 0, 1, '2024-05-15 15:26:32+00', 0, 0, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1525, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 429, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0uHrMbMv3c78398pIANDqR?si=0cdec5f96d7940ec\"}"}', NULL), - (916716, '0x4a8c4e347839ed718c0c542b6b34add36ad19c45', 0, 1, '2024-05-07 07:10:27+00', 0, 3, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 393, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 198, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XQkwJREn2Vh7ruE28\"}"}', NULL), - (909396, '0xe1fb359a6afcd334686a51fe989406d14f6e4138', 0, 1, '2024-05-07 07:00:07+00', 0, 7, '{"fid": 469005, "object": "user", "pfp_url": "https://i.imgur.com/JSRHEF3.jpg", "profile": {"bio": {"text": "반가워요 👑👑👑\n우리소통하며지내요 ʕ·͡ˑ·ཻʔ \n선팔/맞팔/좋아요/댓글/반사", "mentioned_profiles": []}}, "username": "sodaling", "power_badge": false, "display_name": "Sodaling", "active_status": "inactive", "verifications": ["0x3f853e2c93daac0fdb23b2d0464533ab7467e7bb"], "follower_count": 1370, "custody_address": "0xb190a7840ec4b23bfde4b505c2f606828bce375a", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x3f853e2c93daac0fdb23b2d0464533ab7467e7bb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6FWRE5sKgZj1sLXR8\"}"}', 'sonata'), - (899038, '0x2149086a67f01abc8b37aefd6700cae58855662a', 0, 1, '2024-05-07 06:46:09+00', 0, 0, '{"fid": 449176, "object": "user", "pfp_url": "https://i.imgur.com/rpUh70j.jpg", "profile": {"bio": {"text": "“Go confidently in the direction of your dreams! Live the life you’ve imagined!”", "mentioned_profiles": []}}, "username": "moza9270", "power_badge": false, "display_name": "Mohammad Zdf", "active_status": "inactive", "verifications": ["0x56e3d17b082db2529291d0fb2986cad87878de86"], "follower_count": 628, "custody_address": "0x8ac37d31ddf6a725967de72acd9b0adab2958ca7", "following_count": 950, "verified_addresses": {"eth_addresses": ["0x56e3d17b082db2529291d0fb2986cad87878de86"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jenniferlopez/no-me-ames-ballad-version?si=354190bb672e445980a420db53a38670&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (899023, '0x9ab02981ca9b5780c017888ef403b8f22cef4458', 0, 1, '2024-05-07 06:46:08+00', 0, 3, '{"fid": 516187, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5eb3758-cc4d-472e-a69e-14040b4a7d00/rectcrop3", "profile": {"bio": {"text": "초보신입/맞팔💯💯/선팔주시면 달려갑니다/무조건반사갑니다", "mentioned_profiles": []}}, "username": "!516187", "power_badge": false, "display_name": "느티고을나무늘보", "active_status": "inactive", "verifications": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "follower_count": 225, "custody_address": "0x774d0caf03af43ca9e47069d48f1dd34469439c6", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G5sd1ypV3qabBNop6\"}"}', 'sonata'), - (897767, '0x62ae3b4781b1352a94858cdeec1338c86fa45c58', 0, 1, '2024-05-07 06:45:06+00', 0, 0, '{"fid": 489893, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/acfbf5f1-9b73-4e1e-3628-af1def309a00/rectcrop3", "profile": {"bio": {"text": "슈캐💛워캐💛Degen💛🎩💛", "mentioned_profiles": []}}, "username": "lovemango", "power_badge": false, "display_name": "Mango", "active_status": "inactive", "verifications": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "follower_count": 1534, "custody_address": "0xe2b9accc46f0747c26f07483ea17ab9fd21bd965", "following_count": 1697, "verified_addresses": {"eth_addresses": ["0xa8635dcd9d93b3979a05bb0ad09d89da058e9353"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jungle-8/back-on-74?si=1a4a25072653455b9f7a33e34c5da88a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (906694, '0xf9a5052481643ee61bcff64d7cad2a2deab10239', 0, 1, '2024-05-07 06:56:46+00', 0, 10, '{"fid": 490939, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93caceb5-1564-4ec0-a36d-5349f194bd00/rectcrop3", "profile": {"bio": {"text": "맞팔 100 / 핸드폰 붙잡고 사는 사람 / f4f / 1k 도와줘🥹", "mentioned_profiles": []}}, "username": "yonggus", "power_badge": false, "display_name": "yonggus", "active_status": "inactive", "verifications": ["0x362a3c06710e9635e6ee185c44fc459cb2938f12"], "follower_count": 954, "custody_address": "0x518943120440cd3192d3722b8ec049843b75a876", "following_count": 1411, "verified_addresses": {"eth_addresses": ["0x362a3c06710e9635e6ee185c44fc459cb2938f12"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5BwQ2Ed3FTX99VmP9\"}"}', 'banmal-mode'), - (925251, '0x47494ce7bd4b33641ad2e9b94905983239168ffe', 0, 1, '2024-05-07 07:45:32+00', 0, 1, '{"fid": 386247, "object": "user", "pfp_url": "https://i.imgur.com/kmj9TAa.gif", "profile": {"bio": {"text": "Mr.Crypto City\nhttps://drakula.app/user/enzo999?invite=MzzrJh", "mentioned_profiles": []}}, "username": "enzo999", "power_badge": false, "display_name": "くりぷトシちゃん🎩🍖", "active_status": "inactive", "verifications": ["0x5da4fbe370f2aee4610f55ca06290d218b1f6a2c", "0x8bbaeb0189440b11298309e3e4c49be1db47d044", "0x0bff5b05e58c7c3d6967957ae357e2dd276d695b"], "follower_count": 1319, "custody_address": "0x5da4fbe370f2aee4610f55ca06290d218b1f6a2c", "following_count": 1570, "verified_addresses": {"eth_addresses": ["0x5da4fbe370f2aee4610f55ca06290d218b1f6a2c", "0x8bbaeb0189440b11298309e3e4c49be1db47d044", "0x0bff5b05e58c7c3d6967957ae357e2dd276d695b"], "sol_addresses": ["FcBtGwThdC6BbzRo6FEdGaYztCqUXKLqsw2y2NHnCCot"]}}', '{"{\"url\":\"Listen to Red Hot Chili Peppers - Under The Bridge - Live At Slane Castle by Red Hot Chili Peppers ✅✪ on #SoundCloud https://on.soundcloud.com/WKHLW\"}"}', NULL), - (938969, '0x2b3f40a80c4dcda4d574ead5750201b28dd7641c', 0, 1, '2024-05-07 08:21:51+00', 0, 2, '{"fid": 425076, "object": "user", "pfp_url": "https://i.imgur.com/QanYYcP.jpg", "profile": {"bio": {"text": "F4F🖤조대리🖤맞디🖤", "mentioned_profiles": []}}, "username": "hyojuncast", "power_badge": false, "display_name": "HyojunKim", "active_status": "inactive", "verifications": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "follower_count": 1263, "custody_address": "0xf62c45992ff210140dfbda22bdef5377c16f9e9e", "following_count": 1295, "verified_addresses": {"eth_addresses": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vs0wvb6rf6rw/moonwalk-stranger-ver-bangja\"}"}', NULL), - (1160679, '0x1e940a3c5e9c43e90373c76bdb4067105ff4628a', 0, 1, '2024-05-08 00:26:36+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ta1fZrCY7b98YNJqNN3H8?si=vM2zkT-KTYCrFIL-rPePJA\"}"}', NULL), - (924275, '0xafb0d0c010a411d9e68dc97a7f2c45aeae486b76', 0, 1, '2024-05-07 07:37:52+00', 0, 0, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 482, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 777, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cEZ4F\"}"}', 'sonata'), - (906696, '0xbf976a031b0b5cf071869b9a5dc35e584f8710e8', 0, 1, '2024-05-07 06:55:40+00', 0, 2, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2374, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2264, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZAhyS9MiGJzg42hq7\"}"}', NULL), - (899054, '0x0e9c480763d1f21965cfc6e115bc03aa08afce2b', 0, 1, '2024-05-07 06:45:48+00', 0, 0, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 815, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 921, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82b6ec12-b3ce-49a2-0aa9-6b7eb20f7000/original\"}","{\"url\":\"https://soundcloud.com/user-298975827/one-more-chance?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (910563, '0x403d7a7e3781162d8a58e7e48ea1e1299f4f66ad', 0, 1, '2024-05-07 07:04:27+00', 0, 7, '{"fid": 496285, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee21648a-36d6-4813-28fa-4295d91b8000/rectcrop3", "profile": {"bio": {"text": "💛선팔 진행중~ \n🌈 맞팔 부탁드립니다.🙏\n🌈답글로 보답할게요🌈🌈 \nLet''s support each other to develop. \nVisit me often. ", "mentioned_profiles": []}}, "username": "phillholic", "power_badge": false, "display_name": "JH SHIN", "active_status": "inactive", "verifications": ["0x59ab471173ab0cbb6f86cadf338c68f94c66c8e2", "0x59ab471173ab0cbb6f86cadf338c68f94c66c8e2"], "follower_count": 209, "custody_address": "0x0e385fb79d26305d332cb28a7f37d4352557d3cd", "following_count": 1318, "verified_addresses": {"eth_addresses": ["0x59ab471173ab0cbb6f86cadf338c68f94c66c8e2", "0x59ab471173ab0cbb6f86cadf338c68f94c66c8e2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki32/crush-by-your-side?si=e3995c1bf2e54662a39dd1203b210aa2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (954057, '0xe908bbb98e9c19f53b80d029dad034895699a3ee', 0, 1, '2024-05-07 09:04:15+00', 0, 5, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2931, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2364, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thit-naing/sorry-justin-beiber-mp3?ref=clipboard&p=a&c=0&si=a428b420237442dd81817b80ce7b52e4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (978457, '0xa97e64e155ded077fe0e7c87845d0a7801a27abe', 0, 1, '2024-05-07 10:36:23+00', 0, 0, '{"fid": 501173, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58fcccfc-8787-437e-0d1a-abeeeeeba300/rectcrop3", "profile": {"bio": {"text": "cryptocurrency / blockchain / dev", "mentioned_profiles": []}}, "username": "nuxt", "power_badge": false, "display_name": "tony🎩🍖", "active_status": "inactive", "verifications": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "follower_count": 1219, "custody_address": "0x4e7296e116250869c37e159f5cc24f1fe785aab0", "following_count": 1199, "verified_addresses": {"eth_addresses": ["0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZST42\"}"}', NULL), - (899045, '0x20e32ca2d2c17b7bcfc960469f4be7bcc78e8afc', 0, 1, '2024-05-07 06:46:11+00', 0, 1, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rac/01-super-mario-bros-rac-mix\"}"}', NULL), - (929364, '0x1c14ac58ff82ddb65e43944a345969863d4216f1', 0, 1, '2024-05-07 08:00:51+00', 0, 6, '{"fid": 406564, "object": "user", "pfp_url": "https://i.imgur.com/aUMuWcN.jpg", "profile": {"bio": {"text": "ワーキャスの先輩と絡んでくれる方々に感謝しつつ沼り始めてる子煩悩。\nどちらかと言うとギリ良いヤツだと思います☀️", "mentioned_profiles": []}}, "username": "tomos", "power_badge": false, "display_name": "tomo🦀🍖", "active_status": "inactive", "verifications": ["0xddcffade622fa032021f823be481636f2e56ff38"], "follower_count": 1459, "custody_address": "0xb882d54ed4cffe89f58c68cb985080912f3c1a2f", "following_count": 1637, "verified_addresses": {"eth_addresses": ["0xddcffade622fa032021f823be481636f2e56ff38"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6HLaA5kNvHLvqanYCdto0z?si=4sao4y1tRRWPGhPsK2Syxg&pi=a-krKIt8a9SxeL\"}"}', 'sonata'), - (982600, '0x1515c071e48df6249cd007f3a87778e75fb90e1a', 1010, 1, '2024-05-07 10:52:53+00', 0, 9, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1639, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1641, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/disrupting/strawberries-and-cigarettes?si=aede89b8e21a4695b8afca39eb53b9d8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (918883, '0x0a6a31d037e144e54a85b758b8444d392fc60dc8', 0, 1, '2024-05-07 07:15:27+00', 0, 2, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 316, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 538, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gPb7S\"}"}', 'sonata'), - (909393, '0x2bf841883aedae6244cef30fcde5632ce5c909d0', 0, 1, '2024-05-07 07:01:10+00', 0, 14, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2229, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2269, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k8ne1\"}"}', 'sonata'), - (1173263, '0x5b1480de992cce6d1de45e9bcc196fff9098f2b0', 0, 1, '2024-05-15 16:25:46+00', 0, 11, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 960, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Tzw9IdZbVyzmpWrvsGaNX?si=nONt_E3KSWy6TiXZ2_-KKA\"}"}', NULL), - (991810, '0x440abea6726259f8e7d437828eceb0aca7dc904d', 0, 1, '2024-05-07 11:28:27+00', 0, 3, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1474, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1214, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nyvek-nyvek-piano/kyary-pamyu-pamyu-kamaitachi?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (925650, '0xb6bb2fd9eda7ed00c8acd0e3ee39e24f8665f19e', 0, 1, '2024-05-07 07:51:02+00', 0, 0, '{"fid": 425741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa1a29b7-ef68-4ac5-00e1-8c73d6301600/rectcrop3", "profile": {"bio": {"text": "egg, ham, donut and?", "mentioned_profiles": []}}, "username": "bluemoney", "power_badge": false, "display_name": "eggfry", "active_status": "inactive", "verifications": ["0xb41e96fe689ae23a59339edaffdd9279263e0290"], "follower_count": 1294, "custody_address": "0x1d52f1457ac1aa27c2e3e5975139dc36408e9009", "following_count": 393, "verified_addresses": {"eth_addresses": ["0xb41e96fe689ae23a59339edaffdd9279263e0290"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9Du6TfaFiYgbiVU47\"}"}', 'sonata'), - (930487, '0x5e37ea506e1efec67f034e6af445805fbffb3c16', 0, 1, '2024-05-07 08:05:33+00', 0, 2, '{"fid": 404567, "object": "user", "pfp_url": "https://i.imgur.com/LW1foL3.jpg", "profile": {"bio": {"text": "Let''s communicate and make a good relationship\nI wish you happiness.", "mentioned_profiles": []}}, "username": "rau", "power_badge": false, "display_name": "mini", "active_status": "inactive", "verifications": ["0x2a0d77adb85c46260cc1ebea2e70573ef518a252"], "follower_count": 2261, "custody_address": "0xacb87dd82e2e71e37539691adb9e8e0eb7fd9e0f", "following_count": 3462, "verified_addresses": {"eth_addresses": ["0x2a0d77adb85c46260cc1ebea2e70573ef518a252"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-935907819-824451083/dztsjzqr5xue?si=d6f7fe12e2ca4ce29a40d0da5910ddf1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173264, '0x8a2d01d9dce895c38085aebfbdfda90112d0281f', 0, 1, '2024-05-15 16:34:07+00', 0, 1, '{"fid": 3115, "object": "user", "pfp_url": "https://i.imgur.com/q1Rk1Yp.jpg", "profile": {"bio": {"text": "working on /music", "mentioned_profiles": []}}, "username": "ghostlinkz.eth", "power_badge": true, "display_name": "ildi", "active_status": "inactive", "verifications": ["0x05ff7cc8b490b38898744037f951f3247673c2ed"], "follower_count": 38709, "custody_address": "0x218ea80280a139e7e835744bbd3a4ade6b5f7c0d", "following_count": 1294, "verified_addresses": {"eth_addresses": ["0x05ff7cc8b490b38898744037f951f3247673c2ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3h4HbD58K0UceKMy1yzhbH\"}"}', NULL), - (925493, '0xd986a6a99baa48445fef0b01d20ab31d4368c79a', 0, 1, '2024-05-07 07:49:08+00', 0, 0, '{"fid": 500217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1e52d9b-aec3-4888-4c20-cfa14e92cd00/rectcrop3", "profile": {"bio": {"text": "nesquik lover 🍫🥛💕 \nEnjoy warpcast 🎮", "mentioned_profiles": []}}, "username": "nesquik", "power_badge": false, "display_name": "nesquik🍫🥛", "active_status": "inactive", "verifications": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "follower_count": 1476, "custody_address": "0x7e2f529e72d602767592cc7d57128f7dcaa56474", "following_count": 1742, "verified_addresses": {"eth_addresses": ["0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KZHSqk9kHtooqaXi9\"}"}', NULL), - (912574, '0x9ba9e80e6abdc93762753e530112f964342b8e58', 0, 1, '2024-05-07 07:06:18+00', 0, 0, '{"fid": 501722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da05e855-b8b7-4447-2e94-72f460ba8500/original", "profile": {"bio": {"text": "긍정적인 마음으로 즐기자!\n달을 보며 소원 빌어요.\n수리수리마수리~ 이뤄져라 얍!\n서로 추앙해요~ ", "mentioned_profiles": []}}, "username": "suri2", "power_badge": false, "display_name": "긍정이", "active_status": "inactive", "verifications": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "follower_count": 1385, "custody_address": "0xe7df0b2d94a885326148388a58f46104bbce9c5a", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Luis Fonsi - Despacito ft. Daddy Yankee - Original Audio from YouTube by Dk David on #SoundCloud https://on.soundcloud.com/AU239\"}"}', NULL), - (925827, '0xb2d72ef55b122b75a078d6b4235e80ca78697221', 1000, 1, '2024-05-07 07:53:34+00', 0, 2, '{"fid": 489714, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88fca2db-0af7-4f3c-af8d-b27617393800/rectcrop3", "profile": {"bio": {"text": "쿼카에용 소통해용 반가워용 쿼카카카카ㅏ캌", "mentioned_profiles": []}}, "username": "bbluedragon", "power_badge": false, "display_name": "쿼카", "active_status": "inactive", "verifications": ["0x25011716acbbd3519a5970ca88a81b343e08904c"], "follower_count": 1336, "custody_address": "0xe1c10b2c41218ac9d434eb2ecf9a04593d91b47c", "following_count": 1391, "verified_addresses": {"eth_addresses": ["0x25011716acbbd3519a5970ca88a81b343e08904c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sKQzkbxhGAfXq7K1A\"}"}', 'sonata'), - (859723, '0xe7e75f85034e335c68a95a3e6224c54962ff3673', 10, 1, '2024-05-07 05:34:09+00', 30, 141, '{"fid": 439393, "object": "user", "pfp_url": "https://i.imgur.com/0FTEFp3.jpg", "profile": {"bio": {"text": "I''m a Crypto and Blockchain Lover. \n My specialized programming languages are Python * R * Matlab AND Data Science ", "mentioned_profiles": []}}, "username": "artin1990", "power_badge": false, "display_name": "Artin.A🎩🔵⛓️🔮🔄", "active_status": "inactive", "verifications": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "follower_count": 1381, "custody_address": "0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "following_count": 2205, "verified_addresses": {"eth_addresses": ["0x2e801f7665c92649fa51f646b18c4a6df19ecbcc", "0x668b58b475ebdcbc46c05fe9806ddba11ea54d37"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral_source=link\"}"}', NULL), - (925418, '0x666597402e76abf1eec74a48d956a0beaed3aee2', 0, 1, '2024-05-07 07:47:40+00', 0, 1, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0tZbIJd9rPKlhqAr2ov3gH?si=cc79b06b9ece49c6\"}"}', 'sonata'), - (929359, '0xa4996b9ca35c1c8b40d71a05a8a2c964952d493e', 0, 1, '2024-05-07 08:01:48+00', 0, 2, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1243, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 558, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/az2X6\"}"}', 'sonata'), - (967216, '0xdbfc4349aaf8056a8822745f37de765b6da13cc5', 0, 1, '2024-05-07 09:38:22+00', 0, 3, '{"fid": 310768, "object": "user", "pfp_url": "https://i.imgur.com/J4W6y32.jpg", "profile": {"bio": {"text": " catlover 😎🦾🐈", "mentioned_profiles": []}}, "username": "phoenixarnold", "power_badge": false, "display_name": "phoenix 🎩 ", "active_status": "inactive", "verifications": ["0xbde65bfaec402d8e61490a3f81ae139d7b97760e"], "follower_count": 1496, "custody_address": "0x93be66a434d28db8090fc3533eb39b258e6fed3c", "following_count": 2389, "verified_addresses": {"eth_addresses": ["0xbde65bfaec402d8e61490a3f81ae139d7b97760e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/esophaguss/feeling-good-micheal-buble?ref=clipboard&p=a&c=0&si=55813563c7024fdb9de5f7958e705f67&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (926703, '0x893fb30231a93591ee5dbe183e13eee2a53b002b', 0, 1, '2024-05-07 07:55:39+00', 0, 0, '{"fid": 506789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/361b6d66-0316-4358-fdca-48a11516ec00/rectcrop3", "profile": {"bio": {"text": "a professional inconvenience", "mentioned_profiles": []}}, "username": "!506789", "power_badge": false, "display_name": "opsa", "active_status": "inactive", "verifications": ["0x586d40e35ea1f08b63a46158eaf12d50e427fec1"], "follower_count": 652, "custody_address": "0xb5965cfff5f58538c6e8de4ba729570b7c31c6fa", "following_count": 868, "verified_addresses": {"eth_addresses": ["0x586d40e35ea1f08b63a46158eaf12d50e427fec1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0lamnguyet0/epxqjilyotlb?si=ac55702d206840f3991bc688a77c23fe&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173470, '0xb9055d45d84ed6772c8ee0dac72808cc4424e538', 0, 1, '2024-05-16 02:03:50+00', 0, 6, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3878, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1009, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SzHN8\"}"}', 'sonata'), - (925565, '0xac1abebfa4b8993323a69b1a6034075b0f436259', 0, 1, '2024-05-07 07:49:51+00', 0, 4, '{"fid": 501931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6eea1270-1cc8-457a-c547-fa04d19a4900/rectcrop3", "profile": {"bio": {"text": "Hi :)", "mentioned_profiles": []}}, "username": "eeaa", "power_badge": false, "display_name": "eeaa", "active_status": "inactive", "verifications": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "follower_count": 640, "custody_address": "0xd525a5cfdee1efeaf43f7f19594c20f7f22d4bdf", "following_count": 694, "verified_addresses": {"eth_addresses": ["0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zukkinii/dvwn-ft-yayyoung-slowed?si=99bbf840ed6b4b94b8224efd7350a229&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (982598, '0x72b799a40ef83f70c3d3efca8a7815c4e295b4dd', 1100, 1, '2024-05-07 10:52:24+00', 10, 1, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 407, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 228, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7v3rmoy5jcn4h5UqwQyCM3?si=gWmC6InvQLqERYJNmo2eHg\"}"}', 'bangers'), - (926704, '0xdcdd6ced211dbd66b743c85298d75c98420c4ee0', 0, 1, '2024-05-07 07:55:23+00', 0, 0, '{"fid": 451020, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fde0d73-4c85-4312-74d9-f28495450b00/original", "profile": {"bio": {"text": "Love Ocean, Sky, Star and IU.\nEnjoy Zora and Warpcast. \nHAM, Perl and Farcast. 🎩 🍖 ↑", "mentioned_profiles": []}}, "username": "eomeo8303", "power_badge": false, "display_name": "Ocean 🎩🍖↑", "active_status": "inactive", "verifications": ["0xbb9425abb19cd7a35eaa4befe319ddae7857b318"], "follower_count": 1205, "custody_address": "0xb4b216c31f5199e16bcf03b0bbb2a55de86b4fe9", "following_count": 1238, "verified_addresses": {"eth_addresses": ["0xbb9425abb19cd7a35eaa4befe319ddae7857b318"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2MHfG9ZAwU5DYuZb8\"}"}', NULL), - (892852, '0x2d6352f9b8d5e79bfa301522c6b9bac032a6b566', 0, 1, '2024-05-07 06:38:19+00', 0, 1, '{"fid": 269321, "object": "user", "pfp_url": "https://i.imgur.com/GirfNIl.jpg", "profile": {"bio": {"text": "multidisciplinary music artist ///\n\nbuilding a world w /flourish \n\nhttps://linktr.ee/dominosmusic", "mentioned_profiles": []}}, "username": "dominosmusic", "power_badge": true, "display_name": "Domino", "active_status": "inactive", "verifications": ["0xbf46d2161045251cb97d0b41929bc1d36044e1a0"], "follower_count": 1027, "custody_address": "0x2ea0fe46d4a96381d691f604d4a5843995fbdbc5", "following_count": 407, "verified_addresses": {"eth_addresses": ["0xbf46d2161045251cb97d0b41929bc1d36044e1a0"], "sol_addresses": ["BFoetGLXvFZ2QcVX49SVxdnCn1pPMG6GopJgRCYUJWjz"]}}', '{"{\"url\":\"https://www.sound.xyz/domino/pump-ft-latasha\"}"}', NULL), - (923200, '0x65e5084a05bfd3d09cc262ba01b486f8189f0607', 1120, 1, '2024-05-07 07:27:56+00', 42, 132, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1575, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 960, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nAm43WN3CLfgZBbv9\"}"}', 'sonata'), - (927824, '0xd1cad07e72fec84779f7a8b2b5393d26134a2fe9', 0, 1, '2024-05-07 07:57:47+00', 0, 1, '{"fid": 396276, "object": "user", "pfp_url": "https://arweave.net/mHGiXAlsRuKj8JbKBb7zwdwjrCNdSM5BDXXjBe_zzhM/", "profile": {"bio": {"text": "I''m student for market crypto 🍖", "mentioned_profiles": []}}, "username": "mohnmadkm", "power_badge": false, "display_name": "Mohamd Mahdi🍖", "active_status": "inactive", "verifications": ["0xff60415ac262d665519f4e529cde6c92760b310c"], "follower_count": 1480, "custody_address": "0xdf7b4eebc933a72af29f28b07fd51158a61d8997", "following_count": 872, "verified_addresses": {"eth_addresses": ["0xff60415ac262d665519f4e529cde6c92760b310c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to The Weeknd, Lil Baby, Suzanna Son - False Idols by The Weeknd on #SoundCloud https://on.soundcloud.com/u3PvV\"}"}', NULL), - (1173283, '0xd97267a24c1a5d5c49142fb41aae660194007aae', 0, 1, '2024-05-15 17:28:01+00', 0, 1, '{"fid": 1069, "object": "user", "pfp_url": "https://i.imgur.com/s3XjT5J.jpg", "profile": {"bio": {"text": "Co-Founder @frenshouse / Orange Cube Art 💛🏠 work @ Art Blocks / ThankYouX 🫡 I Love music, sports, tech, art, marketing, coffee maxi", "mentioned_profiles": []}}, "username": "2ripsgawd", "power_badge": true, "display_name": "2Rips 🎩 ↑", "active_status": "inactive", "verifications": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "follower_count": 582, "custody_address": "0x84a2cdf0a978b16dc4d7e5005b87fa594f3fd5e6", "following_count": 264, "verified_addresses": {"eth_addresses": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "sol_addresses": []}}', '{"{\"url\":\"https://music.apple.com/us/album/thinkin-bout-you/1440765580?i=1440766128\"}","{\"url\":\"https://open.spotify.com/track/7DfFc7a6Rwfi3YQMRbDMau?si=IlyOLvHkSO-K-EfTNjQSog\"}"}', 'music-caster'), - (929363, '0xb87be358c78cec232d42de5b22c29bfc7e09e49b', 0, 1, '2024-05-07 08:02:37+00', 0, 8, '{"fid": 508188, "object": "user", "pfp_url": "https://arweave.net/KhRSk37ppLXTjACORWipcn5unjJI-HTC8QCnS42-1V8/", "profile": {"bio": {"text": "Solitary Gourmet | Runner / studies base", "mentioned_profiles": []}}, "username": "!508188", "power_badge": false, "display_name": "ggoongd", "active_status": "inactive", "verifications": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "follower_count": 1006, "custody_address": "0x365dcce0356a9dd4be8c074d75f607a2796c3d82", "following_count": 932, "verified_addresses": {"eth_addresses": ["0xeed77feac1bcd054d51f968814ff03e31e20528e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8iTMrHcmQXuaHxQN9\"}"}', 'sonata'), - (967484, '0x8469cb2dabd73a04c134f9d1093f3f831181a1d2', 0, 1, '2024-05-07 09:39:30+00', 0, 2, '{"fid": 474917, "object": "user", "pfp_url": "https://i.imgur.com/Dxz9XJX.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mehdiii", "power_badge": false, "display_name": "Target", "active_status": "inactive", "verifications": ["0x73eb871d4163b3671407c1615e89cabe5ac39905"], "follower_count": 1161, "custody_address": "0x73cab37e6fc6dbc9a9007e9b9c5fb317261a0647", "following_count": 1461, "verified_addresses": {"eth_addresses": ["0x73eb871d4163b3671407c1615e89cabe5ac39905"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5cbd2zu6Wb3xWEUb7\"}"}', 'sonata'), - (930141, '0x56200d22dc3128b1cd42fc6ccb43cab2b914e8ab', 0, 1, '2024-05-07 08:04:17+00', 0, 7, '{"fid": 486193, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95baa334-c1cc-465f-e818-6b94f6616500/rectcrop3", "profile": {"bio": {"text": "일상, 소통, 여행, 맛집💕\n자주 소통해요! ", "mentioned_profiles": []}}, "username": "lilyjeong", "power_badge": false, "display_name": "Jeooong2", "active_status": "inactive", "verifications": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "follower_count": 1826, "custody_address": "0xede1aa09cac174e537213ff3936a68a4b468ff12", "following_count": 1928, "verified_addresses": {"eth_addresses": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xqnsp1xEeKoM6Msq8\"}"}', 'sonata'), - (983201, '0xf7c03639f3843b580a5199e905a54a8d99c3154c', 288, 1, '2024-05-07 10:55:53+00', 13, 60, '{"fid": 13728, "object": "user", "pfp_url": "https://i.imgur.com/DKQFwjs.jpg", "profile": {"bio": {"text": "Obsessed with new trends, decentralized world & music.", "mentioned_profiles": []}}, "username": "hamid", "power_badge": false, "display_name": "Hamid 🎩 🔵", "active_status": "inactive", "verifications": ["0x8ba5908a107ed29c898b00b498fcce0d88299175"], "follower_count": 1339, "custody_address": "0x2faea8fb76d2522bfc4f5156e8d499bb5afa698f", "following_count": 1625, "verified_addresses": {"eth_addresses": ["0x8ba5908a107ed29c898b00b498fcce0d88299175"], "sol_addresses": ["CA9CqRb421BT8h3qicGnG66zvUkW5b2E1rw67FrBvU4Z"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ea324d81-d8df-45b1-71fa-8ccb9e191e00/original\"}","{\"url\":\"https://open.spotify.com/track/4IqbXM3pzVd4e0AZcGd9xZ?si=9dccb2acea29433b&nd=1&dlsi=b26af93c79ff4b11\"}"}', NULL), - (918404, '0x3dae124ffadcdc6453dde0174c0d58545a68a4b6', 0, 1, '2024-05-07 07:13:24+00', 0, 0, '{"fid": 433641, "object": "user", "pfp_url": "https://i.imgur.com/M5ipBUB.jpg", "profile": {"bio": {"text": "Jesus is Lord", "mentioned_profiles": []}}, "username": "dsun", "power_badge": false, "display_name": "dsun", "active_status": "inactive", "verifications": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "follower_count": 14, "custody_address": "0x70b592d73c768671a8587e903df8bd94aa98fa39", "following_count": 62, "verified_addresses": {"eth_addresses": ["0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2tlfw6eMLtpH2qFQvBN5CE?si=vBp37DuqRMKKmMSORw-HUA\"}"}', 'sonata'), - (1012315, '0x35830b7010ddd6338118b18aeda5bd09cac66297', 0, 1, '2024-05-07 12:29:16+00', 0, 1, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 311, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 346, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0SEmf7XdvzCmmEjtpZKIKl?si=2YpdvAiwRDqI19bL1zJniw&context=spotify%3Aalbum%3A0DFYbYCcHCEJPcN1hODG6K\"}"}', NULL), - (927823, '0x6b17b04b0c424cc8a1ebc1a946e635f27257a524', 0, 1, '2024-05-07 07:57:54+00', 0, 2, '{"fid": 411007, "object": "user", "pfp_url": "https://i.imgur.com/hfANAxl.jpg", "profile": {"bio": {"text": "A dude", "mentioned_profiles": []}}, "username": "wordsayt", "power_badge": true, "display_name": "Words🎩", "active_status": "inactive", "verifications": ["0x4e3c897b14dabf7396f102965a70de40e1aac299"], "follower_count": 597, "custody_address": "0x8a97fa0c6882f6602e356cba74b2dfa7d99d308f", "following_count": 352, "verified_addresses": {"eth_addresses": ["0x4e3c897b14dabf7396f102965a70de40e1aac299"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Ff2ZgIyYgmYMzTg8BotG2?si=h0yPWP-FSoG5AUiSEWpP_w\"}"}', NULL), - (1173223, '0x6286e48afa71b3612171cfe9a32236b5b36ddfdb', 2000, 1, '2024-05-15 13:56:01+00', 0, 6, '{"fid": 360601, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f5c757e-35a9-4119-c073-1ea7de2f1200/original", "profile": {"bio": {"text": "Normie end user, here to support the homies and creatives. Collective noun #67 ⌐◨-◨ 🔵🟡🟣", "mentioned_profiles": []}}, "username": "loudman.eth", "power_badge": true, "display_name": "Loudman⌐◨-◨🎩🔵🟡", "active_status": "inactive", "verifications": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "follower_count": 1849, "custody_address": "0x37ca8875540d99ace5f8ab1d5990e30277c0f3b4", "following_count": 1323, "verified_addresses": {"eth_addresses": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3qhk9rG71kZYN34e8Jzqk5?si=vNU444QKTCChm-ldUKnxLg\"}"}', NULL), - (925729, '0x717a210ad187ac179c32516710506839a47f4232', 0, 1, '2024-05-07 07:52:00+00', 0, 0, '{"fid": 291771, "object": "user", "pfp_url": "https://i.imgur.com/2FXOtXT.jpg", "profile": {"bio": {"text": "I''m english teacher and trader", "mentioned_profiles": []}}, "username": "arasfarcaster", "power_badge": false, "display_name": "🎩 yosef🔄Jani 🎩", "active_status": "inactive", "verifications": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "follower_count": 1368, "custody_address": "0x24f89648e2f465b820925d3611e610d92052ea42", "following_count": 1723, "verified_addresses": {"eth_addresses": ["0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303"], "sol_addresses": ["8dBNEjFNeFoJ1SngCUdeC3ygLEiJdHgqHtLzSqzzUL3u"]}}', '{"{\"url\":\"https://soundcloud.com/user-941923601-683319243/namiq-qaracuxurlu-bir-arzu-tut?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (982601, '0xd48a72b6b48d0d88527e5c9fd3fe6663350e7a9a', 0, 1, '2024-05-07 10:52:18+00', 0, 8, '{"fid": 417936, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a22d3f19-15c6-43af-d8d0-ae3ba053fd00/rectcrop3", "profile": {"bio": {"text": "[🤗] Nice to meet you all! Always be healthy and happy!🙆‍♀️ ", "mentioned_profiles": []}}, "username": "busanlyk", "power_badge": false, "display_name": "kyoung♥ ", "active_status": "inactive", "verifications": ["0x85f489adf3ce25ad81824856e5712791944fe0ac"], "follower_count": 2477, "custody_address": "0x7f7082a23fe17accc2f73e8ace5b78e45ddf477b", "following_count": 1433, "verified_addresses": {"eth_addresses": ["0x85f489adf3ce25ad81824856e5712791944fe0ac"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ag9f4\"}"}', 'sonata'), - (928707, '0x4444ca528caa3e45730330e3385383f6c2a80185', 0, 1, '2024-05-07 07:58:52+00', 0, 0, '{"fid": 507758, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bb92625-a5cf-4d8b-7cbc-b994a8710100/rectcrop3", "profile": {"bio": {"text": "Follow/recast/reaction 100%", "mentioned_profiles": []}}, "username": "!507758", "power_badge": false, "display_name": "Song2", "active_status": "inactive", "verifications": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "follower_count": 370, "custody_address": "0x21193540b2ee323dd3a71fb43b28b0ee8d9fff62", "following_count": 335, "verified_addresses": {"eth_addresses": ["0x7da20b8238e4b002d7f5ed27350d4de85999f36c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZrB3u\"}"}', 'sonata'), - (932972, '0x824b279eb8f03945a01f2879224fc2fe709aa88a', 0, 1, '2024-05-07 08:11:18+00', 0, 0, '{"fid": 442334, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigu3bpirz6npfu5dejoeiroo3q6nk6m4twyqg5z4i66w3dmrehxoe", "profile": {"bio": {"text": "Just starting with $DEGEN chain.", "mentioned_profiles": []}}, "username": "bernardis", "power_badge": true, "display_name": "Bernardo", "active_status": "inactive", "verifications": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "follower_count": 224, "custody_address": "0xf91d574647d6214cf8b4db249ed48f013baf5bce", "following_count": 274, "verified_addresses": {"eth_addresses": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "sol_addresses": ["C58ejksrZv6V9W5kdyfqQ7mzwqEG9ozVJKG3kYJ6VzER"]}}', '{"{\"url\":\"https://soundcloud.com/leagueoflegends/legends-never-die\"}"}', NULL), - (1020937, '0xf7c033921b2529d9a78b1680b76f7c1d90d33800', 0, 1, '2024-05-07 12:55:14+00', 0, 1, '{"fid": 387528, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b2ad7f9-9595-4aa5-6c2d-a90ed20df900/original", "profile": {"bio": {"text": "crypto勉強中です🥹楽しくワーキャスしたい!🍖🎩studying crypto🎩fid:387528", "mentioned_profiles": []}}, "username": "umak", "power_badge": false, "display_name": "🍖umak🎩", "active_status": "inactive", "verifications": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "follower_count": 914, "custody_address": "0xba46d0958c44912f98d84c354ea445457a29fe60", "following_count": 1132, "verified_addresses": {"eth_addresses": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7zShgeH9LWcA2P4G9\"}"}', 'musicjp'), - (932973, '0x256cc02268a9253122d231bb9285508f8e41af2b', 0, 1, '2024-05-07 08:09:11+00', 0, 4, '{"fid": 486199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d9df915a-b4f6-470e-53c4-da38875c4e00/original", "profile": {"bio": {"text": "Be careful, Everyone", "mentioned_profiles": []}}, "username": "joyeehyun", "power_badge": false, "display_name": "Joyeehyun", "active_status": "inactive", "verifications": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "follower_count": 1063, "custody_address": "0xc614ea305d00db50186fcf44457d651bb38c9765", "following_count": 751, "verified_addresses": {"eth_addresses": ["0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/butterflynabi/2-ed-1?si=c9bb504a8baa43a2b63c164dece8b798&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (930838, '0x2df4a68f95c8676f5649f36dfb2d0800e8511536', 0, 1, '2024-05-07 08:06:45+00', 0, 4, '{"fid": 516187, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5eb3758-cc4d-472e-a69e-14040b4a7d00/rectcrop3", "profile": {"bio": {"text": "초보신입/맞팔💯💯/선팔주시면 달려갑니다/무조건반사갑니다", "mentioned_profiles": []}}, "username": "!516187", "power_badge": false, "display_name": "느티고을나무늘보", "active_status": "inactive", "verifications": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "follower_count": 241, "custody_address": "0x774d0caf03af43ca9e47069d48f1dd34469439c6", "following_count": 371, "verified_addresses": {"eth_addresses": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WiChCzy7wqELnySc6\"}"}', 'sonata'), - (1173176, '0xc1fb33ea190d491819c51583c481c1d3caadef65', 2000, 1, '2024-05-15 05:41:54+00', 0, 1, '{"fid": 17256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb3267ae-39e0-4069-445b-8bfa3ade1100/rectcrop3", "profile": {"bio": {"text": "Always building. Engineering @matchaxyz | @0xproject | ❤️✌️🏄‍♂️", "mentioned_profiles": []}}, "username": "mathieuw", "power_badge": true, "display_name": "Mathieu Welche", "active_status": "inactive", "verifications": ["0x6ea28eedf8ca259f252ed2fa54afe43b073b6cf9", "0x6714e3fbeb9f5648903bf57ed01e497349899d3c"], "follower_count": 178, "custody_address": "0x228fca998a81b8c565143610eb72a9187fcbc6a3", "following_count": 100, "verified_addresses": {"eth_addresses": ["0x6ea28eedf8ca259f252ed2fa54afe43b073b6cf9", "0x6714e3fbeb9f5648903bf57ed01e497349899d3c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/01ve4Yns1iSXwBwpNAhOYP?si=edbb872f74ef460e\"}"}', NULL), - (1117381, '0x34a11d49ec0847487eb296a6268d47e8abe7c60d', 0, 1, '2024-05-07 17:39:11+00', 0, 0, '{"fid": 14193, "object": "user", "pfp_url": "https://i.imgur.com/5hOVzWm.png", "profile": {"bio": {"text": "I make music and occasionally point & click adv. games.", "mentioned_profiles": []}}, "username": "r4cerx", "power_badge": false, "display_name": "r4cerx 🎩🐲", "active_status": "inactive", "verifications": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "follower_count": 193, "custody_address": "0x22bfce4279cd025af37dac0cdad95b74e606bf88", "following_count": 105, "verified_addresses": {"eth_addresses": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/r4cerx/i-think-theyre-coming\"}"}', '1337'), - (1021859, '0x98ae099ccc2264a3b4f4bd9045bc6ab672451968', 0, 1, '2024-05-07 12:55:48+00', 0, 1, '{"fid": 385271, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6688aa1f-6f77-4662-d753-b22d86570000/rectcrop3", "profile": {"bio": {"text": "I like sushi", "mentioned_profiles": []}}, "username": "twelvexdozen", "power_badge": false, "display_name": "coma🔵🍕🎩🔮🧀🐦🍖", "active_status": "inactive", "verifications": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "follower_count": 178, "custody_address": "0xdc9db47747079e5a677f0f6f8924e03fc0f96f2a", "following_count": 549, "verified_addresses": {"eth_addresses": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "sol_addresses": ["FWqT3hZUDWhcZoa9E1oz8NXEF2JDguEybPSQiNS6fzNH"]}}', '{"{\"url\":\"https://on.soundcloud.com/JxJucRiWwafjbYgQ6\"}"}', NULL), - (1018232, '0x98e17b54192310bf4167127448f832d193a185e8', 1000, 1, '2024-05-07 12:49:51+00', 0, 0, '{"fid": 17879, "object": "user", "pfp_url": "https://i.imgur.com/ZEiffdm.jpg", "profile": {"bio": {"text": "Web3 Game / NFT \n\nTwitter(X): https://twitter.com/uhohoi5/ (凍結中🧊)\n新垢: https://twitter.com/tyoriso02\nDorakula: https://drakula.app/user/tyoriso", "mentioned_profiles": []}}, "username": "tyoriso", "power_badge": false, "display_name": "tyoriso👻🎩🔄🔮🍖", "active_status": "inactive", "verifications": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "follower_count": 908, "custody_address": "0x1493c7d5eeeac5ebcfe1877c3c57c6ae40385f29", "following_count": 878, "verified_addresses": {"eth_addresses": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wpJ6NxaUX4r94Z9z9\"}"}', 'bgm'), - (1017877, '0x44195d49da9c943acfc6c75b647a26f30732a10d', 0, 1, '2024-05-07 12:48:01+00', 0, 0, '{"fid": 287771, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7810c59-7f9e-4d0d-5774-7e4d6e99a500/rectcrop3", "profile": {"bio": {"text": "crypto trader\n zora 👉 https://zora.co/@stern24", "mentioned_profiles": []}}, "username": "stern24", "power_badge": false, "display_name": "Chloe 🎩 🍖", "active_status": "inactive", "verifications": ["0x2cba857b37ae7111285aff6b2b05ce517dec3446"], "follower_count": 2130, "custody_address": "0x69af793eb1fc217742522354cad1e84a2660ef15", "following_count": 1825, "verified_addresses": {"eth_addresses": ["0x2cba857b37ae7111285aff6b2b05ce517dec3446"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gallerymusiccover/aerosmith-i-dont-want-to-miss-a-thing-jennel-garcia-ft-boyce-avenue-cover?si=45122f8edef44c90a3164886ac7de4d9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1043628, '0x81e384b106bca2f78e4a310d9f068341a4f883ff', 0, 1, '2024-05-07 14:02:26+00', 0, 2, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1683, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1258, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DhdpkHeQpGUVW5vS7\"}"}', 'sonata'), - (1088232, '0xfc0141ffb1118e071c1dd7b135559d7bbc6357b3', 0, 1, '2024-05-07 15:47:18+00', 0, 2, '{"fid": 503907, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3d4b7bd-00bc-4f39-7aca-66e2d569e600/rectcrop3", "profile": {"bio": {"text": "diVine inspiration 🌈", "mentioned_profiles": []}}, "username": "amirali1991", "power_badge": false, "display_name": "Nothing😎😎", "active_status": "inactive", "verifications": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "follower_count": 196, "custody_address": "0x114b9f282cd625abc5658a0644e2dd4502337307", "following_count": 817, "verified_addresses": {"eth_addresses": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tzhBRrxFZdLQjWk19\"}"}', NULL), - (983182, '0x8ab1aa5c14aafa7787e9e2e564738fe6f6db535c', 0, 1, '2024-05-07 10:54:48+00', 0, 11, '{"fid": 240835, "object": "user", "pfp_url": "https://i.imgur.com/EozZCWk.png", "profile": {"bio": {"text": "Knowledgeable broke anon", "mentioned_profiles": []}}, "username": "kenanie.eth", "power_badge": true, "display_name": "kenanie.eth", "active_status": "inactive", "verifications": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "follower_count": 2526, "custody_address": "0xc6dd7067493b6dd22f56f61fc72d8980bf883e1f", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "sol_addresses": ["C4Bg7Xa4nnY2Ty5j4j99nEwoP23YzK6SCDPTHVfHTkv7"]}}', '{"{\"url\":\"https://open.spotify.com/track/0hKtu53OlIFXVuYkZwcn3o?si=LBcmsxsxTPa6N8fpdJqJ7w\"}"}', 'sonata'), - (919208, '0x3fb8fb2495ec2b935aee191b24eacf620a9b9409', 0, 1, '2024-05-07 07:16:18+00', 0, 1, '{"fid": 387528, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b2ad7f9-9595-4aa5-6c2d-a90ed20df900/original", "profile": {"bio": {"text": "crypto勉強中です🥹楽しくワーキャスしたい!🍖🎩studying crypto🎩fid:387528", "mentioned_profiles": []}}, "username": "umak", "power_badge": false, "display_name": "🍖umak🎩", "active_status": "inactive", "verifications": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "follower_count": 916, "custody_address": "0xba46d0958c44912f98d84c354ea445457a29fe60", "following_count": 1131, "verified_addresses": {"eth_addresses": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-234995373/kikuchi-hellixzerolivemix-2023jun?si=60d5c3a5a8f94eb184d780aaa5cd881f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (919857, '0x97df297b0582279d623ce56652e78658d76b08b5', 0, 1, '2024-05-07 07:18:14+00', 0, 2, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1497, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1776, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ReASx4eJyeJWEDcF7\"}"}', NULL), - (925733, '0x1dddeac3d11746b9e74dfec573294b518a4526de', 0, 1, '2024-05-07 07:52:51+00', 0, 3, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4JK1kDUdH9RTBQrrSO1QfR?si=fb3f630cd4904845\"}"}', 'sonata'), - (925652, '0x661919ece48756ea5ad2510008db5431552c0e76', 0, 1, '2024-05-07 07:50:56+00', 0, 3, '{"fid": 428043, "object": "user", "pfp_url": "https://i.imgur.com/Q7jmlGD.jpg", "profile": {"bio": {"text": "Videographer | Youtuber | Python programmer ", "mentioned_profiles": []}}, "username": "cna", "power_badge": false, "display_name": "sina", "active_status": "inactive", "verifications": ["0xe0215f79e1d1097e20cc06c776fcc0ef4f164239"], "follower_count": 2831, "custody_address": "0x2af0cb6f67f0f4195742fd3786fa8510b84e62ae", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xe0215f79e1d1097e20cc06c776fcc0ef4f164239"], "sol_addresses": ["EgCpAV7hmeREsysi8CgVx3fb5bLMzDLdQkusbaDbVvWc"]}}', '{"{\"url\":\"https://on.soundcloud.com/sMH6Btt6ggudYKWc8\"}"}', 'sonata'), - (917887, '0xbc7e1d046d66e82565dddadcf1dffee2517e49b9', 0, 1, '2024-05-07 07:11:38+00', 0, 1, '{"fid": 364763, "object": "user", "pfp_url": "https://i.imgur.com/FFpzKnl.jpg", "profile": {"bio": {"text": "We are going to have a lot of fun here. Join /farcaster to get to know the true meaning of the digital space to infinity and beyond./lp", "mentioned_profiles": []}}, "username": "iammarhz", "power_badge": false, "display_name": "Ammar Hossein Zehi 🎩🍖", "active_status": "inactive", "verifications": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "follower_count": 807, "custody_address": "0x5420e42acc6842e0d702f168affcd105221b9179", "following_count": 1671, "verified_addresses": {"eth_addresses": ["0xe7ebfc2b900b5faa879f334cab748f85cc1904d9", "0xc2447791509537816241522a93665cc787f182d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lay-bankz/tell-ur-girlfriend?ref=clipboard&p=a&c=0&si=17f8a85e2987448baad5ba366dd15753&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (916723, '0x0c357b0dadf592ad24a8621741da66e864ac4990', 0, 1, '2024-05-07 07:10:21+00', 0, 2, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1624, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1615, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FXbbACbgoPVSk7d18\"}"}', 'sonata'), - (967508, '0xea39f7031cac47d09d4c92006ab96ec77de234ff', 0, 1, '2024-05-07 09:39:40+00', 0, 0, '{"fid": 442324, "object": "user", "pfp_url": "https://i.imgur.com/flYtm8L.jpg", "profile": {"bio": {"text": "NOCTURNAL / AIRDROP HUNTER / FREELANCER / CRYPTO ENTHUSIAST", "mentioned_profiles": []}}, "username": "sogiii", "power_badge": false, "display_name": "sogiii.eth🎩", "active_status": "inactive", "verifications": ["0xda04d0354645060d36c99cf7a7da973179d82979"], "follower_count": 248, "custody_address": "0x134ec3b4b70eb98d8a5dde4c3cef9552f3e44ed1", "following_count": 428, "verified_addresses": {"eth_addresses": ["0xda04d0354645060d36c99cf7a7da973179d82979"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/blackpinkofficial/kill-this-love?si=c2bed7f346f744b6b92102e09c46f5d5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (925728, '0x0b469f4cc415fc0c41fd615c2f4d7671756440b1', 0, 1, '2024-05-07 07:53:00+00', 500, 11, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2203, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2086, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173207, '0xbf4bec319199f768f65938941e282450781b5ae7', 0, 1, '2024-05-15 10:44:29+00', 0, 1, '{"fid": 3827, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2219c015-256b-47a0-2581-d2ca32a9a600/rectcrop3", "profile": {"bio": {"text": "Lil curious about blockchain\nPD @artistprogram\nAF : Market Discussion (All markets).", "mentioned_profiles": []}}, "username": "sqx", "power_badge": true, "display_name": "SQX 🎩 ⌐◨-◨ 🧾🍖", "active_status": "inactive", "verifications": ["0x2ee0485f71764bcd2062a84d9455688c581b90f8", "0x72d037f63a6c782f85c059fc917a12e71b2e0c73"], "follower_count": 2935, "custody_address": "0x23020a7f5c580d82a5115d0c7c792c11b1f7d049", "following_count": 1398, "verified_addresses": {"eth_addresses": ["0x2ee0485f71764bcd2062a84d9455688c581b90f8", "0x72d037f63a6c782f85c059fc917a12e71b2e0c73"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0LtsuNRz3IMRrHCYO9fKRk?si=4e597adba0964a57\"}"}', NULL), - (834267, '0x341a19b2609a6d903b7f8f15593364d61db6d741', 0, 1, '2024-05-07 04:26:04+00', 0, 1, '{"fid": 387117, "object": "user", "pfp_url": "https://i.imgur.com/6NtMrL7.jpg", "profile": {"bio": {"text": "🔰初心者🔰\n\nプロフィール画は、愛犬チワプーのmickeyです。\n♡専業主婦♡\n愛犬のことだったり、料理だったり投稿しますのでよろしくお願いします", "mentioned_profiles": []}}, "username": "rinkun", "power_badge": false, "display_name": "mickey", "active_status": "inactive", "verifications": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "follower_count": 536, "custody_address": "0x095a2750cae8910bf45d102a3e9d51a1821c92e4", "following_count": 404, "verified_addresses": {"eth_addresses": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":291942,\"hash\":\"0x36c687b3c791d0c35d1a8085d9e83de38b127ae0\"}}","{\"url\":\"https://open.spotify.com/track/6uDF3NUIKSpEcPHKrTKoIA\"}"}', NULL), - (955299, '0x990ce1b2f4b4de3f49519a588f23f2505c96e8b2', 0, 1, '2024-05-07 09:06:46+00', 0, 0, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2672, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3140, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B2VmoB8MqYkTw6tm6\"}"}', NULL), - (970609, '0x956aebb43242f56ba06e429b1afbb4ee1fda58d8', 0, 1, '2024-05-07 10:01:19+00', 0, 2, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1360, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1482, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6jRyCWUAnRVir3OK4jSZvV?si=UH8JDHJLQjeUJ7diffT99Q&context=spotify%3Aplaylist%3A37i9dQZEVXbKXQ4mDTEBXq\"}"}', 'musicjp'), - (929358, '0x513b8f417351bcec74243921f452ef6c925f45d9', 0, 1, '2024-05-07 08:02:09+00', 0, 0, '{"fid": 500796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7a208507-5a01-4dc8-963f-89c7c6164f00/rectcrop3", "profile": {"bio": {"text": "hullo\nLet’s communicate often🍀", "mentioned_profiles": []}}, "username": "hyeseung", "power_badge": false, "display_name": "hyeseung🌱", "active_status": "inactive", "verifications": ["0x100c099196c129966e0aac4d653bb85f836b2119"], "follower_count": 835, "custody_address": "0x47ee559bae9d1bfbee5db22623848dd7d8654297", "following_count": 1045, "verified_addresses": {"eth_addresses": ["0x100c099196c129966e0aac4d653bb85f836b2119"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MCaPUcGftch3WJkV8\"}"}', 'sonata'), - (931142, '0xfc3b61dcf5e0099a1a7d2b79588c705aea417282', 0, 1, '2024-05-07 08:09:37+00', 0, 0, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 817, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"Listen to [QWER] 나는 아픈건 딱 질색이니까 (cover) by cosmos on #SoundCloud https://on.soundcloud.com/pgibp\"}"}', NULL), - (930485, '0xff9e7671487c43f545175dcc80ab8cbccb1d440d', 0, 1, '2024-05-07 08:05:39+00', 0, 1, '{"fid": 505650, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZqkPDZZVbnNwBjZXNzwLwLTzGNpGRAcUqkiBWUgFbfKA?filename=2024-04-03-134815.png", "profile": {"bio": {"text": "반갑소.", "mentioned_profiles": []}}, "username": "bighead0", "power_badge": false, "display_name": "밤톨", "active_status": "inactive", "verifications": ["0xad7c4cf0b8687203c216aef128edbbadefb645b7"], "follower_count": 52, "custody_address": "0xac2fee547c47473d206a299643a3c393d227f770", "following_count": 82, "verified_addresses": {"eth_addresses": ["0xad7c4cf0b8687203c216aef128edbbadefb645b7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/satgotnick91/rei-joah-original-song-by-jay-park-ive\"}"}', 'sonata'), - (955311, '0x845b5dea2f1611300bd809d7861031c4bfe74d13', 0, 1, '2024-05-07 09:07:17+00', 0, 5, '{"fid": 396484, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0993bd15-7977-44de-b320-3c606550e800/original", "profile": {"bio": {"text": "Im Japanese warpcast🎩Degen Lover💛🎩🍖👍F4F Follow💯😋 \n동료, 협력합시다. 🍽️ /gurumenavijp /littlehappyjp\n ", "mentioned_profiles": []}}, "username": "eiteengo", "power_badge": false, "display_name": "👑 eiteengo 🎩💯😋🍖 ", "active_status": "inactive", "verifications": ["0x2c3560a3829d1fc74013fda53294469814dde0dc"], "follower_count": 2393, "custody_address": "0xfcc95df7b156ec082c37cb746b21e98d35b61977", "following_count": 1600, "verified_addresses": {"eth_addresses": ["0x2c3560a3829d1fc74013fda53294469814dde0dc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yoan65/winter-sonata-ost-ryu\"}"}', 'musicjp'), - (919239, '0x65d1d9906861bfba208a4859214d8b2547b230ec', 0, 1, '2024-05-07 07:16:57+00', 0, 0, '{"fid": 399796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d79ee2f8-924d-4313-b433-81d5db330d00/rectcrop3", "profile": {"bio": {"text": "Degen spirit meets global wanderlust & cuisine quests. Early adopter, savoring life’s simplicities & cool vibes. ", "mentioned_profiles": []}}, "username": "degen-master", "power_badge": false, "display_name": "Max", "active_status": "inactive", "verifications": ["0x1c89d7d1721770fd404bc9d7702696a2951c9a46"], "follower_count": 419, "custody_address": "0xdb75ea773c2402787d899429fb02fea21ccb4f29", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x1c89d7d1721770fd404bc9d7702696a2951c9a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-456790797/sets/ray-la-montage?si=dfb0dee64b8f44fc972b3cc821cc12d4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (919844, '0x127bdeff30ce6e616ac61f3d2301434b87ce4f36', 0, 1, '2024-05-07 07:18:13+00', 0, 0, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 39, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/neo-lite-604126448/yoasobi-idol?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (920808, '0x73e5eb05a8c997583ac6c59bb81c3ae1b2e98cc8', 0, 1, '2024-05-07 07:18:39+00', 0, 3, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3103, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2324, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3CYFP\"}"}', 'sonata'), - (920815, '0xc81ad729d673c9c2c8df522d57cd493e1d4b1c47', 0, 1, '2024-05-07 07:18:47+00', 0, 2, '{"fid": 501722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da05e855-b8b7-4447-2e94-72f460ba8500/original", "profile": {"bio": {"text": "긍정적인 마음으로 즐기자!\n달을 보며 소원 빌어요.\n수리수리마수리~ 이뤄져라 얍!\n서로 추앙해요~ ", "mentioned_profiles": []}}, "username": "suri2", "power_badge": false, "display_name": "긍정이", "active_status": "inactive", "verifications": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "follower_count": 1385, "custody_address": "0xe7df0b2d94a885326148388a58f46104bbce9c5a", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yongkiisolendra/the-greatest-showman-never-enough?si=df6408b6efb44636b7f106a340df61dd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (982346, '0x2db9299c9aa449b3310c191d62c7d8529044921f', 0, 1, '2024-05-07 10:51:16+00', 0, 8, '{"fid": 435513, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/086bb923-eea3-4af4-b4ce-06be6ac17700/rectcrop3", "profile": {"bio": {"text": "I love Oh duck 🐤 Copyright ©️ by Oh duck ", "mentioned_profiles": []}}, "username": "sia08", "power_badge": false, "display_name": "Ori🫂", "active_status": "inactive", "verifications": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "follower_count": 1330, "custody_address": "0x547f99de111a162591527e4e0d0a14ed68024e2c", "following_count": 1056, "verified_addresses": {"eth_addresses": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/97ec887c-3922-4278-ded9-5adad36f3000/original\"}","{\"url\":\"https://on.soundcloud.com/gyJ8ZxYthA3sH2847\"}"}', 'sonata'), - (1160252, '0x06140c0bb1a49c88ebab45bbd2b3a19566f49d95', 0, 1, '2024-05-08 16:14:17+00', 0, 1, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/33below/loyal\"}"}', NULL), - (925653, '0x3edcda1896251dd4f50e8a55fc7cb9272c466c7b', 0, 1, '2024-05-07 07:51:07+00', 0, 1, '{"fid": 386247, "object": "user", "pfp_url": "https://i.imgur.com/kmj9TAa.gif", "profile": {"bio": {"text": "Mr.Crypto City\nhttps://drakula.app/user/enzo999?invite=MzzrJh", "mentioned_profiles": []}}, "username": "enzo999", "power_badge": false, "display_name": "くりぷトシちゃん🎩🍖", "active_status": "inactive", "verifications": ["0x5da4fbe370f2aee4610f55ca06290d218b1f6a2c", "0x8bbaeb0189440b11298309e3e4c49be1db47d044", "0x0bff5b05e58c7c3d6967957ae357e2dd276d695b"], "follower_count": 1319, "custody_address": "0x5da4fbe370f2aee4610f55ca06290d218b1f6a2c", "following_count": 1570, "verified_addresses": {"eth_addresses": ["0x5da4fbe370f2aee4610f55ca06290d218b1f6a2c", "0x8bbaeb0189440b11298309e3e4c49be1db47d044", "0x0bff5b05e58c7c3d6967957ae357e2dd276d695b"], "sol_addresses": ["FcBtGwThdC6BbzRo6FEdGaYztCqUXKLqsw2y2NHnCCot"]}}', '{"{\"url\":\"Listen to War of the Gods by Amon Amarth on #SoundCloud https://on.soundcloud.com/WXP6G\"}"}', NULL), - (955289, '0xba376139e7715b63b402aab0eaa612c8779df66a', 0, 1, '2024-05-07 09:07:16+00', 0, 1, '{"fid": 501056, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWhFgzb1WSkL5ohudhvAW6rA2ifv5LExtUFWJubVKPkmH?filename=.JPG", "profile": {"bio": {"text": "Hi, Call me Road🖤\n\n\nEnjoy & Imaigine !!!All the way\n\nand trading Crypto world♥\n\n\n\nBe Friendly bro :)\n\nMy zora dashboard\nhttps://zora.co/@roadyisgil", "mentioned_profiles": []}}, "username": "roadisgil", "power_badge": false, "display_name": "RJr🤍🔵🍖🎩", "active_status": "inactive", "verifications": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "follower_count": 793, "custody_address": "0x7fd417ea019f5fc7bde958ea596800c181fa3049", "following_count": 707, "verified_addresses": {"eth_addresses": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 偽愛とハイボール ai to highball - LET ME KNOW by 姝何 on #SoundCloud https://on.soundcloud.com/hkURs\"}"}', NULL), - (921229, '0x3e79f93f508d381ede714dc1db5297b43f740ce8', 0, 1, '2024-05-07 07:21:16+00', 0, 3, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 481, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 774, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DBRix\"}"}', 'sonata'), - (1087489, '0x4732f17bd8d7021c4c948859ae8c51354f7ff80b', 0, 1, '2024-05-07 15:45:08+00', 0, 4, '{"fid": 405926, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/914c174b-6661-4e6e-904e-476d3bda9000/rectcrop3", "profile": {"bio": {"text": "AI. Bitcoin. Ethereum. Art Traveling & Daily. Fine dining .Wine, Coffee. dogs.\nBe positive & Be Polite! \n\n\n", "mentioned_profiles": []}}, "username": "oharayj", "power_badge": false, "display_name": "blackpink_onchain", "active_status": "inactive", "verifications": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "follower_count": 714, "custody_address": "0x5f7aae57089bdb539e2f4e119bed7afe64ddeec1", "following_count": 1208, "verified_addresses": {"eth_addresses": ["0x5532a9c585f6aa27a6ee3621693b48537e0d571a", "0xe77696efbbdc9868592829d8260e3e4960ab51a8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/albert-posis/serendipity?si=efe5408318b149549d321e5a4a496b2e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1035868, '0xf890faee4628d9ea562d20254b01d5cd414464c0', 1000, 1, '2024-05-07 13:32:07+00', 0, 2, '{"fid": 336895, "object": "user", "pfp_url": "https://i.imgur.com/YiXAGxl.gif", "profile": {"bio": {"text": "a new report from the international community finds a new level in global trade", "mentioned_profiles": []}}, "username": "adachip", "power_badge": false, "display_name": "adachip🎩🍖🧀🔮🔵", "active_status": "inactive", "verifications": ["0xee55583ce4f64791b30451156f1141fcea0aae04"], "follower_count": 785, "custody_address": "0xbb67adef1607d2f159ad7af88179edfab243233b", "following_count": 983, "verified_addresses": {"eth_addresses": ["0xee55583ce4f64791b30451156f1141fcea0aae04"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wzzSSWvj59r2jo8Y8\"}"}', 'musicjp'), - (995086, '0xfc8f96a8249a24f0c010013aa9a02c713700f7ea', 0, 1, '2024-05-07 11:44:25+00', 0, 0, '{"fid": 481574, "object": "user", "pfp_url": "https://i.imgur.com/FOUs9j3.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "0co", "power_badge": false, "display_name": "0CO", "active_status": "inactive", "verifications": ["0x5abac09f134287d42ecbad62fdab72dc9147173f"], "follower_count": 59, "custody_address": "0x79a5e6878a7b26f2529a56842ee1f35910b8a087", "following_count": 95, "verified_addresses": {"eth_addresses": ["0x5abac09f134287d42ecbad62fdab72dc9147173f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dZ3EkeRus9TYK53RA\"}"}', NULL), - (131515, '0x8bd920919099b4a15fdd20b27aa4ab2d019174ab', 10722, 1, '2024-05-05 06:14:36+00', 60, 33, '{"fid": 326567, "object": "user", "pfp_url": "https://i.imgur.com/K2O19gC.jpg", "profile": {"bio": {"text": "artist, songwriter, producer", "mentioned_profiles": []}}, "username": "saraphillips", "power_badge": false, "display_name": "Sara Phillips", "active_status": "inactive", "verifications": ["0x19250b770efd981c855195d0ce674f811f350f42"], "follower_count": 190, "custody_address": "0x75d716c75531f79fa27da01bfeff641c96b8dadc", "following_count": 109, "verified_addresses": {"eth_addresses": ["0x19250b770efd981c855195d0ce674f811f350f42"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saraphillips/killer?referral_source=link\"}"}', NULL), - (921230, '0x0cfef52eae6a97bc66bac1e7a5b87d80605c0fa3', 0, 1, '2024-05-07 07:20:09+00', 0, 0, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1119, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 627, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zTKgLW8TqGyCrpsh6\"}"}', NULL), - (925826, '0xf7ea05d3ca17787986586f08ffe995dffdd31ba0', 0, 1, '2024-05-07 07:53:55+00', 0, 3, '{"fid": 501244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2857cc22-5da5-45a9-b4b3-83c34cf8d700/rectcrop3", "profile": {"bio": {"text": "Hello everyone!\nLet‘s follow and enjoy together!!\n✅Reaction 💯 \n", "mentioned_profiles": []}}, "username": "danial-jung", "power_badge": false, "display_name": "💎Ian💎", "active_status": "inactive", "verifications": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "follower_count": 1719, "custody_address": "0xd31e5b74c59a915530a8408c23304dbb06d033d9", "following_count": 2502, "verified_addresses": {"eth_addresses": ["0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rTBxKVWTzHr3XMNH9\"}"}', NULL), - (1173191, '0xf7693aac83132ab18403b15c175c60ce3a14da91', 66, 1, '2024-05-15 07:22:53+00', 0, 16, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2754, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 785, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5TpgrTc3OVxzOR4VQ2sZpv\"}"}', 'musicjp'), - (921231, '0xf3da3a075eedb18dbae5888e704f65a7445304bc', 0, 1, '2024-05-07 07:19:37+00', 0, 1, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1119, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 627, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zTKgLW8TqGyCrpsh6\"}"}', 'sonata'), - (981198, '0xda35814d7015dd651b0fc6a7fe1182b4b938c612', 0, 1, '2024-05-07 10:46:23+00', 0, 4, '{"fid": 407524, "object": "user", "pfp_url": "https://i.imgur.com/Vsl6IRJ.jpg", "profile": {"bio": {"text": "Let''s communicate.\nWe always welcome you.", "mentioned_profiles": []}}, "username": "minhak", "power_badge": false, "display_name": " little demon", "active_status": "inactive", "verifications": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "follower_count": 1209, "custody_address": "0x26ba6b6ae99eea4b448bb56e5fa7fa6fc7c454e7", "following_count": 1068, "verified_addresses": {"eth_addresses": ["0x91237e6347ce3d8484d4f869821057db19555caa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/attention225/aihaerin-bamyanggang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1043401, '0xf4a0add09a613956e035c21e189fd724599ffb16', 1000, 1, '2024-05-07 13:59:12+00', 0, 2, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 423, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/M5MSSBL4ezJkJpQB9\"}"}', 'musicjp'), - (967947, '0xde00aaf84d7c1675dddd3142956c6662d909af8c', 0, 1, '2024-05-07 09:40:16+00', 0, 3, '{"fid": 427595, "object": "user", "pfp_url": "https://i.imgur.com/iel7ZRP.jpg", "profile": {"bio": {"text": "워캐님들 환영!!!!! 👋🌈👋\n자주 소통해요😘", "mentioned_profiles": []}}, "username": "eunbo4520", "power_badge": false, "display_name": "Eunbo", "active_status": "inactive", "verifications": ["0x3ae54db09157ca5bd8b13c9bc530e86c2c21806b"], "follower_count": 3631, "custody_address": "0xa2bb5f46f4fdd6097c4d6f62f2dfffcb5c5ced98", "following_count": 3160, "verified_addresses": {"eth_addresses": ["0x3ae54db09157ca5bd8b13c9bc530e86c2c21806b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n9A6kr5efrMJpgBn6\"}"}', NULL), - (1035834, '0x80f113861910f6054bee78e00a6e6b6fae0f09b2', 0, 1, '2024-05-07 13:32:07+00', 0, 1, '{"fid": 508575, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb3389ba-81bc-42db-3e0d-387741f91c00/rectcrop3", "profile": {"bio": {"text": "I standup for you. like reply quote ~ for you", "mentioned_profiles": []}}, "username": "!508575", "power_badge": false, "display_name": "Marcokim2", "active_status": "inactive", "verifications": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "follower_count": 586, "custody_address": "0x6a44ba7ae013effc69f9590a2d950252d28909c9", "following_count": 1114, "verified_addresses": {"eth_addresses": ["0x6c35574c71390b410755af14ae08f121f0f04f62"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MnCks\"}"}', 'sonata'), - (968095, '0x713f6287ff09e5d8ef04c5a47b488d4f5bc37f5a', 10, 1, '2024-05-07 09:42:25+00', 0, 4, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2664, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/whigkP2PWju1Pw4t6\"}"}', 'sonata'), - (1159225, '0xdad8af0686b6716f5f7c0787f61ea1cdd7d49bca', 0, 1, '2024-05-08 11:21:51+00', 0, 4, '{"fid": 402789, "object": "user", "pfp_url": "https://i.imgur.com/zlBZsAO.jpg", "profile": {"bio": {"text": "100퍼 맞팔\n인생은 한번뿐 재밌게 열심히!!!\n소통열심히해요!!\n감사합니다.🫂\n", "mentioned_profiles": []}}, "username": "airblock", "power_badge": false, "display_name": "Air", "active_status": "inactive", "verifications": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "follower_count": 3188, "custody_address": "0x542580e93346a01397e50b1c4fe0aebc603234f4", "following_count": 2978, "verified_addresses": {"eth_addresses": ["0x986bdcfb464c034b0fba4b114ebf52e247eff23e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CebuL\"}"}', 'sonata'), - (955272, '0xbbbd370b76b4562147e9f306244c98a5ab19405d', 0, 1, '2024-05-07 09:05:28+00', 0, 2, '{"fid": 212556, "object": "user", "pfp_url": "https://i.imgur.com/zh3DOft.jpg", "profile": {"bio": {"text": "Collector 🩸 | Degentlemen #8682", "mentioned_profiles": []}}, "username": "nhagio.eth", "power_badge": true, "display_name": "Windy|₿Ξ∞🎩📚🔥", "active_status": "inactive", "verifications": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "follower_count": 1694, "custody_address": "0x8cf6d2b8af28549a2625a6a52bd012f8f2e95b23", "following_count": 549, "verified_addresses": {"eth_addresses": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "sol_addresses": ["8esC41Pwnxtopjh8QdkaY89J8Dh17T3No653fNgAqtwv"]}}', '{"{\"url\":\"https://www.sound.xyz/boredbrothers/drip\"}"}', NULL), - (918886, '0xce6bbef755179b189ec12ecd7e98afb066049d1d', 0, 1, '2024-05-07 07:15:48+00', 0, 2, '{"fid": 399796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d79ee2f8-924d-4313-b433-81d5db330d00/rectcrop3", "profile": {"bio": {"text": "Degen spirit meets global wanderlust & cuisine quests. Early adopter, savoring life’s simplicities & cool vibes. ", "mentioned_profiles": []}}, "username": "degen-master", "power_badge": false, "display_name": "Max", "active_status": "inactive", "verifications": ["0x1c89d7d1721770fd404bc9d7702696a2951c9a46"], "follower_count": 419, "custody_address": "0xdb75ea773c2402787d899429fb02fea21ccb4f29", "following_count": 963, "verified_addresses": {"eth_addresses": ["0x1c89d7d1721770fd404bc9d7702696a2951c9a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mixessss38/iron-butterfly-vs-rage-against-the-machine-the-beatles-cream-pixies-munk-by-the-kleptones?si=48bcf1e1e23c45b8ad19900b842cb557&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (952036, '0xd794b9814b405fa123df666f3e99d32b52d618e4', 0, 1, '2024-05-07 09:00:29+00', 0, 3, '{"fid": 516187, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5eb3758-cc4d-472e-a69e-14040b4a7d00/rectcrop3", "profile": {"bio": {"text": "초보신입/맞팔💯💯/선팔주시면 달려갑니다/무조건반사갑니다", "mentioned_profiles": []}}, "username": "!516187", "power_badge": false, "display_name": "느티고을나무늘보", "active_status": "inactive", "verifications": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "follower_count": 258, "custody_address": "0x774d0caf03af43ca9e47069d48f1dd34469439c6", "following_count": 392, "verified_addresses": {"eth_addresses": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GRwMnSxXQnk7TtDS7\"}"}', 'sonata'), - (871058, '0x57231bbfb112ad924275b25ffa101c3384dcbf20', 0, 1, '2024-05-07 05:54:10+00', 0, 1, '{"fid": 246039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93c7fa70-4212-4c62-2956-64e0a42d3c00/original", "profile": {"bio": {"text": "BTC/ETH HOLDER` Digital Art & AI Art lover |Designer| Illustrator Purple#484", "mentioned_profiles": []}}, "username": "youmoer", "power_badge": false, "display_name": "Youmoer🃏🟡 🟪🎩 🔄", "active_status": "inactive", "verifications": ["0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9"], "follower_count": 951, "custody_address": "0x8fc222afb9d83997a357fdf20d0f590d0b33aa76", "following_count": 723, "verified_addresses": {"eth_addresses": ["0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9"], "sol_addresses": ["CwKRV5Chh1cg75ikozySUTbZsuj62j3v9Pp1xmYz9jLV"]}}', '{"{\"url\":\"https://open.spotify.com/track/6dODwocEuGzHAavXqTbwHv?si=105a44c3d37c4d48\"}"}', NULL), - (1020475, '0xe1bf8dc18efe9008e3ae6140f252299dfec725e5', 1000, 1, '2024-05-07 12:53:15+00', 0, 0, '{"fid": 306841, "object": "user", "pfp_url": "https://i.imgur.com/LrFRBwx.gif", "profile": {"bio": {"text": "https://www.pizzaverse.xyz\n📞→🍕→🚙→🏠→!(^^)!", "mentioned_profiles": []}}, "username": "bym02130", "power_badge": false, "display_name": "bym02130.degen🎩🔮🍕", "active_status": "inactive", "verifications": ["0xcf70041f229fd3092d0630406444d89ebe96928a"], "follower_count": 1404, "custody_address": "0x9c82fec10d7dd211c4e81063e2b1e915392af361", "following_count": 1845, "verified_addresses": {"eth_addresses": ["0xcf70041f229fd3092d0630406444d89ebe96928a"], "sol_addresses": ["94eS7AfnmLWJiyjn8JBk7jgpzxEL1zbMwnSfUfUSemEv"]}}', '{"{\"url\":\"https://soundcloud.com/qrionqrionqrion/waves?si=c84e04e63fff429bbcef637963cdd413&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (921949, '0x70262324d843a3e4d0d07311fef5feab3f19477f', 0, 1, '2024-05-07 07:23:23+00', 0, 1, '{"fid": 503140, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2de648f-2d6d-4a8b-61c3-f84fe3ecb200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mtm", "power_badge": false, "display_name": "Khgoo", "active_status": "inactive", "verifications": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "follower_count": 1353, "custody_address": "0xb9b977dc77ca2b13c12603793f1d7ef9e8739f6b", "following_count": 1593, "verified_addresses": {"eth_addresses": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 너였다면 If It Is You · 정승환 Jung Seung-Hwan by daz on #SoundCloud https://on.soundcloud.com/bQumC\"}"}', NULL), - (951250, '0x990d844b8a51261a39e1b96f5c5e578abde67103', 0, 1, '2024-05-07 08:56:33+00', 0, 4, '{"fid": 425915, "object": "user", "pfp_url": "https://i.imgur.com/Mlu6njb.png", "profile": {"bio": {"text": "Hi, I''m POVI 🐻‍❄️✨ \nWould you be my friend? 🐻‍❄️✨✨\nT2T ", "mentioned_profiles": []}}, "username": "povi", "power_badge": false, "display_name": "Povi🐻‍❄️", "active_status": "inactive", "verifications": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "follower_count": 3474, "custody_address": "0x066d863acc9e5464adbf6fb4eac6ec02d40bcd6f", "following_count": 2260, "verified_addresses": {"eth_addresses": ["0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/devilkjss/lollipop-big-bang-2ne1?si=b28f71c205114dacb61c3707696c6918&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (927190, '0x0e5cda64ba8dfc67df87cc3b03f62e50ffa14512', 0, 1, '2024-05-07 07:57:04+00', 0, 0, '{"fid": 500796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7a208507-5a01-4dc8-963f-89c7c6164f00/rectcrop3", "profile": {"bio": {"text": "hullo\nLet’s communicate often🍀", "mentioned_profiles": []}}, "username": "hyeseung", "power_badge": false, "display_name": "hyeseung🌱", "active_status": "inactive", "verifications": ["0x100c099196c129966e0aac4d653bb85f836b2119"], "follower_count": 835, "custody_address": "0x47ee559bae9d1bfbee5db22623848dd7d8654297", "following_count": 1045, "verified_addresses": {"eth_addresses": ["0x100c099196c129966e0aac4d653bb85f836b2119"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MCaPUcGftch3WJkV8\"}"}', NULL), - (930152, '0x56c15ec8f2dc7ae792ac971a842da65ac6c44d80', 0, 1, '2024-05-07 08:05:00+00', 0, 0, '{"fid": 213923, "object": "user", "pfp_url": "https://i.imgur.com/DHhmXlF.jpg", "profile": {"bio": {"text": "🎩\n😎\n🎖️\nCrypto Enthusiast, Investor, NFTs Trader and Community Moderator", "mentioned_profiles": []}}, "username": "lawrency.eth", "power_badge": false, "display_name": "Lawrency🎩🍖🔮⛓️🍡", "active_status": "inactive", "verifications": ["0x4b9e02d58e33b03b696715a24bcdd77cf5b2703e"], "follower_count": 634, "custody_address": "0x156db122e4296b295fae7388f143c9638486fe82", "following_count": 1247, "verified_addresses": {"eth_addresses": ["0x4b9e02d58e33b03b696715a24bcdd77cf5b2703e"], "sol_addresses": ["FpaUTvikW4CTKh63pyN5aUk8UvgFUneVeyJpAjkdpNf4"]}}', '{"{\"url\":\"https://open.spotify.com/track/2q5IuW012mRgwVDQrsbEYe\"}"}', NULL), - (929934, '0x25f7281f5984333555e75f1bfc7bb25a20baabf1', 0, 1, '2024-05-07 08:03:59+00', 0, 5, '{"fid": 404349, "object": "user", "pfp_url": "https://i.imgur.com/mhpVtL0.jpg", "profile": {"bio": {"text": "여기 같이 하시는 분들 모두 행복하고 좋은 일만 가득 하길 바랄게요 우리 부자 됩시다\n", "mentioned_profiles": []}}, "username": "jjjang", "power_badge": false, "display_name": "wassup82", "active_status": "inactive", "verifications": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "follower_count": 3327, "custody_address": "0x8a5f460242c275826faa332f3bb0b8e07fb14d45", "following_count": 2644, "verified_addresses": {"eth_addresses": ["0x510c65b47b3ec60611e9a66ac746f31d55208827"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/b4uLZuM1GeqaEnN99\"}"}', 'sonata'), - (175442, '0x017420a1d0312c76f66b3130cd60b635ed8f5264', 20, 1, '2024-05-05 10:55:14+00', 0, 25, '{"fid": 328524, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/15c4722a-a64d-4999-db6c-d488be1bb800/original", "profile": {"bio": {"text": "Why can''t we be frens?\n@pdf FID : 328524 ", "mentioned_profiles": []}}, "username": "pdf", "power_badge": false, "display_name": "Premiata Degen''s Floor ✪", "active_status": "inactive", "verifications": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "follower_count": 811, "custody_address": "0xeda5d99dce69824b44ad9a5eb6d7919d6496a176", "following_count": 1718, "verified_addresses": {"eth_addresses": ["0xeda5d99dce69824b44ad9a5eb6d7919d6496a176"], "sol_addresses": ["2kccAtADHM9qW8k8Ad9gFhpWteijVUbDb2fKsfN73VFZ"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5171f740-86af-404f-475a-aa5abdff6b00/original\"}","{\"url\":\"https://soundcloud.com/victor-ramos-176/bob-marley-misty-morning-crisis-demos-kaya-78?si=7f55ff99049c401db4a148efb4f2a143&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1021853, '0x9f2317fa4a7a4446ed6bf808341f4b23f91cf37b', 0, 1, '2024-05-07 12:56:34+00', 0, 5, '{"fid": 466532, "object": "user", "pfp_url": "https://i.imgur.com/cWGdehp.jpg", "profile": {"bio": {"text": "I like diving, dogs, traveling, and cooking", "mentioned_profiles": []}}, "username": "gomgomi", "power_badge": false, "display_name": "gomgomi", "active_status": "inactive", "verifications": ["0x3ea65e7f8ddffe83a2a8a6ee59595d84169cb449"], "follower_count": 1541, "custody_address": "0x66a0375dd9d3ba26bfaab36eee0a6455e1818cda", "following_count": 1622, "verified_addresses": {"eth_addresses": ["0x3ea65e7f8ddffe83a2a8a6ee59595d84169cb449"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-698516642/covered-by-keehos?si=53d6cccafb374be7b127537fd6fa6770&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (921957, '0xa3bc6e02aff235d1df88999e22f59cf65caf87f6', 0, 1, '2024-05-07 07:23:10+00', 0, 1, '{"fid": 406373, "object": "user", "pfp_url": "https://i.imgur.com/FakDoyF.jpg", "profile": {"bio": {"text": "언제까지? 끝까지!\n받은건 돌려주는 철칙!\nyou know? I know!\n\n", "mentioned_profiles": []}}, "username": "yongdie", "power_badge": false, "display_name": "cutey", "active_status": "inactive", "verifications": ["0x92140d2cdf70efbbfdbf246b1f914eda40423a1e"], "follower_count": 2380, "custody_address": "0xaeb1088526a4788ee0785082bab8018a6bfe6b0c", "following_count": 1997, "verified_addresses": {"eth_addresses": ["0x92140d2cdf70efbbfdbf246b1f914eda40423a1e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/willisband/i-think-i-like-when-it-rains?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1051735, '0x80eaf24c72393ad5789a92d681d1622c3a9f87ab', 0, 1, '2024-05-07 14:29:26+00', 0, 0, '{"fid": 511632, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52bbcfa9-dabc-4bc9-7d01-43db277d2d00/rectcrop3", "profile": {"bio": {"text": "Crypto Trader.\nDegen Holder.\nI love to communicate with you!!", "mentioned_profiles": []}}, "username": "!511632", "power_badge": false, "display_name": "Felix", "active_status": "inactive", "verifications": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "follower_count": 167, "custody_address": "0x397e2941abe6dbe389c5f25232c19cbc3cb76b75", "following_count": 279, "verified_addresses": {"eth_addresses": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/erdemaktas/adele-someone-like-you?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (926698, '0x3dd68dc5817d554accf1788afba61895ab8d57ec', 0, 1, '2024-05-07 07:55:51+00', 0, 1, '{"fid": 499381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b0941f20-344c-4fb5-7f74-7d4c10fac900/rectcrop3", "profile": {"bio": {"text": "Hi. I am a father of twins.\nI joined Warpcast because I enjoy communicating with people and want to learn more.😀", "mentioned_profiles": []}}, "username": "newcastle", "power_badge": false, "display_name": "Newcastle", "active_status": "inactive", "verifications": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "follower_count": 775, "custody_address": "0x51b580785c304de0c09203710ec8c8364ddda6ef", "following_count": 316, "verified_addresses": {"eth_addresses": ["0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LcJHae3C2CLN1HTd9\"}"}', 'sonata'), - (931241, '0xeb89f649bf6da451924563dcda39f71aa88d5d6f', 0, 1, '2024-05-07 08:08:11+00', 0, 3, '{"fid": 426079, "object": "user", "pfp_url": "https://i.imgur.com/btavMHT.jpg", "profile": {"bio": {"text": "x > +", "mentioned_profiles": []}}, "username": "heyden", "power_badge": false, "display_name": "heyden", "active_status": "inactive", "verifications": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "follower_count": 2359, "custody_address": "0x578a54f0694def6e374a86204efa3a8445a4e2f5", "following_count": 2705, "verified_addresses": {"eth_addresses": ["0xfca1d644f0d4dab00660ebcdfc176063185b1587"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Nz9EtyuWxUsBgXFV9\"}"}', 'sonata'), - (928667, '0xb1b576a1604da05f0d722cc6a1009a45f6af3c7b', 0, 1, '2024-05-07 07:59:41+00', 0, 1, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1472, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1212, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/baron1_3/sets/computer-music?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (973106, '0x92c8d7bab713b375740f9df3afb815e3069a2d79', 0, 1, '2024-05-07 10:13:34+00', 0, 0, '{"fid": 387117, "object": "user", "pfp_url": "https://i.imgur.com/6NtMrL7.jpg", "profile": {"bio": {"text": "🔰初心者🔰\n\nプロフィール画は、愛犬チワプーのmickeyです。\n♡専業主婦♡\n愛犬のことだったり、料理だったり投稿しますのでよろしくお願いします", "mentioned_profiles": []}}, "username": "rinkun", "power_badge": false, "display_name": "mickey", "active_status": "inactive", "verifications": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "follower_count": 536, "custody_address": "0x095a2750cae8910bf45d102a3e9d51a1821c92e4", "following_count": 404, "verified_addresses": {"eth_addresses": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rQ6R4EJqSZQ2yzMX7\"}"}', NULL), - (1017874, '0x1c32a40232f0fec05dd2547421ab47c096494e1e', 0, 1, '2024-05-07 12:47:08+00', 10, 20, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2932, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2368, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BfNgX\"}"}', 'sonata'), - (977397, '0xfe9d57a8b81e06f0ff8356720050ce823056e1f4', 0, 1, '2024-05-07 10:30:20+00', 0, 0, '{"fid": 411507, "object": "user", "pfp_url": "https://i.imgur.com/yGIGnFO.jpg", "profile": {"bio": {"text": "Medical doctor \nDigital artist\nBlockchain enthusiast", "mentioned_profiles": []}}, "username": "keplerbanks", "power_badge": false, "display_name": "Banks ", "active_status": "inactive", "verifications": ["0x02304bcfb1b7a1b1afb38f6dfd11a49c6fb0edf5"], "follower_count": 24, "custody_address": "0x8b4c2ddc31d386947d2eb115c5305b77ebed2381", "following_count": 151, "verified_addresses": {"eth_addresses": ["0x02304bcfb1b7a1b1afb38f6dfd11a49c6fb0edf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1udwFobQ1JoOdWPQrp2b6u?si=rlMOHK51QEu_ji0WMZfJ9A&context=spotify%3Aplaylist%3A37i9dQZF1DX0XUsuxWHRQd\"}"}', NULL), - (925419, '0x2b219aff53ccf85dd9afd61aa577ea3517a8c016', 0, 1, '2024-05-07 07:47:30+00', 0, 0, '{"fid": 287325, "object": "user", "pfp_url": "https://i.imgur.com/t1CAksh.png", "profile": {"bio": {"text": "👋 I am a crypto investment expert! 🚀 Now building success through long-term strategies and deep market understanding. 💰 Do you want to grow together? ", "mentioned_profiles": []}}, "username": "fly-winysm", "power_badge": false, "display_name": "Y.ChongMU🎩🍖🌈", "active_status": "inactive", "verifications": ["0xcdfe2249781b9a9f60b53721a4b8bb01ce5812fd"], "follower_count": 1254, "custody_address": "0xe9d97250987c85f9bd1e671f22865de19f865823", "following_count": 1485, "verified_addresses": {"eth_addresses": ["0xcdfe2249781b9a9f60b53721a4b8bb01ce5812fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n17FKjcuSScuZ3b46\"}"}', NULL), - (918394, '0x75094d7406393a6675115683cf8c0e1b379bf112', 0, 1, '2024-05-07 07:12:30+00', 0, 9, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 202, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 193, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PaGWfiSc8W6yD2Wp7\"}"}', 'sonata'), - (922282, '0x3642ce5167c2e1ac2d195f183388a8dbbaaf039d', 0, 1, '2024-05-07 07:24:45+00', 0, 2, '{"fid": 503372, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36fecfe6-25b2-4260-9f0e-418991dff000/rectcrop3", "profile": {"bio": {"text": "We''ve scored front-row tickets to this cosmic carnival—let''s dance through the stardust! 🎡🌠", "mentioned_profiles": []}}, "username": "z-eliza", "power_badge": false, "display_name": "ELISA ", "active_status": "inactive", "verifications": ["0x3a88cf9c05cb64cad550e9f90c360ba748e06b02"], "follower_count": 734, "custody_address": "0x84a161665ddfdabd1dd2a87b454d9a96dc761dcc", "following_count": 839, "verified_addresses": {"eth_addresses": ["0x3a88cf9c05cb64cad550e9f90c360ba748e06b02"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZaYBBsQK1wAaoGXe7\"}"}', NULL), - (1173180, '0xc395fc13a821d2b6c28f38282f3778bbeeef0d4b', 2322, 1, '2024-05-15 06:19:26+00', 0, 117, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 264428, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 336, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2qMLbeUM1IunPifKpvzqDx?si=Ltl8S7J5SEeVtriNLVh53A\"}"}', 'sonata'), - (871036, '0x9a33c3f3d40f76ddd513468ed6831c80a46c5846', 0, 1, '2024-05-07 05:52:11+00', 0, 1, '{"fid": 291712, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeicd3zrryr6cbb6456epl5eqyzlo6ec4s56sk5wc7awgc246nua27i/1", "profile": {"bio": {"text": "Studying and investing cryptos. ", "mentioned_profiles": []}}, "username": "multan", "power_badge": false, "display_name": "Bonzil🎩", "active_status": "inactive", "verifications": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "follower_count": 1281, "custody_address": "0xe61d9181dffdcd462b0e3269c93d6d0af4a3e4db", "following_count": 1563, "verified_addresses": {"eth_addresses": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1zNXF2svmdlNxfS5XeNUgr?si=cmvYm9DTR2-a8I1HMPE9bA\"}"}', NULL), - (929942, '0xae0fd6b4f1e8d6fd99071df7e7fb6199577e514b', 0, 1, '2024-05-07 08:03:45+00', 0, 4, '{"fid": 439086, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b5966976-f72f-4cd6-25ed-a33fcb7fd700/rectcrop3", "profile": {"bio": {"text": "older friends next door 🇰🇷 \nF4F I4I🚀 reply\n일상소통해요🫶 \ndaily life communicate \n.\n.\n.\n.\n.\n.\n.\n\n🤖 = unfollow 🙅‍♀️\n", "mentioned_profiles": []}}, "username": "iboram3054", "power_badge": false, "display_name": "Didi", "active_status": "inactive", "verifications": ["0xe9b4de0efb4572110e49504aca350eb7e43f01aa"], "follower_count": 1123, "custody_address": "0xc8ad231a386914a3f0390b81e52b23ac89d8bea1", "following_count": 2395, "verified_addresses": {"eth_addresses": ["0xe9b4de0efb4572110e49504aca350eb7e43f01aa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/J8nmu\"}"}', 'banmal-mode'), - (929937, '0x369ce01a9597fcd16bad6c51fbeeee12374e2ef7', 0, 1, '2024-05-07 08:03:12+00', 0, 0, '{"fid": 505641, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3194154a-258a-4936-8ea9-f8ed388f5300/rectcrop3", "profile": {"bio": {"text": "Have u ever been maplestory?", "mentioned_profiles": []}}, "username": "xoxccu", "power_badge": false, "display_name": "Zbaldonzom", "active_status": "inactive", "verifications": ["0x83bba519b1482bde75aca2fae2a1fb817b3e4c52"], "follower_count": 47, "custody_address": "0xca0c7eb46394d5f1e1a22c147322c63834c958d6", "following_count": 59, "verified_addresses": {"eth_addresses": ["0x83bba519b1482bde75aca2fae2a1fb817b3e4c52"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jaz_s/we-dont-talk-anymore-vs-love-me-harder-mashup\"}"}', 'sonata'), - (1173251, '0xb7251e426fac8e1585f545c5576256440640b5de', 1000, 1, '2024-05-15 15:29:43+00', 0, 1, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1525, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 429, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Jyz3jT3xn85KYyyU12MLj?si=bbfbdad35b814834\"}"}', NULL), - (992310, '0x98cfbe92f5218e36fc88a0b5c32fdd9ea7dcd50a', 0, 1, '2024-05-07 11:32:03+00', 0, 3, '{"fid": 330471, "object": "user", "pfp_url": "https://i.imgur.com/6Ah8tCY.jpg", "profile": {"bio": {"text": "Conceptual Photographer, Feminist, Activist.\nhttps://foundation.app/@innamosina\nhttps://exchange.art/innamosina/nfts", "mentioned_profiles": []}}, "username": "innamosina", "power_badge": false, "display_name": "Inna Mosina 🎩🔵", "active_status": "inactive", "verifications": ["0x8e47f230c4240138ea7e7d71b0cc18224b40cd43", "0x67a610d45eddbd630feb7cdf86f91ed0f0842552"], "follower_count": 1062, "custody_address": "0x8e79f9420ccc023f9c48673ffa75ed9a1a97d707", "following_count": 601, "verified_addresses": {"eth_addresses": ["0x8e47f230c4240138ea7e7d71b0cc18224b40cd43", "0x67a610d45eddbd630feb7cdf86f91ed0f0842552"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/molchatdoma/ucypjtb8gi6k?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (927219, '0xd511be9db94dd502fc7f6ca480b7af8739f9714b', 0, 1, '2024-05-07 07:56:38+00', 0, 2, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1770, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2211, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gr891/camo-life-is-wet-feat-jmin?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (922286, '0xc4f17f77c5e6ce7835112755997678ae90f915f9', 0, 1, '2024-05-07 07:25:03+00', 0, 0, '{"fid": 387528, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b2ad7f9-9595-4aa5-6c2d-a90ed20df900/original", "profile": {"bio": {"text": "crypto勉強中です🥹楽しくワーキャスしたい!🍖🎩studying crypto🎩fid:387528", "mentioned_profiles": []}}, "username": "umak", "power_badge": false, "display_name": "🍖umak🎩", "active_status": "inactive", "verifications": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "follower_count": 916, "custody_address": "0xba46d0958c44912f98d84c354ea445457a29fe60", "following_count": 1131, "verified_addresses": {"eth_addresses": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-586274752/djavan-samurai-ao-vivo?si=bd7dcb5cfbaf414b814f2a8081dab1bf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1018244, '0xfb15c5da49383eb9c268adf196a845dee5904837', 0, 1, '2024-05-07 12:49:49+00', 0, 0, '{"fid": 385271, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6688aa1f-6f77-4662-d753-b22d86570000/rectcrop3", "profile": {"bio": {"text": "I like sushi", "mentioned_profiles": []}}, "username": "twelvexdozen", "power_badge": false, "display_name": "coma🔵🍕🎩🔮🧀🐦🍖", "active_status": "inactive", "verifications": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "follower_count": 178, "custody_address": "0xdc9db47747079e5a677f0f6f8924e03fc0f96f2a", "following_count": 549, "verified_addresses": {"eth_addresses": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "sol_addresses": ["FWqT3hZUDWhcZoa9E1oz8NXEF2JDguEybPSQiNS6fzNH"]}}', '{"{\"url\":\"もっかいhttps://on.soundcloud.com/JxJucRiWwafjbYgQ6\"}"}', NULL), - (925495, '0xd96f7aa7f35f32e539284c106af04380e8e529fa', 0, 1, '2024-05-07 07:48:49+00', 0, 1, '{"fid": 9135, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d4c3b0e-52dc-4e80-c166-862f2b200200/original", "profile": {"bio": {"text": "consistently curious | host of /art and /collector-walls | self-proclaimed ambassador of /higher | ex Sismo.io", "mentioned_profiles": []}}, "username": "kugusha.eth", "power_badge": true, "display_name": "kugusha ↑", "active_status": "inactive", "verifications": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "follower_count": 32404, "custody_address": "0x7ad6cbeaed607851ca0201faa835f01f123d5be6", "following_count": 702, "verified_addresses": {"eth_addresses": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2GxrNKugF82CnoRFbQfzPf?si=udDvPAWBQ7C_iSAWosQ7hQ\"}"}', NULL), - (932978, '0xb544c2b6808201ab7b23ca62ee0be8cc1c737763', 0, 1, '2024-05-07 08:11:16+00', 0, 0, '{"fid": 195483, "object": "user", "pfp_url": "https://i.imgur.com/mLKlfn9.jpg", "profile": {"bio": {"text": "Co-Founder and CEO of Dune. Beyond crypto I like coffee, wine, tech, architecture, books, music freestyle skiing, outdoors etc.", "mentioned_profiles": []}}, "username": "hagaetc", "power_badge": false, "display_name": "Fredrik", "active_status": "inactive", "verifications": ["0xe1149ba1477d81de13af598efff1daea364f452a"], "follower_count": 70, "custody_address": "0x176fd89a113f9a07018220c7b8ea6de0049ad7b8", "following_count": 72, "verified_addresses": {"eth_addresses": ["0xe1149ba1477d81de13af598efff1daea364f452a"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58b17cc4-b10a-4327-8f07-73650066b300/original\"}","{\"url\":\"https://open.spotify.com/track/5cnzY2pz4gUFNGyhLJRvxh?si=c0ef9502fe9d4d5a\"}"}', 'soundscapes'), - (930147, '0x1480f338d5758be301929d702144d773d4505e57', 0, 1, '2024-05-07 08:04:07+00', 0, 0, '{"fid": 509953, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0ab8318f-424e-4656-ebb9-8ee4f221ba00/rectcrop3", "profile": {"bio": {"text": "Follow Me", "mentioned_profiles": []}}, "username": "!509953", "power_badge": false, "display_name": "Mehbob", "active_status": "inactive", "verifications": ["0xe541c967af5f69f509abc21e3dc72e46a58643c8"], "follower_count": 496, "custody_address": "0xa54516b197af11fbedd922486cb62f279927057f", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0xe541c967af5f69f509abc21e3dc72e46a58643c8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-616272695/sets/japanese-80s-funk-city-pop-1?si=3d1c86ca087e44eda737a19293898c9a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (968098, '0xa834fc3adaf14c9b87592989ca77dc473a9b5a00', 0, 1, '2024-05-07 09:42:00+00', 0, 2, '{"fid": 290288, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/Qmf9bNFBZS1fC5P5h3XGoEpW7J3Ct9rN5ft543tfcDnhme?filename=KakaoTalk_20240427_202428375_05.jpg", "profile": {"bio": {"text": "BOS^^", "mentioned_profiles": []}}, "username": "jiyujeong", "power_badge": false, "display_name": "BOS", "active_status": "inactive", "verifications": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "follower_count": 2318, "custody_address": "0xf9c173d7657ad1969ee2b93d87b0ff607364ab69", "following_count": 2818, "verified_addresses": {"eth_addresses": ["0xec34695380092aea268d2765c16053cb5a1e2652"], "sol_addresses": []}}', '{"{\"url\":\"https://supercast.mypinata.cloud/ipfs/QmereEApyvWdib7SwDooxj2CeLrrNwVoXiiP8x9qbUbvY7?filename=KakaoTalk_20240507_184014098.jpg\"}","{\"url\":\"https://soundcloud.com/user-938726088/200a1?si=a9ab6411f6e14cbbad1c648abf748d88&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173303, '0x195222c105b0e461d2206793672e516b402908be', 0, 1, '2024-05-15 18:20:18+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 960, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1BRwuvjhkgezmv1gcI6lT6?si=kTIBqHIzRoOWFCW07w9Xhg\"}"}', NULL), - (937610, '0xaf7986b60614d2c4ffdd8d3e55d4404da61e61d4', 0, 1, '2024-05-07 08:19:04+00', 0, 1, '{"fid": 406278, "object": "user", "pfp_url": "https://i.imgur.com/2gFuK2z.jpg", "profile": {"bio": {"text": "Degen $1 🚀🚀", "mentioned_profiles": []}}, "username": "flutter", "power_badge": false, "display_name": "Gigantia ❁", "active_status": "inactive", "verifications": ["0x8f00e451816f6af313c4827934566996e8df4e8d"], "follower_count": 1329, "custody_address": "0xfa465dba5d5cf87e3c6b704848fb38d2ecef80f0", "following_count": 1290, "verified_addresses": {"eth_addresses": ["0x8f00e451816f6af313c4827934566996e8df4e8d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T9DBF8hr5SttUrEx9\"}"}', 'sonata'), - (978825, '0x4f62a02da7f61c2b3aa5d0f891383fe252322075', 0, 1, '2024-05-07 10:38:42+00', 0, 0, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1473, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1213, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/elpares-channel-elpare/yorushika-n-buna-official-fireworks-of-shoes?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (972328, '0x7a575ebf899e3e8cad051f63a25747c3b13c6d15', 0, 1, '2024-05-07 10:09:52+00', 0, 6, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2209, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2093, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/amfzqovfswzh/sets/1-25x?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (933475, '0x5d249485db6bc38aa1769a904e94aee62c1910a7', 0, 1, '2024-05-07 08:12:01+00', 0, 1, '{"fid": 509205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e14ff0a-50ac-40ee-f958-fe4ca79fdf00/rectcrop3", "profile": {"bio": {"text": "Web3, crypto, food, travel", "mentioned_profiles": []}}, "username": "!509205", "power_badge": false, "display_name": "bbangcho", "active_status": "inactive", "verifications": ["0xd4199fa1a3f731cdd07876429820f7091425af9d"], "follower_count": 87, "custody_address": "0x07267a1d18f9a410d4a8e0bcd28289467dafa33c", "following_count": 309, "verified_addresses": {"eth_addresses": ["0xd4199fa1a3f731cdd07876429820f7091425af9d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/e4NuYNzvDcch6UAVA\"}"}', 'sonata'), - (986454, '0x1a79735d7d531dbaed9c81f8e111de172f348803', 0, 1, '2024-05-07 11:05:13+00', 0, 2, '{"fid": 387117, "object": "user", "pfp_url": "https://i.imgur.com/6NtMrL7.jpg", "profile": {"bio": {"text": "🔰初心者🔰\n\nプロフィール画は、愛犬チワプーのmickeyです。\n♡専業主婦♡\n愛犬のことだったり、料理だったり投稿しますのでよろしくお願いします", "mentioned_profiles": []}}, "username": "rinkun", "power_badge": false, "display_name": "mickey", "active_status": "inactive", "verifications": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "follower_count": 536, "custody_address": "0x095a2750cae8910bf45d102a3e9d51a1821c92e4", "following_count": 404, "verified_addresses": {"eth_addresses": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sgieUDvFLtT8cEtZ9\"}"}', 'musicjp'), - (967945, '0x1ff97ac110df2195ebbd66823c22dce4918eb9b6', 0, 1, '2024-05-07 09:40:50+00', 0, 1, '{"fid": 501247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05b9c7a4-30ec-414c-3953-8ddd93e05a00/rectcrop3", "profile": {"bio": {"text": "I love crypto", "mentioned_profiles": []}}, "username": "weekly", "power_badge": false, "display_name": "lenovo", "active_status": "inactive", "verifications": ["0x50ab3fb7c9e2cfdda224c7d2526d3c8a98a3ce3b"], "follower_count": 509, "custody_address": "0x7fb5799ab52a1ca1a03c7ef311e79fbd00d55a1a", "following_count": 513, "verified_addresses": {"eth_addresses": ["0x50ab3fb7c9e2cfdda224c7d2526d3c8a98a3ce3b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/theweeknd/heartless?ref=clipboard&p=i&c=0&si=8FB91D996F214D12BB31008F8733A8B8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173220, '0x99952667073c7dbcf5aba8eef9197dedae6d88b2', 1000, 1, '2024-05-15 13:31:37+00', 0, 8, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 866, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 870, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3daLDEbCt1fvkS7POmwu2U?si=hNlpkVJwQzixVKTFNw57kA\"}"}', 'rock'), - (975001, '0xf3f110eef6d804748607845e9327be205722fc01', 0, 1, '2024-05-07 10:21:27+00', 0, 2, '{"fid": 503247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51054fce-0b1f-40b9-1748-3d268c800d00/rectcrop3", "profile": {"bio": {"text": " Love | Peace | Nature | Cuteness | 100% 🍋 ", "mentioned_profiles": []}}, "username": "lemoni", "power_badge": false, "display_name": "🍋 lemoni ", "active_status": "inactive", "verifications": ["0xbb718e764ee9dcd619ed75433534554de2d170eb"], "follower_count": 774, "custody_address": "0x4d1dc543fa9d2770cfa77ddf3eecff3a913bbbd1", "following_count": 771, "verified_addresses": {"eth_addresses": ["0xbb718e764ee9dcd619ed75433534554de2d170eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ocYwhKTThAx5MXfx6\"}"}', 'sonata'), - (976852, '0xdb3d6c70ee5af60fd3d52b49dc88c434fb87f5f4', 0, 1, '2024-05-07 10:30:33+00', 0, 7, '{"fid": 4413, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/bd2gP2LLbfux3HwUTFL9UKWmzd2gV4og0mzHIsbD3HAkHg_SnVJbeX9gEGfaePkr9Qybc5rLrFCYSWZbSlEN0kgr3F57Gg9yVc-k", "profile": {"bio": {"text": "NYC\n\n@usv\n\naweissman.com\naweissman.xyz", "mentioned_profiles": []}}, "username": "aweissman", "power_badge": true, "display_name": "Andy W", "active_status": "inactive", "verifications": ["0x229c6967ad9e600db2ac26cbab6462889561aac8", "0xcd2d71f7c50eb0336b58bb7b1544494343294a43"], "follower_count": 367, "custody_address": "0x0b15e65aa88e583ebee0a2f5f94bc38626631118", "following_count": 151, "verified_addresses": {"eth_addresses": ["0x229c6967ad9e600db2ac26cbab6462889561aac8", "0xcd2d71f7c50eb0336b58bb7b1544494343294a43"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/che/miley-cyrus-1\"}"}', 'sonata'), - (1022662, '0x7a242ae17c4c33f48fd3dbc2ea05c3a3cda72a89', 0, 1, '2024-05-07 12:58:10+00', 0, 1, '{"fid": 337426, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/644a4aab-1c5a-4e15-900a-1591108f2c00/original", "profile": {"bio": {"text": "Crypto Airdrop\n /fire-japan", "mentioned_profiles": []}}, "username": "ykoku47", "power_badge": false, "display_name": "oku🎩🔮🧀", "active_status": "inactive", "verifications": ["0x970a4d449766804f49892018d932bb3d6b1c6e95"], "follower_count": 1445, "custody_address": "0x7599adc67ebea204f46d566cf9c431afaeff96dc", "following_count": 982, "verified_addresses": {"eth_addresses": ["0x970a4d449766804f49892018d932bb3d6b1c6e95"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/u-th/jessy-j-price-tag-hq?si=391cac848c114a5198e9f80dd1df41d8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (972332, '0xdb09dfa542199e04f52c51277f533470a24c6235', 0, 1, '2024-05-07 10:10:24+00', 0, 9, '{"fid": 401276, "object": "user", "pfp_url": "https://i.imgur.com/pZKEwwK.jpg", "profile": {"bio": {"text": "소통/$DEGEN/BASE/맞팔 환영!!\n맞디젠 환영!!🔥🔥", "mentioned_profiles": []}}, "username": "namonamo", "power_badge": false, "display_name": "BTC PEPE", "active_status": "inactive", "verifications": ["0x6cb72521dd4f81e7e82a31d5e2b29cdcb5676cac", "0xb5b2071180eeabadf984d9d04b307ee3c24bfc51"], "follower_count": 3259, "custody_address": "0x77d94163176f4211cbee1142014ba44132d850ce", "following_count": 3917, "verified_addresses": {"eth_addresses": ["0x6cb72521dd4f81e7e82a31d5e2b29cdcb5676cac", "0xb5b2071180eeabadf984d9d04b307ee3c24bfc51"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oHRsBTAcbaW4kztr5\"}"}', 'sonata'), - (931242, '0x36652bfd93ee07d3317e5c5f5fd86b0405f80151', 0, 1, '2024-05-07 08:08:17+00', 0, 4, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1705, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/re8Yaf3uCSbgfbs5A\"}"}', 'sonata'), - (892062, '0x0085e427e64c501f96c538e4872cb463b9aba411', 0, 1, '2024-05-07 06:37:10+00', 0, 25, '{"fid": 516943, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c8acac4-ff46-4a49-52d0-61cac43bf900/rectcrop3", "profile": {"bio": {"text": "Chance Is Another Name For Hardworking", "mentioned_profiles": []}}, "username": "!516943", "power_badge": false, "display_name": "Donyaw 🧡", "active_status": "inactive", "verifications": ["0x1205e0742e4c9f7f8f14313841be15ab967ad48c"], "follower_count": 80, "custody_address": "0x7537f1ec3685478edd53483ebe27602850ffe9b1", "following_count": 189, "verified_addresses": {"eth_addresses": ["0x1205e0742e4c9f7f8f14313841be15ab967ad48c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/lyrah/coming-back?song_tab=posts\"}"}', NULL), - (975743, '0xb8478ad5be302a57b73bc73f9218a55532e48674', 0, 1, '2024-05-07 10:23:49+00', 0, 6, '{"fid": 389207, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ad1bcfd-550b-48ef-e718-f0b6cd3af000/rectcrop3", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 929, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4h9wh7iOZ0GGn8QVp4RAOB?si=2TknhyIqTyu04Y-OBbch7Q&context=spotify%3Asearch%3Aonerepublic\"}"}', NULL), - (969006, '0x3616343466d127ad244cc4d00ecc134be8d739ec', 0, 1, '2024-05-07 09:44:41+00', 0, 6, '{"fid": 427595, "object": "user", "pfp_url": "https://i.imgur.com/iel7ZRP.jpg", "profile": {"bio": {"text": "워캐님들 환영!!!!! 👋🌈👋\n자주 소통해요😘", "mentioned_profiles": []}}, "username": "eunbo4520", "power_badge": false, "display_name": "Eunbo", "active_status": "inactive", "verifications": ["0x3ae54db09157ca5bd8b13c9bc530e86c2c21806b"], "follower_count": 3631, "custody_address": "0xa2bb5f46f4fdd6097c4d6f62f2dfffcb5c5ced98", "following_count": 3160, "verified_addresses": {"eth_addresses": ["0x3ae54db09157ca5bd8b13c9bc530e86c2c21806b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MfPdBsiGtPy6tB4D6\"}"}', NULL), - (1173250, '0xbb9a87c5eded4246e53724a57ecc40112ca97a36', 0, 1, '2024-05-15 15:27:04+00', 0, 0, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1525, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 429, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/243y3lmMpF19bpXHw7kjnF?si=2837a67992fc4df9\"}"}', NULL), - (955286, '0x940bda7abc0c9001383e972a1f250b5e54dc2e37', 0, 1, '2024-05-07 09:05:59+00', 0, 3, '{"fid": 429365, "object": "user", "pfp_url": "https://i.imgur.com/iF8ZBO7.png", "profile": {"bio": {"text": "1 Degen = 1USD 기원 🔥\n⭐100% 답장 갑니다⭐\n우리 모두 부자됩시다🥳", "mentioned_profiles": []}}, "username": "chaejonghyun", "power_badge": false, "display_name": "Keep-going🍖🚀", "active_status": "inactive", "verifications": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "follower_count": 3673, "custody_address": "0x4fd1388a37021d7e12d422c0941df22d55a8672b", "following_count": 3885, "verified_addresses": {"eth_addresses": ["0x9cd0f0f33ba942b20d04326e4541e2480617e2a5", "0x9cd0f0f33ba942b20d04326e4541e2480617e2a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/skQqb\"}"}', 'sonata'), - (1051081, '0x5f1f070c9c6b9fac6d07099fed852cef2d4b6448', 0, 1, '2024-05-07 14:26:27+00', 0, 3, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1925, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2303, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QDppc3vkQmDoLwf28\"}"}', 'sonata'), - (881190, '0x392d50669b6792bb140dc575e0b421766405b2f6', 0, 1, '2024-05-07 06:14:02+00', 0, 13, '{"fid": 278653, "object": "user", "pfp_url": "https://i.imgur.com/Ph6d9IU.jpg", "profile": {"bio": {"text": "My dog/cat thinks I''m cool.", "mentioned_profiles": []}}, "username": "alexescd.eth", "power_badge": true, "display_name": "alexesc 🎩", "active_status": "inactive", "verifications": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "follower_count": 757, "custody_address": "0xdfeb78e753bc0811431b73cf830ff114e10619ae", "following_count": 1266, "verified_addresses": {"eth_addresses": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/alexescd.eth/post/8d977321-3e99-4f77-a2e3-a9cdc1e9aa50\"}"}', 'sonata'), - (1022657, '0xf7bb8d4392c5109e386cb73772ec3b66d82ebc19', 0, 1, '2024-05-07 12:57:54+00', 0, 0, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 438, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 386, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5id3Rqn7SPj1LX4FfY4nGz?si=cXqBEHDqTlOksvDB244cFw\"}"}', NULL), - (1133541, '0x568498a3505e805b3938e36c5d54413a00882ab6', 0, 1, '2024-05-07 18:45:57+00', 0, 1, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1362, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1493, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6wDntdm888mDo458RaYjGl?si=YaVr-lAjQlOvDaDzNkWt0w\"}"}', 'musicjp'), - (933482, '0x378b801c424bd678761b2e22e4da7d019a19cf76', 0, 1, '2024-05-07 08:13:16+00', 0, 0, '{"fid": 434644, "object": "user", "pfp_url": "https://i.imgur.com/8FCNKzD.jpg", "profile": {"bio": {"text": "I''m a crypto lover // 함께 소통해요😍", "mentioned_profiles": []}}, "username": "malrangcow", "power_badge": false, "display_name": "MalrangCow🎩🍖", "active_status": "inactive", "verifications": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "follower_count": 2957, "custody_address": "0xa5987cbd36cab6619ad1b4c611858193f63061a6", "following_count": 2985, "verified_addresses": {"eth_addresses": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xWNbakmNB7tNwyTp9\"}"}', NULL), - (932958, '0x2cff0f5e57efeabc596aa237f1b26738b6a6aaec', 0, 1, '2024-05-07 08:11:34+00', 0, 6, '{"fid": 500603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3908c5f6-89cb-45e3-500b-cccdda0a0200/rectcrop3", "profile": {"bio": {"text": "f4f\nDEGEN TO THE MOON🚀🚀🚀🌕🇰🇷", "mentioned_profiles": []}}, "username": "kiss486", "power_badge": false, "display_name": "gursung park", "active_status": "inactive", "verifications": ["0x91c509830ff641216f8a1b7a638dab7b41b33e2e", "0x933a86349273c0ed6518938d3b385eb6ec3bc7d9"], "follower_count": 979, "custody_address": "0x350b95638deb428f6d340a268c9b40f0d662810b", "following_count": 2106, "verified_addresses": {"eth_addresses": ["0x91c509830ff641216f8a1b7a638dab7b41b33e2e", "0x933a86349273c0ed6518938d3b385eb6ec3bc7d9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uHfcY\"}"}', 'banmal-mode'), - (1173217, '0x0746374b5a9c20b67eab1b833bdba79fc4f45f90', 0, 1, '2024-05-15 13:16:46+00', 0, 6, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 866, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 870, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3R3fcrKaeBr3U6s9R2belr?si=tF6GAFeAS42Kq21dt2n0kg\"}"}', 'jazz'), - (969125, '0xfa80a3dfcd094fdf2f10ab652214ff19ba9ac67d', 0, 1, '2024-05-07 09:45:35+00', 0, 12, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 2046, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 1999, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/teamvisionary/logic-young-jesus?si=bee26908fc684279a7525b4c68049e74&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (969105, '0x80979c88e16346004f8a57c9c6de79e55a49d4e5', 0, 1, '2024-05-07 09:45:50+00', 0, 2, '{"fid": 419208, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e1f0aa1-0698-411b-9aec-28063cbda400/rectcrop3", "profile": {"bio": {"text": "I''m a student studying Agriculture Insurance Claim Adjuster.\n#손해평가사 #자격증", "mentioned_profiles": []}}, "username": "zinzerman01", "power_badge": false, "display_name": "🎩바른생활🍖🔥", "active_status": "inactive", "verifications": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "follower_count": 1226, "custody_address": "0x15ebb26688c1f4090956849424ece928f04f7b79", "following_count": 1237, "verified_addresses": {"eth_addresses": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8Wopj\"}"}', 'sonata'), - (973109, '0x706211eb804d4363b5064037d8aa76081ce2d15e', 0, 1, '2024-05-07 10:13:13+00', 0, 0, '{"fid": 474187, "object": "user", "pfp_url": "https://i.imgur.com/hNd68be.jpg", "profile": {"bio": {"text": "🇰🇷F4F 💜짤 맛집💜 리액션 200%🔥 Degen 홍보 담당관🫡", "mentioned_profiles": []}}, "username": "dr-yohan", "power_badge": false, "display_name": "RUNUP", "active_status": "inactive", "verifications": ["0x4eda9a49176d0a121aaa7e7e92355466e69a385f"], "follower_count": 2617, "custody_address": "0xa8ff252adac214873040caf1f3dc13af5b91551b", "following_count": 2578, "verified_addresses": {"eth_addresses": ["0x4eda9a49176d0a121aaa7e7e92355466e69a385f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HqxMKh9gVarKKRPF8\"}"}', NULL), - (969100, '0x74c09a1875dc94aa07545b3dba33176e7d492e8b', 0, 1, '2024-05-07 09:45:40+00', 0, 20, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2619, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2172, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vVB5DT955CBLkdgb9\"}"}', 'sonata'), - (1036633, '0xc3163c5089ed57f2a70455be25a2e6f7540a6a22', 0, 1, '2024-05-07 13:34:48+00', 0, 1, '{"fid": 399395, "object": "user", "pfp_url": "https://i.imgur.com/NDwFHcw.gif", "profile": {"bio": {"text": "始めたばかりです😊画像作りできます✨\n楽しいこと大好き❤みんなでわちゃわちゃしましょ😆\nhttps://twitter.com/Mamy_mamy3", "mentioned_profiles": []}}, "username": "mamy", "power_badge": false, "display_name": "mamy", "active_status": "inactive", "verifications": ["0x41baa8c61f166bbfe4be011436c18d6e8e46fb18"], "follower_count": 696, "custody_address": "0xea8078abbbc4f2aba53603f0c81e1d18fc3ed7b2", "following_count": 528, "verified_addresses": {"eth_addresses": ["0x41baa8c61f166bbfe4be011436c18d6e8e46fb18"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gESGQYXM7PnEpBqp7\"}"}', 'japan777iine'), - (975741, '0x292ea164b74daf3766dff6599d20c23232384bf8', 0, 1, '2024-05-07 10:24:13+00', 0, 1, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 922, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1043, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/skrillex/avicii-levels-skrillex-remix?si=cd0cea2c7afd4c41a60490950a057ac1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (973110, '0x77617a5b24f4859511dd825c7f23edee4abd6a5c', 0, 1, '2024-05-07 10:12:38+00', 0, 0, '{"fid": 376144, "object": "user", "pfp_url": "https://arm22i2isixk3waiiw53vakcpyofspalzlxpjgleh5gmhohrbqbq.arweave.net/BFmtI0iSLq3YCEW7uoFCfhxZPAvK7vSZZD9Mw7jxDAM/", "profile": {"bio": {"text": "love crypto \n\nhard worker \n\nnever give up", "mentioned_profiles": []}}, "username": "pouryagholami", "power_badge": false, "display_name": "pourya gholami🎩👑", "active_status": "inactive", "verifications": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "follower_count": 1116, "custody_address": "0x45912cea45d90d71a0808b305d7edac73985743b", "following_count": 1964, "verified_addresses": {"eth_addresses": ["0xd8df1ae502940bd31413a8d10965f09ac81d1206"], "sol_addresses": ["EysELknAFZbd8GoKsnYLei4DWyZojpVqEPg6fxtfX196"]}}', '{"{\"url\":\"https://soundcloud.com/rap_farsi_2024/catchybeatz-x-sajad-shahi-haydeh?ref=clipboard&p=i&c=0&si=E69F5EBDF3DC40849333789F95721AD3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (969433, '0x94ca4b126960b546d2bf687152de740eba41e698', 0, 1, '2024-05-07 09:48:54+00', 0, 3, '{"fid": 376167, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/34b0ca74-0495-43f4-3439-786abc38cd00/rectcrop3", "profile": {"bio": {"text": "don''t be perfect be real🕊", "mentioned_profiles": []}}, "username": "haniehniku", "power_badge": false, "display_name": "Haniehnik 🎩🔵🔮", "active_status": "inactive", "verifications": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "follower_count": 692, "custody_address": "0x69ae56667bd5cb07dac272722c772d2d1b5c965d", "following_count": 698, "verified_addresses": {"eth_addresses": ["0x3cac018d69f54e4f0361a0e84354ffee51549f67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EUJfa\"}"}', 'sonata'), - (1173214, '0x2bdeafd6c37fdc0a9d660a65a78ff1fa85531036', 0, 1, '2024-05-15 13:00:24+00', 0, 43, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. ", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 6634, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2494, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4FoyQCtyoDIbH6OwqLe3hZ\"}"}', 'rock'), - (986469, '0xddf3685355cd7eaa10c8dea86ab4c833c1cc75d8', 0, 1, '2024-05-07 11:05:08+00', 0, 4, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1388, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2MmgGuQzr0kkiA04lMdPXW?si=BX85wF4gSxuRB7cDe85xHQ&context=spotify%3Aplaylist%3A37i9dQZF1EIUXyAW29ti6W\"}"}', NULL), - (932969, '0x11d2829b81b92e5a0b2ce14a5987f94e684f17d9', 0, 1, '2024-05-07 08:11:41+00', 0, 2, '{"fid": 506789, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/361b6d66-0316-4358-fdca-48a11516ec00/rectcrop3", "profile": {"bio": {"text": "a professional inconvenience", "mentioned_profiles": []}}, "username": "!506789", "power_badge": false, "display_name": "opsa", "active_status": "inactive", "verifications": ["0x586d40e35ea1f08b63a46158eaf12d50e427fec1"], "follower_count": 653, "custody_address": "0xb5965cfff5f58538c6e8de4ba729570b7c31c6fa", "following_count": 868, "verified_addresses": {"eth_addresses": ["0x586d40e35ea1f08b63a46158eaf12d50e427fec1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/c0nyeub0me/hou-lai-rene-liu-luu-nhuoc-anh?si=b4b016e7cac149019711dfb8236278ef&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1160596, '0x38115d6d655eb89d96548a5812d74d71fd1840e7', 0, 1, '2024-05-08 21:16:24+00', 0, 0, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3AUdCHWEMoLcrwzsHLbkT7?si=09733b7299664925\"}"}', NULL), - (969441, '0x748b3facb91ebc3e1702463d06c17abf4cb9b1a6', 0, 1, '2024-05-07 09:48:52+00', 0, 0, '{"fid": 394049, "object": "user", "pfp_url": "https://i.imgur.com/sgE4Ks2.jpg", "profile": {"bio": {"text": "journey through the Abstract and Geometric world!\n\nhttp://linktr.ee/mohi.1\nhttps://seize.io/mohimohi", "mentioned_profiles": []}}, "username": "mohimohi2121", "power_badge": false, "display_name": "Mohi🪁", "active_status": "inactive", "verifications": ["0x6eb6e110b902c101f9ebef428fad9a29c89664d8"], "follower_count": 347, "custody_address": "0x03148bb4cae69e66ae74511b4366262528617c83", "following_count": 415, "verified_addresses": {"eth_addresses": ["0x6eb6e110b902c101f9ebef428fad9a29c89664d8"], "sol_addresses": ["6mCbhxE2kBnrRiHBqqiELY9nXbsChrCEVm31akCZaKJz"]}}', '{"{\"url\":\"https://on.soundcloud.com/MR7Y2\"}"}', NULL), - (983702, '0xdf6de1a9b2345925b5b6ed843e203030b6ff1085', 0, 1, '2024-05-07 10:58:50+00', 0, 4, '{"fid": 458887, "object": "user", "pfp_url": "https://i.imgur.com/eXlPaos.jpg", "profile": {"bio": {"text": "Interested in cooking, nature and cryptocurrency", "mentioned_profiles": []}}, "username": "miss-venda", "power_badge": false, "display_name": "VenDaa", "active_status": "inactive", "verifications": ["0x0b7bce9752edea79ece76a8438e0473ecfb94a0e"], "follower_count": 1581, "custody_address": "0xcd9b5225b88b4a078cd6ba4dbbf0a16e1ce8821b", "following_count": 2219, "verified_addresses": {"eth_addresses": ["0x0b7bce9752edea79ece76a8438e0473ecfb94a0e"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/enriqueiglesias/bailando-english-version\"}"}', 'sonata'), - (972342, '0x3a4ea5b81fba283d13086b2e07bf628087d163dc', 0, 1, '2024-05-07 10:09:52+00', 0, 0, '{"fid": 435809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a0c8f29-7abc-4cd6-21b5-d310b4d74500/rectcrop3", "profile": {"bio": {"text": "Gamer \nAnime lover", "mentioned_profiles": []}}, "username": "metanol", "power_badge": false, "display_name": "Mosi ", "active_status": "inactive", "verifications": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "follower_count": 623, "custody_address": "0x36edb1c0063e62765d4a75c95b0617cfc7f7a7db", "following_count": 642, "verified_addresses": {"eth_addresses": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "sol_addresses": ["8xhkzggBcy8uTA6ZhkWkoT1M5EbCHJuyKrQqW2QceyHN"]}}', '{"{\"url\":\"https://soundcloud.com/music-o-267094832/terrence-parker-somethin-there?in=sc-playlists-de/sets/workout-house-grooves&si=2a05bd3ebe9742c880d2e1647f3550e0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173216, '0xac802af4b10e2a719c48d62deb53c4e1062b6800', 0, 1, '2024-05-15 13:14:13+00', 0, 3, '{"fid": 10694, "object": "user", "pfp_url": "https://i.imgur.com/ECKl5Wu.gif", "profile": {"bio": {"text": "conversational liquidity provider || writing at: https://paragraph.xyz/@thearcadia || curating vibes over at /football", "mentioned_profiles": []}}, "username": "chukwukaosakwe", "power_badge": true, "display_name": "Chukwuka Osakwe", "active_status": "inactive", "verifications": ["0x0a61e9065219a1b84a9fa1b67482c485c39c51de"], "follower_count": 1756, "custody_address": "0x63c0df9ccb039241bf53baac41cc1d281ef95b63", "following_count": 598, "verified_addresses": {"eth_addresses": ["0x0a61e9065219a1b84a9fa1b67482c485c39c51de"], "sol_addresses": ["6zDfzrCSAk5UwYCsvHoRq3f7ff1kSXbUFJfRmzh5MUWX"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a5ba423-b10b-4fcb-fbd7-b5731b3cff00/original\"}","{\"url\":\"https://open.spotify.com/track/3mARtPEP8hi1LzMctEwVN4?si=3aecdd8cefa4472f\"}"}', NULL), - (969793, '0x41836a23aeec9b8384f044dc061ae755c03942d7', 0, 1, '2024-05-07 09:51:54+00', 0, 2, '{"fid": 459348, "object": "user", "pfp_url": "https://i.imgur.com/85OfKRz.jpg", "profile": {"bio": {"text": "I am libra", "mentioned_profiles": []}}, "username": "samaneh8993", "power_badge": false, "display_name": "Samaneh🎩🍗🔵🍖", "active_status": "inactive", "verifications": ["0x581eeeadd14da757ab8ab106eda2b25e9aa7c7d2"], "follower_count": 681, "custody_address": "0xbea4e2ee0da11c09965d78ddad47c8ffd19a8d51", "following_count": 830, "verified_addresses": {"eth_addresses": ["0x581eeeadd14da757ab8ab106eda2b25e9aa7c7d2"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/octobersveryown/drake-push-ups\"}"}', NULL), - (978833, '0x3ff3ddbd91312e33bdbca15259cbe5d8b90a141f', 0, 1, '2024-05-07 10:37:57+00', 0, 3, '{"fid": 400888, "object": "user", "pfp_url": "https://i.imgur.com/QpkYpS1.jpg", "profile": {"bio": {"text": "Hi, I want to introduce you to delicious food and beautiful scenery&AlfaFrens", "mentioned_profiles": []}}, "username": "ncsoft", "power_badge": false, "display_name": "noisysky🎩🔄", "active_status": "inactive", "verifications": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "follower_count": 4647, "custody_address": "0x9f10badebd3c0a615dff74a777d5cfff66e08831", "following_count": 4622, "verified_addresses": {"eth_addresses": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "sol_addresses": ["FTa1LfZzaFzEz79ne72Qrw51tQnX2dkwGJbiV3WgtP6S"]}}', '{"{\"url\":\"https://soundcloud.com/nakyong0202/drunken-tiger?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (969459, '0x309b20158cae04b3b482ec7fcf416b547856f672', 0, 1, '2024-05-07 09:49:02+00', 0, 2, '{"fid": 500216, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2150447d-3010-4ac1-d0af-80b82f949300/rectcrop3", "profile": {"bio": {"text": "$Degen 1$ 🌙\nFollow me :)\nhttps://zora.co/@bitsla", "mentioned_profiles": []}}, "username": "bitsla0928", "power_badge": false, "display_name": "SLA🔥", "active_status": "inactive", "verifications": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "follower_count": 922, "custody_address": "0xa8a47f59700d7727ffd26ae2aaccc37239e50e94", "following_count": 976, "verified_addresses": {"eth_addresses": ["0xed448471bb1eb65a911adc18e9f3737f6fafd2e6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-704368666/prod-pateco-m4a?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1022655, '0x5eeb5c070c514fb21ebe988b286ff639d88a6699', 0, 1, '2024-05-07 12:58:21+00', 0, 0, '{"fid": 323298, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/285721b8-df9b-4bde-3ecb-44b825672900/rectcrop3", "profile": {"bio": {"text": "If you follow me, I''ll follow you back!\nんおおフォローしてクレメンス!ちゃんとお返しします!\nAirdrop Kudasai\nおかねください", "mentioned_profiles": []}}, "username": "omaccha", "power_badge": false, "display_name": "Omaccha🎩🍖🧀🔮", "active_status": "inactive", "verifications": ["0x100baf288ee043b941f7508ee0da3914d71f9d4d", "0xd3baac4a31e7cb6c6f37267b7545f75d6728a18d"], "follower_count": 773, "custody_address": "0x9d7e0241255ffac5ed370897cecb7a7774720d05", "following_count": 1578, "verified_addresses": {"eth_addresses": ["0x100baf288ee043b941f7508ee0da3914d71f9d4d", "0xd3baac4a31e7cb6c6f37267b7545f75d6728a18d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LyY7LqtMp837mRJN9\"}"}', NULL), - (934767, '0x1447ea9e5d6d1d3a19d067bbcfc5530e62b2f6ec', 0, 1, '2024-05-07 08:18:44+00', 0, 0, '{"fid": 434644, "object": "user", "pfp_url": "https://i.imgur.com/8FCNKzD.jpg", "profile": {"bio": {"text": "I''m a crypto lover // 함께 소통해요😍", "mentioned_profiles": []}}, "username": "malrangcow", "power_badge": false, "display_name": "MalrangCow🎩🍖", "active_status": "inactive", "verifications": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "follower_count": 2957, "custody_address": "0xa5987cbd36cab6619ad1b4c611858193f63061a6", "following_count": 2985, "verified_addresses": {"eth_addresses": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xWNbakmNB7tNwyTp9\"}"}', 'sonata'), - (969477, '0xc5ca38e9936749a2bc2b5403a79dcd144bcf75b8', 0, 1, '2024-05-07 09:49:16+00', 10, 3, '{"fid": 411804, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bc16fe2-19df-4232-7e22-e49900d54d00/original", "profile": {"bio": {"text": "Korean💕🎩🍖 \n재미있게 살아요~💕💕", "mentioned_profiles": []}}, "username": "stomach", "power_badge": false, "display_name": "Stomach🎩🍖🔮", "active_status": "inactive", "verifications": ["0x2cadb7fb5fc5eadfb167e8390b7aac15065b9317"], "follower_count": 2103, "custody_address": "0x8ec351fea7290d7544f7c4d0cc2e4389c380147d", "following_count": 1911, "verified_addresses": {"eth_addresses": ["0x2cadb7fb5fc5eadfb167e8390b7aac15065b9317"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FMuFFqWdHNhTGhjz6\"}"}', NULL), - (975883, '0xf6ef90f5a002dc8b3fb953e49477cb7abdea861b', 0, 1, '2024-05-07 10:25:14+00', 0, 2, '{"fid": 448704, "object": "user", "pfp_url": "https://i.imgur.com/7m1dvgv.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "shole", "power_badge": false, "display_name": "Sholepad", "active_status": "inactive", "verifications": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "follower_count": 299, "custody_address": "0x81970265d0fce1f2340d7f0bee06bf4d74bb9458", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kDMUZ\"}"}', 'sonata'), - (1120264, '0x3d1ddde22ba7200b36c9aaffc847503f5d85a9f6', 0, 1, '2024-05-07 17:52:28+00', 0, 0, '{"fid": 475244, "object": "user", "pfp_url": "https://i.imgur.com/aQJlstV.jpg", "profile": {"bio": {"text": "I am an electrical engineer, and I work with electric vehicles.", "mentioned_profiles": []}}, "username": "miskaaltonen", "power_badge": false, "display_name": "Miska Aaltonen", "active_status": "inactive", "verifications": ["0xd59712dca7127a91ab99ca5136fee56b4cb832f7"], "follower_count": 3, "custody_address": "0xd91699d57b19312aed3abc42cf7379cf12d8e090", "following_count": 74, "verified_addresses": {"eth_addresses": ["0xd59712dca7127a91ab99ca5136fee56b4cb832f7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GE8VLnvrBqAHtmUF9\"}"}', NULL), - (933894, '0x67ffcde7b973c7fcd1137829094b4b06b97f3e12', 0, 1, '2024-05-07 08:15:33+00', 0, 0, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4JK1kDUdH9RTBQrrSO1QfR?si=49d0c19cb3384f27\"}"}', NULL), - (992300, '0xfe833b713558cf9c582dbd90545618d28fe35e89', 0, 1, '2024-05-07 11:30:45+00', 0, 0, '{"fid": 368568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d33d091-bad3-4c30-19fd-971586cb4700/rectcrop3", "profile": {"bio": {"text": "bassist.project manager.\n日本向け自由チャンネル\n/japan-creative\n\ndrakula\nhttps://drakula.app/post/c58c3e36-5a5f-43b\n\nフリーランス\n基本情報技術者 oracle BLONZE \n2級管工事施工管理技士 \n英検5級()", "mentioned_profiles": []}}, "username": "pk0730", "power_badge": false, "display_name": "pk0730", "active_status": "inactive", "verifications": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "follower_count": 691, "custody_address": "0xb576a4a246bbe2851828c614c00cf781d0d908da", "following_count": 770, "verified_addresses": {"eth_addresses": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "sol_addresses": ["HYfLsMcbTtxQeaZ4QQMzvDFNWooVCfo3aXbdLwuDqou8"]}}', '{"{\"url\":\"https://on.soundcloud.com/5s1y9zdvWgo4Y3Ar8\"}"}', NULL), - (987230, '0x07797fb57b44601a23fc8633265c74e18e71fc54', 0, 1, '2024-05-07 11:11:15+00', 0, 2, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 671, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 413, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rnjft\"}"}', 'sonata'), - (957048, '0xda5278f27a1da29f10363f4a3f0347dac69c3fae', 0, 1, '2024-05-07 09:07:57+00', 0, 0, '{"fid": 505556, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8290c871-b580-42d9-4083-1b5c2adcd100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "pivot", "power_badge": false, "display_name": "pivot", "active_status": "inactive", "verifications": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "follower_count": 922, "custody_address": "0x6c1d49afdb334e1728a0193198584fff3012e63b", "following_count": 805, "verified_addresses": {"eth_addresses": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/itshamsandwichtime/takemeaway?si=9483904d950046738a986dda06682a1b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (934781, '0x887792416420d3977b895bb6119f5638e081dae5', 0, 1, '2024-05-07 08:17:50+00', 0, 0, '{"fid": 421100, "object": "user", "pfp_url": "https://i.imgur.com/2QEH8Mn.jpg", "profile": {"bio": {"text": "I loved tried and mining", "mentioned_profiles": []}}, "username": "rasoul128482", "power_badge": false, "display_name": "RasoulRahimi🎩🍖", "active_status": "inactive", "verifications": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "follower_count": 531, "custody_address": "0x09371cab91c71adaad513b1b0a0284e67f1012bb", "following_count": 589, "verified_addresses": {"eth_addresses": ["0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9kwmrXk1DZ5VAPbp7\"}"}', NULL), - (991732, '0x834d0fdba9b44447cfd4dc0764b1c3dd04423209', 0, 1, '2024-05-07 11:27:55+00', 0, 2, '{"fid": 489714, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88fca2db-0af7-4f3c-af8d-b27617393800/rectcrop3", "profile": {"bio": {"text": "쿼카에용 소통해용 반가워용 쿼카카카카ㅏ캌", "mentioned_profiles": []}}, "username": "bbluedragon", "power_badge": false, "display_name": "쿼카", "active_status": "inactive", "verifications": ["0x25011716acbbd3519a5970ca88a81b343e08904c"], "follower_count": 1339, "custody_address": "0xe1c10b2c41218ac9d434eb2ecf9a04593d91b47c", "following_count": 1400, "verified_addresses": {"eth_addresses": ["0x25011716acbbd3519a5970ca88a81b343e08904c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8Zq6y2TpVhzRnE8R9\"}"}', 'sonata'), - (987247, '0x4b6cfe4352c814f541944c1b3f01239dea5b199e', 0, 1, '2024-05-07 11:10:50+00', 0, 0, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 322, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 542, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PZVm1\"}"}', 'sonata'), - (934807, '0x1810ec3d2e8885f5f15b5494f7212c8f9489b10b', 0, 1, '2024-05-07 08:18:42+00', 0, 0, '{"fid": 472831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6047f98a-3794-4b65-5525-ae5410183600/rectcrop3", "profile": {"bio": {"text": "World literature 📚 ✒️\nLiving in the light", "mentioned_profiles": []}}, "username": "goldmanbank", "power_badge": false, "display_name": "Ehsan🍖🎩🏦", "active_status": "inactive", "verifications": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "follower_count": 1222, "custody_address": "0x66f337aef04da6aa0c022a6041a02c5034fed87c", "following_count": 1685, "verified_addresses": {"eth_addresses": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "sol_addresses": ["6LmaJFGTnc8YLUTzjw3ys4miTmzaN9gpz64hmMhfSXAm"]}}', '{"{\"url\":\"Listen to I, Pet Goat by Khurtsidze on #SoundCloud https://on.soundcloud.com/tA9C8\"}"}', NULL), - (934811, '0x60b17c029afc16740a1d9d7e562cbb2ec4783ed7', 0, 1, '2024-05-07 08:18:33+00', 0, 0, '{"fid": 439083, "object": "user", "pfp_url": "https://i.imgur.com/kQR4keG.jpg", "profile": {"bio": {"text": "Everything is made of energy and consciousness..🧘‍♀️🪷💫", "mentioned_profiles": []}}, "username": "parisss", "power_badge": false, "display_name": "Parisash", "active_status": "inactive", "verifications": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "follower_count": 1076, "custody_address": "0x42751c21c4721d754a8be4b50390e988e30a33ec", "following_count": 1198, "verified_addresses": {"eth_addresses": ["0x7fb9d4474811ef10142de150a61db7f4319bf9b1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tonibraxton/un-break-my-heart?si=5d902779ed5647bdb7f2f77aae8792b4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (994799, '0xec0c9405f46e013a84be8f90ff9c3c140191d9ae', 0, 1, '2024-05-07 11:41:08+00', 0, 0, '{"fid": 503602, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1631d975-bacc-4b8d-0ad5-6443ddc53a00/rectcrop3", "profile": {"bio": {"text": "Catch the trader\n(선수만잡았다)", "mentioned_profiles": []}}, "username": "stoncold", "power_badge": false, "display_name": "stonecold", "active_status": "inactive", "verifications": ["0xdd7bde3072638c853b65b33314e4f5e857ed9e42"], "follower_count": 600, "custody_address": "0xf8d8f8fd3e8add2142b6d68fd05098ac11a02579", "following_count": 660, "verified_addresses": {"eth_addresses": ["0xdd7bde3072638c853b65b33314e4f5e857ed9e42"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mattixx/too-sweet-x-innerbloom-mattix-mashup?si=7a1ee55679f54d1f991c62201f9ed4ca&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173210, '0xf598dc31efc1c5898e6d165707fce0446baee8a4', 0, 1, '2024-05-15 11:22:03+00', 0, 3, '{"fid": 355110, "object": "user", "pfp_url": "https://i.imgur.com/CvSnqtY.jpg", "profile": {"bio": {"text": "/veg no rules art channel founder\n/nomadicframe $NOM team\n/dog Own the Doge,\nNFT creator & collector\npfp Midnight by @nft-murder\n\nWutang 🙌", "mentioned_profiles": []}}, "username": "midnite-marauder", "power_badge": true, "display_name": "Midnight Marauder 🎩💎🙌", "active_status": "inactive", "verifications": ["0xc971c4e2c7c2eac9a8358f6b9c3b923a93009f8f"], "follower_count": 1108, "custody_address": "0xe056def07bd7365655d816b2d0b4ac577a16f242", "following_count": 1473, "verified_addresses": {"eth_addresses": ["0xc971c4e2c7c2eac9a8358f6b9c3b923a93009f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6QJA2YqxsZk4pKe1qxA814?si=pBrgkW4iQrS28lZU9gmzeQ&context=spotify%3Atrack%3A3LPhvfABxv4fDnVITtFdHi\"}"}', 'veg'), - (973426, '0xdbe7ad69370ed1383ce9d08949d00aae9859541e', 0, 1, '2024-05-07 10:15:45+00', 0, 0, '{"fid": 427626, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQP55ePngG81GsGs5wSmgfZXbgvyix67bS2d2rSKcHrfa?filename=_20240414_185305.jpeg", "profile": {"bio": {"text": "Have a nice day🍓🍖☕️\n#프로소통러\n#한화이글스 보살팬 너구리\n#워프캐스트사랑해요\nYou''ll be happy soon", "mentioned_profiles": []}}, "username": "top01", "power_badge": false, "display_name": "Raccoonchoi🌈🍓🍖", "active_status": "inactive", "verifications": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "follower_count": 2773, "custody_address": "0xb2af8a3e110e595bb5027e832a7e8d0a396b72fa", "following_count": 2352, "verified_addresses": {"eth_addresses": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 뉴진스~버블껌 by cyyy on #SoundCloud https://on.soundcloud.com/4hmZj\"}"}', NULL), - (969790, '0x579ee5dbf635321f3565a3ea291781b4ecc9873d', 0, 1, '2024-05-07 09:52:07+00', 0, 0, '{"fid": 435809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a0c8f29-7abc-4cd6-21b5-d310b4d74500/rectcrop3", "profile": {"bio": {"text": "Gamer \nAnime lover", "mentioned_profiles": []}}, "username": "metanol", "power_badge": false, "display_name": "Mosi ", "active_status": "inactive", "verifications": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "follower_count": 618, "custody_address": "0x36edb1c0063e62765d4a75c95b0617cfc7f7a7db", "following_count": 641, "verified_addresses": {"eth_addresses": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "sol_addresses": ["8xhkzggBcy8uTA6ZhkWkoT1M5EbCHJuyKrQqW2QceyHN"]}}', '{"{\"url\":\"https://soundcloud.com/music-o-267094832/terrence-parker-somethin-there?in=sc-playlists-de/sets/workout-house-grooves&si=f2747adf06934909ac554e486776a5bc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1155232, '0x1ef34d17bd9b67b228e178c7d96ade91c3eee24e', 0, 1, '2024-05-07 20:54:07+00', 0, 4, '{"fid": 504319, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d507508-f4b2-404e-8c94-ac8c29b01100/rectcrop3", "profile": {"bio": {"text": "I’m just an ordinary person who likes food, travel and crypto 😀", "mentioned_profiles": []}}, "username": "jaydenoh", "power_badge": false, "display_name": "Jayden", "active_status": "inactive", "verifications": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "follower_count": 467, "custody_address": "0xa3afaf513eeed17783dfb7342f138f8e54fa5644", "following_count": 507, "verified_addresses": {"eth_addresses": ["0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/L2cBHKXZ6fCEhN1g6\"}"}', 'sonata'), - (1022661, '0x73695e359a77d8ae74b5700dcc508259cf0a5188', 0, 1, '2024-05-07 12:58:20+00', 0, 2, '{"fid": 508994, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88e8affe-168c-4a7c-af54-a1639826d600/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!508994", "power_badge": false, "display_name": "Roland🎩⛓️", "active_status": "inactive", "verifications": ["0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe", "0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe"], "follower_count": 540, "custody_address": "0x27d5137c54adb3b215bd01096551972cd3c0a408", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe", "0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aW6DFK7ix8NdSsJb7\"}"}', 'sonata'), - (1145521, '0x4ef2f1cf12c6f191115aa159aba8b39e91afbe88', 0, 1, '2024-05-07 20:10:04+00', 0, 0, '{"fid": 326415, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1687c91-1ecd-4d5b-c89b-faa5c76a8a00/original", "profile": {"bio": {"text": "I make psychedelic music and art as Infinati. Sound and soul architect.\nhttps://infinati.wtf", "mentioned_profiles": []}}, "username": "infinati", "power_badge": false, "display_name": "Infinati", "active_status": "inactive", "verifications": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "follower_count": 69, "custody_address": "0xba3bec28da1d9eb0f1a17203a3fb9d607258cf18", "following_count": 210, "verified_addresses": {"eth_addresses": ["0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/infinati/circuit\"}"}', NULL), - (979126, '0xa37a3392f182bcb530fdfb98c3ddca184fc48270', 0, 1, '2024-05-07 10:42:13+00', 0, 25, '{"fid": 329134, "object": "user", "pfp_url": "https://i.imgur.com/KxtKnVU.jpg", "profile": {"bio": {"text": "→𝐷𝑜𝑛''𝑡 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝐷𝑟𝑒𝑎𝑚 𝐶𝑎𝑙𝑙 𝐼𝑡 𝑎 𝑃𝑙𝑎𝑛 !🌱♠️", "mentioned_profiles": []}}, "username": "artam", "power_badge": false, "display_name": "Artam | 🎩🔵🔄 🎩🍗", "active_status": "inactive", "verifications": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "follower_count": 1259, "custody_address": "0xdc6c93780b9fe172e234fea6ec1713385a13bc97", "following_count": 1025, "verified_addresses": {"eth_addresses": ["0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e"], "sol_addresses": ["GwSpiiX8r44NWnaUGAAoSxjxHWHs78Hjx65MsX4HWDAE"]}}', '{"{\"url\":\"https://open.spotify.com/track/6ImYcmDP7WamwVBbZeHUTy?si=3082f1db7b264c30\"}"}', NULL), - (1173280, '0x1746daecced5bf31a32cbf047e9cda1cc7f1e7c7', 0, 1, '2024-05-15 17:15:58+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 960, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Ezmm08Oy4772SkEoC18Kt?si=fGUe6zZGR9aIarzJ03Gcvg\"}"}', NULL), - (957421, '0x5d45f2b8bdd80c2b3a4d2f44c87d8938fcdbf9b1', 0, 1, '2024-05-07 09:09:11+00', 0, 0, '{"fid": 393353, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieiht5tfykihxgpv465czxlg3nevhqa4ob2akibaf5bow7x2kyzs4", "profile": {"bio": {"text": "easy come easy go.", "mentioned_profiles": []}}, "username": "tayama", "power_badge": false, "display_name": "Taya🍖🔵🎩🦄🧀🍕🌈", "active_status": "inactive", "verifications": ["0x340ec0b1d3b8a432a4d59778100be6ae52cdc920"], "follower_count": 729, "custody_address": "0x8a92ffbef27403d6877fe140a39c629a1af1113c", "following_count": 463, "verified_addresses": {"eth_addresses": ["0x340ec0b1d3b8a432a4d59778100be6ae52cdc920"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/iu-love-wins-all?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (934816, '0x3bbe5f4eff71dfd124f20753d2c5fd71e43b6744', 0, 1, '2024-05-07 08:18:15+00', 0, 0, '{"fid": 406278, "object": "user", "pfp_url": "https://i.imgur.com/2gFuK2z.jpg", "profile": {"bio": {"text": "Degen $1 🚀🚀", "mentioned_profiles": []}}, "username": "flutter", "power_badge": false, "display_name": "Gigantia ❁", "active_status": "inactive", "verifications": ["0x8f00e451816f6af313c4827934566996e8df4e8d"], "follower_count": 1329, "custody_address": "0xfa465dba5d5cf87e3c6b704848fb38d2ecef80f0", "following_count": 1290, "verified_addresses": {"eth_addresses": ["0x8f00e451816f6af313c4827934566996e8df4e8d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T9DBF8hr5SttUrEx9\"}"}', NULL), - (1022656, '0xddd9935a34eaff536e687955cf1b9fd2e3f0923a', 0, 1, '2024-05-07 12:58:25+00', 0, 0, '{"fid": 385271, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6688aa1f-6f77-4662-d753-b22d86570000/rectcrop3", "profile": {"bio": {"text": "I like sushi", "mentioned_profiles": []}}, "username": "twelvexdozen", "power_badge": false, "display_name": "coma🔵🍕🎩🔮🧀🐦🍖", "active_status": "inactive", "verifications": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "follower_count": 178, "custody_address": "0xdc9db47747079e5a677f0f6f8924e03fc0f96f2a", "following_count": 549, "verified_addresses": {"eth_addresses": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "sol_addresses": ["FWqT3hZUDWhcZoa9E1oz8NXEF2JDguEybPSQiNS6fzNH"]}}', '{"{\"url\":\"https://on.soundcloud.com/UpoyoFaHGSSSjXwdA\"}"}', NULL), - (877010, '0x7d0c99486f5f7b42a878768316e8782b471c16c1', 0, 1, '2024-05-07 06:05:20+00', 0, 7, '{"fid": 502617, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bcba4a00-c896-455a-98dc-c7e23ab16600/original", "profile": {"bio": {"text": "i love photography, flowers, and good conversations. let''s chat.", "mentioned_profiles": []}}, "username": "hi-daisy", "power_badge": false, "display_name": "shasta daisy", "active_status": "inactive", "verifications": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "follower_count": 696, "custody_address": "0x131503a8140089afdcd1bc4b2ff0a4ef897c086f", "following_count": 653, "verified_addresses": {"eth_addresses": ["0x42ab397b9145eb55e78347088beb42422bba0ab7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6vMbjKnbITQmJI5ax9qVrh?si=d65444131a7640f0\"}"}', 'sonata'), - (969794, '0xdce7893962fdd158f25bf5e62d9db0f99b024804', 0, 1, '2024-05-07 09:52:05+00', 0, 3, '{"fid": 329190, "object": "user", "pfp_url": "https://i.imgur.com/h3o4Ntz.jpg", "profile": {"bio": {"text": "Nice to meet you. thank you.", "mentioned_profiles": []}}, "username": "komasugi", "power_badge": false, "display_name": "komasugi🎩🍖", "active_status": "inactive", "verifications": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "follower_count": 1235, "custody_address": "0x88ce15b0d31e50d0e3fcc1e64a782c2f6b87c3e6", "following_count": 1709, "verified_addresses": {"eth_addresses": ["0xb49adf34bb4dcf7da99b611de0045c480bd90474"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musictop_for_android/wnhi61mzjy68?si=594ee5eaf9154a53a366564781b15ef6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (976861, '0xbc1d853d4b0e4860eb2c4731fd40032a854a475e', 0, 1, '2024-05-07 10:29:16+00', 0, 0, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1473, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1213, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/second-copy/yorushika-thats-why-i-gave-up-on-music?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (933481, '0x247496848364778c573dc24b1febee0720ab9d09', 0, 1, '2024-05-07 08:13:43+00', 0, 0, '{"fid": 442334, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigu3bpirz6npfu5dejoeiroo3q6nk6m4twyqg5z4i66w3dmrehxoe", "profile": {"bio": {"text": "Just starting with $DEGEN chain.", "mentioned_profiles": []}}, "username": "bernardis", "power_badge": true, "display_name": "Bernardo", "active_status": "inactive", "verifications": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "follower_count": 224, "custody_address": "0xf91d574647d6214cf8b4db249ed48f013baf5bce", "following_count": 274, "verified_addresses": {"eth_addresses": ["0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87"], "sol_addresses": ["C58ejksrZv6V9W5kdyfqQ7mzwqEG9ozVJKG3kYJ6VzER"]}}', '{"{\"url\":\"https://soundcloud.com/leagueoflegends/legends-never-die\"}"}', NULL), - (931146, '0xf330633f4d6446a31b7449d1f085be2f6c6e6978', 0, 1, '2024-05-07 08:09:17+00', 0, 0, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 817, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 별의 하모니 + Discord - QWER by gaeun kim on #SoundCloud https://on.soundcloud.com/Sb2Dc\"}"}', NULL), - (931183, '0x2fd8adc046d23fdfc08aa008e1e3db121ee48112', 0, 1, '2024-05-07 08:10:03+00', 0, 0, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 817, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 윈터 - 고민중독(QWER) AI cover by DJ 겨울감성 [AI 윈터 WINTER] on #SoundCloud https://on.soundcloud.com/3dQQH\"}"}', NULL), - (957422, '0xa9dcc6a395c2ff44eb77e4987e0e4e9bdf177611', 0, 1, '2024-05-07 09:08:49+00', 0, 0, '{"fid": 442324, "object": "user", "pfp_url": "https://i.imgur.com/flYtm8L.jpg", "profile": {"bio": {"text": "NOCTURNAL / AIRDROP HUNTER / FREELANCER / CRYPTO ENTHUSIAST", "mentioned_profiles": []}}, "username": "sogiii", "power_badge": false, "display_name": "sogiii.eth🎩", "active_status": "inactive", "verifications": ["0xda04d0354645060d36c99cf7a7da973179d82979"], "follower_count": 244, "custody_address": "0x134ec3b4b70eb98d8a5dde4c3cef9552f3e44ed1", "following_count": 418, "verified_addresses": {"eth_addresses": ["0xda04d0354645060d36c99cf7a7da973179d82979"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yoboiakbar/flow-g-rapstar?si=2f2e2a5c03884fed963bcb896734bde8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (970452, '0x987c0751b21779240cd8aa340a496cb0eb62856f', 0, 1, '2024-05-07 09:59:20+00', 0, 0, '{"fid": 516812, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bd0c9bf6-57d6-413d-f419-f325db504200/rectcrop3", "profile": {"bio": {"text": "DJ / DRONE / Single speed Bike\nDJしたりキャンプしてます\n\nMixcloud:https://www.mixcloud.com/djinnhaq/\nX:https://twitter.com/illegal1312", "mentioned_profiles": []}}, "username": "!516812", "power_badge": false, "display_name": "djinnhaq", "active_status": "inactive", "verifications": ["0xc06fdc18b618eb9713b806a8d67d9c3deae98229"], "follower_count": 19, "custody_address": "0xf9e1b4d3a2b7b121fcb058e29ab2fea93bcf4a82", "following_count": 86, "verified_addresses": {"eth_addresses": ["0xc06fdc18b618eb9713b806a8d67d9c3deae98229"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kyotojazzmassive/get-up-dj-kawasaki-roys?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (785813, '0x9394dd04f455730fdd2a61222737116df1336f97', 0, 1, '2024-05-07 02:28:42+00', 0, 1, '{"fid": 361635, "object": "user", "pfp_url": "https://i.imgur.com/Zu5t1b5.jpg", "profile": {"bio": {"text": "artist + designer", "mentioned_profiles": []}}, "username": "chrismartz.eth", "power_badge": true, "display_name": "chrismartz", "active_status": "inactive", "verifications": ["0x224e69025a2f705c8f31efb6694398f8fd09ac5c", "0x4a9cea7bb365235b59530bd4056febfe108fc5da", "0xfd5a240d54a1112d67d0fecc11969d714c4f78c8"], "follower_count": 357, "custody_address": "0x4a9cea7bb365235b59530bd4056febfe108fc5da", "following_count": 301, "verified_addresses": {"eth_addresses": ["0x224e69025a2f705c8f31efb6694398f8fd09ac5c", "0x4a9cea7bb365235b59530bd4056febfe108fc5da", "0xfd5a240d54a1112d67d0fecc11969d714c4f78c8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hollick_nobaddays/no-bad-days-with-hollick-october-2023\"}"}', NULL), - (994796, '0xd32c208e5ae4b846fc0c2d9b1725d25e22d655d2', 0, 1, '2024-05-07 11:41:39+00', 0, 2, '{"fid": 455272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3835d739-026b-441b-fc0a-79f6fc734700/rectcrop3", "profile": {"bio": {"text": "I have enthusiasm about life,airdrop,book,coffee🦋💓\n😍🫀\n🍖💸🎩🎩", "mentioned_profiles": []}}, "username": "parisa78", "power_badge": false, "display_name": "pari", "active_status": "inactive", "verifications": ["0x5b4edfbd9f4e731d1c9f43c0f5a0dbe05b88a9bf", "0x4eafa1530f287bd74206e01819fbf18adcd81298"], "follower_count": 770, "custody_address": "0x79500c8a4c9b365b59c0b828a680075442ce3db9", "following_count": 893, "verified_addresses": {"eth_addresses": ["0x5b4edfbd9f4e731d1c9f43c0f5a0dbe05b88a9bf", "0x4eafa1530f287bd74206e01819fbf18adcd81298"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/r7THTLQKTosLSXzx6\"}"}', NULL), - (1051703, '0x698123ed60552addd8d0bf1e0f77a53e55e7f4d5', 0, 1, '2024-05-07 14:30:06+00', 0, 0, '{"fid": 500929, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e050c542-26df-4863-c30d-0ad2dafb4b00/original", "profile": {"bio": {"text": "I love traveling and cooking❤️", "mentioned_profiles": []}}, "username": "nyaongnyaong", "power_badge": false, "display_name": "nyaong🐱🦄🎩🍖", "active_status": "inactive", "verifications": ["0xbc362d817c49c6258f00e8dafb067668fc860733"], "follower_count": 1182, "custody_address": "0x58e56efafb95ef3e831bbf5d4ea74b0252833ba0", "following_count": 1022, "verified_addresses": {"eth_addresses": ["0xbc362d817c49c6258f00e8dafb067668fc860733"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tkQzE\"}"}', 'sonata'), - (992306, '0x98a3860075869b1e0d50f1e02be137eb17498542', 0, 1, '2024-05-07 11:30:51+00', 0, 8, '{"fid": 896, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/A0OMJuC3dmhJmT230zqsrRZ10x62MulsHMVdcRI4hEiXhHkLbso75Lcz9moIkdJMOFVy80CAtG03zFdtjMgH5mLbapSISaBeOFxH", "profile": {"bio": {"text": "not my first rodeo 👨🏾‍🚀\n@a16zcrypto", "mentioned_profiles": []}}, "username": "boogie", "power_badge": true, "display_name": "jay drain jr.", "active_status": "inactive", "verifications": ["0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2"], "follower_count": 423, "custody_address": "0x4cfc4a5054fe1abd8a3556759010d85f8192cf84", "following_count": 149, "verified_addresses": {"eth_addresses": ["0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2bBaAOsFVQfKwMAe4wVQb6?si=yfNixu03TRmOH77Upj9OpA\"}"}', 'sonata'), - (973762, '0x4e1b3e5cc06c2d0a0b1e54c19e08547c937c42fb', 0, 1, '2024-05-07 10:17:12+00', 0, 0, '{"fid": 387117, "object": "user", "pfp_url": "https://i.imgur.com/6NtMrL7.jpg", "profile": {"bio": {"text": "🔰初心者🔰\n\nプロフィール画は、愛犬チワプーのmickeyです。\n♡専業主婦♡\n愛犬のことだったり、料理だったり投稿しますのでよろしくお願いします", "mentioned_profiles": []}}, "username": "rinkun", "power_badge": false, "display_name": "mickey", "active_status": "inactive", "verifications": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "follower_count": 536, "custody_address": "0x095a2750cae8910bf45d102a3e9d51a1821c92e4", "following_count": 404, "verified_addresses": {"eth_addresses": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rQ6R4EJqSZQ2yzMX7\"}"}', 'musicjp'), - (933477, '0x20a217d25de24d3ddc79294d6bee41c3a2673cab', 0, 1, '2024-05-07 08:11:42+00', 0, 3, '{"fid": 488371, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/33f7da7c-5fff-4292-99c6-33955f504c00/rectcrop3", "profile": {"bio": {"text": "늦더라도 받은 건 반드시 감사하러 갑니다./ 행복한 워캐 생활이 되어봐요^^", "mentioned_profiles": []}}, "username": "npakj", "power_badge": false, "display_name": "aja", "active_status": "inactive", "verifications": ["0xdb0f22e4a912416bea5c870feb8098f50c77903f"], "follower_count": 1931, "custody_address": "0xfe753b738ae908182405b41a5d1acffbb3bd4719", "following_count": 2894, "verified_addresses": {"eth_addresses": ["0xdb0f22e4a912416bea5c870feb8098f50c77903f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/h0hcps3cwwvg/m-c-the-max?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (957690, '0x0855a56da5926b38aa541f279faa1e96394fc7c2', 0, 1, '2024-05-07 09:11:26+00', 0, 1, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2672, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3140, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B2VmoB8MqYkTw6tm6\"}"}', 'sonata'), - (930507, '0x4015b17cf39112e7fccd4638fab0b3570ba8287b', 0, 1, '2024-05-07 08:05:41+00', 0, 3, '{"fid": 265597, "object": "user", "pfp_url": "https://i.imgur.com/4oW3yZ9.gif", "profile": {"bio": {"text": "Japanese🇯🇵 \nlike ▶︎ BCG、エアドロ、お酒🍶、犬🐶\n沢山いいね、リキャストしていきます👍\n", "mentioned_profiles": []}}, "username": "ginsan", "power_badge": false, "display_name": "ginsan.degen🎩🔮", "active_status": "inactive", "verifications": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "follower_count": 1156, "custody_address": "0xe4c97bd2e6864247d76555c72e624c6113343c9b", "following_count": 558, "verified_addresses": {"eth_addresses": ["0xe87f168a266e7dabc051ec39c2ab4f691e6bac85"], "sol_addresses": ["5vmkrAHfaLYDP4kdt7HUph6rPLk6Z1xhj8sPPLNy9w7e"]}}', '{"{\"url\":\"https://open.spotify.com/track/65GxdiR96H94nMoRhPe9bv?si=l7Q9K2WdQsuP0MVNmwIJMA&context=spotify%3Aalbum%3A7JZveGo3ddNZRVoQlrU1E2\"}"}', 'sonata'), - (1173318, '0x7ff0e1bf6da80e949cd12aa271964cc3aca95cd2', 2222, 1, '2024-05-15 19:12:35+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 960, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5iJfzXKvQXlYOBtEQhEmpA?si=7gAt1li1QZy_GyJHX4aHxA\"}"}', NULL), - (988159, '0x7bfb623f70024fb48994667f00415f13d8586c33', 0, 1, '2024-05-07 11:11:38+00', 0, 7, '{"fid": 379932, "object": "user", "pfp_url": "https://i.imgur.com/Rlw5g9L.jpg", "profile": {"bio": {"text": "행복한 순간들만 가득하기를🤍🤍", "mentioned_profiles": []}}, "username": "gptjsgod", "power_badge": false, "display_name": "채단아", "active_status": "inactive", "verifications": ["0xf592ecaff58a64dd8604888e707a1df059721e5d"], "follower_count": 3166, "custody_address": "0xeda8ba6ae20bbb7d041343d1a80ccb6072a095f0", "following_count": 2751, "verified_addresses": {"eth_addresses": ["0xf592ecaff58a64dd8604888e707a1df059721e5d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thatsuburban/sets/cradles-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (969799, '0x65382e58393e1227925b937008c373953cc3fbd6', 0, 1, '2024-05-07 09:52:25+00', 0, 5, '{"fid": 419719, "object": "user", "pfp_url": "https://i.imgur.com/jz2FAOc.jpg", "profile": {"bio": {"text": "Just do it bro🤙🏻", "mentioned_profiles": []}}, "username": "hshmansari47", "power_badge": false, "display_name": "Hashi🍖🎩👽", "active_status": "inactive", "verifications": ["0x119d7d618fd4f18232f22431021e5535da62d917"], "follower_count": 1629, "custody_address": "0x8589428efb2c790803f25c0579149425ea8da972", "following_count": 1657, "verified_addresses": {"eth_addresses": ["0x119d7d618fd4f18232f22431021e5535da62d917"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/e9uNvHBevrrUExeV9\"}"}', 'sonata'), - (829686, '0xf759a610a3f8ee8ea53cb77ef0f51f5b0f2a134e', 0, 1, '2024-05-07 04:14:08+00', 0, 0, '{"fid": 199472, "object": "user", "pfp_url": "https://i.imgur.com/kW9PXhs.jpg", "profile": {"bio": {"text": "Artist building unique experiences in Web3\nRyanTReynolds.xyz\nThe 👁️ is the 🚪 to the SOUL", "mentioned_profiles": []}}, "username": "imryanrey.eth", "power_badge": false, "display_name": "Ryan T. Reynolds🎩✈️", "active_status": "inactive", "verifications": ["0x715cefa260f40e9cc3a4447ad020a9bba0ae9a52"], "follower_count": 115, "custody_address": "0xf666bad21e3f6de7bb45bfaa1a6e3d22b2158e26", "following_count": 423, "verified_addresses": {"eth_addresses": ["0x715cefa260f40e9cc3a4447ad020a9bba0ae9a52"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ryantreynolds/one-way?referral_source=link\"}"}', NULL), - (1022813, '0xe9d2153183f630cba39a0c7f4044ea34a01b2321', 0, 1, '2024-05-07 12:59:09+00', 0, 1, '{"fid": 499287, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/45a9e948-eb2b-4019-56c0-40956ba96600/rectcrop3", "profile": {"bio": {"text": "crypto trader\nピュルルルルルゥ!!!", "mentioned_profiles": []}}, "username": "bocchi-crypto", "power_badge": false, "display_name": "bocchi", "active_status": "inactive", "verifications": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "follower_count": 299, "custody_address": "0x634bd6a5e880b1d60699179c21408255e40964b4", "following_count": 370, "verified_addresses": {"eth_addresses": ["0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VMXbQtpzTFkZ2yYS9\"}"}', 'zatsudan'), - (934432, '0x74105dd82b795ce34acc7d6ad37923b05eed1735', 0, 1, '2024-05-07 08:15:43+00', 0, 9, '{"fid": 500603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3908c5f6-89cb-45e3-500b-cccdda0a0200/rectcrop3", "profile": {"bio": {"text": "f4f\nDEGEN TO THE MOON🚀🚀🚀🌕🇰🇷", "mentioned_profiles": []}}, "username": "kiss486", "power_badge": false, "display_name": "gursung park", "active_status": "inactive", "verifications": ["0x91c509830ff641216f8a1b7a638dab7b41b33e2e", "0x933a86349273c0ed6518938d3b385eb6ec3bc7d9"], "follower_count": 979, "custody_address": "0x350b95638deb428f6d340a268c9b40f0d662810b", "following_count": 2106, "verified_addresses": {"eth_addresses": ["0x91c509830ff641216f8a1b7a638dab7b41b33e2e", "0x933a86349273c0ed6518938d3b385eb6ec3bc7d9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/behFN\"}"}', 'sonata'), - (932959, '0xe6b36f5ce9e337d6fed71f93cf798312c238fff9', 0, 1, '2024-05-07 08:11:32+00', 0, 2, '{"fid": 505894, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f3ffe313-b27a-4122-2411-b0b4351e4e00/rectcrop3", "profile": {"bio": {"text": "Thank you so much for being friends with me!\n늘 겸손하고 화이팅!!!", "mentioned_profiles": []}}, "username": "kissday771", "power_badge": false, "display_name": "Movieboy1", "active_status": "inactive", "verifications": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "follower_count": 746, "custody_address": "0xeb98f8ee481cef5d0949c6d02faf41a79ea2cbe4", "following_count": 997, "verified_addresses": {"eth_addresses": ["0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p5X3MdEjev3fZZN87\"}"}', 'sonata'), - (988151, '0x93f26bb27e4508c2f4c0adbd18bcb8cb36f93e49', 0, 1, '2024-05-07 11:12:18+00', 0, 0, '{"fid": 471528, "object": "user", "pfp_url": "https://i.imgur.com/7nmDvaz.jpg", "profile": {"bio": {"text": "일단시작!선팔환영!🎩 🍖 🚀 맞팔조대리 무한반사(슈캐) 🔥 SHOW ME THE LIKES 👍 일상을 공유하고 소통합니다.", "mentioned_profiles": []}}, "username": "digino", "power_badge": false, "display_name": "DigiNo👍", "active_status": "inactive", "verifications": ["0xe717cca45aa886420645abe2e3fbf54b376a4e3c"], "follower_count": 2136, "custody_address": "0xec197fa6c407168baf16810202df1bcd10e16dd8", "following_count": 2373, "verified_addresses": {"eth_addresses": ["0xe717cca45aa886420645abe2e3fbf54b376a4e3c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545698615/kim-yeon-woo-1?si=583906a188fa454199117d80e4c44798&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (927828, '0x1f53d2a1885a42b5954bf16663b8c074ed52fe61', 2100, 1, '2024-05-07 07:58:04+00', 13, 50, '{"fid": 7452, "object": "user", "pfp_url": "https://i.imgur.com/K3sUs0W.gif", "profile": {"bio": {"text": "Co-creator of /buttongame 🟣 | Pokémon Master | Fartcaster Extraordinaire | /free | /degenchain | notfrydoteth.twitter", "mentioned_profiles": []}}, "username": "buttongame.eth", "power_badge": true, "display_name": "fry 🎩⛓🟣💀", "active_status": "inactive", "verifications": ["0x366ddda42f9c965c765fa6d8e98d84f224e81f46", "0x311ef08626709a0de3aa84d396437773340e022d"], "follower_count": 13014, "custody_address": "0xcba565e7a82f2de3117f3b141266cac0d6adee17", "following_count": 1472, "verified_addresses": {"eth_addresses": ["0x366ddda42f9c965c765fa6d8e98d84f224e81f46", "0x311ef08626709a0de3aa84d396437773340e022d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6GnhWMhgJb7uyiiPEiEkDA?si=d3806e4307124117\"}"}', NULL), - (1173336, '0x95e8b05525b95a82b311bf8046a1898d300595c6', 0, 1, '2024-05-15 20:27:17+00', 101, 2, '{"fid": 2364, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/qOMarh_KlfKEbFIdsgGjf0kxHDe2XQYTWt9r49kgMqv2Dr9exUpQTHYzeV2N7oYlh8QL7AN24SjTd-Bhwg00TUS7glGwVp3wAWNa", "profile": {"bio": {"text": "onchain thinker and sharer of information\n~\nPrev @ intuition.systems", "mentioned_profiles": []}}, "username": "mane", "power_badge": true, "display_name": "Matt", "active_status": "inactive", "verifications": ["0xaa0dd4544fb4ac8c706011bfa8f16638fb6409f3"], "follower_count": 1648, "custody_address": "0xa6168ae5ed8e9cc071aac2776914ae7ea38a5954", "following_count": 531, "verified_addresses": {"eth_addresses": ["0xaa0dd4544fb4ac8c706011bfa8f16638fb6409f3"], "sol_addresses": ["BYUiSSaYPLRBHKjZxYefLo7hKZZVTsZEyjegMDmqmxT7"]}}', '{"{\"url\":\"https://soundcloud.com/oshi/kali-uchi?si=06e350286fae48319236afc7c6e2d77e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1087485, '0x0ce7e654391606e7835bce07accf338dda466305', 0, 1, '2024-05-07 15:45:19+00', 0, 5, '{"fid": 505633, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16bf11dc-3e89-4b70-0fe8-9bbe7a529800/rectcrop3", "profile": {"bio": {"text": "👀👃👄", "mentioned_profiles": []}}, "username": "kimkancho", "power_badge": false, "display_name": "kimkancho", "active_status": "inactive", "verifications": ["0x6aa13addb4d628ec5531f0cbe9de605ff76a43aa"], "follower_count": 287, "custody_address": "0x46073d073acfcb4cfd031ef9a171136e8707176f", "following_count": 327, "verified_addresses": {"eth_addresses": ["0x6aa13addb4d628ec5531f0cbe9de605ff76a43aa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ive_official/i-am?si=5b3b5cd7dfc9405ab5bb340e68bb908a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (922962, '0x5e0bf0f20c1524f1369c84c4ce6b983fdb35a987', 0, 1, '2024-05-07 07:25:56+00', 0, 10, '{"fid": 463625, "object": "user", "pfp_url": "https://i.imgur.com/iaJFRt2.jpg", "profile": {"bio": {"text": "A smart and thoughtful boy 🙇‍♂️\nInterested in the crypto world 👨‍💻\n", "mentioned_profiles": []}}, "username": "dayandoon", "power_badge": false, "display_name": "Dayan", "active_status": "inactive", "verifications": ["0x7a1d5b6d777cfc257d10707bba4e94a0bb2ffa54"], "follower_count": 1654, "custody_address": "0xf6acbd5f87288133f110d2e0b384a76cdc35e34e", "following_count": 1868, "verified_addresses": {"eth_addresses": ["0x7a1d5b6d777cfc257d10707bba4e94a0bb2ffa54"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/46IZ0fSY2mpAiktS3KOqds?si=4Aai8JjMSpKC7TKlZTt1qw\"}"}', NULL), - (978251, '0x18f465f75d571ddb1c751050dcd0767883490c70', 0, 1, '2024-05-07 10:33:53+00', 0, 1, '{"fid": 474091, "object": "user", "pfp_url": "https://i.imgur.com/Od50sSS.jpg", "profile": {"bio": {"text": "Money and food", "mentioned_profiles": []}}, "username": "silsa", "power_badge": false, "display_name": "James", "active_status": "inactive", "verifications": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "follower_count": 2206, "custody_address": "0x80a753036c43a2c3eee42292769f54e6ccc30b87", "following_count": 2260, "verified_addresses": {"eth_addresses": ["0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/netraum/10cm-borrow-your-night-l-cover-by-netraum?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (852070, '0x7d78a5252c379becaa7635bc55abb3d90b91a97a', 0, 1, '2024-05-07 05:25:22+00', 0, 1, '{"fid": 328381, "object": "user", "pfp_url": "https://i.imgur.com/VTAynxS.jpg", "profile": {"bio": {"text": "peace & love \n\n", "mentioned_profiles": []}}, "username": "realpotus", "power_badge": false, "display_name": "realpotus🎩🍖🔵🌞", "active_status": "inactive", "verifications": ["0x3d4038ec487c25af364fd6dfd0177e427a15db58"], "follower_count": 1167, "custody_address": "0x0d3eaf750ef352ffcd540c2d70f260da402854af", "following_count": 667, "verified_addresses": {"eth_addresses": ["0x3d4038ec487c25af364fd6dfd0177e427a15db58"], "sol_addresses": []}}', '{"{\"url\":\"https://market.sound.xyz/10/0x77570069ef75035b9d0a433c1627f7372b08939e/21123?utm_id=share_link&utm_medium=copy_link\"}"}', NULL), - (937611, '0xcc9119b50608b377cff7956e4f62dd262bf92135', 0, 1, '2024-05-07 08:19:51+00', 0, 0, '{"fid": 416064, "object": "user", "pfp_url": "https://i.imgur.com/A6GEMtH.jpg", "profile": {"bio": {"text": "마지막 기회, 그거슨 바로 디젠. \n\n\nThe last chance, that''s Degen.", "mentioned_profiles": []}}, "username": "chchn2", "power_badge": false, "display_name": "chchn2", "active_status": "inactive", "verifications": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "follower_count": 2928, "custody_address": "0xc6576a3e4a013dede662fad6f93ab4e99ed36f51", "following_count": 2556, "verified_addresses": {"eth_addresses": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/beautiful?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (988153, '0xa6442c17817e9946a7c376d2346c8debe20430e4', 0, 1, '2024-05-07 11:12:14+00', 0, 0, '{"fid": 372218, "object": "user", "pfp_url": "https://i.imgur.com/lj6N0Dz.jpg", "profile": {"bio": {"text": "I love excitement. I can say that I love social media very much", "mentioned_profiles": []}}, "username": "bigdadi02", "power_badge": false, "display_name": "Bigdadi02🎩,➡️Farcon", "active_status": "inactive", "verifications": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "follower_count": 300, "custody_address": "0x28cc1bbc9e00df08d127bf3316a858c5e1d89766", "following_count": 362, "verified_addresses": {"eth_addresses": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/arDD66YMWsUfzTTS9\"}"}', NULL), - (972333, '0xa5830f80c0ae0774bb1782389e0437461040f29b', 0, 1, '2024-05-07 10:08:29+00', 0, 2, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1425, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1935, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sULFox4Mjh7J9aJr5\"}"}', 'sonata'), - (995089, '0xf7289d44392220a5cd16dd7e1da36c68b69cbccc', 0, 1, '2024-05-07 11:43:27+00', 0, 1, '{"fid": 511743, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d992a649-c8f3-49fa-13f9-70844e9a6e00/rectcrop3", "profile": {"bio": {"text": "환생한 Ghost_Eyes👻\n잘 부탁 드립니다", "mentioned_profiles": []}}, "username": "!511743", "power_badge": false, "display_name": "Ghost_Eyes👻", "active_status": "inactive", "verifications": ["0xf0fe272b03a177301b3af721e451cdfe70ffd7e2", "0xf0fe272b03a177301b3af721e451cdfe70ffd7e2"], "follower_count": 65, "custody_address": "0xf737c3aaa2dbad13a2a46c1c6e627c5231ef1fcc", "following_count": 169, "verified_addresses": {"eth_addresses": ["0xf0fe272b03a177301b3af721e451cdfe70ffd7e2", "0xf0fe272b03a177301b3af721e451cdfe70ffd7e2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hffVy\"}"}', NULL), - (1115925, '0x2ad48392305b8b992099661c352aacfbf47827a0', 0, 1, '2024-05-07 17:32:39+00', 0, 0, '{"fid": 417780, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82e7162f-58b1-42ba-6f36-28e3030dd100/original", "profile": {"bio": {"text": "| Creative Director @ Gothaam City Music | Interdisciplinary Artist & All Around Renaissance Woman | Life-Long Learner | Wanderer |", "mentioned_profiles": []}}, "username": "cinders.eth", "power_badge": false, "display_name": "Vix", "active_status": "inactive", "verifications": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "follower_count": 191, "custody_address": "0xf84017eedff1dd23737a2b70d5c64d052cbaa131", "following_count": 295, "verified_addresses": {"eth_addresses": ["0x4a6d41513783b0023c4de563de751e698e5f962a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1OGbmUIFjXNJpz12SPNysK?si=4rQJYKdAQc2tjo_dOyhJyA&context=spotify%3Aalbum%3A1ALFJpuErSKhYgUJJdRWT0\"}"}', NULL), - (1173212, '0x3bbbac0b3ece11ea958354162b0035d9cf6397a5', 1000, 1, '2024-05-15 12:29:48+00', 0, 0, '{"fid": 16098, "object": "user", "pfp_url": "https://i.imgur.com/45e0dnv.gif", "profile": {"bio": {"text": "i just “am”", "mentioned_profiles": []}}, "username": "jpfraneto", "power_badge": true, "display_name": "jp 🦊🎩", "active_status": "inactive", "verifications": ["0xed21735dc192dc4eeafd71b4dc023bc53fe4df15", "0x59a743e6f2996801031a0ffc60d5154db95cd0dd"], "follower_count": 6910, "custody_address": "0xab20de8f5a4f8e147baac9d1f6e236861485516a", "following_count": 1396, "verified_addresses": {"eth_addresses": ["0xed21735dc192dc4eeafd71b4dc023bc53fe4df15", "0x59a743e6f2996801031a0ffc60d5154db95cd0dd"], "sol_addresses": ["9qr7ofpTpGc1SvgHXTh5qrUNt3uAa9rFKE4AtnPH8p5t"]}}', '{"{\"url\":\"https://soundcloud.com/hiddenempire/hidden-empire-fusion-2023-turmbuhne?si=d5995c8c152842e986b220c56b19c3f8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (929944, '0x1574cc4872921d8a815da6515a52f87588bb3e0f', 0, 1, '2024-05-07 08:04:00+00', 0, 0, '{"fid": 213923, "object": "user", "pfp_url": "https://i.imgur.com/DHhmXlF.jpg", "profile": {"bio": {"text": "🎩\n😎\n🎖️\nCrypto Enthusiast, Investor, NFTs Trader and Community Moderator", "mentioned_profiles": []}}, "username": "lawrency.eth", "power_badge": false, "display_name": "Lawrency🎩🍖🔮⛓️🍡", "active_status": "inactive", "verifications": ["0x4b9e02d58e33b03b696715a24bcdd77cf5b2703e"], "follower_count": 634, "custody_address": "0x156db122e4296b295fae7388f143c9638486fe82", "following_count": 1247, "verified_addresses": {"eth_addresses": ["0x4b9e02d58e33b03b696715a24bcdd77cf5b2703e"], "sol_addresses": ["FpaUTvikW4CTKh63pyN5aUk8UvgFUneVeyJpAjkdpNf4"]}}', '{"{\"url\":\"https://open.spotify.com/track/2q5IuW012mRgwVDQrsbEYe\"}"}', NULL), - (979135, '0xc117df224a4ba2ec87d2b89192edb35d07c7d911', 0, 1, '2024-05-07 10:41:58+00', 0, 0, '{"fid": 411507, "object": "user", "pfp_url": "https://i.imgur.com/yGIGnFO.jpg", "profile": {"bio": {"text": "Medical doctor \nDigital artist\nBlockchain enthusiast", "mentioned_profiles": []}}, "username": "keplerbanks", "power_badge": false, "display_name": "Banks ", "active_status": "inactive", "verifications": ["0x02304bcfb1b7a1b1afb38f6dfd11a49c6fb0edf5"], "follower_count": 24, "custody_address": "0x8b4c2ddc31d386947d2eb115c5305b77ebed2381", "following_count": 151, "verified_addresses": {"eth_addresses": ["0x02304bcfb1b7a1b1afb38f6dfd11a49c6fb0edf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7hrFCoyWwKep7qp1lP4oga?si=TZWbIoiwSZacqKoRVfDLiQ&context=spotify%3Aplaylist%3A37i9dQZF1DX0XUsuxWHRQd\"}"}', NULL), - (969911, '0xb61ca3b0a93f8fd4c51bd3c8be0173af36b1d8a8', 0, 1, '2024-05-07 09:54:07+00', 0, 2, '{"fid": 435809, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a0c8f29-7abc-4cd6-21b5-d310b4d74500/rectcrop3", "profile": {"bio": {"text": "Gamer \nAnime lover", "mentioned_profiles": []}}, "username": "metanol", "power_badge": false, "display_name": "Mosi ", "active_status": "inactive", "verifications": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "follower_count": 623, "custody_address": "0x36edb1c0063e62765d4a75c95b0617cfc7f7a7db", "following_count": 642, "verified_addresses": {"eth_addresses": ["0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f"], "sol_addresses": ["8xhkzggBcy8uTA6ZhkWkoT1M5EbCHJuyKrQqW2QceyHN"]}}', '{"{\"url\":\"https://soundcloud.com/music-o-267094832/terrence-parker-somethin-there?in=sc-playlists-de/sets/workout-house-grooves&si=f2747adf06934909ac554e486776a5bc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (975744, '0x8b63cdff17e0d97d6840c6794cf513446ddf1c7d', 0, 1, '2024-05-07 10:24:24+00', 0, 1, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1065, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 1058, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-6732886/j88jxmlcyeuy?si=ed9b77d2ed564af59641ce9d06d754f1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (976036, '0x70c7057929b2383d0d1fe01c06c15e0103b5330a', 0, 1, '2024-05-07 10:28:46+00', 0, 6, '{"fid": 437984, "object": "user", "pfp_url": "https://i.imgur.com/Z6eBT4Q.jpg", "profile": {"bio": {"text": "아이스맨입니다.선팔 맞팔 좋/댓/리 칼같이 찾아갑니다! Welcome to iceman world!\n조대리 환영♡", "mentioned_profiles": []}}, "username": "heybro", "power_badge": false, "display_name": "Iceman", "active_status": "inactive", "verifications": ["0xc88135892864309c30ec51734b02ba197c137830"], "follower_count": 2351, "custody_address": "0x5ed9a31cc288a761cde7160645e1975c070d1968", "following_count": 1939, "verified_addresses": {"eth_addresses": ["0xc88135892864309c30ec51734b02ba197c137830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4Vrjg\"}"}', 'sonata'), - (892040, '0x48f207bb1d35ff4954822b77c7f6876e5c59a022', 0, 1, '2024-05-07 06:37:50+00', 10, 0, '{"fid": 269321, "object": "user", "pfp_url": "https://i.imgur.com/GirfNIl.jpg", "profile": {"bio": {"text": "multidisciplinary music artist ///\n\nbuilding a world w /flourish \n\nhttps://linktr.ee/dominosmusic", "mentioned_profiles": []}}, "username": "dominosmusic", "power_badge": true, "display_name": "Domino", "active_status": "inactive", "verifications": ["0xbf46d2161045251cb97d0b41929bc1d36044e1a0"], "follower_count": 1027, "custody_address": "0x2ea0fe46d4a96381d691f604d4a5843995fbdbc5", "following_count": 407, "verified_addresses": {"eth_addresses": ["0xbf46d2161045251cb97d0b41929bc1d36044e1a0"], "sol_addresses": ["BFoetGLXvFZ2QcVX49SVxdnCn1pPMG6GopJgRCYUJWjz"]}}', '{"{\"url\":\"https://www.sound.xyz/domino/pump-ft-latasha\"}"}', NULL), - (937590, '0xb28d292841ea2bd1da362378b1b4c2d4d9b57b31', 0, 1, '2024-05-07 08:19:28+00', 0, 2, '{"fid": 387117, "object": "user", "pfp_url": "https://i.imgur.com/6NtMrL7.jpg", "profile": {"bio": {"text": "🔰初心者🔰\n\nプロフィール画は、愛犬チワプーのmickeyです。\n♡専業主婦♡\n愛犬のことだったり、料理だったり投稿しますのでよろしくお願いします", "mentioned_profiles": []}}, "username": "rinkun", "power_badge": false, "display_name": "mickey", "active_status": "inactive", "verifications": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "follower_count": 536, "custody_address": "0x095a2750cae8910bf45d102a3e9d51a1821c92e4", "following_count": 404, "verified_addresses": {"eth_addresses": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6oHUMXEKpnXOrs13VoGsuF\"}"}', 'chatcast'), - (1173200, '0xd2ebc6f14cdcb2bbee1ddb6ddd89d24cd9baa848', 0, 1, '2024-05-15 08:40:15+00', 0, 19, '{"fid": 262566, "object": "user", "pfp_url": "https://i.imgur.com/581QlLA.png", "profile": {"bio": {"text": "Fully aware of how necessary it is for us to banish Moloch ASAP and how to do so: We must raise awareness about fundamental emotional needs\nNPO Prosocialise.org", "mentioned_profiles": []}}, "username": "prosocialise", "power_badge": true, "display_name": "Prosocialise Foundation 🎩", "active_status": "inactive", "verifications": ["0x3f098c5f5e0d5b2606eed243844d1392835c1411"], "follower_count": 2102, "custody_address": "0x3f098c5f5e0d5b2606eed243844d1392835c1411", "following_count": 443, "verified_addresses": {"eth_addresses": ["0x3f098c5f5e0d5b2606eed243844d1392835c1411"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/citationsneeded/episode-58-the-neoliberal-optimism-industry\"}"}', 'lp'), - (938995, '0x74ef78af9221d08cb7d4ec4f199e6b9f4cbb0776', 0, 1, '2024-05-07 08:21:36+00', 0, 3, '{"fid": 501701, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/99081801-c661-44ac-ec0a-dff6229f7500/rectcrop3", "profile": {"bio": {"text": "Thank u for visiting. \nHave a great day🍀 \n\n중고신입 뉴비 잘 부탁드려요🩵", "mentioned_profiles": []}}, "username": "leehu23", "power_badge": false, "display_name": "Unieeeee", "active_status": "inactive", "verifications": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "follower_count": 1252, "custody_address": "0x19aeb2932c76077fae10f8c6ea47fffd07c49cac", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x25c846675b7755d5622f1bb198799c81e7366dc7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ldlalaine/8wotpqd3nknm\"}"}', 'sonata'), - (974151, '0xe109992ee745fd0467e920772e5b03cc4070df97', 0, 1, '2024-05-07 10:18:09+00', 0, 6, '{"fid": 507928, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49b4b4b3-3abc-4720-4eae-b3c7a46d2f00/rectcrop3", "profile": {"bio": {"text": "Crypto trader | Web3 gamer", "mentioned_profiles": []}}, "username": "!507928", "power_badge": false, "display_name": "Kasra", "active_status": "inactive", "verifications": ["0x15878850971770adb4d13aaa6ac5f8e7d5927a09"], "follower_count": 729, "custody_address": "0x2458e97ec605db31c7e58f39557f922604764114", "following_count": 966, "verified_addresses": {"eth_addresses": ["0x15878850971770adb4d13aaa6ac5f8e7d5927a09"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Zv7WyC1fXNQWbNNN6\"}"}', 'sonata'), - (969797, '0x9e5b726932e56b6c9eacacf3c512d64f6bc6e755', 0, 1, '2024-05-07 09:52:00+00', 0, 2, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 921, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1043, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/adolfo-ayala-alen/avicii-the-nights?si=cedaa36b523b4c3a8ca6d5fff7abb601&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (958453, '0x488d858b73a6bc1c85efa9c0c4bcc308ba24e28d', 0, 1, '2024-05-07 09:14:30+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share92/yerin-baek-0310?si=f581e8cdec6c413e967545e22e028ec3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (852065, '0x97c3e54e08eedbd857a57e2da76570f7c01343da', 0, 1, '2024-05-07 05:25:00+00', 0, 1, '{"fid": 328381, "object": "user", "pfp_url": "https://i.imgur.com/VTAynxS.jpg", "profile": {"bio": {"text": "peace & love \n\n", "mentioned_profiles": []}}, "username": "realpotus", "power_badge": false, "display_name": "realpotus🎩🍖🔵🌞", "active_status": "inactive", "verifications": ["0x3d4038ec487c25af364fd6dfd0177e427a15db58"], "follower_count": 1167, "custody_address": "0x0d3eaf750ef352ffcd540c2d70f260da402854af", "following_count": 667, "verified_addresses": {"eth_addresses": ["0x3d4038ec487c25af364fd6dfd0177e427a15db58"], "sol_addresses": []}}', '{"{\"url\":\"https://market.sound.xyz/10/0x77570069ef75035b9d0a433c1627f7372b08939e/21123?utm_id=share_link&utm_medium=copy_link\"}"}', NULL), - (938989, '0x69997640d41691b9a060e0558c6468dac2b984c3', 0, 1, '2024-05-07 08:21:05+00', 0, 2, '{"fid": 434644, "object": "user", "pfp_url": "https://i.imgur.com/8FCNKzD.jpg", "profile": {"bio": {"text": "I''m a crypto lover // 함께 소통해요😍", "mentioned_profiles": []}}, "username": "malrangcow", "power_badge": false, "display_name": "MalrangCow🎩🍖", "active_status": "inactive", "verifications": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "follower_count": 2957, "custody_address": "0xa5987cbd36cab6619ad1b4c611858193f63061a6", "following_count": 2985, "verified_addresses": {"eth_addresses": ["0x9de296fd3d84f00110332e4380c6873ea975e7b0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jocabDpqDv7vX3oC7\"}"}', 'sonata'), - (988602, '0x43389452dcd28a36f0e7ea737287176d9c57cbac', 0, 1, '2024-05-07 11:14:49+00', 0, 0, '{"fid": 300020, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ecc9b5a-e2af-46b9-c3a5-07009ffe9000/rectcrop3", "profile": {"bio": {"text": "강원도 사는 엄마 ^^*", "mentioned_profiles": []}}, "username": "smysg99", "power_badge": false, "display_name": "프쉬케🎩🍖", "active_status": "inactive", "verifications": ["0x0626b599a9d8513ed5c060191f7870d1c6415d3a"], "follower_count": 1771, "custody_address": "0x8b669d35ae203e7cd9ff455550cac83908b03e0c", "following_count": 1303, "verified_addresses": {"eth_addresses": ["0x0626b599a9d8513ed5c060191f7870d1c6415d3a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/siamusic/sia-chandelier?si=756d2268788a4cf097251feafb70e961&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173194, '0x9276c9b6dc8d097edbff674b38e0012973396669', 0, 1, '2024-05-15 07:55:53+00', 0, 6, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3878, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1009, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fSYxd\"}"}', 'sonata'), - (938956, '0x45d82b7602ec4f3645d87ad33858142e5d05ae0b', 0, 1, '2024-05-07 08:21:59+00', 10, 2, '{"fid": 416064, "object": "user", "pfp_url": "https://i.imgur.com/A6GEMtH.jpg", "profile": {"bio": {"text": "마지막 기회, 그거슨 바로 디젠. \n\n\nThe last chance, that''s Degen.", "mentioned_profiles": []}}, "username": "chchn2", "power_badge": false, "display_name": "chchn2", "active_status": "inactive", "verifications": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "follower_count": 2928, "custody_address": "0xc6576a3e4a013dede662fad6f93ab4e99ed36f51", "following_count": 2556, "verified_addresses": {"eth_addresses": ["0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bangtan/beautiful?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (939877, '0xf57f43a8725cbdcd144644527a63b795d95c7f6c', 0, 1, '2024-05-07 08:22:50+00', 0, 0, '{"fid": 287191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/75bc5b9e-7404-4ebe-4ac2-4efcc8ae8e00/original", "profile": {"bio": {"text": "sound designer, musician, web3music degen\n/onchain ", "mentioned_profiles": []}}, "username": "lazyandreal", "power_badge": false, "display_name": "lazy and real", "active_status": "inactive", "verifications": ["0xd5844c4157a8c4f3c113328c5e24d510b4b31be6"], "follower_count": 1297, "custody_address": "0x374a9af883ecb7aa937f889a3615cac25860cead", "following_count": 1391, "verified_addresses": {"eth_addresses": ["0xd5844c4157a8c4f3c113328c5e24d510b4b31be6"], "sol_addresses": ["5GUcUTjdcqcinSe9Y7Vofc37Lk7tnC6Rph7TLopZHQGs"]}}', '{"{\"url\":\"https://on.soundcloud.com/mASNULd1zWFKAHBv8\"}"}', NULL), - (937609, '0x344af81427163ac4b4561e16474012d24c644fa8', 0, 1, '2024-05-07 08:20:05+00', 0, 0, '{"fid": 425076, "object": "user", "pfp_url": "https://i.imgur.com/QanYYcP.jpg", "profile": {"bio": {"text": "F4F🖤조대리🖤맞디🖤", "mentioned_profiles": []}}, "username": "hyojuncast", "power_badge": false, "display_name": "HyojunKim", "active_status": "inactive", "verifications": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "follower_count": 1263, "custody_address": "0xf62c45992ff210140dfbda22bdef5377c16f9e9e", "following_count": 1295, "verified_addresses": {"eth_addresses": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/search/sounds?q=%EC%96%91%ED%99%8D%EC%9B%90\"}"}', NULL), - (958454, '0x1edc203590824f756f48e96dfb3a202fdc60e1a5', 0, 1, '2024-05-07 09:11:55+00', 0, 4, '{"fid": 434019, "object": "user", "pfp_url": "https://i.imgur.com/HXwW47d.jpg", "profile": {"bio": {"text": "Never Give Up", "mentioned_profiles": []}}, "username": "ali10da", "power_badge": false, "display_name": "AlirezaDavani🎩⚡️", "active_status": "inactive", "verifications": ["0xbcb1663e7cb26cc39f95b0f38cc069cc5eb3b932"], "follower_count": 1612, "custody_address": "0x4825433dbe552990e02a49e6755136deb8816743", "following_count": 1454, "verified_addresses": {"eth_addresses": ["0xbcb1663e7cb26cc39f95b0f38cc069cc5eb3b932"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/autumn-oak-905342890/nightcore-blood-in-the-water?ref=clipboard&p=a&c=0&si=9b559bfa8f834e2a97b727c0a34db22c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (938963, '0x363f56aa7df20a3f41ebe6e8dc0847ef64229408', 0, 1, '2024-05-07 08:21:13+00', 0, 1, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "follower_count": 4976, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2483, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/xxxjennakwonxxx/park-myung-soo-fool-to-fool?si=2030bde7e61942cb8665ac0afc1969c4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (970191, '0x79752add28be0f8ba4c75b1801168a2c605827fa', 0, 1, '2024-05-07 09:57:52+00', 0, 5, '{"fid": 453511, "object": "user", "pfp_url": "https://i.imgur.com/2h4kMHd.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "salivan", "power_badge": false, "display_name": "Salivan", "active_status": "inactive", "verifications": ["0x824f7d1d35d1528e33a94ad39b53b484b541fc6b"], "follower_count": 1651, "custody_address": "0x3062ba6fb9f013abd0dc34e9740a0d3b00c7ccf8", "following_count": 1875, "verified_addresses": {"eth_addresses": ["0x824f7d1d35d1528e33a94ad39b53b484b541fc6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/i-love-you\"}"}', 'sonata'), - (994650, '0xbf7f708abcc1552be6d535575a1f48ee94528311', 0, 1, '2024-05-07 11:39:29+00', 0, 0, '{"fid": 368568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d33d091-bad3-4c30-19fd-971586cb4700/rectcrop3", "profile": {"bio": {"text": "bassist.project manager.\n日本向け自由チャンネル\n/japan-creative\n\ndrakula\nhttps://drakula.app/post/c58c3e36-5a5f-43b\n\nフリーランス\n基本情報技術者 oracle BLONZE \n2級管工事施工管理技士 \n英検5級()", "mentioned_profiles": []}}, "username": "pk0730", "power_badge": false, "display_name": "pk0730", "active_status": "inactive", "verifications": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "follower_count": 691, "custody_address": "0xb576a4a246bbe2851828c614c00cf781d0d908da", "following_count": 770, "verified_addresses": {"eth_addresses": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "sol_addresses": ["HYfLsMcbTtxQeaZ4QQMzvDFNWooVCfo3aXbdLwuDqou8"]}}', '{"{\"url\":\"https://on.soundcloud.com/wXp7qhdXhtKCi9DD7\"}"}', NULL), - (1173187, '0xedcfd97444fa6818aa7e685120351339486e418d', 0, 1, '2024-05-15 06:51:38+00', 0, 151, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 264428, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 336, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/itsdemotapes/demotapes-simpler-set\"}"}', NULL), - (1035860, '0x4b200b77c3e35f55363691b72ab13a22f7fa649f', 0, 1, '2024-05-07 13:31:28+00', 10, 13, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2209, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2093, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rovyghany/shutdown?si=8331119a61524785b209fe242b15f6e8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (940339, '0x096a66778e9487ce8eeccc4b3cdb18de406e6f6a', 2010, 1, '2024-05-07 08:24:00+00', 0, 1, '{"fid": 470385, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac15cc05-6652-4678-793c-aef1f1c9c900/rectcrop3", "profile": {"bio": {"text": "\nAI enthusiast 💊 Linguistic nerd 🤓\nMeme lover \n\nDaily memes and jokes, stay tuned ", "mentioned_profiles": []}}, "username": "elliexbailey", "power_badge": false, "display_name": "Ellie Bailey 🎩⛓️🔵", "active_status": "inactive", "verifications": ["0x54de7bed1ea5fb7f48a82f4983f19c7a01927569"], "follower_count": 74, "custody_address": "0xb988acfae37398be4d5919e52778afc13669ff68", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x54de7bed1ea5fb7f48a82f4983f19c7a01927569"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gJPbyD4mnNLgnHqq6\"}"}', 'sonata'), - (939879, '0x3dfb26017282249a02592f76f4dfd439504a69a8', 0, 1, '2024-05-07 08:22:58+00', 0, 0, '{"fid": 260151, "object": "user", "pfp_url": "https://i.imgur.com/x5iXe64.gif", "profile": {"bio": {"text": "fun to warpcaster🥳🇯🇵\nperp, airdrop, BCG, kawaii", "mentioned_profiles": []}}, "username": "chocosan", "power_badge": false, "display_name": "chocosan🎩🦀😹✈️", "active_status": "inactive", "verifications": ["0x18925665f141a6370d7b065a74e7729945fae0d2"], "follower_count": 1303, "custody_address": "0x18925665f141a6370d7b065a74e7729945fae0d2", "following_count": 1178, "verified_addresses": {"eth_addresses": ["0x18925665f141a6370d7b065a74e7729945fae0d2"], "sol_addresses": ["2BEM9rS4YnBnjPCXe7Uq7FrDaPihM1UkZQWGjfXt9eH1"]}}', '{"{\"url\":\"https://open.spotify.com/track/7tqhbajSfrz2F7E1Z75ASX?si=rzvkf5--TfOP3PSaBlGwYA&context=spotify%3Atrack%3A7tqhbajSfrz2F7E1Z75ASX\"}"}', 'sonata'), - (958455, '0x38c2eb453d63119fc17dbf9381edfc1e183beb7c', 0, 1, '2024-05-07 09:12:32+00', 0, 0, '{"fid": 442324, "object": "user", "pfp_url": "https://i.imgur.com/flYtm8L.jpg", "profile": {"bio": {"text": "NOCTURNAL / AIRDROP HUNTER / FREELANCER / CRYPTO ENTHUSIAST", "mentioned_profiles": []}}, "username": "sogiii", "power_badge": false, "display_name": "sogiii.eth🎩", "active_status": "inactive", "verifications": ["0xda04d0354645060d36c99cf7a7da973179d82979"], "follower_count": 244, "custody_address": "0x134ec3b4b70eb98d8a5dde4c3cef9552f3e44ed1", "following_count": 418, "verified_addresses": {"eth_addresses": ["0xda04d0354645060d36c99cf7a7da973179d82979"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bini-scmusic/pantropiko?si=bc550a03e02e405ebe5fda5a6390de81&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (973423, '0xe6fa3117f7a9a927d1162b13f17c0dd45b3ff993', 0, 1, '2024-05-07 10:15:01+00', 0, 1, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 304, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 508, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://on.soundcloud.com/kggVomwbdGd9r4mS8\"}"}', NULL), - (939878, '0x208ba15953745f298bb7e6790203011479064133', 0, 1, '2024-05-07 08:22:21+00', 0, 2, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1385, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1556, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/n671Ywix41xE255V7\"}"}', 'japan777iine'), - (974152, '0xd15228deb66d19b50db4e063a3ab6adbdc3fb914', 0, 1, '2024-05-07 10:19:48+00', 0, 5, '{"fid": 447691, "object": "user", "pfp_url": "https://i.imgur.com/HuigBmC.jpg", "profile": {"bio": {"text": "💕 ❤️ 🌸 F4F | 빛반사 | 맞팔 💕 ❤️ 🌸\n\n30분내 바로 반사때려버리는 여시코깽이 같은련,, (관심있는건 아님)", "mentioned_profiles": []}}, "username": "bloodtrail", "power_badge": false, "display_name": "Bloodtrail🎩 ", "active_status": "inactive", "verifications": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "follower_count": 2937, "custody_address": "0x684564b6ab9ec5f77fb1c755c22812b0b7569e9c", "following_count": 3133, "verified_addresses": {"eth_addresses": ["0xa691716231b06743db334abaf2c58a886ad8b20f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TJRZmrDNVeCrZzBe8\"}"}', 'sonata'), - (991888, '0x80c49bc37a676a64228742e0aade382ac3b30a47', 0, 1, '2024-05-07 11:30:07+00', 0, 2, '{"fid": 472831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6047f98a-3794-4b65-5525-ae5410183600/rectcrop3", "profile": {"bio": {"text": "World literature 📚 ✒️\nLiving in the light", "mentioned_profiles": []}}, "username": "goldmanbank", "power_badge": false, "display_name": "Ehsan 🎩🔵🏦⏯️", "active_status": "inactive", "verifications": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "follower_count": 1226, "custody_address": "0x66f337aef04da6aa0c022a6041a02c5034fed87c", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "sol_addresses": ["6LmaJFGTnc8YLUTzjw3ys4miTmzaN9gpz64hmMhfSXAm"]}}', '{"{\"url\":\"Listen to ZHU - Love Is Strong by ZHU on #SoundCloud https://soundcloud.com/zhu/zhu-love-is-strong?ref=clipboard&p=a&c=0&si=b7af96090d594d8ba5a6d62c6cb32b2f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (940485, '0x6efba713645d286f785aa2b6036e86ff665fde5a', 10, 1, '2024-05-07 08:25:05+00', 0, 0, '{"fid": 408178, "object": "user", "pfp_url": "https://i.imgur.com/TkjZRlQ.gif", "profile": {"bio": {"text": "im an AI artist , im sharing a lots of ai generated boring arts everyday , follow and enjoy ", "mentioned_profiles": []}}, "username": "the-hojjat", "power_badge": false, "display_name": "Hojjat ✈️", "active_status": "inactive", "verifications": ["0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4"], "follower_count": 615, "custody_address": "0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/billieeilish/ocean-eyes?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (970194, '0xe19f3d0a482624a1816aff75646ce49705f3e2ed', 0, 1, '2024-05-07 09:56:29+00', 0, 3, '{"fid": 514743, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1605c0d9-5143-4ba9-5cee-3d612c842d00/rectcrop3", "profile": {"bio": {"text": "I love crypto", "mentioned_profiles": []}}, "username": "!514743", "power_badge": false, "display_name": "Mohammad Reza", "active_status": "inactive", "verifications": ["0x515f1bccb397be6c0a38160808547cf835ce0ae4"], "follower_count": 49, "custody_address": "0x65fb65c2bb7fc6bcf3de56d133e460290e5b2855", "following_count": 105, "verified_addresses": {"eth_addresses": ["0x515f1bccb397be6c0a38160808547cf835ce0ae4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/amirtataloo/az-panjere-bebin-biroono?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (958464, '0x28e22dff2a70e4a7f2b0a95585798640a8f76afb', 0, 1, '2024-05-07 09:13:42+00', 0, 1, '{"fid": 508684, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a99a42ad-f635-4393-18b3-246339043d00/rectcrop3", "profile": {"bio": {"text": "P2E / P2A / Exploring Web3", "mentioned_profiles": []}}, "username": "!508684", "power_badge": false, "display_name": "Alc.Pld", "active_status": "inactive", "verifications": ["0x25b4c59b790cabd7f9a1c1bd0f6764e413fdae91"], "follower_count": 66, "custody_address": "0xcb77ffddea2736e381bb9b62ae41f71346701bdd", "following_count": 308, "verified_addresses": {"eth_addresses": ["0x25b4c59b790cabd7f9a1c1bd0f6764e413fdae91"], "sol_addresses": []}}', '{"{\"url\":\"Listen to BLACKPINK - Ice Cream (with Selena Gomez) by L2Share♫003 on #SoundCloud https://on.soundcloud.com/HYWub\"}"}', NULL), - (1121603, '0xf1f8f9faf3981dd0a5df105ed6546c5daf207c32', 0, 1, '2024-05-07 17:56:01+00', 0, 0, '{"fid": 350592, "object": "user", "pfp_url": "https://i.imgur.com/US6Oy6R.jpg", "profile": {"bio": {"text": "Zora https://zora.co/@crazygom_origin", "mentioned_profiles": []}}, "username": "lovely-jyjy", "power_badge": false, "display_name": "Juyoung_Oh", "active_status": "inactive", "verifications": ["0xe2d7b4247718a7bddbe5cc7d8853b37a4f46abaf"], "follower_count": 1323, "custody_address": "0x5ca29c8c6b7d3cf2c8e32ba5f58579c8e796ad06", "following_count": 2398, "verified_addresses": {"eth_addresses": ["0xe2d7b4247718a7bddbe5cc7d8853b37a4f46abaf"], "sol_addresses": []}}', '{"{\"url\":\"최근 무의식적으로 흥얼거리던 노래.. 너무 올드한가? ^^ https://soundcloud.com/fyevjpwm6huf/sky-1999?si=1ea9c9c024ed44dc8a6e2c1aa1c3a322&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (978969, '0x588d9c5c9a416724ce8d3db39aeffa9c78713db7', 100, 1, '2024-05-07 10:40:50+00', 0, 17, '{"fid": 507856, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d276afed-cc35-44d7-0154-787a1e562e00/rectcrop3", "profile": {"bio": {"text": "Crypto researcher/web3 gamer/lifelong learner/travel addict", "mentioned_profiles": []}}, "username": "!507856", "power_badge": false, "display_name": "Nil", "active_status": "inactive", "verifications": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "follower_count": 677, "custody_address": "0xe2e74686dbfa00e6e34efb3b5aac7216106cf9f8", "following_count": 932, "verified_addresses": {"eth_addresses": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WGYQrWGFMsTN8cvWA\"}"}', 'sonata'), - (988628, '0xc51271e6b74771cf240411beda4e797b78214c8d', 0, 1, '2024-05-07 11:14:43+00', 0, 4, '{"fid": 492181, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ce798017-869a-443c-346e-b7f241eec900/rectcrop3", "profile": {"bio": {"text": "일상 생활 공유해요~\n같이 즐겨요(맞조대리팔!) F4F", "mentioned_profiles": []}}, "username": "jaeyoung87", "power_badge": false, "display_name": "F4F JY87", "active_status": "inactive", "verifications": ["0x48d22ec1033e26433969885e5b2adc82b683491f"], "follower_count": 1354, "custody_address": "0x0b2d3a2a3d277e6929780e5b4d65e8c1b096643d", "following_count": 1749, "verified_addresses": {"eth_addresses": ["0x48d22ec1033e26433969885e5b2adc82b683491f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hTPvq\"}"}', 'sonata'), - (943211, '0x29a53847500c2c63d91188b485fad713acf5497a', 0, 1, '2024-05-07 08:32:57+00', 0, 1, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/you-tobe/sets/yuuri?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173218, '0x12dca4974adf90c2ca0d79a74737bb73d0fcc158', 648, 1, '2024-05-15 13:19:14+00', 0, 11, '{"fid": 16098, "object": "user", "pfp_url": "https://i.imgur.com/45e0dnv.gif", "profile": {"bio": {"text": "i just “am”", "mentioned_profiles": []}}, "username": "jpfraneto", "power_badge": true, "display_name": "jp 🦊🎩", "active_status": "inactive", "verifications": ["0xed21735dc192dc4eeafd71b4dc023bc53fe4df15", "0x59a743e6f2996801031a0ffc60d5154db95cd0dd"], "follower_count": 6910, "custody_address": "0xab20de8f5a4f8e147baac9d1f6e236861485516a", "following_count": 1396, "verified_addresses": {"eth_addresses": ["0xed21735dc192dc4eeafd71b4dc023bc53fe4df15", "0x59a743e6f2996801031a0ffc60d5154db95cd0dd"], "sol_addresses": ["9qr7ofpTpGc1SvgHXTh5qrUNt3uAa9rFKE4AtnPH8p5t"]}}', '{"{\"url\":\"https://soundcloud.com/michael-rasa-1/nexus-2024-bicycle-day?si=17ee7ebe22d94a61989c919a76932a71&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'ooo000ooohs'), - (923957, '0x75b3b1d4fe9d30ccf2242c5b317071d41bb55f41', 0, 1, '2024-05-07 07:33:26+00', 0, 0, '{"fid": 383209, "object": "user", "pfp_url": "https://i.imgur.com/J3AwMjS.jpg", "profile": {"bio": {"text": "Computer engineer\nContributor at Phaver", "mentioned_profiles": []}}, "username": "oflu", "power_badge": false, "display_name": "Oflu", "active_status": "inactive", "verifications": ["0x1379d66a070b90cef31c5a38a799654be8a45093"], "follower_count": 35, "custody_address": "0xbc405eb55b56edde9fce0556671064b5897f382d", "following_count": 97, "verified_addresses": {"eth_addresses": ["0x1379d66a070b90cef31c5a38a799654be8a45093"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Kixc5PnS7VfIJdTs73AcM?si=qEoFvingTaeQH0ZgLrfPmQ&context=spotify%3Asearch%3Aderinden\"}"}', NULL), - (942733, '0xec892cb1dc447420386b8f752676f5c875fb406f', 0, 1, '2024-05-07 08:30:17+00', 0, 3, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 817, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3GCkD\"}"}', NULL), - (959313, '0x9831d8157f16beaa27d9dee0cff1b5235555604d', 0, 1, '2024-05-07 09:15:36+00', 0, 9, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2791, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2500, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/officialbts/bts-dna-1\"}"}', 'sonata'), - (988629, '0x3385fc3fba862050b732e52e9f41b12ad4ce48d6', 0, 1, '2024-05-07 11:15:41+00', 0, 0, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1474, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1214, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/banana_samidare/rain-with-cappuccino?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (942158, '0x24d00a2630dbc1d3bc0c4dedd704dfc227e14285', 0, 1, '2024-05-07 08:28:41+00', 0, 0, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 817, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hx2Fm\"}"}', NULL), - (941549, '0xda57fe44733022f3fc4e2b982ec6b92a04acf494', 0, 1, '2024-05-07 08:28:04+00', 0, 0, '{"fid": 406237, "object": "user", "pfp_url": "https://i.imgur.com/n9QZjwy.jpg", "profile": {"bio": {"text": "팔로우 확인시 맞팔하러 갈게요~ 맞디젠 같이해요~^^\n좋 댓 리도 같이해요~~ 같이 도와가며 커가요~ 함께~\n$Degen let''s go!!!!!!! \nLet’s all be friendly~\n", "mentioned_profiles": []}}, "username": "wjd1004", "power_badge": false, "display_name": "jung hyungjo", "active_status": "inactive", "verifications": ["0x49caea3785e5fc66085e72b8869c557cd2ac8d2c"], "follower_count": 1609, "custody_address": "0x48a4dfe85173cb76f7a652f98c4bd0cc9dc4320e", "following_count": 1217, "verified_addresses": {"eth_addresses": ["0x49caea3785e5fc66085e72b8869c557cd2ac8d2c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fHQ2A\"}"}', NULL), - (1173286, '0xd121376c3f8fd89de998523d4b019f49b905ee5d', 0, 1, '2024-05-15 17:34:12+00', 0, 4, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2047, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":243818,\"hash\":\"0x51da11efee28e49f677bca988e5693b8b835cf00\"}}","{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', 'theblockexp'), - (959320, '0x993d01bfdb57155ea8839dd64b1d595e0c108571', 0, 1, '2024-05-07 09:15:15+00', 0, 3, '{"fid": 21448, "object": "user", "pfp_url": "https://i.imgur.com/zzT3KGj.jpg", "profile": {"bio": {"text": "🪩 techno music aggregator \n🧬 https://link3.to/techno ", "mentioned_profiles": []}}, "username": "techno", "power_badge": false, "display_name": "TECHNO", "active_status": "inactive", "verifications": ["0xc65ebcf5ce433f7e7dbfdbc98aa948dd5bd381b8"], "follower_count": 180, "custody_address": "0x0cf46bc53ddf8e62eb3e45246981372a930ec87b", "following_count": 467, "verified_addresses": {"eth_addresses": ["0xc65ebcf5ce433f7e7dbfdbc98aa948dd5bd381b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/stereo-express/rise-of-the-2nd-sun?si=f6626136fc914bda8720eb7d5e8ecf62&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'techno'), - (766486, '0x24b8f16c0325bb9ba1feb37fdc7e048d347f1317', 0, 1, '2024-05-07 00:39:07+00', 0, 2, '{"fid": 293102, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2f783b8-363d-437c-cab4-02a9594ae500/rectcrop3", "profile": {"bio": {"text": "𝕏のクソ凍結により、とあるアカウントから転生し、一から出直ししたものです。。。どうぞよろしくお願い致します!\n\nhttps://twitter.com/EronFrozen", "mentioned_profiles": []}}, "username": "eronfrozen", "power_badge": false, "display_name": "EronFrozen🎩🍖🔮", "active_status": "inactive", "verifications": ["0xd41726f322e3ff43f3c8edceda1412dd2f20560b"], "follower_count": 1493, "custody_address": "0x1fb423e796206395b97369e1b81ea87294762ff1", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xd41726f322e3ff43f3c8edceda1412dd2f20560b"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":293102,\"hash\":\"0xe79a9d8a37757941a1331dac8feb7deb5748324c\"}}","{\"url\":\"https://open.spotify.com/track/3y6fz9DV5uNGG82n8rEdQ3?si=jRQpPS0uR_azVDBhtlT3XA&context=spotify%3Aalbum%3A6F2wwgRGl0ODGeFZHuNsvo\"}"}', NULL), - (783745, '0x95b4a38d20b985de5b2111c9625f2483739bbfb1', 0, 1, '2024-05-07 02:08:52+00', 0, 1, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1322, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 998, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-19623507/ue7nmlpnk7jo?si=d975fabd7e9a4342875396e3edc470f8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (779164, '0xe1a14915fa83b07d0a04ed203059a60a36f2668b', 0, 1, '2024-05-07 01:43:24+00', 0, 0, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 417, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 425, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6kitedw6FaZamBERBbF1Rz?si=f65dd5f7fa634080\"}"}', NULL), - (828961, '0x09b530782b6a9c731207e5fa7fd6320457795f22', 0, 1, '2024-05-07 04:12:30+00', 0, 0, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 81, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 250, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/fifirong/no-other?referral_source=link\"}"}', NULL), - (783622, '0xa748f25f12db50f21c0b5886086ecae6f583c80b', 0, 1, '2024-05-07 02:06:39+00', 0, 4, '{"fid": 477741, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2ca1b374-391e-4594-c57a-053a77873500/rectcrop3", "profile": {"bio": {"text": "존버남/신뢰/의리/믿음/일상공유/슈캐\n/무조건 리캐 하트/🎩🍖", "mentioned_profiles": []}}, "username": "noincil", "power_badge": false, "display_name": "JON BER🎩🍖", "active_status": "inactive", "verifications": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "follower_count": 3092, "custody_address": "0xfb1fe84faf8d0adb346adb8bee2cc8bc8d32fa4b", "following_count": 3078, "verified_addresses": {"eth_addresses": ["0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2", "0x469d47afb49abaa6be06bdfedb92c499caa2ead0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6gcNr\"}"}', 'sonata'), - (941555, '0x1f4ebee1b8f173d38692c9f827ef9975f41a2d3d', 0, 1, '2024-05-07 08:27:38+00', 0, 0, '{"fid": 406237, "object": "user", "pfp_url": "https://i.imgur.com/n9QZjwy.jpg", "profile": {"bio": {"text": "팔로우 확인시 맞팔하러 갈게요~ 맞디젠 같이해요~^^\n좋 댓 리도 같이해요~~ 같이 도와가며 커가요~ 함께~\n$Degen let''s go!!!!!!! \nLet’s all be friendly~\n", "mentioned_profiles": []}}, "username": "wjd1004", "power_badge": false, "display_name": "jung hyungjo", "active_status": "inactive", "verifications": ["0x49caea3785e5fc66085e72b8869c557cd2ac8d2c"], "follower_count": 1609, "custody_address": "0x48a4dfe85173cb76f7a652f98c4bd0cc9dc4320e", "following_count": 1217, "verified_addresses": {"eth_addresses": ["0x49caea3785e5fc66085e72b8869c557cd2ac8d2c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 01. 남규리 - 그 남자 by Chung Yonghyun on #SoundCloud https://on.soundcloud.com/hRnp5\"}"}', NULL), - (1173344, '0x83b6aada0db34e56b6bd3f446176f28958a12082', 0, 1, '2024-05-15 20:47:42+00', 0, 3, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2047, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/5069fac6-f83c-48be-b089-7be9b73d1642?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/danielallan/so-high-feat-jake-neumar?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'theblockexp'), - (762623, '0xb6b6b50d56e46528d2f80b11198c4a999f22d79e', 0, 1, '2024-05-07 00:20:29+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 300, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 251, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/74muMkVdMYoR65lhmdzy13?si=HuE1jE7pTu6hFp_DGb5KdA&context=spotify%3Aplaylist%3A2xnG5KJuEIN8oNF9Xdnrv0\"}"}', 'bangers'), - (760506, '0xe79a9d8a37757941a1331dac8feb7deb5748324c', 0, 1, '2024-05-07 00:12:46+00', 0, 1, '{"fid": 293102, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2f783b8-363d-437c-cab4-02a9594ae500/rectcrop3", "profile": {"bio": {"text": "𝕏のクソ凍結により、とあるアカウントから転生し、一から出直ししたものです。。。どうぞよろしくお願い致します!\n\nhttps://twitter.com/EronFrozen", "mentioned_profiles": []}}, "username": "eronfrozen", "power_badge": false, "display_name": "EronFrozen🎩🍖🔮", "active_status": "inactive", "verifications": ["0xd41726f322e3ff43f3c8edceda1412dd2f20560b"], "follower_count": 1493, "custody_address": "0x1fb423e796206395b97369e1b81ea87294762ff1", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xd41726f322e3ff43f3c8edceda1412dd2f20560b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0lOTgQ4MLNZUN4qOwbWZPf?si=3xiHlV-dQqK_Z6FjbdsEZg&context=spotify%3Aalbum%3A6F2wwgRGl0ODGeFZHuNsvo\"}"}', NULL), - (782725, '0x9863795282e489b53d5aca0011d88606c840d12b', 0, 1, '2024-05-07 02:01:57+00', 0, 0, '{"fid": 401805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baf0f02d-0a81-476e-78af-98c7aaa38000/original", "profile": {"bio": {"text": "Lovely 🤩\n대한민국 국민 🇰🇷 \n\n볼수록 매력있고 꽤 괜찮은사람.\n\n경제적으로 완전한 자유를 누리는 자.\n\n", "mentioned_profiles": []}}, "username": "peaceful-hj", "power_badge": false, "display_name": "Peaceful-hj", "active_status": "inactive", "verifications": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "follower_count": 1815, "custody_address": "0xe6520f1c42419d3526a8a812fe3850aaae6208ef", "following_count": 3257, "verified_addresses": {"eth_addresses": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MGnda\"}"}', 'sonata'), - (783028, '0x6765d20c56c9b056f5f178ef173e4e86bcfc9a74', 0, 1, '2024-05-07 02:03:24+00', 0, 1, '{"fid": 502365, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/76e1ed70-c944-4f3c-51a8-0d077955f700/rectcrop3", "profile": {"bio": {"text": "🤍Love yourself. Then everything will be lovely❤️ $degen! crypto! base! zora!\n\n\n", "mentioned_profiles": []}}, "username": "qquqqu", "power_badge": false, "display_name": "qqu", "active_status": "inactive", "verifications": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "follower_count": 1278, "custody_address": "0x62f48f097c1e6de7bc958864171fe3158a34dd2e", "following_count": 1140, "verified_addresses": {"eth_addresses": ["0xc0ca6eab66c36575b41a60a7944e33c2bdddc7e4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KexiaZHkKPR2sqCW6\"}"}', NULL), - (970109, '0xe9936784df6417b0cce477ff31f0d60f7cafadb2', 0, 1, '2024-05-07 09:55:40+00', 0, 4, '{"fid": 326700, "object": "user", "pfp_url": "https://i.imgur.com/WWNWtHc.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "preflop12345", "power_badge": false, "display_name": "preflop🎩 🍖 ", "active_status": "inactive", "verifications": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "follower_count": 1928, "custody_address": "0x57bb96ec480a2043f2ac8386afbd7d3f8fb15ed3", "following_count": 936, "verified_addresses": {"eth_addresses": ["0xe0ae2bc3929008730dc9ec4d13d2096b686adb50"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-55808555/dinosaur-akmu?si=82af3525017d44fba8f92b215e15f946&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (959343, '0xc283baebf1a01394e9c650cfabb45867723ba0d2', 0, 1, '2024-05-07 09:15:09+00', 0, 2, '{"fid": 428262, "object": "user", "pfp_url": "https://i.imgur.com/fsMvnig.jpg", "profile": {"bio": {"text": "\n\n\nLove 🩷♥️❤️\n\nTravel \n\n\nFood \n\n⛳️⛵️🏝📘", "mentioned_profiles": []}}, "username": "boha0106", "power_badge": false, "display_name": "Boha 🩷 🎩🍖", "active_status": "inactive", "verifications": ["0x161796d461324f30db0d0302ae77f5c5fc72dca3", "0x161796d461324f30db0d0302ae77f5c5fc72dca3"], "follower_count": 3119, "custody_address": "0x00dc37299aafc80258f2b940fab25e99b645ad8e", "following_count": 2840, "verified_addresses": {"eth_addresses": ["0x161796d461324f30db0d0302ae77f5c5fc72dca3", "0x161796d461324f30db0d0302ae77f5c5fc72dca3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LqoXE\"}"}', 'sonata'), - (941554, '0x78a3e46d3331d7914bf78977fbbec378f274547f', 0, 1, '2024-05-07 08:28:05+00', 0, 0, '{"fid": 472831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6047f98a-3794-4b65-5525-ae5410183600/rectcrop3", "profile": {"bio": {"text": "World literature 📚 ✒️\nLiving in the light", "mentioned_profiles": []}}, "username": "goldmanbank", "power_badge": false, "display_name": "Ehsan🍖🎩🏦", "active_status": "inactive", "verifications": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "follower_count": 1222, "custody_address": "0x66f337aef04da6aa0c022a6041a02c5034fed87c", "following_count": 1685, "verified_addresses": {"eth_addresses": ["0x586efe3290bc652916708e13ff97de294bd493e7"], "sol_addresses": ["6LmaJFGTnc8YLUTzjw3ys4miTmzaN9gpz64hmMhfSXAm"]}}', '{"{\"url\":\"https://on.soundcloud.com/bJ4gj\"}"}', 'sonata'), - (923600, '0x0b9a87d9eaf6765bdc2f8e49f739dd7f8743e5a4', 1010, 1, '2024-05-07 07:29:49+00', 0, 0, '{"fid": 507380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d510649c-984d-4ac8-82c2-1a6f09457e00/original", "profile": {"bio": {"text": "Movies and art lover", "mentioned_profiles": []}}, "username": "!507380", "power_badge": false, "display_name": "Anchor", "active_status": "inactive", "verifications": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "follower_count": 91, "custody_address": "0xba4430479cce3480d93e3fd91c9bcfcd37ee5b3c", "following_count": 445, "verified_addresses": {"eth_addresses": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A9uSofQkES9DY42J6\"}"}', NULL), - (1173174, '0x7e05a3fd3411a418b92678af7a7f5cd16ec2fc3d', 0, 1, '2024-05-15 05:30:59+00', 0, 4, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3878, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1009, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xP3je\"}"}', 'sonata'), - (978966, '0xa0f74760b310e6e0e8958abce427550a231ce171', 0, 1, '2024-05-07 10:40:32+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1142, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/wagon-013/sets/lily-chou-chou?si=1294c3c53d094240a3f6140bf1f4503f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (988610, '0x89e67680d423ba7cbbc9b453794cbd759fef141f', 0, 1, '2024-05-07 11:15:42+00', 0, 1, '{"fid": 500614, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a9f37b6-48f8-4d2c-69da-a2f2cd786d00/rectcrop3", "profile": {"bio": {"text": "🌈✨🌈✨🌈We are so early 🌈✨🌈✨🌈 Mint of zora 👉 https://zora.co/@baaambin", "mentioned_profiles": []}}, "username": "baaambin", "power_badge": false, "display_name": "beenni💭🎩🍖", "active_status": "inactive", "verifications": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "follower_count": 1692, "custody_address": "0x76f30b04fca1502795b3aec1f243a36f28d0aabc", "following_count": 1978, "verified_addresses": {"eth_addresses": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7pj9evzkVwKWVBjVA\"}"}', 'sonata'), - (976853, '0x26da69b2f88136494d1a45e7be076d430de433f2', 0, 1, '2024-05-07 10:31:04+00', 0, 2, '{"fid": 492039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd8a4449-4451-42bf-efae-a209b0721300/rectcrop3", "profile": {"bio": {"text": "Welcome to all coin info sharing I respect any opinions.", "mentioned_profiles": []}}, "username": "vvely", "power_badge": false, "display_name": "Kirby⭐️", "active_status": "inactive", "verifications": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "follower_count": 1845, "custody_address": "0x4aa36bd75aae9d6cb64f43e154730bd311787e7f", "following_count": 2694, "verified_addresses": {"eth_addresses": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xQyMATHrxBWDWBkPA\"}"}', 'sonata'), - (943207, '0x87a6a4ee178b37ae03ecc7186aafa6fa6c79f24f', 0, 1, '2024-05-07 08:33:26+00', 0, 1, '{"fid": 425076, "object": "user", "pfp_url": "https://i.imgur.com/QanYYcP.jpg", "profile": {"bio": {"text": "F4F🖤조대리🖤맞디🖤", "mentioned_profiles": []}}, "username": "hyojuncast", "power_badge": false, "display_name": "HyojunKim", "active_status": "inactive", "verifications": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "follower_count": 1263, "custody_address": "0xf62c45992ff210140dfbda22bdef5377c16f9e9e", "following_count": 1295, "verified_addresses": {"eth_addresses": ["0xef4ef6d7360550f5bde42c1db2c7653ec405244f"], "sol_addresses": []}}', '{"{\"url\":\"\\\"이별은 유쾌해\\\" https://soundcloud.com/vs0wvb6rf6rw/moonwalk-stranger-ver-bangja?si=3b497d6444484669b695e7800ea371b9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (970192, '0x6eededbe52ff46509ac47eabeb9f65d919e43e3d', 0, 1, '2024-05-07 09:57:04+00', 0, 1, '{"fid": 419947, "object": "user", "pfp_url": "https://i.imgur.com/CTIvf5a.jpg", "profile": {"bio": {"text": "Japan\nI''ll follow back!!みなさん宜しくです!", "mentioned_profiles": []}}, "username": "tsumonomi", "power_badge": false, "display_name": "tsumonomi.degen", "active_status": "inactive", "verifications": ["0x2d58788dbc9518c5926e9854e0f02cb433aecd00"], "follower_count": 1137, "custody_address": "0xb932c099c58ec2452211b8fda5fbc0614531c2a6", "following_count": 1322, "verified_addresses": {"eth_addresses": ["0x2d58788dbc9518c5926e9854e0f02cb433aecd00"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WoxWvuUx5uqux77H9\"}"}', 'musicjp'), - (975884, '0x01c6e604a5b2c9c1997137fa8e4172b2e0097e84', 0, 1, '2024-05-07 10:25:00+00', 0, 2, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/the-cheerleader/no-doubt-dont-speak?si=56cd810f1aea41479e3b08bcbf3f5c9b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (974149, '0x68bf636e74f1f7b302896b53432dc33c3abdbcea', 0, 1, '2024-05-07 10:18:45+00', 0, 1, '{"fid": 427626, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQP55ePngG81GsGs5wSmgfZXbgvyix67bS2d2rSKcHrfa?filename=_20240414_185305.jpeg", "profile": {"bio": {"text": "Have a nice day🍓🍖☕️\n#프로소통러\n#한화이글스 보살팬 너구리\n#워프캐스트사랑해요\nYou''ll be happy soon", "mentioned_profiles": []}}, "username": "top01", "power_badge": false, "display_name": "Raccoonchoi🌈🍓🍖", "active_status": "inactive", "verifications": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "follower_count": 2773, "custody_address": "0xb2af8a3e110e595bb5027e832a7e8d0a396b72fa", "following_count": 2352, "verified_addresses": {"eth_addresses": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "sol_addresses": []}}', '{"{\"url\":\"Listen to NewJeans (뉴진스) ''Hype Boy'' by vic on #SoundCloud https://on.soundcloud.com/k1cSh\"}"}', NULL), - (1035842, '0x01ce57786a128295496f5802e0094ca8a940f465', 0, 1, '2024-05-07 13:31:57+00', 0, 5, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1780, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2219, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YerWcozzANneBsgN6\"}"}', 'sonata'), - (1022808, '0x2299cb70ea597d8c6bac67effdeaac65dc2b32f4', 0, 1, '2024-05-07 12:59:47+00', 0, 1, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 709, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 863, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aAnC3E9Tq6fCLExNA\"}"}', 'japanese-music'), - (970616, '0xd61ce9d9c10769844b88bf047c5b3a91d823a46f', 0, 1, '2024-05-07 10:02:31+00', 0, 7, '{"fid": 240835, "object": "user", "pfp_url": "https://i.imgur.com/EozZCWk.png", "profile": {"bio": {"text": "Knowledgeable broke anon", "mentioned_profiles": []}}, "username": "kenanie.eth", "power_badge": true, "display_name": "kenanie.eth", "active_status": "inactive", "verifications": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "follower_count": 2526, "custody_address": "0xc6dd7067493b6dd22f56f61fc72d8980bf883e1f", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "sol_addresses": ["C4Bg7Xa4nnY2Ty5j4j99nEwoP23YzK6SCDPTHVfHTkv7"]}}', '{"{\"url\":\"https://open.spotify.com/track/346SJSEbB6pNZMpwovxDiu?si=Mkmk087hRgCwcWoBjMS-EA&context=spotify%3Aalbum%3A79ONNoS4M9tfIA1mYLBYVX\"}"}', 'sonata'), - (978239, '0x52eaa1a4f28dc5fb3176a8e3e5b8fbcf158dd70d', 0, 1, '2024-05-07 10:34:37+00', 0, 2, '{"fid": 497740, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a0acfdf-c4e9-4e41-b673-da926c664500/rectcrop3", "profile": {"bio": {"text": "Love music, animals, NFT and Crypto", "mentioned_profiles": []}}, "username": "candy7", "power_badge": false, "display_name": "Candy", "active_status": "inactive", "verifications": ["0x3e0d2a8c7eb98a1c8ff3e2a5b4a6e4c0f5363bd5"], "follower_count": 590, "custody_address": "0x74f6bcd837b3c0cb148b641ae6cddaa9267b5a53", "following_count": 831, "verified_addresses": {"eth_addresses": ["0x3e0d2a8c7eb98a1c8ff3e2a5b4a6e4c0f5363bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/odesza/zhu-faded-odesza-remix?ref=clipboard&p=a&c=0&si=d7368a920e6f4b6eb256df043ea7df68&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (978836, '0xa4fa5b1019937318bc61d6c37c317783ff696f31', 0, 1, '2024-05-07 10:38:12+00', 0, 1, '{"fid": 509691, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e57ba547-eb10-42a0-8e54-bb73d43c5e00/rectcrop3", "profile": {"bio": {"text": "환생 2회차ㅠㅠ\n답방 잘가는 제로콜라!", "mentioned_profiles": []}}, "username": "!509691", "power_badge": false, "display_name": "zerocoke", "active_status": "inactive", "verifications": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "follower_count": 125, "custody_address": "0x4b8fa47472b2979362115190127acd1793f933da", "following_count": 195, "verified_addresses": {"eth_addresses": ["0x48a7ca7f8a21e73228bc0f32d553580a38988990"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SrmiogAPgTR3vS3p6\"}"}', NULL), - (1050664, '0xdfc002b5bc908d676b509babe971e8a261dbdb27', 0, 1, '2024-05-07 14:25:22+00', 0, 1, '{"fid": 417261, "object": "user", "pfp_url": "https://aoxjfk5aks5jufxlavz5ms6btpko3aatqfzanhhvtadb5j7n2v5q.arweave.net/A66Sq6BUupoW6wVz1kvBm9TtgBOBcgac9ZgGHqft1Xs/", "profile": {"bio": {"text": "Just make money", "mentioned_profiles": []}}, "username": "miladjz", "power_badge": false, "display_name": "Miladjz", "active_status": "inactive", "verifications": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "follower_count": 307, "custody_address": "0x0aee32bc354b9a5f1f03ee5db99f491151029658", "following_count": 391, "verified_addresses": {"eth_addresses": ["0xd3d856758267dbefb2648278d29c1c4526f3431f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-443173178/k1lyan-mixx-glokk40spazz-free?ref=clipboard&p=a&c=0&si=e99a6378d27e4e5d9b47c3f2e5502d92&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (970608, '0x2387f8a9589a00b3cc9f8f250e7f3381c31c69dc', 0, 1, '2024-05-07 10:01:38+00', 0, 0, '{"fid": 504968, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a64799a-97b7-4279-8166-7879e590a800/rectcrop3", "profile": {"bio": {"text": "i am conquer", "mentioned_profiles": []}}, "username": "borjigintemujin", "power_badge": false, "display_name": "TemuJin🎩🍖", "active_status": "inactive", "verifications": ["0xf55c54c399a4d3fa4735e8d399f676a39c91ec8a"], "follower_count": 79, "custody_address": "0xcccfcfd81eb837d014139ae226efd289bf75a77d", "following_count": 130, "verified_addresses": {"eth_addresses": ["0xf55c54c399a4d3fa4735e8d399f676a39c91ec8a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user135879/album-ver-lucia-with?in=bpwabzjznlcz/sets/q8dbxugeyrup&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1022809, '0x7c3b2fc50e7ce3dd6061005e94430c8f4da881a5', 0, 1, '2024-05-07 12:59:01+00', 0, 0, '{"fid": 413488, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ef28212-4bd5-4146-1f56-cf3523df6200/rectcrop3", "profile": {"bio": {"text": "I am very happy man,and work at school", "mentioned_profiles": []}}, "username": "0xking1", "power_badge": false, "display_name": "king", "active_status": "inactive", "verifications": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "follower_count": 487, "custody_address": "0x91ab7af5a609ad9ddf0d877dbf0ccbbaf2533c9a", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aYzNs\"}"}', NULL), - (1114058, '0x8a01f828e051b00aee642f8475cdf3d0b581ab79', 0, 1, '2024-05-07 17:13:22+00', 0, 2, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 678, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 430, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/serious-url/closer-feat-jennie-a?si=f2ae732063534068923cbf3b42546ac0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (976846, '0x72f6acf43343a32939901c2acc7a3d820a3ae3a7', 0, 1, '2024-05-07 10:31:07+00', 0, 0, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1473, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1213, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/second-copy/yorushika-parade?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (943661, '0x4d09496f103228e32f438b1a0fdb608d36d6d8e6', 0, 1, '2024-05-07 08:34:29+00', 0, 6, '{"fid": 503541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7bd157f-1901-484d-4e68-9a2d9c7abe00/rectcrop3", "profile": {"bio": {"text": "✔️소소한 일상공유✔️소소한 행복🍀 \n\n✔️The best is yet to come🔥", "mentioned_profiles": []}}, "username": "jmggang", "power_badge": false, "display_name": "PassionJM", "active_status": "inactive", "verifications": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "follower_count": 901, "custody_address": "0x3e587e88dca50b6e3f0b99f2645fefbb283ebe7d", "following_count": 924, "verified_addresses": {"eth_addresses": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FaqJCiYiWr3X5WKT6\"}"}', 'sonata'), - (877218, '0x72962881f3f978330aa6c7861051827b9a1d5053', 0, 1, '2024-05-07 06:05:36+00', 0, 1, '{"fid": 199472, "object": "user", "pfp_url": "https://i.imgur.com/kW9PXhs.jpg", "profile": {"bio": {"text": "Artist building unique experiences in Web3\nRyanTReynolds.xyz\nThe 👁️ is the 🚪 to the SOUL", "mentioned_profiles": []}}, "username": "imryanrey.eth", "power_badge": false, "display_name": "Ryan T. Reynolds🎩✈️", "active_status": "inactive", "verifications": ["0x715cefa260f40e9cc3a4447ad020a9bba0ae9a52"], "follower_count": 115, "custody_address": "0xf666bad21e3f6de7bb45bfaa1a6e3d22b2158e26", "following_count": 423, "verified_addresses": {"eth_addresses": ["0x715cefa260f40e9cc3a4447ad020a9bba0ae9a52"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ryantreynolds/look-up?referral_source=link\"}"}', NULL), - (1173275, '0x60f651b4f18263e6fe534eea0de8854f341c81dd', 0, 1, '2024-05-15 16:44:08+00', 0, 0, '{"fid": 191554, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c12cac2-cd2b-4d9d-0ee9-bae408003a00/original", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\nhttps://laputa.gg\nLive: \nhttps://www.unlonely.app/channels/ivc\nBldgHack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a", "0xe7ae91f2819eb93dd1b08cc7dd15da2d7be154ab"], "follower_count": 1945, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 400, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a", "0xe7ae91f2819eb93dd1b08cc7dd15da2d7be154ab"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":191554,\"hash\":\"0x4ffb284232ce10bd8c7c4d7cf3abb1b5cc9a140d\"}}","{\"url\":\"https://www.sound.xyz/ivcained/hubble\"}"}', 'soundxyz'), - (952648, '0x609a94a4614b7ff1fb81ba1e04a42327a75da532', 0, 1, '2024-05-07 09:02:22+00', 0, 9, '{"fid": 455883, "object": "user", "pfp_url": "https://i.imgur.com/Y8pm4H1.jpg", "profile": {"bio": {"text": "Send my love ❤️ / food, cosmetics, music, movie ", "mentioned_profiles": []}}, "username": "bluejelly", "power_badge": false, "display_name": "bjelly", "active_status": "inactive", "verifications": ["0x6b269da0be64e15f65138a311615857b00bb9a4e"], "follower_count": 2764, "custody_address": "0x3396fe212d9e4864d3b9490053ec75b6e30933ca", "following_count": 2598, "verified_addresses": {"eth_addresses": ["0x6b269da0be64e15f65138a311615857b00bb9a4e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KwGF7\"}"}', 'sonata'), - (954053, '0x109a89a537b13d9d9aa0491b215b97b3b504edd0', 0, 1, '2024-05-07 09:03:13+00', 0, 1, '{"fid": 500461, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc4873ea-85ed-420e-739f-e960fb8b8600/rectcrop3", "profile": {"bio": {"text": "괜찮아.\nYou''ll be happy.", "mentioned_profiles": []}}, "username": "mondss", "power_badge": false, "display_name": "shine_my_life🎩", "active_status": "inactive", "verifications": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "follower_count": 1173, "custody_address": "0xa044138872bbb075008d24c1921fac2f00e7c58b", "following_count": 816, "verified_addresses": {"eth_addresses": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 10000 Hours (cover) by JK of BTS by BTS on #SoundCloud https://on.soundcloud.com/k1qAf\"}"}', NULL), - (1036374, '0xee0dead3fe27f5862a88915a48d1abb80da3e680', 0, 1, '2024-05-07 13:33:31+00', 0, 2, '{"fid": 500333, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4314c030-4f97-44dd-f01a-495f822eb400/rectcrop3", "profile": {"bio": {"text": "Hi 😃 I love the sea\n반가워요 👍👍👍👍\n\ngrowing snow crabs🦀🦞🔥🔥", "mentioned_profiles": []}}, "username": "seaboy", "power_badge": false, "display_name": "Seaboy🐳", "active_status": "inactive", "verifications": ["0x70646d5758397222f65fe1f841ad05d96f60d352"], "follower_count": 1534, "custody_address": "0x8c88b161d7716fa881597a9a4eba62b5e82f62d2", "following_count": 2088, "verified_addresses": {"eth_addresses": ["0x70646d5758397222f65fe1f841ad05d96f60d352"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TUQdj8zcGNvuggg5A\"}"}', NULL), - (1023421, '0x95942aa8a151132b50ea3e6de32df728397dc175', 0, 1, '2024-05-07 12:59:05+00', 0, 0, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 438, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 386, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/55cwGtYrExG7slEAor5jeR?si=kz5RIj-OQZqXC-ESkPQgaw\"}"}', NULL), - (1049046, '0x6b0d88ad66638e2ab99578cc4e7c7697f217bae9', 0, 1, '2024-05-07 14:21:18+00', 0, 0, '{"fid": 477435, "object": "user", "pfp_url": "https://i.imgur.com/f20NliV.jpg", "profile": {"bio": {"text": "Hi warpcast!", "mentioned_profiles": []}}, "username": "han-byeol", "power_badge": false, "display_name": "Han-byeol", "active_status": "inactive", "verifications": ["0xd644646307c0fcaaec41c642ac6b3cd642a4289f"], "follower_count": 2272, "custody_address": "0xe6d5dbae4faf22ad0c35db7174b902ad5d32e355", "following_count": 1871, "verified_addresses": {"eth_addresses": ["0xd644646307c0fcaaec41c642ac6b3cd642a4289f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kjX8vwASgnMKktQBA\"}"}', NULL), - (974998, '0xe43ad7e921f97ab463cf0c30b53922c39c8e6a58', 0, 1, '2024-05-07 10:21:08+00', 0, 0, '{"fid": 451949, "object": "user", "pfp_url": "https://i.imgur.com/ZbJrg7X.jpg", "profile": {"bio": {"text": "In Love with 🌵", "mentioned_profiles": []}}, "username": "cactuss", "power_badge": false, "display_name": "Cactus ", "active_status": "inactive", "verifications": ["0x25ae5bee0404e99014ff66457f5103153f2d5c07"], "follower_count": 866, "custody_address": "0xd3ac23b7fe1797f19194e68ba627b31773068ce5", "following_count": 870, "verified_addresses": {"eth_addresses": ["0x25ae5bee0404e99014ff66457f5103153f2d5c07"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/linkinpark/in-the-end?ref=clipboard&p=a&c=0&si=7c065dc283244c95bad6ed67f104ca1c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173306, '0x2f9362c8d2d8cba2cae1d4586795a973c91afee5', 0, 1, '2024-05-15 18:32:56+00', 0, 4, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 575, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 467, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qvZEbSwMmpVvKEqs8\"}"}', 'sonata'), - (959342, '0x61890f234f0ecec7b913788cbaff1499df3c27f4', 0, 1, '2024-05-07 09:14:43+00', 0, 1, '{"fid": 505556, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8290c871-b580-42d9-4083-1b5c2adcd100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "pivot", "power_badge": false, "display_name": "pivot", "active_status": "inactive", "verifications": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "follower_count": 924, "custody_address": "0x6c1d49afdb334e1728a0193198584fff3012e63b", "following_count": 805, "verified_addresses": {"eth_addresses": ["0xc653e8962f7daa73a9d0b950e44acf265b4fe243"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/javier-loise/elton-john-dua-lipa-cold-heart-pnau-javier-penna-extended-remixfree24bit48hz-master-final?si=c0aac6eafcca47c3bf949e133cdd182b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (995113, '0xa7cd4d92d3ba641c6caaf4b424f9f1cf8b82e848', 0, 1, '2024-05-07 11:43:52+00', 0, 0, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1119, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 959, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cUe2D56mfvqSSDuc7\"}"}', 'sonata'), - (1083391, '0xc25e44a189a0a41fa2b4b549d193c26d0417b588', 0, 1, '2024-05-07 15:37:54+00', 0, 1, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 377, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 556, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jenienamm/john-park?si=ba13ed05c91c4e968da7e5f2fc44ee60&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1121613, '0x5b114ec557431d5a1131baf97a29a364138d886c', 110, 1, '2024-05-07 17:55:46+00', 0, 2, '{"fid": 331263, "object": "user", "pfp_url": "https://i.imgur.com/dg2UHVb.jpg", "profile": {"bio": {"text": "music made for getting lost", "mentioned_profiles": []}}, "username": "greenring", "power_badge": false, "display_name": "Green Ring", "active_status": "inactive", "verifications": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "follower_count": 35, "custody_address": "0xf9ae5ec1430d9cb32339a719e9682b0b2411c123", "following_count": 132, "verified_addresses": {"eth_addresses": ["0xc3af8efe3c865b8363a79b13b27db530eb5d24af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jessekendal/little-bloom\"}"}', NULL), - (994652, '0x476a25608b7b27e84eaf10d718b8c97154aa3fee', 0, 1, '2024-05-07 11:39:18+00', 0, 26, '{"fid": 507486, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/749795c3-eb26-4cb9-dc80-7ee34b556600/rectcrop3", "profile": {"bio": {"text": "Football is not just a game, it can be said that football is the death of life", "mentioned_profiles": []}}, "username": "!507486", "power_badge": false, "display_name": "Jakson", "active_status": "inactive", "verifications": ["0xb2c67cb2e5d2e1e8c03c98cd33c9267f7da11433"], "follower_count": 523, "custody_address": "0xb6c5166bc2d809b15628dfc0f987fc31aa2acdc5", "following_count": 948, "verified_addresses": {"eth_addresses": ["0xb2c67cb2e5d2e1e8c03c98cd33c9267f7da11433"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/73e0de94-1f5e-4d6e-42da-bbe410ac5c00/original\"}","{\"url\":\"http://sound.xyz\"}"}', NULL), - (1160318, '0x83b8477f9882e23198a9c9b611d165f468e5f968', 0, 1, '2024-05-08 18:26:16+00', 0, 6, '{"fid": 9581, "object": "user", "pfp_url": "https://i.seadn.io/gae/lXENY3cJnutJqOMOvW_4QAqP_4rhe8RcHHWJl8gl145IBOSwRUVRS6NDk5wcIgEEAAn_lqDrRB32-xmwWm-N-zYeLR5h_7UFq1MyRg?w=500&auto=format", "profile": {"bio": {"text": "fridays at the park season 002 https://zora.co/collect/base:0x1bbea2cc3b2c41774687fd00684ad12f9a666557/6", "mentioned_profiles": []}}, "username": "thepark", "power_badge": true, "display_name": "the park", "active_status": "inactive", "verifications": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "follower_count": 2359, "custody_address": "0x4d125b80e2217b0cdfb366cfb77b84a3d3a94751", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2VOp3fNJpmklVZka3e0fuZ?si=1f1776137d294ae4\"}"}', NULL), - (970662, '0xd44dbd13ea848090b4291a1dba62d00fd60d4654', 0, 1, '2024-05-07 10:04:01+00', 0, 1, '{"fid": 316238, "object": "user", "pfp_url": "https://i.imgur.com/Fn4r5cV.png", "profile": {"bio": {"text": "ใครอยากเป็นเศรษฐี ?", "mentioned_profiles": []}}, "username": "nakanpro", "power_badge": false, "display_name": "🍖nakanpro🍖🔄🎩", "active_status": "inactive", "verifications": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "follower_count": 2271, "custody_address": "0xc6f8cec56d094d9ec265fab4c55241c9f51528a2", "following_count": 2241, "verified_addresses": {"eth_addresses": ["0xa0b839405dae759a07a61918840fb56aae2ba9f7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nk-nakarin-keyura/c-doio-90-sunflower-2?si=4a52793bec154254952c0b556f73ee97&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'lofi'), - (991731, '0x222d058d06816a49707a8489892cdb59974157e3', 0, 1, '2024-05-07 11:28:01+00', 0, 0, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1476, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1624, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tygathemill/taeyeon-i-fine-why-11-11-mashup?si=a182fc302be848158a32294a2321d541&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173193, '0xc3351dce57fd896b8daadcbc81cc104bef2bfd8e', 0, 1, '2024-05-15 07:51:25+00', 0, 8, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3878, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1009, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YnYtg\"}"}', 'sonata'), - (970615, '0x33dc04b265f18911a468a04c4d6e05d92daaa585', 0, 1, '2024-05-07 10:02:22+00', 0, 6, '{"fid": 401441, "object": "user", "pfp_url": "https://i.imgur.com/xw6m1Wy.jpg", "profile": {"bio": {"text": "반응이 늦더라도 조금만 기다려주세요. \n", "mentioned_profiles": []}}, "username": "woawoame", "power_badge": false, "display_name": "Lemon", "active_status": "inactive", "verifications": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "follower_count": 2066, "custody_address": "0xe8b627f4c3b83022f8bacbd4d0f957e1f31e6318", "following_count": 2323, "verified_addresses": {"eth_addresses": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sHzVq\"}"}', 'sonata'), - (970826, '0x5b2db0a006c63abb99d274ceca3db71fcadd522e', 0, 1, '2024-05-07 10:06:02+00', 0, 5, '{"fid": 425481, "object": "user", "pfp_url": "https://i.imgur.com/FXLhz7b.jpg", "profile": {"bio": {"text": "I like memes", "mentioned_profiles": []}}, "username": "ildevo", "power_badge": false, "display_name": "ildevo🎩🍖🔵", "active_status": "inactive", "verifications": ["0x79722a9a17b3673b820717e5d872b547fc856377"], "follower_count": 2176, "custody_address": "0x24282f0763e780cf175da14d9960e79cfbb0434d", "following_count": 2637, "verified_addresses": {"eth_addresses": ["0x79722a9a17b3673b820717e5d872b547fc856377"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nGRDL61aEP8NoBDi6\"}"}', NULL), - (995737, '0x4fdbc644662d9262623431b79c1ba20f7bff6075', 0, 1, '2024-05-07 11:44:42+00', 0, 1, '{"fid": 512000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c15eac0-f0f3-4f9a-b77a-efacc2598d00/rectcrop3", "profile": {"bio": {"text": "형은 거짓말 안해!\n소통 확실하게 한다!\n거짓말하면 진실의방으로!", "mentioned_profiles": []}}, "username": "chunys002", "power_badge": false, "display_name": "마동석", "active_status": "inactive", "verifications": ["0x305a09a68c0f305cb85a05093ae395fc2002735f"], "follower_count": 442, "custody_address": "0x740cd73e18c1ec74895d9c498d4c2f745a2ee07a", "following_count": 688, "verified_addresses": {"eth_addresses": ["0x305a09a68c0f305cb85a05093ae395fc2002735f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aYgkD\"}"}', 'sonata'), - (1023672, '0x9516bec4f3fd8899b5d09a74459ba6716f9b8ac7', 0, 1, '2024-05-07 13:00:18+00', 0, 3, '{"fid": 469005, "object": "user", "pfp_url": "https://i.imgur.com/JSRHEF3.jpg", "profile": {"bio": {"text": "반가워요 👑👑👑\n우리소통하며지내요 ʕ·͡ˑ·ཻʔ \n선팔/맞팔/좋아요/댓글/반사", "mentioned_profiles": []}}, "username": "sodaling", "power_badge": false, "display_name": "Sodaling", "active_status": "inactive", "verifications": ["0x3f853e2c93daac0fdb23b2d0464533ab7467e7bb"], "follower_count": 1380, "custody_address": "0xb190a7840ec4b23bfde4b505c2f606828bce375a", "following_count": 1039, "verified_addresses": {"eth_addresses": ["0x3f853e2c93daac0fdb23b2d0464533ab7467e7bb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/E15gz8PkTMkH67aFA\"}"}', 'sonata'), - (995115, '0x407a4690243ecaeda63bf46be5b8823a7c109e25', 0, 1, '2024-05-07 11:43:39+00', 0, 1, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1427, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1937, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wHAx7UHnKSpwvSQ79\"}"}', 'sonata'), - (944783, '0x78bd4646fea98ac40bab6d6d9acd4f5e717cd67f', 0, 1, '2024-05-07 08:36:43+00', 0, 2, '{"fid": 417704, "object": "user", "pfp_url": "https://i.imgur.com/p6NbQjC.jpg", "profile": {"bio": {"text": "i like cryptocurrency\nbe the specialist\nProvides information, news, chart analysis, and air-drop", "mentioned_profiles": []}}, "username": "intro12", "power_badge": false, "display_name": "Intro", "active_status": "inactive", "verifications": ["0x304d493028c592829a05222b65671d1944c8e56b"], "follower_count": 3069, "custody_address": "0xe48e93b40bd32463d986d1fae13f8f390679e5ba", "following_count": 1031, "verified_addresses": {"eth_addresses": ["0x304d493028c592829a05222b65671d1944c8e56b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-156938918/kiss-me-sixpence-none-the-richer?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (989133, '0x84c2e22fd4b9daebb9aaa516381cbe8e5a63fed4', 0, 1, '2024-05-07 11:16:17+00', 0, 3, '{"fid": 500970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b9ac51f6-4a2f-466b-945c-185d091fe400/rectcrop3", "profile": {"bio": {"text": "I‘m back", "mentioned_profiles": []}}, "username": "jhj", "power_badge": false, "display_name": "JHJ", "active_status": "inactive", "verifications": ["0xf42fd970012d4b5d2e5d369cd3a6bd68ccd11ced"], "follower_count": 1426, "custody_address": "0xceda2c01fc4164a03c72fc53e895248fabb99d03", "following_count": 754, "verified_addresses": {"eth_addresses": ["0xf42fd970012d4b5d2e5d369cd3a6bd68ccd11ced"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G4n2x1K9HYMzHAe76\"}"}', 'sonata'), - (1173205, '0x7475b8db755e751e0d98790423a53e78ac17d995', 1210, 1, '2024-05-15 10:19:37+00', 0, 3, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 575, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 467, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Yky5f5UzgXfwNgCJA\"}"}', 'sonata'), - (1049048, '0x6617320dfbe8bc963f7829ce401e517dd2f85cfa', 0, 1, '2024-05-07 14:20:58+00', 0, 0, '{"fid": 501820, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60e10659-76b4-4660-8806-1b456771d300/rectcrop3", "profile": {"bio": {"text": "From online to on-chain", "mentioned_profiles": []}}, "username": "b24d", "power_badge": false, "display_name": "Kuny", "active_status": "inactive", "verifications": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "follower_count": 1059, "custody_address": "0x19073cd6a24bd9f4479367b98868184b06e502f1", "following_count": 1356, "verified_addresses": {"eth_addresses": ["0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 그남자 그여자 & 술이야 - 윤민수 by user3973992 on #SoundCloud https://on.soundcloud.com/fUtFo\"}"}', NULL), - (1024533, '0x59bbcd4b4e10a73ce42cf1f55f313a25a9695d7e', 0, 1, '2024-05-07 13:02:51+00', 0, 11, '{"fid": 475970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d303aa25-974b-42f3-d5e6-8a2cbd83b500/original", "profile": {"bio": {"text": "맥주를 너무 사랑하는 남자!\n하지만 통풍은 무서운 남자!\n부자되기를 두려워하지 않는 남자!\nHighly beer addicted!🍻\nGood day to dance😀", "mentioned_profiles": []}}, "username": "sarnath8282", "power_badge": false, "display_name": "sarnath8282", "active_status": "inactive", "verifications": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "follower_count": 1444, "custody_address": "0xd7ad189a1b9637b6e1383d0a5bdbf23599408568", "following_count": 2584, "verified_addresses": {"eth_addresses": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7Qhkf\"}"}', 'banmal-mode'), - (960396, '0x52356f73a9acc3f1df914ba938971fa0b6b0bb91', 0, 1, '2024-05-07 09:17:43+00', 0, 4, '{"fid": 500170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3636bd33-22a3-484b-9ea7-ec4ad1f4f900/rectcrop3", "profile": {"bio": {"text": "Take it easy! Crypto Dev.", "mentioned_profiles": []}}, "username": "mingoon", "power_badge": false, "display_name": "Passion🎩🍖", "active_status": "inactive", "verifications": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "follower_count": 1243, "custody_address": "0xb75f456dffa85fbdb760f7d65147fa59815de44b", "following_count": 558, "verified_addresses": {"eth_addresses": ["0x1f7316bc6788a8c095100a70111f6b20a58be3fa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/phnie\"}"}', 'sonata'), - (976061, '0xf01cbe2a7f99a6ccff081931691bfa74ff7875be', 0, 1, '2024-05-07 10:25:37+00', 0, 1, '{"fid": 389207, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ad1bcfd-550b-48ef-e718-f0b6cd3af000/rectcrop3", "profile": {"bio": {"text": "Messenger’s of Goddess @ciniz in the last days and @pichi Number 1 Fan\n@Hi_Seulgi Fanboy of RedVelvet \n\n\nEngineer | Trader | Sneaker-head | Audiophile", "mentioned_profiles": []}}, "username": "seulbear", "power_badge": false, "display_name": "Hi_Jan", "active_status": "inactive", "verifications": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "follower_count": 928, "custody_address": "0x9d38a4c71593f61af1242d6cba795586918f59ac", "following_count": 1029, "verified_addresses": {"eth_addresses": ["0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4h9wh7iOZ0GGn8QVp4RAOB?si=2TknhyIqTyu04Y-OBbch7Q&context=spotify%3Asearch%3Aonerepublic\"}"}', NULL), - (1043491, '0xbfa0a52a00d0345fbc12100c7e07680e800157fc', 0, 1, '2024-05-07 14:01:08+00', 0, 4, '{"fid": 502705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d9805bd-ac96-4054-db7a-9875a1417a00/rectcrop3", "profile": {"bio": {"text": "일상 공감 ", "mentioned_profiles": []}}, "username": "ellamon", "power_badge": false, "display_name": "Ella ⭐️🎩 🩷", "active_status": "inactive", "verifications": ["0x4e2bd8f28bb15a92f0229e985314385e23e73f11"], "follower_count": 866, "custody_address": "0x06915ddc46ab5a96d49c105bea7e426acc22226f", "following_count": 1288, "verified_addresses": {"eth_addresses": ["0x4e2bd8f28bb15a92f0229e985314385e23e73f11"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yelo_r/her-best-part-feat-daniel-caesar-yelo-cover?si=5fc54fb40e6a4b7a806f67b2b91408a6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (970658, '0xcc8328baaa241fe863c86fc533f7205f13fca2b4', 0, 1, '2024-05-07 10:03:42+00', 0, 3, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1419, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1932, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6WZLqSLaGfp3ai5B7\"}"}', NULL), - (944806, '0x5b75aab2b294bd42ce6c822d5cd4e4b07d37c22a', 0, 1, '2024-05-07 08:37:06+00', 0, 19, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2687, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2982, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ew1AEtZJ3XqXonyP8\"}"}', 'sonata'), - (1173177, '0xedb9d007037e842d42701ecb7718a2caaf767da4', 1000, 1, '2024-05-15 05:51:26+00', 0, 16, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a0633ede", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2933, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2242, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1e29ba0a-5900-45e4-329c-c78d2e163e00/original\"}","{\"url\":\"https://on.soundcloud.com/96Afo1ZtXDA1w9Zw8\"}"}', 'sonata'), - (969920, '0x29bbf508aa3d44e5b289a6d20347cf15a577ef1d', 0, 1, '2024-05-07 09:53:51+00', 0, 2, '{"fid": 385882, "object": "user", "pfp_url": "https://i.imgur.com/NDnrzCe.jpg", "profile": {"bio": {"text": "Follow me instant follow back 💯", "mentioned_profiles": []}}, "username": "murtazas", "power_badge": false, "display_name": "Murtaza", "active_status": "inactive", "verifications": ["0x399345e870f9e377a849ba132d4e669cec194e99"], "follower_count": 461, "custody_address": "0x747a43d6dbfd07458fa262edf92407e776342f8e", "following_count": 517, "verified_addresses": {"eth_addresses": ["0x399345e870f9e377a849ba132d4e669cec194e99"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/wavedash/b-alright-feat-anamanaguchi-and-cayenne\"}"}', NULL), - (907562, '0xc27684c0bee2e80de83bc1022950e9cc4232fd19', 0, 1, '2024-05-07 06:58:17+00', 0, 0, '{"fid": 257278, "object": "user", "pfp_url": "https://i.imgur.com/MIwOSdK.jpg", "profile": {"bio": {"text": "A storyteller, interactive media creator, Canadian Hip Hop poet, 360 VR Founder MixItMedia, and Communications, Content & Experience Director with Metaknyts.", "mentioned_profiles": []}}, "username": "symbolik", "power_badge": false, "display_name": "Symbolik", "active_status": "inactive", "verifications": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "follower_count": 94, "custody_address": "0xdef6d16539cfcc8793ce16ab01c563b17642bd23", "following_count": 111, "verified_addresses": {"eth_addresses": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/symbolik/i-manifest\"}"}', 'hiphop'), - (1085527, '0x2f4d688040a029c155aef04686699edd7ab10ace', 0, 1, '2024-05-07 15:41:38+00', 0, 3, '{"fid": 396031, "object": "user", "pfp_url": "https://i.imgur.com/ZtqgSTg.jpg", "profile": {"bio": {"text": "Great minds have purposes, others have wishes.💕💕", "mentioned_profiles": []}}, "username": "ssshhh", "power_badge": false, "display_name": "SUNHWA🎩🍖", "active_status": "inactive", "verifications": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "follower_count": 3431, "custody_address": "0xb0df8a71802f2b0e8ee1c181ce51fa94fe1c7075", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xc19cdd316b92d06dde741743131b0799bfb57e7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LafX3\"}"}', 'sonata'), - (981125, '0x3c7b8a602afd7815b9e518aa8a1a7152e3f3a624', 0, 1, '2024-05-07 10:45:56+00', 0, 4, '{"fid": 345427, "object": "user", "pfp_url": "https://i.imgur.com/GmKTuvu.gif", "profile": {"bio": {"text": "Hi🖐️\n It lives in Warpcast🟣🤙\nhttps://drakula.app/user/zen417", "mentioned_profiles": []}}, "username": "zen417", "power_badge": false, "display_name": "zen🍖🔵🔮🎩🧀", "active_status": "inactive", "verifications": ["0xd00226b73bab097e97c6df416dc031df7c4b5af1"], "follower_count": 2235, "custody_address": "0x8de8383b92eb5f1c12bf77c072762d6c32433424", "following_count": 666, "verified_addresses": {"eth_addresses": ["0xd00226b73bab097e97c6df416dc031df7c4b5af1"], "sol_addresses": ["F2nCtkzVbFFn7GxRcPv85hrjaCyMxdNJrPk4yGJHRDj6"]}}', '{"{\"url\":\"https://open.spotify.com/track/3MZHDutJalh9C4DNLptn2v?si=OOJwUX8bQA-1DT4huoO9GQ&context=spotify%3Aalbum%3A5FrjDW96mCYw9ECc74c637\"}"}', 'sonata'), - (1135228, '0x33f70c0e8f1a9c425d06dab721a57121e0297632', 0, 1, '2024-05-07 19:05:03+00', 0, 1, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1478, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1726, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YqwHoqfhgVxWTGZw7\"}"}', 'sonata'), - (976844, '0x3c1891a6e7a2dbc3fe35d8b3ab594092b4887516', 0, 1, '2024-05-07 10:31:56+00', 0, 0, '{"fid": 449096, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/719e77f3-390e-4d71-181a-c004de248d00/rectcrop3", "profile": {"bio": {"text": "I am a nurse.", "mentioned_profiles": []}}, "username": "safail", "power_badge": false, "display_name": "Safail 🔵 🎩", "active_status": "inactive", "verifications": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "follower_count": 1280, "custody_address": "0x9d7ae0c0c43aea23ca1563b49fdddc611b5bdd7d", "following_count": 2159, "verified_addresses": {"eth_addresses": ["0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eNUh9\"}"}', NULL), - (961030, '0xc2265173d4e0362809f6c6c00212a5722380510b', 0, 1, '2024-05-07 09:21:20+00', 0, 1, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1141, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-751502833/placebo-i-know?si=1ac1181581cc4bd7a31c9a3db40a607b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (945230, '0x35ec7acd845ab80d403351a16a7d5efb45e7f9cc', 0, 1, '2024-05-07 08:38:10+00', 0, 1, '{"fid": 500745, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6131816d-a235-420d-5680-065e752fd700/original", "profile": {"bio": {"text": "i love base my AlfaFrens : \nhttps://www.alfafrens.com/channel/0x36cE06783304568b6169a75Ff18A6C821d3717BF", "mentioned_profiles": []}}, "username": "infokk", "power_badge": false, "display_name": "infokk", "active_status": "inactive", "verifications": ["0x88f3dc8062151a93cf43972d9b13826e756a8290"], "follower_count": 1212, "custody_address": "0x6e880a484bcc098ff94e822a3cfd82a372480be1", "following_count": 1401, "verified_addresses": {"eth_addresses": ["0x88f3dc8062151a93cf43972d9b13826e756a8290"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/changmo/sorry?si=0d559bbfe85344558c5a2fc0a11272a1&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173304, '0x0ff44f25daf530ff681292427ba09510e4a29dd4', 0, 1, '2024-05-15 18:28:17+00', 0, 7, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1947, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 977, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/releases\"}"}', 'soundxyz'), - (970688, '0xad80eb63939c570256af42e0e910ea668cb5cfa9', 0, 1, '2024-05-07 10:04:37+00', 0, 0, '{"fid": 324152, "object": "user", "pfp_url": "https://i.imgur.com/tA2yN4s.jpg", "profile": {"bio": {"text": "Analyst @Web3Music Association", "mentioned_profiles": []}}, "username": "audiocrypt", "power_badge": false, "display_name": "Tim S.", "active_status": "inactive", "verifications": ["0x62b648854e88935162b9751c9058ec4236cd81b2"], "follower_count": 13, "custody_address": "0xed5e5ec9d90ffec4400559d42821acac9e074632", "following_count": 92, "verified_addresses": {"eth_addresses": ["0x62b648854e88935162b9751c9058ec4236cd81b2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Qi5qKJf7YSiW3K2CFpdn8?si=FXdSsv9xTyG7fER73ODmBg\"}"}', NULL), - (970755, '0x17c23f5300476f34e4a4c670e04b68099ec45aac', 0, 1, '2024-05-07 10:04:43+00', 0, 3, '{"fid": 471939, "object": "user", "pfp_url": "https://i.imgur.com/2W62eK2.jpg", "profile": {"bio": {"text": "F4F 뉴비라 팔로우 쩜요\n비투카 화이팅!!", "mentioned_profiles": []}}, "username": "mini486", "power_badge": false, "display_name": "Mini", "active_status": "inactive", "verifications": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "follower_count": 2132, "custody_address": "0xeba06dcd2197f32a581434165b801a9401c395c4", "following_count": 2100, "verified_addresses": {"eth_addresses": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/a1t4k\"}"}', 'sonata'), - (1024535, '0x1633116ce74a9e7d110d843ce69eb21a5ece014b', 0, 1, '2024-05-07 13:02:38+00', 0, 12, '{"fid": 401724, "object": "user", "pfp_url": "https://i.imgur.com/e3Y33jV.jpg", "profile": {"bio": {"text": "DEGEN❤️", "mentioned_profiles": []}}, "username": "tispis", "power_badge": false, "display_name": "YUNSENG🎩🍖", "active_status": "inactive", "verifications": ["0xdca4a67d4e7e1bdfe9144018e1b419d92d666b7d"], "follower_count": 4728, "custody_address": "0xfb2db570d7057c23e16606a8f476de769db3eb32", "following_count": 5141, "verified_addresses": {"eth_addresses": ["0xdca4a67d4e7e1bdfe9144018e1b419d92d666b7d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/snXWW\"}"}', 'sonata'), - (1043625, '0x12193d9e5b067711bbfc31a75e11d0e8e419ab8c', 0, 1, '2024-05-07 14:03:13+00', 0, 1, '{"fid": 503182, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6db25222-91fa-48ee-d986-f690f4195e00/original", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "bim", "power_badge": false, "display_name": "Comi🔵🍖", "active_status": "inactive", "verifications": ["0xf63c9c8f8de7a2ad1f6efe0d572ac6ae5e485ba6"], "follower_count": 374, "custody_address": "0x875776a2eb736092d215666f6e2eb921a4d3d8f6", "following_count": 346, "verified_addresses": {"eth_addresses": ["0xf63c9c8f8de7a2ad1f6efe0d572ac6ae5e485ba6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share103/iu-eight-prod-feat-suga-of-bts?si=dc83ed6bb9c743f793e1e3d6dfc21b22&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173175, '0x4749ff4fe26da3d1fbb1347f69455548704200d3', 2111, 1, '2024-05-15 05:33:27+00', 0, 10, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3878, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1009, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/e8XW4\"}"}', 'sonata'), - (961001, '0x6e4c898f0cac7a76342a280d6be9c85e8ad802ba', 0, 1, '2024-05-07 09:20:40+00', 0, 3, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1644, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1334, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/br9SD3LaPYbY2C677\"}"}', 'sonata'), - (942732, '0x0371fd57048bec2b37c1932c3e0ec59074ebd464', 0, 1, '2024-05-07 08:29:46+00', 0, 3, '{"fid": 498906, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWkghzVpxhJ2G1bEtmRNDBvtVxtowQQWAG4vdb41aA6Y9?filename=COW.png", "profile": {"bio": {"text": "コミュニケーションは私を幸せにします。", "mentioned_profiles": []}}, "username": "milkcow", "power_badge": false, "display_name": "happy", "active_status": "inactive", "verifications": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "follower_count": 817, "custody_address": "0xa8b0bf76dd1199c327f77d8fc917fb707eb59b01", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x9d74fcc4ac1061b1b1ced8542332bba087cb550a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/atVfG\"}"}', NULL), - (945438, '0x9d0b89b20e466b47d830bb3b5878ef3dd201f3cf', 0, 1, '2024-05-07 08:40:11+00', 0, 9, '{"fid": 424530, "object": "user", "pfp_url": "https://i.imgur.com/kBelAWL.jpg", "profile": {"bio": {"text": "효웩, 박콩오빠, 모두 부자가 되는 그날까지🤟", "mentioned_profiles": []}}, "username": "hyowag", "power_badge": false, "display_name": "hyowag", "active_status": "inactive", "verifications": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "follower_count": 2574, "custody_address": "0xd2f722c7c050c50b4dead455cf393c89b9f84d88", "following_count": 1688, "verified_addresses": {"eth_addresses": ["0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-900110338/y2mate-com-yuuri-the-first?in=you-tobe/sets/yuuri&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (975302, '0x565a02d0d4c93221d78b10b895a3e5de5609c129', 0, 1, '2024-05-07 10:22:18+00', 0, 8, '{"fid": 401275, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a97dc5cd-a749-4417-9ea4-b7e4bfdc2d00/rectcrop3", "profile": {"bio": {"text": "\ndegen🎩/grass🌿/enjoy /grass-touch channel admin https://zora.co/@cryptogaza / 2024년도 화이팅🌈🌈크립토의 한 해🌈🌈AI + Crypto Gaza🌈🌈", "mentioned_profiles": []}}, "username": "cryptogaza", "power_badge": false, "display_name": "크립고🎩🌿🌈", "active_status": "inactive", "verifications": ["0xf67e097e33ea39963545b5347270058b30929b48"], "follower_count": 3106, "custody_address": "0x292c582f6c10ed29f4d657247fd9e26fa79a14e5", "following_count": 2327, "verified_addresses": {"eth_addresses": ["0xf67e097e33ea39963545b5347270058b30929b48"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dnC1z\"}"}', 'sonata'), - (970756, '0x18e73558b202d8d1fa4241e6e2480f8beeb6fd5b', 0, 1, '2024-05-07 10:04:22+00', 0, 1, '{"fid": 419208, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e1f0aa1-0698-411b-9aec-28063cbda400/rectcrop3", "profile": {"bio": {"text": "I''m a student studying Agriculture Insurance Claim Adjuster.\n#손해평가사 #자격증", "mentioned_profiles": []}}, "username": "zinzerman01", "power_badge": false, "display_name": "🎩바른생활🍖🔥", "active_status": "inactive", "verifications": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "follower_count": 1226, "custody_address": "0x15ebb26688c1f4090956849424ece928f04f7b79", "following_count": 1237, "verified_addresses": {"eth_addresses": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pVWnF\"}"}', 'sonata'), - (992297, '0x19dc1969b17ac16d6b984df730b86118f752d6c7', 0, 1, '2024-05-07 11:32:16+00', 0, 0, '{"fid": 491718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b44f5849-69cc-4805-c6aa-5ef274a2fa00/rectcrop3", "profile": {"bio": {"text": "잘부탁드려요 맞팔갑니다 디젠 파이팅", "mentioned_profiles": []}}, "username": "hduck43", "power_badge": false, "display_name": "hduck43", "active_status": "inactive", "verifications": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "follower_count": 1420, "custody_address": "0x313bb25e8e5a06110334088d0db7fb4979a48e8b", "following_count": 2331, "verified_addresses": {"eth_addresses": ["0x40facd6644c83c3fb0e459648c2f35b930b06d1c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SfP5p8t6Cj9AALYX9\"}"}', 'sonata'), - (1059960, '0x5ad478599107f36ab0758c0346cfe187283aca59', 0, 1, '2024-05-07 14:55:29+00', 0, 3, '{"fid": 419208, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e1f0aa1-0698-411b-9aec-28063cbda400/rectcrop3", "profile": {"bio": {"text": "I''m a student studying Agriculture Insurance Claim Adjuster.\n#손해평가사 #자격증", "mentioned_profiles": []}}, "username": "zinzerman01", "power_badge": false, "display_name": "🎩바른생활🍖🔥", "active_status": "inactive", "verifications": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "follower_count": 1233, "custody_address": "0x15ebb26688c1f4090956849424ece928f04f7b79", "following_count": 1243, "verified_addresses": {"eth_addresses": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SLPbE\"}"}', 'sonata'), - (1173307, '0xfb323a45f142896c562be93ac1821024e9622517', 0, 1, '2024-05-15 18:33:57+00', 0, 1, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 575, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 467, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/FRu8BC41x4zC4vS68\"}"}', 'musicjp'), - (1051729, '0x77c1a110e465c801873a4f53290f36daf3e2e775', 0, 1, '2024-05-07 14:29:51+00', 0, 2, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1388, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1oVHjxC4cjE84kTqbNI8kS?si=9uKKsJCBRnaTX0J5MIVjjQ&context=spotify%3Aplaylist%3A2UN9Ny5tHrBu6dxz48IR8j\"}"}', 'unko'), - (1024537, '0xc5ac8592f44f7ede660bbc96087f87a2d35b7a73', 0, 1, '2024-05-07 13:02:07+00', 0, 0, '{"fid": 413488, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ef28212-4bd5-4146-1f56-cf3523df6200/rectcrop3", "profile": {"bio": {"text": "I am very happy man,and work at school", "mentioned_profiles": []}}, "username": "0xking1", "power_badge": false, "display_name": "king", "active_status": "inactive", "verifications": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "follower_count": 487, "custody_address": "0x91ab7af5a609ad9ddf0d877dbf0ccbbaf2533c9a", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gN4Bj\"}"}', NULL), - (961014, '0xad28e1fe97f75dad8d133adc81e24dcc9f69dab7', 0, 1, '2024-05-07 09:21:09+00', 0, 0, '{"fid": 411804, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6bc16fe2-19df-4232-7e22-e49900d54d00/original", "profile": {"bio": {"text": "Korean💕🎩🍖 \n재미있게 살아요~💕💕", "mentioned_profiles": []}}, "username": "stomach", "power_badge": false, "display_name": "Stomach🎩🍖🔮", "active_status": "inactive", "verifications": ["0x2cadb7fb5fc5eadfb167e8390b7aac15065b9317"], "follower_count": 2102, "custody_address": "0x8ec351fea7290d7544f7c4d0cc2e4389c380147d", "following_count": 1911, "verified_addresses": {"eth_addresses": ["0x2cadb7fb5fc5eadfb167e8390b7aac15065b9317"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Jem56u8qVbcnYQWQ9\"}"}', NULL), - (993622, '0xaec8023bce503ce49292550c65f335f652d849bb', 0, 1, '2024-05-07 11:33:30+00', 0, 4, '{"fid": 417892, "object": "user", "pfp_url": "https://i.imgur.com/PkaU6Re.jpg", "profile": {"bio": {"text": "안녕하세요!!", "mentioned_profiles": []}}, "username": "greenpappergood", "power_badge": false, "display_name": "Sangsangkoon", "active_status": "inactive", "verifications": ["0xed3a4d7fad1cea09a8c619d6bb3fe3b34c316fce", "0x9a37654e3883f4d58738a045288d9dc652d15841"], "follower_count": 3353, "custody_address": "0xef06768a268f811268ef096892de8e2f0fabebc7", "following_count": 3392, "verified_addresses": {"eth_addresses": ["0xed3a4d7fad1cea09a8c619d6bb3fe3b34c316fce", "0x9a37654e3883f4d58738a045288d9dc652d15841"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T7be7\"}"}', 'sonata'), - (1042544, '0x1dd49031a2c68d3afa1dfdc76d974f742354188f', 0, 1, '2024-05-07 13:54:45+00', 0, 1, '{"fid": 287306, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNTbdC51BzXUjxjnJr2UNn1NCUaGyHiDE232wABnM8WCd?filename=suzy.jpg", "profile": {"bio": {"text": "Follow me🙋‍♀️🙆‍♀️ 🙏/ $DEGEN/ Crypto ", "mentioned_profiles": []}}, "username": "sh0070", "power_badge": false, "display_name": "gim74713🎩🍖🔮", "active_status": "inactive", "verifications": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "follower_count": 1739, "custody_address": "0x3253aea02e5d297c7d61c4c71e0d1e28bac2d889", "following_count": 1084, "verified_addresses": {"eth_addresses": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YRKEeRKGfZyJmTz57\"}"}', 'sonata'), - (995082, '0x43cc790ea235ad8b30ea5ef1649d04c2814185ea', 0, 1, '2024-05-07 11:44:08+00', 0, 1, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 672, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 413, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DGBgx\"}"}', 'sonata'), - (1051087, '0xdac4b84b5d3e618ae28994bcda8513c5b0a34192', 0, 1, '2024-05-07 14:26:10+00', 0, 2, '{"fid": 496920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b363a068-ae3b-4156-75bc-baa2b63ebf00/rectcrop3", "profile": {"bio": {"text": "선팔 / 맞팔 / 파이어족 가보자!\n맞디 금지!\nFire movement within 10 years", "mentioned_profiles": []}}, "username": "jonathanhwang", "power_badge": false, "display_name": "파이어족 가보자", "active_status": "inactive", "verifications": ["0xdfb9e76960bbad0c1dfc11795579b4bbe105c429"], "follower_count": 1373, "custody_address": "0xd5cabea8674c387418c2cbde2c79c3826c67c55e", "following_count": 1484, "verified_addresses": {"eth_addresses": ["0xdfb9e76960bbad0c1dfc11795579b4bbe105c429"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2xtWzZymHCBSmUsW9\"}"}', 'sonata'), - (1173343, '0xc5e1949de97a7815efe376f35fd2d4a1a0d9dcb4', 0, 1, '2024-05-15 20:47:13+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2047, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/5069fac6-f83c-48be-b089-7be9b73d1642?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/danielallan/so-high-feat-jake-neumar?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (942731, '0x3a8ae53dd37b851cb6eadc0e95b66df14ce68f34', 0, 1, '2024-05-07 08:29:57+00', 0, 14, '{"fid": 501722, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/da05e855-b8b7-4447-2e94-72f460ba8500/original", "profile": {"bio": {"text": "긍정적인 마음으로 즐기자!\n달을 보며 소원 빌어요.\n수리수리마수리~ 이뤄져라 얍!\n서로 추앙해요~ ", "mentioned_profiles": []}}, "username": "suri2", "power_badge": false, "display_name": "긍정이", "active_status": "inactive", "verifications": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "follower_count": 1392, "custody_address": "0xe7df0b2d94a885326148388a58f46104bbce9c5a", "following_count": 1288, "verified_addresses": {"eth_addresses": ["0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/onlub/wax-money-djseok-shuffle?si=866232e5018646eab3938feed0b42d6e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (995118, '0x6d9334f989b6e6624d943810b1f2742cb84acc27', 0, 1, '2024-05-07 11:43:12+00', 0, 5, '{"fid": 386033, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc22dd9a-a03a-44fd-6684-a283b4933500/original", "profile": {"bio": {"text": "HAM HAM🍖 | Frame developer | telecommunication Researcher | Network Engineer |\nFrom DEG server", "mentioned_profiles": []}}, "username": "chiffon-m", "power_badge": false, "display_name": "sifonM🎩🍖🔵🟢", "active_status": "inactive", "verifications": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "follower_count": 655, "custody_address": "0xecf66086803983f13e85754591fedc58891fd70c", "following_count": 684, "verified_addresses": {"eth_addresses": ["0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/05dworZSSlDuTgDYlXiiH7?si=zTFCYU_2TDOrJY0AJiMrBQ\"}"}', NULL), - (961020, '0xfc557f1f071edeafc9848cdb8d8b78dc3136ab19', 0, 1, '2024-05-07 09:21:34+00', 0, 1, '{"fid": 448267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c084f2f-96ec-40a4-de8f-330f4bd3b000/rectcrop3", "profile": {"bio": {"text": "i love crypt♡cat♡budgie♡and‥\n皆さまよろしくお願いします♡\nフォロバします♡健康や趣味に関することについてつぶやきます♡\nおたんこナースです♡", "mentioned_profiles": []}}, "username": "kananap", "power_badge": false, "display_name": "kananap🔮🩵@health", "active_status": "inactive", "verifications": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "follower_count": 510, "custody_address": "0x3bc7cc9fb63fa1c4b70ac5aa8c80475b784f5a6c", "following_count": 755, "verified_addresses": {"eth_addresses": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vcREHgF8NMPpwMdS8\"}"}', 'musicjp'), - (992301, '0x7a17630642f4ddb58521427c5ec3ae1b089c1c74', 0, 1, '2024-05-07 11:31:31+00', 0, 3, '{"fid": 472997, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ2i1YDjqg6f16wUJgNpqTqrtNQyUa18wMNC6B6uXNGmD?filename=KakaoTalk_20240419_025514877.png", "profile": {"bio": {"text": "It''s a place where I share my daily life I want to be close with you.Come and see me often Have a nice day!", "mentioned_profiles": []}}, "username": "jinkyo", "power_badge": false, "display_name": " Jaykay", "active_status": "inactive", "verifications": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "follower_count": 3021, "custody_address": "0x9359eee17224661c3bc0df15f8f3367ed0f1884c", "following_count": 2971, "verified_addresses": {"eth_addresses": ["0x1ca0b80a0613ab3b101302f288926ddb68cb924a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1523-623929701/kara-step?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (961037, '0x9055ea6d51699c01361858ee1438a32d0130027b', 0, 1, '2024-05-07 09:21:52+00', 0, 5, '{"fid": 422678, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eeb340d2-1507-441d-d7ad-3ed4bb805f00/original", "profile": {"bio": {"text": "친하게 지내용💕💕\n알파프랜 구독해주세용\nhttps://www.alfafrens.com/channel/0xF2a6d041103689509A73C3ACCfFB82dDf0e03824", "mentioned_profiles": []}}, "username": "positiveking", "power_badge": false, "display_name": "PositiveKing 🎩🔵🍖", "active_status": "inactive", "verifications": ["0xf178e9e545e0acfce712228dc952a311b7885198"], "follower_count": 2891, "custody_address": "0xbf7c9f5677b033d1168cbf44cd516ac73bcb6659", "following_count": 1944, "verified_addresses": {"eth_addresses": ["0xf178e9e545e0acfce712228dc952a311b7885198"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/re-lee-2/sets/xkiyxwowtyfn\"}"}', NULL), - (1035477, '0x9865abfee514b9de5ccef127f0e0c68713ffb008', 0, 1, '2024-05-07 13:31:11+00', 0, 2, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 711, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 863, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cUrzcN4KU45U9DkR8\"}"}', 'sonata'), - (961021, '0xf6b9c32117c1bd413c2bfa031386fa1e39568147', 0, 1, '2024-05-07 09:21:49+00', 0, 6, '{"fid": 282725, "object": "user", "pfp_url": "https://i.imgur.com/dqY42gy.jpg", "profile": {"bio": {"text": "Shining Venus", "mentioned_profiles": []}}, "username": "zohi", "power_badge": false, "display_name": "Zohreh🎩🔮", "active_status": "inactive", "verifications": ["0x239242cf675591e3cfc3bc818dc1d476bb538c2e"], "follower_count": 1612, "custody_address": "0x130a1f79fe2586a61d98f5319f7fbc56ae4e077b", "following_count": 2587, "verified_addresses": {"eth_addresses": ["0x239242cf675591e3cfc3bc818dc1d476bb538c2e"], "sol_addresses": ["3qPXQesxDkYA6kGe1nyAnxuJcTcKcqDt8Wz4cecPqGm5"]}}', '{"{\"url\":\"https://soundcloud.com/mayra-oliveira-30/adele-hello?si=823413a6035740398d64f7b612c8466e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'songs'), - (1173446, '0xd637d03b45772069113cb3a8517fec2357317fba', 2000, 1, '2024-05-15 23:47:56+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 11698, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/4bb11ed7-6616-4ff1-a699-e08278df6227\"}","{\"url\":\"https://www.sound.xyz/inthemeadows/foralltime\"}"}', NULL), - (947726, '0x2b4184f26b62b74368576c8421b968773b27d8cb', 0, 1, '2024-05-07 08:48:05+00', 0, 2, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 804, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 벤 (BEN) - 여자이니까 가사.mp3 by 추가은 on #SoundCloud https://on.soundcloud.com/BEwji\"}"}', NULL), - (971113, '0xdd6274b5c813fbd62b80998d859e83a60ab02f61', 0, 1, '2024-05-07 10:07:08+00', 0, 5, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2090, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1724, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/K4teM\"}"}', 'sonata'), - (1086231, '0x8994c82cd366e18655fedef0d49603dda5a30703', 0, 1, '2024-05-07 15:42:37+00', 0, 10, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2252, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2593, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lgbtis/yetjhfahlmqt?si=26a5a5402a2b4cc9b6c304554b069e52&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (1024541, '0xc4baee3705792f1cc6557823e9d7c9c6bfa62dc2', 0, 1, '2024-05-07 13:03:57+00', 0, 12, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3940, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3375, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fkpQ6\"}"}', 'sonata'), - (1051552, '0x650038820426c80453f635ca6596b770de722d2b', 0, 1, '2024-05-07 14:26:50+00', 0, 0, '{"fid": 389395, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/829bd631-9655-478f-4423-6cd8cf751b00/rectcrop3", "profile": {"bio": {"text": "Hello guys , I''m mehdi 💚", "mentioned_profiles": []}}, "username": "mehdi-kh61", "power_badge": false, "display_name": "Mehdi🍖🎩", "active_status": "inactive", "verifications": ["0x788978359ea6c091ada783f94a50500a6b5e4a25"], "follower_count": 562, "custody_address": "0xbca229533c13b1ace020ce416883a58224d31592", "following_count": 1059, "verified_addresses": {"eth_addresses": ["0x788978359ea6c091ada783f94a50500a6b5e4a25"], "sol_addresses": ["2BFwa7rsD2YGq7jNAHCRxrzheE8bpgV7hC8Qj1tL3x3s"]}}', '{"{\"url\":\"Listen to Without Me by Eminem on #SoundCloud https://on.soundcloud.com/7WpVR\"}"}', NULL), - (975325, '0x8272a1c36e993a0252fc0b4f3a64e25b5fc74a3c', 0, 1, '2024-05-07 10:21:53+00', 0, 0, '{"fid": 500690, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibykwiyjp3tt3mdf5mlzqfgfpbvnesf4lqcnavbh4s7etennfalua", "profile": {"bio": {"text": "mukbang🍖 trip✈️ SongRecommend🎵\n\nJejulover🍊 I Love Base and Degen🎩\n\notaku👾", "mentioned_profiles": []}}, "username": "joohowon98", "power_badge": false, "display_name": "ghdnjs89", "active_status": "inactive", "verifications": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "follower_count": 1425, "custody_address": "0xfe9650cf3e5a3dfb3519d10ad2b414db2d178402", "following_count": 1935, "verified_addresses": {"eth_addresses": ["0x728363a435deed20cf739e5cca44459c77e68d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5C3BnhFvDrXBk97b6\"}"}', NULL), - (974997, '0xed00af936cb76612d7c690614e8c76d52d8509d6', 0, 1, '2024-05-07 10:21:27+00', 0, 0, '{"fid": 518925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8ec27fc5-501a-49d8-e339-337b2c64ba00/rectcrop3", "profile": {"bio": {"text": "F4F plz come here", "mentioned_profiles": []}}, "username": "!518925", "power_badge": false, "display_name": "Bluesky66", "active_status": "inactive", "verifications": ["0x84f686b64455fceb07973ef6e844d119c7dcb661", "0x84f686b64455fceb07973ef6e844d119c7dcb661"], "follower_count": 64, "custody_address": "0x96a892e3827f0473105097351d08e92ad2f16768", "following_count": 647, "verified_addresses": {"eth_addresses": ["0x84f686b64455fceb07973ef6e844d119c7dcb661", "0x84f686b64455fceb07973ef6e844d119c7dcb661"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (970193, '0xe51b0f725999e1bb6afa3d2e96f5c7a744868f7a', 0, 1, '2024-05-07 09:57:52+00', 0, 2, '{"fid": 286771, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/22811c10-9cae-4ae8-da6e-722f18668c00/original", "profile": {"bio": {"text": "SearchFi Super♡♡ 다들 힘내보자구욧! 아자!!!", "mentioned_profiles": []}}, "username": "halosunny21", "power_badge": false, "display_name": "Sunny 🍖 🎩 ⛓️ ", "active_status": "inactive", "verifications": ["0x4743ca53638631603c1d869b15998c0093dab724"], "follower_count": 1274, "custody_address": "0xd0321f89945441afe8bf8235e48c91042cbadcbe", "following_count": 1278, "verified_addresses": {"eth_addresses": ["0x4743ca53638631603c1d869b15998c0093dab724"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/anmol-rajoriya/ive-heya-1?si=fd5d984767084c4499b68d37be2873fd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (961027, '0xc5ca1fb79b56b458bbd5b17e6edb2d2ec2a00e91', 0, 1, '2024-05-07 09:20:23+00', 0, 4, '{"fid": 323094, "object": "user", "pfp_url": "https://i.imgur.com/druwETK.jpg", "profile": {"bio": {"text": "I have interest crypto currency.🙃\nLFG🚀\n\nhttps://drakula.app/user/trollman?invite=RN7q6G", "mentioned_profiles": []}}, "username": "trollman", "power_badge": false, "display_name": "trollman🎩🍖🔵🌱⛓️", "active_status": "inactive", "verifications": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "follower_count": 3556, "custody_address": "0xe2976bd375453a5bad1b2157a9f468421687cb7a", "following_count": 2021, "verified_addresses": {"eth_addresses": ["0x0f54fc0703872fca0d72eec61ed5cee26e0d1423"], "sol_addresses": ["Fnq2MksiJtS7B8jd9viNZCvRCN6FZvP9TxNiqWihK3nH"]}}', '{"{\"url\":\"https://on.soundcloud.com/T55RFXDdhmaFPSLs7\"}"}', 'sonata'), - (975353, '0x39c917d9682a44a45f5b04c2896e55572cdcbf10', 0, 1, '2024-05-07 10:23:08+00', 0, 4, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 483, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 779, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gWCjf\"}"}', 'sonata'), - (1024536, '0x98182f579f0d3fbd5c18f231087a622f5330be00', 0, 1, '2024-05-07 13:01:49+00', 0, 2, '{"fid": 516187, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d5eb3758-cc4d-472e-a69e-14040b4a7d00/rectcrop3", "profile": {"bio": {"text": "초보신입/맞팔💯💯/선팔주시면 달려갑니다/무조건반사갑니다", "mentioned_profiles": []}}, "username": "!516187", "power_badge": false, "display_name": "느티고을나무늘보", "active_status": "inactive", "verifications": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "follower_count": 313, "custody_address": "0x774d0caf03af43ca9e47069d48f1dd34469439c6", "following_count": 458, "verified_addresses": {"eth_addresses": ["0xa01572d421415a83ba5e10b8d0c61ce5916c8677"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1Dye2ehXkLm4c52z7\"}"}', 'sonata'), - (961473, '0xdbf5b3897f6424cc0d19c22f0ae36f7b1c173470', 0, 1, '2024-05-07 09:22:10+00', 0, 9, '{"fid": 509718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c22b283-b421-47ea-89b7-f3650e781600/rectcrop3", "profile": {"bio": {"text": "Photography critic | Part time Photographer | NFT Artist to be |", "mentioned_profiles": []}}, "username": "!509718", "power_badge": false, "display_name": "Moritazi", "active_status": "inactive", "verifications": ["0x539cb87b3961a8dec33d4b307e8183b86fe0388c"], "follower_count": 406, "custody_address": "0x2a4a41867947d3ea18e6cb9c2946be9d970ec6ca", "following_count": 661, "verified_addresses": {"eth_addresses": ["0x539cb87b3961a8dec33d4b307e8183b86fe0388c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0nxjMqko8tOO0dl0eO80Ri?si=nXZ3inJ1TiuGBaUMV9-ZOQ\"}"}', NULL), - (1136428, '0x3dfe8f215dd087af36a246f217660f790fe1ee65', 0, 1, '2024-05-07 19:23:06+00', 10, 1, '{"fid": 383655, "object": "user", "pfp_url": "https://i.imgur.com/EtamgCn.jpg", "profile": {"bio": {"text": "💕 I wish you happiness every day good day 💕 ", "mentioned_profiles": []}}, "username": "young5365", "power_badge": false, "display_name": "kingmi🍖", "active_status": "inactive", "verifications": ["0x8e1bee003639aba3b6cc008e6a44dc14cffc81ee"], "follower_count": 1555, "custody_address": "0x169fb099546e238d58e39431717758a829afe888", "following_count": 2057, "verified_addresses": {"eth_addresses": ["0x8e1bee003639aba3b6cc008e6a44dc14cffc81ee"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RGS8j\"}"}', 'sonata'), - (947728, '0x18f580679eed3c21955959c968555e91939a41fa', 0, 1, '2024-05-07 08:47:00+00', 0, 2, '{"fid": 438453, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeic2ekkompkygslgrju4y3twtcp3xze5mykgq2oir3t6uth2acll2a", "profile": {"bio": {"text": "Visual Artist / Graphic Designer / Video Editor (basic) / Retro Gamer / Just Exploring Web3", "mentioned_profiles": []}}, "username": "jimilicious", "power_badge": false, "display_name": "jimilicious🔄 🎩", "active_status": "inactive", "verifications": ["0x2cf8792d459be380697befa8b7390a387113e3db"], "follower_count": 269, "custody_address": "0x3c908674d4eff14625af499f9ba4e91bcd0c3389", "following_count": 437, "verified_addresses": {"eth_addresses": ["0x2cf8792d459be380697befa8b7390a387113e3db"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jarvisjg/for-you-i-will-teddy-geiger-cover?si=d60d0c7c65ec4a138fd696af02052563&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (960999, '0x976a1dcee6ee6db44d26aee392ceee944f271d6a', 0, 1, '2024-05-07 09:22:02+00', 0, 1, '{"fid": 448267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c084f2f-96ec-40a4-de8f-330f4bd3b000/rectcrop3", "profile": {"bio": {"text": "i love crypt♡cat♡budgie♡and‥\n皆さまよろしくお願いします♡\nフォロバします♡健康や趣味に関することについてつぶやきます♡\nおたんこナースです♡", "mentioned_profiles": []}}, "username": "kananap", "power_badge": false, "display_name": "kananap🔮🩵@health", "active_status": "inactive", "verifications": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "follower_count": 510, "custody_address": "0x3bc7cc9fb63fa1c4b70ac5aa8c80475b784f5a6c", "following_count": 755, "verified_addresses": {"eth_addresses": ["0xd542c059c9f5dda36e52198880b98e2afcca4eaf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tbNKTK7Fdbn299yp8\"}"}', 'musicjp'), - (906697, '0x71ff9a336f63957d781d334fe3b26f8fdd25c22f', 0, 1, '2024-05-07 06:57:02+00', 0, 0, '{"fid": 257278, "object": "user", "pfp_url": "https://i.imgur.com/MIwOSdK.jpg", "profile": {"bio": {"text": "A storyteller, interactive media creator, Canadian Hip Hop poet, 360 VR Founder MixItMedia, and Communications, Content & Experience Director with Metaknyts.", "mentioned_profiles": []}}, "username": "symbolik", "power_badge": false, "display_name": "Symbolik", "active_status": "inactive", "verifications": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "follower_count": 94, "custody_address": "0xdef6d16539cfcc8793ce16ab01c563b17642bd23", "following_count": 111, "verified_addresses": {"eth_addresses": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/symbolik/i-manifest\"}"}', 'soundxyz'), - (995736, '0x88a2780183494823ed598de4db088cf44d5e4423', 0, 1, '2024-05-07 11:45:11+00', 0, 3, '{"fid": 503602, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1631d975-bacc-4b8d-0ad5-6443ddc53a00/rectcrop3", "profile": {"bio": {"text": "Catch the trader\n(선수만잡았다)", "mentioned_profiles": []}}, "username": "stoncold", "power_badge": false, "display_name": "stonecold", "active_status": "inactive", "verifications": ["0xdd7bde3072638c853b65b33314e4f5e857ed9e42"], "follower_count": 600, "custody_address": "0xf8d8f8fd3e8add2142b6d68fd05098ac11a02579", "following_count": 660, "verified_addresses": {"eth_addresses": ["0xdd7bde3072638c853b65b33314e4f5e857ed9e42"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-909025878/beautiful-things-benson-boone?si=b8cf3652aa87483495621db13973c35b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (978571, '0x88f6bdd207e9b90c8b88a4a30f9d7b45b7c025d8', 0, 1, '2024-05-07 10:37:28+00', 0, 4, '{"fid": 448704, "object": "user", "pfp_url": "https://i.imgur.com/7m1dvgv.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "shole", "power_badge": false, "display_name": "Sholepad", "active_status": "inactive", "verifications": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "follower_count": 299, "custody_address": "0x81970265d0fce1f2340d7f0bee06bf4d74bb9458", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x72e710da972f1d07520fc3c1ed1fd5739d2434d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kDMUZ\"}"}', 'sonata'), - (989781, '0x494e28c504317e12125a71931e14e145d341f52f', 4310, 1, '2024-05-07 11:19:13+00', 13, 50, '{"fid": 396686, "object": "user", "pfp_url": "https://i.imgur.com/fPrPJbw.jpg", "profile": {"bio": {"text": "Degen Investor, NFT Designer, Real Estate Investment Expert", "mentioned_profiles": []}}, "username": "cupe", "power_badge": false, "display_name": "Unicbabe🎩", "active_status": "inactive", "verifications": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "follower_count": 636, "custody_address": "0x1cf829fd720262d71df0d31d2daa438b8bcfa33d", "following_count": 1137, "verified_addresses": {"eth_addresses": ["0x5baf07c13df692185c02ea08e19a82fa066b75d9"], "sol_addresses": ["JCwvnP3zV9KCQMMCCsmdPrSoh6K6AbJeUpvuY96YPKj1"]}}', '{"{\"url\":\"https://open.spotify.com/track/2igwFfvr1OAGX9SKDCPBwO\"}"}', 'spotify'), - (1173284, '0x51da11efee28e49f677bca988e5693b8b835cf00', 0, 1, '2024-05-15 17:30:36+00', 0, 3, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2047, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/09a06e45e788e51d9fd6e636a1cd28aa.m3u8\"}","{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', NULL), - (1025061, '0x7de2eb55daad92cbffaad3181e00ac8d60019f0d', 0, 1, '2024-05-07 13:05:30+00', 0, 0, '{"fid": 504895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c23d4d7-afcd-44bb-abce-e72aefd94800/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "seojeong", "power_badge": false, "display_name": " John t.B ☕️", "active_status": "inactive", "verifications": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "follower_count": 438, "custody_address": "0x9bae906fb2ff3b5a0abb9585734b7806a3834b14", "following_count": 386, "verified_addresses": {"eth_addresses": ["0x7edf9d479c36e0a64d5685db352db564807362ff"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1NmudjX86kZljblCRuH6lJ?si=cKa7kmkWTjuwA4WL7Y7Plg&context=spotify%3Aalbum%3A1YAvqhRktm7QEsuWYHSDgl\"}"}', NULL), - (978455, '0xdeedee5832ece970d5f3121da00d89cf033dc883', 0, 1, '2024-05-07 10:36:25+00', 0, 1, '{"fid": 386476, "object": "user", "pfp_url": "https://i.imgur.com/4j7dlYS.jpg", "profile": {"bio": {"text": "I am a trader studying crypto assets.\nギブあんどテイクをモットーに頑張ってます🎩😎よろしくお願いします✨", "mentioned_profiles": []}}, "username": "motosan", "power_badge": false, "display_name": "motosan", "active_status": "inactive", "verifications": ["0x90a7989ef0369e9a57c599e88338878335cda715"], "follower_count": 642, "custody_address": "0xd58f35d2fd769540b65a97c8786d1278beed59ff", "following_count": 701, "verified_addresses": {"eth_addresses": ["0x90a7989ef0369e9a57c599e88338878335cda715"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gvpqpgvpjvtg/sg-official\"}"}', 'musicjp'), - (961769, '0x6b5b64f6bc327d2ae5bf7814e89dd7bc4f4de61e', 0, 1, '2024-05-07 09:23:33+00', 0, 1, '{"fid": 427017, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c51631d-70e5-4382-79ae-f7dc7b339100/original", "profile": {"bio": {"text": "I think I''ll have a good exchange with you.\n\nwhat ever you can manage\nなんとかなれー\n\nhttps://warpcast.com/saiga/0xa865c085", "mentioned_profiles": []}}, "username": "saiga", "power_badge": false, "display_name": "saiga", "active_status": "inactive", "verifications": ["0x8437df1f56c7a144adefb71653f871bc43a63f7f"], "follower_count": 662, "custody_address": "0xcc9227622532b262c003032763cb02d405fd6e77", "following_count": 599, "verified_addresses": {"eth_addresses": ["0x8437df1f56c7a144adefb71653f871bc43a63f7f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jpopasiastation/mongol800\"}"}', NULL), - (970108, '0x4715bdd496fed88a72b6da53c39abe185706feac', 0, 1, '2024-05-07 09:55:13+00', 0, 4, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1550, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1812, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ga3ppNAF8hVohcK4A\"}"}', NULL), - (1025635, '0xb444fe60972a1d1b7b6428f97aa8f09eba625593', 0, 1, '2024-05-07 13:08:14+00', 0, 1, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1142, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/wagon-013/sets/lily-chou-chou?si=e37dcdb4ddc641dc852f0597f7114721&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (947736, '0x23e65032756adc06af185718619c57f4db9a45c5', 0, 1, '2024-05-07 08:46:31+00', 0, 1, '{"fid": 504446, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a6da4a4-a02d-4c42-a514-645c5c1ce300/rectcrop3", "profile": {"bio": {"text": "アバババ\nこれは紅のリンク!https://twitter.com/jakojako001", "mentioned_profiles": []}}, "username": "jako", "power_badge": false, "display_name": "じゃこ天", "active_status": "inactive", "verifications": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "follower_count": 40, "custody_address": "0xe8af48975cc3ca92acc03a76abaeb4c1fee147e7", "following_count": 131, "verified_addresses": {"eth_addresses": ["0x0dec55d77f81ead734cad0c4ff60072f0024e453"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2BLYOkLHmhY255IQCyW7sO?si=FpG8Rnq3QQSHMppKfdD9hg&context=spotify%3Aartist%3A4hUWwJ0fRLx9rYtUvT26Ii\"}"}', 'bgm'), - (1173458, '0x4e6e12f0200a520b04e66a5bb9713fe43782f571', 0, 1, '2024-05-16 00:11:31+00', 0, 5, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 873, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 728, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/search?q=shut%20down%20blackpink&query_urn=soundcloud%3Asearch-autocomplete%3Aa287553c986b4042a724de1ee2fb5f00\"}"}', NULL), - (1043400, '0xf4d65d7afd11b7efb4b0355df02372e49d616efe', 0, 1, '2024-05-07 13:59:15+00', 0, 14, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1322, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 2028, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Zyizxfz4NXdCgVLwhuBNw\"}"}', 'sonata'), - (1042841, '0xed4122b82d0130a678f0d34ddab6c763bc99745a', 0, 1, '2024-05-07 13:58:44+00', 0, 0, '{"fid": 382749, "object": "user", "pfp_url": "https://i.imgur.com/7MJOHmF.jpg", "profile": {"bio": {"text": "I love warpcast and degen\n주로 아침(출근길), 저녁(퇴근길), 야간반 활동합니다.\nhttps://zora.co/@ixtream", "mentioned_profiles": []}}, "username": "ixtream", "power_badge": false, "display_name": "ixtream🎩🍖", "active_status": "inactive", "verifications": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "follower_count": 2455, "custody_address": "0xda6f497cb157c676f9af0ba7f44cb4e8ef222502", "following_count": 2153, "verified_addresses": {"eth_addresses": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jeieon/ost-zhuravli?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1025638, '0x092e754651acd4464cc9d08548d4950d9e14b14c', 0, 1, '2024-05-07 13:06:15+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 393, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 198, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Nq926S3C9eupCZ2TA\"}"}', NULL), - (991104, '0x21fd0b9e8e9361f28ca7807c28dc300eadfca8d8', 1010, 1, '2024-05-07 11:20:36+00', 13, 23, '{"fid": 169, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/fWnQF5IzaerIcPn5rPHvl4oENtum0Jr2M5wxtC99L2c0ELGPD9WzgxhlgeybhUrO-LueMKSYgBWyhKcT5wydRotxpONeNJaP78t2nA", "profile": {"bio": {"text": "I am a VC", "mentioned_profiles": []}}, "username": "fredwilson.eth", "power_badge": true, "display_name": "fredwilson", "active_status": "inactive", "verifications": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "follower_count": 4629, "custody_address": "0x6e6dc9975c7b820c235649924b4ab20068100e76", "following_count": 127, "verified_addresses": {"eth_addresses": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/UsVB5\"}"}', 'sonata'), - (962357, '0xeb7c0d77f17ec4e5d42b13ccc7614d38c781985e', 0, 1, '2024-05-07 09:24:59+00', 0, 0, '{"fid": 414050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/568505ff-a319-4eb2-e283-dbab51369500/rectcrop3", "profile": {"bio": {"text": "Product Owner @ a Big 4, and Artist.\nPrints and NFTs available:\n\nhttps://linktr.ee/Chiebuniem", "mentioned_profiles": []}}, "username": "pascalokafor", "power_badge": false, "display_name": "Pascal🎩", "active_status": "inactive", "verifications": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "follower_count": 122, "custody_address": "0x53feedd7a49bb51ff6530400dddb7e673deb9c66", "following_count": 192, "verified_addresses": {"eth_addresses": ["0x785f26f6557b9229cddc5f1c4660216c5c02fd67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6NsZucPvDbyARfXLgTpY9u?si=ha9fgfJ-SoarWfc-vURKVg\"}"}', 'no-channel'), - (1086234, '0x6912039a5f4d6536eaf9dd6266ebe7b25408d940', 0, 1, '2024-05-07 15:41:58+00', 0, 4, '{"fid": 426685, "object": "user", "pfp_url": "https://i.imgur.com/FNRt90M.jpg", "profile": {"bio": {"text": "I''m baechu🥬🥬\n", "mentioned_profiles": []}}, "username": "cutyyyyyyy", "power_badge": false, "display_name": "Baechu", "active_status": "inactive", "verifications": ["0xe9a6cbd76db187757920854204dfed326cfb6d9d"], "follower_count": 3132, "custody_address": "0xd171efd2cf5db8705aef39aa1ea014491b95cc6e", "following_count": 3091, "verified_addresses": {"eth_addresses": ["0xe9a6cbd76db187757920854204dfed326cfb6d9d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7EbZgNN9wJZvSTUs6\"}"}', NULL), - (996356, '0x53d076acf48d35cd28d8ec7d1b965abb930bddb1', 0, 1, '2024-05-07 11:45:49+00', 0, 3, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2920, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3326, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/34SUaNWtWZmU2ofN6\"}"}', NULL), - (995738, '0xe6ec73557370ba1842d5d84ac7d86ec06fbf1e7f', 0, 1, '2024-05-07 11:44:39+00', 0, 2, '{"fid": 511743, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d992a649-c8f3-49fa-13f9-70844e9a6e00/rectcrop3", "profile": {"bio": {"text": "환생한 Ghost_Eyes👻\n잘 부탁 드립니다", "mentioned_profiles": []}}, "username": "!511743", "power_badge": false, "display_name": "Ghost_Eyes👻", "active_status": "inactive", "verifications": ["0xf0fe272b03a177301b3af721e451cdfe70ffd7e2", "0xf0fe272b03a177301b3af721e451cdfe70ffd7e2"], "follower_count": 65, "custody_address": "0xf737c3aaa2dbad13a2a46c1c6e627c5231ef1fcc", "following_count": 169, "verified_addresses": {"eth_addresses": ["0xf0fe272b03a177301b3af721e451cdfe70ffd7e2", "0xf0fe272b03a177301b3af721e451cdfe70ffd7e2"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 박효신 https://on.soundcloud.com/hffVy\"}"}', NULL), - (1117908, '0x557b28f74ade8753e8e2d7f8ebd7d9fe7fe9f9a7', 0, 1, '2024-05-07 17:40:22+00', 0, 48, '{"fid": 507856, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d276afed-cc35-44d7-0154-787a1e562e00/rectcrop3", "profile": {"bio": {"text": "Crypto researcher/web3 gamer/lifelong learner/travel addict", "mentioned_profiles": []}}, "username": "!507856", "power_badge": false, "display_name": "Nil", "active_status": "inactive", "verifications": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "follower_count": 720, "custody_address": "0xe2e74686dbfa00e6e34efb3b5aac7216106cf9f8", "following_count": 941, "verified_addresses": {"eth_addresses": ["0x1c868a1ada045c915242ea95ee34cbc7797625c8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/i6jiCMg7FTbxRPCWA\"}"}', 'sonata'), - (1025645, '0xbcb3c0af1801120ea7508020f65e49005ce7ef3d', 0, 1, '2024-05-07 13:08:37+00', 0, 1, '{"fid": 387528, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b2ad7f9-9595-4aa5-6c2d-a90ed20df900/original", "profile": {"bio": {"text": "crypto勉強中です🥹楽しくワーキャスしたい!🍖🎩studying crypto🎩fid:387528", "mentioned_profiles": []}}, "username": "umak", "power_badge": false, "display_name": "🍖umak🎩", "active_status": "inactive", "verifications": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "follower_count": 912, "custody_address": "0xba46d0958c44912f98d84c354ea445457a29fe60", "following_count": 1132, "verified_addresses": {"eth_addresses": ["0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dZcf5SLWbqQPm5ur9\"}"}', 'musicjp'), - (995739, '0xc0e6781b2699e0d059f8be8dea245754b41da3c9', 0, 1, '2024-05-07 11:44:55+00', 0, 0, '{"fid": 421000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1ddbc0a2-013c-4300-1d16-dd04765af000/original", "profile": {"bio": {"text": "Japanese guy who loves crypto.\nhosting /musicjp /games-jp /stories-jp ", "mentioned_profiles": []}}, "username": "nyasu", "power_badge": false, "display_name": "Nyasu(🎩🎙️🍖🔥)", "active_status": "inactive", "verifications": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "follower_count": 2379, "custody_address": "0xff5035ccce1e588d7ee45dbce9c700ce7b2ab609", "following_count": 1333, "verified_addresses": {"eth_addresses": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t-trang-801042212/t-ara-sexy-love?utm_source=mobi&utm_campaign=social_sharing\"}"}', NULL), - (1173290, '0x0c366a06e3db7fd0333532ef8f9f8fab1a630c21', 0, 1, '2024-05-15 17:38:37+00', 0, 0, '{"fid": 3726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a802f59-ad74-411e-9da9-add0f355c100/original", "profile": {"bio": {"text": "⌐◨-◨ Artist of Archer and Adventure Time, producer for “The Crew”", "mentioned_profiles": []}}, "username": "thepencil.eth", "power_badge": true, "display_name": "thepencil.eth ⌐◨-◨ 🎩", "active_status": "inactive", "verifications": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "follower_count": 711, "custody_address": "0x47461d4657c9aeb7772913227388c029a10562cf", "following_count": 395, "verified_addresses": {"eth_addresses": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/thecrew/early\"}"}', NULL), - (1057678, '0x878ccc25c5ec703328f40b4afc2f8f4050fec49a', 0, 1, '2024-05-07 14:46:26+00', 0, 2, '{"fid": 346678, "object": "user", "pfp_url": "https://i.imgur.com/6PryjL1.jpg", "profile": {"bio": {"text": "네오 코인을 투자하고 민트와 워캐스트에 관심이 많은 사람입니다.", "mentioned_profiles": []}}, "username": "steampackmarine", "power_badge": false, "display_name": "Steampackmarine🍖", "active_status": "inactive", "verifications": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "follower_count": 1510, "custody_address": "0x8ba5eefdb660c494528c25f40a2add9ce5f575a9", "following_count": 1728, "verified_addresses": {"eth_addresses": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kNr1x\"}"}', 'sonata'), - (994311, '0x511bf47836ddc170eebf9368340e30c3b8cc49b2', 0, 1, '2024-05-07 11:36:48+00', 0, 0, '{"fid": 508994, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/88e8affe-168c-4a7c-af54-a1639826d600/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!508994", "power_badge": false, "display_name": "Roland🎩⛓️", "active_status": "inactive", "verifications": ["0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe", "0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe"], "follower_count": 530, "custody_address": "0x27d5137c54adb3b215bd01096551972cd3c0a408", "following_count": 949, "verified_addresses": {"eth_addresses": ["0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe", "0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mHAHZySwQcwmfW4W6\"}"}', 'sonata'), - (991106, '0x2cab3724490c4719a29527711e30c984b09d7345', 0, 1, '2024-05-07 11:20:04+00', 0, 5, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1300, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 903, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6bpbAkKUdTSejGMqKcCsXS\"}"}', 'sonata'), - (999075, '0xbc29b83eb56be90c6b51473c8e4765395d771d7f', 0, 1, '2024-05-07 11:50:52+00', 0, 2, '{"fid": 400888, "object": "user", "pfp_url": "https://warpcast.com/avatar.png?t=1715082481087", "profile": {"bio": {"text": "Hi, I want to introduce you to delicious food and beautiful scenery&AlfaFrens", "mentioned_profiles": []}}, "username": "ncsoft", "power_badge": false, "display_name": "noisysky🎩🔄", "active_status": "inactive", "verifications": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "follower_count": 4649, "custody_address": "0x9f10badebd3c0a615dff74a777d5cfff66e08831", "following_count": 4622, "verified_addresses": {"eth_addresses": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "sol_addresses": ["FTa1LfZzaFzEz79ne72Qrw51tQnX2dkwGJbiV3WgtP6S"]}}', '{"{\"url\":\"https://soundcloud.com/ap4zljw02nzh/sets/akmu?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1059089, '0xc1473579cc094ce553e636a6a38119b61e577262', 0, 1, '2024-05-07 14:52:14+00', 0, 0, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 738, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1081, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hk-yi-1/sleeping-beauty?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (976843, '0x09900cb8d00430cd88dc2d4ac12ef4bae9ceaa57', 0, 1, '2024-05-07 10:30:09+00', 0, 2, '{"fid": 500896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad084dc3-15c2-4a29-147a-3f9b87309800/rectcrop3", "profile": {"bio": {"text": "like music youtube culture food \nno matter what like it", "mentioned_profiles": []}}, "username": "joetaka", "power_badge": false, "display_name": "joetaka", "active_status": "inactive", "verifications": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "follower_count": 823, "custody_address": "0x5db012ed31ad2e1ac2db182dae0f51cf582acb70", "following_count": 892, "verified_addresses": {"eth_addresses": ["0x6def9929f9ea6a7b662bce487f830d6ea6635d74"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/taeyong-tap?in=sc-playlists-kr/sets/trap-party&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (980252, '0xb9b74f6ceda613f6f35a5a9b866086190681af27', 0, 1, '2024-05-07 10:42:51+00', 0, 5, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2931, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2365, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XzXHN\"}","{\"url\":\"https://on.soundcloud.com/XzXH\"}"}', 'sonata'), - (1025646, '0x5717de6e70417007063a732da5ce0854013d1368', 0, 1, '2024-05-07 13:07:20+00', 0, 1, '{"fid": 503439, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d26d2354-89c8-4f5f-2598-006cbd546e00/rectcrop3", "profile": {"bio": {"text": "Angel 1004", "mentioned_profiles": []}}, "username": "swallow1004", "power_badge": false, "display_name": "swallow1004", "active_status": "inactive", "verifications": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "follower_count": 805, "custody_address": "0x9390018f24c93e7b6db9b719f149f7394d70653e", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0xca0e67f908aadf090549839017f4c185ed9e3a17"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uJKtW\"}"}', 'sonata'), - (991739, '0x4d544ca2ff0f5a3fdfa4e992ac520bd9010c1123', 0, 1, '2024-05-07 11:27:27+00', 0, 0, '{"fid": 509805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be4a8f03-f88b-4c7f-e92c-542751693900/rectcrop3", "profile": {"bio": {"text": "Sky is very beautiful", "mentioned_profiles": []}}, "username": "!509805", "power_badge": false, "display_name": "Samanehsky", "active_status": "inactive", "verifications": ["0x18be89bad07b022093f04343aebd4c42856e9aa2"], "follower_count": 318, "custody_address": "0xd1c176c300268cb7d63b29e48cb2a8d17aaedbbf", "following_count": 259, "verified_addresses": {"eth_addresses": ["0x18be89bad07b022093f04343aebd4c42856e9aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/anshery/new-day-ambient-mix?in=anshery%2Fsets%2Fnew-day-798757283\"}"}', NULL), - (991612, '0x7ba40b6c9527273cfdad4e7ab13e5cbe0889afe0', 0, 1, '2024-05-07 11:26:15+00', 0, 9, '{"fid": 488004, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6186e71e-9262-46eb-c312-f05428784d00/rectcrop3", "profile": {"bio": {"text": "슈캐 장착하고 🏃🏃‍♀️🏃‍♂️💨", "mentioned_profiles": []}}, "username": "immyyr", "power_badge": false, "display_name": "Bluev", "active_status": "inactive", "verifications": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "follower_count": 2958, "custody_address": "0x5432cf7d98e934b2cade28db3cffd883f05d54b5", "following_count": 3320, "verified_addresses": {"eth_addresses": ["0x56ba7b51eae5121a787415e4b656d43354d6f850"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5q8QiLmLrhPoYrA19\"}"}', 'sonata'), - (991214, '0x2a9ab5e5bce557bccfe3e821052791fa44b93974', 0, 1, '2024-05-07 11:21:11+00', 0, 5, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2690, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2983, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/by6sRKs5yebfRQeF9\"}"}', 'sonata'), - (1038138, '0x2e1416de4b9e08cbb296b4c9662e52ca34820e9b', 0, 1, '2024-05-07 13:36:54+00', 0, 0, '{"fid": 423559, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdoXAH6xTKfiCR1qrdHcx5SaAANNXudS1YEmv27SPne8d?filename=.gif", "profile": {"bio": {"text": "F4F// Hi, I''m jonny :D Thank you for visiting. If you leave a trace, I''ll visit you! I hope you have a nice day in warpcast", "mentioned_profiles": []}}, "username": "jonnyjonny", "power_badge": false, "display_name": "Jonny", "active_status": "inactive", "verifications": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "follower_count": 1329, "custody_address": "0xde5d220b53d6015b7a6af20036a5673fbd30a3fe", "following_count": 2152, "verified_addresses": {"eth_addresses": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/adejo4bqq78q/bigbang-stupid-liar?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (781290, '0x9825e641bc8f197d4586d4b0ce8d448550421a04', 0, 1, '2024-05-07 01:55:55+00', 0, 0, '{"fid": 428762, "object": "user", "pfp_url": "https://i.imgur.com/zcboppl.jpg", "profile": {"bio": {"text": "Trader ~ web3", "mentioned_profiles": []}}, "username": "aiden-alen", "power_badge": false, "display_name": "Aiden ", "active_status": "inactive", "verifications": ["0x6c182f8f3549f06255bcb513229cd1a3d54f2a67"], "follower_count": 757, "custody_address": "0xe4428ea7aca0061fa5ab9c7f9e9650f2cba670b6", "following_count": 1029, "verified_addresses": {"eth_addresses": ["0x6c182f8f3549f06255bcb513229cd1a3d54f2a67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LePMth7gR6JzZvt57\"}"}', 'sonata'), - (1173322, '0xcbb21a56c9b515de620d2f96fd4654fb38cfeb38', 3222, 1, '2024-05-15 20:01:52+00', 0, 1, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 11698, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/1b9e8957-0ae3-49ca-a218-13b7461375ea\"}","{\"url\":\"https://www.sound.xyz/kasbo/im-in-trouble-feat-vivii\"}"}', NULL), - (1025666, '0x8f73f656a53cd5ba11cebd0c327c5c711899331e', 0, 1, '2024-05-07 13:06:27+00', 0, 2, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 393, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 198, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Xc4rx1xbuhk34C7q8\"}"}', NULL), - (980829, '0x62455fafd2568811852ad649537929e964714b3f', 0, 1, '2024-05-07 10:44:21+00', 0, 1, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 423, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 457, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/cNETtFF1NuBTctXQ9\"}"}', NULL), - (991383, '0x2fc567d9a60ca01d40006139896157b4c6f3fb2c', 0, 1, '2024-05-07 11:22:46+00', 0, 0, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/hip-hop-rap?si=a24dc7080de440cabfeee31a68ce1a2e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1038123, '0xf16b74200f4eea35be57b2892c2ff72c8413731a', 0, 1, '2024-05-07 13:37:31+00', 0, 8, '{"fid": 480504, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c8baab0-ef56-4da5-8673-f65d9534c300/original", "profile": {"bio": {"text": "안녕하세요.\n시고르자브종 입니다.\n멍~멍~\nCountry Dog\nBOW WOW~", "mentioned_profiles": []}}, "username": "quhn", "power_badge": false, "display_name": "CountryDog", "active_status": "inactive", "verifications": ["0xf2e11f72f83feaa573e0805266c023b052b32461"], "follower_count": 1502, "custody_address": "0xee030ff4b1f535f20d7106c66c8d44322904afad", "following_count": 945, "verified_addresses": {"eth_addresses": ["0xf2e11f72f83feaa573e0805266c023b052b32461"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost24/cho-jung-seok-aloha-hospital-playlist-ost-part-3?si=75c8eee16a884be48810a5f91a43648f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (994333, '0x94e938515ee8e39f3525081a53646cd595b05409', 0, 1, '2024-05-07 11:35:07+00', 0, 1, '{"fid": 396394, "object": "user", "pfp_url": "https://i.imgur.com/0BDew9p.jpg", "profile": {"bio": {"text": "Metaverse and crypto is future☺️😎🥰", "mentioned_profiles": []}}, "username": "btcqueen", "power_badge": false, "display_name": "Sahar🎩🔮🍖", "active_status": "inactive", "verifications": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba", "0x174315412c747991d315d24db8278cfc287396e3"], "follower_count": 1455, "custody_address": "0xe1f6c0b91117b3f3310b3b6fa0132e1ca4defb0c", "following_count": 1099, "verified_addresses": {"eth_addresses": ["0x174315412c747991d315d24db8278cfc287396e3", "0x631dc61bd38829fd957fe3829f340e9470bfb7ba", "0x174315412c747991d315d24db8278cfc287396e3"], "sol_addresses": ["Du1nGiCWhMHxMM8Kj2phUVio1ip5haHatjBsAMbwSnYc"]}}', '{"{\"url\":\"https://on.soundcloud.com/zPC3tmrAXneJPCUp8\"}"}', NULL), - (997132, '0x9a4201b3408753d119414008b59c636683aeb355', 0, 1, '2024-05-07 11:48:54+00', 0, 0, '{"fid": 402461, "object": "user", "pfp_url": "https://i.imgur.com/ySH9neZ.jpg", "profile": {"bio": {"text": "제주살이 9년차 입니다^ ^", "mentioned_profiles": []}}, "username": "geniusseon", "power_badge": false, "display_name": "geniusseon🎩🍖⛓️", "active_status": "inactive", "verifications": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "follower_count": 1581, "custody_address": "0xb5dfed4c234fe2e11150467b49680fdf2612f4a5", "following_count": 1833, "verified_addresses": {"eth_addresses": ["0x2fd93c0ea69017431884ea150cf082bcb865e165"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3zf9Q\"}"}', 'sonata'), - (996353, '0x9587f88d3dc361f1fc3e7ce299b73514291f97cb', 0, 1, '2024-05-07 11:46:01+00', 0, 0, '{"fid": 507969, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e5777449-9144-4e2f-78b8-4dd9c7d95f00/rectcrop3", "profile": {"bio": {"text": "Hello!! Everyone ~~", "mentioned_profiles": []}}, "username": "!507969", "power_badge": false, "display_name": "SugarBubble", "active_status": "inactive", "verifications": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "follower_count": 483, "custody_address": "0xf796525c77699e98254c0b9658c5f11965e40795", "following_count": 779, "verified_addresses": {"eth_addresses": ["0x05d5fcd106e8503b48b7a414d686a031c8a0be01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SdiZt\"}"}', 'sonata'), - (980795, '0xeee3b9c3ba965020538960cfc0f4a383fbc55133', 0, 1, '2024-05-07 10:45:13+00', 0, 1, '{"fid": 503138, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ffb8ae75-b992-4dfb-7d50-31a9ce0c2000/rectcrop3", "profile": {"bio": {"text": "hello\nI would like to introduce you to beautiful scenery and delicious food.\nAnd with everyday life.", "mentioned_profiles": []}}, "username": "steem", "power_badge": false, "display_name": "Avril Lavigne", "active_status": "inactive", "verifications": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "follower_count": 2051, "custody_address": "0x957f221da7a42f662e70aceffb69148e996a5139", "following_count": 2876, "verified_addresses": {"eth_addresses": ["0x67751d95e82e48ed03a18c665c0bb60555b45449"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vcbZJMuwexgoayFf9\"}"}', 'sonata'), - (900221, '0x25a0a5100443ed87a961dd770c4440cc3cb9eb93', 0, 1, '2024-05-07 06:47:44+00', 0, 0, '{"fid": 6622, "object": "user", "pfp_url": "https://i.imgur.com/cBiR42V.jpg", "profile": {"bio": {"text": "what dish tastes like your past? /salty /fufu | seemore.tv/frdysk • https://rc.xyz/frdysk", "mentioned_profiles": []}}, "username": "fufuprophet.eth", "power_badge": true, "display_name": "frdysk 🦠", "active_status": "inactive", "verifications": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "follower_count": 24571, "custody_address": "0x18a3ff1de85c860d09705e68dc81e1ce48c3f131", "following_count": 1413, "verified_addresses": {"eth_addresses": ["0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rac/two-door-cinema-club-something\"}"}', NULL), - (981206, '0xd38e24a00df353e573eb7067098a6ced26b520d5', 0, 1, '2024-05-07 10:46:52+00', 0, 0, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1638, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1641, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/disrupting/strawberries-and-cigarettes?si=aede89b8e21a4695b8afca39eb53b9d8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (981263, '0x12925bb46fdc486d0fc48cc83306db160977e39c', 0, 1, '2024-05-07 10:48:01+00', 0, 1, '{"fid": 508236, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59caaffb-4e06-4196-f253-0d1f74056100/rectcrop3", "profile": {"bio": {"text": "A round world\n\n세계로 가💡", "mentioned_profiles": []}}, "username": "ticdog", "power_badge": false, "display_name": "Javis", "active_status": "inactive", "verifications": ["0x7428e5e5e414c1b0d55eac81fe0f21d11f5b57cc"], "follower_count": 268, "custody_address": "0x5011a25a9856620d29f7ee36f38551d331293532", "following_count": 507, "verified_addresses": {"eth_addresses": ["0x7428e5e5e414c1b0d55eac81fe0f21d11f5b57cc"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-196189453/6bxmp4ijo976?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (963851, '0x931b0f9412a8d77e46bb9776246529e2130ed3fb', 0, 1, '2024-05-07 09:27:45+00', 0, 8, '{"fid": 511517, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/19dfe89e-22a3-453c-72a6-a51cdb328a00/rectcrop3", "profile": {"bio": {"text": "I love nature and music\nI love to travel new place", "mentioned_profiles": []}}, "username": "!511517", "power_badge": false, "display_name": "MohiKh", "active_status": "inactive", "verifications": ["0x7feca2da87cd20c5e040ee142f15e993d88e91a7", "0x7feca2da87cd20c5e040ee142f15e993d88e91a7"], "follower_count": 421, "custody_address": "0x51d58762532edc535b082e0c03db2b2eb2355ce9", "following_count": 847, "verified_addresses": {"eth_addresses": ["0x7feca2da87cd20c5e040ee142f15e993d88e91a7", "0x7feca2da87cd20c5e040ee142f15e993d88e91a7"], "sol_addresses": ["AXir98Y4Y89GZuLjPpHGf2nmS8xX7byJsi8CFjkicshh", "AXir98Y4Y89GZuLjPpHGf2nmS8xX7byJsi8CFjkicshh"]}}', '{"{\"url\":\"https://open.spotify.com/track/737gzPI5VAmgUGWiJ9yXuu?si=sL5Ad2iQQMSJEhWZFYCqy\"}"}', NULL), - (991376, '0x7b1ef43d2552a5d871825c7137dfd5ae40565f43', 0, 1, '2024-05-07 11:22:58+00', 0, 0, '{"fid": 453791, "object": "user", "pfp_url": "https://i.imgur.com/g0L7cgm.jpg", "profile": {"bio": {"text": "I am a kind girl, I love sports and animals and I like horse riding", "mentioned_profiles": []}}, "username": "hghadri58155", "power_badge": false, "display_name": "Hadis ", "active_status": "inactive", "verifications": ["0x037f1c446ce82382a9491ede5b125c6dac160550"], "follower_count": 637, "custody_address": "0xff3832c48f227132210352fef9de47b832d2c72a", "following_count": 2165, "verified_addresses": {"eth_addresses": ["0x037f1c446ce82382a9491ede5b125c6dac160550"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/f9NwsCaXX6rmAGUu8\"}"}', NULL), - (994455, '0x4b4b7ffe3ebad88869b9e5eecefb22f276d50638', 0, 1, '2024-05-07 11:38:05+00', 0, 0, '{"fid": 408178, "object": "user", "pfp_url": "https://i.imgur.com/TkjZRlQ.gif", "profile": {"bio": {"text": "im an AI artist , im sharing a lots of ai generated boring arts everyday , follow and enjoy ", "mentioned_profiles": []}}, "username": "the-hojjat", "power_badge": false, "display_name": "Hojjat ✈️", "active_status": "inactive", "verifications": ["0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4"], "follower_count": 616, "custody_address": "0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R1cBH7JKMKQzW6n88\"}"}', NULL), - (1025682, '0x110c63bae5421d4262057a17df4aa0ff107a51a6', 0, 1, '2024-05-07 13:05:48+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 393, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 198, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wc3C2QGk4aUpAyDo9\"}"}', NULL), - (981265, '0x6f40b323c7a329c90e316f1040cd023c85f08f49', 0, 1, '2024-05-07 10:48:29+00', 0, 3, '{"fid": 491574, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7728427d-755b-4e2b-77e9-1e2b6e5d8a00/original", "profile": {"bio": {"text": "슈캐/리캐는 기본!\n워친님들, 서로 소통하며 지내요!", "mentioned_profiles": []}}, "username": "friren", "power_badge": false, "display_name": "프리렌", "active_status": "inactive", "verifications": ["0x979c437e623accc5b07690c306424b187c63656c"], "follower_count": 1940, "custody_address": "0xa540b917daa45990e8c60632f4cc87727454283d", "following_count": 2194, "verified_addresses": {"eth_addresses": ["0x979c437e623accc5b07690c306424b187c63656c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 비비 (BIBI) - 밤양갱 (Bam Yang Gang) by Moonbyulkiki31 on #SoundCloud https://on.soundcloud.com/JuPnF\"}"}', NULL), - (991461, '0x1f8e242d616a72acfbac63ac908a0fef26bb0bc1', 0, 1, '2024-05-07 11:24:40+00', 0, 9, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2092, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1724, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to ハルノヒ by 9999 on #SoundCloud https://on.soundcloud.com/Wt6ZZ\"}"}', NULL), - (991375, '0x10bde84fc40fead020c648ca28660d46d1b3947d', 0, 1, '2024-05-07 11:23:15+00', 0, 3, '{"fid": 471528, "object": "user", "pfp_url": "https://i.imgur.com/7nmDvaz.jpg", "profile": {"bio": {"text": "일단시작!선팔환영!🎩 🍖 🚀 맞팔조대리 무한반사(슈캐) 🔥 SHOW ME THE LIKES 👍 일상을 공유하고 소통합니다.", "mentioned_profiles": []}}, "username": "digino", "power_badge": false, "display_name": "DigiNo👍", "active_status": "inactive", "verifications": ["0xe717cca45aa886420645abe2e3fbf54b376a4e3c"], "follower_count": 2138, "custody_address": "0xec197fa6c407168baf16810202df1bcd10e16dd8", "following_count": 2374, "verified_addresses": {"eth_addresses": ["0xe717cca45aa886420645abe2e3fbf54b376a4e3c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gimgangpae-music/one-shot-two-shot-three-shot?si=a260dfcbad19443ea8873fc8fada2ee2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (994801, '0x07394eb8061f0caba34a63dafb8a8637b5c26d4e', 0, 1, '2024-05-07 11:41:26+00', 0, 2, '{"fid": 193746, "object": "user", "pfp_url": "https://i.imgur.com/qV0WoeH.jpg", "profile": {"bio": {"text": "猫の恩返しに出てくるナトルが好きです。\nMy creative inspiration comes down at 5~9 PM every day.", "mentioned_profiles": []}}, "username": "luca5642.eth", "power_badge": false, "display_name": "luca🎩🔵👻", "active_status": "inactive", "verifications": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "follower_count": 1309, "custody_address": "0xfcb46afe791a0ff441ecb78341664676e6c9a599", "following_count": 1138, "verified_addresses": {"eth_addresses": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/wmario0/glee-defying-gravity-full?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (994653, '0xa788e2c15ff72f211c230adb871d745abfb28c6f', 0, 1, '2024-05-07 11:39:10+00', 0, 2, '{"fid": 486193, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95baa334-c1cc-465f-e818-6b94f6616500/rectcrop3", "profile": {"bio": {"text": "일상, 소통, 여행, 맛집💕\n자주 소통해요! ", "mentioned_profiles": []}}, "username": "lilyjeong", "power_badge": false, "display_name": "Jeooong2", "active_status": "inactive", "verifications": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "follower_count": 1831, "custody_address": "0xede1aa09cac174e537213ff3936a68a4b468ff12", "following_count": 1935, "verified_addresses": {"eth_addresses": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/whCeYmrtZEQgxMCE8\"}"}', 'sonata'), - (994655, '0x709822a2d25d0e8767f189f541ec67c29c9df5b9', 0, 1, '2024-05-07 11:40:52+00', 0, 0, '{"fid": 471939, "object": "user", "pfp_url": "https://i.imgur.com/2W62eK2.jpg", "profile": {"bio": {"text": "F4F 뉴비라 팔로우 쩜요\n비투카 화이팅!!", "mentioned_profiles": []}}, "username": "mini486", "power_badge": false, "display_name": "Mini", "active_status": "inactive", "verifications": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "follower_count": 2138, "custody_address": "0xeba06dcd2197f32a581434165b801a9401c395c4", "following_count": 2108, "verified_addresses": {"eth_addresses": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WYdD1\"}"}', 'sonata'), - (1024534, '0xf9bf8184773370900baf541f6a598047316984fe', 0, 1, '2024-05-07 13:02:12+00', 0, 2, '{"fid": 415248, "object": "user", "pfp_url": "https://i.imgur.com/sQ371h7.jpg", "profile": {"bio": {"text": "DJ / Producer from London. Dad Joker. Sorare player. Manager name: Stish", "mentioned_profiles": []}}, "username": "plastician.eth", "power_badge": true, "display_name": "Plastician", "active_status": "inactive", "verifications": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "follower_count": 335, "custody_address": "0x09aa8409a31840b0386f205f0edf2974a3522291", "following_count": 253, "verified_addresses": {"eth_addresses": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/balamii/plastician-may-2024\"}"}', NULL), - (981267, '0x72ee630d4669b492f1a26e29d2c667b6edabce7f', 0, 1, '2024-05-07 10:46:56+00', 0, 4, '{"fid": 489791, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c1cb88b-d434-4693-f226-29fe8aafa400/rectcrop3", "profile": {"bio": {"text": "슈캐, 맞팔 100%, 초보지만 열심히 할게요. 같이 부쟈됩시다.😁", "mentioned_profiles": []}}, "username": "dudal", "power_badge": false, "display_name": "루피랑노래해요", "active_status": "inactive", "verifications": ["0x1d9c5484d1cc1e02f646d1fa4c6821bea55b0c35"], "follower_count": 1575, "custody_address": "0x9d99a01e34cb25187ba0e1f351cfe1a51aac4590", "following_count": 2169, "verified_addresses": {"eth_addresses": ["0x1d9c5484d1cc1e02f646d1fa4c6821bea55b0c35"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rAVPi\"}"}', 'sonata'), - (996354, '0x69499516d6e7f97857c8d375d9a7cbed4d04628d', 0, 1, '2024-05-07 11:45:49+00', 0, 2, '{"fid": 481574, "object": "user", "pfp_url": "https://i.imgur.com/FOUs9j3.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "0co", "power_badge": false, "display_name": "0CO", "active_status": "inactive", "verifications": ["0x5abac09f134287d42ecbad62fdab72dc9147173f"], "follower_count": 59, "custody_address": "0x79a5e6878a7b26f2529a56842ee1f35910b8a087", "following_count": 95, "verified_addresses": {"eth_addresses": ["0x5abac09f134287d42ecbad62fdab72dc9147173f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9821ExsasJF8hh2q9\"}"}', NULL), - (991386, '0x50fa93e10638e008b0bda4d94d80f72e6e6e3b87', 0, 1, '2024-05-07 11:22:13+00', 0, 0, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gdaal/kaftar-bazii?si=542cbea2c0aa45ad8053b26147b6baa3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (991379, '0xc4ec777312ea80af290b350a5b596a26727c1020', 0, 1, '2024-05-07 11:22:30+00', 0, 0, '{"fid": 475277, "object": "user", "pfp_url": "https://i.imgur.com/PqROmIL.jpg", "profile": {"bio": {"text": "hedgies", "mentioned_profiles": []}}, "username": "hedgies", "power_badge": false, "display_name": "hedgies", "active_status": "inactive", "verifications": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "follower_count": 4, "custody_address": "0x8b01a933e2a9bf8a6bec547e9a1c603072bad02c", "following_count": 80, "verified_addresses": {"eth_addresses": ["0x919c397950ce2edacc0cd5293e1b9b753e644265"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-eunon/sets/reggae?si=4336c16053e54a2fa4e231b6757ae9af&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1025720, '0x2bab8b6117e777e393eecc8f87eed626d9140a45', 0, 1, '2024-05-07 13:08:20+00', 0, 3, '{"fid": 503140, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2de648f-2d6d-4a8b-61c3-f84fe3ecb200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mtm", "power_badge": false, "display_name": "Khgoo", "active_status": "inactive", "verifications": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "follower_count": 1362, "custody_address": "0xb9b977dc77ca2b13c12603793f1d7ef9e8739f6b", "following_count": 1594, "verified_addresses": {"eth_addresses": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aEqDF\"}"}', 'sonata'), - (1043396, '0x964203fd48798ed0ba2ee9e920470480a98bd4a4', 0, 1, '2024-05-07 13:59:05+00', 0, 1, '{"fid": 377855, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2099be3b-95d3-4f25-5ee6-26f000e0bd00/original", "profile": {"bio": {"text": "We share the good world, daily life, and coin information in Warpcast. \nI Love DEGEN! ", "mentioned_profiles": []}}, "username": "kinghose21", "power_badge": false, "display_name": "GanjiNani🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "follower_count": 887, "custody_address": "0x2c296e0646c0a35b39ec2c92dadef16b15f41bf2", "following_count": 964, "verified_addresses": {"eth_addresses": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7tsi8\"}"}', 'sonata'), - (1085535, '0xd2d758dc91fd27f46dbba615ef01764f3bae5ab9', 0, 1, '2024-05-07 15:40:59+00', 0, 0, '{"fid": 418881, "object": "user", "pfp_url": "https://i.imgur.com/WjsluD8.jpg", "profile": {"bio": {"text": "3.31 start!\nHappy days~🐾🐾\nhttps://zora.co/@doeuni", "mentioned_profiles": []}}, "username": "doeuni", "power_badge": false, "display_name": "reo_luv", "active_status": "inactive", "verifications": ["0xcf404ce254ac12435505a899889a7a84159bcaad"], "follower_count": 3410, "custody_address": "0x9ddc4ff1518d0c80060682d81d9172a572d80e4e", "following_count": 2943, "verified_addresses": {"eth_addresses": ["0xcf404ce254ac12435505a899889a7a84159bcaad"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nkerLuvVNXdZeFd79\"}"}', NULL), - (1037098, '0x62bd6ce2a0602c443d543ed8236768d1b8dd84ca', 1200, 1, '2024-05-07 13:33:58+00', 3, 83, '{"fid": 392267, "object": "user", "pfp_url": "https://i.imgur.com/CYY2QGl.jpg", "profile": {"bio": {"text": "Crypto lover\nLet''s support each other💟 ", "mentioned_profiles": []}}, "username": "javat-lee", "power_badge": false, "display_name": "Javat-Lee 🎩 🍖 🔮✈️", "active_status": "inactive", "verifications": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "follower_count": 835, "custody_address": "0x2d5e509116a5feca597b1f209f01ff0afee65bc9", "following_count": 1314, "verified_addresses": {"eth_addresses": ["0x3fe462b175fafa954ae387b6c9f8cf4699682e09"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7s25THrKz86DM225dOYwnr?si=Gq5OOEoGRf-8aIWRGIYddA\"}"}', 'replyguys'), - (1049047, '0x5723a4c0ec1ea495914e4eb6a87a48cdad9c9b26', 0, 1, '2024-05-07 14:21:10+00', 0, 10, '{"fid": 486193, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95baa334-c1cc-465f-e818-6b94f6616500/rectcrop3", "profile": {"bio": {"text": "일상, 소통, 여행, 맛집💕\n자주 소통해요! ", "mentioned_profiles": []}}, "username": "lilyjeong", "power_badge": false, "display_name": "Jeooong2", "active_status": "inactive", "verifications": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "follower_count": 1838, "custody_address": "0xede1aa09cac174e537213ff3936a68a4b468ff12", "following_count": 1953, "verified_addresses": {"eth_addresses": ["0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mfN6x8Jzu5UhEegg6\"}"}', 'sonata'), - (991385, '0xa4af4bb72c16f81b37643b1d49af3833ef395c2b', 0, 1, '2024-05-07 11:22:01+00', 0, 0, '{"fid": 372218, "object": "user", "pfp_url": "https://i.imgur.com/lj6N0Dz.jpg", "profile": {"bio": {"text": "I love excitement. I can say that I love social media very much", "mentioned_profiles": []}}, "username": "bigdadi02", "power_badge": false, "display_name": "Bigdadi02🎩,➡️Farcon", "active_status": "inactive", "verifications": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "follower_count": 300, "custody_address": "0x28cc1bbc9e00df08d127bf3316a858c5e1d89766", "following_count": 362, "verified_addresses": {"eth_addresses": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MTpr7pWSwMaTzie87\"}"}', NULL), - (976850, '0x9615a66b65a860d406fe697adf186fa613bf2198', 0, 1, '2024-05-07 10:32:11+00', 0, 1, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1142, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nickolas-muzzi/lil-wayne-lollipop?si=477464f849f345fcabbfc192bfebf278&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (994651, '0x2a6a80aa245c4b7f081d073f03dd041519f71382', 0, 1, '2024-05-07 11:38:49+00', 0, 2, '{"fid": 477674, "object": "user", "pfp_url": "https://i.imgur.com/lSYNMEx.jpg", "profile": {"bio": {"text": "F4F / follow 4 follow / 좋아요🔥 댓글🔥 리캐스트🔥 팔로우🔥 한분 한분 빠짐없이 찾아갈게요", "mentioned_profiles": []}}, "username": "seik0691", "power_badge": false, "display_name": "seik0691", "active_status": "inactive", "verifications": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "follower_count": 2478, "custody_address": "0x0456381954f63442eb1313b89231b46e770cd9f5", "following_count": 2459, "verified_addresses": {"eth_addresses": ["0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DJW4F\"}"}', 'sonata'), - (1043394, '0x2c6eb04f8cbaa4451c6579dcd90356707fc848f6', 0, 1, '2024-05-07 13:59:09+00', 0, 0, '{"fid": 357078, "object": "user", "pfp_url": "https://i.imgur.com/434kgXf.jpg", "profile": {"bio": {"text": "I Love your Soul ", "mentioned_profiles": []}}, "username": "masouddeldar", "power_badge": false, "display_name": "((M_SpeciaL))🍖🎩🔮🔵", "active_status": "inactive", "verifications": ["0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4"], "follower_count": 1052, "custody_address": "0x2d6a2747097e50ed88e751073de5deba24849caf", "following_count": 1735, "verified_addresses": {"eth_addresses": ["0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4"], "sol_addresses": ["BCKB1ns8GptJwAuyxdkmC7StUktD8FcVb2Qgt4T24PzV"]}}', '{"{\"url\":\"https://on.soundcloud.com/SUAH7gHvd87wydtw8\"}"}', NULL), - (991737, '0x8c036940c90aa2ac51c210e4d4fb57bc6dbd8914', 0, 1, '2024-05-07 11:27:48+00', 0, 0, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1476, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1624, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tygathemill/taeyeon-i-fine-why-11-11-mashup?si=a182fc302be848158a32294a2321d541&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1038133, '0x8dbe74b067eb4786670fa823410a2e837774033a', 0, 1, '2024-05-07 13:37:39+00', 0, 1, '{"fid": 512000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c15eac0-f0f3-4f9a-b77a-efacc2598d00/rectcrop3", "profile": {"bio": {"text": "형은 거짓말 안해!\n소통 확실하게 한다!\n거짓말하면 진실의방으로!", "mentioned_profiles": []}}, "username": "chunys002", "power_badge": false, "display_name": "MaDongSeok", "active_status": "inactive", "verifications": ["0x305a09a68c0f305cb85a05093ae395fc2002735f"], "follower_count": 446, "custody_address": "0x740cd73e18c1ec74895d9c498d4c2f745a2ee07a", "following_count": 703, "verified_addresses": {"eth_addresses": ["0x305a09a68c0f305cb85a05093ae395fc2002735f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 정재욱 - 어리석은 이별 by aiko on #SoundCloud https://on.soundcloud.com/6NjnC\"}"}', NULL), - (980817, '0x8a5129381e2cc2cbd3f7410a2dcc3f2896522cbb', 0, 1, '2024-05-07 10:45:24+00', 0, 4, '{"fid": 501056, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmWhFgzb1WSkL5ohudhvAW6rA2ifv5LExtUFWJubVKPkmH?filename=.JPG", "profile": {"bio": {"text": "Hi, Call me Road🖤\n\n\nEnjoy & Imaigine !!!All the way\n\nand trading Crypto world♥\n\n\n\nBe Friendly bro :)\n\nMy zora dashboard\nhttps://zora.co/@roadyisgil", "mentioned_profiles": []}}, "username": "roadisgil", "power_badge": false, "display_name": "RJr🤍🔵🍖🎩", "active_status": "inactive", "verifications": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "follower_count": 793, "custody_address": "0x7fd417ea019f5fc7bde958ea596800c181fa3049", "following_count": 707, "verified_addresses": {"eth_addresses": ["0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gwjju\"}"}', 'sonata'), - (981498, '0xa63132ca3dd01f8550f46f32ae19988006449f1b', 1000, 1, '2024-05-07 10:50:38+00', 0, 2, '{"fid": 503150, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f0f973c-8cd9-4d59-700f-b1271961aa00/rectcrop3", "profile": {"bio": {"text": "I like traveling and music.", "mentioned_profiles": []}}, "username": "athenablessing", "power_badge": false, "display_name": "BOBBY", "active_status": "inactive", "verifications": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "follower_count": 371, "custody_address": "0xe57547012f3c9ab59e3ed21cf30f5a0cd6afe3f5", "following_count": 374, "verified_addresses": {"eth_addresses": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ad434a26-2039-4f8d-ee1f-1ec850b53d00/original\"}","{\"url\":\"https://on.soundcloud.com/rfHc24kJoPcKF4te7\"}"}', 'sonata'), - (991614, '0xaffb37c61bbfbcc89506f05bd28ac84b15a5e1a3', 0, 1, '2024-05-07 11:25:42+00', 0, 0, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2092, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1724, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Wt6ZZ\"}"}', NULL), - (994642, '0x8a607cfa993c1fe3c6d82fb161842186a6fb287d', 0, 1, '2024-05-07 11:39:45+00', 0, 1, '{"fid": 496478, "object": "user", "pfp_url": "https://i.imgur.com/W5DHtbw.jpeg", "profile": {"bio": {"text": "One awesome mutha", "mentioned_profiles": []}}, "username": "joyfriend", "power_badge": false, "display_name": "Joyfriend", "active_status": "inactive", "verifications": ["0x779851d2d320cdf8ed094e51ccda17f1920b0ae7"], "follower_count": 92, "custody_address": "0x867b5e6e3e4b9ab15ffeb53f7eb9bd7591473e61", "following_count": 327, "verified_addresses": {"eth_addresses": ["0x779851d2d320cdf8ed094e51ccda17f1920b0ae7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0vZCG0H9KhtU7K8MEUVAoV?si=qmjGYZuMQ9akIp7jMzXeEg\"}"}', NULL), - (981490, '0x77e91cdee095e85cfd312457228981db9dc68cc4', 0, 1, '2024-05-07 10:50:38+00', 0, 0, '{"fid": 384546, "object": "user", "pfp_url": "https://i.imgur.com/or1Izpv.gif", "profile": {"bio": {"text": "Writer | Crafting Digital Identities |\nThe MohrWolfe Experience", "mentioned_profiles": []}}, "username": "thepizzacompany.eth", "power_badge": true, "display_name": "bigmike🎩🔵↑", "active_status": "inactive", "verifications": ["0xb5e2e5f376c61f40485bbc11d5dc56609c2c0db3"], "follower_count": 253, "custody_address": "0x3082f7b2de1268bfbc09e140ca2251bd21b0f040", "following_count": 265, "verified_addresses": {"eth_addresses": ["0xb5e2e5f376c61f40485bbc11d5dc56609c2c0db3"], "sol_addresses": ["EoNPr4ianoXVJTeV3bc2RUnZeqw2acgDLYhXto5vDYX"]}}', '{"{\"url\":\"https://on.soundcloud.com/1wzvN6qHFELFCMqm6\"}"}', NULL), - (1160157, '0xb91cee2188aa7bbe668ad293a774a254ea58e28c', 3080, 1, '2024-05-08 14:49:41+00', 0, 19, '{"fid": 24, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa920810-fa1b-4f36-7daf-c53f837e2900/rectcrop3", "profile": {"bio": {"text": "@variant", "mentioned_profiles": []}}, "username": "jesse", "power_badge": true, "display_name": "Jesse Walden", "active_status": "inactive", "verifications": ["0xe7925d190aea9279400cd9a005e33ceb9389cc2b"], "follower_count": 25795, "custody_address": "0x5c2dc0bbd218a34dfd472b52004cb3776f311df2", "following_count": 226, "verified_addresses": {"eth_addresses": ["0xe7925d190aea9279400cd9a005e33ceb9389cc2b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6cdzfOWyTKCTF1NDdzV7iG?si=prSEgXE2RoeCFDS-0H0REQ\"}"}', 'soundscapes'), - (1038151, '0x861278e3b43ebe342d1d6b529920d0686c5d0621', 0, 1, '2024-05-07 13:38:06+00', 0, 1, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 244, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 350, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5jQcJ2st6yHWhUBjoDoZPH?si=231b209904e74584\"}"}', NULL), - (1050675, '0xd489cfb9f5d6b1035286448a73c9dcde52ed7bf5', 0, 1, '2024-05-07 14:24:26+00', 0, 0, '{"fid": 511632, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52bbcfa9-dabc-4bc9-7d01-43db277d2d00/rectcrop3", "profile": {"bio": {"text": "Crypto Trader.\nDegen Holder.\nI love to communicate with you!!", "mentioned_profiles": []}}, "username": "!511632", "power_badge": false, "display_name": "Felix", "active_status": "inactive", "verifications": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "follower_count": 167, "custody_address": "0x397e2941abe6dbe389c5f25232c19cbc3cb76b75", "following_count": 279, "verified_addresses": {"eth_addresses": ["0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ahmed-tarek-586393146/lady-gaga-always-remember-us?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1087488, '0x1d72516432b39363297ac64878a454fc4c0af2df', 0, 1, '2024-05-07 15:44:36+00', 0, 1, '{"fid": 427292, "object": "user", "pfp_url": "https://i.imgur.com/44iwnFY.jpg", "profile": {"bio": {"text": "ぱん🐼です!フォロバします!よろしくお願いします!!\nhttps://x.com/pandaland_world?s=21&t=DWD4SI9hsxFilBKnnvz6-g", "mentioned_profiles": []}}, "username": "paaan", "power_badge": false, "display_name": "Paaan", "active_status": "inactive", "verifications": ["0xd18c458d756b8f6ed3742cc6a594d3a2b576fa8f", "0xfcc612bb5f21f9229e25553fb0229624c918e745"], "follower_count": 53, "custody_address": "0x35cd75a49ce382fc58534d915902f26a4edcd1a8", "following_count": 94, "verified_addresses": {"eth_addresses": ["0xd18c458d756b8f6ed3742cc6a594d3a2b576fa8f", "0xfcc612bb5f21f9229e25553fb0229624c918e745"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/R5Ztv7ZDG7nqqyTT7\"}"}', 'musicjp'), - (1173289, '0xa63e8b3b1d646a8cb3d4f218b06c3d3c47f97dca', 0, 1, '2024-05-15 17:38:19+00', 0, 1, '{"fid": 191554, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c12cac2-cd2b-4d9d-0ee9-bae408003a00/original", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\nhttps://laputa.gg\nLive: \nhttps://www.unlonely.app/channels/ivc\nBldgHack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a", "0xe7ae91f2819eb93dd1b08cc7dd15da2d7be154ab"], "follower_count": 1945, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 400, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a", "0xe7ae91f2819eb93dd1b08cc7dd15da2d7be154ab"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/ivcained/onchain-after-glow?referral_source=link\"}"}', NULL), - (1025652, '0x8d0b8e35bd665be64fd550b38118b77f7d00c39d', 0, 1, '2024-05-07 13:08:15+00', 0, 1, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 709, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 863, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fHFtDr3skYoK7Hat8\"}"}', 'musicjp'), - (772112, '0xdc5e4be48ccdb84ed1f2c7d6da35dd3fccb35d61', 0, 1, '2024-05-07 01:18:33+00', 0, 3, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 491, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 103, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6RmWk7p9QY8VMGHdgq4Ulh?si=43a9d976896f4a1d\"}"}', NULL), - (945263, '0x192ef903a47befcab54183964911a25758f4635d', 0, 1, '2024-05-07 08:37:37+00', 0, 1, '{"fid": 15631, "object": "user", "pfp_url": "https://i.imgur.com/LMuwsSJ.jpg", "profile": {"bio": {"text": "High-tech #EDM Indie Record Label / A&R : @emrahis / https://drakula.app/user/millionrecords.eth?invite=jJzPNc / \n\nhttps://linktr.ee/millionrecordsmusic", "mentioned_profiles": []}}, "username": "millionrecords", "power_badge": false, "display_name": "Million Records", "active_status": "inactive", "verifications": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "follower_count": 628, "custody_address": "0x57febaf71b8dd64e1f0abe6656925a9815bb50b9", "following_count": 75, "verified_addresses": {"eth_addresses": ["0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b"], "sol_addresses": ["6ZhjvqWWFtWWMz5fEsmuLqbaypWWKMo3SzYXmCKwTzcx"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/377dfe3f-e98b-4700-9ea3-d469fe7be000/original\"}","{\"url\":\"https://www.sound.xyz/millionrecords/redcatt-let-you-know\"}"}', NULL), - (1059953, '0xb4a6ceb373ab89e4e277458a3814b4b17cc142fa', 0, 1, '2024-05-07 14:55:03+00', 0, 1, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1378, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 1045, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/thuy-nga-306162189/paul-kim-cant-get-over-you?si=4f6fb7c5e5b1483e92f41ed62f836a19&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1058080, '0x67af2b5d2ffceb706b9776cdd2f4bbb44f02bf38', 0, 1, '2024-05-07 14:48:09+00', 0, 0, '{"fid": 287958, "object": "user", "pfp_url": "https://i.imgur.com/LHJN6ue.jpg", "profile": {"bio": {"text": "hi-🪙\n\nLike ♥️\nFollow👆🏻\nRecast 🔄\n\nthanks you! \n\nsuper cast 🔥🌪️⚡️", "mentioned_profiles": []}}, "username": "jwpark0619", "power_badge": false, "display_name": "jin🎩🍖", "active_status": "inactive", "verifications": ["0x52e5053323dbabd5738026c29d49fe6512dadc17"], "follower_count": 1771, "custody_address": "0xdcc2be1e01df3be1edbd8840f3c925b845e30ea2", "following_count": 1380, "verified_addresses": {"eth_addresses": ["0x52e5053323dbabd5738026c29d49fe6512dadc17"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (995112, '0xea3a48096bbd11299c65e9552ada22eb2677832c', 0, 1, '2024-05-07 11:44:10+00', 0, 1, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 922, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1044, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/republicrecordsstaff/avicii-v-nicky-romero-i-could?si=05d1400561114d0ca2f55f25e6ddd4a2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1043495, '0x9cf3f52f4db4e2dd1c6f55594b8f251a39a1063e', 0, 1, '2024-05-07 14:01:21+00', 0, 1, '{"fid": 377855, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2099be3b-95d3-4f25-5ee6-26f000e0bd00/original", "profile": {"bio": {"text": "We share the good world, daily life, and coin information in Warpcast. \nI Love DEGEN! ", "mentioned_profiles": []}}, "username": "kinghose21", "power_badge": false, "display_name": "GanjiNani🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "follower_count": 887, "custody_address": "0x2c296e0646c0a35b39ec2c92dadef16b15f41bf2", "following_count": 964, "verified_addresses": {"eth_addresses": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mdbxz\"}"}', 'sonata'), - (1043997, '0x8362b368c84bb6021773b5365144d8a22a37abe5', 0, 1, '2024-05-07 14:04:19+00', 0, 2, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2507, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2374, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NikXdnbJP1UVe7NJ7\"}"}', 'sonata'), - (1050708, '0xac1037bc65ff95273a64e68e2b9bfbdc3b0376e3', 0, 1, '2024-05-07 14:24:58+00', 0, 0, '{"fid": 413488, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ef28212-4bd5-4146-1f56-cf3523df6200/rectcrop3", "profile": {"bio": {"text": "I am very happy man,and work at school", "mentioned_profiles": []}}, "username": "0xking1", "power_badge": false, "display_name": "king", "active_status": "inactive", "verifications": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "follower_count": 488, "custody_address": "0x91ab7af5a609ad9ddf0d877dbf0ccbbaf2533c9a", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bWRJK\"}"}', NULL), - (1058114, '0x42f5f23d267cae7aa391ea3c5acbfd574f0b8861', 0, 1, '2024-05-07 14:48:12+00', 0, 0, '{"fid": 428699, "object": "user", "pfp_url": "https://i.imgur.com/gLq1yEb.jpg", "profile": {"bio": {"text": "같이 잘먹고 잘 살아요😎\n재미있으셨다면, 저도 기뻐요😃\nGo fxxkin crazy🔥", "mentioned_profiles": []}}, "username": "badasane", "power_badge": false, "display_name": "Lespaul59", "active_status": "inactive", "verifications": ["0x1a659702117d6cac8c59923cc8d9aab36d88ad53"], "follower_count": 2232, "custody_address": "0x90446b334477ceb1ad831504f251547b14112244", "following_count": 1747, "verified_addresses": {"eth_addresses": ["0x1a659702117d6cac8c59923cc8d9aab36d88ad53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aTF6aRGV22WoZn2R9\"}"}', NULL), - (1173288, '0x6aefec4df5c3f5c4f773e1a0be78a27ab75081f5', 0, 1, '2024-05-15 17:35:59+00', 0, 0, '{"fid": 3726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a802f59-ad74-411e-9da9-add0f355c100/original", "profile": {"bio": {"text": "⌐◨-◨ Artist of Archer and Adventure Time, producer for “The Crew”", "mentioned_profiles": []}}, "username": "thepencil.eth", "power_badge": true, "display_name": "thepencil.eth ⌐◨-◨ 🎩", "active_status": "inactive", "verifications": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "follower_count": 711, "custody_address": "0x47461d4657c9aeb7772913227388c029a10562cf", "following_count": 395, "verified_addresses": {"eth_addresses": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/thecrew/early\"}"}', NULL), - (1049052, '0x79aa34a78c4109c8af73125d681e62fabd130cf9', 0, 1, '2024-05-07 14:20:51+00', 0, 0, '{"fid": 389395, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/829bd631-9655-478f-4423-6cd8cf751b00/rectcrop3", "profile": {"bio": {"text": "Hello guys , I''m mehdi 💚", "mentioned_profiles": []}}, "username": "mehdi-kh61", "power_badge": false, "display_name": "Mehdi🍖🎩", "active_status": "inactive", "verifications": ["0x788978359ea6c091ada783f94a50500a6b5e4a25"], "follower_count": 562, "custody_address": "0xbca229533c13b1ace020ce416883a58224d31592", "following_count": 1059, "verified_addresses": {"eth_addresses": ["0x788978359ea6c091ada783f94a50500a6b5e4a25"], "sol_addresses": ["2BFwa7rsD2YGq7jNAHCRxrzheE8bpgV7hC8Qj1tL3x3s"]}}', '{"{\"url\":\"https://soundcloud.com/aceofbaseofficial/04-ace-of-base-happy-nation?ref=clipboard&p=a&c=0&si=0674cf56dc904ab7b450cce68dd2b17f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173266, '0x4ffb284232ce10bd8c7c4d7cf3abb1b5cc9a140d', 0, 1, '2024-05-15 16:39:02+00', 0, 6, '{"fid": 191554, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c12cac2-cd2b-4d9d-0ee9-bae408003a00/original", "profile": {"bio": {"text": "Audio\nVideo\nEnergy\nFrequencies\nVibrations\nhttps://laputa.gg\nLive: \nhttps://www.unlonely.app/channels/ivc\nBldgHack House DAO \n/baseup /ddaw", "mentioned_profiles": []}}, "username": "ivc", "power_badge": true, "display_name": "ivc.lol", "active_status": "inactive", "verifications": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a", "0xe7ae91f2819eb93dd1b08cc7dd15da2d7be154ab"], "follower_count": 1945, "custody_address": "0x285459ddc064908d8603b7622303dde30c4966e5", "following_count": 400, "verified_addresses": {"eth_addresses": ["0x0ee25bd99736d898130edb98d343312f6688a50a", "0x98a9b1596f1837eb20669edd4409fdfb02ffadf0", "0xfaad3f4675f07936ff376cdfb90433d1d3ce1d0a", "0xe7ae91f2819eb93dd1b08cc7dd15da2d7be154ab"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/eabc9f2f434bcd3f17a4c97e2479dcbb.m3u8\"}","{\"url\":\"https://www.sound.xyz/ivcained/hubble\"}"}', NULL), - (994922, '0x2ed490f146a930bf741ad9f3d672db1520226927', 0, 1, '2024-05-07 11:42:56+00', 0, 2, '{"fid": 286367, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/827441ff-e496-4cc5-4556-c28bc36e5f00/original", "profile": {"bio": {"text": "💕Communication only through cast is welcome (1:1X)/$degen/$imagine/$enjoy💕", "mentioned_profiles": []}}, "username": "wlsdnrdl0217", "power_badge": false, "display_name": "wlsdnrdl🎩🍖", "active_status": "inactive", "verifications": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "follower_count": 1476, "custody_address": "0xa2337a4f195041e194d598f6b10653d3e8fab436", "following_count": 1624, "verified_addresses": {"eth_addresses": ["0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ggaga/lady-gaga-bradley-cooper-shallow-live-at-oscars-2019?si=9d6cbacbd5424dfea62af7b6f1362dc9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (781593, '0x3e936f354e881e188e460bd85215ffb04c560995', 0, 1, '2024-05-07 01:58:17+00', 0, 0, '{"fid": 386139, "object": "user", "pfp_url": "https://i.imgur.com/MN0vInM.gif", "profile": {"bio": {"text": "💘🐀♎️☀️🌑🌠🌊🌺\nshorebreaks.eth anti-follwer.eth x360x.eth 12122.tez sandybeach.tez 🫵👁️ GOAL: 333 followers 👋\n \n\n", "mentioned_profiles": []}}, "username": "keith33333.eth", "power_badge": false, "display_name": "K3🫵👁️", "active_status": "inactive", "verifications": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "follower_count": 417, "custody_address": "0xf7c92ae8f393bd255fd6da51e2feb5d734a37ff7", "following_count": 425, "verified_addresses": {"eth_addresses": ["0x5849734d2e3ada23b64e12311adfa6bcd6fe687c", "0x9518a448f46bad5b74517f078e66f267e4e8df1f", "0x3dba010c1e956742417292f74d68d7d35e706ebd", "0x30c436f8af1e07b6c4ce6e01feb349abea079012"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Xct33EShTCPuAGNKlQgr2?si=1e9041355e574628\"}"}', NULL), - (989115, '0x70f179372d45c8e49f5772ed367f390d08ace54b', 0, 1, '2024-05-07 11:16:46+00', 0, 6, '{"fid": 334811, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ae786ff3-a744-4c39-4d51-963942174200/rectcrop3", "profile": {"bio": {"text": "ルールが曖昧でよく分からない。。。\n皆が楽しめる空間にしたいですね⤴︎\n", "mentioned_profiles": []}}, "username": "matsuda", "power_badge": false, "display_name": "kamat🍕👻🐥", "active_status": "inactive", "verifications": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "follower_count": 1886, "custody_address": "0x72b04cd7f42d5fb889fbbbfe3c4db7e99975e465", "following_count": 1594, "verified_addresses": {"eth_addresses": ["0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0"], "sol_addresses": ["4FnrAY9RkBqiCjEaLQiUcTLn6FTLCGb6XmUzjEPi95Zz"]}}', '{"{\"url\":\"https://open.spotify.com/track/3cKB6zIlCvfDZY6YUINMxm?si=Hr7GKWl-T2yhJbb92K80UA&context=spotify%3Aalbum%3A3J4iFCkq1mBfdNjpGDbbMR\"}"}', 'musicjp'), - (1043391, '0x701a9264a74340e66f5112888995aef8a65c2d0b', 0, 1, '2024-05-07 13:59:56+00', 0, 11, '{"fid": 443863, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c1d767cb-c13c-4583-93bc-f18a4322a900/rectcrop3", "profile": {"bio": {"text": "God bless you ^^\n즐거운 워캐스트 !", "mentioned_profiles": []}}, "username": "lovemiso", "power_badge": false, "display_name": "Lovemiso🔮🎩🍖", "active_status": "inactive", "verifications": ["0xd956fe0b4e5a0f6edf0c91699c5245c961f86371"], "follower_count": 2159, "custody_address": "0xc681a09041ed9e77da5896d353dc11753e5675bc", "following_count": 2097, "verified_addresses": {"eth_addresses": ["0xd956fe0b4e5a0f6edf0c91699c5245c961f86371"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iFBkTbeWWEDSNHtk7\"}"}', 'sonata'), - (1043392, '0xd0868664365fc8249cd0c22692b12bd7214f8eab', 0, 1, '2024-05-07 13:59:31+00', 0, 0, '{"fid": 413488, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ef28212-4bd5-4146-1f56-cf3523df6200/rectcrop3", "profile": {"bio": {"text": "I am very happy man,and work at school", "mentioned_profiles": []}}, "username": "0xking1", "power_badge": false, "display_name": "king", "active_status": "inactive", "verifications": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "follower_count": 488, "custody_address": "0x91ab7af5a609ad9ddf0d877dbf0ccbbaf2533c9a", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BZcyC\"}"}', NULL), - (994649, '0xdaa973fc3671d9b7c85a79b489b36599b5f38153', 0, 1, '2024-05-07 11:39:11+00', 0, 5, '{"fid": 330471, "object": "user", "pfp_url": "https://i.imgur.com/6Ah8tCY.jpg", "profile": {"bio": {"text": "Conceptual Photographer, Feminist, Activist.\nhttps://foundation.app/@innamosina\nhttps://exchange.art/innamosina/nfts", "mentioned_profiles": []}}, "username": "innamosina", "power_badge": false, "display_name": "Inna Mosina 🎩🔵", "active_status": "inactive", "verifications": ["0x8e47f230c4240138ea7e7d71b0cc18224b40cd43", "0x67a610d45eddbd630feb7cdf86f91ed0f0842552"], "follower_count": 1062, "custody_address": "0x8e79f9420ccc023f9c48673ffa75ed9a1a97d707", "following_count": 601, "verified_addresses": {"eth_addresses": ["0x8e47f230c4240138ea7e7d71b0cc18224b40cd43", "0x67a610d45eddbd630feb7cdf86f91ed0f0842552"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/molchatdoma/ucypjtb8gi6k?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173469, '0x1ae9f7caacfe490a30d1742f39dc389170e30478', 0, 1, '2024-05-16 02:02:38+00', 0, 2, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 264428, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 336, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/8af38c99-c1ff-4f22-be0a-f188dde3d576\"}"}', NULL), - (1052024, '0x078a69e94f6fbee2e12dd8e76f640a4cf346db69', 0, 1, '2024-05-07 14:30:38+00', 0, 1, '{"fid": 427626, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQP55ePngG81GsGs5wSmgfZXbgvyix67bS2d2rSKcHrfa?filename=_20240414_185305.jpeg", "profile": {"bio": {"text": "Have a nice day🍓🍖☕️\n#프로소통러\nIt''s faster than the light\n#Hanwha Eagles Pan\n#워프캐스트사랑해요\nYou''ll be happy soon", "mentioned_profiles": []}}, "username": "top01", "power_badge": false, "display_name": "Raccoonchoi🌈🍓🍖", "active_status": "inactive", "verifications": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "follower_count": 2789, "custody_address": "0xb2af8a3e110e595bb5027e832a7e8d0a396b72fa", "following_count": 2394, "verified_addresses": {"eth_addresses": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YFCrV\"}"}', 'sonata'), - (1058098, '0x250ef2f494127889fa9c7e601decf47eca3bdd77', 0, 1, '2024-05-07 14:47:43+00', 0, 1, '{"fid": 405729, "object": "user", "pfp_url": "https://va2wd5vwvtfwbkxrz4myzxvo3nghxjnchtpgxxk4vzi4w4riu4xa.arweave.net/qDVh9rasy2Cq8c8ZjN6u20x7paI83mvdXK5Ry3Iopy4/", "profile": {"bio": {"text": "🐸\nWe are a variable of unknown circumstances!", "mentioned_profiles": []}}, "username": "hamid-siemens", "power_badge": false, "display_name": "HaMiD", "active_status": "inactive", "verifications": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "follower_count": 2478, "custody_address": "0xe56ce66286aad851e8ac03046e3b91241419e103", "following_count": 2639, "verified_addresses": {"eth_addresses": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x2cTv\"}"}', NULL), - (1056667, '0x4e8b74359139da6628729dcd87cfa1fccb598234', 0, 1, '2024-05-07 14:44:48+00', 0, 3, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 388, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 784, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qsRV1DZXUMGc1SZ46\"}"}', 'sonata'), - (1033935, '0xc0c9100cd1810537d2b96c18a132aba6c8ce3a7a', 0, 1, '2024-05-07 13:28:40+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1194, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GkcBjLsjVcS5mmwj9\"}"}', 'sonata'), - (1052944, '0xcb4cda8351572d4fcef6c3f132c76e9570e6f973', 0, 1, '2024-05-07 14:32:34+00', 0, 1, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1388, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3ELgk6SEzS1e1BKqdIh252?si=-Oue0pIrTrCFJf7cMg5lzA&context=spotify%3Aplaylist%3A2UN9Ny5tHrBu6dxz48IR8j\"}"}', 'pokemon'), - (780083, '0xf1cf9ba54a251182cf0f37592f033e0b5a61e267', 0, 1, '2024-05-07 01:50:00+00', 0, 1, '{"fid": 500749, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/94e5c92c-162e-4ec0-9b80-d9f2e54f7400/rectcrop3", "profile": {"bio": {"text": "The blockchain researcher embarks on a journey to find happiness", "mentioned_profiles": []}}, "username": "kasion", "power_badge": false, "display_name": "Kasion🎩🍖🔵", "active_status": "inactive", "verifications": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "follower_count": 1753, "custody_address": "0xa19a05609a7a1be8d950cdd95f0575ad614d7f2e", "following_count": 1545, "verified_addresses": {"eth_addresses": ["0x0b9b97321687aff3a9852b84120bca08e0ba088b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oC3fHzXS4FdtTbaDA\"}"}', 'sonata'), - (994927, '0xdf844f3eb2fea48c9bfa171e3cc69b50556ce2c2', 0, 1, '2024-05-07 11:42:43+00', 0, 0, '{"fid": 330471, "object": "user", "pfp_url": "https://i.imgur.com/6Ah8tCY.jpg", "profile": {"bio": {"text": "Conceptual Photographer, Feminist, Activist.\nhttps://foundation.app/@innamosina\nhttps://exchange.art/innamosina/nfts", "mentioned_profiles": []}}, "username": "innamosina", "power_badge": false, "display_name": "Inna Mosina 🎩🔵", "active_status": "inactive", "verifications": ["0x8e47f230c4240138ea7e7d71b0cc18224b40cd43", "0x67a610d45eddbd630feb7cdf86f91ed0f0842552"], "follower_count": 1062, "custody_address": "0x8e79f9420ccc023f9c48673ffa75ed9a1a97d707", "following_count": 601, "verified_addresses": {"eth_addresses": ["0x8e47f230c4240138ea7e7d71b0cc18224b40cd43", "0x67a610d45eddbd630feb7cdf86f91ed0f0842552"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ic3peak/sbn?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1043395, '0xf0fccd8a999c4f1a8ef79b25e92b535a015a3988', 0, 1, '2024-05-07 14:00:02+00', 0, 0, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1374, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 1044, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki6/paul-kim-hangang-feat-big?si=da2bca9551fd4cc8bfc9e7702c791be8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1136554, '0x80a8367f924415c0b00a59d114a7a32de289ab05', 20, 1, '2024-05-07 19:24:36+00', 0, 4, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9360, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/ec27069b-1da4-466c-a9e8-5179604c46d7\"}","{\"url\":\"https://www.sound.xyz/jutes/born-to-lose\"}"}', NULL), - (1049049, '0x12d197aa998d474df3ecc59a79ec81c403cd6a39', 0, 1, '2024-05-07 14:20:32+00', 0, 3, '{"fid": 442155, "object": "user", "pfp_url": "https://i.imgur.com/MBqUkHV.jpg", "profile": {"bio": {"text": "右も左も分かりません💦良かったらフォローお願いします🙇\nX(Twitter)もやっております💦\n\nhttps://x.com/taka070809", "mentioned_profiles": []}}, "username": "taka3100", "power_badge": false, "display_name": "チャコ♪ぽめ", "active_status": "inactive", "verifications": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "follower_count": 861, "custody_address": "0x62708690449ffc74aa92655739d96584602a9ed5", "following_count": 855, "verified_addresses": {"eth_addresses": ["0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c6QfpPAvGd6UQncz6\"}"}', 'musicjp'), - (1173323, '0x2c076f53b4e67f4f5cac3cd58c6e945e213c091f', 1000, 1, '2024-05-15 20:04:03+00', 100, 1, '{"fid": 5925, "object": "user", "pfp_url": "https://i.imgur.com/uUj91M6.jpg", "profile": {"bio": {"text": "🌷💀⏳\n\nteleyinex.eth ▫️\n\nteleyinex.lens ▫️\n\nteleyine.x ▫️\n\ndaniellombrana.es ▫️\n\n@astaralabs ▫️\n\n@obeygiant ▫️\n\n@scifabric ▫️\n\ndev", "mentioned_profiles": []}}, "username": "teleyinex.eth", "power_badge": true, "display_name": "Daniel Lombraña ", "active_status": "inactive", "verifications": ["0x12cba59f5a74db81a12ff63c349bd82cbf6007c2", "0xb8bc27e04b5c563c8d534f1834ee9b1b18920142"], "follower_count": 1766, "custody_address": "0x38e5009ef2640a4c28898931ee1fae34a888eeeb", "following_count": 253, "verified_addresses": {"eth_addresses": ["0x12cba59f5a74db81a12ff63c349bd82cbf6007c2", "0xb8bc27e04b5c563c8d534f1834ee9b1b18920142"], "sol_addresses": []}}', '{"{\"url\":\"http://sound.xyz\"}"}', NULL), - (1119346, '0x8429b887ddd89f5e81b9cd6e23b1805fb2583f68', 0, 1, '2024-05-07 17:47:15+00', 0, 23, '{"fid": 488704, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bb0cbc39-b76c-4b12-eeda-912aefc26f00/rectcrop3", "profile": {"bio": {"text": "Crazy about Formula 1", "mentioned_profiles": []}}, "username": "corvette", "power_badge": false, "display_name": "NewTrend", "active_status": "inactive", "verifications": ["0x9fc47955c1ab36baa295483d99e4606f0e2f63b3"], "follower_count": 736, "custody_address": "0x59276be914acac142d5e34ad5ac2d5b914f9cb01", "following_count": 1077, "verified_addresses": {"eth_addresses": ["0x9fc47955c1ab36baa295483d99e4606f0e2f63b3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-de/sets/pop?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1088255, '0x705dc5d366a82623410ce83c821704a50b0a4d47', 0, 1, '2024-05-07 15:47:04+00', 0, 3, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bpvzW76TQ4B6q9RW6\"}"}', 'musicjp'), - (996826, '0x1a6ea5c99b53212dc17ed07ac37a4243bd409016', 0, 1, '2024-05-07 11:47:47+00', 0, 1, '{"fid": 404927, "object": "user", "pfp_url": "https://i.imgur.com/QuHuLhE.jpg", "profile": {"bio": {"text": "F4F / \"2배+a\"로 보답합니다💜 / 슈퍼캐스트🚀 ", "mentioned_profiles": []}}, "username": "parkpyung", "power_badge": false, "display_name": "parkpyung🎩🍖", "active_status": "inactive", "verifications": ["0xcb166bc7748dd28730fbab086dc06a6d21f8fbc8"], "follower_count": 2068, "custody_address": "0xe9b4e29580c709681dbda71f364c48f98bf38454", "following_count": 1944, "verified_addresses": {"eth_addresses": ["0xcb166bc7748dd28730fbab086dc06a6d21f8fbc8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c2qFDAHRfsiPPnsq9\"}"}', 'sonata'), - (1036622, '0x06ee6ee293fb5e5a476d74f09fdd444f8bdd20f1', 0, 1, '2024-05-07 13:34:17+00', 0, 2, '{"fid": 512000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8c15eac0-f0f3-4f9a-b77a-efacc2598d00/rectcrop3", "profile": {"bio": {"text": "형은 거짓말 안해!\n소통 확실하게 한다!\n거짓말하면 진실의방으로!", "mentioned_profiles": []}}, "username": "chunys002", "power_badge": false, "display_name": "MaDongSeok", "active_status": "inactive", "verifications": ["0x305a09a68c0f305cb85a05093ae395fc2002735f"], "follower_count": 446, "custody_address": "0x740cd73e18c1ec74895d9c498d4c2f745a2ee07a", "following_count": 703, "verified_addresses": {"eth_addresses": ["0x305a09a68c0f305cb85a05093ae395fc2002735f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6NjnC\"}"}', 'sonata'), - (998300, '0xcba21d2043c78ae2fc311eca89395f6be041bb0a', 0, 1, '2024-05-07 11:50:08+00', 0, 5, '{"fid": 474179, "object": "user", "pfp_url": "https://i.imgur.com/kj0Rrof.jpg", "profile": {"bio": {"text": "Let''s go for 10 dollars $Degen\nbitcoin/ Degen \nF4F 맞팔100% 🚀 🚀 🚀\n✅️Supercast✅️\n", "mentioned_profiles": []}}, "username": "crezzang", "power_badge": false, "display_name": "크리", "active_status": "inactive", "verifications": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "follower_count": 2237, "custody_address": "0x1dfc23ce04a239eafbb3ff85ed7706f772d07c21", "following_count": 2278, "verified_addresses": {"eth_addresses": ["0x50f40e1b8f960657d42bf67f22e47c65ccabc608"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PjKZZ\"}"}', 'sonata'), - (1043987, '0x9206f5793e547087b2a4d65a5c6ac7d112a6a7b3', 0, 1, '2024-05-07 14:04:20+00', 0, 12, '{"fid": 427595, "object": "user", "pfp_url": "https://i.imgur.com/iel7ZRP.jpg", "profile": {"bio": {"text": "워캐님들 환영!!!!! 👋🌈👋\n자주 소통해요😘", "mentioned_profiles": []}}, "username": "eunbo4520", "power_badge": false, "display_name": "Eunbo", "active_status": "inactive", "verifications": ["0x3ae54db09157ca5bd8b13c9bc530e86c2c21806b"], "follower_count": 3641, "custody_address": "0xa2bb5f46f4fdd6097c4d6f62f2dfffcb5c5ced98", "following_count": 3193, "verified_addresses": {"eth_addresses": ["0x3ae54db09157ca5bd8b13c9bc530e86c2c21806b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7oJH4Y6NTtGJ3Ewe9\"}"}', 'sonata'), - (1024540, '0x5804d51dcc29456b623b8b5d191cf21c7853aa3a', 0, 1, '2024-05-07 13:03:00+00', 0, 4, '{"fid": 337426, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/644a4aab-1c5a-4e15-900a-1591108f2c00/original", "profile": {"bio": {"text": "Crypto Airdrop\n /fire-japan", "mentioned_profiles": []}}, "username": "ykoku47", "power_badge": false, "display_name": "oku🎩🔮🧀", "active_status": "inactive", "verifications": ["0x970a4d449766804f49892018d932bb3d6b1c6e95"], "follower_count": 1445, "custody_address": "0x7599adc67ebea204f46d566cf9c431afaeff96dc", "following_count": 982, "verified_addresses": {"eth_addresses": ["0x970a4d449766804f49892018d932bb3d6b1c6e95"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/naridna13/first-love-taka?si=2e87eac7c0b6494f85f31be8b09acc90&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1173222, '0x77ed69773cfc5a5f78592bdc4d42ff7e4cfdb9e5', 1000, 1, '2024-05-15 13:54:38+00', 0, 0, '{"fid": 3726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a802f59-ad74-411e-9da9-add0f355c100/original", "profile": {"bio": {"text": "⌐◨-◨ Artist of Archer and Adventure Time, producer for “The Crew”", "mentioned_profiles": []}}, "username": "thepencil.eth", "power_badge": true, "display_name": "thepencil.eth ⌐◨-◨ 🎩", "active_status": "inactive", "verifications": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "follower_count": 711, "custody_address": "0x47461d4657c9aeb7772913227388c029a10562cf", "following_count": 395, "verified_addresses": {"eth_addresses": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/thecrew/upand2-the-right?referral=0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683\"}"}', NULL), - (1034696, '0xef7ca7acebea099061eb4bef2cf0b86354203cbe', 1250, 1, '2024-05-07 13:29:37+00', 0, 18, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 3183, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 477, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5rmcjZTrE9JR1YrbNZDFNW?si=ZHnI4G4pSfilQFROef3gSg\"}"}', 'hiphop'), - (1145523, '0xf1d64a646d05c8f312ef9130872df5847558ad26', 0, 1, '2024-05-07 20:10:01+00', 0, 0, '{"fid": 422124, "object": "user", "pfp_url": "https://i.imgur.com/22fINiT.jpg", "profile": {"bio": {"text": "love crypto and web3 👨🏻‍💻", "mentioned_profiles": []}}, "username": "eymen", "power_badge": false, "display_name": "Eymen‌Pedrod", "active_status": "inactive", "verifications": ["0x438b839cbb80f087407c451651d08153530b2b1a"], "follower_count": 209, "custody_address": "0x126b983aeb82a8fe7adde95ed9bc12d9d9c99ca5", "following_count": 285, "verified_addresses": {"eth_addresses": ["0x438b839cbb80f087407c451651d08153530b2b1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/98FuLEGnhFjJBVv99\"}"}', NULL), - (999077, '0x8ebc01bd5cba924581bd3926089d2cc87b79bc08', 0, 1, '2024-05-07 11:50:44+00', 0, 1, '{"fid": 401675, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmXMv1DgKxMYkAZd5Xyi56qi1CHsTbon3ZERhaxHbhb7QU?filename=F5_Z0gJaMAAXqg7.jpeg", "profile": {"bio": {"text": "Starspot5 is Korean\n사진은 아일릿-원희 입니다!\nLike- Anime, K•JPOPHabbit- Singing, Listen a music, Games", "mentioned_profiles": []}}, "username": "starspot5", "power_badge": false, "display_name": "Starspot_5🎩 ", "active_status": "inactive", "verifications": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "follower_count": 2094, "custody_address": "0x9e4ee053ac20f9e45856700ea6b4b63ab6bac4da", "following_count": 1726, "verified_addresses": {"eth_addresses": ["0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 115万キロのフィルム by コノミ on #SoundCloud https://on.soundcloud.com/K4teM\"}"}', NULL), - (998285, '0xe1fa3e18822bf94132e08e31c82790c8878ff5d6', 0, 1, '2024-05-07 11:49:23+00', 0, 0, '{"fid": 368568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d33d091-bad3-4c30-19fd-971586cb4700/rectcrop3", "profile": {"bio": {"text": "bassist.project manager.\n日本向け自由チャンネル\n/japan-creative\n\ndrakula\nhttps://drakula.app/post/c58c3e36-5a5f-43b\n\nフリーランス\n基本情報技術者 oracle BLONZE \n2級管工事施工管理技士 \n英検5級()", "mentioned_profiles": []}}, "username": "pk0730", "power_badge": false, "display_name": "pk0730", "active_status": "inactive", "verifications": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "follower_count": 691, "custody_address": "0xb576a4a246bbe2851828c614c00cf781d0d908da", "following_count": 770, "verified_addresses": {"eth_addresses": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "sol_addresses": ["HYfLsMcbTtxQeaZ4QQMzvDFNWooVCfo3aXbdLwuDqou8"]}}', '{"{\"url\":\"https://soundcloud.com/pk0730/irjbiu7bp8d5?ref=clipboard&p=i&c=1&si=8E0A83B6CBCD4DF1B3F2F335EB96EE82&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1038790, '0x4e0818026d49f9da0adde463ec4a206c28332e1f', 0, 1, '2024-05-07 13:39:10+00', 0, 4, '{"fid": 423559, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmdoXAH6xTKfiCR1qrdHcx5SaAANNXudS1YEmv27SPne8d?filename=.gif", "profile": {"bio": {"text": "F4F// Hi, I''m jonny :D Thank you for visiting. If you leave a trace, I''ll visit you! I hope you have a nice day in warpcast", "mentioned_profiles": []}}, "username": "jonnyjonny", "power_badge": false, "display_name": "Jonny", "active_status": "inactive", "verifications": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "follower_count": 1329, "custody_address": "0xde5d220b53d6015b7a6af20036a5673fbd30a3fe", "following_count": 2152, "verified_addresses": {"eth_addresses": ["0x9f60245b7d325fadca019cde324bf8d1d74c77ee"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/adejo4bqq78q/bigbang-stupid-liar?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1028196, '0xbc42cfed978c7862a21abc7ae3d2e280d5656ef7', 0, 1, '2024-05-07 13:11:31+00', 0, 2, '{"fid": 477470, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5ff07ea5-1234-41c9-068e-96096d4da700/rectcrop3", "profile": {"bio": {"text": "Hello 비투카 화이팅🤑🤑🤑\n🇰🇷🏃‍♂️‍➡️달려갈께요💯", "mentioned_profiles": []}}, "username": "scarletkjh", "power_badge": false, "display_name": "SCARLET", "active_status": "inactive", "verifications": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "follower_count": 1987, "custody_address": "0xe75c2488a183879e4d33ca65a0b5d53e274a92aa", "following_count": 2453, "verified_addresses": {"eth_addresses": ["0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8927c19b-4349-4451-c142-9f219dfd6200/original\"}","{\"url\":\"https://on.soundcloud.com/bz6VQ\"}"}', 'sonata'), - (1045095, '0xc86d3eb4071947227f98173d9cca4e0e4dfa383a', 0, 1, '2024-05-07 14:05:46+00', 0, 1, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2379, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2283, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/j9DUrb7qapkz4o5v5\"}"}', NULL), - (991736, '0xc1539b1841704bfaefe7e84e30c7a52392458c0f', 0, 1, '2024-05-07 11:27:21+00', 0, 1, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 306, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/76fat5HLXIQuptp83p2E68?si=_Hp5bMlDSPGvpVyGfxEovg\"}"}', 'sonata'), - (998288, '0x17b65f96e5b0c9965b836fa7f5b4719b54026f64', 0, 1, '2024-05-07 11:50:06+00', 0, 2, '{"fid": 441493, "object": "user", "pfp_url": "https://i.imgur.com/t9eRbxu.jpg", "profile": {"bio": {"text": "Freelancer / Crypto //Gourmet / Traveler\n내 꿈, 당신의 꿈", "mentioned_profiles": []}}, "username": "messs", "power_badge": false, "display_name": "M.Somin", "active_status": "inactive", "verifications": ["0x53914443b41aa77b3c77d3761a234b5976370b96"], "follower_count": 1116, "custody_address": "0x1dbcf71bd7196a23b37f5d9b25ff373faf13f2ca", "following_count": 733, "verified_addresses": {"eth_addresses": ["0x53914443b41aa77b3c77d3761a234b5976370b96"], "sol_addresses": ["9tFtu2S88ZaX7HhUdy1BfurbknAjoQdEgTmaZDE3uLqe"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cf2f9708-1e97-41eb-6991-a135b4e41e00/original\"}","{\"url\":\"https://soundcloud.com/princesschelsea/the-cigarette-duet\"}"}', 'sonata'), - (1028198, '0x85e4afccd6da3b1d6a20acc3816cf063bec57bd6', 0, 1, '2024-05-07 13:12:03+00', 0, 4, '{"fid": 459170, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b333cd11-a1d1-4da6-0378-6a0b408b0c00/rectcrop3", "profile": {"bio": {"text": "🌈무지개반사🤩✔️디젠🚀\n base / degen\nGod bless you\nhttps://www.alfafrens.com/channel/0x5855cc18Bb665f272Dee8Fb724aDeA95eb4C4f49", "mentioned_profiles": []}}, "username": "jiwoozoo", "power_badge": false, "display_name": "g.woo🎩🍖", "active_status": "inactive", "verifications": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "follower_count": 1660, "custody_address": "0x1f3ffe3873d230be29c470e04843b95a73a47203", "following_count": 1651, "verified_addresses": {"eth_addresses": ["0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ramadavis/fools?si=ed2aded239834616935848b03b86091d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1000085, '0xff36d4a3f8bf930a1cf2ce209b28b1f31577fb58', 0, 1, '2024-05-07 11:52:12+00', 0, 2, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 922, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1044, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sid-vangala/levels-avicii?si=2a9504f28d0b4066adc93aa10ec4b5b0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1173671, '0xcb8bed1285096ab46c36b73d51bc12356f78f86f', 0, 1, '2024-05-16 06:15:04+00', 0, 0, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🇯🇵💿", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1159, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1007, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6fTdcGsjxlAD9PSkoPaLMX?si=690ef60ab0ea4016\"}"}', 'clique-tracks'), - (781298, '0x5ce4de3c11814ccd8e9ac6d5b5276f8f6ac63dbc', 2020, 1, '2024-05-07 01:55:44+00', 0, 111, '{"fid": 539, "object": "user", "pfp_url": "https://i.imgur.com/PW3LwKV.png", "profile": {"bio": {"text": "🔮 @perl | 🧀 /cheesecoin | FID #539", "mentioned_profiles": []}}, "username": "ace", "power_badge": true, "display_name": "Alex Kwon 🔮🎩🧀", "active_status": "inactive", "verifications": ["0xe978bdbc3347feb6ed10c9845bbdc298604f80ca"], "follower_count": 72086, "custody_address": "0x71503b1309d6797bc4c4fbfde973adc2c191834b", "following_count": 3291, "verified_addresses": {"eth_addresses": ["0xe978bdbc3347feb6ed10c9845bbdc298604f80ca"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/hmtskk/stay-madis-remix-interstellar-theme\"}"}', NULL), - (1145517, '0x01bccf3fa78369b519edfed7d439538ee6c8ed98', 0, 1, '2024-05-07 20:14:24+00', 0, 4, '{"fid": 293005, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c8e52a4-72ee-432b-9362-9bcd00e96900/rectcrop3", "profile": {"bio": {"text": "Reza", "mentioned_profiles": []}}, "username": "reza369", "power_badge": false, "display_name": "Reza 🎩🔵", "active_status": "inactive", "verifications": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "follower_count": 1654, "custody_address": "0xd16198f8af1e12a4987c19c9ba2c917b60587334", "following_count": 2309, "verified_addresses": {"eth_addresses": ["0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2"], "sol_addresses": ["6SNzFa67id6q142zMBVPqDJSebvExGp7FUWewTnnnE2C"]}}', '{"{\"url\":\"https://on.soundcloud.com/1SxjqDc4ZpmkVZfC8\"}"}', 'sonata'), - (1039175, '0x6fcc178f8072add2bb04f14b4f564a2bf1ba718a', 0, 1, '2024-05-07 13:39:17+00', 0, 12, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 246, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 357, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5jQcJ2st6yHWhUBjoDoZPH?si=231b209904e74584\"}"}', 'sonata'), - (1118368, '0xa4d9d41ed3f99414406aa99d92a270cfc840e383', 0, 1, '2024-05-07 17:43:36+00', 0, 2, '{"fid": 14193, "object": "user", "pfp_url": "https://i.imgur.com/5hOVzWm.png", "profile": {"bio": {"text": "I make music and occasionally point & click adv. games.", "mentioned_profiles": []}}, "username": "r4cerx", "power_badge": false, "display_name": "r4cerx 🎩🐲", "active_status": "inactive", "verifications": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "follower_count": 193, "custody_address": "0x22bfce4279cd025af37dac0cdad95b74e606bf88", "following_count": 105, "verified_addresses": {"eth_addresses": ["0x04a5e8c4a44780d115adda776b04bcf1c4f3254e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/r4cerx/i-think-theyre-coming\"}"}', 'sonata'), - (1000649, '0xf9604f2076f41bac7c20d381fd961a0c518fc93e', 0, 1, '2024-05-07 11:54:29+00', 0, 12, '{"fid": 500986, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a96d3b22-0ba7-4c81-5171-af59cbda1800/rectcrop3", "profile": {"bio": {"text": "달콤한 초코초코예요❤️🤎\n잘부탁해용😘", "mentioned_profiles": []}}, "username": "chocochoco", "power_badge": false, "display_name": "초코초코🍩🍫🎩", "active_status": "inactive", "verifications": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "follower_count": 1353, "custody_address": "0x3f370379ba03bd08832fb6f0ec20151a34cf914f", "following_count": 760, "verified_addresses": {"eth_addresses": ["0x02aa609e634f85ca81250d3f08bffa7c339042f8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dZsA1\"}"}', 'sonata'), - (1038787, '0xdde511ff8ca184a3ade0d0ab7954c270934b2872', 0, 1, '2024-05-07 13:39:04+00', 0, 3, '{"fid": 420539, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6c988795-81a3-480f-99e3-5d13851ac600/rectcrop3", "profile": {"bio": {"text": "F4F / \nhttps://zora.co/@jun4560 \n", "mentioned_profiles": []}}, "username": "nedis", "power_badge": false, "display_name": "jun🎩🍖", "active_status": "inactive", "verifications": ["0xda46594a54f0400615772bf17bb63075c5331b94"], "follower_count": 4026, "custody_address": "0xb6d1b0156c2a1faeb81bf10d48c5d6b2fe74b61f", "following_count": 3023, "verified_addresses": {"eth_addresses": ["0xda46594a54f0400615772bf17bb63075c5331b94"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-332169300/day6-zombie-english-ver-the-book-of-us-the-demon-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1039434, '0x61b2f5b212146be17755bab7b4e8e9e1bcd46748', 0, 1, '2024-05-07 13:41:25+00', 0, 4, '{"fid": 500406, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3bf66d46-bec3-4c33-1609-80843cc77300/rectcrop3", "profile": {"bio": {"text": "Degen 💖💖👏followe💖", "mentioned_profiles": []}}, "username": "lhs72008", "power_badge": false, "display_name": "Run🔥fire", "active_status": "inactive", "verifications": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "follower_count": 1735, "custody_address": "0xcb92d141d8dfa7fb5944281bb416b016df2def19", "following_count": 2971, "verified_addresses": {"eth_addresses": ["0x417fea8f42c52e7d5c7cb044fef14391ad4d6894"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jKFTE\"}"}', 'sonata'), - (1028199, '0xa551e438e62fffaf7d6e0549c44f71d07e04db20', 0, 1, '2024-05-07 13:12:17+00', 0, 4, '{"fid": 509165, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c9361601-73c9-4e20-727c-cc543e785700/rectcrop3", "profile": {"bio": {"text": "F4F 🔥 맞팔🔥🔥", "mentioned_profiles": []}}, "username": "!509165", "power_badge": false, "display_name": "cheonhs", "active_status": "inactive", "verifications": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "follower_count": 863, "custody_address": "0x6bcf73121e12de68c66963299a7ea8c0be67bffe", "following_count": 1436, "verified_addresses": {"eth_addresses": ["0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oZbCXfST6EjkoMrA6\"}"}', 'sonata'), - (1045105, '0xa2b3db8cc2d60a14e18301b07051043397352cd2', 0, 1, '2024-05-07 14:04:36+00', 0, 4, '{"fid": 503201, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3054364-607e-4bf5-1423-f9052aeb5b00/rectcrop3", "profile": {"bio": {"text": "l love all!", "mentioned_profiles": []}}, "username": "lovable", "power_badge": false, "display_name": "Lovable🎩🍖", "active_status": "inactive", "verifications": ["0x6e2d1729982ff017efada3345ad986065003462b"], "follower_count": 785, "custody_address": "0xff9805d252f21c34e785855c4d6a5a3aa56bee38", "following_count": 1027, "verified_addresses": {"eth_addresses": ["0x6e2d1729982ff017efada3345ad986065003462b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6i1iu\"}"}', 'sonata'), - (782709, '0x69b5069580f06c09b483de3eb56cc6f849af5652', 0, 1, '2024-05-07 02:02:09+00', 0, 1, '{"fid": 276658, "object": "user", "pfp_url": "https://i.imgur.com/wXOGoxy.jpg", "profile": {"bio": {"text": "Those who trust in their perseverance do not value luck🔥🔥\n😵‍💫😵‍💫😵‍💫😵‍💫\nFID:276658\n😵‍💫😵‍💫😵‍💫😵‍💫\n", "mentioned_profiles": []}}, "username": "omid081", "power_badge": false, "display_name": "Omid🎩", "active_status": "inactive", "verifications": ["0x59a63491332d79c1a7087db3738f1683b47e66cf"], "follower_count": 944, "custody_address": "0x59a63491332d79c1a7087db3738f1683b47e66cf", "following_count": 900, "verified_addresses": {"eth_addresses": ["0x59a63491332d79c1a7087db3738f1683b47e66cf"], "sol_addresses": ["6rbo1J7icLgk1SceRwuyN3EGNvEwVF1zXeiS8Cg7y1HR"]}}', '{"{\"url\":\"Listen to My.Love.Doshka.320.BeysMusic.ir.mp3 by Omid mahdavi on #SoundCloud https://on.soundcloud.com/V1A8j\"}"}', NULL), - (1038127, '0xa2b707bf517a0420bd9ead9159b99fb967aabeee', 0, 1, '2024-05-07 13:37:58+00', 0, 8, '{"fid": 247653, "object": "user", "pfp_url": "https://i.imgur.com/8bPfKF7.jpg", "profile": {"bio": {"text": "✅ AlfaFrens\nhttps://www.alfafrens.com/channel/0x14225517d2CA4D08DAcaA29d3828B9d71fD4177E", "mentioned_profiles": []}}, "username": "pandateemo", "power_badge": false, "display_name": "pandateemo f4f 🎩 🍖", "active_status": "inactive", "verifications": ["0x7210de104487649c5c3b3e1b873355a0bfe69fb7"], "follower_count": 4152, "custody_address": "0xcf1631fbe68b27540606774f42fcdd723be12be1", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x7210de104487649c5c3b3e1b873355a0bfe69fb7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/januarypocket/1988a?si=403aaf25a69543f6bdd0040a7407ef35&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (1049050, '0xde06382e221891b726ebcd2658fb62620a8c0baf', 0, 1, '2024-05-07 14:20:51+00', 0, 1, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 386, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 783, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/utYeVvKDuaGexeUN7\"}"}', 'sonata'), - (732312, '0xcc2b6fa685d63effac85e82587b39972c7e5fd40', 0, 1, '2024-05-06 21:15:47+00', 0, 1, '{"fid": 431594, "object": "user", "pfp_url": "https://i.imgur.com/Jf9cDhq.jpg", "profile": {"bio": {"text": "Twin Dad\nBillboard Top-10 Music NFT Artist\nFounder of OP3N MINDS", "mentioned_profiles": []}}, "username": "nessytherilla", "power_badge": false, "display_name": "Nessy The Rilla", "active_status": "inactive", "verifications": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "follower_count": 61, "custody_address": "0x439fb7b8441c2b179e02b84f3701e61862a8c580", "following_count": 43, "verified_addresses": {"eth_addresses": ["0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/nessytherilla/the-bull-song\"}"}', NULL), - (1028202, '0x7505f443d8666c13649fe6a762419bdabd8d0033', 0, 1, '2024-05-07 13:11:54+00', 0, 1, '{"fid": 337426, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/644a4aab-1c5a-4e15-900a-1591108f2c00/original", "profile": {"bio": {"text": "Crypto Airdrop\n /fire-japan", "mentioned_profiles": []}}, "username": "ykoku47", "power_badge": false, "display_name": "oku🎩🔮🧀", "active_status": "inactive", "verifications": ["0x970a4d449766804f49892018d932bb3d6b1c6e95"], "follower_count": 1445, "custody_address": "0x7599adc67ebea204f46d566cf9c431afaeff96dc", "following_count": 982, "verified_addresses": {"eth_addresses": ["0x970a4d449766804f49892018d932bb3d6b1c6e95"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-128852815/thc3i2k1wpyx?si=c384bca278344d85bf4b25b3462706dc&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1045414, '0xfd1784c48129cef789ad7a3e1b5cb6f7e517d144', 0, 1, '2024-05-07 14:07:56+00', 0, 0, '{"fid": 288345, "object": "user", "pfp_url": "https://i.imgur.com/FwGqpQ9.jpg", "profile": {"bio": {"text": " I want to learn various things\nBeing a Good Dad\n", "mentioned_profiles": []}}, "username": "gylee", "power_badge": false, "display_name": "Gygygy🍖🎩💧", "active_status": "inactive", "verifications": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "follower_count": 2560, "custody_address": "0xc02b424283200788e3059b9dec77711175743775", "following_count": 1989, "verified_addresses": {"eth_addresses": ["0x019fe8b2d4e864a64402e71b81d176f4669cf764", "0x019fe8b2d4e864a64402e71b81d176f4669cf764"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/00-00-766169038/big-bang-haru-haru?si=8c166fed90fb41b382eda95ec30141c9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1000086, '0xa1f5eb66923a696d3bd91b1fbae326039a492c8e', 0, 1, '2024-05-07 11:51:30+00', 0, 0, '{"fid": 428304, "object": "user", "pfp_url": "https://i.imgur.com/tPdAPch.jpg", "profile": {"bio": {"text": "I love you btc", "mentioned_profiles": []}}, "username": "sanaz2024", "power_badge": false, "display_name": "Sani", "active_status": "inactive", "verifications": ["0x4a3dccf7a089ef2b96d822babbb6bdac9964a7b8"], "follower_count": 596, "custody_address": "0x2de28cfad9d9debb4d1732c0bfaa62ab3702aaf9", "following_count": 727, "verified_addresses": {"eth_addresses": ["0x4a3dccf7a089ef2b96d822babbb6bdac9964a7b8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GdYMstEZuYb6vvp77\"}"}', NULL), - (1049051, '0x638f09d74ebadfbb9cb31a9af856950815cfd352', 0, 1, '2024-05-07 14:20:25+00', 0, 2, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1390, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1560, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RN42TXeQczZMaR2e6\"}"}', NULL), - (1039437, '0x51d00fb1c1dedc8ac89a7ee392016ce670e7599b', 0, 1, '2024-05-07 13:42:26+00', 0, 4, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1780, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2219, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oTHGvXz6Gfu3y1Dr5\"}"}', 'sonata'), - (1039190, '0xdd426b04235e6423642cf6bae0f49758b04fbd79', 0, 1, '2024-05-07 13:40:47+00', 0, 2, '{"fid": 503140, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2de648f-2d6d-4a8b-61c3-f84fe3ecb200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "mtm", "power_badge": false, "display_name": "Khgoo", "active_status": "inactive", "verifications": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "follower_count": 1363, "custody_address": "0xb9b977dc77ca2b13c12603793f1d7ef9e8739f6b", "following_count": 1596, "verified_addresses": {"eth_addresses": ["0x300c8a1ebcd65a5191088298f0c876189d0cebf6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hzYUW\"}"}', 'sonata'), - (1054069, '0x38e64e65719c507d21fa4087326c6137d087b216', 0, 1, '2024-05-07 14:35:09+00', 0, 1, '{"fid": 508403, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1fb693d-18d7-4a76-0ad2-e9000f8fd700/rectcrop3", "profile": {"bio": {"text": "I''m here 😊", "mentioned_profiles": []}}, "username": "!508403", "power_badge": false, "display_name": "Takishi ", "active_status": "inactive", "verifications": ["0xd7845b13a381ad3e8adf02a9a439f16b87ca7d53"], "follower_count": 268, "custody_address": "0xc3821a033dbd852f747d9c094393fce78c7e7ae7", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xd7845b13a381ad3e8adf02a9a439f16b87ca7d53"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/progressiveastronaut/premiere-lampe-pressurized-original-mix-stil-vor-talent?si=b9c3952f1ec644ae9c62a70c75186fba&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1000084, '0xc82f0ca576116dd8246b6cab287ccf40a1583948', 0, 1, '2024-05-07 11:52:36+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1142, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nardeen-ibrahim/adele-when-we-were-young?si=9eeff27f81d8419d818a9750778835c3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1052914, '0xa1a622285fe95f933a9c7e180953ff56adc5e3d9', 0, 1, '2024-05-07 14:32:20+00', 0, 0, '{"fid": 420362, "object": "user", "pfp_url": "https://i.imgur.com/t0mIOUI.jpg", "profile": {"bio": {"text": "Hi\n한국어 & English\nPhysiotherapist\n\n혜자정신 :-)", "mentioned_profiles": []}}, "username": "kopsik", "power_badge": false, "display_name": "Kopsik", "active_status": "inactive", "verifications": ["0xee7f82c536ac366ba90bfd46d6e9f1aa955a34c0"], "follower_count": 1529, "custody_address": "0x01912aa76bb765e681d5890a1c1cbbc6b2f52cb0", "following_count": 2235, "verified_addresses": {"eth_addresses": ["0xee7f82c536ac366ba90bfd46d6e9f1aa955a34c0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/dreamage-1/2-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (998282, '0x28fb6669ac8a74a89ad4ecc081e5f8ad70114669', 0, 1, '2024-05-07 11:49:13+00', 0, 9, '{"fid": 496895, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd60fc8-4059-482e-4de0-f95640c5c300/original", "profile": {"bio": {"text": "follow me and i follow you💕 좋아요/리캐스트/댓글/맞팔/반사👍\n재밌는 밈 , 일상 공유해요 😎", "mentioned_profiles": []}}, "username": "funnymeme", "power_badge": false, "display_name": "fun-meme", "active_status": "inactive", "verifications": ["0x9cc25d9a0b430883794af454f027beaf8c366de6"], "follower_count": 2152, "custody_address": "0xc3c533c0199d019925944a558ec5c9736ccba77e", "following_count": 2313, "verified_addresses": {"eth_addresses": ["0x9cc25d9a0b430883794af454f027beaf8c366de6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BZ3r95LdX4CYELYcA\"}"}', 'sonata'), - (1057676, '0x1734d566d9cb1f1fec6c7e7a0e9c1906d120c93f', 0, 1, '2024-05-07 14:46:53+00', 0, 4, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 1018, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1151, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/napalmenema/fpee0ya8frk0?si=85eff8963fa2461b96e8a497c9e8a397&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1136104, '0xf3f00391ca0006a3ba06a49df597ac00495b59f5', 0, 1, '2024-05-07 19:15:29+00', 0, 5, '{"fid": 502168, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a700d28-bf97-42a1-331d-db3a3212b800/rectcrop3", "profile": {"bio": {"text": "‎‏Make ur Dreams Reality", "mentioned_profiles": []}}, "username": "castiell", "power_badge": false, "display_name": "Angel 🎩 🔮🔵⬆️", "active_status": "inactive", "verifications": ["0xdcbe021e3af328e1d9394c596b7512f93b9d0718"], "follower_count": 422, "custody_address": "0xfbe1a5276c136e7d60a4ff7e6605404f5e98fc35", "following_count": 843, "verified_addresses": {"eth_addresses": ["0xdcbe021e3af328e1d9394c596b7512f93b9d0718"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/BE3y8mebTv3cx2sv5\"}"}', NULL), - (1173672, '0xff5493b60ea7baef6ebd68e0fa6480c68921d5f4', 2000, 1, '2024-05-16 06:36:45+00', 0, 0, '{"fid": 12590, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8e61f172-3a27-4884-88f2-70a12aaec400/rectcrop3", "profile": {"bio": {"text": "Multidisciplinary artist, 3D sculptress, VR Performance pioneer. Follow /creatress\n\nCreatressart.com", "mentioned_profiles": []}}, "username": "creatress", "power_badge": true, "display_name": "Creatress Sarai 🦋🎩🔵", "active_status": "inactive", "verifications": ["0x52da39325e7b4e185fa7b041082ee11b9c823b34"], "follower_count": 1009, "custody_address": "0xa0253d76c5e5af37b9d8855634a216a7f45e48fd", "following_count": 746, "verified_addresses": {"eth_addresses": ["0x52da39325e7b4e185fa7b041082ee11b9c823b34"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/eating-disorders-secretly-suffering?referral_source=link\"}"}', 'creatress'), - (1088610, '0x81e69daa42f88d07471358850fc80a4bedad359e', 0, 1, '2024-05-07 15:50:22+00', 0, 3, '{"fid": 505013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2e86efb-37df-47aa-731a-f8625bff3c00/rectcrop3", "profile": {"bio": {"text": "I like degen 워캐 2회차", "mentioned_profiles": []}}, "username": "windtalkers", "power_badge": false, "display_name": "Windtalkers", "active_status": "inactive", "verifications": ["0x46e6f27fe7fe5bec6cbfaec747d499935c06a9b3"], "follower_count": 798, "custody_address": "0x15dd88b3930042ecfa87f7e3dbb39859d3fc1412", "following_count": 1051, "verified_addresses": {"eth_addresses": ["0x46e6f27fe7fe5bec6cbfaec747d499935c06a9b3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Z78WL\"}"}', 'sonata'), - (1045416, '0x17a6afe4aba7cb59839682a6e30c23c9dccbe155', 0, 1, '2024-05-07 14:06:41+00', 0, 0, '{"fid": 427654, "object": "user", "pfp_url": "https://i.imgur.com/atrcHtA.jpg", "profile": {"bio": {"text": "遂にデゲンできるようになりました\n帽子はメタマスクです\n積極的に絡んでいきますのでよろしくどうぞ!\n", "mentioned_profiles": []}}, "username": "chianti", "power_badge": false, "display_name": "chianti🐲🎩🔥", "active_status": "inactive", "verifications": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "follower_count": 298, "custody_address": "0xd0698c5468a0e65f51a002502f392954d923d49f", "following_count": 334, "verified_addresses": {"eth_addresses": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/5ngzqwoy6qqk/airscape-l-esperanza-armin-van-buuren-s-rising-star-mix-zaycevnet?si=9a9e6b46d5184468a2b71c1d055c64f7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1028225, '0x9535ddfc05216dcb2627b85d365810cd39993915', 0, 1, '2024-05-07 13:12:00+00', 0, 1, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1194, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VgzLEmv6CjW8sE8W9\"}"}', 'sonata'), - (1173673, '0x1e460d7bf15d9137e1cef5de5dde7adb3d55dbc6', 100, 1, '2024-05-16 06:42:26+00', 0, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 866, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 870, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1YQWosTIljIvxAgHWTp7KP?si=35-rXlfeSe-QK7JdNhq7Hg\"}"}', 'jazz'), - (1088245, '0x23e38bedbbcb3332a6b237d9325d41aacb7f350d', 0, 1, '2024-05-07 15:48:37+00', 0, 6, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2560, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2544, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bqyjc\"}"}', 'sonata'), - (1056661, '0x6667fce206ae094b435824ed7ef6756b778f7c9a', 0, 1, '2024-05-07 14:45:23+00', 0, 3, '{"fid": 417203, "object": "user", "pfp_url": "https://i.imgur.com/U0jXYDx.jpg", "profile": {"bio": {"text": "반가워요^^ 열심히 소통할께요 ^^\n초선! 반사 :)\n\n", "mentioned_profiles": []}}, "username": "bkbl", "power_badge": false, "display_name": "Bkbl ", "active_status": "inactive", "verifications": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "follower_count": 2340, "custody_address": "0xe9405bfa3a9c004fe826dde1a595d06d7b142e27", "following_count": 1229, "verified_addresses": {"eth_addresses": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/9xm5tmhiauxh/charlie-puth-i-dont-think-that?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1098685, '0xc48ba1accf459fca0f9580baa8d139baa3ba6997', 0, 1, '2024-05-07 16:10:05+00', 0, 3, '{"fid": 4513, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/473cb368-537c-4d53-c37a-ef8e08fe7d00/original", "profile": {"bio": {"text": "Music NFT collector and activist. First things coffee ☕️. Host of the /mls channel", "mentioned_profiles": []}}, "username": "seattlecrypto.eth", "power_badge": true, "display_name": "Jer | seattlecrypto.eth", "active_status": "inactive", "verifications": ["0x0f23189b256939996dec01766f6b2e581afb5bb3", "0x287e98cefeef5c834fb03811963abd6fca5e525f", "0x247a1e2bf4c0a0a13d35661d8cc6e4c01246e1f2", "0x1ae71ced9eb2104d8f4ec4f2467ad4f04d12a8c0"], "follower_count": 967, "custody_address": "0x6ae8de982c7cdc8c97ef3ebf85924c1da1c0ba1a", "following_count": 660, "verified_addresses": {"eth_addresses": ["0x0f23189b256939996dec01766f6b2e581afb5bb3", "0x287e98cefeef5c834fb03811963abd6fca5e525f", "0x247a1e2bf4c0a0a13d35661d8cc6e4c01246e1f2", "0x1ae71ced9eb2104d8f4ec4f2467ad4f04d12a8c0"], "sol_addresses": ["GAGrSfLvsAqukjCehN5kwnXax61oD18ZhJjTyximggB8"]}}', '{"{\"url\":\"https://www.sound.xyz/joshsavage/bella\"}"}', NULL), - (1001221, '0x9966e7b04e9acbbadfcec6e0fe1818055e5da178', 0, 1, '2024-05-07 11:55:55+00', 0, 0, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1476, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1214, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nyvek-nyvek-piano/kyary-pamyu-pamyu-harajuku-iyahoi?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1028970, '0x710cd67667ed0ce4b85a5a48977acf30e92aea76', 0, 1, '2024-05-07 13:13:09+00', 0, 12, '{"fid": 458191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/883d04b7-1096-4d94-022e-ac074d31fd00/rectcrop3", "profile": {"bio": {"text": "I’ll share my daily life 😎", "mentioned_profiles": []}}, "username": "freesia", "power_badge": false, "display_name": "freesia", "active_status": "inactive", "verifications": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "follower_count": 2961, "custody_address": "0x897d0a8819784d5ade9ea2c0569fdb58d311e717", "following_count": 1867, "verified_addresses": {"eth_addresses": ["0x19b74048752bfb0f99c76adb89007d0dd2373839"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aTkVd92Ro5vQRfbB9\"}"}', 'sonata'), - (1000087, '0x419cba7cc165517ee79f30c1e4550734e2493d7f', 0, 1, '2024-05-07 11:51:08+00', 0, 4, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1655, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1341, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Bvaqpoga227YYkoz5\"}"}', 'sonata'), - (1000399, '0xbd9fe5142be4552e9437262341a55b2d8c7fbdc5', 0, 1, '2024-05-07 11:53:14+00', 0, 0, '{"fid": 368568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d33d091-bad3-4c30-19fd-971586cb4700/rectcrop3", "profile": {"bio": {"text": "bassist.project manager.\n日本向け自由チャンネル\n/japan-creative\n\ndrakula\nhttps://drakula.app/post/c58c3e36-5a5f-43b\n\nフリーランス\n基本情報技術者 oracle BLONZE \n2級管工事施工管理技士 \n英検5級()", "mentioned_profiles": []}}, "username": "pk0730", "power_badge": false, "display_name": "pk0730", "active_status": "inactive", "verifications": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "follower_count": 691, "custody_address": "0xb576a4a246bbe2851828c614c00cf781d0d908da", "following_count": 770, "verified_addresses": {"eth_addresses": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "sol_addresses": ["HYfLsMcbTtxQeaZ4QQMzvDFNWooVCfo3aXbdLwuDqou8"]}}', '{"{\"url\":\"https://soundcloud.com/pk0730/rpg-wav-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1105575, '0x8fc2519b9b253dde13bd48389a369dc1360e9cc9', 0, 1, '2024-05-07 16:33:18+00', 0, 0, '{"fid": 376166, "object": "user", "pfp_url": "https://i.imgur.com/Zb1llJN.jpg", "profile": {"bio": {"text": "dance music,movie,crypto", "mentioned_profiles": []}}, "username": "sonson", "power_badge": false, "display_name": "sonson🎩🍖👻", "active_status": "inactive", "verifications": ["0xa045e5f735e7996a9da3dbd4318e5e1ee87cc115"], "follower_count": 587, "custody_address": "0x22db745c5e142eaf75033629fe5579942213973b", "following_count": 568, "verified_addresses": {"eth_addresses": ["0xa045e5f735e7996a9da3dbd4318e5e1ee87cc115"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h22z3dvyBatmVjWf8\"}"}', NULL), - (1039431, '0x7b43d611c96c22d25bfa70789e52df3947297d7e', 0, 1, '2024-05-07 13:42:07+00', 0, 4, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1558, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1814, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5bX4NbweNCPX59Nq5\"}"}', NULL), - (1007507, '0xcebde68511fac329e3704c73abec2a89d97bab76', 0, 1, '2024-05-07 12:07:03+00', 0, 1, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 311, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 346, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YrxjEpjSTGgum00liiB3w?si=vefsM7MXTBaqUcUYeQ_Lzw\"}"}', NULL), - (1029006, '0x7226648a7d560acaf935701b17396cf573f8f23e', 0, 1, '2024-05-07 13:13:04+00', 0, 13, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2807, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2526, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-449525512/bts-answer-love-myself\"}"}', 'sonata'), - (1001809, '0x39efe866364a6525dd860e1633af321c1d3ff59a', 0, 1, '2024-05-07 11:57:13+00', 0, 1, '{"fid": 500244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ac5f20c6-df1d-4646-faef-80a71ab4d500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Crypto / Food / Travel / Thank you for visiting my profile / お会いできて嬉しいです / 안녕", "mentioned_profiles": []}}, "username": "collie", "power_badge": false, "display_name": "Collie🔵🍖🎩⛓", "active_status": "inactive", "verifications": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "follower_count": 1463, "custody_address": "0x4543051348a97507c17c1ce970538b110f662486", "following_count": 1957, "verified_addresses": {"eth_addresses": ["0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/indie-city/lauv-i-like-me-better?si=e8508ba56c814dad88d1ecdb69caff6c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1089253, '0x438739f3bd7989368e482d51be2d85a10e126a30', 100, 1, '2024-05-07 15:51:00+00', 10, 0, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 221, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 975, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/nu?referral_source=link\"}"}', 'soundxyz'), - (1058481, '0xfb5a140d1c9c94c8addd758e0c4ba6c3c1c80884', 0, 1, '2024-05-07 14:48:24+00', 0, 1, '{"fid": 287958, "object": "user", "pfp_url": "https://i.imgur.com/LHJN6ue.jpg", "profile": {"bio": {"text": "hi-🪙\n\nLike ♥️\nFollow👆🏻\nRecast 🔄\n\nthanks you! \n\nsuper cast 🔥🌪️⚡️", "mentioned_profiles": []}}, "username": "jwpark0619", "power_badge": false, "display_name": "jin🎩🍖", "active_status": "inactive", "verifications": ["0x52e5053323dbabd5738026c29d49fe6512dadc17"], "follower_count": 1771, "custody_address": "0xdcc2be1e01df3be1edbd8840f3c925b845e30ea2", "following_count": 1380, "verified_addresses": {"eth_addresses": ["0x52e5053323dbabd5738026c29d49fe6512dadc17"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1058500, '0x64aa59ec61caded80bc15079ae59ab3244c28809', 0, 1, '2024-05-07 14:49:22+00', 0, 6, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2514, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2377, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/b9Ta7zp3Kpnquo788\"}"}', 'sonata'), - (1061208, '0xa3b6bde04adc7e667ec54661db5ddfe623f92afa', 0, 1, '2024-05-07 14:57:30+00', 0, 2, '{"fid": 508213, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56db10de-ec02-4649-028f-79af6c0bfa00/rectcrop3", "profile": {"bio": {"text": "쿠키아빠 / 인생2회차", "mentioned_profiles": []}}, "username": "!508213", "power_badge": false, "display_name": "Cookie🍪", "active_status": "inactive", "verifications": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "follower_count": 326, "custody_address": "0x6abbd2cb54f977b6622a785799ed67fee0d77db0", "following_count": 545, "verified_addresses": {"eth_addresses": ["0xea8b39bf6bb5df64688a39e664cd6c080d4472c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jqyBP\"}"}', 'sonata'), - (1158768, '0x5164af568e9cf02a4000fa7dec39281912d24840', 0, 1, '2024-05-08 05:26:59+00', 0, 9, '{"fid": 326765, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8cd887ab-cd2c-4b0e-3807-3f3f98ec0000/original", "profile": {"bio": {"text": "Musician 🎶\nHere for the gm’s and the frenships. \nHosting /songwriting", "mentioned_profiles": []}}, "username": "sadeghian", "power_badge": true, "display_name": "May🎩", "active_status": "inactive", "verifications": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "follower_count": 249, "custody_address": "0x8b7d3a520bd6ee6c3fa8ca07cd938ae696b063e6", "following_count": 441, "verified_addresses": {"eth_addresses": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4cbefOyButyePOwNU0Qwmf?si=cM0dbC1sSF-7pmospqaRZA\"}"}', NULL), - (1029812, '0x536bab286e409167934517494ed3b44a8a6e164e', 0, 1, '2024-05-07 13:14:28+00', 0, 12, '{"fid": 406952, "object": "user", "pfp_url": "https://i.imgur.com/CyxbNGv.jpg", "profile": {"bio": {"text": "경제적 자유 / F4F / 언제든지 달려갑니다 🔥", "mentioned_profiles": []}}, "username": "kkasa34", "power_badge": false, "display_name": "허밍버드", "active_status": "inactive", "verifications": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "follower_count": 2528, "custody_address": "0x8017df1d22d340fed25a6b13e9d6da7c05dca91b", "following_count": 2219, "verified_addresses": {"eth_addresses": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ntqjfwly1htx/buzz?si=89fe00a8ca2647f1b86b928f3f5ba851&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1001834, '0xa2ad2ee5171d7e4ca419b33c8767461881601d69', 0, 1, '2024-05-07 11:57:56+00', 0, 1, '{"fid": 499057, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92eb5b0b-027b-405c-550d-59f4268c8000/rectcrop3", "profile": {"bio": {"text": "Shiba will save the world🐾 존대말을 못배운 카와이시바 4가지없는게 아니야! 은혜는 무조건 갚는 카와이시바!", "mentioned_profiles": []}}, "username": "kawaiishiba", "power_badge": false, "display_name": "Kawaii_Shiba🎩", "active_status": "inactive", "verifications": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "follower_count": 1095, "custody_address": "0x1fd5449710120b982115e31881eb221ef9979283", "following_count": 1252, "verified_addresses": {"eth_addresses": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ctLQhcVfACka19wR9\"}"}', NULL), - (1001835, '0xafda03ef810ad377468b98e67bc3b02761432d8c', 0, 1, '2024-05-07 11:58:28+00', 0, 9, '{"fid": 511743, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d992a649-c8f3-49fa-13f9-70844e9a6e00/rectcrop3", "profile": {"bio": {"text": "환생한 Ghost_Eyes👻\n잘 부탁 드립니다", "mentioned_profiles": []}}, "username": "!511743", "power_badge": false, "display_name": "Ghost_Eyes👻", "active_status": "inactive", "verifications": ["0xf0fe272b03a177301b3af721e451cdfe70ffd7e2", "0xf0fe272b03a177301b3af721e451cdfe70ffd7e2"], "follower_count": 66, "custody_address": "0xf737c3aaa2dbad13a2a46c1c6e627c5231ef1fcc", "following_count": 170, "verified_addresses": {"eth_addresses": ["0xf0fe272b03a177301b3af721e451cdfe70ffd7e2", "0xf0fe272b03a177301b3af721e451cdfe70ffd7e2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hffVy\"}"}', 'sonata'), - (1001845, '0xcec420c0bfec10ef3771b513c96024ada4983440', 0, 1, '2024-05-07 11:57:19+00', 0, 3, '{"fid": 437274, "object": "user", "pfp_url": "https://i.imgur.com/PBnvs6J.jpg", "profile": {"bio": {"text": "i love degen\ni love family", "mentioned_profiles": []}}, "username": "kimjeonghwa", "power_badge": false, "display_name": "Kimjeonghwa", "active_status": "inactive", "verifications": ["0x2dbb3d82064faaf500cf74dc92cafb91e493d390", "0x2dbb3d82064faaf500cf74dc92cafb91e493d390"], "follower_count": 2657, "custody_address": "0x83e6c760de9a0a70c5b44541060273956d29c5d2", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x2dbb3d82064faaf500cf74dc92cafb91e493d390", "0x2dbb3d82064faaf500cf74dc92cafb91e493d390"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 한스밴드 - 오락실(Cover) by YAMACUTTER on #SoundCloud https://on.soundcloud.com/PZEAo\"}"}', NULL), - (997144, '0xefb649591ddac1e5985b94bd196ac67eb5e6f4a0', 0, 1, '2024-05-07 11:48:26+00', 0, 2, '{"fid": 458343, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6da2b9b0-db66-4916-5838-19ad2a8cd500/rectcrop3", "profile": {"bio": {"text": "마음이 닿기를, 🌙", "mentioned_profiles": []}}, "username": "breezeu", "power_badge": false, "display_name": "breezeu", "active_status": "inactive", "verifications": ["0x481657fb14b2217abcd0a6e78763ecaca066728a"], "follower_count": 947, "custody_address": "0xd82f57ef83b81da1a16fe4bc6fb08389852972ad", "following_count": 791, "verified_addresses": {"eth_addresses": ["0x481657fb14b2217abcd0a6e78763ecaca066728a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mJdp4\"}"}', 'sonata'), - (1039432, '0x3e92a26831985af3bce5051eea0a039f4b4d3de7', 0, 1, '2024-05-07 13:41:46+00', 0, 5, '{"fid": 401441, "object": "user", "pfp_url": "https://i.imgur.com/xw6m1Wy.jpg", "profile": {"bio": {"text": "반응이 늦더라도 조금만 기다려주세요. \n", "mentioned_profiles": []}}, "username": "woawoame", "power_badge": false, "display_name": "Lemon", "active_status": "inactive", "verifications": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "follower_count": 2076, "custody_address": "0xe8b627f4c3b83022f8bacbd4d0f957e1f31e6318", "following_count": 2336, "verified_addresses": {"eth_addresses": ["0xf40a1a549bf702b74e70f9e0329db5ccc6839d42"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/X1KXF\"}"}', 'sonata'), - (1173676, '0xbf8b8344d19dd31a1a7adbde78e47ac80132ddac', 0, 1, '2024-05-16 07:13:23+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30880, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1WyPw4NjDSCS5IKUnEdLa1?si=0c0f63e153b84c44\"}"}', NULL), - (1045440, '0xdd33988fcf103f29fa60c7507a08176b6a8fb252', 0, 1, '2024-05-07 14:05:02+00', 0, 0, '{"fid": 276109, "object": "user", "pfp_url": "https://i.imgur.com/tyIEtsV.jpg", "profile": {"bio": {"text": "lens based light bender | hosting /lightlounge 🔦✨\nlinktr.ee/gabriellamorton", "mentioned_profiles": []}}, "username": "gabriellamorton", "power_badge": true, "display_name": "ella", "active_status": "inactive", "verifications": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "follower_count": 488, "custody_address": "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57", "following_count": 380, "verified_addresses": {"eth_addresses": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6DYLWAdxEJvwWmT7EkeDkX?si=v3e57BQoS7qiE-YuADpd2Q\"}"}', NULL), - (1039675, '0xbf48b332b9517e657fe459c4d578aeb18d0c9493', 0, 1, '2024-05-07 13:44:40+00', 0, 0, '{"fid": 287576, "object": "user", "pfp_url": "https://i.imgur.com/l45fsuw.jpg", "profile": {"bio": {"text": "仕事家事育児兼業くりぷたー\nX:https://twitter.com/noshi_no_4\n時間がなくても追える範囲を意識してやってます。最近は$APT推し", "mentioned_profiles": []}}, "username": "noshi", "power_badge": false, "display_name": "noshi🎩🍖", "active_status": "inactive", "verifications": ["0xfbf19dcd5387e9c087c8cb93fbbc8bcc09e0a252"], "follower_count": 455, "custody_address": "0x1d4191865e8604c61d75fd24a66bfce006d6fb5c", "following_count": 316, "verified_addresses": {"eth_addresses": ["0xfbf19dcd5387e9c087c8cb93fbbc8bcc09e0a252"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/0uotonmux5qi/sets/1maxjn0hqubx\"}"}', 'likewen'), - (1002616, '0x4a31d651556d2e8f027aa8d8ede91c55b71ba39a', 0, 1, '2024-05-07 12:00:04+00', 0, 1, '{"fid": 503907, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3d4b7bd-00bc-4f39-7aca-66e2d569e600/rectcrop3", "profile": {"bio": {"text": "diVine inspiration 🌈", "mentioned_profiles": []}}, "username": "amirali1991", "power_badge": false, "display_name": "Nothing😎😎", "active_status": "inactive", "verifications": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "follower_count": 196, "custody_address": "0x114b9f282cd625abc5658a0644e2dd4502337307", "following_count": 815, "verified_addresses": {"eth_addresses": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XzwjXEtpFZAepqrG7\"}"}', NULL), - (1002612, '0xc81320f8429b5ea188b927f9aa6a89e36ff3a25a', 0, 1, '2024-05-07 11:59:21+00', 0, 4, '{"fid": 380293, "object": "user", "pfp_url": "https://i.imgur.com/ptPCKQR.jpg", "profile": {"bio": {"text": "Phd🔬\nSky runner 👟\nFitness 💪\nNature 🍄", "mentioned_profiles": []}}, "username": "pendar", "power_badge": false, "display_name": "Pendar 🎩", "active_status": "inactive", "verifications": ["0x151f540f1ac3e8060c8c377d37e30797d5b9eea4"], "follower_count": 1159, "custody_address": "0x6227499fdf42784569c0a440b8218126dc35b5d4", "following_count": 2273, "verified_addresses": {"eth_addresses": ["0x151f540f1ac3e8060c8c377d37e30797d5b9eea4"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Gypsy Kings & Alabina - Ya Habibi Yalla (Spanish) by Davron on #SoundCloud https://on.soundcloud.com/KPZV5\"}"}', NULL), - (1088617, '0x7ac2839ecba0b10538cb5bf49ad5351be24d053d', 0, 1, '2024-05-07 15:50:09+00', 0, 2, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 633, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 937, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hnin-oo-wai-907451896/mommy-son-feat-my-sadness?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1000113, '0x31f5474a0e741d7b350950d34bdcdde4db3bdf33', 0, 1, '2024-05-07 11:52:18+00', 0, 4, '{"fid": 505633, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16bf11dc-3e89-4b70-0fe8-9bbe7a529800/rectcrop3", "profile": {"bio": {"text": "👀👃👄", "mentioned_profiles": []}}, "username": "kimkancho", "power_badge": false, "display_name": "kimkancho", "active_status": "inactive", "verifications": ["0x6aa13addb4d628ec5531f0cbe9de605ff76a43aa"], "follower_count": 282, "custody_address": "0x46073d073acfcb4cfd031ef9a171136e8707176f", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x6aa13addb4d628ec5531f0cbe9de605ff76a43aa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ahmed-almukheni/ryuichi-sakamoto-aqua?si=6c9efafbfcc34412aa6721f4b087cdec&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1039588, '0x284a8a6bd03e585e9414428a06250e252b21f43f', 0, 1, '2024-05-07 13:43:04+00', 0, 1, '{"fid": 382749, "object": "user", "pfp_url": "https://i.imgur.com/7MJOHmF.jpg", "profile": {"bio": {"text": "I love warpcast and degen\n주로 아침(출근길), 저녁(퇴근길), 야간반 활동합니다.\nhttps://zora.co/@ixtream", "mentioned_profiles": []}}, "username": "ixtream", "power_badge": false, "display_name": "ixtream🎩🍖", "active_status": "inactive", "verifications": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "follower_count": 2455, "custody_address": "0xda6f497cb157c676f9af0ba7f44cb4e8ef222502", "following_count": 2153, "verified_addresses": {"eth_addresses": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hamada-helal-14/titanic-my-heart-will-go-on?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1059536, '0x926eb3221941e9c1a01b891f74455cefb810b9ab', 0, 1, '2024-05-07 14:54:22+00', 0, 4, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 이것저것 열심히 다 합니다. 잘 부탁드립니다.", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1490, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2581, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/min-ah-518723080/xrwcwxjvoykf?si=83486179dc99432f95d36809c7b0c33e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1002651, '0x3d622dbbb3bd8e2cdd45250623cc9523d26f8159', 0, 1, '2024-05-07 12:00:02+00', 0, 9, '{"fid": 496340, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95ab9348-6646-4495-81d8-baef2cf56200/rectcrop3", "profile": {"bio": {"text": "Gymrat🫂슈캐장착 리액션부자♡♡무조건3종갑니다~~Nice to meet you🩷🧡💛Follow me맞팔환영♡", "mentioned_profiles": []}}, "username": "bonnyvely", "power_badge": false, "display_name": "Bonny Vely", "active_status": "inactive", "verifications": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "follower_count": 1361, "custody_address": "0x5b072c9e6deafded1ede82ee3e1cd13c792a6ca3", "following_count": 1036, "verified_addresses": {"eth_addresses": ["0xd24b56884559f5ad0ae8482987772d8f64cf2905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jin-roh-353085509/kyzpaungqnbk?si=c5ccabd354ec4d38a11dc8a06a8330d7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1054064, '0xc0da7b53c696b88ba2fd7185b62bfe7979c7d758', 0, 1, '2024-05-07 14:35:34+00', 0, 13, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3972, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2238, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xGQnJBeUmDdNs2pSA\"}"}', 'sonata'), - (930517, '0x58d4265736ab246a665acb6e0fa0027cce48a5d0', 0, 1, '2024-05-07 08:05:51+00', 0, 11, '{"fid": 444865, "object": "user", "pfp_url": "https://i.imgur.com/53I1ojt.jpg", "profile": {"bio": {"text": "Coin Side", "mentioned_profiles": []}}, "username": "tatapro", "power_badge": false, "display_name": "Tatiana🐲🍖", "active_status": "inactive", "verifications": ["0x03b8d3fc3059d7a4c5b060449717b6e3aa08a40c"], "follower_count": 517, "custody_address": "0x6c233e342fbdfd2c9377c22a1b66d7091de7151f", "following_count": 696, "verified_addresses": {"eth_addresses": ["0x03b8d3fc3059d7a4c5b060449717b6e3aa08a40c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm\"}"}', 'streamz'), - (1054683, '0x088384219785bb973938af775959c806f8feafd2', 0, 1, '2024-05-07 14:38:00+00', 0, 4, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 이것저것 열심히 다 합니다. 잘 부탁드립니다.", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1490, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2581, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-888992882/mp3?si=6c2ac6f3d90241f38a4c7390530902bd&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1058518, '0x7c4537fe416772f892ce0073dacae93b1a10cdaf', 0, 1, '2024-05-07 14:49:05+00', 0, 0, '{"fid": 508420, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/85c1cc53-4644-4a3a-3c94-9dc3be1d5400/rectcrop3", "profile": {"bio": {"text": "Hello\nI''ll do my best to communicate with you", "mentioned_profiles": []}}, "username": "!508420", "power_badge": false, "display_name": "Gyo1024", "active_status": "inactive", "verifications": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "follower_count": 217, "custody_address": "0xfedbfbe1494d0416bf976951852153c2da8b699b", "following_count": 252, "verified_addresses": {"eth_addresses": ["0xa2627e5469c456b0f35ecae2d0cc772f0839a060"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tv3oyjGox5pVs51f6\"}"}', NULL), - (1029887, '0xf09cf31c2eb97f02a462c9f27cd2d262c8b89bc7', 0, 1, '2024-05-07 13:15:18+00', 0, 1, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1131, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1855, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3U4isOIWM3VvDubwSI3y7a?si=6ce18de9e2c042db\"}"}', 'sonata'), - (1059532, '0x6e33b821d8683b06baccabe8bcd4606028efd51c', 0, 1, '2024-05-07 14:53:19+00', 0, 3, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 407, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 228, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5yY9lUy8nbvjM1Uyo1Uqoc?si=3hK5EZ6ATAWNaN9v1VH5PQ\"}"}', 'lifeisgood'), - (1039681, '0xe081f8c2e4e79156bd05e547bb96dd927ebd035a', 0, 1, '2024-05-07 13:45:00+00', 0, 9, '{"fid": 405140, "object": "user", "pfp_url": "https://i.imgur.com/dsTn16C.jpg", "profile": {"bio": {"text": "f4f / 맞팔환영/ 리액션은 반사갑니다/ \n🚀🚀🚀슈퍼캐스트 장착완료!!🚀🚀🚀", "mentioned_profiles": []}}, "username": "jjanggoo", "power_badge": false, "display_name": "jjang", "active_status": "inactive", "verifications": ["0x14fe03ba94f2ec1ebc9a5bf24659da8efff413ef"], "follower_count": 3062, "custody_address": "0x3faa6b9a7e96b64ae090707bca6f5cf4250e86fb", "following_count": 2894, "verified_addresses": {"eth_addresses": ["0x14fe03ba94f2ec1ebc9a5bf24659da8efff413ef"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/L57BckJd3qpdZNDq7\"}"}', 'banmal-mode'), - (1004640, '0x82236ed358cbb8d2a60201f92c5d4bcd3bacd468', 0, 1, '2024-05-07 12:02:33+00', 0, 9, '{"fid": 501508, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a4c3f18e-b4bc-461a-5c04-d34e25740000/original", "profile": {"bio": {"text": "우리 즐겁게 소통하면서 지내요\n워캐스트 세상\nForeign friends are welcome, too\nI want to be friends", "mentioned_profiles": []}}, "username": "mini777", "power_badge": false, "display_name": "daroo", "active_status": "inactive", "verifications": ["0x3ba83eb0d77a0bd322cd3fefd6b525d7f7dbb520"], "follower_count": 1166, "custody_address": "0x1f58f50ec76298ed093ff8d0d2cabc8a699595e2", "following_count": 1375, "verified_addresses": {"eth_addresses": ["0x3ba83eb0d77a0bd322cd3fefd6b525d7f7dbb520"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-329806205/remember-me-mp3-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1004641, '0x6e69b8b63b6d26c8071a97a3dc3120c4656e20ad', 0, 1, '2024-05-07 12:01:39+00', 0, 8, '{"fid": 500141, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9aef12a5-4882-4db9-4a60-9aba035ba200/rectcrop3", "profile": {"bio": {"text": "I''m a ghost living in a crypto world. Ugh! But don''t worry. I''m not threatening you", "mentioned_profiles": []}}, "username": "ghost-xox", "power_badge": false, "display_name": "Ghost👻 ", "active_status": "inactive", "verifications": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "follower_count": 1122, "custody_address": "0xb0fcb3cbdca5b495818b5d8c701606e2a42e66b6", "following_count": 630, "verified_addresses": {"eth_addresses": ["0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gT1mGKhW253wSyVbA\"}"}', 'sonata'), - (1000407, '0xfe6bdbf93a45b25e9941996bade8344db8d01d5c', 0, 1, '2024-05-07 11:53:37+00', 0, 1, '{"fid": 481625, "object": "user", "pfp_url": "https://i.imgur.com/tKgrHhY.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "tory27", "power_badge": false, "display_name": "Tory", "active_status": "inactive", "verifications": ["0x97b820ae0e998eba0e8156298e7cd0db3ed3f711"], "follower_count": 58, "custody_address": "0x19bd7f3b9765db2de47ff167c1876e390bfc528d", "following_count": 94, "verified_addresses": {"eth_addresses": ["0x97b820ae0e998eba0e8156298e7cd0db3ed3f711"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/noko-9/20243a?in=trending-music-kr/sets/indie&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1039677, '0x23d94bd1cf831183ea200c1d0bf76536ce4b98d4', 0, 1, '2024-05-07 13:46:24+00', 0, 2, '{"fid": 290640, "object": "user", "pfp_url": "https://i.imgur.com/O5ZNI75.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "jjjjjuuuuu", "power_badge": false, "display_name": "jjjjjuuuuu🎩🍖", "active_status": "inactive", "verifications": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "follower_count": 988, "custody_address": "0xc6ff0a3a40b66452b33aa97efb339d5bf3f21f9d", "following_count": 498, "verified_addresses": {"eth_addresses": ["0x532092cd2dfa460957a332b1a2f6ae9f3df2c142"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/8iqedxyazedy/yerin-baek-dance-on-you-encore?si=8f41fcc9a24d4383bc7fcaee0e7bb3e6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1087356, '0xf5174edc096b51c29279a216d25330f723646bc9', 0, 1, '2024-05-07 15:43:19+00', 0, 2, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2560, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2544, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/AsigA\"}"}', 'sonata'), - (1039673, '0xcd6f33d02d01e0acece73cc2860a8795bfe461a1', 0, 1, '2024-05-07 13:44:44+00', 0, 2, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1131, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1855, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1F5PuqYumk9MVOIT27uDBp?si=aa275743877243f8\"}"}', NULL), - (1004646, '0xad0a91439d19b902e6a3ebbbac3f268f49bc8b3d', 0, 1, '2024-05-07 12:00:46+00', 0, 3, '{"fid": 437274, "object": "user", "pfp_url": "https://i.imgur.com/PBnvs6J.jpg", "profile": {"bio": {"text": "i love degen\ni love family", "mentioned_profiles": []}}, "username": "kimjeonghwa", "power_badge": false, "display_name": "Kimjeonghwa", "active_status": "inactive", "verifications": ["0x2dbb3d82064faaf500cf74dc92cafb91e493d390", "0x2dbb3d82064faaf500cf74dc92cafb91e493d390"], "follower_count": 2657, "custody_address": "0x83e6c760de9a0a70c5b44541060273956d29c5d2", "following_count": 1878, "verified_addresses": {"eth_addresses": ["0x2dbb3d82064faaf500cf74dc92cafb91e493d390", "0x2dbb3d82064faaf500cf74dc92cafb91e493d390"], "sol_addresses": []}}', '{"{\"url\":\"서태지 잊을수 없는 명곡Listen to 서태지 - Come Back Home 컴백홈 (Trap remix) by Maxstar on #SoundCloud https://on.soundcloud.com/mqVRe\"}"}', NULL), - (1004642, '0x1b932a35c46190c1a03cad063d7f3b92b0b1b3a9', 0, 1, '2024-05-07 12:02:50+00', 0, 1, '{"fid": 501169, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a5e704c-06c8-48ca-ec18-588c83ac3700/rectcrop3", "profile": {"bio": {"text": "Top Amateur", "mentioned_profiles": []}}, "username": "haejing", "power_badge": false, "display_name": "haejing🎩🍖", "active_status": "inactive", "verifications": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "follower_count": 1252, "custody_address": "0x68ea6421d2795e06f41e54fe856b8ab596127379", "following_count": 619, "verified_addresses": {"eth_addresses": ["0x5aeff799176f210cce1b19c60198185fce4c2ab4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GNn3KkXrJDsmu3p48\"}"}', NULL), - (1039682, '0xa1b9534fabd4af754b9321f5e01ab990030a9f73', 0, 1, '2024-05-07 13:45:52+00', 0, 5, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1131, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1855, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2APM0MB4txhD5Oir3Ahae2?si=cc9bd17482fa4827\"}"}', NULL), - (1030146, '0xffb76330c39eb4f4b0baeabd24c62a0688f6b829', 0, 1, '2024-05-07 13:17:54+00', 0, 11, '{"fid": 463189, "object": "user", "pfp_url": "https://i.imgur.com/9NbMuQX.jpg", "profile": {"bio": {"text": "소소한 일상을 공유 하면서\n자주 꾸준히 소통 했으면 하는 바램 입니다. ", "mentioned_profiles": []}}, "username": "chickenchicken", "power_badge": false, "display_name": "Eighth Note", "active_status": "inactive", "verifications": ["0x4b5e6c70c7704c72c1b0dcef515e5e0e97ceeab7"], "follower_count": 2583, "custody_address": "0x01262a87a00bd4e88b706bc9f1eabd09fe7a7aa1", "following_count": 3793, "verified_addresses": {"eth_addresses": ["0x4b5e6c70c7704c72c1b0dcef515e5e0e97ceeab7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ALerHjZtetVWWCcH8\"}"}', 'banmal-mode'), - (1089285, '0xa5f22894587b97118faf3ecaec021318c8539108', 0, 1, '2024-05-07 15:50:27+00', 0, 4, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 633, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 937, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost42/wonstein-your-exixtence-twenty-five-twenty-one-ost-part-4?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1099819, '0x465008203f79784a09a492a581c4fc4570639b9a', 0, 1, '2024-05-07 16:08:33+00', 0, 21, '{"fid": 391839, "object": "user", "pfp_url": "https://i.imgur.com/jtSGCZm.jpg", "profile": {"bio": {"text": "@일상소통/투자소통\n@한분한분소중하게 찾아가용!\n@공부하는 오랑이🤗\n\n@조급하지도 걱정도 하자마라.\n@Don''t be impatient and worry.", "mentioned_profiles": []}}, "username": "parkgunwoo", "power_badge": false, "display_name": "오랑이🎩🍖🔵", "active_status": "inactive", "verifications": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "follower_count": 2961, "custody_address": "0x955e52b86ace17f4bcca570234ca7b09d06344c2", "following_count": 2975, "verified_addresses": {"eth_addresses": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ieazy/tove-stryke-mood-swings-slowed?si=9adf5fe3f8174a338d501bea3c178a06&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1039591, '0x8c649021b731957020c2fd1e54b5ac93eb9aa16d', 0, 1, '2024-05-07 13:43:15+00', 0, 0, '{"fid": 711, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/jm5MNY3xR4iMYKogE-XmOQyqxrWfLgW2BvltLKCbjr4rZdxbFP402e1o6fpGUDwjgEz1K7Pu_obE0id7Zza0VT5LkV7mqduv81i4CQ", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "payomdousti", "power_badge": false, "display_name": "Payom Dousti", "active_status": "inactive", "verifications": ["0x9299d0b39158dd684d559ed55074cc6ea0975de8"], "follower_count": 167, "custody_address": "0x7ee0e3af9b23689351aaf351946896250a97fdb3", "following_count": 174, "verified_addresses": {"eth_addresses": ["0x9299d0b39158dd684d559ed55074cc6ea0975de8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6ZYb7YpLTVOE9cBJQjf55f?si=iGqmPx4USQWRlWZPHYLELw\"}"}', 'soundscapes'), - (1006158, '0xa3a337acf212acfd6851593409f3efcd8e8550f5', 0, 1, '2024-05-07 12:04:45+00', 0, 0, '{"fid": 405607, "object": "user", "pfp_url": "https://i.imgur.com/RMc8TeQ.jpg", "profile": {"bio": {"text": "I’m a musician 💙", "mentioned_profiles": []}}, "username": "suavemusic", "power_badge": false, "display_name": "Suave", "active_status": "inactive", "verifications": ["0x7e8608f5893a6a57602a014ab190f7af8069d1e1"], "follower_count": 70, "custody_address": "0xc99e12422fa985efd765ffa5fb917791460f52b7", "following_count": 213, "verified_addresses": {"eth_addresses": ["0x7e8608f5893a6a57602a014ab190f7af8069d1e1"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/suave/break-the-tension?referral_source=link\"}"}', NULL), - (1016487, '0xa7a3bdc54aabb6fdbe024e31192aa2608510dc3d', 0, 1, '2024-05-07 12:43:54+00', 0, 7, '{"fid": 407705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/242ed415-fb13-47b1-7f97-4a3d55671800/rectcrop3", "profile": {"bio": {"text": "나는 나고, 너도 나야💛", "mentioned_profiles": []}}, "username": "charming", "power_badge": false, "display_name": "joyboy", "active_status": "inactive", "verifications": ["0x8366864ccd59c240c40543149dfc11542a318002"], "follower_count": 3971, "custody_address": "0xe8505634008cfdda73b84159b59c5e3dea1042c2", "following_count": 2237, "verified_addresses": {"eth_addresses": ["0x8366864ccd59c240c40543149dfc11542a318002"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CqqBYnefH7LRMpqYA\"}"}', 'sonata'), - (1047459, '0x0fd247f498c5fd11835876edc7f2f26841c87916', 0, 1, '2024-05-07 14:17:44+00', 0, 0, '{"fid": 510679, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ddd3b8d9-bba2-464f-24dd-665614cb0200/rectcrop3", "profile": {"bio": {"text": "i love all things cultural", "mentioned_profiles": []}}, "username": "!510679", "power_badge": false, "display_name": "kitz", "active_status": "inactive", "verifications": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "follower_count": 53, "custody_address": "0x489101a24cabf32bdb1558b1181b79ad0f58e25e", "following_count": 169, "verified_addresses": {"eth_addresses": ["0xa53214e8ba22a272265b755eb41e6f37af2c6c8e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CyVPSnJBxfEAoXwT7\"}"}', 'sonata'), - (1158772, '0xa3cd38a30210a917526f7be1acaf10d5d67bde8a', 0, 1, '2024-05-08 05:29:53+00', 0, 13, '{"fid": 326765, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8cd887ab-cd2c-4b0e-3807-3f3f98ec0000/original", "profile": {"bio": {"text": "Musician 🎶\nHere for the gm’s and the frenships. \nHosting /songwriting", "mentioned_profiles": []}}, "username": "sadeghian", "power_badge": true, "display_name": "May🎩", "active_status": "inactive", "verifications": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "follower_count": 249, "custody_address": "0x8b7d3a520bd6ee6c3fa8ca07cd938ae696b063e6", "following_count": 441, "verified_addresses": {"eth_addresses": ["0xdf58c34414b0812b38c362e8423380a0f27eda8c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4cbefOyButyePOwNU0Qwmf?si=cM0dbC1sSF-7pmospqaRZA\"}"}', 'sonata'), - (1009403, '0xca12674764fdfcad0ef9305c2668390966a64c22', 0, 1, '2024-05-07 12:24:30+00', 0, 2, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1035, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Tp4sVbA4w6659NJj8\"}"}', 'musicjp'), - (1009851, '0x83c8d61a64ace4f616298c44da33433d544b4b3d', 0, 1, '2024-05-07 12:25:49+00', 0, 4, '{"fid": 500205, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/93bcb350-b8b6-44fb-e8dc-585fd8d99b00/rectcrop3", "profile": {"bio": {"text": "food, dessert, coffee and etc😍", "mentioned_profiles": []}}, "username": "dodong2", "power_badge": false, "display_name": "dodong2", "active_status": "inactive", "verifications": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "follower_count": 844, "custody_address": "0x5e6f147ae5d9832232d2d9b8528beb1cfe2cad1e", "following_count": 906, "verified_addresses": {"eth_addresses": ["0x2c602f1f156982f996645fa257fe019d45397c83"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rhQZzNmfnx3C9YSF9\"}"}', 'sonata'), - (1136444, '0x19a6e657cd079e68944863baf47b258522b45969', 0, 1, '2024-05-07 19:23:17+00', 0, 2, '{"fid": 13034, "object": "user", "pfp_url": "https://i.imgur.com/NIX5Pd6.jpg", "profile": {"bio": {"text": "I’m a software engineer, photographer and synth fanatic. Also into kayaking, walking and history.", "mentioned_profiles": []}}, "username": "nicklewis", "power_badge": false, "display_name": "Nick Lewis", "active_status": "inactive", "verifications": ["0xd7ea5a42b69e7f955c5236841827260d8ad81567", "0xfcff1f2250266c0fdab26186ea22ee164e4d2d9f"], "follower_count": 46, "custody_address": "0xe630537c0ed5f06b4807b58803f37785f9f8bea3", "following_count": 130, "verified_addresses": {"eth_addresses": ["0xd7ea5a42b69e7f955c5236841827260d8ad81567", "0xfcff1f2250266c0fdab26186ea22ee164e4d2d9f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t2fTPJQmYBEkjT8w7\"}"}', 'musicbusiness'), - (1005907, '0x1a15b616eee1d9570566e16f7416b1eefe8f6393', 0, 1, '2024-05-07 12:05:58+00', 0, 0, '{"fid": 316344, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16b82f98-a0af-4ff0-99a8-d434590a6400/original", "profile": {"bio": {"text": "CyberHippie\nDigital Artist here for 4yrs+\nSee some works:\nrc.xyz/marcotic\n\nRarible: https://rarible.com/items/sale", "mentioned_profiles": []}}, "username": "marcotic", "power_badge": false, "display_name": "🅼🅰🆁🅲🅾🆃🅸🅲", "active_status": "inactive", "verifications": ["0x1261968987c5cfa710cdcddddfbeab264cbd4e47", "0x1261968987c5cfa710cdcddddfbeab264cbd4e47", "0xd711ec9030f600e2f8be4f2d0ca03aa9b8e6562c"], "follower_count": 603, "custody_address": "0x5860e2ebcd2f994d1614b6c785c8b38e3af370f2", "following_count": 819, "verified_addresses": {"eth_addresses": ["0x1261968987c5cfa710cdcddddfbeab264cbd4e47", "0x1261968987c5cfa710cdcddddfbeab264cbd4e47", "0xd711ec9030f600e2f8be4f2d0ca03aa9b8e6562c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mar-cotic/haters\"}"}', NULL), - (1048292, '0x5adf14e2201a280d5781a3083d4f20764f4083fe', 0, 1, '2024-05-07 14:18:53+00', 0, 1, '{"fid": 385793, "object": "user", "pfp_url": "https://i.imgur.com/7C3ht0J.gif", "profile": {"bio": {"text": "Japanese crypto trader & love airdrop😺SOLやSUIの魔界で遊んでます😺ご縁に感謝✨", "mentioned_profiles": []}}, "username": "sorashido", "power_badge": false, "display_name": "Sora", "active_status": "inactive", "verifications": ["0x9cab05482982875ef365c7030a294a16c9d01f8d"], "follower_count": 784, "custody_address": "0xe3a19e70184fde0fe4a5404f1454e92a236a4fc4", "following_count": 933, "verified_addresses": {"eth_addresses": ["0x9cab05482982875ef365c7030a294a16c9d01f8d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hyuraaa/enchanted-taylor-swift?si=e7824a7fe77348eab4d8fb77b1e62ec3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (998311, '0x6051acd1a48e26082aff7a3fbd2ef757ecfc7d59', 0, 1, '2024-05-07 11:49:36+00', 0, 9, '{"fid": 240835, "object": "user", "pfp_url": "https://i.imgur.com/EozZCWk.png", "profile": {"bio": {"text": "Knowledgeable broke anon", "mentioned_profiles": []}}, "username": "kenanie.eth", "power_badge": true, "display_name": "kenanie.eth", "active_status": "inactive", "verifications": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "follower_count": 2526, "custody_address": "0xc6dd7067493b6dd22f56f61fc72d8980bf883e1f", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "sol_addresses": ["C4Bg7Xa4nnY2Ty5j4j99nEwoP23YzK6SCDPTHVfHTkv7"]}}', '{"{\"url\":\"https://open.spotify.com/track/3NqCEpT8xsHdzpiRlM1kpS?si=6apLljY5S6iBH6Cj2FQ5DQ&context=spotify%3Aplaylist%3A37i9dQZF1EQqedj0y9Uwvu\"}"}', NULL), - (1052938, '0x42a91e9c5e9a1f27fca282f3993a2366ea2ff550', 0, 1, '2024-05-07 14:33:32+00', 0, 10, '{"fid": 500723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16999b47-1811-4ec5-f3be-ad7263ae6d00/rectcrop3", "profile": {"bio": {"text": "늦더라도 답장하니까 걱정마세요🫶\n\n즐거운 워캐해요‼️\n\n화끈하게 좋아요로 보답할게🫶", "mentioned_profiles": []}}, "username": "taehyeon", "power_badge": false, "display_name": "Unknown🎩", "active_status": "inactive", "verifications": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "follower_count": 1673, "custody_address": "0xd4ab4f0fb8d570c34d1b36598e842a299ea3b405", "following_count": 1356, "verified_addresses": {"eth_addresses": ["0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QoyKgWLEXh4sMs288\"}"}', 'sonata'), - (1160687, '0x53be8eab22e84d78b7cae64e831a8316e5f2a607', 0, 1, '2024-05-08 00:38:11+00', 0, 1, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0WbMK4wrZ1wFSty9F7FCgu?si=NP16sPtNQ7CRlKrmyQrJ0Q\"}"}', NULL), - (1004645, '0x97326d22452a9556b227f25f9d1588777b97d3eb', 0, 1, '2024-05-07 12:01:13+00', 0, 4, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 306, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/6xeB09UZ7cnexyMkYdGlMS?si=BoOTYDfvQt6-bSnwi1aIlw\"}"}', 'sonata'), - (1159474, '0xc7e5a9a2dfd35c5dce0b273b5b80a3bad5e248c2', 0, 1, '2024-05-08 11:30:08+00', 0, 1, '{"fid": 427292, "object": "user", "pfp_url": "https://i.imgur.com/44iwnFY.jpg", "profile": {"bio": {"text": "ぱん🐼です!フォロバします!よろしくお願いします!!\nhttps://x.com/pandaland_world?s=21&t=DWD4SI9hsxFilBKnnvz6-g", "mentioned_profiles": []}}, "username": "paaan", "power_badge": false, "display_name": "Paaan🔮🔥", "active_status": "inactive", "verifications": ["0xfcc612bb5f21f9229e25553fb0229624c918e745"], "follower_count": 57, "custody_address": "0x35cd75a49ce382fc58534d915902f26a4edcd1a8", "following_count": 106, "verified_addresses": {"eth_addresses": ["0xfcc612bb5f21f9229e25553fb0229624c918e745"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kpAdrAKYTK922qQu7\"}"}', 'musicjp'), - (1005906, '0x69ef01347e06d8fbb42aca58f857bb2c4bce5745', 0, 1, '2024-05-07 12:06:04+00', 0, 0, '{"fid": 368568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d33d091-bad3-4c30-19fd-971586cb4700/rectcrop3", "profile": {"bio": {"text": "bassist.project manager.\n日本向け自由チャンネル\n/japan-creative\n\ndrakula\nhttps://drakula.app/post/c58c3e36-5a5f-43b\n\nフリーランス\n基本情報技術者 oracle BLONZE \n2級管工事施工管理技士 \n英検5級()", "mentioned_profiles": []}}, "username": "pk0730", "power_badge": false, "display_name": "pk0730", "active_status": "inactive", "verifications": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "follower_count": 691, "custody_address": "0xb576a4a246bbe2851828c614c00cf781d0d908da", "following_count": 770, "verified_addresses": {"eth_addresses": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "sol_addresses": ["HYfLsMcbTtxQeaZ4QQMzvDFNWooVCfo3aXbdLwuDqou8"]}}', '{"{\"url\":\"https://soundcloud.com/pk0730/romancingsaga1-gb-wav?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1030667, '0x1f550e07443a37f742867797f3188c2e957157a8', 0, 1, '2024-05-07 13:19:17+00', 0, 1, '{"fid": 503190, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/00dd484a-4372-4bd1-2b64-5437a5b55000/rectcrop3", "profile": {"bio": {"text": "I am koala.", "mentioned_profiles": []}}, "username": "koala4424", "power_badge": false, "display_name": "Koala4424😎", "active_status": "inactive", "verifications": ["0x3ce0c57ee36cec0b4eeeb5eafbe9251c59a629df", "0xe5b05c76c30bdfd1d9f88d45668be8a7bde93976"], "follower_count": 915, "custody_address": "0xb0171f23b0b073a374f135ed74e587bed95502a4", "following_count": 593, "verified_addresses": {"eth_addresses": ["0x3ce0c57ee36cec0b4eeeb5eafbe9251c59a629df", "0xe5b05c76c30bdfd1d9f88d45668be8a7bde93976"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1004956, '0xce427ece75a89239fd4e8b3c8d30fc7ee04ce512', 0, 1, '2024-05-07 12:03:50+00', 0, 2, '{"fid": 499095, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmaCX1kjTn7Cm5XAMz4chnUfsEb9t3updvVZMtkKhL98py?filename=2.jpg", "profile": {"bio": {"text": "모쏠유부 조선 갓피바라\n내동생은 군필여고생\n/degen /degin-kr /dumbo /ddabong /ai-girl", "mentioned_profiles": []}}, "username": "kimsatgat", "power_badge": false, "display_name": "GatP_bara", "active_status": "inactive", "verifications": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "follower_count": 1017, "custody_address": "0xd0e6cb9592997a46901198062f2c10e149a83eba", "following_count": 1144, "verified_addresses": {"eth_addresses": ["0x8a87c151436f52e3be7aa293aeec449f3097bb2c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cucu-love/gcdp2nxsi5bw?si=345a136cba0c4b9fa9f1beb493d42112&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1052023, '0xa4b990c815da2aed755e3c2949e816e169d99eab', 0, 1, '2024-05-07 14:31:12+00', 0, 3, '{"fid": 384997, "object": "user", "pfp_url": "https://i.imgur.com/7HGDaOg.jpg", "profile": {"bio": {"text": "Some kind of thing wandering on Web3\nJAPAESE", "mentioned_profiles": []}}, "username": "rosso2222", "power_badge": false, "display_name": "ROSSO🍕🎩🍖🔮🧀", "active_status": "inactive", "verifications": ["0xbeea50d91a3e0bf7ed39a4178af78bbaee578a59"], "follower_count": 382, "custody_address": "0x02e9b663cc9bbdee04510651f4a1a217b74ae00b", "following_count": 488, "verified_addresses": {"eth_addresses": ["0xbeea50d91a3e0bf7ed39a4178af78bbaee578a59"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qqusfrVebdR3iKqG6\"}"}', 'musicjp'), - (1046746, '0xb171865807a93a1121064bfb09bc72158d96117b', 0, 1, '2024-05-07 14:07:30+00', 0, 5, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2507, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2374, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/amhm8H7g2REsQUE37\"}"}', 'sonata'), - (1047158, '0x97766efe7ebaf85fe8fa4971ea22c99f90d523f8', 0, 1, '2024-05-07 14:14:43+00', 0, 1, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 711, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 863, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NXYCX1WoZDNm3vRY9\"}"}', 'kani'), - (1006865, '0xa325878190c7f064ed207c530019b0cd2024d38b', 0, 1, '2024-05-07 12:08:20+00', 0, 0, '{"fid": 368568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d33d091-bad3-4c30-19fd-971586cb4700/rectcrop3", "profile": {"bio": {"text": "bassist.project manager.\n日本向け自由チャンネル\n/japan-creative\n\ndrakula\nhttps://drakula.app/post/c58c3e36-5a5f-43b\n\nフリーランス\n基本情報技術者 oracle BLONZE \n2級管工事施工管理技士 \n英検5級()", "mentioned_profiles": []}}, "username": "pk0730", "power_badge": false, "display_name": "pk0730", "active_status": "inactive", "verifications": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "follower_count": 691, "custody_address": "0xb576a4a246bbe2851828c614c00cf781d0d908da", "following_count": 770, "verified_addresses": {"eth_addresses": ["0xe431119b2248c43f48b09e93e931b90d7fb2eed0"], "sol_addresses": ["HYfLsMcbTtxQeaZ4QQMzvDFNWooVCfo3aXbdLwuDqou8"]}}', '{"{\"url\":\"https://on.soundcloud.com/x3pqq1ZYudi5vxny8\"}"}', NULL), - (1173681, '0x4a4454ef62a3a5f290a7bdc0bae05f349103ca7c', 1000, 1, '2024-05-16 07:34:51+00', 0, 0, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🇯🇵💿", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1160, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1007, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6DpmOMgF9xVGjmMS5HOTCT?si=bbba8af672204912\"}"}', 'japanese-music'), - (1099842, '0xe05196fd895808c597a83ae5e4d44ba46dbaba5a', 0, 1, '2024-05-07 16:09:21+00', 0, 2, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1712, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1307, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/YKZ6EW8wiMjdyyqb6\"}"}', 'sonata'), - (1160678, '0x4729da7c774cd52acf4308cf86efd99e549ccc8a', 0, 1, '2024-05-08 00:28:54+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Y7vNzQrybb2ICYKmbOfdt?si=REj8uAJSQxebIyXhgL3osA\"}"}', NULL), - (1004951, '0x4c7174ec3cf64f575e56355d8416129133a63c25', 10, 1, '2024-05-07 12:04:20+00', 60, 6, '{"fid": 448755, "object": "user", "pfp_url": "https://i.imgur.com/JSIDuOV.jpg", "profile": {"bio": {"text": "I Love Football \n Be strong and fight for your goals 👊🏼", "mentioned_profiles": []}}, "username": "mehrdad10", "power_badge": false, "display_name": "Mehrdad 🎩", "active_status": "inactive", "verifications": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "follower_count": 1417, "custody_address": "0xb0b262bb2dced2178dd6ea9d677116b783d527af", "following_count": 1480, "verified_addresses": {"eth_addresses": ["0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/59YxJrhJ4eryUAHv9\"}"}', NULL), - (1058487, '0xf64620825e00fb0eb08f3ec91ea3537a2e36355c', 0, 1, '2024-05-07 14:49:23+00', 0, 5, '{"fid": 406461, "object": "user", "pfp_url": "https://i.imgur.com/iBWFHwq.jpg", "profile": {"bio": {"text": "Degen & Ham & Sonata 🚀\n\n🇰🇷\n\n", "mentioned_profiles": []}}, "username": "btcusdt", "power_badge": false, "display_name": "Dante", "active_status": "inactive", "verifications": ["0x2c7fd0347707222eff8cb633ebc1e18ac8768f9a"], "follower_count": 4263, "custody_address": "0x727ccf7fed1900f8952a721b9dfb1ae8f2d146db", "following_count": 4420, "verified_addresses": {"eth_addresses": ["0x2c7fd0347707222eff8cb633ebc1e18ac8768f9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zp3G6NNJNqLSaiGS8\"}"}', 'sonata'), - (1145798, '0x830957f1d9a23fd14f9c38a2040800fe96e140fe', 0, 1, '2024-05-07 20:10:17+00', 0, 5, '{"fid": 350911, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b612cc31-9e8d-4451-90fa-b0a062a38200/original", "profile": {"bio": {"text": "we are us\n/compusophy\n@compusophy-bot\ndeca.art/compusophy", "mentioned_profiles": []}}, "username": "compusophy", "power_badge": true, "display_name": "compusophy ", "active_status": "inactive", "verifications": ["0x1964923a14701b45f2e36ff39fb19f40749eb011"], "follower_count": 6440, "custody_address": "0x2fdef3f470ecd2bc9a977568c43ad3860c1611d8", "following_count": 1810, "verified_addresses": {"eth_addresses": ["0x1964923a14701b45f2e36ff39fb19f40749eb011"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1OAb3BhCFLohozKSJ2I34R?si=1218a54c1d204924\"}"}', NULL), - (1046743, '0xa9808ffd011c7de80de26c731404de2a192b1278', 0, 1, '2024-05-07 14:09:00+00', 0, 6, '{"fid": 276109, "object": "user", "pfp_url": "https://i.imgur.com/tyIEtsV.jpg", "profile": {"bio": {"text": "lens based light bender | hosting /lightlounge 🔦✨\nlinktr.ee/gabriellamorton", "mentioned_profiles": []}}, "username": "gabriellamorton", "power_badge": true, "display_name": "ella", "active_status": "inactive", "verifications": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "follower_count": 492, "custody_address": "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57", "following_count": 385, "verified_addresses": {"eth_addresses": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6DYLWAdxEJvwWmT7EkeDkX?si=v3e57BQoS7qiE-YuADpd2Q\"}"}', 'sonata'), - (1008360, '0x87eae5b86067488529a31b487e6fc1317e2a3ac0', 0, 1, '2024-05-07 12:09:16+00', 0, 5, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1388, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3jNwPOqdPvQIr5dRT0hzgY?si=dI1gOH5CQQyd8wQrVneFug&context=spotify%3Aplaylist%3A37i9dQZF1EIYJTqHAuLOwV\"}"}', 'chatcast'), - (957074, '0x0899558e23e7b3088d40f703fb159ba1168a530e', 5110, 1, '2024-05-07 09:07:36+00', 5000, 4, '{"fid": 212556, "object": "user", "pfp_url": "https://i.imgur.com/zh3DOft.jpg", "profile": {"bio": {"text": "Collector 🩸 | Degentlemen #8682", "mentioned_profiles": []}}, "username": "nhagio.eth", "power_badge": true, "display_name": "Windy|₿Ξ∞🎩📚🔥", "active_status": "inactive", "verifications": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "follower_count": 1694, "custody_address": "0x8cf6d2b8af28549a2625a6a52bd012f8f2e95b23", "following_count": 549, "verified_addresses": {"eth_addresses": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "sol_addresses": ["8esC41Pwnxtopjh8QdkaY89J8Dh17T3No653fNgAqtwv"]}}', '{"{\"url\":\"https://www.sound.xyz/rohki/ultraviolet\"}"}', NULL), - (1030674, '0x03d7718dcbe1e5b6f8965bb2fc4eeaf4fcba1e40', 0, 1, '2024-05-07 13:20:31+00', 0, 3, '{"fid": 419947, "object": "user", "pfp_url": "https://i.imgur.com/CTIvf5a.jpg", "profile": {"bio": {"text": "Japan\nI''ll follow back!!みなさん宜しくです!", "mentioned_profiles": []}}, "username": "tsumonomi", "power_badge": false, "display_name": "tsumonomi.degen", "active_status": "inactive", "verifications": ["0x2d58788dbc9518c5926e9854e0f02cb433aecd00"], "follower_count": 1139, "custody_address": "0xb932c099c58ec2452211b8fda5fbc0614531c2a6", "following_count": 1324, "verified_addresses": {"eth_addresses": ["0x2d58788dbc9518c5926e9854e0f02cb433aecd00"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imsangryuh/mbtti?in=buzzing-playlists/sets/buzzing-pop&si=18c80b1ad3d64b168826432883c23ce7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1039676, '0x152a459bcb61c5c4be34011a3eb9298754d5f066', 0, 1, '2024-05-07 13:46:02+00', 0, 13, '{"fid": 406952, "object": "user", "pfp_url": "https://i.imgur.com/CyxbNGv.jpg", "profile": {"bio": {"text": "경제적 자유 / F4F / 언제든지 달려갑니다 🔥", "mentioned_profiles": []}}, "username": "kkasa34", "power_badge": false, "display_name": "허밍버드", "active_status": "inactive", "verifications": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "follower_count": 2528, "custody_address": "0x8017df1d22d340fed25a6b13e9d6da7c05dca91b", "following_count": 2219, "verified_addresses": {"eth_addresses": ["0x281756ff1ad5bb1109ea472e5eb282395677fffd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/geum-howon/s64dc2akb2gm?si=9e63194601694acc94104ead1ba1a64e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1051550, '0xc4978c41a5212499890a021df902f733adcd8bb3', 0, 1, '2024-05-07 14:27:17+00', 0, 7, '{"fid": 401805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baf0f02d-0a81-476e-78af-98c7aaa38000/original", "profile": {"bio": {"text": "Lovely 🤩\n대한민국 국민 🇰🇷 \n\n볼수록 매력있고 꽤 괜찮은사람.\n\n경제적으로 완전한 자유를 누리는 자.\n\n", "mentioned_profiles": []}}, "username": "peaceful-hj", "power_badge": false, "display_name": "Peaceful-hj", "active_status": "inactive", "verifications": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "follower_count": 1824, "custody_address": "0xe6520f1c42419d3526a8a812fe3850aaae6208ef", "following_count": 3268, "verified_addresses": {"eth_addresses": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7kVGy\"}"}', 'sonata'), - (1134955, '0xf00983c03f149e7bd4d2a8d62450daba9b26982f', 0, 1, '2024-05-07 18:57:27+00', 0, 3, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 160, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 218, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-de/sets/indie?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1046731, '0x88bab2afaed535f1695fb91097aaa9484014d78f', 0, 1, '2024-05-07 14:06:31+00', 0, 3, '{"fid": 427575, "object": "user", "pfp_url": "https://i.imgur.com/ximsQj7.jpg", "profile": {"bio": {"text": "Hello!", "mentioned_profiles": []}}, "username": "aixxx", "power_badge": false, "display_name": "Ai", "active_status": "inactive", "verifications": ["0x1fdfbbe7bbb821d01251d484aa86cb799259cb1d"], "follower_count": 248, "custody_address": "0x0a664e786c6dd349d2dd7c97a32ae9a61b515aeb", "following_count": 340, "verified_addresses": {"eth_addresses": ["0x1fdfbbe7bbb821d01251d484aa86cb799259cb1d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5jQcJ2st6yHWhUBjoDoZPH?si=Wd4wbG7bQS61ORQS2xxYBw\"}"}', 'musicjp'), - (1008697, '0x94a94e1307e15fcac149f504d9520f24abaaf5a0', 0, 1, '2024-05-07 12:15:06+00', 0, 0, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 980, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7pYiTMBG8sgPJvXZZ476i1?si=Eh-9DiXQTDy3R9Xv6CgQ2g\"}"}', NULL), - (1173529, '0x50f50209b012ff53f3a57e7e3574c58c3bca43ed', 1000, 1, '2024-05-16 05:27:02+00', 0, 4, '{"fid": 347050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e474ba4a-29e5-4238-2e48-940936ddb900/rectcrop3", "profile": {"bio": {"text": "artist. cat. jazz fiend •\n\nhosting /whoa\n•\n\nhttps://linktr.ee/TruptyS", "mentioned_profiles": []}}, "username": "trupty", "power_badge": true, "display_name": "Trupty Somaiah 🎩🦉", "active_status": "inactive", "verifications": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "follower_count": 2405, "custody_address": "0x64116e340ae712b58060820f2f328023ddbedf0a", "following_count": 418, "verified_addresses": {"eth_addresses": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0tNDiq8LzjMNeSyqpv3RyK?si=kf_HXoqRQQOtFM-0pcotBg&context=spotify%3Aplaylist%3A3QlOrvZsR8XH5qi9k8Hd3N\"}"}', 'jazz'), - (1030664, '0xc4e8e7fc01af537d7ec1454472aacc416ae40add', 0, 1, '2024-05-07 13:19:42+00', 0, 1, '{"fid": 497182, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1bf927b0-22b4-4da5-9b96-62d11d9d1800/rectcrop3", "profile": {"bio": {"text": "Architect and Designer", "mentioned_profiles": []}}, "username": "inz", "power_badge": false, "display_name": "Inaz", "active_status": "inactive", "verifications": ["0x5002fbcc63dbd15809c75bd0f909f79149a32307"], "follower_count": 165, "custody_address": "0x57835af3463503cc339f2073620bcc53bf894d1c", "following_count": 307, "verified_addresses": {"eth_addresses": ["0x5002fbcc63dbd15809c75bd0f909f79149a32307"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Stranger by Mild Orange on #SoundCloud https://soundcloud.com/mildorange/stranger?ref=clipboard&p=a&c=0&si=af77c7956fa740148b99628a683e8870&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1008692, '0x3cc7ceffd7bab040e1bb88f7b85ca1651fd363d5', 0, 1, '2024-05-07 12:12:03+00', 0, 5, '{"fid": 343808, "object": "user", "pfp_url": "https://i.imgur.com/GqdMgS0.jpg", "profile": {"bio": {"text": "HENTAI愛妻投資家 OG TOCD holder", "mentioned_profiles": []}}, "username": "karaagemetal", "power_badge": false, "display_name": "波動術士からあげ🎩📈", "active_status": "inactive", "verifications": ["0x95cb62d2c2da19612c3a287637a33bed083b3743"], "follower_count": 889, "custody_address": "0xdf090da840769529255e7012e98d364774b634ca", "following_count": 552, "verified_addresses": {"eth_addresses": ["0x95cb62d2c2da19612c3a287637a33bed083b3743"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Y1ENA5epKrBFxBxa9\"}"}', 'musicjp'), - (1039589, '0x056360968032bf90bb0dc56339fd2d2a3ba58856', 0, 1, '2024-05-07 13:42:51+00', 0, 1, '{"fid": 501778, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d9e056c-8e4c-4088-7bc6-7364799f1a00/rectcrop3", "profile": {"bio": {"text": "where you are you are\nnice meet you friends", "mentioned_profiles": []}}, "username": "pinetree0", "power_badge": false, "display_name": "pinetree0", "active_status": "inactive", "verifications": ["0x44e503cdab23b97981231e03eccdeb3f15b00905"], "follower_count": 672, "custody_address": "0x262bf67a37ceabc3c57ba068320e7adfca86e543", "following_count": 920, "verified_addresses": {"eth_addresses": ["0x44e503cdab23b97981231e03eccdeb3f15b00905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yongsik-kim-129815277/iu-shh-feat-hyein?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1008694, '0x5f61a01998ea95ffd5c511f49f8225f517063663', 0, 1, '2024-05-07 12:12:38+00', 0, 2, '{"fid": 473996, "object": "user", "pfp_url": "https://i.imgur.com/fNZgWUc.jpg", "profile": {"bio": {"text": "야식 가즈아~!!\n$ DEGEN / 조대리! 팔로우 해주시면 찾아가 3종 은혜 보답합니다! \nFollow me, A Degener always pays his debts", "mentioned_profiles": []}}, "username": "im-hayden", "power_badge": false, "display_name": "Go DEGEN", "active_status": "inactive", "verifications": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "follower_count": 1069, "custody_address": "0xe7887f54262b587dd1f1ee1ac5130b1a7da87682", "following_count": 1143, "verified_addresses": {"eth_addresses": ["0xee6e7a53209400c6c0046c000f36640fb1cfc99a", "0xee6e7a53209400c6c0046c000f36640fb1cfc99a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iZPvPoA47fvQWeAb8\"}"}', 'sonata'), - (1008578, '0xe9b811372803f7904ad18878e25d86d396711aba', 0, 1, '2024-05-07 12:13:41+00', 0, 0, '{"fid": 289911, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0bf9ffe-c91d-413a-4dca-e7c726796000/original", "profile": {"bio": {"text": "\n", "mentioned_profiles": []}}, "username": "savoir", "power_badge": false, "display_name": "Younghyun🎩🍖🩸🔮🔵", "active_status": "inactive", "verifications": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "follower_count": 1231, "custody_address": "0x64fb1e0672d9e28747b34ecfb02be694319b7963", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7CEp2jyohd05jqAiWafcOK?si=154067b48a9f4033\"}"}', NULL), - (1045423, '0xe4b497c855ed1718e0ee2e67ebc7016ae61abe70', 0, 1, '2024-05-07 14:06:26+00', 0, 1, '{"fid": 276109, "object": "user", "pfp_url": "https://i.imgur.com/tyIEtsV.jpg", "profile": {"bio": {"text": "lens based light bender | hosting /lightlounge 🔦✨\nlinktr.ee/gabriellamorton", "mentioned_profiles": []}}, "username": "gabriellamorton", "power_badge": true, "display_name": "ella", "active_status": "inactive", "verifications": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "follower_count": 492, "custody_address": "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57", "following_count": 385, "verified_addresses": {"eth_addresses": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6DYLWAdxEJvwWmT7EkeDkX?si=v3e57BQoS7qiE-YuADpd2Q\"}"}', NULL), - (1030668, '0x946904fffdb762d4064e21d4322c5d846fd7d3f1', 0, 1, '2024-05-07 13:18:53+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1142, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1527, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ereny_youssef/pink-floyd-another-brick-in-the-wall-hq?si=731cd352433749e3a7704a53c1eb398a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173528, '0xfceba99882859e9a1bc20a8b8b779f8cee6902cd', 1000, 1, '2024-05-16 05:03:49+00', 0, 1, '{"fid": 7341, "object": "user", "pfp_url": "https://i.imgur.com/xNP79wl.jpg", "profile": {"bio": {"text": "Building /wethemmedia, a community driven media org centering BIPOC storytellers.", "mentioned_profiles": []}}, "username": "maceo", "power_badge": true, "display_name": "Maceo ✈️🛸🎩", "active_status": "inactive", "verifications": ["0xf143db60a0b1cbb8076b786eb6635b93f18db744"], "follower_count": 1086, "custody_address": "0xaed2b902ea3de0f61b27eeb7fe83a983279b8573", "following_count": 2548, "verified_addresses": {"eth_addresses": ["0xf143db60a0b1cbb8076b786eb6635b93f18db744"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3ed4959b-8a1c-4f11-55bb-6956a184a700/original\"}","{\"url\":\"https://open.spotify.com/track/24lqVtYdnA1NhYd37XFOPb?si=h7HakDWGR16Dl0qSOeeSpg&context=spotify%3Aplaylist%3A0dCkwuzIAVAHuB6YsEgNVN\"}"}', 'mentalhealth'), - (1050025, '0x4a783392dcc50d052a4d6938c52629ddf5fddf44', 0, 1, '2024-05-07 14:23:22+00', 0, 0, '{"fid": 477435, "object": "user", "pfp_url": "https://i.imgur.com/f20NliV.jpg", "profile": {"bio": {"text": "Hi warpcast!", "mentioned_profiles": []}}, "username": "han-byeol", "power_badge": false, "display_name": "Han-byeol", "active_status": "inactive", "verifications": ["0xd644646307c0fcaaec41c642ac6b3cd642a4289f"], "follower_count": 2272, "custody_address": "0xe6d5dbae4faf22ad0c35db7174b902ad5d32e355", "following_count": 1871, "verified_addresses": {"eth_addresses": ["0xd644646307c0fcaaec41c642ac6b3cd642a4289f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kjX8vwASgnMKktQBA\"}"}', NULL), - (1008355, '0x6eaf56bf562e2a35e7fff55b122dbaf86463989a', 0, 1, '2024-05-07 12:13:07+00', 0, 0, '{"fid": 459252, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmbPVzQRUDbcyETMCvt4vt6QN3GZwnRGoEKyTyHTzyJ85p?filename=..-5-12-screenshot.png", "profile": {"bio": {"text": "My Life is Gold", "mentioned_profiles": []}}, "username": "nomong", "power_badge": false, "display_name": "Nomong2", "active_status": "inactive", "verifications": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "follower_count": 1380, "custody_address": "0xc50f4e6e0cd1d5076d64e68662e9798f9fbab778", "following_count": 1856, "verified_addresses": {"eth_addresses": ["0x9cb29d9547a70f71a61295a334200a8f4026dce5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tinaguo/tina-guo-elgar-cello-concerto?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1046740, '0x98421edca2438630ad51442a6840e73d2413cf84', 0, 1, '2024-05-07 14:06:26+00', 0, 1, '{"fid": 503182, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6db25222-91fa-48ee-d986-f690f4195e00/original", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "bim", "power_badge": false, "display_name": "Comi🔵🍖", "active_status": "inactive", "verifications": ["0xf63c9c8f8de7a2ad1f6efe0d572ac6ae5e485ba6"], "follower_count": 374, "custody_address": "0x875776a2eb736092d215666f6e2eb921a4d3d8f6", "following_count": 346, "verified_addresses": {"eth_addresses": ["0xf63c9c8f8de7a2ad1f6efe0d572ac6ae5e485ba6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share80/yerin-baek-merry-and-the-witchs-flower?si=902d2495ebc649ffb82c0de5ef8c1d90&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1052912, '0x0c5058c58d74215eff07db0cad6c1cd89558807e', 0, 1, '2024-05-07 14:33:12+00', 0, 1, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 이것저것 열심히 다 합니다. 잘 부탁드립니다.", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1490, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2581, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jrudismkoqn2/feat?si=00edf3f2d0e246ed9fd0254c2088da4c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1046734, '0x3d5e0fa645da5fdaf146b8b6382acfbd8b8bedf6', 0, 1, '2024-05-07 14:06:27+00', 0, 1, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 228, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 193, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7AsFFiQEozWPh4BiHTTwkN?si=s5LBSYjMQGiHie4NzP5u1g&context=spotify%3Aalbum%3A39NgGFDPIL6J6krPq8Nvm5\"}"}', 'albumoftheday'), - (3235, '0xf1222e3a1103e8d01b57ce837d468dda51dcca87', 1000, 1, '2024-04-30 00:47:55+00', 0, 11, '{"fid": 301144, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/cluwe1frh0035m42f95rtxe30.png", "profile": {"bio": {"text": "Casual retail trader and sports enthusiast. ProCrypto HR Professional. Request BTC ETFs for your retirement plans.\n\nhttps://www.alfafrens.com/channel/0x4D9e0272", "mentioned_profiles": []}}, "username": "itslemon.eth", "power_badge": true, "display_name": "itslemon.eth🔵🎩🧾🥷", "active_status": "inactive", "verifications": ["0xbdf82513b977e1bd329d20dac10dbd1a9d86fd4c"], "follower_count": 1168, "custody_address": "0xf9bb8de0facb9c6a5a62b0b8f2885ea33dd209cb", "following_count": 645, "verified_addresses": {"eth_addresses": ["0xbdf82513b977e1bd329d20dac10dbd1a9d86fd4c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4EchqUKQ3qAQuRNKmeIpnf?si=KboiQOWURWOC3ImEqjn7xg\"}"}', NULL), - (1008925, '0xa1f1312bdd61732451e4d1b9f74baa58d7e25197', 0, 1, '2024-05-07 12:16:25+00', 0, 1, '{"fid": 387117, "object": "user", "pfp_url": "https://i.imgur.com/6NtMrL7.jpg", "profile": {"bio": {"text": "🔰初心者🔰\n\nプロフィール画は、愛犬チワプーのmickeyです。\n♡専業主婦♡\n愛犬のことだったり、料理だったり投稿しますのでよろしくお願いします", "mentioned_profiles": []}}, "username": "rinkun", "power_badge": false, "display_name": "mickey", "active_status": "inactive", "verifications": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "follower_count": 538, "custody_address": "0x095a2750cae8910bf45d102a3e9d51a1821c92e4", "following_count": 404, "verified_addresses": {"eth_addresses": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/t-trang-801042212/t-ara-sexy-love?utm_source=mobi&utm_campaign=social_sharing\"}"}', NULL), - (1008920, '0xde96ee9b563c4672e11cbfe46fcd97100f143c28', 0, 1, '2024-05-07 12:18:03+00', 0, 0, '{"fid": 402923, "object": "user", "pfp_url": "https://i.imgur.com/gaAPtfu.jpg", "profile": {"bio": {"text": "My Channel→\n/restarea\nSweets&Snacks\n\n/pachinko\nパチンコ&スロット\n\n/fishingood\nfishing釣り\n\n/fishigood\n懺悔-Confession Channel\nお返しは大丈夫です🙆‍♂️\nいいキャストにチップkudasai😊", "mentioned_profiles": []}}, "username": "siokaratombo", "power_badge": false, "display_name": "siokaratombo🍖🔮", "active_status": "inactive", "verifications": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "follower_count": 967, "custody_address": "0x14b19445dd6fb33daa1b55bd98773717d20834d2", "following_count": 1124, "verified_addresses": {"eth_addresses": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/t-o-m-13/hikaru-utada-somewhere-near-marseilles-tom-remix?si=4c5b28a3b4e44874981227cf88230c2c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1058825, '0xbfd69b5b658e067df004540a0bf065046bebd0a4', 0, 1, '2024-05-07 14:50:21+00', 0, 0, '{"fid": 503341, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb661c71-9594-4acf-6138-2c6990d0a100/rectcrop3", "profile": {"bio": {"text": "I am who I am💜💙🩵💚💛🧡❤️Be my friend🧸", "mentioned_profiles": []}}, "username": "serena7", "power_badge": false, "display_name": "Serena🧸", "active_status": "inactive", "verifications": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "follower_count": 738, "custody_address": "0xeb059917c0591bcc36a82fc3d2b289c60dd60735", "following_count": 1081, "verified_addresses": {"eth_addresses": ["0x3311f49937237e24afee88c744b40391d680bd8c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hellohonne/honne-good-together?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1054673, '0x75edef80a492d98b027f26cbd84eef74ca713ed5', 0, 1, '2024-05-07 14:38:07+00', 0, 8, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3179, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2694, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki17/leellamarz-feat-ash-island-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1030673, '0x241fa6b2317a7e5c048cad28d104c6bc21a5dc84', 0, 1, '2024-05-07 13:18:26+00', 0, 1, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1131, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1855, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4YQGPR4KGFMnSS8lUQPdbs?si=f53cb132dca94b8e\"}"}', 'sonata'), - (1160670, '0x36fd3b5ac34b0a02daafa244d8445b1f0816ad65', 0, 1, '2024-05-08 00:23:14+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=PcxLIFXNQwKmxu-CS0jaCQ\"}"}', NULL), - (1009137, '0x48f7fd7ecb312b837d3f030c5b3aa97b1cec2418', 0, 1, '2024-05-07 12:20:04+00', 0, 9, '{"fid": 417059, "object": "user", "pfp_url": "https://i.imgur.com/Bs403P4.jpg", "profile": {"bio": {"text": "GM! GA! GE!\nEverything''s gonna be fine.\nHave a nice day.\nMuhandojeon!! \nInfinite Challenge", "mentioned_profiles": []}}, "username": "lets-gotothemoon", "power_badge": false, "display_name": "무한상사정대리", "active_status": "inactive", "verifications": ["0x57301eb05d2aec733c239fd21d79764682e30b2c"], "follower_count": 3384, "custody_address": "0x0743aa74e9cc43f970dd0ae12b7865e65b2bed72", "following_count": 3135, "verified_addresses": {"eth_addresses": ["0x57301eb05d2aec733c239fd21d79764682e30b2c"], "sol_addresses": ["3Tqco7xa91tjdgS6vR5Xfi2ukEikixProi8PtNLqq4cv"]}}', '{"{\"url\":\"https://on.soundcloud.com/RrkhhbT37ZPDFZ2u5\"}"}', 'sonata'), - (1009136, '0x08805fe2f0a42f6bb8887dd781afa6094bccce8f', 0, 1, '2024-05-07 12:20:34+00', 0, 3, '{"fid": 508532, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca23b761-ae6e-4788-41ea-e0a9c631ce00/original", "profile": {"bio": {"text": "방가워 2회차야", "mentioned_profiles": []}}, "username": "!508532", "power_badge": false, "display_name": "Enjoy it.!!", "active_status": "inactive", "verifications": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "follower_count": 855, "custody_address": "0xca0ddc3ec6d019dbc341cbb50e0a30de76337412", "following_count": 956, "verified_addresses": {"eth_addresses": ["0xa69aee60049f1a83840f48e8e8fd8e760ef31e20"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost23/gummy-your-day-dr-romantic-2-ost-part-2\"}"}', 'sonata'), - (1008926, '0x7d989ebb13f33d5aeff647b537e9d09b95fe437c', 0, 1, '2024-05-07 12:15:50+00', 0, 2, '{"fid": 344273, "object": "user", "pfp_url": "https://arweave.net/Sy2wDOreaO-gH2Rz4JtykdIW9CTvPJXR8JHwp1kvrnU/", "profile": {"bio": {"text": "404 err", "mentioned_profiles": []}}, "username": "mjmehdi1", "power_badge": false, "display_name": "Mehdi🔵🎩🔮 🔄", "active_status": "inactive", "verifications": ["0x2c119702a8fbdc94398bffbb319ef11b53fbb49a"], "follower_count": 1448, "custody_address": "0x06b88e681e44af998fb481db82eacddf5a288ab7", "following_count": 2028, "verified_addresses": {"eth_addresses": ["0x2c119702a8fbdc94398bffbb319ef11b53fbb49a"], "sol_addresses": ["FCU7x5t5WeNaWvif18YsTj6fzo72sbRFzDqYZ3DXzbNK"]}}', '{"{\"url\":\"https://on.soundcloud.com/g3yMyESTXAzMpMHQ8\"}"}', 'sonata'), - (1008698, '0xbce108d251ca472297e14a66f6b2de524996f8d0', 0, 1, '2024-05-07 12:12:34+00', 0, 8, '{"fid": 291515, "object": "user", "pfp_url": "https://i.imgur.com/nbDsF4D.jpg", "profile": {"bio": {"text": "I love Warpcast, \n\n다양한 소통해요\n\n답방은 필수로갑니다! \n\n", "mentioned_profiles": []}}, "username": "woongs85", "power_badge": false, "display_name": "monster777", "active_status": "inactive", "verifications": ["0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "follower_count": 2170, "custody_address": "0x4a80b96b4426a799dff5f235297ed8cd1a0d7a84", "following_count": 2506, "verified_addresses": {"eth_addresses": ["0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39", "0xa9b21fddd49a510b85efb15bacd1db63f381ae39"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zJRphXNmsUmfJ6h66\"}"}', 'sonata'), - (1031611, '0x5e8a90df5be8b0c850de287075fb9f4ff9952b0c', 0, 1, '2024-05-07 13:23:05+00', 0, 2, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1476, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pDxxz5LfLxuJRLcq6\"}"}', NULL), - (1083392, '0x23cb1d08ec885f439075f1b009442cd55c704072', 0, 1, '2024-05-07 15:38:11+00', 0, 4, '{"fid": 489791, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9c1cb88b-d434-4693-f226-29fe8aafa400/rectcrop3", "profile": {"bio": {"text": "슈캐, 맞팔 100%, 초보지만 열심히 할게요. 같이 부쟈됩시다.😁", "mentioned_profiles": []}}, "username": "dudal", "power_badge": false, "display_name": "루피랑노래해요", "active_status": "inactive", "verifications": ["0x1d9c5484d1cc1e02f646d1fa4c6821bea55b0c35"], "follower_count": 1574, "custody_address": "0x9d99a01e34cb25187ba0e1f351cfe1a51aac4590", "following_count": 2173, "verified_addresses": {"eth_addresses": ["0x1d9c5484d1cc1e02f646d1fa4c6821bea55b0c35"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/emR45\"}"}', 'sonata'), - (1031645, '0xf9ffb35cda7d29d13d4bf8fd41f1580165c4a169', 0, 1, '2024-05-07 13:22:28+00', 0, 4, '{"fid": 443043, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c233b59c-4e13-4f9b-e313-67160134aa00/rectcrop3", "profile": {"bio": {"text": "🌈I love my bunny baby♡ https://www.alfafrens.com/channel/0x0B57343EA6a1d8a81938808e2d8954996f058885", "mentioned_profiles": []}}, "username": "tigress", "power_badge": false, "display_name": "돌돌🌈", "active_status": "inactive", "verifications": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "follower_count": 2932, "custody_address": "0x89dc9a1b9eb96e6ef13139ea3f1151542f18225e", "following_count": 2368, "verified_addresses": {"eth_addresses": ["0xf553e9423a52b2f3f9b897b420af9b5002276bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gtak9\"}"}', 'sonata'), - (1058827, '0x19411acab861efccc1e3bee4e105e6520bd7a4ea', 0, 1, '2024-05-07 14:50:03+00', 0, 3, '{"fid": 416040, "object": "user", "pfp_url": "https://i.imgur.com/p58RLhH.jpg", "profile": {"bio": {"text": "🩷🩷🤭🩷🩷 \nhi", "mentioned_profiles": []}}, "username": "queenns", "power_badge": false, "display_name": "정리봇🎩🍖", "active_status": "inactive", "verifications": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "follower_count": 1431, "custody_address": "0x7842c6f26f37039bfa855a9f234e5c48a7ffe944", "following_count": 965, "verified_addresses": {"eth_addresses": ["0x815f5835f5f296c3961156fc9e234e7b816f853c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0cean_addict/9oe7iersbi6w?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1046761, '0x81e84ad9b0f92e03830f17c2799ae91e2cf4e95c', 0, 1, '2024-05-07 14:07:10+00', 0, 2, '{"fid": 503328, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d59e830e-0465-490d-c526-b964d43c5900/rectcrop3", "profile": {"bio": {"text": "Dr.kk 3배 폭격맨 💣🫡🔥무조건 갑니다\nDr.k", "mentioned_profiles": []}}, "username": "hh7035881", "power_badge": false, "display_name": "Dr.kk", "active_status": "inactive", "verifications": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "follower_count": 1373, "custody_address": "0x2cc415f9dfa832bd167eb5d5d1c42e144d868c40", "following_count": 1422, "verified_addresses": {"eth_addresses": ["0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/HLyDepEChA73MeX36\"}"}', 'sonata'), - (1009286, '0x111fa20bda3a79c8ac44a86422e2ad1e800536b8', 0, 1, '2024-05-07 12:20:52+00', 0, 1, '{"fid": 413433, "object": "user", "pfp_url": "https://i.imgur.com/FlYIam2.jpg", "profile": {"bio": {"text": "Degen🎩\nMusic🎧\nLife😁\nFood🍔🍗🥘🌮", "mentioned_profiles": []}}, "username": "rormaos0", "power_badge": false, "display_name": "Hellen😚", "active_status": "inactive", "verifications": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "follower_count": 1778, "custody_address": "0x955f05f3caf83de1d5a40823b473b58bdc13f666", "following_count": 2217, "verified_addresses": {"eth_addresses": ["0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ag5341DTGr7NY3Pt5\"}"}', 'sonata'), - (1029880, '0x370a02b8b5bd9f27763001567d41f41e468349e7', 0, 1, '2024-05-07 13:15:59+00', 0, 1, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 709, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 863, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7x7Q7WiUKgv8aQyr6\"}"}', 'hiphop'), - (1050019, '0x523bdcc05e119e8941a24cb96466cc52c4d99e2b', 0, 1, '2024-05-07 14:23:26+00', 0, 3, '{"fid": 428262, "object": "user", "pfp_url": "https://i.imgur.com/fsMvnig.jpg", "profile": {"bio": {"text": "\n\n\nLove 🩷♥️❤️\n\nTravel \n\n\nFood \n\n⛳️⛵️🏝📘", "mentioned_profiles": []}}, "username": "boha0106", "power_badge": false, "display_name": "Boha 🩷 🎩🍖", "active_status": "inactive", "verifications": ["0x161796d461324f30db0d0302ae77f5c5fc72dca3", "0x161796d461324f30db0d0302ae77f5c5fc72dca3"], "follower_count": 3131, "custody_address": "0x00dc37299aafc80258f2b940fab25e99b645ad8e", "following_count": 2851, "verified_addresses": {"eth_addresses": ["0x161796d461324f30db0d0302ae77f5c5fc72dca3", "0x161796d461324f30db0d0302ae77f5c5fc72dca3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/93s1N\"}"}', 'sonata'), - (1054677, '0x27838b591c15d53ecc61334513a783725f1daa15', 0, 1, '2024-05-07 14:36:37+00', 0, 4, '{"fid": 462121, "object": "user", "pfp_url": "https://i.imgur.com/Sazoq40.jpg", "profile": {"bio": {"text": ". ˚⁎ ◌ 。゚⊹I luv everything - ! . ˚⁎ ◌ 。゚⊹\n\n채니랑 놀아요 ! ! \n\n뛰뛰빵빵 끝까지 따라갈고예요 🚗💛 ", "mentioned_profiles": []}}, "username": "chaeniluvcoin", "power_badge": false, "display_name": "chaeni", "active_status": "inactive", "verifications": ["0x3986eda6156397779b764b0780b3a282849d8ea8"], "follower_count": 2382, "custody_address": "0xadecc78d6c5ef80a51b4579d984cb0516b659e78", "following_count": 1829, "verified_addresses": {"eth_addresses": ["0x3986eda6156397779b764b0780b3a282849d8ea8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B8pvExfDTAQe4mcb6\"}"}', 'sonata'), - (1057684, '0xaf0a574171fd8af215c4258774d84f0d9e20b858', 0, 1, '2024-05-07 14:46:17+00', 0, 8, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1388, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/571ae561-c120-40ad-6e6f-10a3e04ec500/original\"}","{\"url\":\"https://open.spotify.com/track/6bTvUbet6vqM885XWvxTl1?si=ZONEYK-sSpuDQyE6RaCX0g&context=spotify%3Aplaylist%3A2UN9Ny5tHrBu6dxz48IR8j\"}"}', NULL), - (1031629, '0x21dace413ea071a1c069a8e93804ed8c44ea6d57', 0, 1, '2024-05-07 13:22:05+00', 0, 0, '{"fid": 418249, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiak2khmdvtf6d6rnuinwwldwoo33sf3bszjivy5zezs5mkhqgruce", "profile": {"bio": {"text": "Follow", "mentioned_profiles": []}}, "username": "wormskk1983", "power_badge": false, "display_name": "utein🎩", "active_status": "inactive", "verifications": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "follower_count": 2366, "custody_address": "0x9d4e8df049efca1e3ff9b5a78ff37f5b425f4799", "following_count": 4132, "verified_addresses": {"eth_addresses": ["0x52d298b8d16374f5cdfa58b0edbc45e83fd68756"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EBMSp\"}"}', 'sonata'), - (1030137, '0xcaa38d1afedfeea607c0f7cca1dc11eaa74cb53e', 0, 1, '2024-05-07 13:18:17+00', 0, 0, '{"fid": 515444, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/52743b35-8b7c-4057-ba24-1fe94bc1b800/rectcrop3", "profile": {"bio": {"text": "A crypto enthusiast and anime guru😁", "mentioned_profiles": []}}, "username": "!515444", "power_badge": false, "display_name": "Elegonye Gabriel Onyebuchi ", "active_status": "inactive", "verifications": ["0xa4dd015652d35a4285ddaf1927e12b7d1177a646", "0xa4dd015652d35a4285ddaf1927e12b7d1177a646"], "follower_count": 37, "custody_address": "0xdef10a30604167e87159929f4503dcb8dc118be0", "following_count": 92, "verified_addresses": {"eth_addresses": ["0xa4dd015652d35a4285ddaf1927e12b7d1177a646", "0xa4dd015652d35a4285ddaf1927e12b7d1177a646"], "sol_addresses": ["Bm87aBJGxyGRLJn36JchEG9qNqcpEZv6gpARacrJiBpP"]}}', '{"{\"url\":\"https://open.spotify.com/track/73VCobZbLNTAwCxKKBtztO?si=kY1KmImHQeiyk2onSEao8A\"}"}', NULL), - (1009829, '0x0b2c81f30b830f2773ae3734732da320585e3971', 0, 1, '2024-05-07 12:25:23+00', 0, 2, '{"fid": 211124, "object": "user", "pfp_url": "https://i.imgur.com/jeHi7gy.jpg", "profile": {"bio": {"text": "music + fashion /ziggyziggy", "mentioned_profiles": []}}, "username": "musicben", "power_badge": true, "display_name": "musicben", "active_status": "inactive", "verifications": ["0x32ec773ed7b5a54d1f0ac77944caf76ed30e6b86"], "follower_count": 226, "custody_address": "0xa9619f92856274fc41697024460858ebb76f1a14", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x32ec773ed7b5a54d1f0ac77944caf76ed30e6b86"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/buzz/different-sun\"}"}', NULL), - (1031601, '0x2be826c30afb764372385740c7164652f941f46a', 0, 1, '2024-05-07 13:22:55+00', 0, 0, '{"fid": 515761, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/091006ff-cdad-4397-e394-8d8865454300/rectcrop3", "profile": {"bio": {"text": "I''m a talking hat :)", "mentioned_profiles": []}}, "username": "!515761", "power_badge": false, "display_name": "Bittersweet🎩", "active_status": "inactive", "verifications": ["0xeb13f7de87ce1a73bfe196e109ac03cfba42d62c"], "follower_count": 153, "custody_address": "0xf066537da83d3a34daf37e1ac9aa51694553ac97", "following_count": 267, "verified_addresses": {"eth_addresses": ["0xeb13f7de87ce1a73bfe196e109ac03cfba42d62c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2mZAyPej7qsZfSnz5\"}"}', 'sonata'), - (1087496, '0x256da266b3258798035ad89ae28a14f72cdb78d0', 0, 1, '2024-05-07 15:44:36+00', 0, 2, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 221, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 975, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/two-angelz?referral_source=link\"}"}', 'creator'), - (1136276, '0x155b0613d372ab076f0d232da5b14f27816760d0', 0, 1, '2024-05-07 19:18:12+00', 0, 5, '{"fid": 507868, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c039225c-49af-4345-25e8-8044b2eda900/rectcrop3", "profile": {"bio": {"text": "Dvm student/ New to this crypto currency network/ Hungry to learn more", "mentioned_profiles": []}}, "username": "!507868", "power_badge": false, "display_name": "Amir🎩🔮", "active_status": "inactive", "verifications": ["0x8efb20a47595315cd784b1471de6f57507fe6ba6"], "follower_count": 341, "custody_address": "0xa01e753302da183e9261208c9c6b5e42c33973e1", "following_count": 434, "verified_addresses": {"eth_addresses": ["0x8efb20a47595315cd784b1471de6f57507fe6ba6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/elvissonymusic/cant-help-falling-in-953786220?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1009289, '0xebf6c882abcd1a32ed13513ee78236debdc347c8', 0, 1, '2024-05-07 12:21:23+00', 0, 0, '{"fid": 289911, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0bf9ffe-c91d-413a-4dca-e7c726796000/original", "profile": {"bio": {"text": "\n", "mentioned_profiles": []}}, "username": "savoir", "power_badge": false, "display_name": "Younghyun🎩🍖🩸🔮🔵", "active_status": "inactive", "verifications": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "follower_count": 1231, "custody_address": "0x64fb1e0672d9e28747b34ecfb02be694319b7963", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2P4OICZRVAQcYAV2JReRfj?si=1e56feded79448f8\"}"}', NULL), - (1010939, '0x88da51dbfee36dad0b7770d3ef087d68862c282b', 0, 1, '2024-05-07 12:27:16+00', 0, 4, '{"fid": 454238, "object": "user", "pfp_url": "https://i.imgur.com/3xSLH5h.jpg", "profile": {"bio": {"text": "Enjoy Warpcast together!", "mentioned_profiles": []}}, "username": "strive", "power_badge": false, "display_name": "StriveD", "active_status": "inactive", "verifications": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "follower_count": 2190, "custody_address": "0xa2bbc7337888cc53d4a80fbb14fae4fa4349e40d", "following_count": 2154, "verified_addresses": {"eth_addresses": ["0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/auxparis/wildcards\"}"}', 'sonata'), - (1040120, '0xb61880b32332d34d22d58466978adf0cddc42aee', 0, 1, '2024-05-07 13:47:17+00', 0, 2, '{"fid": 449851, "object": "user", "pfp_url": "https://i.imgur.com/dj1267x.jpg", "profile": {"bio": {"text": "Life is going on,enjoy it\n🧚‍♀️☀️🌊🧘‍♀️\n", "mentioned_profiles": []}}, "username": "baharrp", "power_badge": false, "display_name": "Bahar 🧚‍♀️", "active_status": "inactive", "verifications": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "follower_count": 799, "custody_address": "0x79ac0726a2a7c83c149276836c4900a4c1b9a75a", "following_count": 839, "verified_addresses": {"eth_addresses": ["0xab51f2a73aec0bec2b194ed4f89604c83a14ba61"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/louane-official/jour-1?ref=clipboard&p=a&c=0&si=e4490b98e5c84f119291149df4d80d47&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1031603, '0x10c706f5a702d1ca52d57f91853ae12374942495', 0, 1, '2024-05-07 13:23:29+00', 0, 0, '{"fid": 508924, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9577aec6-5fb8-45ba-c1c6-87264545fa00/rectcrop3", "profile": {"bio": {"text": "Patience is always a reward🙏💓", "mentioned_profiles": []}}, "username": "!508924", "power_badge": false, "display_name": "Daegu vk🎩🍖", "active_status": "inactive", "verifications": ["0xc73601486eaab127b05a878559c5bed2c7f3e125"], "follower_count": 208, "custody_address": "0xc59b85e5c22a172fa6bd51bb2aead61e1185a31f", "following_count": 445, "verified_addresses": {"eth_addresses": ["0xc73601486eaab127b05a878559c5bed2c7f3e125"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fGtnW\"}"}', 'sonata'), - (1050023, '0x7f79b89e1521dec8f453bec381d666db0dfdcc4a', 0, 1, '2024-05-07 14:22:36+00', 0, 0, '{"fid": 427654, "object": "user", "pfp_url": "https://i.imgur.com/atrcHtA.jpg", "profile": {"bio": {"text": "遂にデゲンできるようになりました\n帽子はメタマスクです\n積極的に絡んでいきますのでよろしくどうぞ!\n", "mentioned_profiles": []}}, "username": "chianti", "power_badge": false, "display_name": "chianti🐲🎩🔥", "active_status": "inactive", "verifications": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "follower_count": 298, "custody_address": "0xd0698c5468a0e65f51a002502f392954d923d49f", "following_count": 334, "verified_addresses": {"eth_addresses": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/arminvanbuuren/armin-van-buuren-ferry-corsten?si=988ccc56f2644c84a935b5c2a9b80f6b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1144764, '0x1c3b7adeb256647b7c8da448c8322d3c499a625f', 0, 1, '2024-05-07 20:06:11+00', 0, 8, '{"fid": 406650, "object": "user", "pfp_url": "https://i.imgur.com/pYxYFDo.jpg", "profile": {"bio": {"text": "반갑습니다. 잘 부탁 드립니다.사진/여행/헬스/맛집/좋아함 좋은하루 되세요!\n★ 소통이 미래다 ★\n", "mentioned_profiles": []}}, "username": "sakamoto-kenzo", "power_badge": false, "display_name": "Sakamoto-kenzo", "active_status": "inactive", "verifications": ["0x780d121c7ae6593dc333a75419e8db83a30629e7"], "follower_count": 2823, "custody_address": "0xf8a15ca32d0d27680d23d77e2b11c330f8d2ca1f", "following_count": 2961, "verified_addresses": {"eth_addresses": ["0x780d121c7ae6593dc333a75419e8db83a30629e7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Gb91f\"}"}', 'sonata'), - (1054675, '0xf16bb230315af089b7a685ee2f08fb33aa8c1d16', 0, 1, '2024-05-07 14:37:02+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3179, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2694, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hdcrjzxyu1gq/thama-jayci-yucca-prod-pateko?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1049055, '0x7746117f4ff9975fbf21ad4989aff356e14a300a', 0, 1, '2024-05-07 14:19:28+00', 0, 1, '{"fid": 473818, "object": "user", "pfp_url": "https://i.imgur.com/A05DUUx.jpg", "profile": {"bio": {"text": "flying cameras\nwww.accomify.com", "mentioned_profiles": []}}, "username": "ashtons.eth", "power_badge": false, "display_name": "Ashton", "active_status": "inactive", "verifications": ["0xcaf80412a7c2e6c7a049b7d07842891dfd36ce4a"], "follower_count": 48, "custody_address": "0x8298b5c5d732ebc890b7177fb2769bb5380e7903", "following_count": 272, "verified_addresses": {"eth_addresses": ["0xcaf80412a7c2e6c7a049b7d07842891dfd36ce4a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4NYFBOqAZ68yY5XymxEN20?si=cf0af75717094017\"}"}', NULL), - (1009850, '0x28ffc7be4eb06d66819958b4a9d9dc016c368f20', 0, 1, '2024-05-07 12:25:31+00', 0, 0, '{"fid": 434241, "object": "user", "pfp_url": "https://i.imgur.com/s4gNzIZ.jpg", "profile": {"bio": {"text": "Hello! Follow please!! 😼 ", "mentioned_profiles": []}}, "username": "miiiin", "power_badge": false, "display_name": "miiiin", "active_status": "inactive", "verifications": ["0x35fd194df96a1df2d325117c917144116d6f09c9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9"], "follower_count": 1111, "custody_address": "0x98e9d3283f9961fe6cdce6ae6c130580cfc55971", "following_count": 1466, "verified_addresses": {"eth_addresses": ["0x35fd194df96a1df2d325117c917144116d6f09c9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iCdp17ky8SauHiTU8\"}"}', 'sonata'), - (1047152, '0xe9df11244c9526e9c03a7484eb96d12e51231356', 0, 1, '2024-05-07 14:16:30+00', 0, 3, '{"fid": 503238, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7e1c9c8d-6725-44ed-258e-a3e9a0818c00/rectcrop3", "profile": {"bio": {"text": "#travel #invest #new_world", "mentioned_profiles": []}}, "username": "yourangel1004", "power_badge": false, "display_name": "Your_angel", "active_status": "inactive", "verifications": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "follower_count": 1195, "custody_address": "0xdb8fd1e72e2892f9b16be05fe492bb5382bfa49c", "following_count": 1017, "verified_addresses": {"eth_addresses": ["0x2fa3afeec07dddeb20b799e61a13b09eee1ea065"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DupfRhGG8XpJi9dT6\"}"}', 'sonata'), - (1031625, '0x6e80b5b86e42ad147964df3f1feccb36a1dae9b3', 0, 1, '2024-05-07 13:23:27+00', 0, 0, '{"fid": 296887, "object": "user", "pfp_url": "https://i.imgur.com/BHOG7nA.jpg", "profile": {"bio": {"text": "Gamer , Graphic designer , Founder of Nowhere", "mentioned_profiles": []}}, "username": "alilucky", "power_badge": false, "display_name": "AliLucky 🎩🔵🔮🧀✈", "active_status": "inactive", "verifications": ["0xad6ea928fdd73a4766fbe6a07098038ba8c37bcf"], "follower_count": 1445, "custody_address": "0x0a91ccd35f20cd74feb19eaaecafa993c944b263", "following_count": 1218, "verified_addresses": {"eth_addresses": ["0xad6ea928fdd73a4766fbe6a07098038ba8c37bcf"], "sol_addresses": ["3EWGVFs7v12mxwJpJAbCECr3r7vDFTQVYVAYGwDAmx2K"]}}', '{"{\"url\":\"https://soundcloud.com/randolph-diep-998071966/kanye-west-runaway-live-at-free-larry-hoover-concert\"}"}', NULL), - (1009835, '0x9f600a2f7604822a042baa31b02b0bf592a4bddb', 0, 1, '2024-05-07 12:25:20+00', 0, 1, '{"fid": 508269, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7539fdc2-9860-4744-40c4-0ec6c2664800/original", "profile": {"bio": {"text": "GreenSheep died and became GhostSheep👻 \n100% F4F ☺", "mentioned_profiles": []}}, "username": "!508269", "power_badge": false, "display_name": "GhostSheep👻🐑", "active_status": "inactive", "verifications": ["0xdad47666402c760d2fdb18423add41ee11eeb9ff"], "follower_count": 145, "custody_address": "0x24a636ba82a53a12e69feb10173f0c5637ac5322", "following_count": 439, "verified_addresses": {"eth_addresses": ["0xdad47666402c760d2fdb18423add41ee11eeb9ff"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pzpy12KmCjqQWXLA8\"}"}', 'sonata'), - (1040539, '0xde84ac10db9ecbac5c66164210b5a147d40ee372', 0, 1, '2024-05-07 13:49:55+00', 0, 3, '{"fid": 500856, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d9303ee-19c7-4456-d16c-9e837eab9100/rectcrop3", "profile": {"bio": {"text": "hi rangtto", "mentioned_profiles": []}}, "username": "rangtto", "power_badge": false, "display_name": "rangtto", "active_status": "inactive", "verifications": ["0x9d78fa616913a1dfc7221490be71182e861b5e13"], "follower_count": 608, "custody_address": "0x2c39726afa3167c2d56faa8cf0f1f54e234ae153", "following_count": 893, "verified_addresses": {"eth_addresses": ["0x9d78fa616913a1dfc7221490be71182e861b5e13"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/young-hwan-lee-2/tears-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1031637, '0x80e0c05792cf2796a1d872745c4d07900d6680b3', 0, 1, '2024-05-07 13:23:16+00', 0, 2, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1476, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Lbtdrr64S4CKMLYx9\"}"}', NULL), - (1054680, '0x3ac88fbd8a62d3786525277987eea81a5099e851', 0, 1, '2024-05-07 14:36:05+00', 0, 4, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/k2woZW4MzbRSQU9Q9\"}"}', 'musicjp'), - (1008356, '0x85c7ef634c44976d07f2efe534ec2f13971affd0', 0, 1, '2024-05-07 12:08:01+00', 0, 1, '{"fid": 477931, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8b8f6163-367a-40be-4ceb-6b286b5a0f00/rectcrop3", "profile": {"bio": {"text": "우리모두 화이팅🔥🔥", "mentioned_profiles": []}}, "username": "elena11", "power_badge": false, "display_name": "Elena", "active_status": "inactive", "verifications": ["0x490a6d0e6e49dab7c189ca04b9e9c3d4687ed1fe"], "follower_count": 2517, "custody_address": "0xeefa65f4686746e830bb44bdfcba2693d9823b37", "following_count": 2589, "verified_addresses": {"eth_addresses": ["0x490a6d0e6e49dab7c189ca04b9e9c3d4687ed1fe"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dYacsgEuqQgMicAF6\"}"}', 'sonata'), - (1031638, '0xa8fc8cd5a50877a8da303e964e42a2487c84f0e5', 0, 1, '2024-05-07 13:21:02+00', 0, 2, '{"fid": 406129, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42255388-4617-41a1-1014-db57da9cb000/rectcrop3", "profile": {"bio": {"text": "먹잘알, PRO, Yummy https://www.alfafrens.com/channel/0xAcf9ab2e020E34bC596aAc8fe6b3afb8C8b2b85d", "mentioned_profiles": []}}, "username": "mukb0", "power_badge": false, "display_name": "mukb0", "active_status": "inactive", "verifications": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "follower_count": 2666, "custody_address": "0xd84a89ff4dbe21601c6ce408e56e281629040f03", "following_count": 2747, "verified_addresses": {"eth_addresses": ["0xc676e793bd595f2d14ef1d26b790f9f6041b64a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/98nKeRVANpmcpGqPA\"}"}', 'sonata'), - (1173694, '0xccd70d89102a013f9487e737770462f5326a4c1a', 0, 1, '2024-05-16 08:45:49+00', 0, 0, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3885, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1013, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Changes by Lauv on #SoundCloud https://on.soundcloud.com/4A3ut\"}"}', NULL), - (1047122, '0xfc872bcd3311e234b3226e1fd27af668cec8f9d6', 0, 1, '2024-05-07 14:16:27+00', 0, 0, '{"fid": 413488, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6ef28212-4bd5-4146-1f56-cf3523df6200/rectcrop3", "profile": {"bio": {"text": "I am very happy man,and work at school", "mentioned_profiles": []}}, "username": "0xking1", "power_badge": false, "display_name": "king", "active_status": "inactive", "verifications": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "follower_count": 488, "custody_address": "0x91ab7af5a609ad9ddf0d877dbf0ccbbaf2533c9a", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XU2DF\"}"}', 'sonata'), - (1031626, '0xcb47408884f68621798b184b144c3a8410f5119e', 0, 1, '2024-05-07 13:22:29+00', 0, 0, '{"fid": 497255, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc1219c8-c229-4734-53ef-75ed43c6ad00/rectcrop3", "profile": {"bio": {"text": "base, degen is future 🔥🚀", "mentioned_profiles": []}}, "username": "woo819", "power_badge": false, "display_name": "Woo🎩🍖🔮", "active_status": "inactive", "verifications": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "follower_count": 1476, "custody_address": "0xafade3fbdf7ffa135a333da82a625b7ce2a477d9", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xPN2wskG9uZWSvHS6\"}"}', NULL), - (1040540, '0x35fa80adfff8283b8e081e9af800ca8290f77ec6', 0, 1, '2024-05-07 13:50:20+00', 0, 2, '{"fid": 503907, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c3d4b7bd-00bc-4f39-7aca-66e2d569e600/rectcrop3", "profile": {"bio": {"text": "diVine inspiration 🌈", "mentioned_profiles": []}}, "username": "amirali1991", "power_badge": false, "display_name": "Nothing😎😎", "active_status": "inactive", "verifications": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "follower_count": 196, "custody_address": "0x114b9f282cd625abc5658a0644e2dd4502337307", "following_count": 816, "verified_addresses": {"eth_addresses": ["0xaf3a9a16619122366e496fb69673ec56b8f0baf7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WcdoY1FRdA6bFbMR6\"}"}', NULL), - (1054062, '0x25308eefe727b294952491848583bca35d06de21', 0, 1, '2024-05-07 14:35:35+00', 0, 7, '{"fid": 475970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d303aa25-974b-42f3-d5e6-8a2cbd83b500/original", "profile": {"bio": {"text": "맥주를 너무 사랑하는 남자!\n하지만 통풍은 무서운 남자!\n부자되기를 두려워하지 않는 남자!\nHighly beer addicted!🍻\nGood day to dance😀", "mentioned_profiles": []}}, "username": "sarnath8282", "power_badge": false, "display_name": "sarnath8282", "active_status": "inactive", "verifications": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "follower_count": 1451, "custody_address": "0xd7ad189a1b9637b6e1383d0a5bdbf23599408568", "following_count": 2597, "verified_addresses": {"eth_addresses": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LgLVn\"}"}', 'banmal-mode'), - (1009284, '0x00e3c295afe840257f193f9556b68d5b0297efe4', 20, 1, '2024-05-07 12:21:30+00', 0, 5, '{"fid": 448399, "object": "user", "pfp_url": "https://i.imgur.com/COsaKWy.jpg", "profile": {"bio": {"text": "디젠1달러가즈아$ 선팔.맞팔 끝까지갑니다.좋아요 리퀘는 사랑입니다.", "mentioned_profiles": []}}, "username": "daddyman", "power_badge": false, "display_name": "Daddyman", "active_status": "inactive", "verifications": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "follower_count": 1631, "custody_address": "0x6d8774f82e69b17974493a324ec868b6ac7514a6", "following_count": 1319, "verified_addresses": {"eth_addresses": ["0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tarshaun/beyonc-listen-live-on-oprah?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1040542, '0x6a6bfec55a01acac8a5bfa773bb414c44601eb16', 0, 1, '2024-05-07 13:49:34+00', 0, 5, '{"fid": 474187, "object": "user", "pfp_url": "https://i.imgur.com/hNd68be.jpg", "profile": {"bio": {"text": "🇰🇷F4F 💜짤 맛집💜 리액션 200%🔥 Degen 홍보 담당관🫡", "mentioned_profiles": []}}, "username": "dr-yohan", "power_badge": false, "display_name": "RUNUP", "active_status": "inactive", "verifications": ["0x4eda9a49176d0a121aaa7e7e92355466e69a385f"], "follower_count": 2618, "custody_address": "0xa8ff252adac214873040caf1f3dc13af5b91551b", "following_count": 2578, "verified_addresses": {"eth_addresses": ["0x4eda9a49176d0a121aaa7e7e92355466e69a385f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sgb-185316074/sg-sg-wannabe-timeless-flac?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1031627, '0x634a32d9bb10158f3d52fb20ab1a3430011d40f6', 0, 1, '2024-05-07 13:23:15+00', 0, 3, '{"fid": 296887, "object": "user", "pfp_url": "https://i.imgur.com/BHOG7nA.jpg", "profile": {"bio": {"text": "Gamer , Graphic designer , Founder of Nowhere", "mentioned_profiles": []}}, "username": "alilucky", "power_badge": false, "display_name": "AliLucky 🎩🔵🔮🧀✈", "active_status": "inactive", "verifications": ["0xad6ea928fdd73a4766fbe6a07098038ba8c37bcf"], "follower_count": 1445, "custody_address": "0x0a91ccd35f20cd74feb19eaaecafa993c944b263", "following_count": 1218, "verified_addresses": {"eth_addresses": ["0xad6ea928fdd73a4766fbe6a07098038ba8c37bcf"], "sol_addresses": ["3EWGVFs7v12mxwJpJAbCECr3r7vDFTQVYVAYGwDAmx2K"]}}', '{"{\"url\":\"https://soundcloud.com/randolph-diep-998071966/kanye-west-runaway-live-at-free-larry-hoover-concert\"}"}', 'sonata'), - (1047123, '0xfe2b7ed7776ede518062504f001e6bc83ddaf6ea', 0, 1, '2024-05-07 14:16:08+00', 0, 1, '{"fid": 498568, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/82d803ac-9f2c-4ea2-406b-398581a73700/original", "profile": {"bio": {"text": "환영합니다❤️\nLike 💕recast😊reply👍\n맞팔은 환영 😍 반사는 무조건가요", "mentioned_profiles": []}}, "username": "buleyouna", "power_badge": false, "display_name": "💫STARRR⭐️BUCKS🌈", "active_status": "inactive", "verifications": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "follower_count": 1824, "custody_address": "0x2b6a5433d9ac2ca0e9c749f0138948c1220b0a7d", "following_count": 925, "verified_addresses": {"eth_addresses": ["0x64505fb427d46d2babf8588f376b0ec5f7d006b4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musiic_time/10cm?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1008605, '0x39ac69a38ed94867296f8297b13ff36ab03d18e6', 0, 1, '2024-05-07 12:09:57+00', 0, 0, '{"fid": 262294, "object": "user", "pfp_url": "https://i.imgur.com/kw6GvaE.jpg", "profile": {"bio": {"text": "I make art with computer algorithms https://byapa.net/work | engineer /// enjoying so much sharing explorations\n\nhttps://linktr.ee/BerkeYapa", "mentioned_profiles": []}}, "username": "yapa", "power_badge": false, "display_name": "Berke Yapa", "active_status": "inactive", "verifications": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "follower_count": 267, "custody_address": "0xce0d740e0af265d95837549b190bb3cc5586ab38", "following_count": 356, "verified_addresses": {"eth_addresses": ["0x4d5c7ef8ec16be15c601673a2f8583441a15b03d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/experimentintrinsic/podcast-series-34-clovis?si=0411cbaaaa2c4d898da9545b55fe3ca0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1047137, '0xcc77bf5a013d61ef709eb2f7e0e95e7eca03657a', 0, 1, '2024-05-07 14:14:22+00', 0, 0, '{"fid": 323599, "object": "user", "pfp_url": "https://i.imgur.com/ki2KU7o.jpg", "profile": {"bio": {"text": "Musician - Frequency lover -Crypto/Trader", "mentioned_profiles": []}}, "username": "bezu", "power_badge": false, "display_name": "Bezu 🎩🎤", "active_status": "inactive", "verifications": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "follower_count": 197, "custody_address": "0x35d6859e780f030894cc3d070792a503badafe36", "following_count": 522, "verified_addresses": {"eth_addresses": ["0x004fe340d0d71c244b629cc4a5399d915f4f7fef", "0xb9d8c29f73efba30795e2808676aae3859ae366b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3QO1m6i0nsrp8aOnapvbkx?si=vup95wVJQjqFq3qkImVxpA\"}"}', NULL), - (1059099, '0x44ac72bebccf4d46c1b3d2d6a14efcc099c92c61', 0, 1, '2024-05-07 14:50:47+00', 0, 4, '{"fid": 405729, "object": "user", "pfp_url": "https://va2wd5vwvtfwbkxrz4myzxvo3nghxjnchtpgxxk4vzi4w4riu4xa.arweave.net/qDVh9rasy2Cq8c8ZjN6u20x7paI83mvdXK5Ry3Iopy4/", "profile": {"bio": {"text": "🐸\nWe are a variable of unknown circumstances!", "mentioned_profiles": []}}, "username": "hamid-siemens", "power_badge": false, "display_name": "HaMiD", "active_status": "inactive", "verifications": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "follower_count": 2478, "custody_address": "0xe56ce66286aad851e8ac03046e3b91241419e103", "following_count": 2639, "verified_addresses": {"eth_addresses": ["0x20573df984658e59255fd9f607823a2bc1a3b65b"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Sting :: Shape Of My Heart by MusikConnections on #SoundCloud https://on.soundcloud.com/r5wpt\"}"}', NULL), - (1145797, '0xc3311b5fb49db454f612b4b38ac4db2e50b4d1f7', 0, 1, '2024-05-07 20:09:11+00', 0, 6, '{"fid": 399675, "object": "user", "pfp_url": "https://i.imgur.com/74sE4Xo.jpg", "profile": {"bio": {"text": "Web2 developer 🌐 | Web Enthusiast | Home cook 🍲 | Soon to be Cat dad 🥹\n\nGithub - https://www.github.com/TrentonFunt", "mentioned_profiles": []}}, "username": "trentonfunt", "power_badge": false, "display_name": "Trent🎩", "active_status": "inactive", "verifications": ["0x8e3d504acfa412b7fdc91f7a95dff264344a4b6f"], "follower_count": 654, "custody_address": "0x41a20dbe07b64c5ec61157593555784c75e5826e", "following_count": 603, "verified_addresses": {"eth_addresses": ["0x8e3d504acfa412b7fdc91f7a95dff264344a4b6f"], "sol_addresses": ["D2ZxHSYRUhPkKrYTivnwTrXrwY7u2iMAZvqAFSbNTkQ3"]}}', '{"{\"url\":\"https://open.spotify.com/track/0bRXwKfigvpKZUurwqAlEh?si=fcsCRviLRiS86yc93sP6YA%0A\"}"}', 'thetaproom'), - (1090685, '0xfea89e1858edc3fb5bbcebd5183451f4413cae77', 0, 1, '2024-05-07 15:53:36+00', 0, 15, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3644, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1660, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/pggjzfgk-11/lvgxadl4oayl?si=2056dae2f5fd452bb4d71a62ea604a10&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1010937, '0x946dd0025003de1e69b1b9268989503efc080a15', 0, 1, '2024-05-07 12:27:23+00', 0, 0, '{"fid": 500461, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc4873ea-85ed-420e-739f-e960fb8b8600/rectcrop3", "profile": {"bio": {"text": "괜찮아.\nYou''ll be happy.", "mentioned_profiles": []}}, "username": "mondss", "power_badge": false, "display_name": "shine_my_life🎩", "active_status": "inactive", "verifications": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "follower_count": 1179, "custody_address": "0xa044138872bbb075008d24c1921fac2f00e7c58b", "following_count": 817, "verified_addresses": {"eth_addresses": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Modern Loneliness by Lauv on #SoundCloud https://on.soundcloud.com/5DLs6\"}"}', NULL), - (1173409, '0xf914a0e3a7a5d037dec83d682de94a6981ba7bee', 100, 1, '2024-05-15 23:01:57+00', 0, 2, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 810, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 247, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Ta2fVj5VeLL49IZQ9JCO5?si=8Gxmxa9VQJm6qcXiHEL2LQ\"}"}', 'bangers'), - (1031632, '0xa54a80080cd3dd1c283e0ff2030ceef19e278c5e', 0, 1, '2024-05-07 13:22:01+00', 0, 6, '{"fid": 471939, "object": "user", "pfp_url": "https://i.imgur.com/2W62eK2.jpg", "profile": {"bio": {"text": "F4F 뉴비라 팔로우 쩜요\n비투카 화이팅!!", "mentioned_profiles": []}}, "username": "mini486", "power_badge": false, "display_name": "Mini", "active_status": "inactive", "verifications": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "follower_count": 2143, "custody_address": "0xeba06dcd2197f32a581434165b801a9401c395c4", "following_count": 2114, "verified_addresses": {"eth_addresses": ["0xeba06dcd2197f32a581434165b801a9401c395c4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dMkMf\"}"}', 'south-korea'), - (1009819, '0x8d64be002daad2b8c4fa491db1a34fa5864c8b99', 0, 1, '2024-05-07 12:25:36+00', 0, 1, '{"fid": 402923, "object": "user", "pfp_url": "https://i.imgur.com/gaAPtfu.jpg", "profile": {"bio": {"text": "My Channel→\n/restarea\nSweets&Snacks\n\n/pachinko\nパチンコ&スロット\n\n/fishingood\nfishing釣り\n\n/fishigood\n懺悔-Confession Channel\nお返しは大丈夫です🙆‍♂️\nいいキャストにチップkudasai😊", "mentioned_profiles": []}}, "username": "siokaratombo", "power_badge": false, "display_name": "siokaratombo🍖🔮", "active_status": "inactive", "verifications": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "follower_count": 967, "custody_address": "0x14b19445dd6fb33daa1b55bd98773717d20834d2", "following_count": 1124, "verified_addresses": {"eth_addresses": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ltykvx66ccdr/awich-longiness-remix?si=6ce24863cf14409593986d25058aae34&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'japanese-music'), - (1040545, '0x28a1f2b636524d0255982da6031e6bcd5e8b16df', 0, 1, '2024-05-07 13:48:51+00', 0, 8, '{"fid": 489027, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc7d12b1-828e-411e-3bf5-0b1b3920ca00/rectcrop3", "profile": {"bio": {"text": "If you''re interested in ''Peanuts'' , \nvisit /snoopycast", "mentioned_profiles": []}}, "username": "dktk", "power_badge": false, "display_name": "DuDu", "active_status": "inactive", "verifications": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "follower_count": 1322, "custody_address": "0xa0af4e11d550482c6d9a1dc7c5d5e3b72ba64c87", "following_count": 2028, "verified_addresses": {"eth_addresses": ["0x4b7c261960bd96f72ff9427938feff7cbb83c38a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4rC67uMNRYf26jSfv0qYDP\"}"}', 'sonata'), - (1012323, '0x86b1f4762d09d1f616cd90e85f0b97714a3ddc7f', 20, 1, '2024-05-07 12:30:41+00', 0, 43, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups. \nDeveloper at heart.", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 5275, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2360, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/stpsoundcloud/trippin-on-a-hole-in-a-paper\"}"}', 'rock'), - (1155763, '0x9a042e5d4dd51ca78897a71780631d7c7c61cdc7', 0, 1, '2024-05-07 20:57:28+00', 0, 1, '{"fid": 514211, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04594be7-6fd9-47db-9efe-ea3ad1f94f00/rectcrop3", "profile": {"bio": {"text": "I like crypto and sports very much.", "mentioned_profiles": []}}, "username": "!514211", "power_badge": false, "display_name": "Aldrich Paclian", "active_status": "inactive", "verifications": ["0xe9aa9816952f7a96eb0d0035a46fa26fcd678582"], "follower_count": 55, "custody_address": "0x3053738900d2061af7edc326129dc691f58e056c", "following_count": 105, "verified_addresses": {"eth_addresses": ["0xe9aa9816952f7a96eb0d0035a46fa26fcd678582"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Qyc6fS4DsZjB2mRW9DsQs?si=eSvkiYsFSAGXGRgfJWjpHw\"}"}', NULL), - (1041184, '0xf548e19ce0130127edde29999bad6aa735811fdf', 0, 1, '2024-05-07 13:50:34+00', 0, 16, '{"fid": 475621, "object": "user", "pfp_url": "https://i.imgur.com/iDPLKG6.jpg", "profile": {"bio": {"text": "모두부자됩시다 퐈이아 무반", "mentioned_profiles": []}}, "username": "thingkkk", "power_badge": false, "display_name": "ThinGKKK", "active_status": "inactive", "verifications": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "follower_count": 3158, "custody_address": "0xc33e161c1715926354fe84e9e97965a5c34f0049", "following_count": 3478, "verified_addresses": {"eth_addresses": ["0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EL2fdEuTjeeNKaQn7\"}"}', 'sonata'), - (1047141, '0xd53dc46e0ac67900234c778d3ebd164111087474', 0, 1, '2024-05-07 14:16:08+00', 0, 2, '{"fid": 292154, "object": "user", "pfp_url": "https://i.imgur.com/rtWcOLQ.jpg", "profile": {"bio": {"text": "Crypto info\nFood Travel \nhttps://zora.co/@dannyping", "mentioned_profiles": []}}, "username": "dannykim", "power_badge": false, "display_name": "Danny Ping", "active_status": "inactive", "verifications": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "follower_count": 2133, "custody_address": "0x37e0c88ecc4897422b55ab72ab2d9c9e624b50e4", "following_count": 2253, "verified_addresses": {"eth_addresses": ["0x09f12992341d49d6992dbed55f7b1209eb702588"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MMC8d\"}"}', 'sonata'), - (1173404, '0xc276c6fc8684e463ecdff8c8a8291ba94ba28820', 100, 1, '2024-05-15 22:45:45+00', 0, 0, '{"fid": 422559, "object": "user", "pfp_url": "https://i.imgur.com/bzqkQ88.jpg", "profile": {"bio": {"text": "/bugs are friends 𓆨𓆣ᯓᡣ𐭩 \n\n\nhttps://objkt.com/@katipo", "mentioned_profiles": []}}, "username": "katipo", "power_badge": true, "display_name": "katipo 𖦹 ", "active_status": "inactive", "verifications": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "follower_count": 279, "custody_address": "0xbb9cf53b77147b6c4f643a71f9a11bfad879a2b9", "following_count": 232, "verified_addresses": {"eth_addresses": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":330807,\"hash\":\"0xeb0e208b4079c818e14d24a978fb675fd8b76273\"}}","{\"url\":\"https://open.spotify.com/track/7KaF3RQY4BFMZCoUD5U7m2?si=BNv0i_fVSEO-e2mgF9EBjA\"}"}', NULL), - (1031646, '0x5a31c833be5c193944c8b9ed6d71d3df10c1dbee', 0, 1, '2024-05-07 13:22:54+00', 0, 1, '{"fid": 320599, "object": "user", "pfp_url": "https://i.imgur.com/OBvMqIU.jpg", "profile": {"bio": {"text": "I am torokeru!!\n\n❤️: crypto, gym , game , League of Legends , Breakin\n💔: math , complain man", "mentioned_profiles": []}}, "username": "torokerukun", "power_badge": false, "display_name": "torokerukun🎩💩🍕🍖", "active_status": "inactive", "verifications": ["0x6d3fe453d256f92946bd0b2e35f3f67eb82e4041", "0xe16eb767e92c7048bc720e45e5782be508fef38e"], "follower_count": 1043, "custody_address": "0x0d2a4ef3943aa41a9fc84e22b8af62e1dfc2dfe7", "following_count": 721, "verified_addresses": {"eth_addresses": ["0x6d3fe453d256f92946bd0b2e35f3f67eb82e4041", "0xe16eb767e92c7048bc720e45e5782be508fef38e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-987148546-57303492/sets/anime-remix-j-core-2?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1012331, '0x3da245fa733bf0acc7eea52d5637932b4ad1c163', 0, 1, '2024-05-07 12:29:10+00', 0, 1, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1592, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2559, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rLH6W6ftrVK3PhSq8\"}"}', NULL), - (1047149, '0xd0b80f34f5c99e94cc75f0f0822cfc8689e738ab', 0, 1, '2024-05-07 14:11:36+00', 0, 5, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2507, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2374, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Y9JNcsVSF1L2sNfy7\"}"}', 'sonata'), - (1087384, '0xba47e131b244b612a694e36ad275e4ad1e201303', 1000, 1, '2024-05-07 15:43:29+00', 0, 2, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 306, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/3re0DUUcXeh7x64cC142lo?si=aARZvi-9TK2_iKKVjFu7-A\"}"}', 'musicjp'), - (1136964, '0x107e6efe14e8379c463dca75d6fc1b338926e231', 100, 1, '2024-05-07 19:28:49+00', 0, 17, '{"fid": 490760, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3671edac-b681-43f8-6f71-fdcbdead7500/rectcrop3", "profile": {"bio": {"text": "I put my heart on ice 🧊\nSexy Lawyer in equity 😉", "mentioned_profiles": []}}, "username": "miranalyn", "power_badge": false, "display_name": "Mirana🦋💦😈", "active_status": "inactive", "verifications": ["0xa39449bcdd9aec1a9fd8f5e22426086e6b61acf4"], "follower_count": 485, "custody_address": "0xca466bfc61a9b890011971a5c510c23a17994da0", "following_count": 451, "verified_addresses": {"eth_addresses": ["0xa39449bcdd9aec1a9fd8f5e22426086e6b61acf4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Hpib09wXgD84w4uwTPnYD?si=lKuAcUm6RFm15B57Z1WNPw\"}"}', 'thetaproom'), - (1032015, '0xbb3e4d2a435c94a325ae8034e871809564ad1797', 0, 1, '2024-05-07 13:24:00+00', 0, 3, '{"fid": 492249, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3f8d184-a2ef-48d6-b828-479e263c4a00/rectcrop3", "profile": {"bio": {"text": "investing crypto,gaming\nLove nft crypto\nLove art ", "mentioned_profiles": []}}, "username": "amirahmadi2068", "power_badge": false, "display_name": "Amir", "active_status": "inactive", "verifications": ["0x019496ab1663e7e83b9692443f17193e24f7b24c"], "follower_count": 597, "custody_address": "0xadf93bcf0fd7e5abdecc7dd0aa6d4875eb0b2ec5", "following_count": 606, "verified_addresses": {"eth_addresses": ["0x019496ab1663e7e83b9692443f17193e24f7b24c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Malicious Intentions by POZER on #SoundCloud https://on.soundcloud.com/EJtRF\"}"}', NULL), - (1087497, '0x85afeb86e46cf49446a965c1fb200676145b3525', 0, 1, '2024-05-07 15:45:08+00', 0, 0, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 221, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 975, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/two-angelz?referral_source=link\"}"}', 'soundxyz'), - (1012340, '0x45a133d235b62671edc8e3acb0255b44afa266b3', 0, 1, '2024-05-07 12:29:21+00', 0, 1, '{"fid": 345389, "object": "user", "pfp_url": "https://i.imgur.com/UTjINHU.jpg", "profile": {"bio": {"text": "ごっちちゃん| cryptoファン| Kudasai AMA皆勤目標|成敗中毒者|ラーメン🍜とカレー🍛 |ジャパニーズヒップホップ|今年こそ爆益ください", "mentioned_profiles": []}}, "username": "gocchichan", "power_badge": false, "display_name": "gocchichan", "active_status": "inactive", "verifications": ["0x6f94533e3c24798697fe47770667cdebb8b98d7b"], "follower_count": 954, "custody_address": "0x4804fc8b3ef2cc8719b51574ad1f50e0f7f5ba65", "following_count": 1036, "verified_addresses": {"eth_addresses": ["0x6f94533e3c24798697fe47770667cdebb8b98d7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WiDtq6B4zKFmzzC19\"}"}', NULL), - (1041810, '0x6dbf0039604f1b53b32b8a6f41c4ca6eaec354e0', 0, 1, '2024-05-07 13:53:16+00', 0, 0, '{"fid": 500500, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2da9745d-b65d-42b6-9cf7-187eacde3500/rectcrop3", "profile": {"bio": {"text": "Hi, i''m Dani''s mother.\nThank u 4 coming!🩷\nLet''s talk! 🫡\n🎩⛓️🟣\nhttps://zora.co/@youmiii", "mentioned_profiles": []}}, "username": "youmii", "power_badge": false, "display_name": "youme1130", "active_status": "inactive", "verifications": ["0xc73ee6e9bef9ebfad3146c0616087b139247402c"], "follower_count": 1234, "custody_address": "0xa1f6faca493a1a5cb380959fcf5ee587a9c0e1ea", "following_count": 1462, "verified_addresses": {"eth_addresses": ["0xc73ee6e9bef9ebfad3146c0616087b139247402c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/a455mtqa0qob/mv-zia-have-a-drink?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1012326, '0x3ace702dfc029bccfd3b67ab37bb8d331e6530f5', 0, 1, '2024-05-07 12:30:07+00', 0, 12, '{"fid": 211124, "object": "user", "pfp_url": "https://i.imgur.com/jeHi7gy.jpg", "profile": {"bio": {"text": "music + fashion /ziggyziggy", "mentioned_profiles": []}}, "username": "musicben", "power_badge": true, "display_name": "musicben", "active_status": "inactive", "verifications": ["0x32ec773ed7b5a54d1f0ac77944caf76ed30e6b86"], "follower_count": 226, "custody_address": "0xa9619f92856274fc41697024460858ebb76f1a14", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x32ec773ed7b5a54d1f0ac77944caf76ed30e6b86"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/killen-music/die-for-you\"}"}', NULL), - (1047147, '0x8152f3ba9c488ef6c0e4655d7daa70a968b5c535', 0, 1, '2024-05-07 14:10:15+00', 0, 2, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 387, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 783, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jo-suzy/zcqp2d9yvert?si=54337234c1f74ff88b15a365ff4c1143&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1147013, '0x83f9a0459b8d61483510ebc2b94d3b1981040f4c', 0, 1, '2024-05-07 20:23:01+00', 0, 14, '{"fid": 393527, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6e642c6-d7ff-436c-7ba0-c32285120e00/rectcrop3", "profile": {"bio": {"text": "I love cryptocurrency ", "mentioned_profiles": []}}, "username": "orbitals", "power_badge": false, "display_name": "Orbital🎩🍖", "active_status": "inactive", "verifications": ["0xb55b3556cc937633f0e78637c2bd424f5c5da2e7"], "follower_count": 1646, "custody_address": "0xb55b3556cc937633f0e78637c2bd424f5c5da2e7", "following_count": 1895, "verified_addresses": {"eth_addresses": ["0xb55b3556cc937633f0e78637c2bd424f5c5da2e7"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vanotek/vanotek-feat-eneli-back-to-me?ref=clipboard&p=a&c=0&si=39bfb6ca67e14368bd6ecb6a584e92f9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1012325, '0x47ccd09bdb20c9c49b3b36b674f06e4c22147c6d', 0, 1, '2024-05-07 12:29:42+00', 0, 0, '{"fid": 385271, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6688aa1f-6f77-4662-d753-b22d86570000/rectcrop3", "profile": {"bio": {"text": "I like sushi", "mentioned_profiles": []}}, "username": "twelvexdozen", "power_badge": false, "display_name": "🔵🍕🎩🔮🧀🐦🍖🌈", "active_status": "inactive", "verifications": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "follower_count": 178, "custody_address": "0xdc9db47747079e5a677f0f6f8924e03fc0f96f2a", "following_count": 549, "verified_addresses": {"eth_addresses": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "sol_addresses": ["FWqT3hZUDWhcZoa9E1oz8NXEF2JDguEybPSQiNS6fzNH"]}}', '{"{\"url\":\"https://on.soundcloud.com/HaybtBoZ4CJW3reX6\"}"}', NULL), - (1090658, '0x493a1997a5c95b552b0f9642f4430d8f14ba3f5a', 0, 1, '2024-05-07 15:53:54+00', 0, 0, '{"fid": 366037, "object": "user", "pfp_url": "https://i.imgur.com/1pGQsmg.jpg", "profile": {"bio": {"text": "Love nature 자연광\n맞팔환영\nhttps://zora.co/@jjaekani", "mentioned_profiles": []}}, "username": "jjaekani", "power_badge": false, "display_name": "jjaekani", "active_status": "inactive", "verifications": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "follower_count": 760, "custody_address": "0x02dd0d4a46042be8548d3a06680448c925e7e487", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/noino28/duacnt675cu3?si=601557a46f424579b2c83dbf6a93410e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1032017, '0x5509630065fd65c6fc491b909ab9b355de2aa58d', 0, 1, '2024-05-07 13:23:40+00', 0, 1, '{"fid": 287306, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmNTbdC51BzXUjxjnJr2UNn1NCUaGyHiDE232wABnM8WCd?filename=suzy.jpg", "profile": {"bio": {"text": "Follow me🙋‍♀️🙆‍♀️ 🙏/ $DEGEN/ Crypto ", "mentioned_profiles": []}}, "username": "sh0070", "power_badge": false, "display_name": "gim74713🎩🍖🔮", "active_status": "inactive", "verifications": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "follower_count": 1739, "custody_address": "0x3253aea02e5d297c7d61c4c71e0d1e28bac2d889", "following_count": 1084, "verified_addresses": {"eth_addresses": ["0x4e278471f4f36aa72d9a685c1112c1575e5777d4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/i4ohS5obpg5hgr8m6\"}"}', 'sonata'), - (1173411, '0x9825548a2d8eb84affea9055727a97aa436f2d06', 100, 1, '2024-05-15 23:11:17+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/33091c84-a742-4140-3cd5-ea0590c9f600/original\"}","{\"url\":\"https://open.spotify.com/track/7Lf7oSEVdzZqTA0kEDSlS5?si=ZZqwcHygS-i5COx-cf1v8g\"}"}', NULL), - (1012329, '0x432ce6f7bb73606d9108d06a3455a55611bc3f41', 0, 1, '2024-05-07 12:29:33+00', 0, 0, '{"fid": 434241, "object": "user", "pfp_url": "https://i.imgur.com/s4gNzIZ.jpg", "profile": {"bio": {"text": "Hello! Follow please!! 😼 ", "mentioned_profiles": []}}, "username": "miiiin", "power_badge": false, "display_name": "miiiin", "active_status": "inactive", "verifications": ["0x35fd194df96a1df2d325117c917144116d6f09c9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9"], "follower_count": 1111, "custody_address": "0x98e9d3283f9961fe6cdce6ae6c130580cfc55971", "following_count": 1466, "verified_addresses": {"eth_addresses": ["0x35fd194df96a1df2d325117c917144116d6f09c9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9", "0xc3b3bc143b6f0cb4a2919e20c667fa3e0004a3f9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iCdp17ky8SauHiTU8\"}"}', NULL), - (991889, '0x9860888220f20862f54627a8a304f7abfda1fe3b', 0, 1, '2024-05-07 11:30:08+00', 10, 46, '{"fid": 500276, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1cc5400-0442-47ac-8f5d-e3aa34295f00/rectcrop3", "profile": {"bio": {"text": "crypto / gold / jewelry / pet / food\n(맞🔄❤️🔥🚨) https://zora.co/@jhppp\n알파프렌 : https://www.alfafrens.com/channel/0x615d78bB858665d099F754f8720E46864f282406", "mentioned_profiles": []}}, "username": "hunppp", "power_badge": false, "display_name": "똘이아빠🎩🍖🔵🩸", "active_status": "inactive", "verifications": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "follower_count": 1757, "custody_address": "0x1947802e191d13153e2fb42faaff169b3537f1cf", "following_count": 1800, "verified_addresses": {"eth_addresses": ["0x7a0d794c290fb18404a0197525a4392b45a44607"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2072b128-b978-4307-724d-d31e0977b300/original\"}","{\"url\":\"https://open.spotify.com/track/7eBpUuPnDTfbeP1P4P93CS?si=PXzPs8PiSvO2vMKaa3Z9pA\"}"}', 'sonata'), - (940704, '0x759dd30c7352cb73c0253a3e37e315ff7d4247c1', 0, 1, '2024-05-07 08:26:12+00', 0, 2, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3126, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2687, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Bibi Babydoll – Automotivo Bibi Fogosa by LOTUS MUSIC on #SoundCloud https://on.soundcloud.com/1oQe2\"}"}', NULL), - (1012332, '0x652a17d803b7c1645ac5f1597a149a0e3f455a78', 0, 1, '2024-05-07 12:28:59+00', 0, 0, '{"fid": 385271, "object": "user", "pfp_url": "https://34pkzrr7mulph6ru6w54eiw2xcn3bfhb7ced55ixxefq2obladza.arweave.net/3x6sxj9lFvP6NPW7wiLauJuwlOH4iD71F7kLDTgrAPI/", "profile": {"bio": {"text": "I like sushi", "mentioned_profiles": []}}, "username": "twelvexdozen", "power_badge": false, "display_name": "🔵🍕🎩🔮🧀🐦🍖🌈", "active_status": "inactive", "verifications": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "follower_count": 178, "custody_address": "0xdc9db47747079e5a677f0f6f8924e03fc0f96f2a", "following_count": 549, "verified_addresses": {"eth_addresses": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "sol_addresses": ["FWqT3hZUDWhcZoa9E1oz8NXEF2JDguEybPSQiNS6fzNH"]}}', '{"{\"url\":\"https://on.soundcloud.com/HaybtBoZ4CJW3reX6\"}"}', NULL), - (1012636, '0x5689fb560e33da82e9867be6053fd40279b79ffb', 0, 1, '2024-05-07 12:32:50+00', 0, 1, '{"fid": 402923, "object": "user", "pfp_url": "https://i.imgur.com/gaAPtfu.jpg", "profile": {"bio": {"text": "My Channel→\n/restarea\nSweets&Snacks\n\n/pachinko\nパチンコ&スロット\n\n/fishingood\nfishing釣り\n\n/fishigood\n懺悔-Confession Channel\nお返しは大丈夫です🙆‍♂️\nいいキャストにチップkudasai😊", "mentioned_profiles": []}}, "username": "siokaratombo", "power_badge": false, "display_name": "siokaratombo🍖🔮", "active_status": "inactive", "verifications": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "follower_count": 969, "custody_address": "0x14b19445dd6fb33daa1b55bd98773717d20834d2", "following_count": 1125, "verified_addresses": {"eth_addresses": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ltykvx66ccdr/awich-longiness-remix?si=fac0909927e64f60bcf45739ae2e23ae&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1033082, '0xb5af810a70d06d5f58a694e640f88ff473b9c1fe', 0, 1, '2024-05-07 13:25:42+00', 0, 2, '{"fid": 492039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fd8a4449-4451-42bf-efae-a209b0721300/rectcrop3", "profile": {"bio": {"text": "Welcome to all coin info sharing I respect any opinions.", "mentioned_profiles": []}}, "username": "vvely", "power_badge": false, "display_name": "Kirby⭐️", "active_status": "inactive", "verifications": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "follower_count": 1848, "custody_address": "0x4aa36bd75aae9d6cb64f43e154730bd311787e7f", "following_count": 2698, "verified_addresses": {"eth_addresses": ["0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6", "0x023a0cff85c69560383a6e6114fcb402003abdc3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TaGtB244f55jFfK66\"}"}', 'sonata'), - (1054685, '0x5187332250659341c3b0356279230d18c117441a', 0, 1, '2024-05-07 14:37:17+00', 0, 0, '{"fid": 433251, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f6a5a526-e691-4349-f325-d184010fff00/rectcrop3", "profile": {"bio": {"text": "Hello :) 🫶🏻Follow me 💓\n귀여운 솜이의 누나😘\n🫂 https://www.alfafrens.com/channel/0xB64dF5288a78609eA43006A1cbFeF48438b0AEed", "mentioned_profiles": []}}, "username": "commin", "power_badge": false, "display_name": "Somi 🐾🫂", "active_status": "inactive", "verifications": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "follower_count": 3179, "custody_address": "0xf71706ad4da8e9296062c3cb5a55504638c1fe75", "following_count": 2694, "verified_addresses": {"eth_addresses": ["0x4bf92605548f9cf02e0345a7857cab1116ffe091"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2share138/pateko-jayci-yucca-kid-wine-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1041813, '0x23ea8470bab5fedba5dff6de80584d31346a65b0', 0, 1, '2024-05-07 13:51:50+00', 0, 3, '{"fid": 501778, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d9e056c-8e4c-4088-7bc6-7364799f1a00/rectcrop3", "profile": {"bio": {"text": "where you are you are\nnice meet you friends", "mentioned_profiles": []}}, "username": "pinetree0", "power_badge": false, "display_name": "pinetree0", "active_status": "inactive", "verifications": ["0x44e503cdab23b97981231e03eccdeb3f15b00905"], "follower_count": 672, "custody_address": "0x262bf67a37ceabc3c57ba068320e7adfca86e543", "following_count": 920, "verified_addresses": {"eth_addresses": ["0x44e503cdab23b97981231e03eccdeb3f15b00905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-905282648/iu-holssi-o?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1047150, '0x37bf4f9da657825e14db47ace4e3eb57b95665c5', 0, 1, '2024-05-07 14:11:05+00', 0, 14, '{"fid": 503286, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/141b938a-917a-4e10-4b4e-520ee03b6000/rectcrop3", "profile": {"bio": {"text": "I live in harbor 🛳️ 항구도시 아콰맨🐟", "mentioned_profiles": []}}, "username": "realfishboy", "power_badge": false, "display_name": "realfishboy🐟", "active_status": "inactive", "verifications": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "follower_count": 2064, "custody_address": "0x95089aec0377dd7385eff5098baca55420bdac45", "following_count": 2011, "verified_addresses": {"eth_addresses": ["0x228313f87fb8a51de733058b5c502fdd9bc05865"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nettwerkmusicgroup/passenger-let-her-go?si=1e3a5b69919046f6978ac863ace06469&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1033094, '0xaa41b26425274086472536b61ead916fe2f6d5f4', 0, 1, '2024-05-07 13:26:04+00', 0, 3, '{"fid": 437984, "object": "user", "pfp_url": "https://i.imgur.com/Z6eBT4Q.jpg", "profile": {"bio": {"text": "아이스맨입니다.선팔 맞팔 좋/댓/리 칼같이 찾아갑니다! Welcome to iceman world!\n조대리 환영♡", "mentioned_profiles": []}}, "username": "heybro", "power_badge": false, "display_name": "Iceman", "active_status": "inactive", "verifications": ["0xc88135892864309c30ec51734b02ba197c137830"], "follower_count": 2353, "custody_address": "0x5ed9a31cc288a761cde7160645e1975c070d1968", "following_count": 1941, "verified_addresses": {"eth_addresses": ["0xc88135892864309c30ec51734b02ba197c137830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QAPK7\"}"}', 'sonata'), - (1012749, '0xa7e283288c4a7c5774c0a3e928ee4bbfe3501419', 0, 1, '2024-05-07 12:33:49+00', 0, 1, '{"fid": 306841, "object": "user", "pfp_url": "https://i.imgur.com/LrFRBwx.gif", "profile": {"bio": {"text": "https://www.pizzaverse.xyz\n📞→🍕→🚙→🏠→!(^^)!", "mentioned_profiles": []}}, "username": "bym02130", "power_badge": false, "display_name": "bym02130.degen🎩🔮🍕", "active_status": "inactive", "verifications": ["0xcf70041f229fd3092d0630406444d89ebe96928a"], "follower_count": 1404, "custody_address": "0x9c82fec10d7dd211c4e81063e2b1e915392af361", "following_count": 1845, "verified_addresses": {"eth_addresses": ["0xcf70041f229fd3092d0630406444d89ebe96928a"], "sol_addresses": ["94eS7AfnmLWJiyjn8JBk7jgpzxEL1zbMwnSfUfUSemEv"]}}', '{"{\"url\":\"https://soundcloud.com/imsangryuh/dream-on-dream?si=dd00a798c56c4fed87c5d72afb3627ea&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1013055, '0x73e066952e4555c8d80a6a578b7acdbdac902e0e', 0, 1, '2024-05-07 12:38:45+00', 0, 0, '{"fid": 500124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28fe94f9-5119-4ffa-904e-7f7f7bdbc700/rectcrop3", "profile": {"bio": {"text": "dex", "mentioned_profiles": []}}, "username": "dexlover", "power_badge": false, "display_name": "dexlover🎩🍖", "active_status": "inactive", "verifications": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "follower_count": 992, "custody_address": "0x2cf0493a0cabe5b42db8ee724595ee1f3594ae6c", "following_count": 1553, "verified_addresses": {"eth_addresses": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-471596025/sg-partner-for-life?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1012747, '0xb9568a8d37449b664fc0ce357bc9cdda50e12243', 0, 1, '2024-05-07 12:35:43+00', 0, 5, '{"fid": 193746, "object": "user", "pfp_url": "https://i.imgur.com/qV0WoeH.jpg", "profile": {"bio": {"text": "猫の恩返しに出てくるナトルが好きです。\nMy creative inspiration comes down at 5~9 PM every day.", "mentioned_profiles": []}}, "username": "luca5642.eth", "power_badge": false, "display_name": "luca🎩🔵👻", "active_status": "inactive", "verifications": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "follower_count": 1310, "custody_address": "0xfcb46afe791a0ff441ecb78341664676e6c9a599", "following_count": 1138, "verified_addresses": {"eth_addresses": ["0x5c0aed74917667f07786947ed677a7e3c808e006"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nrgHLYxk7Gp6eMFx9\"}"}', 'musicjp'), - (1173414, '0x26faeee59b4173a48716e95b959b9c3b0d8aaa21', 100, 1, '2024-05-15 23:15:59+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/4DcrZLp19qTdBYqc2bgj3V?si=T2-_ycJtQlabFJ_9IiX_tQ\"}"}', NULL), - (1041814, '0xc846fe3cf7ade8dd09450b3a8242566036bd0588', 0, 1, '2024-05-07 13:52:43+00', 0, 0, '{"fid": 510718, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/410ae284-d695-45d3-73d3-51b2e5f83d00/rectcrop3", "profile": {"bio": {"text": "Hi :) \nLet’s share our interests", "mentioned_profiles": []}}, "username": "!510718", "power_badge": false, "display_name": "Pancake3000", "active_status": "inactive", "verifications": ["0xb283e349a9f50db67ab5fd9617535781684aca14"], "follower_count": 74, "custody_address": "0xce5af24b93ca9a0a07a055052eadebe3d4ccd749", "following_count": 136, "verified_addresses": {"eth_addresses": ["0xb283e349a9f50db67ab5fd9617535781684aca14"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/filmlostdata/love-of-the-loveless?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1054070, '0x2fefe1ddbf2cd981209ae7041e2423c0f2142398', 0, 1, '2024-05-07 14:35:16+00', 0, 6, '{"fid": 401805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baf0f02d-0a81-476e-78af-98c7aaa38000/original", "profile": {"bio": {"text": "Lovely 🤩\n대한민국 국민 🇰🇷 \n\n볼수록 매력있고 꽤 괜찮은사람.\n\n경제적으로 완전한 자유를 누리는 자.\n\n", "mentioned_profiles": []}}, "username": "peaceful-hj", "power_badge": false, "display_name": "Peaceful-hj", "active_status": "inactive", "verifications": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "follower_count": 1824, "custody_address": "0xe6520f1c42419d3526a8a812fe3850aaae6208ef", "following_count": 3268, "verified_addresses": {"eth_addresses": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jqWnR\"}"}', 'sonata'), - (1039234, '0x634cf2a7f7e00f8198cc6b1717f935c7a152a9c3', 0, 1, '2024-05-07 13:40:25+00', 0, 15, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 246, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 357, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7xlx0W7xtkgjIYQAdmF2x7?si=9cfb1d94a7c54ed2\"}"}', 'sonata'), - (1098718, '0x1d45d4dc43ce0c0655031704999df6926010faa7', 0, 1, '2024-05-07 16:11:22+00', 0, 2, '{"fid": 4513, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/473cb368-537c-4d53-c37a-ef8e08fe7d00/original", "profile": {"bio": {"text": "Music NFT collector and activist. First things coffee ☕️. Host of the /mls channel", "mentioned_profiles": []}}, "username": "seattlecrypto.eth", "power_badge": true, "display_name": "Jer | seattlecrypto.eth", "active_status": "inactive", "verifications": ["0x0f23189b256939996dec01766f6b2e581afb5bb3", "0x287e98cefeef5c834fb03811963abd6fca5e525f", "0x247a1e2bf4c0a0a13d35661d8cc6e4c01246e1f2", "0x1ae71ced9eb2104d8f4ec4f2467ad4f04d12a8c0"], "follower_count": 967, "custody_address": "0x6ae8de982c7cdc8c97ef3ebf85924c1da1c0ba1a", "following_count": 660, "verified_addresses": {"eth_addresses": ["0x0f23189b256939996dec01766f6b2e581afb5bb3", "0x287e98cefeef5c834fb03811963abd6fca5e525f", "0x247a1e2bf4c0a0a13d35661d8cc6e4c01246e1f2", "0x1ae71ced9eb2104d8f4ec4f2467ad4f04d12a8c0"], "sol_addresses": ["GAGrSfLvsAqukjCehN5kwnXax61oD18ZhJjTyximggB8"]}}', '{"{\"url\":\"https://www.sound.xyz/raeisla/miles-and-miles\"}"}', NULL), - (1010936, '0xc6045573653ce2ab42403110c5a9fa2edbc3c39c', 0, 1, '2024-05-07 12:26:26+00', 0, 0, '{"fid": 372218, "object": "user", "pfp_url": "https://i.imgur.com/lj6N0Dz.jpg", "profile": {"bio": {"text": "I love excitement. I can say that I love social media very much", "mentioned_profiles": []}}, "username": "bigdadi02", "power_badge": false, "display_name": "Bigdadi02🎩,➡️Farcon", "active_status": "inactive", "verifications": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "follower_count": 300, "custody_address": "0x28cc1bbc9e00df08d127bf3316a858c5e1d89766", "following_count": 362, "verified_addresses": {"eth_addresses": ["0x81f7a5244a87eac618cdf55751289cc47cd5c634"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bEzZZbqfUdk9FArG7\"}"}', 'sonata'), - (1173418, '0x2d8fddbe0d3b36e72395eea0b46f02064b34e779', 100, 1, '2024-05-15 23:18:48+00', 0, 7, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 5750, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 363, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3nNmRE0DxHC6ZaKkrpUumS?si=uB-04BvMQNWs95wRsnmFdw&context=spotify%3Aalbum%3A4FftCsAcXXD1nFO9RFUNFO\"}"}', 'bangers'), - (1009003, '0x04157bc0a4347995c7c41a94ee177df4a4a73b8a', 0, 1, '2024-05-07 12:16:27+00', 0, 1, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 980, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7pYiTMBG8sgPJvXZZ476i1?si=Eh-9DiXQTDy3R9Xv6CgQ2g\"}"}', 'sonata'), - (1136261, '0x1d3c4d94d377c06bc0126ce375264006a5bc0459', 0, 1, '2024-05-07 19:16:59+00', 0, 3, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x4c61e68ed78381f80c5da81176cc019b019d09c4"], "follower_count": 5019, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2505, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x4c61e68ed78381f80c5da81176cc019b019d09c4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-300679584/vdvs4kgohgwn?si=6927728726354b30a98f0176da52415a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (907559, '0xd2a2e047a6b46198f2d3c8736f3d540dded2a58a', 0, 1, '2024-05-07 06:57:46+00', 0, 2, '{"fid": 257278, "object": "user", "pfp_url": "https://i.imgur.com/MIwOSdK.jpg", "profile": {"bio": {"text": "A storyteller, interactive media creator, Canadian Hip Hop poet, 360 VR Founder MixItMedia, and Communications, Content & Experience Director with Metaknyts.", "mentioned_profiles": []}}, "username": "symbolik", "power_badge": false, "display_name": "Symbolik", "active_status": "inactive", "verifications": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "follower_count": 94, "custody_address": "0xdef6d16539cfcc8793ce16ab01c563b17642bd23", "following_count": 111, "verified_addresses": {"eth_addresses": ["0x85399d0f51a78e7cc66330f3b9eb83c5e5762513"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/symbolik/i-manifest\"}"}', 'p00ls'), - (1012896, '0x268ae64a54b0fe251073e5f3db87b17298f825c0', 0, 1, '2024-05-07 12:34:47+00', 0, 6, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1300, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 903, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3QppEXrAGuSrs8pmlxBDou\"}"}', 'musicjp'), - (1013066, '0x260e8acb3c48e522a21d98119deb357afe31d831', 0, 1, '2024-05-07 12:39:57+00', 0, 18, '{"fid": 500268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/35dc706c-83f8-486c-4be2-63b743173400/rectcrop3", "profile": {"bio": {"text": "Welcome 😎\nI Love Degen ❤️", "mentioned_profiles": []}}, "username": "bizzykong", "power_badge": false, "display_name": "Bizzykong", "active_status": "inactive", "verifications": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "follower_count": 2801, "custody_address": "0x4b2ba2352a192497c065bc04927b125782d730c1", "following_count": 2510, "verified_addresses": {"eth_addresses": ["0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/btsforlife/bts-spring-day\"}"}', 'sonata'), - (1173461, '0x90fe0b0a53652a9f52c4078aa28db6d6d7779086', 100, 1, '2024-05-16 01:15:26+00', 0, 16, '{"fid": 20270, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fa6a9c8a-ade1-496b-2534-c9b6f7a1cf00/original", "profile": {"bio": {"text": "connector 🫂 vulnerability is strength 💪 building @unofficial, /design", "mentioned_profiles": []}}, "username": "heavygweit", "power_badge": true, "display_name": "erica", "active_status": "inactive", "verifications": ["0x18fc3c60a80ba26a076cf633c239df0e2e80a797", "0xbb0736dab65078c1a8f679a01de2438ccca8f4c1"], "follower_count": 9085, "custody_address": "0x92ce59c18a97646e9a7e011653d8417d3a08bb2b", "following_count": 456, "verified_addresses": {"eth_addresses": ["0x18fc3c60a80ba26a076cf633c239df0e2e80a797", "0xbb0736dab65078c1a8f679a01de2438ccca8f4c1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Ls53fBNVfaXTROBi6X8Hw?si=3UDXP2rJRFmbqH0c3LI8QA\"}"}', 'adhd'), - (1013057, '0xb84464d3dc92b1de16b93b7532651eb8974ce095', 0, 1, '2024-05-07 12:38:29+00', 0, 1, '{"fid": 387117, "object": "user", "pfp_url": "https://i.imgur.com/6NtMrL7.jpg", "profile": {"bio": {"text": "🔰初心者🔰\n\nプロフィール画は、愛犬チワプーのmickeyです。\n♡専業主婦♡\n愛犬のことだったり、料理だったり投稿しますのでよろしくお願いします", "mentioned_profiles": []}}, "username": "rinkun", "power_badge": false, "display_name": "mickey", "active_status": "inactive", "verifications": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "follower_count": 538, "custody_address": "0x095a2750cae8910bf45d102a3e9d51a1821c92e4", "following_count": 404, "verified_addresses": {"eth_addresses": ["0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/t-trang-801042212/t-ara-sexy-love?utm_source=mobi&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1041817, '0x32413a4b837264d4b65ca51130b1e29b4a0db39b', 0, 1, '2024-05-07 13:51:25+00', 0, 1, '{"fid": 504309, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8877fe32-d82d-4d29-909c-390bb3019600/rectcrop3", "profile": {"bio": {"text": "디젠 $5 다시 만들었어요 팔로우 부탁해염 ㅠ", "mentioned_profiles": []}}, "username": "heejinzzang", "power_badge": false, "display_name": "Jasonisn🎩🍖", "active_status": "inactive", "verifications": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "follower_count": 1560, "custody_address": "0xc9a5ed26b1e3506cd3dc7635160264bb0197df94", "following_count": 1814, "verified_addresses": {"eth_addresses": ["0xbdf8a2686c675851130350ca4e1cd21e6707a268"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zA2gFb2Qn63FisoLA\"}"}', NULL), - (1013065, '0x34768d2a648d505d9d350b92691131ff53a9884e', 0, 1, '2024-05-07 12:38:34+00', 0, 0, '{"fid": 306841, "object": "user", "pfp_url": "https://i.imgur.com/LrFRBwx.gif", "profile": {"bio": {"text": "https://www.pizzaverse.xyz\n📞→🍕→🚙→🏠→!(^^)!", "mentioned_profiles": []}}, "username": "bym02130", "power_badge": false, "display_name": "bym02130.degen🎩🔮🍕", "active_status": "inactive", "verifications": ["0xcf70041f229fd3092d0630406444d89ebe96928a"], "follower_count": 1404, "custody_address": "0x9c82fec10d7dd211c4e81063e2b1e915392af361", "following_count": 1845, "verified_addresses": {"eth_addresses": ["0xcf70041f229fd3092d0630406444d89ebe96928a"], "sol_addresses": ["94eS7AfnmLWJiyjn8JBk7jgpzxEL1zbMwnSfUfUSemEv"]}}', '{"{\"url\":\"https://soundcloud.com/imsangryuh/dream-on-dream?si=864e970da6ae4c1fbab84a0912e962a0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'japanf4f'), - (1055554, '0xa2140c320b5871bdb0e0bc5c43cf40e17e75cee8', 0, 1, '2024-05-07 14:39:07+00', 0, 1, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1708, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/VXkx4XVBzLhGxqjK6\"}"}', 'sonata'), - (1047156, '0x25bd9ed2a7209367326cd416a586abe61220b24b', 0, 1, '2024-05-07 14:15:40+00', 0, 1, '{"fid": 376591, "object": "user", "pfp_url": "https://i.imgur.com/26ogZqN.jpg", "profile": {"bio": {"text": "I work hard to fulfill my dreams. ", "mentioned_profiles": []}}, "username": "saadat2026", "power_badge": false, "display_name": "Zahra79", "active_status": "inactive", "verifications": ["0x0b023c4da4065013413220917f651395e1fbf8ef"], "follower_count": 1625, "custody_address": "0x110d4f5671b3b47272baefaed6fdb6e75f23cb43", "following_count": 1508, "verified_addresses": {"eth_addresses": ["0x0b023c4da4065013413220917f651395e1fbf8ef"], "sol_addresses": ["ADi5ywaaQQxqKdfJ3e2XE4aRwkvjTY7eA3p7bbwf6Qoq"]}}', '{"{\"url\":\"https://on.soundcloud.com/TVp7AHNGhTcqUqHE8\"}"}', 'sonata'), - (1160726, '0x4e18f4f8e646a413368dc6fd1dd766744186e617', 0, 1, '2024-05-07 23:32:10+00', 0, 11, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3728, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1744, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cn7irnevsapn/migyo-ra-d\"}"}', 'sonata'), - (1033782, '0x47276b3ebc5b08ac17e50edfc9e776d310d3c319', 0, 1, '2024-05-07 13:26:54+00', 0, 5, '{"fid": 421000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1ddbc0a2-013c-4300-1d16-dd04765af000/original", "profile": {"bio": {"text": "Japanese guy who loves crypto.\nhosting /musicjp /games-jp /stories-jp ", "mentioned_profiles": []}}, "username": "nyasu", "power_badge": false, "display_name": "Nyasu(🎩🎙️🍖🔥)", "active_status": "inactive", "verifications": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "follower_count": 2386, "custody_address": "0xff5035ccce1e588d7ee45dbce9c700ce7b2ab609", "following_count": 1334, "verified_addresses": {"eth_addresses": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/tuki82434/vf9cgdy7vt3g\"}"}', 'musicjp'), - (1047157, '0x8b2ed5f2f59569a44c9fc80d12bfe33d4ee3457d', 0, 1, '2024-05-07 14:16:24+00', 0, 3, '{"fid": 380528, "object": "user", "pfp_url": "https://i.imgur.com/wD98KiX.jpg", "profile": {"bio": {"text": "F4F #followback 10000%\nhttps://zora.co/@mimi0527", "mentioned_profiles": []}}, "username": "minoo", "power_badge": false, "display_name": "mimi🎩", "active_status": "inactive", "verifications": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "follower_count": 2507, "custody_address": "0x04d7cf3f14b8893e4fb094163a9f7db1667350a9", "following_count": 2374, "verified_addresses": {"eth_addresses": ["0xff9ca790b91659402205f11567b8e3fbd5a3fb8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x3uBvuENgXkvPHuq7\"}"}', 'sonata'), - (1012641, '0x1f5622203cfa725680c255095f149616113c6b89', 0, 1, '2024-05-07 12:32:24+00', 0, 3, '{"fid": 411455, "object": "user", "pfp_url": "https://i.imgur.com/j1ngOFQ.jpg", "profile": {"bio": {"text": "Sunny Day : )\n맛있게 먹고, 재밌게 살기🎶 ", "mentioned_profiles": []}}, "username": "sunny38", "power_badge": false, "display_name": "Sunny🙂🍖", "active_status": "inactive", "verifications": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "follower_count": 2227, "custody_address": "0x58375c5d74a72693c589764f07423f151dd130bc", "following_count": 1569, "verified_addresses": {"eth_addresses": ["0x5ede0b50ca07d799b26a4072532180223faadf63"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ByYRZ\"}"}', 'sonata'), - (1055561, '0xd7c3256cb8d3ecda4541d4a95d944beb2ec6bd16', 0, 1, '2024-05-07 14:40:28+00', 0, 8, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1388, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1566, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1kYOBf8M526tuAtiwD3xPi?si=FNBreRJKSQ697olRiGt7qw&context=spotify%3Aplaylist%3A2UN9Ny5tHrBu6dxz48IR8j\"}"}', 'japan-cashai'), - (1059077, '0xa8f37f06ced24e24c0b99ecc70ebf7fd6264c9b9', 0, 1, '2024-05-07 14:50:36+00', 0, 1, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3543, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3564, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4HKkiCLXyBHrnpGS6\"}"}', 'sonata'), - (1122817, '0x561bb2d5c43ac28ed2799e5899a535d58e7cfbec', 0, 1, '2024-05-07 18:02:12+00', 0, 2, '{"fid": 350592, "object": "user", "pfp_url": "https://i.imgur.com/US6Oy6R.jpg", "profile": {"bio": {"text": "Zora https://zora.co/@crazygom_origin", "mentioned_profiles": []}}, "username": "lovely-jyjy", "power_badge": false, "display_name": "Juyoung_Oh", "active_status": "inactive", "verifications": ["0xe2d7b4247718a7bddbe5cc7d8853b37a4f46abaf"], "follower_count": 1324, "custody_address": "0x5ca29c8c6b7d3cf2c8e32ba5f58579c8e796ad06", "following_count": 2399, "verified_addresses": {"eth_addresses": ["0xe2d7b4247718a7bddbe5cc7d8853b37a4f46abaf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost24/joy-introduce-me-a-good-person-hospital-playlist-ost-part-2?si=3f7a9ecc4af64f7696bc1829073f7a2e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160731, '0xd418daeda75654f1303b0f12d2465ed20459cc45', 0, 1, '2024-05-08 02:19:58+00', 0, 47, '{"fid": 4407, "object": "user", "pfp_url": "https://i.imgur.com/kynnpYw.jpg", "profile": {"bio": {"text": "The Farcaster formerly known as Kchamp. Books, beats, bodybuilding, bright ideas and beautiful things.\n\nkatherinechampagne.com ", "mentioned_profiles": []}}, "username": "keccers.eth", "power_badge": true, "display_name": "Katherine", "active_status": "inactive", "verifications": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "follower_count": 83887, "custody_address": "0xe4c5b20fd2168af6fe9d74e3e46f55f12684567f", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/fDwVYTp43QxoCyGB8\"}"}', NULL), - (1013061, '0xd545063ddaefa7c0300cca88e254da6383de4aac', 0, 1, '2024-05-07 12:37:54+00', 0, 0, '{"fid": 500124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28fe94f9-5119-4ffa-904e-7f7f7bdbc700/rectcrop3", "profile": {"bio": {"text": "dex", "mentioned_profiles": []}}, "username": "dexlover", "power_badge": false, "display_name": "dexlover🎩🍖", "active_status": "inactive", "verifications": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "follower_count": 992, "custody_address": "0x2cf0493a0cabe5b42db8ee724595ee1f3594ae6c", "following_count": 1553, "verified_addresses": {"eth_addresses": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/steve-han-399947440/zseds4hlzjhb?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1050048, '0xea0ef8943fa9513bbb08744908ff69b7d72816e9', 0, 1, '2024-05-07 14:21:48+00', 0, 3, '{"fid": 377731, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18e38b13-41d1-4ccc-5442-fba0c95b0e00/rectcrop3", "profile": {"bio": {"text": "Sogang Univ(major. Mngt) /\nhttps://zora.co/@runchic / \nFull marathon Runner/\nhttps://drakula.app/user/runchic/\nhttps://www.alfafrens.com/channel/0xe6f2b3460ded6", "mentioned_profiles": []}}, "username": "runchic", "power_badge": false, "display_name": "Makemoneybytrading", "active_status": "inactive", "verifications": ["0xf3f5e0ca82f167926af198af639629794865b532"], "follower_count": 2926, "custody_address": "0xac344c5c862884288c1673c2a4f3265fb9d4039f", "following_count": 3336, "verified_addresses": {"eth_addresses": ["0xf3f5e0ca82f167926af198af639629794865b532"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/eJLCpUiekXe68ULb9\"}"}', 'sonata'), - (1012750, '0x7b7b1fbd7609109cff544797d3ee29931b844910', 0, 1, '2024-05-07 12:35:52+00', 0, 0, '{"fid": 17879, "object": "user", "pfp_url": "https://i.imgur.com/ZEiffdm.jpg", "profile": {"bio": {"text": "Web3 Game / NFT \n\nTwitter(X): https://twitter.com/uhohoi5/ (凍結中🧊)\n新垢: https://twitter.com/tyoriso02\nDorakula: https://drakula.app/user/tyoriso", "mentioned_profiles": []}}, "username": "tyoriso", "power_badge": false, "display_name": "tyoriso👻🎩🔄🔮🍖", "active_status": "inactive", "verifications": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "follower_count": 908, "custody_address": "0x1493c7d5eeeac5ebcfe1877c3c57c6ae40385f29", "following_count": 878, "verified_addresses": {"eth_addresses": ["0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7zVpbUsMR3cFQZcDA\"}"}', 'bgm'), - (1033785, '0x21b38923c89fd8b6bb4d333a87f87f8878604ee4', 0, 1, '2024-05-07 13:27:22+00', 0, 0, '{"fid": 418569, "object": "user", "pfp_url": "https://i.imgur.com/v2kJH36.jpg", "profile": {"bio": {"text": "Hello~ Nice to meet you.", "mentioned_profiles": []}}, "username": "suheo8357", "power_badge": false, "display_name": "suheo", "active_status": "inactive", "verifications": ["0x66cfb602562d4ccf08f808b4385d1f985baff6c5"], "follower_count": 1847, "custody_address": "0xb18263105f7811d4db9049b20f95bacafc826de9", "following_count": 2136, "verified_addresses": {"eth_addresses": ["0x66cfb602562d4ccf08f808b4385d1f985baff6c5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9s1Uk\"}"}', 'sonata'), - (1047458, '0x6fb4c00738cd8e5e8e4fe2c458bf5b7860a89187', 0, 1, '2024-05-07 14:17:26+00', 0, 4, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2121, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2673, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rgu6m\"}"}', 'sonata'), - (1047144, '0xc12ea4d29299858b2844a3ea87014ad23b326688', 0, 1, '2024-05-07 14:09:08+00', 0, 4, '{"fid": 497221, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa7929d2-1ba2-4adc-0976-bd207f145a00/rectcrop3", "profile": {"bio": {"text": "Hello 🔥I love BASE🔵 $degen🎩\nDegen-punks 🙃 Ham 🍖 Onchain ⛓️\n\n", "mentioned_profiles": []}}, "username": "coldmilk", "power_badge": false, "display_name": "Icelatte☕️🎩🔮🍖⛓️", "active_status": "inactive", "verifications": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "follower_count": 1602, "custody_address": "0x966216ab71fe543cb25bd414cf6ee1161462862f", "following_count": 2562, "verified_addresses": {"eth_addresses": ["0xb632ef220a6ade029d79f794f466ca2ef315ab24"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/721x5aQpVWNNMePcA\"}"}', 'sonata'), - (1055563, '0xe04c0dd3d14a90d03603114906c1713b29980cc2', 0, 1, '2024-05-07 14:40:20+00', 0, 4, '{"fid": 501667, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0edb8c4-20fd-4a2c-0ea2-3ac67a3da100/rectcrop3", "profile": {"bio": {"text": "Let''s live with ease ☕️", "mentioned_profiles": []}}, "username": "coffeejoa", "power_badge": false, "display_name": "coffeejoa☕️🍖🎩", "active_status": "inactive", "verifications": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "follower_count": 1124, "custody_address": "0x2f4f27985c74b1c919c00a92f4b2264e4ed174c4", "following_count": 960, "verified_addresses": {"eth_addresses": ["0x40b852d82bbbade81ba04ef155b9fe02ac479cde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KY4dQZ8F1oVQ5kVP9\"}"}', 'sonata'), - (1012936, '0x0d36b553c96e026fe400eb1beda435e634c41cac', 0, 1, '2024-05-07 12:36:36+00', 0, 0, '{"fid": 289911, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a0bf9ffe-c91d-413a-4dca-e7c726796000/original", "profile": {"bio": {"text": "\n", "mentioned_profiles": []}}, "username": "savoir", "power_badge": false, "display_name": "Younghyun🎩🍖🩸🔮🔵", "active_status": "inactive", "verifications": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "follower_count": 1231, "custody_address": "0x64fb1e0672d9e28747b34ecfb02be694319b7963", "following_count": 1962, "verified_addresses": {"eth_addresses": ["0xf2590aaabe69015ca6f03b9a079c0c75736b410f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Q0UWoXgG922749IvXCEQO?si=b56b5868bcee466c\"}"}', NULL), - (1033786, '0x98e5f7ccbb49d1b523e215331c31ca0d048c2107', 0, 1, '2024-05-07 13:27:25+00', 0, 0, '{"fid": 480504, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c8baab0-ef56-4da5-8673-f65d9534c300/original", "profile": {"bio": {"text": "안녕하세요.\n시고르자브종 입니다.\n멍~멍~\nCountry Dog\nBOW WOW~", "mentioned_profiles": []}}, "username": "quhn", "power_badge": false, "display_name": "CountryDog", "active_status": "inactive", "verifications": ["0xf2e11f72f83feaa573e0805266c023b052b32461"], "follower_count": 1502, "custody_address": "0xee030ff4b1f535f20d7106c66c8d44322904afad", "following_count": 945, "verified_addresses": {"eth_addresses": ["0xf2e11f72f83feaa573e0805266c023b052b32461"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki19/dynamicduo-lee-young-ji-smoke?si=2c7ad28e083543a0b9d33b7ac64cadb7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (1041811, '0x7245d07a3ec52fb26f6ac9617e9c1273255a4e5a', 0, 1, '2024-05-07 13:53:03+00', 0, 0, '{"fid": 501014, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f516c36-591e-4d18-93ce-f3cebed90c00/original", "profile": {"bio": {"text": "Communication,daily life sharing\n Crypto, Degen\n", "mentioned_profiles": []}}, "username": "gigigi", "power_badge": false, "display_name": "curry🎩🍖", "active_status": "inactive", "verifications": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "follower_count": 1506, "custody_address": "0xd6df1a9924a9dd7e8dbddcf573b291760b038e86", "following_count": 1778, "verified_addresses": {"eth_addresses": ["0x4a722ae7c5ed9b438755e567f5531eb113f044cb", "0x7aebb0a3b7d51bd15076b8503d0bc2738a068235"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bart-ouwehand/up-town-funk?si=b023e21f4b404333ad1fe599f6b72fe8&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1013189, '0xbf66cd3a4729e1d8f55256fd8f49a71e8b61951a', 0, 1, '2024-05-07 12:40:15+00', 0, 0, '{"fid": 426167, "object": "user", "pfp_url": "https://i.imgur.com/FS1qOCn.gif", "profile": {"bio": {"text": "Host of /videogamemusic\nCrypto enthusiast with geek streak for anime and video game bgms\nAvid fan of HAM 🍖", "mentioned_profiles": []}}, "username": "kenjiquest", "power_badge": false, "display_name": "Kenjiquest🎩🍖🔵 ", "active_status": "inactive", "verifications": ["0x59479108adfd232aa3f2af184639fa0e08f24dde"], "follower_count": 1312, "custody_address": "0x99a5aed1bd83a7162223d34b4ee43f54284afc7e", "following_count": 656, "verified_addresses": {"eth_addresses": ["0x59479108adfd232aa3f2af184639fa0e08f24dde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1RLBpg5y6ou65skg7\"}"}', NULL), - (1047165, '0x16756a200bf652960da5fc0e8bc362d476ff2659', 0, 1, '2024-05-07 14:09:00+00', 0, 1, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋の子なのです。\n憧れはジャンヌちゃん!わたしも救済しまくる!!\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 423, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/BsJdKZEPZn2eBJGGA\"}"}', 'likewen'), - (1055572, '0xa6fb85bef9a5557ea612b1d7a626e608cd253991', 0, 1, '2024-05-07 14:41:11+00', 0, 1, '{"fid": 475970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d303aa25-974b-42f3-d5e6-8a2cbd83b500/original", "profile": {"bio": {"text": "맥주를 너무 사랑하는 남자!\n하지만 통풍은 무서운 남자!\n부자되기를 두려워하지 않는 남자!\nHighly beer addicted!🍻\nGood day to dance😀", "mentioned_profiles": []}}, "username": "sarnath8282", "power_badge": false, "display_name": "sarnath8282", "active_status": "inactive", "verifications": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "follower_count": 1451, "custody_address": "0xd7ad189a1b9637b6e1383d0a5bdbf23599408568", "following_count": 2597, "verified_addresses": {"eth_addresses": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/stowen-1/cover-1?si=0a618f4d02be4a028b8b13a2a038ba6a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'korea-f4f'), - (1104890, '0xa681a6e3be0ec83ebc12e2581d2b3b689a159b45', 0, 1, '2024-05-07 16:32:10+00', 0, 12, '{"fid": 429583, "object": "user", "pfp_url": "https://i.imgur.com/VaIYZSC.jpg", "profile": {"bio": {"text": "#맞팔환영합니다#모두부자됩시다", "mentioned_profiles": []}}, "username": "imi8800", "power_badge": false, "display_name": "imi8800", "active_status": "inactive", "verifications": ["0x4659b162c2ce0bac0d1c20cfdd7760c3b8d48840"], "follower_count": 2422, "custody_address": "0x0c9bd188195ebf28e4100d993663a0d48de69c5c", "following_count": 2648, "verified_addresses": {"eth_addresses": ["0x4659b162c2ce0bac0d1c20cfdd7760c3b8d48840"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QSs69n3dC6xaw4JGA\"}"}', 'sonata'), - (1145810, '0xe4b8d4a08f5ac13b375888b46dfb831c9eb79a21', 0, 1, '2024-05-07 20:15:31+00', 0, 0, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 287, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YJkBqBKcHBpIUDsar0RCE?si=9a7ef482bd22467d\"}"}', 'housemusic'), - (1012888, '0x20bad0ace5cd64a6d0a8651eb643a6ae85449871', 0, 1, '2024-05-07 12:37:12+00', 0, 0, '{"fid": 339677, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2649c70f-1a5a-4688-e859-24d3b75e5c00/rectcrop3", "profile": {"bio": {"text": "Thinking about the future and now. \nAnd Im always trying to figure out the problems.", "mentioned_profiles": []}}, "username": "sijin", "power_badge": false, "display_name": "korean indie music🍖🎩", "active_status": "inactive", "verifications": ["0xdb5d7166afeceae378d1393f6e4adb822fbb9530", "0x1a13975b89fb2e19a6c35ee38e22c9efacc837de"], "follower_count": 2455, "custody_address": "0xc9ab905d007b877c67ed835225b4adc60f2eddca", "following_count": 2692, "verified_addresses": {"eth_addresses": ["0xdb5d7166afeceae378d1393f6e4adb822fbb9530", "0x1a13975b89fb2e19a6c35ee38e22c9efacc837de"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b791d2b8-0319-4bea-6fc1-2559f1fe0200/original\"}","{\"url\":\"https://on.soundcloud.com/NS1ck\"}"}', 'sonata'), - (1033788, '0xabe749265c5e3acb9964f3d48dae3e2d2462bd17', 0, 1, '2024-05-07 13:26:17+00', 0, 2, '{"fid": 492249, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3f8d184-a2ef-48d6-b828-479e263c4a00/rectcrop3", "profile": {"bio": {"text": "investing crypto,gaming\nLove nft crypto\nLove art ", "mentioned_profiles": []}}, "username": "amirahmadi2068", "power_badge": false, "display_name": "Amir", "active_status": "inactive", "verifications": ["0x019496ab1663e7e83b9692443f17193e24f7b24c"], "follower_count": 597, "custody_address": "0xadf93bcf0fd7e5abdecc7dd0aa6d4875eb0b2ec5", "following_count": 606, "verified_addresses": {"eth_addresses": ["0x019496ab1663e7e83b9692443f17193e24f7b24c"], "sol_addresses": []}}', '{"{\"url\":\"Listen to We Ain''t Here For Long by NATHAN DAWE on #SoundCloud https://on.soundcloud.com/fZDPX\"}"}', NULL), - (1013056, '0xd9a5bbaca8d8eaa2af033818115243f09fa67e09', 0, 1, '2024-05-07 12:38:05+00', 0, 1, '{"fid": 379705, "object": "user", "pfp_url": "https://i.imgur.com/LIsfOW0.jpg", "profile": {"bio": {"text": "Thank you ! 감사합니다 !", "mentioned_profiles": []}}, "username": "warrseojun", "power_badge": false, "display_name": "Seo Jun🍀🍎", "active_status": "inactive", "verifications": ["0xb35d01727d3a99bae3e60081dd2bf01acd8f6234"], "follower_count": 1613, "custody_address": "0x41c61814005deafdaea5a62e826965b2a7247139", "following_count": 1941, "verified_addresses": {"eth_addresses": ["0xb35d01727d3a99bae3e60081dd2bf01acd8f6234"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/u2XbBsHeGnz7u94NA\"}"}', NULL), - (1013067, '0xc8b226deb807a52290e94243908004719361c34a', 0, 1, '2024-05-07 12:38:17+00', 0, 0, '{"fid": 500124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28fe94f9-5119-4ffa-904e-7f7f7bdbc700/rectcrop3", "profile": {"bio": {"text": "dex", "mentioned_profiles": []}}, "username": "dexlover", "power_badge": false, "display_name": "dexlover🎩🍖", "active_status": "inactive", "verifications": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "follower_count": 992, "custody_address": "0x2cf0493a0cabe5b42db8ee724595ee1f3594ae6c", "following_count": 1553, "verified_addresses": {"eth_addresses": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/wr3w3mdqbgp8/buzz-3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1087638, '0x25cd9d59102b7d5e32fa33e2c8ca5215b58843d1', 0, 1, '2024-05-07 15:45:53+00', 0, 0, '{"fid": 407922, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7aad0220-c978-41b5-1ecb-0ef17bb88500/rectcrop3", "profile": {"bio": {"text": "CC0 Digital Artist Musician AI Explorer Trashart Tezos\nTrashBARD:\nhttps://on.soundcloud.com/VENeBroLEdmU79Pk9\nVLDZ ∞\nhttps://objkt.com/@vampy", "mentioned_profiles": []}}, "username": "vldz", "power_badge": false, "display_name": "VLDZ", "active_status": "inactive", "verifications": ["0x9593d27a94238403e347a290d95c4f4afedf6170"], "follower_count": 29, "custody_address": "0x8e96289ee2c4a77c3e751f84112a3ab995ca1eda", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x9593d27a94238403e347a290d95c4f4afedf6170"], "sol_addresses": ["BSa4CoVsp53yGQFmqegakLcw2rZSdfF6NGSZuhQvbTKp"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c6966fb9-ec74-4cfa-71e0-2978eb407d00/original\"}","{\"url\":\"https://soundcloud.com/couchwaker\"}"}', 'suno'), - (1059075, '0x50721e84942831c3f5abc0f10226e0580bf8b8c8', 0, 1, '2024-05-07 14:52:32+00', 0, 3, '{"fid": 413804, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeid4egu3uatkl2aqjnnpktstyjiidnjvgy2caz2kutkufcg3t3qedy", "profile": {"bio": {"text": "$degen, $enjoy, $imagine, $higher, $RARE", "mentioned_profiles": []}}, "username": "j2inu", "power_badge": false, "display_name": "Jinwoo", "active_status": "inactive", "verifications": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "follower_count": 1924, "custody_address": "0xab1265d965e7155f47a4c3bca8a91d560631ec8a", "following_count": 2194, "verified_addresses": {"eth_addresses": ["0x09b0e079f86c7e37f14ea0ac628172f6e58f6541"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6f2ES\"}"}', 'sonata'), - (1006868, '0x2079da5d8758aa8eb26640a8c335bd176654ba2a', 0, 1, '2024-05-07 12:04:53+00', 0, 7, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 306, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/1htuhBLEvnY2s2k9juFQJG?si=5Fh9aPIhRo248-bOV35iSA\"}"}', 'musicjp'), - (1040102, '0x3de248403934ea6d7a4e91e1b137b45d6dcd2681', 0, 1, '2024-05-07 13:47:42+00', 0, 3, '{"fid": 505850, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/48463b10-5bcc-47d4-98ee-de70ed0b7300/rectcrop3", "profile": {"bio": {"text": "seize the day🌱\n\nhttps://zora.co/danbe", "mentioned_profiles": []}}, "username": "danbe", "power_badge": false, "display_name": "danbe🌈", "active_status": "inactive", "verifications": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "follower_count": 1131, "custody_address": "0x11e71e9e9ff0944e1d90bbb5cad7ae4dec467ae7", "following_count": 1855, "verified_addresses": {"eth_addresses": ["0x415f43441e4aa92973915c22ea95de8d3829702d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4UasKCFGJCnCchh3UrpV58?si=aedd0b9a42754962\"}"}', NULL), - (1047170, '0x3dd3e4e7a8988bb056235aae5fa24c96ccccaf88', 0, 1, '2024-05-07 14:09:53+00', 0, 0, '{"fid": 405849, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/04aff9a0-e1c7-467d-7bea-b0392ee05400/original", "profile": {"bio": {"text": "슈퍼캐스트오너!! Let''s go on a trip around the world.🕌🛕🛤️⛩️❤️서로 소통해요❤️", "mentioned_profiles": []}}, "username": "swimnyang", "power_badge": false, "display_name": "Jmin", "active_status": "inactive", "verifications": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "follower_count": 2379, "custody_address": "0x8687bbca3820cc26c0a6bc9604b2cf4d81e4024f", "following_count": 2283, "verified_addresses": {"eth_addresses": ["0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/i8Y2u4x2AStLXs5A9\"}"}', 'sonata'), - (1012642, '0xdb2b5ffe1aadef635f4227b20f61d75fd433edc0', 0, 1, '2024-05-07 12:32:30+00', 0, 0, '{"fid": 508363, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4053fde1-b0b4-46ae-160c-f504739b0000/original", "profile": {"bio": {"text": "\nI love to take reaction, recast and follow 🥰🥰", "mentioned_profiles": []}}, "username": "!508363", "power_badge": false, "display_name": "Bluemountain", "active_status": "inactive", "verifications": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "follower_count": 277, "custody_address": "0x8977ff600c1cb56333c1a376e876fc76d2177739", "following_count": 582, "verified_addresses": {"eth_addresses": ["0x2f92d7df7138d1accfb3205836084e559af809ce"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0f1syvj6y8gn/i-need-you?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1013060, '0x36a52b01a1048660d6e58f31e93d544b9ee4c143', 0, 1, '2024-05-07 12:38:30+00', 0, 0, '{"fid": 500124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28fe94f9-5119-4ffa-904e-7f7f7bdbc700/rectcrop3", "profile": {"bio": {"text": "dex", "mentioned_profiles": []}}, "username": "dexlover", "power_badge": false, "display_name": "dexlover🎩🍖", "active_status": "inactive", "verifications": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "follower_count": 992, "custody_address": "0x2cf0493a0cabe5b42db8ee724595ee1f3594ae6c", "following_count": 1553, "verified_addresses": {"eth_addresses": ["0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nam-hyunwoo/awmdwjl0vbpp?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1059526, '0x7e503a1967a0521f50d0503843a50b17c3496cef', 0, 1, '2024-05-07 14:54:49+00', 0, 1, '{"fid": 359298, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/416fda7524bf8e46a76a6b091802e2c9.gif?w=500&auto=format", "profile": {"bio": {"text": "crypto photography サッカー競馬好き🐴⚽️📸art ゼロ movies \nlet''s connect🤝\n", "mentioned_profiles": []}}, "username": "blow01", "power_badge": false, "display_name": "blow🎩🔵🍖🍕", "active_status": "inactive", "verifications": ["0x3addb670e8f242749779c16e0ecf1c4c99194627", "0xa692936835d1baa5990130fa605898e3b50e7c89"], "follower_count": 820, "custody_address": "0x6fdea2127d2d80dea1d355eea5c6eed23d5bdcda", "following_count": 1662, "verified_addresses": {"eth_addresses": ["0x3addb670e8f242749779c16e0ecf1c4c99194627", "0xa692936835d1baa5990130fa605898e3b50e7c89"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nujabes-sc/the-final-view\"}"}', 'musicjp'), - (1173491, '0x321fae34dd386e884c737710098a01189b6914f7', 100, 1, '2024-05-16 03:32:17+00', 0, 9, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2754, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 785, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ir1VQjIQmpjhV4TjIpgZt\"}"}', 'housemusic'), - (1091593, '0x60a4336fad95fd5131a9da6c1f1195cf00de160e', 0, 1, '2024-05-07 15:54:23+00', 0, 0, '{"fid": 290733, "object": "user", "pfp_url": "https://i.imgur.com/sRwfipT.jpg", "profile": {"bio": {"text": "윈드토커\n$DEGEN \n\nhttps://zora.co/@jk1212", "mentioned_profiles": []}}, "username": "junkim123", "power_badge": false, "display_name": "Jk1212 🎩🍖", "active_status": "inactive", "verifications": ["0x9e2e41f9051cf32221730a52ee59449ad4237ef5"], "follower_count": 1594, "custody_address": "0xe531b84ad0fbd17ba0444483281f270acfeb0e9d", "following_count": 2742, "verified_addresses": {"eth_addresses": ["0x9e2e41f9051cf32221730a52ee59449ad4237ef5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bbmik/dax4-rustic-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1033790, '0xac81592aadd27a9ee00a83f9b869116c24c2f4f0', 0, 1, '2024-05-07 13:26:37+00', 0, 20, '{"fid": 398438, "object": "user", "pfp_url": "https://i.imgur.com/ouK9dA8.jpg", "profile": {"bio": {"text": "We can get more money 💴 together ", "mentioned_profiles": []}}, "username": "peyvand", "power_badge": false, "display_name": "Mehdirostami 🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf63ff253b9b075b32e4d12d2423b0b10e5e4c807"], "follower_count": 1992, "custody_address": "0x84be0fbe05efbc5193754f5278d42f64fb0b8810", "following_count": 2436, "verified_addresses": {"eth_addresses": ["0xf63ff253b9b075b32e4d12d2423b0b10e5e4c807"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2qSkIjg1o9h3YT9RAgYN75\"}"}', 'sonata'), - (1091539, '0xd2c7b5e37d33ace84ce3fd4e71d8a7508da8bbad', 0, 1, '2024-05-07 15:54:56+00', 0, 0, '{"fid": 366037, "object": "user", "pfp_url": "https://i.imgur.com/1pGQsmg.jpg", "profile": {"bio": {"text": "Love nature 자연광\n맞팔환영\nhttps://zora.co/@jjaekani", "mentioned_profiles": []}}, "username": "jjaekani", "power_badge": false, "display_name": "jjaekani", "active_status": "inactive", "verifications": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "follower_count": 760, "custody_address": "0x02dd0d4a46042be8548d3a06680448c925e7e487", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/noino28/duacnt675cu3?si=601557a46f424579b2c83dbf6a93410e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1058102, '0x71174b4203af5f24f9d49d75e53e13b08bc0c1a5', 0, 1, '2024-05-07 14:48:03+00', 0, 1, '{"fid": 508176, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/56e7aaed-eac4-4ed3-db64-d87ef3844600/rectcrop3", "profile": {"bio": {"text": "nice play!!!", "mentioned_profiles": []}}, "username": "!508176", "power_badge": false, "display_name": "NICEPLAY", "active_status": "inactive", "verifications": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "follower_count": 239, "custody_address": "0x5ff3dc41301cda755a42ffec67381363f31ccc80", "following_count": 334, "verified_addresses": {"eth_addresses": ["0x179d9d851498ab247b0078883b8948da7b397b1e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/txC9ZdjRswJFR7mQ8\"}"}', 'sonata'), - (1047126, '0x6cccec19618baa77e5f1a09cfff0ec49f7b522c9', 0, 1, '2024-05-07 14:15:51+00', 0, 6, '{"fid": 429240, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f33690d2-e66c-4cad-1f8f-c3ffac279c00/rectcrop3", "profile": {"bio": {"text": "Love coin ❤️study crypto❤️ ", "mentioned_profiles": []}}, "username": "metateak", "power_badge": false, "display_name": "Meta_teaki", "active_status": "inactive", "verifications": ["0xeefbadcb92236629a35150703dafe816cfdb077e"], "follower_count": 2009, "custody_address": "0x97afc804678aefe75f9e327e0c1f0d44efe3dca0", "following_count": 1536, "verified_addresses": {"eth_addresses": ["0xeefbadcb92236629a35150703dafe816cfdb077e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GUZxpt9GUpcTYe5z9\"}"}', 'sonata'), - (1033921, '0x9c507a6fb501028b42ceda96f5c45860c36dd381', 0, 1, '2024-05-07 13:28:38+00', 0, 2, '{"fid": 501321, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca57c016-5e06-4a3d-72f9-4b3caf7d8e00/rectcrop3", "profile": {"bio": {"text": "I ♡ Warpcast", "mentioned_profiles": []}}, "username": "pac-man", "power_badge": false, "display_name": "Pac-Man ", "active_status": "inactive", "verifications": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "follower_count": 456, "custody_address": "0x60f94177f397b96045804dd97f914a2adbf04dd3", "following_count": 504, "verified_addresses": {"eth_addresses": ["0x848308502d4fac065b35f8dc97c177f3cd6205db"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kvDqy\"}"}', 'sonata'), - (1100292, '0x1e12fdc4903de1ed7246a9e1eaca1b5a41340a29', 0, 1, '2024-05-07 16:11:14+00', 0, 4, '{"fid": 432518, "object": "user", "pfp_url": "https://i.imgur.com/j5ujY4R.jpg", "profile": {"bio": {"text": "Don''t dream, Be it.\n❤️팔로우, 좋아요, 댓글❤️. \n맞팔/맞디환영~바로 달려갑니다~🙇‍♀️🏃‍♀️", "mentioned_profiles": []}}, "username": "hjjw5252", "power_badge": false, "display_name": "hjjw5252", "active_status": "inactive", "verifications": ["0x507bf04fe66ac5baf548096f5e440425b2ddff62"], "follower_count": 1281, "custody_address": "0x2bd4c19220534ea8de398b1ad313f038a9663623", "following_count": 1447, "verified_addresses": {"eth_addresses": ["0x507bf04fe66ac5baf548096f5e440425b2ddff62"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sujans3/cool-short-waiting-mv-released\"}"}', 'sonata'), - (1115067, '0x7ce1c969f0424fb32fb394b6027337c8ae070a3f', 0, 1, '2024-05-07 17:25:45+00', 0, 1, '{"fid": 500272, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49fc3e8e-6a00-41ba-94fb-8a8a2a4a1500/rectcrop3", "profile": {"bio": {"text": "Every day is a fun day :) I love warpcast ❤️", "mentioned_profiles": []}}, "username": "omogari", "power_badge": false, "display_name": "Jerry Patrick🎩🍖⛓️💎", "active_status": "inactive", "verifications": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "follower_count": 678, "custody_address": "0xa20549ac9a4bd6570d93bdfac3ce9c52abda8bd1", "following_count": 430, "verified_addresses": {"eth_addresses": ["0xd3f7cf810dcc530a07db0a767d71f49d31978b78"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nothing_happen/1996a?si=0abb68de01034332aa2d84e0967c77c9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1059533, '0x8c47d72d87c713cec28434829742c5b2ca72dc4a', 0, 1, '2024-05-07 14:54:29+00', 0, 6, '{"fid": 501935, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/139ad2dc-7123-4e00-9f52-a2bd4c5b9100/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "wooks", "power_badge": false, "display_name": "Wook2", "active_status": "inactive", "verifications": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "follower_count": 477, "custody_address": "0xd31122b0fa655a356ff107934a8e7a0a470fdcc9", "following_count": 618, "verified_addresses": {"eth_addresses": ["0x613bd065a624495292ee2c025b6729dbce89c989"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/eunbi-lee-213534132/ost-butterfly?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1033934, '0xea3e7c416af2f3e92ffd6924c466ce41049539e0', 0, 1, '2024-05-07 13:27:51+00', 0, 1, '{"fid": 2308, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/9a9b4abd8f85d0f56c967546b12e6d42.jpg?w=500&auto=format", "profile": {"bio": {"text": "Building @luciddrops (luciddrops.xyz) - easiest and fastest way to create & distribute NFTs with frames | Lover of Art \n", "mentioned_profiles": []}}, "username": "shay", "power_badge": false, "display_name": "Shalz ", "active_status": "inactive", "verifications": ["0xcccee5f5b1fe6678ce511c66307da1d278ff1ead"], "follower_count": 303, "custody_address": "0x4eae610b2b735e1114fccd3daea7ab145991168d", "following_count": 195, "verified_addresses": {"eth_addresses": ["0xcccee5f5b1fe6678ce511c66307da1d278ff1ead"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7HupMpgxBnu6QgEsJibKU0?si=6b088aed2e504f2e\"}"}', NULL), - (1016488, '0x95bee295fb414ce2d26823fc29a155e805727249', 1000, 1, '2024-05-07 12:44:41+00', 0, 7, '{"fid": 426167, "object": "user", "pfp_url": "https://i.imgur.com/FS1qOCn.gif", "profile": {"bio": {"text": "Host of /videogamemusic\nCrypto enthusiast with geek streak for anime and video game bgms\nAvid fan of HAM 🍖", "mentioned_profiles": []}}, "username": "kenjiquest", "power_badge": false, "display_name": "Kenjiquest🎩🍖🔵 ", "active_status": "inactive", "verifications": ["0x59479108adfd232aa3f2af184639fa0e08f24dde"], "follower_count": 1312, "custody_address": "0x99a5aed1bd83a7162223d34b4ee43f54284afc7e", "following_count": 656, "verified_addresses": {"eth_addresses": ["0x59479108adfd232aa3f2af184639fa0e08f24dde"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1RLBpg5y6ou65skg7\"}"}', 'musicjp'), - (1034779, '0x0f40c67a89b48fa0c0803c82300285fc695ec891', 0, 1, '2024-05-07 13:29:31+00', 0, 2, '{"fid": 508478, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5c062fff-11a0-4dc4-ec04-390e83697600/rectcrop3", "profile": {"bio": {"text": "I am open to new and wonderful challenges!🎩💙\n5월 살아남을 수 있도록! 선한 영향력을 전파하겠습니다!", "mentioned_profiles": []}}, "username": "!508478", "power_badge": false, "display_name": "JJungruru", "active_status": "inactive", "verifications": ["0x2abd1e2afc6356fc4ab0840300244816df26d1c2"], "follower_count": 360, "custody_address": "0x9bb4846829b60e988dc1259fb4cc85e277078675", "following_count": 458, "verified_addresses": {"eth_addresses": ["0x2abd1e2afc6356fc4ab0840300244816df26d1c2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MrCXyZLEYup4ZE2D9\"}"}', 'sonata'), - (1012327, '0x8f4f6f4ba95c3e261931344bece1d7b0a2970763', 0, 1, '2024-05-07 12:31:04+00', 0, 0, '{"fid": 500461, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bc4873ea-85ed-420e-739f-e960fb8b8600/rectcrop3", "profile": {"bio": {"text": "괜찮아.\nYou''ll be happy.", "mentioned_profiles": []}}, "username": "mondss", "power_badge": false, "display_name": "shine_my_life🎩", "active_status": "inactive", "verifications": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "follower_count": 1179, "custody_address": "0xa044138872bbb075008d24c1921fac2f00e7c58b", "following_count": 817, "verified_addresses": {"eth_addresses": ["0xee8001b4abdbe6f87d44efc941a202ffccbd0a60"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Taylor Swift \\\"22\\\" (Mike D Remix) by Republic Records Staff on #SoundCloud https://on.soundcloud.com/VrCf6\"}"}', NULL), - (1042709, '0x9258cb7573a35cad114dc3f3b8b45b6b7d7d4baf', 0, 1, '2024-05-07 13:55:43+00', 0, 2, '{"fid": 500500, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2da9745d-b65d-42b6-9cf7-187eacde3500/rectcrop3", "profile": {"bio": {"text": "Hi, i''m Dani''s mother.\nThank u 4 coming!🩷\nLet''s talk! 🫡\n🎩⛓️🟣\nhttps://zora.co/@youmiii", "mentioned_profiles": []}}, "username": "youmii", "power_badge": false, "display_name": "youme1130", "active_status": "inactive", "verifications": ["0xc73ee6e9bef9ebfad3146c0616087b139247402c"], "follower_count": 1234, "custody_address": "0xa1f6faca493a1a5cb380959fcf5ee587a9c0e1ea", "following_count": 1462, "verified_addresses": {"eth_addresses": ["0xc73ee6e9bef9ebfad3146c0616087b139247402c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/a455mtqa0qob/mv-zia-have-a-drink?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1055947, '0xabceb3fd1a60394f2b3f8b602b7e0c9fcc76947b', 0, 1, '2024-05-07 14:42:49+00', 0, 2, '{"fid": 401805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baf0f02d-0a81-476e-78af-98c7aaa38000/original", "profile": {"bio": {"text": "Lovely 🤩\n대한민국 국민 🇰🇷 \n\n볼수록 매력있고 꽤 괜찮은사람.\n\n경제적으로 완전한 자유를 누리는 자.\n\n", "mentioned_profiles": []}}, "username": "peaceful-hj", "power_badge": false, "display_name": "Peaceful-hj", "active_status": "inactive", "verifications": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "follower_count": 1824, "custody_address": "0xe6520f1c42419d3526a8a812fe3850aaae6208ef", "following_count": 3268, "verified_addresses": {"eth_addresses": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xmshj\"}"}', 'sonata'), - (1012328, '0x9809366a5e79c2f32663d89f9deda5f60967d1b4', 0, 1, '2024-05-07 12:29:30+00', 0, 1, '{"fid": 499503, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0b40cfda-884e-4b99-f85c-a629f809a700/original", "profile": {"bio": {"text": "에라이 워캐스트 다 엎어삘라마", "mentioned_profiles": []}}, "username": "kingjun", "power_badge": false, "display_name": "King", "active_status": "inactive", "verifications": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "follower_count": 1240, "custody_address": "0x9ea5bf6a9ee40e9a9160e0dde4429f31ee432f11", "following_count": 980, "verified_addresses": {"eth_addresses": ["0x68ff636e0dd653625fe84822ac3ecb530444ddd3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Y3gL567DE9IXfnsSyGPT6?si=65f3751d40c04f29\"}"}', NULL), - (1173677, '0xec5aa48b2fa6223efaba9d4967161eb9a5896852', 100, 1, '2024-05-16 07:17:04+00', 0, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 575, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 467, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bpb8bvY9BcwgDVv77\"}"}', 'sonata'), - (1042542, '0xf35b7077c758bb4c2af20a695d86c3345c87e4f2', 0, 1, '2024-05-07 13:54:26+00', 0, 2, '{"fid": 382749, "object": "user", "pfp_url": "https://i.imgur.com/7MJOHmF.jpg", "profile": {"bio": {"text": "I love warpcast and degen\n주로 아침(출근길), 저녁(퇴근길), 야간반 활동합니다.\nhttps://zora.co/@ixtream", "mentioned_profiles": []}}, "username": "ixtream", "power_badge": false, "display_name": "ixtream🎩🍖", "active_status": "inactive", "verifications": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "follower_count": 2455, "custody_address": "0xda6f497cb157c676f9af0ba7f44cb4e8ef222502", "following_count": 2153, "verified_addresses": {"eth_addresses": ["0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/soundpost-150734522/love-theme-ost-fl-vn-vc-pf?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://youtu.be/LX3JOyauxa0?si=0sMztqc8465AvDFj\"}"}', 'sonata'), - (1014980, '0xfe0e04e46b164e1bc764e30030ac428a5d376475', 0, 1, '2024-05-07 12:43:24+00', 0, 2, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 818, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 633, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vZn4QxU9zHRhxHwb8\"}"}', 'sonata'), - (1014978, '0x73bc2d911c34098551dc2b9ddcdc2d0e6e03e894', 0, 1, '2024-05-07 12:43:13+00', 0, 1, '{"fid": 287771, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7810c59-7f9e-4d0d-5774-7e4d6e99a500/rectcrop3", "profile": {"bio": {"text": "crypto trader\n zora 👉 https://zora.co/@stern24", "mentioned_profiles": []}}, "username": "stern24", "power_badge": false, "display_name": "Chloe 🎩 🍖", "active_status": "inactive", "verifications": ["0x2cba857b37ae7111285aff6b2b05ce517dec3446"], "follower_count": 2130, "custody_address": "0x69af793eb1fc217742522354cad1e84a2660ef15", "following_count": 1825, "verified_addresses": {"eth_addresses": ["0x2cba857b37ae7111285aff6b2b05ce517dec3446"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-665163988/lady-gaga-always-remember-us-this-way-a-star-is-born?si=123c059fe9b74b57b5fc8349f8d0a2b0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1033963, '0x25627efeb47680598fb2f2bd30240ea23faa998d', 0, 1, '2024-05-07 13:28:26+00', 0, 0, '{"fid": 502052, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7050411e-89e2-437f-baea-8b057a142900/rectcrop3", "profile": {"bio": {"text": "Jessica-h \nHappy to join here.\nThx", "mentioned_profiles": []}}, "username": "jessica-h", "power_badge": false, "display_name": "Jessica👄", "active_status": "inactive", "verifications": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "follower_count": 825, "custody_address": "0x6f803a2e8d49eca8b380d25aa19bc6ee41f45fa2", "following_count": 926, "verified_addresses": {"eth_addresses": ["0xfb14e6423939c101cb4ca44afe950d84e7c97fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d34f2af-86b6-4f95-8608-46ab5bdc6300/original\"}","{\"url\":\"https://soundcloud.com/seuk91/jtlngipdr5py?si=0c87b92ea3ee4824a5f582da0a570832&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1059975, '0x1d191ae215fa46ac40cd1830ec30b742ecce3e7a', 100, 1, '2024-05-07 14:54:43+00', 1, 8, '{"fid": 196444, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f821414-b723-4b0b-bba9-be8bf969ba00/original", "profile": {"bio": {"text": "Self-taugh Artist. Part of VUELAPELUCAS 3000 Community (NFT Art Camp in Argentina)", "mentioned_profiles": []}}, "username": "pamilo", "power_badge": false, "display_name": "PAMILO CEIRONE®", "active_status": "inactive", "verifications": ["0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07"], "follower_count": 376, "custody_address": "0xdb464bfd2d6b35908fce250e0856039557c8186c", "following_count": 253, "verified_addresses": {"eth_addresses": ["0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1T4Uo4mth8nqdTDhnDOCP0?si=Rovk8J3-SFyZadPBYgDQGQ\"}"}', 'albumoftheday'), - (1059527, '0xc6d554299e0efd5ed82d6059b9c91b7fe8c1105d', 0, 1, '2024-05-07 14:54:23+00', 0, 5, '{"fid": 429583, "object": "user", "pfp_url": "https://i.imgur.com/VaIYZSC.jpg", "profile": {"bio": {"text": "#맞팔환영합니다#모두부자됩시다", "mentioned_profiles": []}}, "username": "imi8800", "power_badge": false, "display_name": "imi8800", "active_status": "inactive", "verifications": ["0x4659b162c2ce0bac0d1c20cfdd7760c3b8d48840"], "follower_count": 2419, "custody_address": "0x0c9bd188195ebf28e4100d993663a0d48de69c5c", "following_count": 2637, "verified_addresses": {"eth_addresses": ["0x4659b162c2ce0bac0d1c20cfdd7760c3b8d48840"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T9cshu8AuqwErnjA7\"}"}', 'sonata'), - (1161555, '0xf53854b6d88127f9a8382d6218b97b9c861f1bb9', 0, 1, '2024-05-09 00:21:49+00', 0, 0, '{"fid": 7247, "object": "user", "pfp_url": "https://i.imgur.com/8HNEqtG.jpg", "profile": {"bio": {"text": "building vuhlog", "mentioned_profiles": []}}, "username": "valcoholics", "power_badge": true, "display_name": "V", "active_status": "inactive", "verifications": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "follower_count": 1621, "custody_address": "0x74497159051ce25ed4d5658f5cb497f0af807943", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3gpp6RalVXdsAPSQ4HuXbu?si=73Gm9i7USXma2W5YhpnSAQ\"}"}', NULL), - (1042720, '0xbab87e25572c6e97ff6599a332cafd6f2b25eaa1', 0, 1, '2024-05-07 13:55:44+00', 0, 6, '{"fid": 406727, "object": "user", "pfp_url": "https://i.imgur.com/WCoUaBi.jpg", "profile": {"bio": {"text": "super cast user 🌈 \n", "mentioned_profiles": []}}, "username": "gyun", "power_badge": false, "display_name": "ygyun 🎩🍖", "active_status": "inactive", "verifications": ["0x88327695b662e539e83e1733b1b81092261d8f19"], "follower_count": 3200, "custody_address": "0xf9f4a454ca19c76d50d213497cff474383d8eaa7", "following_count": 3084, "verified_addresses": {"eth_addresses": ["0x88327695b662e539e83e1733b1b81092261d8f19"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/55NdDMfr4fJ98TFa7\"}"}', 'sonata'), - (1055714, '0x1b773e6f0283d22967335929346b1ffac3f43417', 0, 1, '2024-05-07 14:42:27+00', 0, 2, '{"fid": 394213, "object": "user", "pfp_url": "https://i.imgur.com/f6uEL7K.jpg", "profile": {"bio": {"text": "다양한 분들과 소통하며 ~ 새로운 세상과 생각을 경험하고 싶어요!! 코인과 재테크에 관심이 많아요!!\nI want to communicate with various people and experience new worlds and ideas!!", "mentioned_profiles": []}}, "username": "hang-jin-nam", "power_badge": false, "display_name": "Jin Nam", "active_status": "inactive", "verifications": ["0x559350639f6d09b3d6399cdd1ac1daf0cf428d48"], "follower_count": 2815, "custody_address": "0x2cc5d4325ca7ba7c6ad848f9cc9f5339c8206628", "following_count": 3111, "verified_addresses": {"eth_addresses": ["0x559350639f6d09b3d6399cdd1ac1daf0cf428d48"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-55808555/psy?si=5ff7dfbf50154640b2de3116aa31cfad&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1160158, '0xb98022d383cd945a776272993e4b58d28b546fb8', 0, 1, '2024-05-08 14:43:00+00', 0, 27, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1594, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', NULL), - (1059069, '0x34e12c61e1c8e24aa4fa060f6184bb2a6ac8f744', 0, 1, '2024-05-07 14:52:07+00', 0, 4, '{"fid": 428699, "object": "user", "pfp_url": "https://i.imgur.com/gLq1yEb.jpg", "profile": {"bio": {"text": "같이 잘먹고 잘 살아요😎\n재미있으셨다면, 저도 기뻐요😃\nGo fxxkin crazy🔥", "mentioned_profiles": []}}, "username": "badasane", "power_badge": false, "display_name": "Lespaul59", "active_status": "inactive", "verifications": ["0x1a659702117d6cac8c59923cc8d9aab36d88ad53"], "follower_count": 2232, "custody_address": "0x90446b334477ceb1ad831504f251547b14112244", "following_count": 1747, "verified_addresses": {"eth_addresses": ["0x1a659702117d6cac8c59923cc8d9aab36d88ad53"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aTF6aRGV22WoZn2R9\"}"}', 'sonata'), - (1100309, '0x1d656f655f76ab2c359167095acbda09fd0a8375', 0, 1, '2024-05-07 16:10:26+00', 0, 5, '{"fid": 192631, "object": "user", "pfp_url": "https://arweave.net/ecbDmMZsi8L1cy_V9DP9-Gdhd-WDATr3pELoHUKd4GQ/", "profile": {"bio": {"text": "GM:)\nCrypoto Wanderer", "mentioned_profiles": []}}, "username": "nanamika", "power_badge": false, "display_name": "↑nanamika↑", "active_status": "inactive", "verifications": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "follower_count": 1017, "custody_address": "0xce9779bb8be935083bf80ef70ffedeb2b095e4c6", "following_count": 1360, "verified_addresses": {"eth_addresses": ["0x2b5606fb05188e248373a028ae70a896ed0747a1"], "sol_addresses": ["EeMPV4WxJm3Pd2Cy3JZaTX6EtkLBJK4XiEeMkaH6tBQA"]}}', '{"{\"url\":\"https://open.spotify.com/track/0djpN5RYbrh3S6VjAvc1zU?si=De2chUQRSy-qgFF88O-R7w\"}"}', 'sonata'), - (1012939, '0x4e8d19998ebff104ab3131993a47b5ede55bd907', 5910, 1, '2024-05-07 12:37:27+00', 0, 1, '{"fid": 348751, "object": "user", "pfp_url": "https://i.imgur.com/2lv5PbH.jpg", "profile": {"bio": {"text": "Left the beautiful moment.", "mentioned_profiles": []}}, "username": "cca", "power_badge": false, "display_name": "xiatian", "active_status": "inactive", "verifications": ["0x51e432df264c3315bb0d1aa70d265cdf0792c679"], "follower_count": 33, "custody_address": "0xf075d210d4606aa68faa1046b95678c5804c7d48", "following_count": 68, "verified_addresses": {"eth_addresses": ["0x51e432df264c3315bb0d1aa70d265cdf0792c679"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bellemt/mean-world-syndrome-the-sample-tape?referral=0x0bebe2165de412e7925ab8352e36f3b0493dd3b9&referral_source=link\"}"}', NULL), - (1136954, '0x9096e3fc75191889c3f467a3be6739f435266118', 0, 1, '2024-05-07 19:30:03+00', 0, 0, '{"fid": 3993, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8a0e320d-b37b-4191-3f96-0cd5ddc9eb00/original", "profile": {"bio": {"text": "Building Caten8ted, Blvkhvnd \n| formerly: Nervos Network", "mentioned_profiles": []}}, "username": "chromuh", "power_badge": true, "display_name": "Chromuh✈️🎩", "active_status": "inactive", "verifications": ["0xf6910d47fbb1f5518d60c721d4189936ecd5a1b6", "0xf6910d47fbb1f5518d60c721d4189936ecd5a1b6"], "follower_count": 256, "custody_address": "0x11dee9a0d8aafe25a88a16b6a250fdc340c05ba8", "following_count": 127, "verified_addresses": {"eth_addresses": ["0xf6910d47fbb1f5518d60c721d4189936ecd5a1b6", "0xf6910d47fbb1f5518d60c721d4189936ecd5a1b6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/discover/sets/personalized-tracks::chromuh:1807577619\"}"}', NULL), - (1048265, '0xb0ab4cc6d9fae6e812f291c8ce8b6c7a1b6b11e1', 0, 1, '2024-05-07 14:19:06+00', 0, 2, '{"fid": 499057, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92eb5b0b-027b-405c-550d-59f4268c8000/rectcrop3", "profile": {"bio": {"text": "Shiba will save the world🐾 존대말을 못배운 카와이시바 4가지없는게 아니야! 은혜는 무조건 갚는 카와이시바!", "mentioned_profiles": []}}, "username": "kawaiishiba", "power_badge": false, "display_name": "Kawaii_Shiba🎩", "active_status": "inactive", "verifications": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "follower_count": 1100, "custody_address": "0x1fd5449710120b982115e31881eb221ef9979283", "following_count": 1252, "verified_addresses": {"eth_addresses": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/YpJz6NpKRQwJeaLB8\"}"}', NULL), - (1042723, '0xdcc29d1039f6d709564a0705fc16e506334514a0', 0, 1, '2024-05-07 13:56:05+00', 0, 2, '{"fid": 429240, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f33690d2-e66c-4cad-1f8f-c3ffac279c00/rectcrop3", "profile": {"bio": {"text": "Love coin ❤️study crypto❤️ ", "mentioned_profiles": []}}, "username": "metateak", "power_badge": false, "display_name": "Meta_teaki", "active_status": "inactive", "verifications": ["0xeefbadcb92236629a35150703dafe816cfdb077e"], "follower_count": 2009, "custody_address": "0x97afc804678aefe75f9e327e0c1f0d44efe3dca0", "following_count": 1536, "verified_addresses": {"eth_addresses": ["0xeefbadcb92236629a35150703dafe816cfdb077e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sproooouts9267/ng0nf9k7sq0c?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1034743, '0x79295ff864d89e3ad1a5008b601a14dc2d7c435c', 0, 1, '2024-05-07 13:29:10+00', 0, 3, '{"fid": 479253, "object": "user", "pfp_url": "https://i.imgur.com/f2gnEq7.jpg", "profile": {"bio": {"text": "그게 뭐든 다 이루다_ERUDA_열정걸_초긍정에너지(With me, you have super power😲 Super positive energy✨️⚘️) 늘 응원해:)", "mentioned_profiles": []}}, "username": "eruda", "power_badge": false, "display_name": "ERUDA", "active_status": "inactive", "verifications": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "follower_count": 877, "custody_address": "0x2c72ca53218c08d77e61639cb2ccfa7d08403ff8", "following_count": 597, "verified_addresses": {"eth_addresses": ["0xb9b273c5d33123eacd920212f464d23684bc93a2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5QTDg\"}"}', 'sonata'), - (1042716, '0xda7bc49b14a898349decfccff7b120a968352efc', 0, 1, '2024-05-07 13:55:59+00', 0, 5, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 244, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 350, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tetsujin/nujabes-aruarian-dance?si=e59fbe1850b54144923fd325f600084f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1052442, '0x6655bc7127ee955b89c5efae088e2db68d7b7774', 0, 1, '2024-05-07 14:31:35+00', 0, 2, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o9KJS8aTQ2eNJMHm9\"}"}', 'musicjp'), - (1059941, '0x1e31fa5d0090327cc573305e1cafd72bed76b32f', 0, 1, '2024-05-07 14:55:56+00', 0, 2, '{"fid": 501832, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a7f2eb2b-60d3-4238-f566-dd08abd16300/original", "profile": {"bio": {"text": "워린이. 이것저것 열심히 다 합니다. 잘 부탁드립니다.", "mentioned_profiles": []}}, "username": "ppking", "power_badge": false, "display_name": "PingPong", "active_status": "inactive", "verifications": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "follower_count": 1490, "custody_address": "0xd3cc5baf08ba30f7c60e14d39895c4a0ed2f3bec", "following_count": 2581, "verified_addresses": {"eth_addresses": ["0x657dfae4cade54b666202ff6955af1d1daf944e9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jin-roh-353085509/kyzpaungqnbk?si=0128188fd93a4205973c3d838b499cb3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1093473, '0xbb93d46f579ddc57a28d8af7674882b03bd0a9e9', 0, 1, '2024-05-07 15:56:05+00', 0, 2, '{"fid": 366037, "object": "user", "pfp_url": "https://i.imgur.com/1pGQsmg.jpg", "profile": {"bio": {"text": "Love nature 자연광\n맞팔환영\nhttps://zora.co/@jjaekani", "mentioned_profiles": []}}, "username": "jjaekani", "power_badge": false, "display_name": "jjaekani", "active_status": "inactive", "verifications": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "follower_count": 760, "custody_address": "0x02dd0d4a46042be8548d3a06680448c925e7e487", "following_count": 1701, "verified_addresses": {"eth_addresses": ["0x1f863c34ab1521aa12d23e84d592c15f0502133b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/noino28/duacnt675cu3?si=601557a46f424579b2c83dbf6a93410e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (985975, '0x6fb371849eb3b4ca7554e9405ddb31f0cdb48ab9', 0, 1, '2024-05-07 11:04:08+00', 0, 14, '{"fid": 486388, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/446ebf7c-03d0-425d-f3af-34f3dedb0e00/rectcrop3", "profile": {"bio": {"text": "🔥파이어족💪건강🥗음식✈️여행💵코인\nhttps://www.alfafrens.com/channel/0x0bD981bBD013a0E0CF120d71b454FDFA5A405f66\n⬆️⬆️⬆️구독,스테이킹 (코인.주식.채굴정보)", "mentioned_profiles": []}}, "username": "parksihu", "power_badge": false, "display_name": "F.I.Retire E🐯", "active_status": "inactive", "verifications": ["0x6eb0d7d9bd7ad62ea75d9089870c1c4090295125"], "follower_count": 1223, "custody_address": "0xa090e17837d1bdad4ae4bd69e5e516e467b4d594", "following_count": 1234, "verified_addresses": {"eth_addresses": ["0x6eb0d7d9bd7ad62ea75d9089870c1c4090295125"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/51ZQ1vr10ffzbwIjDCwqm4?si=L0r-WseMT32w5q4-orM2yQ\"}"}', 'sonata'), - (1055846, '0x5d6ed94116880099052956dbec1bd171d20de4dd', 0, 1, '2024-05-07 14:42:14+00', 0, 3, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 980, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5kt0nWRnFWEeBUyLWSYnkd?si=pbZAVokoRUmLomm1XpykZg\"}"}', 'sonata'), - (1034772, '0x00f538a6fb2734d0dabe21bc0fddb5a4b144c794', 0, 1, '2024-05-07 13:29:59+00', 0, 2, '{"fid": 503190, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/00dd484a-4372-4bd1-2b64-5437a5b55000/rectcrop3", "profile": {"bio": {"text": "I am koala.", "mentioned_profiles": []}}, "username": "koala4424", "power_badge": false, "display_name": "Koala4424😎", "active_status": "inactive", "verifications": ["0x3ce0c57ee36cec0b4eeeb5eafbe9251c59a629df", "0xe5b05c76c30bdfd1d9f88d45668be8a7bde93976"], "follower_count": 915, "custody_address": "0xb0171f23b0b073a374f135ed74e587bed95502a4", "following_count": 593, "verified_addresses": {"eth_addresses": ["0x3ce0c57ee36cec0b4eeeb5eafbe9251c59a629df", "0xe5b05c76c30bdfd1d9f88d45668be8a7bde93976"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost24/kyuhyun-confession-is-not-flashy-hospital-playlist-ost-part-4?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1048266, '0xfa8821aa7cf90ffb38c991662112fcb44a77a70b', 0, 1, '2024-05-07 14:18:40+00', 0, 0, '{"fid": 276047, "object": "user", "pfp_url": "https://arweave.net/5TpqUNyK7HUbVhuf3kr_wcnc-Y15o0lKUIMs7mTAlK8/", "profile": {"bio": {"text": "I love blokchain", "mentioned_profiles": []}}, "username": "jooker", "power_badge": false, "display_name": "Pouria🎩|🔵|🔮", "active_status": "inactive", "verifications": ["0xcbcd3e618612611a2ff7c7f984bd07449f8ba2f9"], "follower_count": 1607, "custody_address": "0xcba2873804bf3a4f3c789947567b27c3fd5f03e7", "following_count": 1355, "verified_addresses": {"eth_addresses": ["0xcbcd3e618612611a2ff7c7f984bd07449f8ba2f9"], "sol_addresses": ["8zZgTdTiee5nL9uNczbdPqpfs6d2mjSJCHTCnbWD6cJq"]}}', '{"{\"url\":\"https://on.soundcloud.com/gADJizVBqJoA1uEU9\"}"}', NULL), - (1040115, '0x1d92cb57269f99fc3f2a314d3dad47fa0cdac325', 0, 1, '2024-05-07 13:46:49+00', 0, 5, '{"fid": 336895, "object": "user", "pfp_url": "https://i.imgur.com/YiXAGxl.gif", "profile": {"bio": {"text": "a new report from the international community finds a new level in global trade", "mentioned_profiles": []}}, "username": "adachip", "power_badge": false, "display_name": "adachip🎩🍖🧀🔮🔵", "active_status": "inactive", "verifications": ["0xee55583ce4f64791b30451156f1141fcea0aae04"], "follower_count": 785, "custody_address": "0xbb67adef1607d2f159ad7af88179edfab243233b", "following_count": 983, "verified_addresses": {"eth_addresses": ["0xee55583ce4f64791b30451156f1141fcea0aae04"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3AS8WqGDmrtfukuk6\"}"}', 'musicjp'), - (1042842, '0x0c581644d84a1ed7c9b4f182ebe93543d84247d9', 0, 1, '2024-05-07 13:57:53+00', 0, 1, '{"fid": 499563, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1379ce02-1637-49e3-8067-7f31c5b28000/rectcrop3", "profile": {"bio": {"text": "Hello world🌎", "mentioned_profiles": []}}, "username": "redbottle", "power_badge": false, "display_name": "Ivan", "active_status": "inactive", "verifications": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "follower_count": 244, "custody_address": "0x79ced60c6657ebe8df066ed64873d592a7d7b1be", "following_count": 350, "verified_addresses": {"eth_addresses": ["0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/maximiwax/nujabes-flowers-with-sample-intro?si=81975bfcf2514e01a0ef63e1e68b680d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (960030, '0xea2f708e185093d9473475339834981b03db5624', 0, 1, '2024-05-07 09:15:45+00', 0, 1, '{"fid": 271891, "object": "user", "pfp_url": "https://i.imgur.com/UPrlw49.jpg", "profile": {"bio": {"text": "I''m Mr Meerkat - Each morning, as the sun comes up, I emerge and begin looking for food.", "mentioned_profiles": []}}, "username": "mrmeerkat", "power_badge": false, "display_name": "Mr Meerkat", "active_status": "inactive", "verifications": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "follower_count": 236, "custody_address": "0x2f5b92d58892bf7f4a93ba30d05bae6d512eb84c", "following_count": 498, "verified_addresses": {"eth_addresses": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "sol_addresses": ["6z85jgsYieCXPbxmhfN2hG9QgtxYhkX26216issd8zcp"]}}', '{"{\"url\":\"https://www.sound.xyz/mrmeerkat.eth/post/b00de93b-9235-4115-b8c5-95a74caa3cb6\"}"}', 'soundxyz'), - (1117896, '0x5151bfb7c3b356885fea774c5008a62463c6d714', 0, 1, '2024-05-07 17:40:02+00', 0, 1, '{"fid": 510268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/898f749f-e8b3-4020-1ac6-eb543d004e00/rectcrop3", "profile": {"bio": {"text": "Hello world/\n\nArtists, designers🎨 ", "mentioned_profiles": []}}, "username": "!510268", "power_badge": false, "display_name": "doonut", "active_status": "inactive", "verifications": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "follower_count": 487, "custody_address": "0xc1b763b680989873b5abb1bf82730b339bddd5f0", "following_count": 721, "verified_addresses": {"eth_addresses": ["0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-468871717/copacabana-barry-manilow-1?in=sc-playlists-kr/sets/disco-fever&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1034783, '0xf38914497861bb575b6bc0a2b8d5e72ef3cb500e', 0, 1, '2024-05-07 13:29:48+00', 0, 3, '{"fid": 475970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d303aa25-974b-42f3-d5e6-8a2cbd83b500/original", "profile": {"bio": {"text": "맥주를 너무 사랑하는 남자!\n하지만 통풍은 무서운 남자!\n부자되기를 두려워하지 않는 남자!\nHighly beer addicted!🍻\nGood day to dance😀", "mentioned_profiles": []}}, "username": "sarnath8282", "power_badge": false, "display_name": "sarnath8282", "active_status": "inactive", "verifications": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "follower_count": 1448, "custody_address": "0xd7ad189a1b9637b6e1383d0a5bdbf23599408568", "following_count": 2596, "verified_addresses": {"eth_addresses": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang?si=3404fe90444d482b85e9730bbdcc01f5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1013064, '0x853eef532cd03b7380446a51b4ca94605b50eee6', 0, 1, '2024-05-07 12:37:51+00', 0, 1, '{"fid": 385271, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6688aa1f-6f77-4662-d753-b22d86570000/rectcrop3", "profile": {"bio": {"text": "I like sushi", "mentioned_profiles": []}}, "username": "twelvexdozen", "power_badge": false, "display_name": "🔵🍕🎩🔮🧀🐦🍖🌈", "active_status": "inactive", "verifications": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "follower_count": 178, "custody_address": "0xdc9db47747079e5a677f0f6f8924e03fc0f96f2a", "following_count": 549, "verified_addresses": {"eth_addresses": ["0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0xd1a6d1f6b8345c6d01441eee79044580bf519d80", "0x1e6495cbc14e87bdd6c641a077db93a84122865e", "0x1e6495cbc14e87bdd6c641a077db93a84122865e"], "sol_addresses": ["FWqT3hZUDWhcZoa9E1oz8NXEF2JDguEybPSQiNS6fzNH"]}}', '{"{\"url\":\"https://on.soundcloud.com/HaybtBoZ4CJW3reX6\"}"}', 'musicjp'), - (1016480, '0x99de9d8f79f993a4b51fc7253914c0fc590bcb1b', 0, 1, '2024-05-07 12:44:26+00', 0, 0, '{"fid": 400888, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5b4e8f6b-138c-434b-750d-6b8b4c9a5600/original", "profile": {"bio": {"text": "Hi, I want to introduce you to delicious food and beautiful scenery&AlfaFrens", "mentioned_profiles": []}}, "username": "ncsoft", "power_badge": false, "display_name": "noisysky🎩🔄", "active_status": "inactive", "verifications": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "follower_count": 4650, "custody_address": "0x9f10badebd3c0a615dff74a777d5cfff66e08831", "following_count": 4622, "verified_addresses": {"eth_addresses": ["0x10e375c4ec42de971ddea5ca055d04ca61250afc"], "sol_addresses": ["FTa1LfZzaFzEz79ne72Qrw51tQnX2dkwGJbiV3WgtP6S"]}}', '{"{\"url\":\"https://soundcloud.com/fearn0t/p3ewq?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1016481, '0xcbd8333eee230d343739b65baa9d44729237a174', 0, 1, '2024-05-07 12:45:48+00', 0, 2, '{"fid": 385250, "object": "user", "pfp_url": "https://i.imgur.com/F56qHvX.gif", "profile": {"bio": {"text": "LFG🔥🔥🔥\ndrakula \nhttps://drakula.app/user/kiba333?invite=dTJbm8", "mentioned_profiles": []}}, "username": "kiba333", "power_badge": false, "display_name": "kibakiba.degen🎩", "active_status": "inactive", "verifications": ["0x308d912e26eeb489d313765e5662b5c860220efa", "0xb55e7a149f51dada6150a3176b1946e1f005dd62"], "follower_count": 557, "custody_address": "0x1afb0ca345a75597965b7b1c080e2e20102f925c", "following_count": 890, "verified_addresses": {"eth_addresses": ["0x308d912e26eeb489d313765e5662b5c860220efa", "0xb55e7a149f51dada6150a3176b1946e1f005dd62"], "sol_addresses": ["2oU1cHniEYM5ByKTDnfYUqdPCq3wNEAg6CUCXMu2z9Zu"]}}', '{"{\"url\":\"https://on.soundcloud.com/BbkuPdBHY88WJhr29\"}"}', NULL), - (1016484, '0x327852f3622ddbe5f17d66036dd1c237ca662a43', 0, 1, '2024-05-07 12:46:22+00', 0, 13, '{"fid": 475970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d303aa25-974b-42f3-d5e6-8a2cbd83b500/original", "profile": {"bio": {"text": "맥주를 너무 사랑하는 남자!\n하지만 통풍은 무서운 남자!\n부자되기를 두려워하지 않는 남자!\nHighly beer addicted!🍻\nGood day to dance😀", "mentioned_profiles": []}}, "username": "sarnath8282", "power_badge": false, "display_name": "sarnath8282", "active_status": "inactive", "verifications": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "follower_count": 1444, "custody_address": "0xd7ad189a1b9637b6e1383d0a5bdbf23599408568", "following_count": 2584, "verified_addresses": {"eth_addresses": ["0xdc8606437c74318b8b144b5232eb30946d4dba30"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/d1xmT\"}"}', 'banmal-mode'), - (1042848, '0x8b04a3541e7c766c438bca99c3fc83a2c7eff410', 0, 1, '2024-05-07 13:58:22+00', 0, 2, '{"fid": 406744, "object": "user", "pfp_url": "https://i.imgur.com/90jbphs.jpg", "profile": {"bio": {"text": "Positive!", "mentioned_profiles": []}}, "username": "miracledoo", "power_badge": false, "display_name": "HEEGOO", "active_status": "inactive", "verifications": ["0xe1f8f232f4b861ffe1d041f33a7c17aaf015c6d1"], "follower_count": 1374, "custody_address": "0x6944a8dad8490ca3abf699e561bf6e9a4a452bd1", "following_count": 2250, "verified_addresses": {"eth_addresses": ["0xe1f8f232f4b861ffe1d041f33a7c17aaf015c6d1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/iu-love-wins-all\"}"}', 'sonata'), - (1056648, '0x3b34f22a24f8282bd8d698d280e955b6fc16c4eb', 0, 1, '2024-05-07 14:45:18+00', 0, 1, '{"fid": 346678, "object": "user", "pfp_url": "https://i.imgur.com/6PryjL1.jpg", "profile": {"bio": {"text": "네오 코인을 투자하고 민트와 워캐스트에 관심이 많은 사람입니다.", "mentioned_profiles": []}}, "username": "steampackmarine", "power_badge": false, "display_name": "Steampackmarine🍖", "active_status": "inactive", "verifications": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "follower_count": 1510, "custody_address": "0x8ba5eefdb660c494528c25f40a2add9ce5f575a9", "following_count": 1728, "verified_addresses": {"eth_addresses": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/WTmgH\"}"}', 'sonata'), - (1104884, '0x1e56718d39d13f722cdf6315ee2a93d7edf9e3ab', 0, 1, '2024-05-07 16:29:55+00', 0, 17, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x4c61e68ed78381f80c5da81176cc019b019d09c4"], "follower_count": 5019, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2505, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x4c61e68ed78381f80c5da81176cc019b019d09c4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ambientbeat/03-r-b-ballad?si=6d4dd5ab957346bf8b3fdcd15e405fb7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1054682, '0xff6c3d83859622dc16e2c62b5b2cb3327c073b2f', 0, 1, '2024-05-07 14:37:48+00', 0, 5, '{"fid": 500614, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a9f37b6-48f8-4d2c-69da-a2f2cd786d00/rectcrop3", "profile": {"bio": {"text": "🌈✨🌈✨🌈We are so early 🌈✨🌈✨🌈 Mint of zora 👉 https://zora.co/@baaambin", "mentioned_profiles": []}}, "username": "baaambin", "power_badge": false, "display_name": "beenni💭🎩🍖", "active_status": "inactive", "verifications": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "follower_count": 1694, "custody_address": "0x76f30b04fca1502795b3aec1f243a36f28d0aabc", "following_count": 1981, "verified_addresses": {"eth_addresses": ["0x84d80ef261a24e9ba4d0407df934c1ea5b470887"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5NclFtKE9l08xM8XhDKyzx?si=oM2P9Y40TiSBiDGh3ZfyqA\"}"}', 'sonata'), - (934819, '0x45789367a83db0ade0a7933aabfbbe054cc8a78f', 0, 1, '2024-05-07 08:18:19+00', 0, 0, '{"fid": 343942, "object": "user", "pfp_url": "https://i.imgur.com/a6dwG5x.png", "profile": {"bio": {"text": "F4F II DEGEN II NFT arts II\nhttps://drakula.app/user/sci-art?invite=pLQDQQ 🧛 🩸", "mentioned_profiles": []}}, "username": "sci-art", "power_badge": false, "display_name": "Sci-art🎩🔮🧀🍖", "active_status": "inactive", "verifications": ["0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1"], "follower_count": 2136, "custody_address": "0xd1238967736b04db93938120d4e883f54179827f", "following_count": 2506, "verified_addresses": {"eth_addresses": ["0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1", "0xb02daa162019ad753718359c3aacf8120a8ef4a1"], "sol_addresses": ["2fAA2qVL1febpuwGouwnkXtpKqDVrYPvycwejUq1cjHf"]}}', '{"{\"url\":\"https://soundcloud.com/kocd24ypesbo/sets/mu9qrztii9ko?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1059103, '0x7292900df8dacb666f44b4c34b2c9c62b0ec8ea6', 0, 1, '2024-05-07 14:52:20+00', 0, 2, '{"fid": 452471, "object": "user", "pfp_url": "https://i.imgur.com/aZC8Y3z.jpg", "profile": {"bio": {"text": "함께해요!!\n\n화이팅입니다!!", "mentioned_profiles": []}}, "username": "tedkwon", "power_badge": false, "display_name": "tedkwon", "active_status": "inactive", "verifications": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "follower_count": 1040, "custody_address": "0x72dadb57669d45eb0fcf52c5c277d86c3998ae48", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uonsrfnd2zaFzHpB6\"}"}', 'sonata'), - (1061194, '0xb1200d23fe6031d39a7a214d3f58dc95815a5216', 0, 1, '2024-05-07 14:57:16+00', 0, 4, '{"fid": 377855, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2099be3b-95d3-4f25-5ee6-26f000e0bd00/original", "profile": {"bio": {"text": "We share the good world, daily life, and coin information in Warpcast. \nI Love DEGEN! ", "mentioned_profiles": []}}, "username": "kinghose21", "power_badge": false, "display_name": "GanjiNani🎩🍖🔵", "active_status": "inactive", "verifications": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "follower_count": 887, "custody_address": "0x2c296e0646c0a35b39ec2c92dadef16b15f41bf2", "following_count": 964, "verified_addresses": {"eth_addresses": ["0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZoiXE\"}"}', 'sonata'), - (1160729, '0x46c7d4e83e22f6da458dcc055e612b66708007e3', 2100, 1, '2024-05-08 00:14:14+00', 10, 1, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 238, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 197, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/duodomusica/palomas-y-cordajes?referral_source=link\"}"}', 'soundxyz'), - (978832, '0x46893d3bfcf17badb1a2aecea1cafd571b4a8173', 0, 1, '2024-05-07 10:39:44+00', 0, 0, '{"fid": 23472, "object": "user", "pfp_url": "https://i.imgur.com/kZDOyHt.jpg", "profile": {"bio": {"text": "I''m a little teapot who didn''t fill out my bio", "mentioned_profiles": []}}, "username": "akiphumi", "power_badge": false, "display_name": "akiphumi ✈️", "active_status": "inactive", "verifications": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "follower_count": 149, "custody_address": "0xd3b4b2a5eb9c49cde9b11050c3c61ea3d81b7507", "following_count": 173, "verified_addresses": {"eth_addresses": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "sol_addresses": ["EmXwqdQXcT7H8QGFaxNrcuCLtEV4TEEVCqNoJDCj59Eq"]}}', '{"{\"url\":\"https://www.sound.xyz/bardz/candle-ends?referral=0x95045076fc93a14a4e9b576599479cb4f58a1b11&referral_source=link\"}"}', NULL), - (1093463, '0x418ba99f6ebda01174811275d87c545031ead101', 0, 1, '2024-05-07 15:55:14+00', 0, 0, '{"fid": 503150, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3f0f973c-8cd9-4d59-700f-b1271961aa00/rectcrop3", "profile": {"bio": {"text": "I like traveling and music.", "mentioned_profiles": []}}, "username": "athenablessing", "power_badge": false, "display_name": "BOBBY", "active_status": "inactive", "verifications": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "follower_count": 371, "custody_address": "0xe57547012f3c9ab59e3ed21cf30f5a0cd6afe3f5", "following_count": 374, "verified_addresses": {"eth_addresses": ["0x76360201f363483e543cd1fc8d43f1f08283714e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/srfg3j5jublx/red-velvet-feel-my-rhythm?si=892645e102ee470fbdd82fff4cf53b13&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173401, '0xc381798a198771247b9423c56a5ee849e77996c8', 100, 1, '2024-05-15 22:45:08+00', 0, 0, '{"fid": 422559, "object": "user", "pfp_url": "https://i.imgur.com/bzqkQ88.jpg", "profile": {"bio": {"text": "/bugs are friends 𓆨𓆣ᯓᡣ𐭩 \n\n\nhttps://objkt.com/@katipo", "mentioned_profiles": []}}, "username": "katipo", "power_badge": true, "display_name": "katipo 𖦹 ", "active_status": "inactive", "verifications": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "follower_count": 279, "custody_address": "0xbb9cf53b77147b6c4f643a71f9a11bfad879a2b9", "following_count": 232, "verified_addresses": {"eth_addresses": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7KaF3RQY4BFMZCoUD5U7m2?si=BNv0i_fVSEO-e2mgF9EBjA\"}"}', NULL), - (1059535, '0x156a094fb5f1afd2f8823f94f4832a0ccc2a1da0', 0, 1, '2024-05-07 14:53:58+00', 0, 6, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 881, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 1010, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KxacZ\"}"}', 'sonata'), - (1047172, '0xdebf1d673038f089158b546c18f257dec36cd745', 0, 1, '2024-05-07 14:15:54+00', 0, 1, '{"fid": 473818, "object": "user", "pfp_url": "https://i.imgur.com/A05DUUx.jpg", "profile": {"bio": {"text": "flying cameras\nwww.accomify.com", "mentioned_profiles": []}}, "username": "ashtons.eth", "power_badge": false, "display_name": "Ashton", "active_status": "inactive", "verifications": ["0xcaf80412a7c2e6c7a049b7d07842891dfd36ce4a"], "follower_count": 48, "custody_address": "0x8298b5c5d732ebc890b7177fb2769bb5380e7903", "following_count": 272, "verified_addresses": {"eth_addresses": ["0xcaf80412a7c2e6c7a049b7d07842891dfd36ce4a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5HgPdfkNwsFLYDUZRHCBbt?si=67ee9bc454744616\"}"}', NULL), - (1100532, '0xcbf275e94102c36b55326cabf14f6fc81234ae89', 0, 1, '2024-05-07 16:15:03+00', 0, 0, '{"fid": 409670, "object": "user", "pfp_url": "https://i.imgur.com/3PTErgd.jpg", "profile": {"bio": {"text": "picture🌻/I like records/커피, 식물, 소소한 행복 ☕️🪴🥰👍", "mentioned_profiles": []}}, "username": "sonagi", "power_badge": false, "display_name": "Sonje", "active_status": "inactive", "verifications": ["0x626aef5c0d4dd0eee86818240f59ffe47f4165e2"], "follower_count": 1228, "custody_address": "0xdb18305d986651814f6d4c083eb287f9bfbca0f0", "following_count": 1094, "verified_addresses": {"eth_addresses": ["0x626aef5c0d4dd0eee86818240f59ffe47f4165e2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki29/cmk8rph6eb6d\"}"}', 'sonata'), - (1100276, '0xdd692729ecf15e8d5fa33d46b1233628df3fc2f8', 0, 1, '2024-05-07 16:09:56+00', 0, 1, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 822, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 750, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki6/kei-love-song-wind-song-1938-1?si=8829ee08a3464d6dafcd47a0aefe2689&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1160709, '0xdcef979e464505ca85b35d9919708f42d02bd6c7', 0, 1, '2024-05-08 00:52:09+00', 0, 16, '{"fid": 3647, "object": "user", "pfp_url": "https://i.imgur.com/k9Fsl24.jpg", "profile": {"bio": {"text": "Building withfam.xyz Prev. Co-founder @ Talisman ✴︎ Member @ FWB, Refraction, The Park, UFO ✷", "mentioned_profiles": []}}, "username": "iamnick.eth", "power_badge": true, "display_name": "Nick Smith", "active_status": "inactive", "verifications": ["0x0f9b1b68f848cb65f532bc12825357201726d3d2"], "follower_count": 1867, "custody_address": "0x54faa8c0c270093fcd0f0c4b29ace4d5426113b7", "following_count": 290, "verified_addresses": {"eth_addresses": ["0x0f9b1b68f848cb65f532bc12825357201726d3d2"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":219631,\"hash\":\"0xaa812494f69f3520474d72369247ad9871975a4f\"}}","{\"url\":\"https://on.soundcloud.com/qk7NxJTsxxbyS9Kk9\"}"}', NULL), - (1173386, '0xe46d6f11a3a152c58034da91b498e40fe4b81012', 100, 1, '2024-05-15 22:19:52+00', 0, 1, '{"fid": 4163, "object": "user", "pfp_url": "https://i.imgur.com/lsVrWMs.jpg", "profile": {"bio": {"text": "🎩🍌Ethereum builder & people connector. @juicebox revnet.eth.limo defifa.net d33m:liv", "mentioned_profiles": []}}, "username": "kmacb.eth", "power_badge": true, "display_name": "KMac🎩🍌", "active_status": "inactive", "verifications": ["0x8b80755c441d355405ca7571443bb9247b77ec16"], "follower_count": 27627, "custody_address": "0x85f9886c48b17b534f3a64f2460dd9c04ab9a236", "following_count": 1858, "verified_addresses": {"eth_addresses": ["0x8b80755c441d355405ca7571443bb9247b77ec16"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6x959m2QDvatSwUAVCHIuf\"}"}', NULL), - (1110792, '0xba175238c8de1f02c0be0b1459930abec13d337d', 0, 1, '2024-05-07 16:58:38+00', 0, 19, '{"fid": 426685, "object": "user", "pfp_url": "https://i.imgur.com/FNRt90M.jpg", "profile": {"bio": {"text": "I''m baechu🥬🥬\n", "mentioned_profiles": []}}, "username": "cutyyyyyyy", "power_badge": false, "display_name": "Baechu", "active_status": "inactive", "verifications": ["0xe9a6cbd76db187757920854204dfed326cfb6d9d"], "follower_count": 3138, "custody_address": "0xd171efd2cf5db8705aef39aa1ea014491b95cc6e", "following_count": 3097, "verified_addresses": {"eth_addresses": ["0xe9a6cbd76db187757920854204dfed326cfb6d9d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Gatnk1iaBoE4cfUX6\"}"}', 'sonata'), - (1100303, '0xd99a2e0dc58715d3d79614dcc4f01e061f82157f', 0, 1, '2024-05-07 16:13:44+00', 0, 1, '{"fid": 350598, "object": "user", "pfp_url": "https://i.imgur.com/Cj4MrAk.png", "profile": {"bio": {"text": "hello world!!\nlove crypto music food art", "mentioned_profiles": []}}, "username": "thor909", "power_badge": false, "display_name": "thor999 🎩", "active_status": "inactive", "verifications": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "follower_count": 1021, "custody_address": "0x6b0364809b88d4a8d57db0034882807aabd85171", "following_count": 1011, "verified_addresses": {"eth_addresses": ["0xbb2c69953cc7010caa58f381a8eabdca6f861886"], "sol_addresses": ["GkCYMc1FHJPKvN8cLQXywSUYUVsSXEQvexDs8SwT7jyV"]}}', '{"{\"url\":\"https://on.soundcloud.com/FXeUGjVxTzV36bJb6\"}"}', NULL), - (1062341, '0xc85e415d16b71c5bf15245ed6cc59a336d7af56a', 0, 1, '2024-05-07 14:58:32+00', 0, 4, '{"fid": 452471, "object": "user", "pfp_url": "https://i.imgur.com/aZC8Y3z.jpg", "profile": {"bio": {"text": "함께해요!!\n\n화이팅입니다!!", "mentioned_profiles": []}}, "username": "tedkwon", "power_badge": false, "display_name": "tedkwon", "active_status": "inactive", "verifications": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "follower_count": 1040, "custody_address": "0x72dadb57669d45eb0fcf52c5c277d86c3998ae48", "following_count": 1098, "verified_addresses": {"eth_addresses": ["0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Dmyo8prYyumRRD3s5\"}"}', 'sonata'), - (1160727, '0x10c82615140f7eed669f38c212fac5d642f29bde', 0, 1, '2024-05-08 03:57:52+00', 0, 22, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2285, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 916, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/iago-barbosa-545318096/odd-taxi-op-oddtaxi-skirt-and?si=0ef118131f79433584100e9bc1b6a542&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1103867, '0x7b61daae1e33eaab37c506d1ca6393dcb8cbfbd8', 0, 1, '2024-05-07 16:26:43+00', 0, 2, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1359, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1490, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3khEEPRyBeOUabbmOPJzAG?si=lkf7IY4UQ_WgXrTO9ejjBw\"}"}', 'musicjp'), - (1106591, '0xb97fcbcc75e271a65351453e54644c5da725436d', 0, 1, '2024-05-07 16:36:04+00', 0, 0, '{"fid": 345541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a8cfdc-97da-46fb-5971-72104c24e300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨\nViva Tax🔥🔥\n\n裏金(🎩)に繋がるムーブを各チャンネルで行っています。全ては国民の皆様の為!\n\n/ogiri /gurumenavijp /littlehappyjp \n\n\n ", "mentioned_profiles": []}}, "username": "kasoutarou", "power_badge": false, "display_name": "Kasoutaro_👻 🎩⌐◨-◨", "active_status": "inactive", "verifications": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "follower_count": 969, "custody_address": "0xf46e4c92d3c8b02fbaf681a529b682432d2e1b74", "following_count": 1297, "verified_addresses": {"eth_addresses": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/iuNQ7zRHBoWLjQqZ9\"}"}', NULL), - (1099849, '0xf2a62796cc013fc47ea6ff336e30b9f195f31eac', 0, 1, '2024-05-07 16:08:04+00', 0, 29, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1473, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 313, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', NULL), - (1134956, '0x6b8813108f615bd97ea9bb5b12ae7250eca26734', 0, 1, '2024-05-07 18:57:14+00', 0, 4, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 160, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 218, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-de/sets/latin?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173377, '0x73399905e36caa3b02855df77b44ce4ead7c3d92', 100, 1, '2024-05-15 21:32:55+00', 0, 1, '{"fid": 193958, "object": "user", "pfp_url": "https://nqxn6iyllab3gvhnuwzecqpzclz2zda45fut2y6ni2vvfuj4hdgq.arweave.net/bC7fIwtYA7NU7aWyQUH5EvOsjBzpaT1jzUarUtE8OM0/", "profile": {"bio": {"text": "crunching numbers @variant", "mentioned_profiles": []}}, "username": "henryadams.eth", "power_badge": true, "display_name": "Henry Adams", "active_status": "inactive", "verifications": ["0x1012270925a4f629b2f6e006a2416d855c6a2444", "0xdf7b6c98c8a70ad20811e1067bd28e3c11405a22"], "follower_count": 581, "custody_address": "0x7abb4b93e3d72834ce8566384233f5cd3265e4ca", "following_count": 545, "verified_addresses": {"eth_addresses": ["0x1012270925a4f629b2f6e006a2416d855c6a2444", "0xdf7b6c98c8a70ad20811e1067bd28e3c11405a22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ixMs0eDF6bm8K46lvsUqE?si=2sotKN6HSIakzoEO8j6_kg\"}"}', 'countrymusic'), - (1099820, '0x57e47ab45c54fc2eaa5a8bb112ce62969d8093ca', 0, 1, '2024-05-07 16:12:24+00', 0, 2, '{"fid": 379759, "object": "user", "pfp_url": "https://i.imgur.com/Uw16XKC.jpg", "profile": {"bio": {"text": "프로현생러/생존운동러/행복채굴러/소액대박소망좌 가즈아🔥🔥", "mentioned_profiles": []}}, "username": "abcleeth", "power_badge": false, "display_name": "Hong🎩🍖", "active_status": "inactive", "verifications": ["0x1238d4dc3521dae1967bbf42337db51f0e7e58a0"], "follower_count": 1159, "custody_address": "0x194f52e5cb8383d1e835178ca373c11ce1f64372", "following_count": 2612, "verified_addresses": {"eth_addresses": ["0x1238d4dc3521dae1967bbf42337db51f0e7e58a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/npmko\"}"}', NULL), - (1160734, '0x436cf57d291670d4a0da1d5698db82c705617b87', 0, 1, '2024-05-08 03:37:06+00', 0, 2, '{"fid": 7247, "object": "user", "pfp_url": "https://i.imgur.com/8HNEqtG.jpg", "profile": {"bio": {"text": "building vuhlog", "mentioned_profiles": []}}, "username": "valcoholics", "power_badge": true, "display_name": "V", "active_status": "inactive", "verifications": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "follower_count": 1621, "custody_address": "0x74497159051ce25ed4d5658f5cb497f0af807943", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/djchriscross901/mulherin-daily-chopped-not-flopped?ref=clipboard&p=i&c=0&si=DFFA5D5342B946D4A28BDBD0699A2B49&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1108066, '0xeb1b640282122909f0243e53d2876adc916701b9', 0, 1, '2024-05-07 16:45:44+00', 0, 11, '{"fid": 407731, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZ3JUuzgWHSaz2mEgnNgdqZx8oy1GNkEabfB9ZthmUVRD?filename=.jpg", "profile": {"bio": {"text": "즐거운 소통해요 💗\n조금 늦더라도 끝까지 달려갑니다 🐢", "mentioned_profiles": []}}, "username": "seulgilown", "power_badge": false, "display_name": "꺼비 🎩", "active_status": "inactive", "verifications": ["0x4b7abe03b174daabe0add682828ceb401794a7eb"], "follower_count": 3573, "custody_address": "0x8dc8a8f86e9a2d989e4f0c9856771697ecec0d0d", "following_count": 4196, "verified_addresses": {"eth_addresses": ["0x4b7abe03b174daabe0add682828ceb401794a7eb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sanullim-sc/x726etrkmufm?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1156170, '0xb27676ba3b09ab1a745312b6db3ee135b6c85a3f', 0, 1, '2024-05-07 21:00:05+00', 0, 14, '{"fid": 515904, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4bc0de2b-2b95-4516-2b4b-2e82f25a1700/rectcrop3", "profile": {"bio": {"text": "Share quality info", "mentioned_profiles": []}}, "username": "!515904", "power_badge": false, "display_name": "Jerry", "active_status": "inactive", "verifications": ["0xc673058a17a25b53eea0c68e2048798cc06901a2"], "follower_count": 76, "custody_address": "0xbbe28d179bc78121aac5b65bc5b25ac318f51163", "following_count": 77, "verified_addresses": {"eth_addresses": ["0xc673058a17a25b53eea0c68e2048798cc06901a2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bensonboone/beautiful-things\"}"}', 'sonata'), - (1116686, '0xe568dfad9af1bcf0a0d7bd240f77f32b4328a46f', 0, 1, '2024-05-07 17:35:54+00', 0, 2, '{"fid": 1551, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/37db99f876244731661739053d22ac67.gif?w=500&auto=format", "profile": {"bio": {"text": "VP Product & Design @ Transient Labs • Co-host of The Game Cellar • FID 1,551", "mentioned_profiles": []}}, "username": "heyhaigh", "power_badge": true, "display_name": "Ry", "active_status": "inactive", "verifications": ["0x38cb027d65aaf2d3f401ff9bd0599afe86f1b627"], "follower_count": 846, "custody_address": "0xf5c33c7c2b1f1ec8a28338e2ddeea660a421ad41", "following_count": 384, "verified_addresses": {"eth_addresses": ["0x38cb027d65aaf2d3f401ff9bd0599afe86f1b627"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Iv1yhxAH7m9SpohnJMs9B?si=86a1b4479dfd4476\"}"}', NULL), - (1106575, '0xeff0f68b29cf6a1e1cbcdb4c525261e241fad259', 0, 1, '2024-05-07 16:36:30+00', 0, 17, '{"fid": 13797, "object": "user", "pfp_url": "https://i.imgur.com/2za1dYe.png", "profile": {"bio": {"text": "Digital Illustrator §§ Host in /sketches", "mentioned_profiles": []}}, "username": "sato99", "power_badge": false, "display_name": "Sato 🎩", "active_status": "inactive", "verifications": ["0x0880cc27a345b5400fb5942f58f4e573e64f2f50"], "follower_count": 903, "custody_address": "0x69b6c35331cd7600d6313fe88040ac5287545ac4", "following_count": 510, "verified_addresses": {"eth_addresses": ["0x0880cc27a345b5400fb5942f58f4e573e64f2f50"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/zankyou-no-terror/von?si=f3be4be194184817b21b7c26df84c376&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1061223, '0x21f89f39c73d7f4dd9b81f862c22b29eb9c322c0', 0, 1, '2024-05-07 14:57:43+00', 0, 4, '{"fid": 287958, "object": "user", "pfp_url": "https://i.imgur.com/LHJN6ue.jpg", "profile": {"bio": {"text": "hi-🪙\n\nLike ♥️\nFollow👆🏻\nRecast 🔄\n\nthanks you! \n\nsuper cast 🔥🌪️⚡️", "mentioned_profiles": []}}, "username": "jwpark0619", "power_badge": false, "display_name": "jin🎩🍖", "active_status": "inactive", "verifications": ["0x52e5053323dbabd5738026c29d49fe6512dadc17"], "follower_count": 1771, "custody_address": "0xdcc2be1e01df3be1edbd8840f3c925b845e30ea2", "following_count": 1380, "verified_addresses": {"eth_addresses": ["0x52e5053323dbabd5738026c29d49fe6512dadc17"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki31/bibi-bam-yang-gang?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1108559, '0xff147927137a3111a6d77dff34aa9eb6d5929c45', 0, 1, '2024-05-07 16:48:09+00', 0, 2, '{"fid": 499783, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/05055ae3-170a-477e-d00b-f66c154eb700/original", "profile": {"bio": {"text": "Building /uniklabs. Based in LF /los-fomos fm host. /cinema-mon-amour simp • Next-gen IPs are Web3 native w/ a skin-in-the-character comm & a virtual economy\n", "mentioned_profiles": []}}, "username": "tako-unik", "power_badge": false, "display_name": "Tako Unik 🌶️", "active_status": "inactive", "verifications": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "follower_count": 32, "custody_address": "0x96c633f9d1b6c20586bae7fd36ea4bf8f7a1bcf9", "following_count": 66, "verified_addresses": {"eth_addresses": ["0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3p4hRhMcb6ch8OLtATMaLw?si=e18bb38c568b4f3f\"}"}', 'los-fomos'), - (1173376, '0xfb709a4103aa180002dab2d0532cba0eb276bd8b', 100, 1, '2024-05-15 21:29:32+00', 0, 11, '{"fid": 190045, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e495182-1969-442e-e9d2-e5de1d8b0100/original", "profile": {"bio": {"text": "Building @superrare. Vibing in /superrare. Tipping $RARE・゚✧", "mentioned_profiles": []}}, "username": "superrarejohn", "power_badge": true, "display_name": "SuperRareJohn", "active_status": "inactive", "verifications": ["0x337101def3eeb6f06e071efe02216274507937bb"], "follower_count": 2051, "custody_address": "0xaafa0b3d56734969539359d957a00276f0ff44c4", "following_count": 225, "verified_addresses": {"eth_addresses": ["0x337101def3eeb6f06e071efe02216274507937bb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4f63Sa8BvPZlOmNhuQA1Yc?si=e6a950049863438e\"}"}', 'sonata'), - (923956, '0x6bb755acb623949db49ae784eca26fe788856280', 0, 1, '2024-05-07 07:32:24+00', 0, 3, '{"fid": 379522, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6a4a9ff-5b30-4656-52c9-02c048649000/original", "profile": {"bio": {"text": "Music Producer 🧞‍♂️ @studio19.eth 🎹 /studio19 Label3 💽 My music is here 🌀 www.sound.xyz/pochi", "mentioned_profiles": []}}, "username": "pochisempere.eth", "power_badge": false, "display_name": "Pochi Sempere 🎩🔵", "active_status": "inactive", "verifications": ["0xa6d713d765fc5405869e040db1b1cd83208fc30b"], "follower_count": 393, "custody_address": "0xfa6096b5d0047861e105ab211cde5a8ce8f72bc3", "following_count": 252, "verified_addresses": {"eth_addresses": ["0xa6d713d765fc5405869e040db1b1cd83208fc30b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes?referral_source=link\"}"}', NULL), - (1147979, '0x6e3f2ded85b6d604f81cfe567132d6aa1a076253', 0, 1, '2024-05-07 20:26:50+00', 10, 35, '{"fid": 393268, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/341e0a74-08a3-4f2a-4078-18d563342900/rectcrop3", "profile": {"bio": {"text": "Crypto trader / Web3 / NFT / BTC / WLD / STEPN / Giveaway / Airdrop\n\nhttps://twitter.com/manmos104", "mentioned_profiles": []}}, "username": "manmos", "power_badge": false, "display_name": "茶魔ちゃま 🎩🍖🔮", "active_status": "inactive", "verifications": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "follower_count": 1362, "custody_address": "0x56d89098857253212a849b63cce1b8c2bf131999", "following_count": 1493, "verified_addresses": {"eth_addresses": ["0xee1faa200bad42781e4bfeb4b7765f771f0f0342"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Ro8jrbsWu0VSk1odLLYuo?si=d2MogQjYQw2FcI6mO7JPbA&context=spotify%3Aplaylist%3A37i9dQZF1EIXWx1jU540Jf\"}"}', 'musicjp'), - (1160256, '0xcb0937667069d3c1a193a63e76835eebd8f2577c', 0, 1, '2024-05-08 17:08:15+00', 0, 3, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/33below/keep-you-as-a-memory\"}"}', NULL), - (1004639, '0x25d098e3347c77af86e303a9ec6dc390b49caacb', 0, 1, '2024-05-07 12:01:08+00', 0, 3, '{"fid": 398319, "object": "user", "pfp_url": "https://i.imgur.com/FcIQL9V.gif", "profile": {"bio": {"text": "Crypto触り始めて7年目。\n\nこれまでに溶かした資金は数知れず😇\nそろそろ爆益お願いします🤤\n\n", "mentioned_profiles": []}}, "username": "blacrypto", "power_badge": false, "display_name": "Black🎩🔄", "active_status": "inactive", "verifications": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "follower_count": 449, "custody_address": "0x395ddab687c4a838569dab0758997779750dd7e9", "following_count": 372, "verified_addresses": {"eth_addresses": ["0x2267fd18538550c9ae63fa849723de038cb97a65", "0x2267fd18538550c9ae63fa849723de038cb97a65"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/34o7re4NOaA8QP5pJ6uaEP?si=2iq8XgJDSDuYd33CNGmnvA&context=spotify%3Aalbum%3A0DjfRBxsoupBfNFweagKeD\"}"}', NULL), - (1156169, '0x71961d17bfd5384b4b94c98fbb21ab128af9c0bd', 100, 1, '2024-05-07 21:00:26+00', 20, 7, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1150, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1538, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/headhunter0/14-nujabes-horizon?si=e45e82b0a218402799803b437d622f8a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1063307, '0x2c1f526d2345df00d874f8cd529bc9faa8c82cc6', 0, 1, '2024-05-07 15:00:03+00', 0, 1, '{"fid": 507228, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9a7725b4-d85f-448f-3e73-6f10f52fa000/rectcrop3", "profile": {"bio": {"text": "I am happy bone", "mentioned_profiles": []}}, "username": "!507228", "power_badge": false, "display_name": "Happybone", "active_status": "inactive", "verifications": ["0x35f9e0792da3290d53d0bd6b7671e391a24ef013"], "follower_count": 65, "custody_address": "0xf5054895e96c0321ed083cf3baf8c40dc9ca376b", "following_count": 92, "verified_addresses": {"eth_addresses": ["0x35f9e0792da3290d53d0bd6b7671e391a24ef013"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lovely-kessy/naul-memory-of-the-wind?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1148606, '0xe7e7317caaa46a0e29e7199b256100bd84201b15', 0, 1, '2024-05-07 20:27:40+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1145, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1532, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kamalnw/decline?si=ea71fd65de33498292a642d30193fb0d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1055939, '0x44058ed311abec2afed3f2b1f18d351877ad4518', 0, 1, '2024-05-07 14:42:36+00', 0, 1, '{"fid": 809, "object": "user", "pfp_url": "https://i.imgur.com/eJLe6pM.jpg", "profile": {"bio": {"text": "no one knows what it means but it''s provocative", "mentioned_profiles": []}}, "username": "ldf.eth", "power_badge": true, "display_name": "LDF", "active_status": "inactive", "verifications": ["0xc322e8ec33e9b0a34c7cd185c616087d9842ad50"], "follower_count": 848, "custody_address": "0xb4f1668832c037c35bbf5e0422a6570c4623cae1", "following_count": 256, "verified_addresses": {"eth_addresses": ["0xc322e8ec33e9b0a34c7cd185c616087d9842ad50"], "sol_addresses": ["7EbmfA9B2LiX7TAKwA9RQUxn4uoqe4A8KJ4H12rCFxJa"]}}', '{"{\"url\":\"https://open.spotify.com/track/2WdqAiO7FfSdDopNj67f6h?si=59de4144285d4c7e\"}"}', NULL), - (1115050, '0x9858fcd835d808c5a9bd93ae60a66d4f3e8ba7e1', 0, 1, '2024-05-07 17:23:13+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 38, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 131, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/depression-anxiety-paint-suffering-trauma-internationally?referral_source=link\"}"}', 'soundxyz'), - (929034, '0x6249a5284ed413107c9fc664876b938ebe3b9e41', 0, 1, '2024-05-07 07:59:15+00', 0, 39, '{"fid": 7452, "object": "user", "pfp_url": "https://i.imgur.com/K3sUs0W.gif", "profile": {"bio": {"text": "Co-creator of /buttongame 🟣 | Pokémon Master | Fartcaster Extraordinaire | /free | /degenchain | notfrydoteth.twitter", "mentioned_profiles": []}}, "username": "buttongame.eth", "power_badge": true, "display_name": "fry 🎩⛓🟣💀", "active_status": "inactive", "verifications": ["0x366ddda42f9c965c765fa6d8e98d84f224e81f46", "0x311ef08626709a0de3aa84d396437773340e022d"], "follower_count": 13014, "custody_address": "0xcba565e7a82f2de3117f3b141266cac0d6adee17", "following_count": 1472, "verified_addresses": {"eth_addresses": ["0x366ddda42f9c965c765fa6d8e98d84f224e81f46", "0x311ef08626709a0de3aa84d396437773340e022d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3td69vL9Py7Ai9wfXYnvji?si=ab2623f8e587410f\"}"}', NULL), - (1138358, '0xba79bf425e294565543152a2caa0a27c525639e7', 0, 1, '2024-05-07 19:38:13+00', 0, 0, '{"fid": 441816, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42a6148d-00ab-4580-4822-8bffad353300/rectcrop3", "profile": {"bio": {"text": "Interested in football, life movie\n\n\nDear friends, I want to have a good time with you", "mentioned_profiles": []}}, "username": "ayoood", "power_badge": false, "display_name": "AYOOOD", "active_status": "inactive", "verifications": ["0x217f336c393d1fdfc8c9ebd317a87a313c8385a5"], "follower_count": 98, "custody_address": "0x217f336c393d1fdfc8c9ebd317a87a313c8385a5", "following_count": 164, "verified_addresses": {"eth_addresses": ["0x217f336c393d1fdfc8c9ebd317a87a313c8385a5"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Gipsy Kings - No Volvere (Amor Mio) (Corandcrank Remix) by lola on #SoundCloud https://on.soundcloud.com/aCgRm\"}"}', NULL), - (1173368, '0x4340943e666e74688a7950f7274110f6702807b7', 100, 1, '2024-05-15 21:20:45+00', 0, 1, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2047, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', NULL), - (1109256, '0x9f28c4ed4b7df9ea826f3332b1c9c2ee5ba6b3b2', 0, 1, '2024-05-07 16:49:54+00', 0, 1, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 160, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 177, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/prince/purple-rain\"}"}', NULL), - (1094148, '0x5475eaf199868209bdb64b355db02e4fb5f55768', 1000, 1, '2024-05-07 15:57:46+00', 3, 104, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1274, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1283, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/newhopeclub/l-u-s-h?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1106599, '0xd91adfd93bfff673c1a10f52381ff441567e0a35', 0, 1, '2024-05-07 16:35:20+00', 0, 0, '{"fid": 431749, "object": "user", "pfp_url": "https://i.imgur.com/OPRm4Ci.jpg", "profile": {"bio": {"text": "Visual art - NFT artist available collections on : @foundation & @objktcom & @MakersPlace & @KreatePlatform & @exchgART 🔸\n\nhttps://linktr.ee/arrasartistic", "mentioned_profiles": []}}, "username": "arrasartistic", "power_badge": false, "display_name": "Sara 🎩", "active_status": "inactive", "verifications": ["0x624260517cd02339cc41525f05fb7520ab11fc2a"], "follower_count": 521, "custody_address": "0x1ba23c2e9f15a6b10f1909e34d44944ecd84ad8b", "following_count": 714, "verified_addresses": {"eth_addresses": ["0x624260517cd02339cc41525f05fb7520ab11fc2a"], "sol_addresses": ["Hv6YeUNjxEvMUQyB3bo7NYW3nyJ7LHf2AZEoEENynUng"]}}', '{"{\"url\":\"https://open.spotify.com/track/7nmEQmD5IEtVC2srvNEc32\"}"}', NULL), - (1119360, '0x823c4c69095bbdd82b27f0be45c8134fd37a81cf', 0, 1, '2024-05-07 17:47:24+00', 0, 1, '{"fid": 13077, "object": "user", "pfp_url": "https://i.imgur.com/NwgqZfI.jpg", "profile": {"bio": {"text": "Writer | Book lover | Weeb | Walking coordination failure\n| Marketing /subsquid | Enjoyer of /classical music and /postcards", "mentioned_profiles": []}}, "username": "naomiii", "power_badge": true, "display_name": "Naomi ", "active_status": "inactive", "verifications": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "follower_count": 2558, "custody_address": "0x523882b3d8ff12ec24c3a55403ffed32632bfdbc", "following_count": 335, "verified_addresses": {"eth_addresses": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/34tqyOFd9r4FZSBGsy1RTC?si=BFZfq2i0Q8qoM1v2b6-CBQ\"}"}', NULL), - (1094120, '0xe4d195071963c2f6c8856439e5efffac036974fe', 0, 1, '2024-05-07 15:57:31+00', 0, 1, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 820, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 745, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-37879587/utowkrkbgdrn?si=49410e353d984a8fa87069441b88cb7e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173355, '0xa97f75bc7451fd3159c4a3e299d94d5ba7d800f8', 100, 1, '2024-05-15 21:04:57+00', 0, 3, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 284, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/duodomusica/palomas-y-cordajes?referral_source=link\"}"}', 'musicnft'), - (1050288, '0x72ab5cf7c97dac15c010eafd0710f623c429fa50', 0, 1, '2024-05-07 14:23:39+00', 0, 8, '{"fid": 420765, "object": "user", "pfp_url": "https://i.imgur.com/GTp8uTs.jpg", "profile": {"bio": {"text": "Software Eng. Dumb dad. Aging emo. Reply guy.", "mentioned_profiles": []}}, "username": "big-red", "power_badge": true, "display_name": "Red 🎩", "active_status": "inactive", "verifications": ["0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8"], "follower_count": 1121, "custody_address": "0x9da027fe76c7fcae3ae9abba775641e7a9d473a8", "following_count": 193, "verified_addresses": {"eth_addresses": ["0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":420765,\"hash\":\"0xacbc60314c4a636e04ee9a514b3bbc3914f2ca2d\"}}","{\"url\":\"https://open.spotify.com/track/4GVs1y86nFjDDKYOkqJQ90?si=X9EkYtHdTmOYDrXBO9ugLg&context=spotify%3Aplaylist%3A37i9dQZF1E8PhF05zG6eaf\"}"}', 'bangers'), - (1160725, '0xf88a8e9f2e35624cf13c92759f95667180dda057', 0, 1, '2024-05-07 22:32:22+00', 0, 2, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 587, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 524, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/raeisla/miles-and-miles?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1 \"}"}', NULL), - (1063968, '0x024c99b43430cba60400104dd47f75bd071cc1c4', 0, 1, '2024-05-07 15:02:45+00', 0, 3, '{"fid": 513392, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f999be1e-ee9a-46e9-834b-db682e9e6500/rectcrop3", "profile": {"bio": {"text": "Hello I’m pika :)", "mentioned_profiles": []}}, "username": "!513392", "power_badge": false, "display_name": "pika", "active_status": "inactive", "verifications": ["0x99f1059302e6f7b9cbe0fefa3563a20cc3dcf860"], "follower_count": 292, "custody_address": "0x0a289a67f1975bc2d3cada10204a983fc42967d5", "following_count": 351, "verified_addresses": {"eth_addresses": ["0x99f1059302e6f7b9cbe0fefa3563a20cc3dcf860"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/richardjolim/da6cxfqz6lyj\"}"}', 'sonata'), - (1063348, '0x1ca367e127e16aef19e7a9e6ba7d5b381f6c2c9e', 10, 1, '2024-05-07 15:00:03+00', 0, 2, '{"fid": 416495, "object": "user", "pfp_url": "https://i.imgur.com/dKMZ77m.jpg", "profile": {"bio": {"text": "My name is gangpyolee", "mentioned_profiles": []}}, "username": "gangpyo", "power_badge": false, "display_name": "Leegangpyo", "active_status": "inactive", "verifications": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "follower_count": 500, "custody_address": "0xc51d55d4eae0828062467935aa61d1922f4b5fc2", "following_count": 551, "verified_addresses": {"eth_addresses": ["0x6c97baaa579ec30ddb31912b82cf4363581965b3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jasonmraz/im-yours?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1063991, '0x53393c026fdace544e5980091b2245dd7a978ae2', 0, 1, '2024-05-07 15:02:21+00', 0, 7, '{"fid": 401805, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/baf0f02d-0a81-476e-78af-98c7aaa38000/original", "profile": {"bio": {"text": "Lovely 🤩\n대한민국 국민 🇰🇷 \n\n볼수록 매력있고 꽤 괜찮은사람.\n\n경제적으로 완전한 자유를 누리는 자.\n\n", "mentioned_profiles": []}}, "username": "peaceful-hj", "power_badge": false, "display_name": "Peaceful-hj", "active_status": "inactive", "verifications": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "follower_count": 1829, "custody_address": "0xe6520f1c42419d3526a8a812fe3850aaae6208ef", "following_count": 3271, "verified_addresses": {"eth_addresses": ["0xde7e2aa8b8b17963472b1dafafc94592ed5b386b", "0xde7e2aa8b8b17963472b1dafafc94592ed5b386b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/SqSfU\"}"}', 'sonata'), - (1160587, '0xb641961f8a0b7d9b4d08b249446c19d96da5fb5c', 0, 1, '2024-05-08 21:14:53+00', 0, 2, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~ co-founder of DANC3\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 215, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 515, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/a582c46c-462f-414c-bede-cc4690b3b7bc?invite=rwPdFF\"}","{\"url\":\"https://open.spotify.com/track/1aZLIbKEdsyqxyD6iNcrbA?si=eYvUEW-zSRSUHXFPJ-2ClA&context=spotify%3Asearch%3Apour%2B\"}"}', NULL), - (1089796, '0x14c7733e4a9940b0ad856272c35876caecc09e5a', 0, 1, '2024-05-07 15:51:52+00', 0, 1, '{"fid": 500242, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc4db9dc-8867-4c10-55c6-09d39032ee00/rectcrop3", "profile": {"bio": {"text": "🎩🍖", "mentioned_profiles": []}}, "username": "45rpm", "power_badge": false, "display_name": "Rimuru", "active_status": "inactive", "verifications": ["0x0569ee1c2362e13c66a7b7246e18b387f80663fa"], "follower_count": 619, "custody_address": "0x867705bc06c55da9f02e3c838ff54c59616aefc1", "following_count": 625, "verified_addresses": {"eth_addresses": ["0x0569ee1c2362e13c66a7b7246e18b387f80663fa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/johnson-vincent/zard-dont-give-up-johnson-vincent-eternal-machida-remix?si=de74e3f16ee14dea910e629c7d44bf95&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1094168, '0x952e5fa539222edfcc7797c99204bee791d26ab9', 0, 1, '2024-05-07 15:57:20+00', 0, 2, '{"fid": 345389, "object": "user", "pfp_url": "https://i.imgur.com/UTjINHU.jpg", "profile": {"bio": {"text": "ごっちちゃん| cryptoファン| Kudasai AMA皆勤目標|成敗中毒者|ラーメン🍜とカレー🍛 |ジャパニーズヒップホップ|今年こそ爆益ください", "mentioned_profiles": []}}, "username": "gocchichan", "power_badge": false, "display_name": "gocchichan", "active_status": "inactive", "verifications": ["0x6f94533e3c24798697fe47770667cdebb8b98d7b"], "follower_count": 957, "custody_address": "0x4804fc8b3ef2cc8719b51574ad1f50e0f7f5ba65", "following_count": 1040, "verified_addresses": {"eth_addresses": ["0x6f94533e3c24798697fe47770667cdebb8b98d7b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1nbG9Frn7oZr3PZs9\"}"}', 'musicjp'), - (1118360, '0x6efea1fa36209bec818c7a74f4b5a659ccde4030', 0, 1, '2024-05-07 17:41:56+00', 0, 20, '{"fid": 378416, "object": "user", "pfp_url": "https://arweave.net/m84NL03kUMq2EjhKdu6k5yZW-hvdgSL7YkY1wpRpKo8/", "profile": {"bio": {"text": "Medic\nI like warpcast ", "mentioned_profiles": []}}, "username": "amin-phantom", "power_badge": false, "display_name": "Amin 🔄🎩👽🍕", "active_status": "inactive", "verifications": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "follower_count": 1261, "custody_address": "0xbd1ca5951b4cdec1522e3b9a21d2d848d0fc6628", "following_count": 1368, "verified_addresses": {"eth_addresses": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "sol_addresses": ["DWgaBv9RhLQyboeEN1UkPebDz8i7Lz9rtDJADF84bYEC"]}}', '{"{\"url\":\"https://on.soundcloud.com/bKg3C65PwWYeR7Eq7\"}"}', NULL), - (1065093, '0x31065c813058a9962d9d51fc0d5f398c951fe5a4', 0, 1, '2024-05-07 15:05:24+00', 0, 22, '{"fid": 484256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/58979a6c-5974-4eb5-0d8f-d4ef62071f00/rectcrop3", "profile": {"bio": {"text": "한다면 하는 남자 real 오또코", "mentioned_profiles": []}}, "username": "puffmommy", "power_badge": false, "display_name": "ddogas", "active_status": "inactive", "verifications": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "follower_count": 2563, "custody_address": "0xa3e79ae97323b1c623fc2bd636ebec9bc5e418b6", "following_count": 2482, "verified_addresses": {"eth_addresses": ["0x0670303c741a704de90c4264ad6d775116a88a1b"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/andy-ryu-675475430/glen-check-60s-cardin-1?si=8c513fae00504abba7c2bebe13def635&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1063746, '0xfb465c90a435f68bf575357ee3bf0deb141186f3', 0, 1, '2024-05-07 15:01:07+00', 0, 1, '{"fid": 395831, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3905647a-1017-4df6-131f-5eb2e4beda00/original", "profile": {"bio": {"text": "i love crypto", "mentioned_profiles": []}}, "username": "foryou", "power_badge": false, "display_name": "foryou", "active_status": "inactive", "verifications": ["0x27ed00c709de12cb89c69460b32243f89542b3fb"], "follower_count": 1140, "custody_address": "0xa7e29ae1aa37f5a8e3f6392fd51caf5d8c0641ea", "following_count": 1650, "verified_addresses": {"eth_addresses": ["0x27ed00c709de12cb89c69460b32243f89542b3fb"], "sol_addresses": ["8YzNZ1CaRemSvAtpjyohBv3tTeNuvKhRRdJe7ThsqNtZ"]}}', '{"{\"url\":\"https://on.soundcloud.com/PhETP\"}"}', 'sonata'), - (1064518, '0xe6a51729af186ca7d5d7392d88c72da6340b15fa', 0, 1, '2024-05-07 15:03:00+00', 0, 1, '{"fid": 501778, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5d9e056c-8e4c-4088-7bc6-7364799f1a00/rectcrop3", "profile": {"bio": {"text": "where you are you are\nnice meet you friends", "mentioned_profiles": []}}, "username": "pinetree0", "power_badge": false, "display_name": "pinetree0", "active_status": "inactive", "verifications": ["0x44e503cdab23b97981231e03eccdeb3f15b00905"], "follower_count": 672, "custody_address": "0x262bf67a37ceabc3c57ba068320e7adfca86e543", "following_count": 920, "verified_addresses": {"eth_addresses": ["0x44e503cdab23b97981231e03eccdeb3f15b00905"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-545527839/iu-love-wins-all?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1115052, '0x56e354e42f8b092fa5c9ed9ed5d539ae4487d7e8', 0, 1, '2024-05-07 17:23:26+00', 0, 10, '{"fid": 406956, "object": "user", "pfp_url": "https://i.imgur.com/Cg5SFVF.jpg", "profile": {"bio": {"text": "선팔 맞팔 환영합니다 ^~^ 늦더라도 반사 무조건 갑니다!", "mentioned_profiles": []}}, "username": "kimjungrok", "power_badge": false, "display_name": "Kimjungrok", "active_status": "inactive", "verifications": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "follower_count": 1693, "custody_address": "0xf30adca85e63c38c4a94009b74a5a3b369e4174b", "following_count": 1258, "verified_addresses": {"eth_addresses": ["0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sFe8S4BZ7i3DDUsp7\"}"}', 'sonata'), - (1094150, '0xa15592a7ebb1608c89657fef07a299477f6009bb', 0, 1, '2024-05-07 15:57:30+00', 0, 1, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2212, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2093, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cigarettesaftersex/touch-1?si=7be18f30d85843be86ad26e7a338602d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1107690, '0x197d3dd2733c3f611680a58d46d73a908f532457', 0, 1, '2024-05-07 16:45:24+00', 0, 0, '{"fid": 509861, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3df1858d-44be-4924-3a89-de28bc8c8700/rectcrop3", "profile": {"bio": {"text": "An older artist being reborn.", "mentioned_profiles": []}}, "username": "oldschooldropout", "power_badge": false, "display_name": "OSKDØ", "active_status": "inactive", "verifications": ["0x9043aa89e4153f73079782d7e30e8de8f18681f0"], "follower_count": 5, "custody_address": "0x171cc9ba0cdd9c863f96c4c5dab78e46ebebd472", "following_count": 86, "verified_addresses": {"eth_addresses": ["0x9043aa89e4153f73079782d7e30e8de8f18681f0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VfNGVkabbew6hFgy8\"}"}', 'techno'), - (1138828, '0xf4c04f1e467f2a4fb7811a8004b27d0689991673', 0, 1, '2024-05-07 19:43:25+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1144, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1529, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-801322076/metallica-master-of-puppets-remastered?si=6540dbddad0d42f290e7a655236bfd0d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1173717, '0xfb787698b8e16126765d7f17c8f35b5305eef829', 0, 1, '2024-05-16 08:52:07+00', 0, 0, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 264441, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 336, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/8af38c99-c1ff-4f22-be0a-f188dde3d576\"}"}', NULL), - (1160308, '0xee428545395ea3611f4dfec651cd5bd48b86f351', 1010, 1, '2024-05-08 20:14:18+00', 0, 2, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 692, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 343, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/08NCH7j5peJNr9B6uj1aIa?si=b1a6f631aed64707\"}"}', 'soundscapes'), - (1094155, '0x67f9e58d41653d42e8b93b32bc5f3a33c925db22', 0, 1, '2024-05-07 15:56:53+00', 0, 3, '{"fid": 503248, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf6a40ac-f61c-455e-0701-59d6f709c900/rectcrop3", "profile": {"bio": {"text": "hello~ let''s start again!🏃🏻", "mentioned_profiles": []}}, "username": "anyoyo", "power_badge": false, "display_name": "yoyo", "active_status": "inactive", "verifications": ["0x47a6d7223e375d33d7235c9654d728eb108d78ae"], "follower_count": 316, "custody_address": "0x671233c6ac0ffecdd45a28698ec8fb7b3203d924", "following_count": 780, "verified_addresses": {"eth_addresses": ["0x47a6d7223e375d33d7235c9654d728eb108d78ae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bolbbalgan4/psy-father\"}"}', NULL), - (1138361, '0xe0e2fdb22cf5ba8374123aac09a39eeea1358dad', 0, 1, '2024-05-07 19:40:12+00', 0, 0, '{"fid": 403379, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07cd3518-ead3-40b0-ffb8-d7118fbeff00/rectcrop3", "profile": {"bio": {"text": "\n\n#캐나다사는Knadian #영어어려워 #사실워캐도어려워 #그래사실마흔틴이야 \n\nF4F!!! 연중무휴~!!! 유후~~!!!", "mentioned_profiles": []}}, "username": "gmin", "power_badge": false, "display_name": "Gmin Lee", "active_status": "inactive", "verifications": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "follower_count": 2399, "custody_address": "0xde1c043501c2a703b140a33aa24bad2c0f7a8497", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uCdyT\"}"}', 'sonata'), - (1101471, '0xe7b3f1cdcc03706309ef4ceb09d22f4515a14605', 0, 1, '2024-05-07 16:16:54+00', 0, 2, '{"fid": 504968, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6a64799a-97b7-4279-8166-7879e590a800/rectcrop3", "profile": {"bio": {"text": "i am conquer", "mentioned_profiles": []}}, "username": "borjigintemujin", "power_badge": false, "display_name": "TemuJin🎩🍖", "active_status": "inactive", "verifications": ["0xf55c54c399a4d3fa4735e8d399f676a39c91ec8a"], "follower_count": 86, "custody_address": "0xcccfcfd81eb837d014139ae226efd289bf75a77d", "following_count": 132, "verified_addresses": {"eth_addresses": ["0xf55c54c399a4d3fa4735e8d399f676a39c91ec8a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sproooouts9267/ng0nf9k7sq0c?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1101498, '0x374e24326aab55fca3b5fe373bd61c521b4b3781', 0, 1, '2024-05-07 16:16:55+00', 0, 1, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 822, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 750, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"싸이월드 갬성 https://soundcloud.com/musictop_for_android/rahyfr3xrkyf?si=5ec93644390642e1a13fcd012634d303&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1100272, '0xb467bda44e759383e6b75849cb30cf64e0750073', 0, 1, '2024-05-07 16:09:59+00', 0, 9, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1473, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 313, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', 'soundxyz'), - (1094706, '0xc98af6a89551c4c30c36ad60df7594ecdb8a4b8d', 0, 1, '2024-05-07 15:59:07+00', 0, 2, '{"fid": 422208, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4069de80-8311-455f-b784-a882fc5d5d00/rectcrop3", "profile": {"bio": {"text": "Support the my main cast❤️", "mentioned_profiles": []}}, "username": "mhdiznd", "power_badge": false, "display_name": "Mhdi🎩🍖", "active_status": "inactive", "verifications": ["0xf64ff6520a410c1cf746285dd3c893d35ac5eef4"], "follower_count": 1376, "custody_address": "0xbe5370b1c04648f179e87478ed43a88dd31c6f01", "following_count": 1752, "verified_addresses": {"eth_addresses": ["0xf64ff6520a410c1cf746285dd3c893d35ac5eef4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uUFLS\"}"}', 'sonata'), - (1065097, '0x8f87332602fa1dbb9841a762c3ccf6d15fd75e38', 0, 1, '2024-05-07 15:04:43+00', 0, 1, '{"fid": 340653, "object": "user", "pfp_url": "https://i.imgur.com/fWguwXE.jpg", "profile": {"bio": {"text": "A cheerful boy from the village", "mentioned_profiles": []}}, "username": "vladyslavlove", "power_badge": false, "display_name": "Vladyslav", "active_status": "inactive", "verifications": ["0x580cd6a1fa43aff093214a7eef4d7b717d947a43"], "follower_count": 21, "custody_address": "0x3e4fa68e59e9a4ae2c1fbb59859b9f841776ad2b", "following_count": 49, "verified_addresses": {"eth_addresses": ["0x580cd6a1fa43aff093214a7eef4d7b717d947a43"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/octobersveryown/drake-push-ups\"}"}', NULL), - (1106770, '0xf20e5237207939847f623fa0573321054e70a2fd', 0, 1, '2024-05-07 16:39:13+00', 0, 0, '{"fid": 15716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa02241c-2461-4bf2-0f5e-8be636c8d000/rectcrop3", "profile": {"bio": {"text": "Brooklynite by day. Daydreamer by night.", "mentioned_profiles": []}}, "username": "ethtotheweth", "power_badge": false, "display_name": "Eric", "active_status": "inactive", "verifications": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "follower_count": 87, "custody_address": "0xe8e5fc4ea45762caf257a7a6aab07de3df9bf30d", "following_count": 224, "verified_addresses": {"eth_addresses": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VeNmt3mrf93nXcxP8\"}"}', NULL), - (1078879, '0x5a803963c9bca16f6b496f54e9351e42bf11a7ab', 0, 1, '2024-05-07 15:27:38+00', 0, 6, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1263, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1475, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QpAKv\"}"}', 'sonata'), - (1101473, '0xebf122c2ce397df5dce942fc3c5f08579c1b75f8', 0, 1, '2024-05-07 16:16:46+00', 0, 2, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 829, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 642, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/U8TMzDfaCeNpU6F59\"}"}', 'sonata'), - (1101882, '0xb89f18b7ff78b74111ba0693e86e32e9dd93e8ee', 0, 1, '2024-05-07 16:19:05+00', 0, 0, '{"fid": 345541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a8cfdc-97da-46fb-5971-72104c24e300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨\nViva Tax🔥🔥\n\n裏金(🎩)に繋がるムーブを各チャンネルで行っています。全ては国民の皆様の為!\n\n/ogiri /gurumenavijp /littlehappyjp \n\n\n ", "mentioned_profiles": []}}, "username": "kasoutarou", "power_badge": false, "display_name": "Kasoutaro_👻 🎩⌐◨-◨", "active_status": "inactive", "verifications": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "follower_count": 969, "custody_address": "0xf46e4c92d3c8b02fbaf681a529b682432d2e1b74", "following_count": 1297, "verified_addresses": {"eth_addresses": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0DKNNR9iDjwfCEpMiFXMJq?si=9q8OUAvdTs-SZXPVxGhYhg\"}"}', NULL), - (1064015, '0x80a6a7b437bebd1cb225e641dd0e227eb980a744', 0, 1, '2024-05-07 15:02:16+00', 0, 7, '{"fid": 196444, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8f821414-b723-4b0b-bba9-be8bf969ba00/original", "profile": {"bio": {"text": "Self-taugh Artist. Part of VUELAPELUCAS 3000 Community (NFT Art Camp in Argentina)", "mentioned_profiles": []}}, "username": "pamilo", "power_badge": false, "display_name": "PAMILO CEIRONE®", "active_status": "inactive", "verifications": ["0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07"], "follower_count": 376, "custody_address": "0xdb464bfd2d6b35908fce250e0856039557c8186c", "following_count": 253, "verified_addresses": {"eth_addresses": ["0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/775XKH1pgcWxJohoQxxXqs?si=rB1z5s1UTE-RZ4EorE5BzA\"}"}', 'vuelapelucas'), - (1122517, '0x5f6d32da02954570ef0c3f5df9676688e5ecf6b5', 0, 1, '2024-05-07 18:00:34+00', 0, 6, '{"fid": 427164, "object": "user", "pfp_url": "https://i.imgur.com/9LNcdCN.jpg", "profile": {"bio": {"text": "🏅행복은멀리있지않아요🏅먹고사는이야기🍴❤️먹방/음식/맞팔/3종세트❤️", "mentioned_profiles": []}}, "username": "dw0726", "power_badge": false, "display_name": "cherrywoonny🍒", "active_status": "inactive", "verifications": ["0x54ca8cdd783ad7ffac044b101002a6823814d481"], "follower_count": 1784, "custody_address": "0xcd177d460a9551cd7645c21efeb8a96d8a40bc13", "following_count": 1252, "verified_addresses": {"eth_addresses": ["0x54ca8cdd783ad7ffac044b101002a6823814d481"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/CDKWAvakeXit4TfcA\"}"}', 'sonata'), - (1173497, '0xc007d6ef37880b30d9954b806205c01ff6f97b48', 15276, 1, '2024-05-16 04:27:01+00', 100, 1, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 759, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 353, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ggMp1ktrpM3K2MDRf89DN?si=3ee0250b8c344053\"}"}', 'soundscapes'), - (1065102, '0x7cc4aecc63ca465175c7c042e805d6eb85d6b8bf', 0, 1, '2024-05-07 15:05:38+00', 0, 1, '{"fid": 512591, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdc60244-d454-4841-b5cd-234f01583000/rectcrop3", "profile": {"bio": {"text": "Just normal person❤️\nInterested in cook \nand upload my dish''s pic 📸", "mentioned_profiles": []}}, "username": "!512591", "power_badge": false, "display_name": "Universe611", "active_status": "inactive", "verifications": ["0x0a1a262f7329136f9ae2ec3cedd577662b24bafa"], "follower_count": 226, "custody_address": "0xbe06c91b54890a1fbc89dc8960a6069360078bae", "following_count": 806, "verified_addresses": {"eth_addresses": ["0x0a1a262f7329136f9ae2ec3cedd577662b24bafa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JCmdZ\"}"}', 'sonata'), - (1160258, '0xc3dc28fe974989fb89eb3ccbbf7978a63bfe881a', 0, 1, '2024-05-08 17:11:54+00', 100, 8, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 290, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6NVnwSSVqvMPnmmFa7RNvp?si=b3f9f2898d09481b\"}"}', 'replyguys'), - (1160315, '0xad712fd1d64c0b6c6491210e20f006777a271c95', 0, 1, '2024-05-08 18:57:15+00', 0, 5, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 640, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 242, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4kdVdB8sOkoaBeEd05G6Gu?si=FSkHJiS3RDSA7u3R-YkGnQ\"}"}', 'bangers'), - (1160313, '0x6868446568d3cd62b7c8490a89bcbe2a47324eea', 0, 1, '2024-05-08 18:44:31+00', 10, 1, '{"fid": 324876, "object": "user", "pfp_url": "https://i.imgur.com/38VUjUA.jpg", "profile": {"bio": {"text": "artist-producer and founder of web3 music blog iridescent wave 🌊\nhttps://www.celiainsidemusic.com/", "mentioned_profiles": []}}, "username": "celiainside", "power_badge": true, "display_name": "celia inside ", "active_status": "inactive", "verifications": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "follower_count": 296, "custody_address": "0x408f57c90244ba993ef486c57336818bc5d13d25", "following_count": 382, "verified_addresses": {"eth_addresses": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4LKYOetuIF5c9XjeLBL9av?si=b1f841a69e214126\"}"}', NULL), - (1065105, '0xa7d540a5ee9274093fed30fc0d3ed79005a6bb36', 0, 1, '2024-05-07 15:06:07+00', 0, 0, '{"fid": 460454, "object": "user", "pfp_url": "https://i.imgur.com/IJQNGZf.jpg", "profile": {"bio": {"text": "Gem finder", "mentioned_profiles": []}}, "username": "roxz", "power_badge": false, "display_name": "rox", "active_status": "inactive", "verifications": ["0xf91dad612d3366d7cd57f970617a2dc0c07db830"], "follower_count": 65, "custody_address": "0xd4a9467000987a49796c32fe8d0a46240a9ad2ec", "following_count": 206, "verified_addresses": {"eth_addresses": ["0xf91dad612d3366d7cd57f970617a2dc0c07db830"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/discover/sets/your-moods:1388429496:1\"}"}', NULL), - (1105576, '0xc5b4ebf7afd20fa9c1b9c646d104c2380f16a819', 1000, 1, '2024-05-07 16:33:06+00', 0, 1, '{"fid": 377951, "object": "user", "pfp_url": "https://i.imgur.com/MCppJKj.gif", "profile": {"bio": {"text": "From Japan\nenjoy crypto / Air drop / dreamer\n\nConecting people. Fl me and FI back 100%🫶💯", "mentioned_profiles": []}}, "username": "dork99999.eth", "power_badge": false, "display_name": "Ryoz 🎩🍖🔮🔵🧀⛓️", "active_status": "inactive", "verifications": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "follower_count": 914, "custody_address": "0x5d0569c077ffb404e76de9f1fc6b39c2536f0ebf", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "sol_addresses": ["BXa9GMPHPJs8E7zHmcQWzqhYgNVkaaCSwFx5kmeKV1Ja"]}}', '{"{\"url\":\"https://on.soundcloud.com/MykALYry7QnCuveeA\"}"}', 'musicjp'), - (1149085, '0xb41316db31559b552a906f166e42292622901ec8', 0, 1, '2024-05-07 20:29:42+00', 0, 32, '{"fid": 410702, "object": "user", "pfp_url": "https://i.imgur.com/dK04t0j.jpg", "profile": {"bio": {"text": "Blockchain lover\nbtc maxi 🟧", "mentioned_profiles": []}}, "username": "0ximan", "power_badge": false, "display_name": "iMaN", "active_status": "inactive", "verifications": ["0x2ced66da942577e4557ca831da25bb4b7781d736"], "follower_count": 2463, "custody_address": "0xa2e958e90dd505c0b7790ddd9b13cd434d9089ef", "following_count": 2743, "verified_addresses": {"eth_addresses": ["0x2ced66da942577e4557ca831da25bb4b7781d736"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/salsa-sc/love-to-see-you-cry\"}"}', 'sonata'), - (1065094, '0x14560725dce9b3b24b28404fb06c83db5d5105bc', 0, 1, '2024-05-07 15:05:45+00', 0, 3, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dsh3Y3GUd4D9F8fo7\"}"}', 'musicjp'), - (1125505, '0x1d3172a0d78d9f47f6839663ff7c3c0bf6400b96', 0, 1, '2024-05-07 18:10:41+00', 0, 7, '{"fid": 450187, "object": "user", "pfp_url": "https://i.imgur.com/6coiiS2.jpg", "profile": {"bio": {"text": "°Architect° & °Artist°", "mentioned_profiles": []}}, "username": "ygn-ysf", "power_badge": false, "display_name": "yegane", "active_status": "inactive", "verifications": ["0x120e355cccf2fbd06d8f3cc9edbb2f19c256d2f6"], "follower_count": 661, "custody_address": "0x626bc3fb7645a68ab02e9471c5d2fbe6dba11613", "following_count": 557, "verified_addresses": {"eth_addresses": ["0x120e355cccf2fbd06d8f3cc9edbb2f19c256d2f6"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Say Yes To Heaven by Lana Del Rey on #SoundCloud https://soundcloud.com/lana-del-rey/say-yes-to-heaven?ref=clipboard&p=a&c=0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160255, '0x1a3f4bae8d3b40bd1036498edbc167675cac1a1f', 0, 1, '2024-05-08 17:04:21+00', 0, 1, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 520, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1erXDiGCnmUQvG6DZRqpuM?si=0c5afff77c7c4394\"}","{\"url\":\"https://open.spotify.com/track/7oviAIcW50bElbRnHPynvc?si=4bf8163fb3d94d4e\"}"}', NULL), - (1160322, '0xe4002cffb84c34279c5ffe98177364607872d790', 0, 1, '2024-05-08 18:04:44+00', 0, 1, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 523, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4wFA3Nz8T7OKFPcyuOwi25?si=gAlY5yhwSkWpOIm3l3ERhA\"}"}', NULL), - (1173402, '0x229673b9f54e5de00eb6c9960dcad72a83931353', 200, 1, '2024-05-15 22:44:34+00', 0, 1, '{"fid": 10351, "object": "user", "pfp_url": "https://i.imgur.com/DNWPzLT.gif", "profile": {"bio": {"text": "product @ grayscale.com 🏁 bio: zachharris.xyz", "mentioned_profiles": []}}, "username": "zachharris.eth", "power_badge": true, "display_name": "🌶️ Zach Harris 🥀", "active_status": "inactive", "verifications": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "follower_count": 23958, "custody_address": "0x0b601c00984ab71a84442b04acf7d5ee7d8ae139", "following_count": 648, "verified_addresses": {"eth_addresses": ["0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2", "0x52ba4757ac5599f83ab0554433c6e356d84d17cd", "0xc16b1fe5f9f0aa9de476796873880ab6c7ad96e1"], "sol_addresses": ["2AQ7LiDE7QjuL5c4GemSXwXRHsc38Pb2DtjJeYYUBpNA"]}}', '{"{\"url\":\"https://open.spotify.com/track/0Uy8lcDHiPDicBQ7rnDgcK?si=9LK8kOTZQKSd3v4eR2wPOw\"}"}', NULL), - (1065100, '0x48d13b977fef66944cded9d66ef65d97213e0f60', 0, 1, '2024-05-07 15:05:11+00', 0, 3, '{"fid": 422091, "object": "user", "pfp_url": "https://i.imgur.com/owVrAVY.jpg", "profile": {"bio": {"text": "농부life\n", "mentioned_profiles": []}}, "username": "denkim", "power_badge": false, "display_name": "Kkangchon Boy", "active_status": "inactive", "verifications": ["0x42181c870a11741da94b6b6554a8c92e8349e17c"], "follower_count": 272, "custody_address": "0x56de6a95b5657711d8013e9b313031b82ed70e09", "following_count": 850, "verified_addresses": {"eth_addresses": ["0x42181c870a11741da94b6b6554a8c92e8349e17c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moonbyulkiki34/heize-where-are-you?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (947734, '0x955bc4f2303f9f75f46377cdc4a449d1c7ae7f91', 2610, 1, '2024-05-07 08:47:18+00', 36, 124, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 248021, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 321, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/wavedash/b-alright-feat-anamanaguchi-and-cayenne\"}"}', 'sonata'), - (1106768, '0x31ec30e70a73c57c2891102acd4c9952bba044b2', 0, 1, '2024-05-07 16:40:09+00', 0, 0, '{"fid": 15716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa02241c-2461-4bf2-0f5e-8be636c8d000/rectcrop3", "profile": {"bio": {"text": "Brooklynite by day. Daydreamer by night.", "mentioned_profiles": []}}, "username": "ethtotheweth", "power_badge": false, "display_name": "Eric", "active_status": "inactive", "verifications": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "follower_count": 87, "custody_address": "0xe8e5fc4ea45762caf257a7a6aab07de3df9bf30d", "following_count": 224, "verified_addresses": {"eth_addresses": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JyJszz44sehy7Bta6\"}"}', NULL), - (1125529, '0x7a7a48ab3811f691d7df19b4830c0a83f9ac0b86', 0, 1, '2024-05-07 18:11:05+00', 0, 16, '{"fid": 498410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9ae8a858-bc3b-4145-594d-28aae99d1f00/rectcrop3", "profile": {"bio": {"text": "Hello! Nice to meet you! 방갑습니다! 슈캐로 모두 찾아가 인사드립니다! 잘부탁드립니다!!😆", "mentioned_profiles": []}}, "username": "gism", "power_badge": false, "display_name": "gism", "active_status": "inactive", "verifications": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "follower_count": 1570, "custody_address": "0xfd3503e296ef08d2d93f143d589f9773f47d2484", "following_count": 1657, "verified_addresses": {"eth_addresses": ["0xc06e7a080e89d771d993134913c27c327c35b188"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/justinancheta/jeff-bernat-call-you-mine-ft?si=cc992a17618f45b29b9580916f5aaedf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1101918, '0xeef137b826e15fa57028bceb72cf504310a74617', 0, 1, '2024-05-07 16:18:01+00', 0, 1, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 822, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 750, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musictop_for_android/rahyfr3xrkyf?si=5ec93644390642e1a13fcd012634d303&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1055552, '0x3e6986c0efaa8da9d03bfc8512ec32d9ca4ce13f', 0, 1, '2024-05-07 14:39:21+00', 0, 0, '{"fid": 500304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b6b3f173-1ff4-44c8-2108-ed0c5bb7ab00/rectcrop3", "profile": {"bio": {"text": "I''m not an abuser or bot. I just write about different fields. A lot of that too.", "mentioned_profiles": []}}, "username": "uimong", "power_badge": false, "display_name": "uimong", "active_status": "inactive", "verifications": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "follower_count": 980, "custody_address": "0x08635c237da647ef63f844a93e9218733ec20dad", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5kt0nWRnFWEeBUyLWSYnkd?si=pbZAVokoRUmLomm1XpykZg\"}"}', NULL), - (1160262, '0x4dab8d47cab4b80b991abf98d9b88c19bfd4a386', 10, 1, '2024-05-08 17:44:55+00', 200, 7, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7pSsX2zIEgNQ7bZLpZPgqL?si=025KeQ_pSlCtdBAo-enKyw&context=spotify%3Aalbum%3A1NrONKqPMpofuPdoQdU4IU\"}"}', NULL), - (1060545, '0x026aba91f7a560eda0953ac2abfd2ed18ccfb816', 0, 1, '2024-05-07 14:56:39+00', 0, 3, '{"fid": 359298, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/416fda7524bf8e46a76a6b091802e2c9.gif?w=500&auto=format", "profile": {"bio": {"text": "crypto photography サッカー競馬好き🐴⚽️📸art ゼロ movies \nlet''s connect🤝\n", "mentioned_profiles": []}}, "username": "blow01", "power_badge": false, "display_name": "blow🎩🔵🍖🍕", "active_status": "inactive", "verifications": ["0x3addb670e8f242749779c16e0ecf1c4c99194627", "0xa692936835d1baa5990130fa605898e3b50e7c89"], "follower_count": 820, "custody_address": "0x6fdea2127d2d80dea1d355eea5c6eed23d5bdcda", "following_count": 1662, "verified_addresses": {"eth_addresses": ["0x3addb670e8f242749779c16e0ecf1c4c99194627", "0xa692936835d1baa5990130fa605898e3b50e7c89"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nujabes-sc/luv-sic-pt2\"}"}', 'musicjp'), - (1139186, '0xe61e756f2166aa4fb6a27bdb4107ebcca4cca99d', 0, 1, '2024-05-07 19:47:06+00', 0, 7, '{"fid": 439362, "object": "user", "pfp_url": "https://i.imgur.com/HwYnYQY.jpg", "profile": {"bio": {"text": "Life is live", "mentioned_profiles": []}}, "username": "moji21", "power_badge": false, "display_name": "Mojtaba🎩🍖", "active_status": "inactive", "verifications": ["0xfae69f3ba41a4b7bce0f8b993768de6b0f304b2e"], "follower_count": 2405, "custody_address": "0xafe12f922a6703fa266c8ca6facac05c70b102dc", "following_count": 3394, "verified_addresses": {"eth_addresses": ["0xfae69f3ba41a4b7bce0f8b993768de6b0f304b2e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/vacationsfanclub/telephones?si=7988858403804031be60a15c69c78d74&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1095060, '0x8eca01c18f5dd4e595914d1a557bbff77a61a9c0', 0, 1, '2024-05-07 16:00:05+00', 0, 4, '{"fid": 495796, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b52ce7d-af8e-4823-b6bb-db4330a74f00/rectcrop3", "profile": {"bio": {"text": "Life/Foods/Crypto/Animals/Fun/ 슈캐이용중 /맞팔100%", "mentioned_profiles": []}}, "username": "30uk", "power_badge": false, "display_name": "Jiwon", "active_status": "inactive", "verifications": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "follower_count": 1715, "custody_address": "0x0717678be60b82344743230571577199405a539d", "following_count": 2750, "verified_addresses": {"eth_addresses": ["0x0429971248718b21ff4d841abef97f95f45aa830"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xsoZDmeGCZyvvoKS7\"}"}', 'sonata'), - (1149090, '0xc7467c98131e8b3691e5c6b4e155fb4651a9ae2e', 0, 1, '2024-05-07 20:30:09+00', 0, 15, '{"fid": 502705, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8d9805bd-ac96-4054-db7a-9875a1417a00/rectcrop3", "profile": {"bio": {"text": "놀자!\n일상 공감 🥰\n성실의 아이콘 Ella \n알지? 😋", "mentioned_profiles": []}}, "username": "ellamon", "power_badge": false, "display_name": "Ella ⭐️🎩 🩷", "active_status": "inactive", "verifications": ["0x4e2bd8f28bb15a92f0229e985314385e23e73f11"], "follower_count": 909, "custody_address": "0x06915ddc46ab5a96d49c105bea7e426acc22226f", "following_count": 1401, "verified_addresses": {"eth_addresses": ["0x4e2bd8f28bb15a92f0229e985314385e23e73f11"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mohamed-161493448/ted_fresco_and_lyn_lapid?si=b6f2c7fc1a0f4688a67a557e3cd7bf64&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1160129, '0x525523e799524a23567be745f902e92838c4b687', 0, 1, '2024-05-08 12:41:35+00', 0, 1, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1164, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/1oHp0l35qOOJS4zrElISNb?si=vdEPqlCJQ4StstvM4spP6g&context=spotify%3Aartist%3A1MhtYlJvUqfd2EgHSQTGK4\"}"}', NULL), - (1102074, '0x781cb1614b42766eeabac3b5aea29cc7c6494a1a', 0, 1, '2024-05-07 16:20:37+00', 0, 2, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 822, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 750, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Zetj6\"}"}', 'sonata'), - (1107437, '0xae5cf250a2e31d8f84901b6133c189d0a14dea16', 0, 1, '2024-05-07 16:43:34+00', 0, 0, '{"fid": 15716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa02241c-2461-4bf2-0f5e-8be636c8d000/rectcrop3", "profile": {"bio": {"text": "Brooklynite by day. Daydreamer by night.", "mentioned_profiles": []}}, "username": "ethtotheweth", "power_badge": false, "display_name": "Eric", "active_status": "inactive", "verifications": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "follower_count": 87, "custody_address": "0xe8e5fc4ea45762caf257a7a6aab07de3df9bf30d", "following_count": 224, "verified_addresses": {"eth_addresses": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8yiv62ruiZ9Cf48w9\"}"}', NULL), - (1095062, '0xa657832987ff7619191606db57437ec0f8b0a939', 0, 1, '2024-05-07 15:59:59+00', 0, 0, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 574, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 520, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/wizthemc/30-days?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (1173353, '0xf331b5250377b0815cb10cedbca467a195e6fd26', 3200, 1, '2024-05-15 21:03:24+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/40WeJU3odsbq1fXNbub4nh?si=fGzmEW4tQWabDgJ9PLi-mA\"}"}', NULL), - (1065104, '0xd698f3baa5f4fe289ef8dd1fa21330d1fc6aa2dd', 0, 1, '2024-05-07 15:04:40+00', 0, 5, '{"fid": 468888, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeihazdvtbsweo5jmb4rydwyy3jvk24jssk2wjt6cfgkwa264l6ej4i", "profile": {"bio": {"text": "cat saves the world.\nhttps://www.alfafrens.com/channel/0x5510f8437090E1d7678a68b4AB688A21CEAe7054", "mentioned_profiles": []}}, "username": "bori-papa", "power_badge": false, "display_name": "Bori_papa", "active_status": "inactive", "verifications": ["0xbe20fa4a5e041c94ac6b1a691caba8b89ad25885"], "follower_count": 1363, "custody_address": "0xdc735a42d2a5a4640fa821b94d173d81cdf05e6f", "following_count": 1628, "verified_addresses": {"eth_addresses": ["0xbe20fa4a5e041c94ac6b1a691caba8b89ad25885"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ztphioqekuxf/violet-the-volunteers?si=c76d850d53b84e4a8e29670d9db7e71a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1062320, '0x4442854486d26808c235c6560a75ddacacaf6aab', 0, 1, '2024-05-07 14:58:41+00', 0, 5, '{"fid": 354789, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiazghzujav4t436ite325es7pjhmplobf342kvizjsniy2akcysie", "profile": {"bio": {"text": "NFT Artwork / 35mm Film Photography / Alcohol Lover / HAM🍖Lover / Unofficial Hambassador / Travel / Food / Pixel Art / @proxystudio.eth Korea Team", "mentioned_profiles": []}}, "username": "bartender", "power_badge": false, "display_name": "Water of Metaverse", "active_status": "inactive", "verifications": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "follower_count": 3543, "custody_address": "0xd40c55c7fdf7f3a643bf7fc117e087abf34c7d1f", "following_count": 3564, "verified_addresses": {"eth_addresses": ["0xb9dd35fa5dcc8382af06e9702e0c555a479a5302"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ii25TDzwRbJWz3vu8\"}"}', 'sonata'), - (1095309, '0xc48c727d5a486f59d7b35bd12d94065dba32ba96', 0, 1, '2024-05-07 16:01:16+00', 0, 1, '{"fid": 377951, "object": "user", "pfp_url": "https://i.imgur.com/MCppJKj.gif", "profile": {"bio": {"text": "From Japan\nenjoy crypto / Air drop / dreamer\n\nConecting people. Fl me and FI back 100%🫶💯", "mentioned_profiles": []}}, "username": "dork99999.eth", "power_badge": false, "display_name": "Ryoz 🎩🍖🔮🔵🧀⛓️", "active_status": "inactive", "verifications": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "follower_count": 914, "custody_address": "0x5d0569c077ffb404e76de9f1fc6b39c2536f0ebf", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "sol_addresses": ["BXa9GMPHPJs8E7zHmcQWzqhYgNVkaaCSwFx5kmeKV1Ja"]}}', '{"{\"url\":\"https://on.soundcloud.com/EXNpe1AzAAEsggeW7\"}"}', 'musicjp'), - (1160254, '0x97ba802a7f0d79ad543993c824449a099c4df316', 0, 1, '2024-05-08 16:51:37+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 313, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 261, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5S46E2UNGDYcwZ26yj6aNr?si=-Wscy9C3QWa2tk2WiFoi6Q&context=spotify%3Aplaylist%3A2dHBpMwZpXu1TSelmeYUHr\"}"}', 'bangers'), - (1095350, '0xbf1d719485a5ee84252a17abdc008e6a9d9b83cb', 0, 1, '2024-05-07 16:01:18+00', 0, 4, '{"fid": 10822, "object": "user", "pfp_url": "https://i.imgur.com/zDWRVt9.png", "profile": {"bio": {"text": "cracked mobile app developer | formerly @rainbow | optimistic degen in general", "mentioned_profiles": []}}, "username": "derek.eth", "power_badge": true, "display_name": "derek ↑", "active_status": "inactive", "verifications": ["0x08379e7d313a0781612c9624741b38a263f499f6", "0x969795b513895365160bc18f0861760add9dc3ee"], "follower_count": 1119, "custody_address": "0x3d0fb07f1d1863fdd8916f92dc4c9237580a1821", "following_count": 397, "verified_addresses": {"eth_addresses": ["0x08379e7d313a0781612c9624741b38a263f499f6", "0x969795b513895365160bc18f0861760add9dc3ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2VKeCltkiV6UBbyNRsiFGy?si=X1NUaUXiThq4NsFOfbOtKw\"}"}', NULL), - (1066047, '0x1d9f86edc132291e1cb2598e322e4e16884c3742', 0, 1, '2024-05-07 15:08:03+00', 0, 0, '{"fid": 475410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/203f1a71-e8a3-4a0a-149b-d2951c401000/rectcrop3", "profile": {"bio": {"text": "Life is a one time offer, use it well..💫", "mentioned_profiles": []}}, "username": "samaneh9297", "power_badge": false, "display_name": "samaneh9297🎩🍗🔵", "active_status": "inactive", "verifications": ["0x281ba139840a7497a6ed40a20ac0a4b0a5d604f0"], "follower_count": 747, "custody_address": "0xa1f9c99649ce2be756a6851aae5dedd4df374908", "following_count": 881, "verified_addresses": {"eth_addresses": ["0x281ba139840a7497a6ed40a20ac0a4b0a5d604f0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lilyeat/heliman\"}"}', NULL), - (1139253, '0x8db9921b39f5aa46839c148a3595999d53d20c02', 0, 1, '2024-05-07 19:48:12+00', 0, 1, '{"fid": 458404, "object": "user", "pfp_url": "https://i.imgur.com/yHpvwyC.jpg", "profile": {"bio": {"text": "Music, films, books, rugby, bàsquet. Engineer, MBA. Visca la Terra Lliure! Gironí i català. Tsool, Stooges, 13th Floor Elevators, The Velvet Underground, ...", "mentioned_profiles": []}}, "username": "jpoubaez", "power_badge": false, "display_name": "Joan", "active_status": "inactive", "verifications": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "follower_count": 49, "custody_address": "0x7ff5f4af616edc48203d36bb2325848f44e15e46", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Algoritme by Bon Braguer on #SoundCloud https://on.soundcloud.com/MUTYi\"}"}', NULL), - (1173349, '0x5d275e8def0b8f3edbc66272757dfff9f56d1261', 4700, 1, '2024-05-15 21:01:47+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6grFWYpLQul3nAHjzzPKT8?si=wRM5MO0KTzSKIcdT9V3SBg\"}"}', NULL), - (1149244, '0x3716b0ba3eda5cff099f036612004e076853f3a4', 0, 1, '2024-05-07 20:32:13+00', 0, 0, '{"fid": 492127, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fa4a390-63a9-46eb-5731-20e90d8ecd00/rectcrop3", "profile": {"bio": {"text": "Art\nCrypto💵\n", "mentioned_profiles": []}}, "username": "artmaryam23", "power_badge": false, "display_name": "artmaryam23", "active_status": "inactive", "verifications": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "follower_count": 357, "custody_address": "0xcf3027475526895b40fdca8451eda15a8f665417", "following_count": 489, "verified_addresses": {"eth_addresses": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hUqvK\"}"}', NULL), - (1136578, '0xe9abe2ed83221a6c19b04bd480d3fd973d4aedea', 0, 1, '2024-05-07 19:24:02+00', 0, 2, '{"fid": 514743, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1605c0d9-5143-4ba9-5cee-3d612c842d00/rectcrop3", "profile": {"bio": {"text": "I love crypto", "mentioned_profiles": []}}, "username": "!514743", "power_badge": false, "display_name": "Mohammad Reza", "active_status": "inactive", "verifications": ["0x515f1bccb397be6c0a38160808547cf835ce0ae4"], "follower_count": 69, "custody_address": "0x65fb65c2bb7fc6bcf3de56d133e460290e5b2855", "following_count": 120, "verified_addresses": {"eth_addresses": ["0x515f1bccb397be6c0a38160808547cf835ce0ae4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hiphopologistsoroush/hiphopologist-x-vinak-belaad-prod-kagan-rasam?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1126474, '0xf6f1a5118f0507f26c790837de6aa273e1de0246', 0, 1, '2024-05-07 18:16:08+00', 0, 1, '{"fid": 493000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4d795b76-1a29-42c0-6f3e-497f92e40900/rectcrop3", "profile": {"bio": {"text": "Me encanta la playa y el mundo de las criptomonedas.", "mentioned_profiles": []}}, "username": "angeles", "power_badge": false, "display_name": "Angeles 🌹", "active_status": "inactive", "verifications": ["0x756d53c524a845a5d593c40fac355964ebbf9bda"], "follower_count": 182, "custody_address": "0x38115a8066d48de7b63f5a8f300a0a0f484fd7de", "following_count": 380, "verified_addresses": {"eth_addresses": ["0x756d53c524a845a5d593c40fac355964ebbf9bda"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2yCAGizViD7HZXwNYxJToQ?si=lIl-ajkPTi-HtvYNWCMUyw\"}"}', NULL), - (1160118, '0x0ec903b3e777aca395eccf4e10f073cfbc03b292', 0, 1, '2024-05-08 12:55:38+00', 0, 2, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1164, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/5GE8FTL15kS123apRK7vD4?si=YHq1gS32SgukisvT8c82gQ&context=spotify%3Aartist%3A1MhtYlJvUqfd2EgHSQTGK4\"}"}', NULL), - (1095442, '0xdda73d0b6699e9b2a3e5f26b4edfbb661ce07234', 0, 1, '2024-05-07 16:02:32+00', 0, 16, '{"fid": 505633, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/16bf11dc-3e89-4b70-0fe8-9bbe7a529800/rectcrop3", "profile": {"bio": {"text": "👀👃👄", "mentioned_profiles": []}}, "username": "kimkancho", "power_badge": false, "display_name": "kimkancho", "active_status": "inactive", "verifications": ["0x6aa13addb4d628ec5531f0cbe9de605ff76a43aa"], "follower_count": 293, "custody_address": "0x46073d073acfcb4cfd031ef9a171136e8707176f", "following_count": 339, "verified_addresses": {"eth_addresses": ["0x6aa13addb4d628ec5531f0cbe9de605ff76a43aa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/greedy03/newjeans?si=254a8c19bb254a49a423328ec32c9754&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1065599, '0xcfddcb0f7f7c287869c6f094d6be3878feaf7f4d', 0, 1, '2024-05-07 15:06:55+00', 0, 0, '{"fid": 517962, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9dda3151-1842-4f86-b67c-88dcd31f4800/rectcrop3", "profile": {"bio": {"text": "Love movies and listening to music", "mentioned_profiles": []}}, "username": "!517962", "power_badge": false, "display_name": "88horse88 🎩 🍖", "active_status": "inactive", "verifications": ["0xea9f26b48dd40575bec5e9c43bc39d29c57647ab"], "follower_count": 69, "custody_address": "0x8ce91824dc6a92371d00a3f8040d5c1240554bf0", "following_count": 336, "verified_addresses": {"eth_addresses": ["0xea9f26b48dd40575bec5e9c43bc39d29c57647ab"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/guns-n-roses-official/sweet-child-o-mine?si=226440b59d8449eab20b325e6a712c5e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173348, '0x4795ab3fee60ee2a21dd8e632a59a4e6006dd26f', 100, 1, '2024-05-15 21:00:11+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 227, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/26QKxvjlCo2fSd3T4c8Zpb?si=RVOOya6RTk2aiOMXZ5KSzA\"}"}', NULL), - (1106601, '0xba5890499d0eb97004cfbfbaa4da03621b5f202f', 0, 1, '2024-05-07 16:35:52+00', 0, 3, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 822, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 750, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ZpG18\"}"}', 'sonata'), - (1160314, '0xcd9d4c5bcecba37c1fd84174667bda5a938384de', 0, 1, '2024-05-08 18:55:37+00', 0, 3, '{"fid": 11835, "object": "user", "pfp_url": "https://i.seadn.io/gae/WlJtqA99vlFpCVgqgHR5FCkWrK5UIeDE51-pI0hDsKY5PtFUu3M3QAEebz5VjBl0vPDRrr36XS9yzvLoiSkIZrJV?w=500&auto=format", "profile": {"bio": {"text": "Cofounder @openpool (openpool.co), fan of burritos, skiing, the Nets, and making crypto more accessible", "mentioned_profiles": []}}, "username": "joetoledano", "power_badge": true, "display_name": "Joe Toledano", "active_status": "inactive", "verifications": ["0xaacd601c5377ddf3f1f41eb1758ba0d2fa2b39bd"], "follower_count": 991, "custody_address": "0x1295e0b82955ae01408f8ad8aa1a0b313c3da759", "following_count": 936, "verified_addresses": {"eth_addresses": ["0xaacd601c5377ddf3f1f41eb1758ba0d2fa2b39bd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/428q2sGN6GUj9F8GXEmGlH?si=CyWUZX0gQPSabPRcCFZmPA\"}"}', NULL), - (1160249, '0xbb1fe72714407a24f56500b157eb5fef5134072d', 0, 1, '2024-05-08 16:19:19+00', 0, 8, '{"fid": 1079, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aea87773-c0f3-40e4-df82-83f789bbf300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨ ‘ing around. Working on Nouns Creative focused on narrative works. Music Publisher & Manager by day.", "mentioned_profiles": []}}, "username": "joshuafisher.eth", "power_badge": true, "display_name": "Joshua Fisher ⌐◨-◨ テ🎩", "active_status": "inactive", "verifications": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "follower_count": 3170, "custody_address": "0xeb31e335531c06ca4d8fe58bed841e9031de4ee4", "following_count": 304, "verified_addresses": {"eth_addresses": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1c1BJsb06ByY4mUKd8dTHc?si=gpGJ6KUNTlG-YTrAKFMQVA\"}"}', 'higher'), - (1161766, '0xde43ece74b34125bc7e54fba489f0798eb72dfc1', 0, 1, '2024-05-09 02:00:12+00', 10, 8, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6u3XrJjtnN8fETWvyEGDZb\"}","{\"url\":\"https://amp.natalie.mu/music/news/559034\"}"}', 'musicjp'), - (1165547, '0xe7988da1bb3bf14d2e38660356a46ae44854ed85', 100, 1, '2024-05-10 19:35:54+00', 0, 0, '{"fid": 5328, "object": "user", "pfp_url": "https://i.imgur.com/RoDyBa2.jpg", "profile": {"bio": {"text": "Artist. Activist. lore /chic co-host /fashion web: chicbangs.com", "mentioned_profiles": []}}, "username": "chicbangs.eth", "power_badge": true, "display_name": "Chic", "active_status": "inactive", "verifications": ["0xe3f3bc22382e0edfdedacb5e4a89a5418432fd07"], "follower_count": 1075, "custody_address": "0xb3c00e770ce7423ab88664367c4d9f741e13b9ad", "following_count": 209, "verified_addresses": {"eth_addresses": ["0xe3f3bc22382e0edfdedacb5e4a89a5418432fd07"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/chicbangs/shake\"}"}', 'chic'), - (1067286, '0x703acc1416b63c3b2dd8eb36fcbb67ad6426a88c', 0, 1, '2024-05-07 15:09:41+00', 10, 3, '{"fid": 492400, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ca395959-99f0-46e6-f936-db9d842c0c00/rectcrop3", "profile": {"bio": {"text": "はろはわゆ。田舎の芋っ子girl🇯🇵\nHi,how are you", "mentioned_profiles": []}}, "username": "jeannedarc", "power_badge": false, "display_name": "Jeanneダルく🎩🍖🥚", "active_status": "inactive", "verifications": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "follower_count": 424, "custody_address": "0xcd10b3e63aa092d8ac4784b0e12bd4cc257fccc3", "following_count": 460, "verified_addresses": {"eth_addresses": ["0x41382082bc04904218fca3e7bd8d7855bf739820"], "sol_addresses": ["FTmgMfhcW8aDLzQ4L7yUh116UhRsZHEtAos5CacWxUc4"]}}', '{"{\"url\":\"https://on.soundcloud.com/1Hs8hjoRvqTxEGZ98\"}"}', 'musicjp'), - (1065098, '0x3e532d8ed4ab97d60f361d92f33db1d34afc3c33', 0, 1, '2024-05-07 15:05:16+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": false, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 149, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 177, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/wearepraana/mojave-original-mix\"}"}', NULL), - (1102087, '0x1e69f0668fbd2cd1d2b715f8b97c618b2f6fcf45', 0, 1, '2024-05-07 16:19:40+00', 0, 2, '{"fid": 5303, "object": "user", "pfp_url": "https://i.imgur.com/doWaOWv.jpg", "profile": {"bio": {"text": "building a social app studio /triviatech ", "mentioned_profiles": []}}, "username": "yukisato.eth", "power_badge": true, "display_name": "Yuki Sato", "active_status": "inactive", "verifications": ["0x3d7863e87afd6cc4bb584c3d07f5deeaa6d26802"], "follower_count": 1177, "custody_address": "0x09968c3373b8cf1da068f2568b051775fe190c2e", "following_count": 433, "verified_addresses": {"eth_addresses": ["0x3d7863e87afd6cc4bb584c3d07f5deeaa6d26802"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0KVgoNHUdfWx90PD70HkM9?si=il0keXEpRVa-IFvjUFXGiw&context=spotify%3Aplaylist%3A1En3jQmFUTMMZXlbP8soeS\"}"}', 'higher'), - (1095465, '0xd9656331cb982284ab7a0bed1a7eeffb0248a50f', 0, 1, '2024-05-07 16:02:33+00', 0, 11, '{"fid": 405992, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6234e762-73fa-4321-c23d-64b0cfb70700/rectcrop3", "profile": {"bio": {"text": "F4F🙌 / Communication ASAP🚀 / Love DEGEN / Dining🍽️ / Travel✈️", "mentioned_profiles": []}}, "username": "kkinnvv", "power_badge": false, "display_name": "KKINNVV🎩🔮🍖", "active_status": "inactive", "verifications": ["0xe9dc43ba2c866fd1880b16c819e696e9b49ea656"], "follower_count": 3027, "custody_address": "0xee27ff7ddc164209765fdc8b88f91e6bc55bfc66", "following_count": 2609, "verified_addresses": {"eth_addresses": ["0xe9dc43ba2c866fd1880b16c819e696e9b49ea656"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/qmtbK6PnzWd2M72y7\"}"}', 'sonata'), - (1173728, '0x1fc9f8c4341cdcfaf00c6f324c92d04d5f4252c1', 0, 1, '2024-05-16 09:19:35+00', 10, 0, '{"fid": 245024, "object": "user", "pfp_url": "https://i.imgur.com/JkyySHx.gif", "profile": {"bio": {"text": "web3 degen | rock lover | hosting Rock Music channel: https://warpcast.com/~/channel/rock", "mentioned_profiles": []}}, "username": "calisay", "power_badge": true, "display_name": "Calisay", "active_status": "inactive", "verifications": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "follower_count": 344, "custody_address": "0xbc218297a4e18c050252b4e527d13de104111085", "following_count": 241, "verified_addresses": {"eth_addresses": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77NNZQSqzLNqh2A9JhLRkg?si=u-yP7TlCRByPCf27UOTVdg&context=spotify%3Atrack%3A77NNZQSqzLNqh2A9JhLRkg\"}"}', 'sonata'), - (1160138, '0x4de7ecc38354f21837cd200a5716d349ebb8554a', 1020, 1, '2024-05-08 13:18:12+00', 0, 34, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 29714, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5VERxHcc22yeUJoaHZzAcj?si=NOk2UCXzTOqRUF3VhB0ugQ\"}"}', NULL), - (1067279, '0x7aab4fee96cd2b85ca097e91667e716049199739', 0, 1, '2024-05-07 15:09:54+00', 0, 3, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VVQFzrDFzG6X8RZ18\"}"}', 'musicjp'), - (1067619, '0x4e7dd95025d4962fc0fd9466c41f6ded84d0e416', 0, 1, '2024-05-07 15:11:58+00', 0, 0, '{"fid": 475410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/203f1a71-e8a3-4a0a-149b-d2951c401000/rectcrop3", "profile": {"bio": {"text": "Life is a one time offer, use it well..💫", "mentioned_profiles": []}}, "username": "samaneh9297", "power_badge": false, "display_name": "samaneh9297🎩🍗🔵", "active_status": "inactive", "verifications": ["0x281ba139840a7497a6ed40a20ac0a4b0a5d604f0"], "follower_count": 747, "custody_address": "0xa1f9c99649ce2be756a6851aae5dedd4df374908", "following_count": 881, "verified_addresses": {"eth_addresses": ["0x281ba139840a7497a6ed40a20ac0a4b0a5d604f0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/behnam_ba/hadeseh?in=fara-marz/sets/fg52lyr4wr5p&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173718, '0x42ae2e78df02d7230c69aad0066a4775e525e0f5', 0, 1, '2024-05-16 09:07:11+00', 0, 0, '{"fid": 12425, "object": "user", "pfp_url": "https://i.imgur.com/9F7rUZB.jpg", "profile": {"bio": {"text": "Farcaster OG 676, EDM producer,Teacher, Fundamental Researcher, Technoholic , MONAD''s ambassador ", "mentioned_profiles": []}}, "username": "fab", "power_badge": true, "display_name": "HadiFab ", "active_status": "inactive", "verifications": ["0x309471398adfa2b136970583ad0db66294f035e3"], "follower_count": 1758, "custody_address": "0x7aaad5acd163a8e2a93129ce8c0fdd4a9e9d0d1e", "following_count": 939, "verified_addresses": {"eth_addresses": ["0x309471398adfa2b136970583ad0db66294f035e3"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/2580ddca7dc3a8ea2720a2df3cf88a70.m3u8\"}","{\"url\":\"https://open.spotify.com/track/7hCZVX8ogwzgszIKtkD6Bv?si=2QljyznDTAqKkn3mLgRAWg\"}"}', NULL), - (1068309, '0x6c1bc1d8ffc1338b0d6f1b381a86418cb4eaf401', 0, 1, '2024-05-07 15:13:25+00', 0, 2, '{"fid": 394424, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreieh2qomxtz34ls5s7vtr7d2by6bjbv5mst5dgryvxhtduf7zvqwte", "profile": {"bio": {"text": "❤️ I love you ~~\n Have a happy day~ 🌈🌅", "mentioned_profiles": []}}, "username": "moyaa", "power_badge": false, "display_name": "Moyaa🎩🍖", "active_status": "inactive", "verifications": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "follower_count": 2721, "custody_address": "0x051dc31fe553cd48a42c98fd7300095bb0d3b84f", "following_count": 2894, "verified_addresses": {"eth_addresses": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-36339546/fgepkd1npulm?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1095474, '0xe9abf7f0d95159bdbeee548e96f6568e991c94f7', 0, 1, '2024-05-07 16:02:20+00', 0, 5, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 829, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 642, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5qx4rkkahnrnWNLT6\"}"}', 'sonata'), - (1102096, '0x29ea65791f5eec2cf13d80ec778a3e1be4953560', 0, 1, '2024-05-07 16:20:52+00', 0, 4, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 829, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 642, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/udhF3HTwaRP7tvkXA\"}"}', 'sonata'), - (1160317, '0x5930f386960373c89de0366978dc05ad61ef337f', 2000, 1, '2024-05-08 19:17:35+00', 0, 12, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3683, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 286, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dyl/gm?referral_source=link\"}"}', 'soundxyz'), - (1066059, '0x2f7cdb30e795a2c3c49448aaa5263c9c39bcbf64', 0, 1, '2024-05-07 15:07:44+00', 0, 0, '{"fid": 511192, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/589c041f-4d2f-4466-de7d-2052ecbd1100/rectcrop3", "profile": {"bio": {"text": "cogito, ergo sum\n\n/ on chain life / \n소통해요, 친구해요 f4f", "mentioned_profiles": []}}, "username": "!511192", "power_badge": false, "display_name": "moolloo", "active_status": "inactive", "verifications": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "follower_count": 390, "custody_address": "0x8afb2beafe3046a4e6e11d09a2c5047d2fef516f", "following_count": 784, "verified_addresses": {"eth_addresses": ["0x7db223a235b08629b0ed0ead6bab25b12982c79b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/82prvcr57MNV8ybq7\"}"}', NULL), - (1160312, '0x0ec53a6a8db4dc6e3b373b3b3da9d5e631c8b178', 0, 1, '2024-05-08 18:54:06+00', 0, 2, '{"fid": 265749, "object": "user", "pfp_url": "https://i.imgur.com/puQnKKh.jpg", "profile": {"bio": {"text": "building the decentralized future of IP at rstlss.xyz\n\n/rstlss", "mentioned_profiles": []}}, "username": "charlicohen", "power_badge": true, "display_name": "Charli Cohen", "active_status": "inactive", "verifications": ["0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3", "0x4b25feb744fb5d4372b318ed8d7655ea37869488"], "follower_count": 1346, "custody_address": "0xb4863ec076bda091ecfe64545d4271ee250a2612", "following_count": 636, "verified_addresses": {"eth_addresses": ["0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3", "0x4b25feb744fb5d4372b318ed8d7655ea37869488"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3ITvhrRB5TlEks19k9qy2k?si=FZiG7JJIRkycT8Muw9JuEg\"}"}', NULL), - (1173732, '0x94292e2d10318fc5a63e962c06a5bb8f2339c78d', 0, 1, '2024-05-16 09:29:53+00', 0, 0, '{"fid": 972, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/357e36e7-5b1d-4209-7ab3-a5466fb84f00/original", "profile": {"bio": {"text": "Building /farhouse /huddle01\n", "mentioned_profiles": []}}, "username": "beingwayne.eth", "power_badge": true, "display_name": "beingwayne.eth (🎩🎙️)", "active_status": "inactive", "verifications": ["0x10bff2cd55385d82de3679ae0b0c7858fbe677d6"], "follower_count": 393, "custody_address": "0x18ebba24521acddd4fb545fdde433990bb1d9e1b", "following_count": 133, "verified_addresses": {"eth_addresses": ["0x10bff2cd55385d82de3679ae0b0c7858fbe677d6"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kel/scream-an\"}"}', NULL), - (1105748, '0x2640d916e672c320843823018892242874f9afee', 0, 1, '2024-05-07 16:33:57+00', 0, 5, '{"fid": 501070, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/783d321c-bf98-40df-8588-98da71a16c00/rectcrop3", "profile": {"bio": {"text": "픽슨입니다. 댓글필수 X. 캐스트 위주로 운영해서 맞방은 못갈거 같으니 ㅠㅠ 그냥 가볍게만 봐주세요 ^^ 죄송하고 감사합니다.", "mentioned_profiles": []}}, "username": "fixons", "power_badge": false, "display_name": "픽슨s 🍖", "active_status": "inactive", "verifications": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "follower_count": 1747, "custody_address": "0x10c6f3c1240c3e3d4616a82a6548268f8e687106", "following_count": 1599, "verified_addresses": {"eth_addresses": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hyuk-jo/mad-clown?si=e480d1dec187445aacbf419cdbcf8495&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1094711, '0x892b0abc91e5bcda9df11b35754937a41d21d9c9', 0, 1, '2024-05-07 15:59:50+00', 0, 0, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 640, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 755, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/atlanticrecords/keala-settle-the-greatest-showman-ensemble-this-is-me?si=b389e07888934673b7be722b3f685f08&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (946100, '0x68423c1ed2d12fe02dd7dac1b5dc7864424ff960', 0, 1, '2024-05-07 08:42:46+00', 0, 3, '{"fid": 287191, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c0ac862e-3170-43dc-1b42-271ad5859200/rectcrop3", "profile": {"bio": {"text": "sound designer, musician, web3music degen\n/onchain ", "mentioned_profiles": []}}, "username": "lazyandreal", "power_badge": false, "display_name": "lazy and real", "active_status": "inactive", "verifications": ["0xd5844c4157a8c4f3c113328c5e24d510b4b31be6"], "follower_count": 1363, "custody_address": "0x374a9af883ecb7aa937f889a3615cac25860cead", "following_count": 1580, "verified_addresses": {"eth_addresses": ["0xd5844c4157a8c4f3c113328c5e24d510b4b31be6"], "sol_addresses": ["5GUcUTjdcqcinSe9Y7Vofc37Lk7tnC6Rph7TLopZHQGs"]}}', '{"{\"url\":\"http://sonata.tips\"}","{\"url\":\"https://www.sound.xyz/playlist/6e2adf21-416d-4c57-a13a-9d22fbe965a9\"}"}', 'sonata'), - (897773, '0x81b6d8944b6ac0f53387b3aea7cd2e2c2d40ba7d', 0, 1, '2024-05-07 06:44:28+00', 0, 3, '{"fid": 412964, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f4fba980-a82d-493c-44a2-968a8a548400/rectcrop3", "profile": {"bio": {"text": "alfafrens : https://www.alfafrens.com/channel/0x02785040cD45faE53522767aD67709c3c9124794\n\n많은 가입 부탁드려요! 효율 170-200유지 중!🫡✈️🔥\nF4F !!!🚀🚀🚀🚀🚀🚀🚀🎩🔥", "mentioned_profiles": []}}, "username": "nudeegg", "power_badge": false, "display_name": "nudeegg💎🎩🚀🔥", "active_status": "inactive", "verifications": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "follower_count": 3134, "custody_address": "0xd152feda008745b99dcb329d553f01a6f4e355f5", "following_count": 2691, "verified_addresses": {"eth_addresses": ["0x9da142636e10a656f8ec6dc3af33a320c64ae4dd"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/0x9da142636e10a656f8ec6dc3af33a320c64ae4dd/post/e5640829-0c22-4b12-bd9f-16832ea91b22\"}"}', 'soundxyz'), - (1069443, '0xfd2ebb5c4b98c92b612aa5849d351ec8c61da4b6', 0, 1, '2024-05-07 15:13:52+00', 0, 1, '{"fid": 427292, "object": "user", "pfp_url": "https://i.imgur.com/44iwnFY.jpg", "profile": {"bio": {"text": "ぱん🐼です!フォロバします!よろしくお願いします!!\nhttps://x.com/pandaland_world?s=21&t=DWD4SI9hsxFilBKnnvz6-g", "mentioned_profiles": []}}, "username": "paaan", "power_badge": false, "display_name": "Paaan", "active_status": "inactive", "verifications": ["0xd18c458d756b8f6ed3742cc6a594d3a2b576fa8f", "0xfcc612bb5f21f9229e25553fb0229624c918e745"], "follower_count": 52, "custody_address": "0x35cd75a49ce382fc58534d915902f26a4edcd1a8", "following_count": 90, "verified_addresses": {"eth_addresses": ["0xd18c458d756b8f6ed3742cc6a594d3a2b576fa8f", "0xfcc612bb5f21f9229e25553fb0229624c918e745"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/xc9pTMxoupaWxGX2A\"}"}', 'musicjp'), - (1076836, '0x198b2d5b178165191556fc120fe5756502904b6a', 0, 1, '2024-05-07 15:22:54+00', 0, 0, '{"fid": 475410, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/203f1a71-e8a3-4a0a-149b-d2951c401000/rectcrop3", "profile": {"bio": {"text": "Life is a one time offer, use it well..💫", "mentioned_profiles": []}}, "username": "samaneh9297", "power_badge": false, "display_name": "samaneh9297🎩🍗🔵", "active_status": "inactive", "verifications": ["0x281ba139840a7497a6ed40a20ac0a4b0a5d604f0"], "follower_count": 747, "custody_address": "0xa1f9c99649ce2be756a6851aae5dedd4df374908", "following_count": 881, "verified_addresses": {"eth_addresses": ["0x281ba139840a7497a6ed40a20ac0a4b0a5d604f0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rey-mos-515411235/sets/v4wlw5qa2bky?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173695, '0xb9d3af72e33c2c8bac3126c5f5dccdca4b1f2662', 1000, 1, '2024-05-16 08:46:29+00', 0, 0, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3885, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1013, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4A3ut\"}"}', 'sonata'), - (1076684, '0x839322434fce3c61bb5e44c557845bd9e92aed29', 0, 1, '2024-05-07 15:21:27+00', 0, 2, '{"fid": 427626, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmQP55ePngG81GsGs5wSmgfZXbgvyix67bS2d2rSKcHrfa?filename=_20240414_185305.jpeg", "profile": {"bio": {"text": "Have a nice day🍓🍖☕️\n#프로소통러\nIt''s faster than the light\n#Hanwha Eagles Pan\n#워프캐스트사랑해요\nYou''ll be happy soon", "mentioned_profiles": []}}, "username": "top01", "power_badge": false, "display_name": "Raccoonchoi🌈🍓🍖", "active_status": "inactive", "verifications": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "follower_count": 2789, "custody_address": "0xb2af8a3e110e595bb5027e832a7e8d0a396b72fa", "following_count": 2394, "verified_addresses": {"eth_addresses": ["0x12ffe235341473d2605c632cf395b4998ab21af0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/554jB\"}"}', 'sonata'), - (1076860, '0x9a455a5aa8db5c491dee9d427dc84e37163e7d55', 0, 1, '2024-05-07 15:21:42+00', 0, 1, '{"fid": 347868, "object": "user", "pfp_url": "https://i.imgur.com/sUnZOKO.jpg", "profile": {"bio": {"text": "医療系で働く30代パパです。趣味は情報収集です。よろしくお願いします。フォローバックお願いします。", "mentioned_profiles": []}}, "username": "shogoirabuu", "power_badge": false, "display_name": "cas🎩", "active_status": "inactive", "verifications": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "follower_count": 1711, "custody_address": "0x6f49b2ff895fefd96894369f2964cf2333fa5ec6", "following_count": 1304, "verified_addresses": {"eth_addresses": ["0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0"], "sol_addresses": ["92azsBTuogcEMq6nDMS6uTbefjPBcP9JUvvxgFV28eTx"]}}', '{"{\"url\":\"https://on.soundcloud.com/wBHoMxALuEbXqYkr8\"}"}', 'sonata'), - (1069431, '0x25cf59f7a82220d259c76b703b2260a7b7355c8e', 0, 1, '2024-05-07 15:14:58+00', 0, 2, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vzi9wEE368mytTvC6\"}"}', 'musicjp'), - (1128046, '0x9cfb8a73011c601c8397e6a63631c76e92533576', 0, 1, '2024-05-07 18:23:49+00', 0, 0, '{"fid": 445305, "object": "user", "pfp_url": "https://i.imgur.com/iGJ0lgN.jpg", "profile": {"bio": {"text": "Art", "mentioned_profiles": []}}, "username": "mohsnm", "power_badge": false, "display_name": "Saeed", "active_status": "inactive", "verifications": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "follower_count": 555, "custody_address": "0x8af9a4006b2977a85235aec844331fcc4b11db4f", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/outtayamindd/barobax-soosan-khanoom\"}"}', NULL), - (1107439, '0xdbfbd19b8964ac8eb1b50f97511ecebb5b334a5f', 0, 1, '2024-05-07 16:43:19+00', 0, 1, '{"fid": 478716, "object": "user", "pfp_url": "https://i.imgur.com/VflA9MM.jpg", "profile": {"bio": {"text": "Fun loving.crypto enthusiast love to explore the world and make new friends", "mentioned_profiles": []}}, "username": "avani", "power_badge": false, "display_name": "Avani🎩", "active_status": "inactive", "verifications": ["0xc26df7194f6b8077676643104412271e6e4daea7"], "follower_count": 444, "custody_address": "0xd380787e8d1e90cc54108a76923d99b24bcac80c", "following_count": 707, "verified_addresses": {"eth_addresses": ["0xc26df7194f6b8077676643104412271e6e4daea7"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LnFk7\"}"}', 'sonata'), - (1107440, '0x604f54a01f735cd40d844b36388df7ee31c509f4', 0, 1, '2024-05-07 16:40:33+00', 0, 0, '{"fid": 15716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa02241c-2461-4bf2-0f5e-8be636c8d000/rectcrop3", "profile": {"bio": {"text": "Brooklynite by day. Daydreamer by night.", "mentioned_profiles": []}}, "username": "ethtotheweth", "power_badge": false, "display_name": "Eric", "active_status": "inactive", "verifications": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "follower_count": 87, "custody_address": "0xe8e5fc4ea45762caf257a7a6aab07de3df9bf30d", "following_count": 224, "verified_addresses": {"eth_addresses": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9L7ksSkZQ4xpVozn9\"}"}', NULL), - (1076865, '0xe835be77d3429d281ad74107ae62e0444a782e06', 0, 1, '2024-05-07 15:22:44+00', 0, 1, '{"fid": 422650, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2f40052-20c1-4e6f-9a6b-127582d8f700/rectcrop3", "profile": {"bio": {"text": "Lucky Pink Coucou 🫶🏻", "mentioned_profiles": []}}, "username": "hicoucou", "power_badge": false, "display_name": "Coucou", "active_status": "inactive", "verifications": ["0xb64d2510e57fa69dfcc9fd45d1c42044127c9284"], "follower_count": 2556, "custody_address": "0x3fb0562f9fbaa5918f94bfef0cef08c685c9a24b", "following_count": 2760, "verified_addresses": {"eth_addresses": ["0xb64d2510e57fa69dfcc9fd45d1c42044127c9284"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x942EKiV38Dj3s4h6\"}"}', 'sonata'), - (1149253, '0x38f1cff452f08aa89f878a93a2aa30037ff4736a', 0, 1, '2024-05-07 20:31:23+00', 0, 6, '{"fid": 4044, "object": "user", "pfp_url": "https://i.imgur.com/z9xqChs.jpg", "profile": {"bio": {"text": "👷 Building @interestedfyi (interested.fyi) to help people get /jobs 👔 🟪 #39 + 76 ⏪Prev. @ConsenSysMesh🦇🔊 Class of ’17 🤠", "mentioned_profiles": []}}, "username": "alec.eth", "power_badge": true, "display_name": "alec.eth🤠", "active_status": "inactive", "verifications": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "follower_count": 3609, "custody_address": "0x8407d58683d74c59436c7d38218239082163fcf9", "following_count": 804, "verified_addresses": {"eth_addresses": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/17tJRMOZ181DjZMT4eIbSp?si=uh-5owW1QkiixVjkZrloJA&context=spotify%3Aalbum%3A0bcOGgwJpwBjfFBTApoqSn\"}"}', NULL), - (1158770, '0xcaeafc4abfa97835147290de5efa3a313301eed0', 2390, 1, '2024-05-08 05:30:20+00', 20, 19, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 692, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 343, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7yhDdQt66YaCfjlKjYjZKd?si=aa38299c4133430f\"}"}', 'sonata'), - (1115926, '0xf6adc8e0f37db6a7a7fcf2a3ac59a2553975ee1a', 0, 1, '2024-05-07 17:32:57+00', 0, 3, '{"fid": 336963, "object": "user", "pfp_url": "https://i.imgur.com/alRFXL5.jpg", "profile": {"bio": {"text": "I’m running stadium /banmal-mode / /aze-gag / /ooo / /birthday", "mentioned_profiles": []}}, "username": "kingoftheworld", "power_badge": false, "display_name": "The King 👑 /banmal-mode", "active_status": "inactive", "verifications": ["0x61fd6a1edb5b6cc1860ff7f2c7e3fe4cbcea1c4e"], "follower_count": 3799, "custody_address": "0x3b1d6ef9679aa1bdd95ceb34ffbb8f97730128cb", "following_count": 2664, "verified_addresses": {"eth_addresses": ["0x61fd6a1edb5b6cc1860ff7f2c7e3fe4cbcea1c4e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B1opAm8AjamVJTXz7\"}"}', NULL), - (1160749, '0xc88e3c4eda1fca1d4c69a1168767392d345e3548', 4740, 1, '2024-05-08 21:43:47+00', 0, 7, '{"fid": 394597, "object": "user", "pfp_url": "https://i.imgur.com/3wCLomw.jpg", "profile": {"bio": {"text": "Art School Dropout | Baggage Handler at 747 Airlines ✈️", "mentioned_profiles": []}}, "username": "jameecornelia", "power_badge": true, "display_name": "Jamee Cornelia✈️", "active_status": "inactive", "verifications": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "follower_count": 361, "custody_address": "0xa75cacaf502ade298af8293ab5a37ef380b3abbc", "following_count": 202, "verified_addresses": {"eth_addresses": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6ylf4lPGRcAKRe0ZIIWR97?si=YTQiOIuUSvinDrGHthXkFg\"}"}', NULL), - (1095059, '0x8b83964877629042781d54815ca47bd4195513a1', 0, 1, '2024-05-07 16:00:36+00', 0, 3, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 640, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 755, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/atlanticrecords/keala-settle-the-greatest-showman-ensemble-this-is-me?si=b389e07888934673b7be722b3f685f08&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (1084850, '0x90f0ed4500175b32b6a058caf8c1799c2dfcf9fb', 0, 1, '2024-05-07 15:39:26+00', 0, 3, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 887, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 1020, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ExipU\"}"}', 'sonata'), - (1080866, '0x2dbaaffeec9cd5076016f781f680d93095daeda1', 0, 1, '2024-05-07 15:33:07+00', 0, 1, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2560, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2544, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/QG4ah\"}"}', 'sonata'), - (1107441, '0x3ced70c346b489d02d2cf404bf8b0ad5f300c4b7', 0, 1, '2024-05-07 16:42:49+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2682, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3145, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/y51m94EGiLbAjgS59\"}"}', 'sonata'), - (1082022, '0x68c20b3110dd3b9f7ee79b2fd78511fe2af9a2d1', 0, 1, '2024-05-07 15:34:53+00', 0, 0, '{"fid": 291829, "object": "user", "pfp_url": "https://i.imgur.com/vekFCZ3.png", "profile": {"bio": {"text": "함께 만들어 가는 워캐 세상 🍀 ", "mentioned_profiles": []}}, "username": "jslon444", "power_badge": false, "display_name": "Flower_Dance", "active_status": "inactive", "verifications": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "follower_count": 2252, "custody_address": "0x850b0600a4486d48d0eb4ea64d9b675b69f06e4e", "following_count": 2593, "verified_addresses": {"eth_addresses": ["0x09562785cc075e98abf723650ed8140bd2ef9bd9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lgbtis/yetjhfahlmqt?si=da108e366e79442caedaa28204acae5a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1076688, '0xa8efe6a79ac8fefc0389fa6da1fb3f8a23083436', 0, 1, '2024-05-07 15:21:26+00', 0, 4, '{"fid": 404660, "object": "user", "pfp_url": "https://i.imgur.com/EOQJ1Kq.jpg", "profile": {"bio": {"text": "Like to listen music and take walk.", "mentioned_profiles": []}}, "username": "enjoy815", "power_badge": false, "display_name": "HK JIN", "active_status": "inactive", "verifications": ["0x634cb195dbbe098b525e655fbc95dd198b4d3fc8"], "follower_count": 1668, "custody_address": "0xb89832e70638a43b75d9c179bcc40392b3ba36ed", "following_count": 2446, "verified_addresses": {"eth_addresses": ["0x634cb195dbbe098b525e655fbc95dd198b4d3fc8"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/qqazumlaagxb/crush-ost-part-4-mp3\"}"}', 'sonata'), - (1077942, '0x8fa6f5fa960064fc4a021cf1e4b4a2379690db1e', 0, 1, '2024-05-07 15:26:12+00', 0, 22, '{"fid": 406493, "object": "user", "pfp_url": "https://i.imgur.com/nVBBwsm.jpg", "profile": {"bio": {"text": "항상 파이팅👍 ", "mentioned_profiles": []}}, "username": "yeomks", "power_badge": false, "display_name": "Yeomks🎩🍖", "active_status": "inactive", "verifications": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "follower_count": 4316, "custody_address": "0xb3043f0e2ae80ab98c9f1b03df36eba4a5dbf15c", "following_count": 3172, "verified_addresses": {"eth_addresses": ["0x58708037f18a8f3b11281c774af628a575b2ea5f"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/lauvsongs/sad-forever\"}"}', 'sonata'), - (1076870, '0xe8a3b4a74866ee0163af804486df66c6f3f86248', 0, 1, '2024-05-07 15:24:04+00', 0, 3, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 822, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 642, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vckpgoG1LYAUCYsh8\"}"}', NULL), - (1128429, '0x09b6cad484cdf95f787f2161064dc7e2d8fdfd36', 0, 1, '2024-05-07 18:25:05+00', 0, 3, '{"fid": 372198, "object": "user", "pfp_url": "https://i.imgur.com/TKXL5Tn.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "hoseinbadrlo", "power_badge": false, "display_name": "Hosein 🎩", "active_status": "inactive", "verifications": ["0x623efe96560c13f0fdc2472402483b8c4fda26ab"], "follower_count": 296, "custody_address": "0x5542603b6c1c2fb9e9b26ed96c57b25db81ad164", "following_count": 310, "verified_addresses": {"eth_addresses": ["0x623efe96560c13f0fdc2472402483b8c4fda26ab"], "sol_addresses": ["FxoZHX3z1FrJNqW6tqjorExMsN3RQ9Q6h7vQFMZPb5LF"]}}', '{"{\"url\":\"https://on.soundcloud.com/ZrJZFnULt4UA3iEj9\"}"}', NULL), - (1073550, '0x9b44f21cb985a7a556cf7bafe093444958d028e0', 0, 1, '2024-05-07 15:19:04+00', 0, 0, '{"fid": 507380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d510649c-984d-4ac8-82c2-1a6f09457e00/original", "profile": {"bio": {"text": "Movies and art lover", "mentioned_profiles": []}}, "username": "!507380", "power_badge": false, "display_name": "Anchor", "active_status": "inactive", "verifications": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "follower_count": 94, "custody_address": "0xba4430479cce3480d93e3fd91c9bcfcd37ee5b3c", "following_count": 463, "verified_addresses": {"eth_addresses": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gHuhBmaybL5rewYx5\"}"}', NULL), - (1102107, '0x42fdd2506a93ab95ff4a17511c0a05452745e4d6', 0, 1, '2024-05-07 16:20:48+00', 0, 1, '{"fid": 377951, "object": "user", "pfp_url": "https://i.imgur.com/MCppJKj.gif", "profile": {"bio": {"text": "From Japan\nenjoy crypto / Air drop / dreamer\n\nConecting people. Fl me and FI back 100%🫶💯", "mentioned_profiles": []}}, "username": "dork99999.eth", "power_badge": false, "display_name": "Ryoz 🎩🍖🔮🔵🧀⛓️", "active_status": "inactive", "verifications": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "follower_count": 914, "custody_address": "0x5d0569c077ffb404e76de9f1fc6b39c2536f0ebf", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "sol_addresses": ["BXa9GMPHPJs8E7zHmcQWzqhYgNVkaaCSwFx5kmeKV1Ja"]}}', '{"{\"url\":\"https://on.soundcloud.com/hBTrmtyacisouBjk7\"}"}', 'musicjp'), - (1066991, '0xb400948f7a3f0343305b891cd011e590bbbe1f83', 0, 1, '2024-05-07 15:07:59+00', 0, 0, '{"fid": 347050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e474ba4a-29e5-4238-2e48-940936ddb900/rectcrop3", "profile": {"bio": {"text": "artist. cat. jazz fiend •\n\nhosting /whoa\n•\n\nhttps://linktr.ee/TruptyS", "mentioned_profiles": []}}, "username": "trupty", "power_badge": true, "display_name": "Trupty Somaiah 🎩🦉", "active_status": "inactive", "verifications": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "follower_count": 1915, "custody_address": "0x64116e340ae712b58060820f2f328023ddbedf0a", "following_count": 413, "verified_addresses": {"eth_addresses": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1xtJe3m15dJmFMc6p1Iuvz?si=r8792oa8RaW8AjfimL81RQ&context=spotify%3Asearch%3Asilent%2Bflight%2Bsleeping\"}"}', NULL), - (1075088, '0x665a581605428da24d4f030565024413b12e42b8', 0, 1, '2024-05-07 15:20:12+00', 0, 0, '{"fid": 394424, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreieh2qomxtz34ls5s7vtr7d2by6bjbv5mst5dgryvxhtduf7zvqwte", "profile": {"bio": {"text": "❤️ I love you ~~\n Have a happy day~ 🌈🌅", "mentioned_profiles": []}}, "username": "moyaa", "power_badge": false, "display_name": "Moyaa🎩🍖", "active_status": "inactive", "verifications": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "follower_count": 2721, "custody_address": "0x051dc31fe553cd48a42c98fd7300095bb0d3b84f", "following_count": 2894, "verified_addresses": {"eth_addresses": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/r1hulnfgi1gf/lhvwtnles2u1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1075085, '0x785fd5e5ed907eafeccdbcb0b564f2f1eedad494', 0, 1, '2024-05-07 15:20:13+00', 0, 3, '{"fid": 467140, "object": "user", "pfp_url": "https://i.imgur.com/66Ri6Ja.jpg", "profile": {"bio": {"text": "언제든 맞팔환영!! 글 남기면 무적권 소통감!!🎩🔵🏋🏻‍♂️🧗🏻‍♂️", "mentioned_profiles": []}}, "username": "go-to-mars", "power_badge": false, "display_name": "Strange.Seed", "active_status": "inactive", "verifications": ["0x22471c4946f2f3f34464a92d6444b619a52f9de1"], "follower_count": 1225, "custody_address": "0x43d8695880217b7c072db1b28c7ec3c6e33d59b6", "following_count": 1215, "verified_addresses": {"eth_addresses": ["0x22471c4946f2f3f34464a92d6444b619a52f9de1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/S2RaHkonnWuAhCuPA\"}"}', 'sonata'), - (1073551, '0xa988198403cf49f03cfd21460a34e01dcaa1952e', 0, 1, '2024-05-07 15:18:25+00', 0, 4, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1273, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/livingston-official/lifetime?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1116658, '0x3bbb5f6cfb8a68119f04cc71a8596bebbffc492e', 0, 1, '2024-05-07 17:36:32+00', 0, 1, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 510, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 151, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0TjUJXqUH9CPfoC30y4fWx?si=1Ho53jy2RpaNcaT-mvdHyA\"}"}', NULL), - (1107442, '0xd1d0a1bead2e29e4f0132b3732e0264ca0431f8a', 0, 1, '2024-05-07 16:43:48+00', 0, 1, '{"fid": 501070, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/783d321c-bf98-40df-8588-98da71a16c00/rectcrop3", "profile": {"bio": {"text": "픽슨입니다. 댓글필수 X. 캐스트 위주로 운영해서 맞방은 못갈거 같으니 ㅠㅠ 그냥 가볍게만 봐주세요 ^^ 죄송하고 감사합니다.", "mentioned_profiles": []}}, "username": "fixons", "power_badge": false, "display_name": "픽슨s 🍖", "active_status": "inactive", "verifications": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "follower_count": 1747, "custody_address": "0x10c6f3c1240c3e3d4616a82a6548268f8e687106", "following_count": 1599, "verified_addresses": {"eth_addresses": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/uzbzcbescymg/braindead-freestyle?si=36d55683fcfb4e05a7fde4a661e06546&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (226174, '0xedcf19d588f557e438c3fe0ea862bce3e5ef6cde', 10, 1, '2024-05-05 13:29:27+00', 10, 25, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2964, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 269, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/famous_dyl/sets/crypto-rich-deluxe\"}"}', NULL), - (1103367, '0x3e16dda3dd7eb0168a50f70999036918aad9fac8', 1000, 1, '2024-05-07 16:23:53+00', 0, 2, '{"fid": 377951, "object": "user", "pfp_url": "https://i.imgur.com/MCppJKj.gif", "profile": {"bio": {"text": "From Japan\nenjoy crypto / Air drop / dreamer\n\nConecting people. Fl me and FI back 100%🫶💯", "mentioned_profiles": []}}, "username": "dork99999.eth", "power_badge": false, "display_name": "Ryoz 🎩🍖🔮🔵🧀⛓️", "active_status": "inactive", "verifications": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "follower_count": 914, "custody_address": "0x5d0569c077ffb404e76de9f1fc6b39c2536f0ebf", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "sol_addresses": ["BXa9GMPHPJs8E7zHmcQWzqhYgNVkaaCSwFx5kmeKV1Ja"]}}', '{"{\"url\":\"https://on.soundcloud.com/oBXJN8Jbj2sM3dGaA\"}"}', 'musicjp'), - (1128425, '0xd7d053f0ac6610e6acf902501ca6685a117a29e2', 0, 1, '2024-05-07 18:25:30+00', 0, 2, '{"fid": 445305, "object": "user", "pfp_url": "https://i.imgur.com/iGJ0lgN.jpg", "profile": {"bio": {"text": "Art", "mentioned_profiles": []}}, "username": "mohsnm", "power_badge": false, "display_name": "Saeed", "active_status": "inactive", "verifications": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "follower_count": 557, "custody_address": "0x8af9a4006b2977a85235aec844331fcc4b11db4f", "following_count": 1168, "verified_addresses": {"eth_addresses": ["0x94e75da64c4a0c3f210555d19b803fcfe85e33ef"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/outtayamindd/barobax-soosan-khanoom\"}"}', NULL), - (1149264, '0xdd5f87f1c7e5102099fbe4ec79343a946eb54bbb', 0, 1, '2024-05-07 20:32:19+00', 0, 12, '{"fid": 352484, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreibdn4gr7pijsmv7nyqs6co3ld2csvkiu34b6ieicjtxd45qqubyo4", "profile": {"bio": {"text": " let''s talk", "mentioned_profiles": []}}, "username": "juravli", "power_badge": false, "display_name": "Juravli", "active_status": "inactive", "verifications": ["0x34e078afb3e89df97c1f7cee7b91b14a9236079d"], "follower_count": 1858, "custody_address": "0xa7d0ca80a61368bd56cb46de112c715e49872f33", "following_count": 2498, "verified_addresses": {"eth_addresses": ["0x34e078afb3e89df97c1f7cee7b91b14a9236079d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/0x34e078afb3e89df97c1f7cee7b91b14a9236079d/post/ac90e5f9-342a-4bd2-80d8-c0b5676930f0\"}"}', 'streamz'), - (1173496, '0xfea4c9cd591f1b0737204728be67f1b8a138f41a', 2500, 1, '2024-05-16 03:46:59+00', 0, 5, '{"fid": 439718, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\" /cryptoninjas", "mentioned_profiles": []}}, "username": "ssr", "power_badge": true, "display_name": "SSR 🥷🏼🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "follower_count": 881, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 830, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/atlanticrecords/billionaire-feat-bruno-mars\"}"}', 'sonata'), - (1076831, '0x55f7fa995765f5defc8a8ef195bc30abdf0b6392', 0, 1, '2024-05-07 15:23:17+00', 0, 0, '{"fid": 422650, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2f40052-20c1-4e6f-9a6b-127582d8f700/rectcrop3", "profile": {"bio": {"text": "Lucky Pink Coucou 🫶🏻", "mentioned_profiles": []}}, "username": "hicoucou", "power_badge": false, "display_name": "Coucou", "active_status": "inactive", "verifications": ["0xb64d2510e57fa69dfcc9fd45d1c42044127c9284"], "follower_count": 2555, "custody_address": "0x3fb0562f9fbaa5918f94bfef0cef08c685c9a24b", "following_count": 2759, "verified_addresses": {"eth_addresses": ["0xb64d2510e57fa69dfcc9fd45d1c42044127c9284"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x942EKiV38Dj3s4h6\"}"}', NULL), - (1160263, '0xd9e889b1a9f4b306cd735abbceec3d0e5af9cde5', 3620, 1, '2024-05-08 17:45:05+00', 50, 6, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9404, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/de02b56a-008a-4c2a-9742-d88dd0979fee\"}","{\"url\":\"https://www.sound.xyz/jigitz/touch\"}"}', NULL), - (1076686, '0x24bb87afb443e5b4427ad55c02e4405c3c97f4f5', 0, 1, '2024-05-07 15:21:03+00', 0, 1, '{"fid": 506186, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f18d1ade-4a66-4378-0f6b-17dfad1f6400/rectcrop3", "profile": {"bio": {"text": "만나서 반가워요 ^___________^", "mentioned_profiles": []}}, "username": "summerman", "power_badge": false, "display_name": "summerman", "active_status": "inactive", "verifications": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "follower_count": 881, "custody_address": "0x76dbe1185967c08e8ec5c0b2f6ccd4174f8baf9f", "following_count": 1010, "verified_addresses": {"eth_addresses": ["0x94f2cefc084b5d4c1fd35597428a0c297570f3f2"], "sol_addresses": []}}', '{"{\"url\":\"Listen to BTS (방탄소년단) ''Spring Day'' (봄날) by Sophie Carson on #SoundCloud https://on.soundcloud.com/oRYdp\"}"}', NULL), - (1096855, '0xea7f99865d059603e8129c12e9f4c772f977dcb5', 0, 1, '2024-05-07 16:04:02+00', 0, 4, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 381, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 557, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost11/paul-kim-goodbye-hotel-del-luna-ost-part-10?si=5d89e9275fd240fc8ad5c7efe0147c3f&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173485, '0x27120ed66be080fca443b8487d20dd7cdb13ffb4', 1100, 1, '2024-05-16 02:54:27+00', 0, 0, '{"fid": 248216, "object": "user", "pfp_url": "https://i.imgur.com/7sXGA9U.jpg", "profile": {"bio": {"text": "\nco-creator of /farcards", "mentioned_profiles": []}}, "username": "sartocrates", "power_badge": true, "display_name": "sartocrates", "active_status": "inactive", "verifications": ["0x7ff446ecf4a6c7224264eab1ee97e26a1d71152d"], "follower_count": 8272, "custody_address": "0x2be743907dc805099b16351717b2b8f09b7d5938", "following_count": 1656, "verified_addresses": {"eth_addresses": ["0x7ff446ecf4a6c7224264eab1ee97e26a1d71152d"], "sol_addresses": ["55Nh22xdSpRbVwRjQUas8bjwDdNMadnXttVjtuuhwuGJ"]}}', '{"{\"url\":\"https://soundcloud.com/sartocrates/delaware-county-live-from-farhouse-5515\"}"}', 'sonata'), - (1096844, '0x49b5f3365d45e54bdb766210a2db31d90e21cbf2', 0, 1, '2024-05-07 16:04:39+00', 0, 7, '{"fid": 307726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a5503b1b-bfea-4f4f-a491-50ecd5a91300/rectcrop3", "profile": {"bio": {"text": "SearchFi is Bullish🔥F4F ", "mentioned_profiles": []}}, "username": "elonmask88", "power_badge": false, "display_name": "ElonMask", "active_status": "inactive", "verifications": ["0x9367cf8cbf3c172d7c2471edbbf0f3699bbdb9a1"], "follower_count": 757, "custody_address": "0xad1f609211ebf5791f452677878fca14e7cf0337", "following_count": 769, "verified_addresses": {"eth_addresses": ["0x9367cf8cbf3c172d7c2471edbbf0f3699bbdb9a1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/u8gs02msbvhq/crying?si=00b6fa41494e4a14ba343d96d3812781&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1103628, '0x8c40fbbfa5dc6c9b2787e063a262cf981c30dd8b', 0, 1, '2024-05-07 16:24:27+00', 0, 1, '{"fid": 500242, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fc4db9dc-8867-4c10-55c6-09d39032ee00/rectcrop3", "profile": {"bio": {"text": "🎩🍖", "mentioned_profiles": []}}, "username": "45rpm", "power_badge": false, "display_name": "Rimuru", "active_status": "inactive", "verifications": ["0x0569ee1c2362e13c66a7b7246e18b387f80663fa"], "follower_count": 621, "custody_address": "0x867705bc06c55da9f02e3c838ff54c59616aefc1", "following_count": 629, "verified_addresses": {"eth_addresses": ["0x0569ee1c2362e13c66a7b7246e18b387f80663fa"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/andre-j-oliveira/x-japan-tears?si=dea610dfee554a1f96b53d1c5f12ee20&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1133546, '0x000eed4d56a713181ddda24e3c5afbb75c74dbd6', 0, 1, '2024-05-07 18:46:03+00', 0, 0, '{"fid": 195117, "object": "user", "pfp_url": "https://i.imgur.com/PDWlh5Z.jpg", "profile": {"bio": {"text": "Queen|she|her\n/wac | onelovedao | cohort9\n| 2D Art | Photo | AI | Stream of Conscious Writing | RPG | Voiceover Creator |\n\nhttps://beacons.ai/jacquec", "mentioned_profiles": []}}, "username": "jacque", "power_badge": false, "display_name": "JacqueC🌸🩸🎩🌸", "active_status": "inactive", "verifications": ["0x20da700ea03e9fe8bf3409d6f66105184aefb2fc"], "follower_count": 104, "custody_address": "0x4036e3e1c3097e4c5d97f620a8b51239d5600be3", "following_count": 81, "verified_addresses": {"eth_addresses": ["0x20da700ea03e9fe8bf3409d6f66105184aefb2fc"], "sol_addresses": ["2nEdtHrM5vDzg1qg6KzMRrT3cHesy47ZpeghNijxQtgg"]}}', '{"{\"url\":\"https://open.spotify.com/track/0Dz49qemTOjX9RcPZzIl2q?si=1vaJLuN5SeiwJpLeXJ0gcQ\"}"}', NULL), - (1134068, '0x3931bebbb7b5275428e9152fc7af4adbc2876d35', 0, 1, '2024-05-07 18:48:46+00', 0, 2, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 580, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 523, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/jutes/born-to-lose?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', 'coop-recs'), - (1107443, '0x62b48399256d5faa331ff52173c342862ef602bf', 0, 1, '2024-05-07 16:42:17+00', 0, 7, '{"fid": 501732, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8635c48c-a8ae-4010-8932-0fb00b29d000/rectcrop3", "profile": {"bio": {"text": "Your daily request has arrived.\nDo you want to accept it?", "mentioned_profiles": []}}, "username": "lisashin", "power_badge": false, "display_name": "lisashin", "active_status": "inactive", "verifications": ["0xdb8538d46da031a07e3ee1bf2b2878b491db57a9"], "follower_count": 921, "custody_address": "0x6b7e8d6cd49e3c3cc1e7effc84cd2f945d0cc1a8", "following_count": 1041, "verified_addresses": {"eth_addresses": ["0xdb8538d46da031a07e3ee1bf2b2878b491db57a9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/C2dZV\"}"}', 'sonata'), - (1150403, '0x379dd4e6c44ff13064b1b09608b1ecf12fc0c41e', 0, 1, '2024-05-07 20:34:22+00', 0, 7, '{"fid": 492127, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fa4a390-63a9-46eb-5731-20e90d8ecd00/rectcrop3", "profile": {"bio": {"text": "Art\nCrypto💵\n", "mentioned_profiles": []}}, "username": "artmaryam23", "power_badge": false, "display_name": "artmaryam23", "active_status": "inactive", "verifications": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "follower_count": 359, "custody_address": "0xcf3027475526895b40fdca8451eda15a8f665417", "following_count": 489, "verified_addresses": {"eth_addresses": ["0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hUqvK\"}"}', NULL), - (1096845, '0xb6d3add8fe418d2a5ef94ecdb486f7dd6edf0e95', 0, 1, '2024-05-07 16:04:23+00', 0, 0, '{"fid": 377951, "object": "user", "pfp_url": "https://i.imgur.com/MCppJKj.gif", "profile": {"bio": {"text": "From Japan\nenjoy crypto / Air drop / dreamer\n\nConecting people. Fl me and FI back 100%🫶💯", "mentioned_profiles": []}}, "username": "dork99999.eth", "power_badge": false, "display_name": "Ryoz 🎩🍖🔮🔵🧀⛓️", "active_status": "inactive", "verifications": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "follower_count": 914, "custody_address": "0x5d0569c077ffb404e76de9f1fc6b39c2536f0ebf", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "sol_addresses": ["BXa9GMPHPJs8E7zHmcQWzqhYgNVkaaCSwFx5kmeKV1Ja"]}}', '{"{\"url\":\"https://on.soundcloud.com/hez2FTs38y8dbELg9\"}"}', 'musicjp'), - (1072158, '0x0a1c209178596e4a6567f285788b492ee4ce1bcc', 0, 1, '2024-05-07 15:17:33+00', 0, 2, '{"fid": 394424, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreieh2qomxtz34ls5s7vtr7d2by6bjbv5mst5dgryvxhtduf7zvqwte", "profile": {"bio": {"text": "❤️ I love you ~~\n Have a happy day~ 🌈🌅", "mentioned_profiles": []}}, "username": "moyaa", "power_badge": false, "display_name": "Moyaa🎩🍖", "active_status": "inactive", "verifications": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "follower_count": 2721, "custody_address": "0x051dc31fe553cd48a42c98fd7300095bb0d3b84f", "following_count": 2894, "verified_addresses": {"eth_addresses": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-36339546/fgepkd1npulm?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (957700, '0xda7f3f58121a9a9bf75568253b30cbe7b13c69d6', 0, 1, '2024-05-07 09:10:39+00', 0, 1, '{"fid": 212556, "object": "user", "pfp_url": "https://i.imgur.com/zh3DOft.jpg", "profile": {"bio": {"text": "Collector 🩸 | Degentlemen #8682", "mentioned_profiles": []}}, "username": "nhagio.eth", "power_badge": true, "display_name": "Windy|₿Ξ∞🎩📚🔥", "active_status": "inactive", "verifications": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "follower_count": 1694, "custody_address": "0x8cf6d2b8af28549a2625a6a52bd012f8f2e95b23", "following_count": 549, "verified_addresses": {"eth_addresses": ["0xbb1c043ceb7745b286987b4cc8359c5b508f0307"], "sol_addresses": ["8esC41Pwnxtopjh8QdkaY89J8Dh17T3No653fNgAqtwv"]}}', '{"{\"url\":\"https://www.sound.xyz/nvakcollective/rosa-linn-hallelujah-r3hab-remix?referral_source=link\"}"}', NULL), - (1160311, '0x019c2640a488c02f9c8097a606cbc65033bb823c', 0, 1, '2024-05-08 19:34:03+00', 100, 8, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 290, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2vfvGlqCB7oertO5VLE0sz?si=IqgzOzm5RA-_op0H75Aorg&context=spotify%3Aalbum%3A1IaBCF26OjgYwUCEPaIyC0\"}"}', NULL), - (1107444, '0x47f30776b6c0f5228ea0666b5d1ebb8b398f488b', 0, 1, '2024-05-07 16:40:29+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2682, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3145, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/y51m94EGiLbAjgS59\"}"}', NULL), - (788245, '0x36c687b3c791d0c35d1a8085d9e83de38b127ae0', 0, 1, '2024-05-07 02:54:24+00', 0, 13, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2238, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 734, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6ZNXgoeANOXuk21U9IujVZ\"}"}', 'degen-japan'), - (1076690, '0x2172d17aec05c0a5146e0bfb6500abac798513cb', 0, 1, '2024-05-07 15:21:11+00', 10, 1, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 712, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 863, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/9hGcJYz4CFQyvzhv7\"}"}', 'musicjp'), - (1160730, '0x648f6c98f86fbdf93e0601b44dd84ae8292d291a', 6010, 1, '2024-05-08 21:32:24+00', 10, 9, '{"fid": 238853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a59d05-ac7c-4a6b-f4d3-0b52f78f9b00/original", "profile": {"bio": {"text": "bringing culture onchain. creating virtual artists. building @hume.", "mentioned_profiles": []}}, "username": "db3045", "power_badge": true, "display_name": "DavidBeiner", "active_status": "inactive", "verifications": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "follower_count": 967, "custody_address": "0xde3cea5bb06f5d18d92a827f0ace525bc714963a", "following_count": 371, "verified_addresses": {"eth_addresses": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/2055-with-reo-cragun?referral_source=link\"}"}', 'sonata'), - (1073549, '0x4350c18958c96dc7121b48dbc56ccbd0f07f0ff5', 0, 1, '2024-05-07 15:19:01+00', 0, 2, '{"fid": 502380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cda9ec9a-a510-4822-9ab1-516708c4a000/rectcrop3", "profile": {"bio": {"text": "Hello everyone my name is mocapuchino nice to meet you I hope you have a happy day🥰", "mentioned_profiles": []}}, "username": "mocapuchino", "power_badge": false, "display_name": "Mocapuchino", "active_status": "inactive", "verifications": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "follower_count": 1070, "custody_address": "0xb8e4a5b9a19d75e856d0b3ea56e28bda4dd091d3", "following_count": 1060, "verified_addresses": {"eth_addresses": ["0x9f05e379a0ea4407ba76fec8c319538c0594f2b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-868535484/novelbright-walking-with-you-official-music-video-youtubemp3freeorg-1?si=2c017a4865e94763b1d84db4ede7a765&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1076864, '0x3dddedaf5419c726e9b87e056e56e43123000301', 0, 1, '2024-05-07 15:23:08+00', 0, 8, '{"fid": 480504, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c8baab0-ef56-4da5-8673-f65d9534c300/original", "profile": {"bio": {"text": "안녕하세요.\n시고르자브종 입니다.\n멍~멍~\nCountry Dog\nBOW WOW~", "mentioned_profiles": []}}, "username": "quhn", "power_badge": false, "display_name": "CountryDog", "active_status": "inactive", "verifications": ["0xf2e11f72f83feaa573e0805266c023b052b32461"], "follower_count": 1506, "custody_address": "0xee030ff4b1f535f20d7106c66c8d44322904afad", "following_count": 950, "verified_addresses": {"eth_addresses": ["0xf2e11f72f83feaa573e0805266c023b052b32461"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/drykim/jeong-eun-ji-hopefully-sky-cover-male-version-vocal-piano?si=731b85cc0af64fcfa5387454cc97d005&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1071522, '0x65bdc61f523692aad082a27b910f57c974dbf8a7', 0, 1, '2024-05-07 15:17:18+00', 0, 1, '{"fid": 346678, "object": "user", "pfp_url": "https://i.imgur.com/6PryjL1.jpg", "profile": {"bio": {"text": "네오 코인을 투자하고 민트와 워캐스트에 관심이 많은 사람입니다.", "mentioned_profiles": []}}, "username": "steampackmarine", "power_badge": false, "display_name": "Steampackmarine🍖", "active_status": "inactive", "verifications": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "follower_count": 1510, "custody_address": "0x8ba5eefdb660c494528c25f40a2add9ce5f575a9", "following_count": 1728, "verified_addresses": {"eth_addresses": ["0x05e8537df4f8185b23c557ac2f355e1f60c53da8"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 소찬휘 Tears by young hwan Lee 1 on #SoundCloud https://on.soundcloud.com/d2Stp\"}"}', NULL), - (1172940, '0x809f5aa3e0cc5c4fba6a28594ba47475d4187888', 4630, 1, '2024-05-14 21:28:24+00', 0, 0, '{"fid": 369, "object": "user", "pfp_url": "https://i.imgur.com/NXChCsx.jpg", "profile": {"bio": {"text": "co-conspirator @ gallery.so • prev coinbase • /gallery /djs /robin • my casts are endorsements, financial advice, and reflect my employer''s opinions", "mentioned_profiles": []}}, "username": "robin", "power_badge": true, "display_name": "robin :->", "active_status": "inactive", "verifications": ["0x70d04384b5c3a466ec4d8cfb8213efc31c6a9d15"], "follower_count": 148474, "custody_address": "0xa19097b0b81529cae9514f914ceb604683c7fa20", "following_count": 1299, "verified_addresses": {"eth_addresses": ["0x70d04384b5c3a466ec4d8cfb8213efc31c6a9d15"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/prince-purple/slow-breeze-1\"}","{\"url\":\"https://open.spotify.com/track/37N37WJQvXqplFdCwkNgX3?si=e45bffb435ac4c11\"}"}', 'djs'), - (1104118, '0x3a3e313bc270b4e8109b67d18ff18c2eeb9d6f39', 0, 1, '2024-05-07 16:27:31+00', 0, 0, '{"fid": 507678, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3defb905-a9d2-4aeb-a7af-66e462642c00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!507678", "power_badge": false, "display_name": "camper", "active_status": "inactive", "verifications": ["0xca037dda138744da53e316be856d3315a0f5f6b1"], "follower_count": 61, "custody_address": "0x7f899d28d9daf4a3edc329f7bbc8a45d1ae4b5ff", "following_count": 315, "verified_addresses": {"eth_addresses": ["0xca037dda138744da53e316be856d3315a0f5f6b1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mo6nQ\"}"}', 'sonata'), - (1149086, '0xbdb6e1f747b3cb9c62d558b54cfdf989f6e399dd', 0, 1, '2024-05-07 20:30:03+00', 0, 0, '{"fid": 311776, "object": "user", "pfp_url": "https://i.imgur.com/CzZID1j.jpg", "profile": {"bio": {"text": "İ''m kind and crezy", "mentioned_profiles": []}}, "username": "emirmrp", "power_badge": false, "display_name": "Emir", "active_status": "inactive", "verifications": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "follower_count": 66, "custody_address": "0xc920d308083b3cb4e8033e58894df2b34af3e0e1", "following_count": 174, "verified_addresses": {"eth_addresses": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/hawkar-tatlises/bebegim\"}"}', NULL), - (1076877, '0xaa73b61217ca0112176c2e415415f77475327c21', 0, 1, '2024-05-07 15:21:57+00', 0, 0, '{"fid": 507380, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d510649c-984d-4ac8-82c2-1a6f09457e00/original", "profile": {"bio": {"text": "Movies and art lover", "mentioned_profiles": []}}, "username": "!507380", "power_badge": false, "display_name": "Anchor", "active_status": "inactive", "verifications": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "follower_count": 93, "custody_address": "0xba4430479cce3480d93e3fd91c9bcfcd37ee5b3c", "following_count": 463, "verified_addresses": {"eth_addresses": ["0xf8b362eff7ba0a898dbc1850fffcae7e68040d76", "0xf36e63d6fa6959a6a0696a77028ecd87ea3ee2de"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bhC4JjBwh1tEi86w8\"}"}', NULL), - (1160589, '0x26dbcfa33a62afa268f9c7bc3f743130d6576891', 0, 1, '2024-05-08 21:10:49+00', 0, 3, '{"fid": 7378, "object": "user", "pfp_url": "https://i.imgur.com/B1PE6c1.jpg", "profile": {"bio": {"text": "marketing scrib3.co ✍️ // prev @pooltogether 🌊🏆", "mentioned_profiles": []}}, "username": "poptones", "power_badge": true, "display_name": "darby", "active_status": "inactive", "verifications": ["0x86aa399a62b6d89f4d6306c82656be29cb2e728a"], "follower_count": 600, "custody_address": "0xf159d7005f8a23ae34d323e7f02955c87d00545e", "following_count": 470, "verified_addresses": {"eth_addresses": ["0x86aa399a62b6d89f4d6306c82656be29cb2e728a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Plx6OhvSukqCRdZ52wUXz?si=RjCud77_TQ2FuqkbzX0BIQ\"}"}', 'soundscapes'), - (1129313, '0xe38a5794411cda39a203b96fed9bc021df77fb0c', 0, 1, '2024-05-07 18:30:03+00', 0, 8, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 4199, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 358, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2qSkIjg1o9h3YT9RAgYN75?si=abedcb69c7fc4bab\"}"}', 'bangers'), - (1104865, '0x365f7e4e8fe03c11569e214ba97372f9306df897', 0, 1, '2024-05-07 16:31:47+00', 0, 8, '{"fid": 414561, "object": "user", "pfp_url": "https://i.imgur.com/hekUR3q.jpg", "profile": {"bio": {"text": "사랑합니다♡맞팔환영해용♡", "mentioned_profiles": []}}, "username": "joo486", "power_badge": false, "display_name": "joo", "active_status": "inactive", "verifications": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "follower_count": 2215, "custody_address": "0x8214b4ba84b91030ad125ccc909afca1f33d3247", "following_count": 2101, "verified_addresses": {"eth_addresses": ["0xed1f20e6db70f8aaee5010cdf435f58bd06768b2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/andreasroffler/maroon-5-sugar?si=6728785766ba4efeaa2f608dbebb0366&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1160323, '0xe4809c5ecaac7031b00f5b78e5d8dc1930d1a17d', 50, 1, '2024-05-08 19:46:00+00', 10, 11, '{"fid": 1657, "object": "user", "pfp_url": "https://i.imgur.com/QiZQqgT.jpg", "profile": {"bio": {"text": "musician architecture storyteller \nlove is the most enduring force in the 🌍 /keepgoing stay heartFULL /with /urltoirl powered by @nlt143\nhappyfriday.coffee", "mentioned_profiles": []}}, "username": "davidtphung", "power_badge": true, "display_name": "David T Phung url🔄irl ENERGY", "active_status": "inactive", "verifications": ["0x1a1c37c145a1eab58c43f003ebb55c18083b5987"], "follower_count": 24193, "custody_address": "0xc8eea0650f3e9d90d426720b82f59883b596c53c", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x1a1c37c145a1eab58c43f003ebb55c18083b5987"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/sangobeats/papers?ref=clipboard&p=i&c=0&si=DE0B7BB67B7F4EC983FD24DFED910F4A&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1097101, '0x1e96c7dfa4b81dc9416eb5bfe6b85c39fb672b11', 0, 1, '2024-05-07 16:04:53+00', 0, 1, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 645, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 758, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/atlanticrecords/loren-allred-never-enough?si=a28ddaeeeb1249f18c9bf1530f5b39bf&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1173467, '0x282cc64f38846010225fcf1f8f1340900117efce', 2000, 1, '2024-05-16 01:21:15+00', 0, 2, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🇯🇵💿", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1159, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1007, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4dnf0MZwTxAopHDQ5iWHVS?si=stzHEgrSQKS-D3y8xIOOEQ\"}"}', NULL), - (1104406, '0x476e3f7fae5c60ef413aaf27ab9c434ce615d8cd', 0, 1, '2024-05-07 16:28:28+00', 0, 6, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 829, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 642, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JT1gieK2cnj1xBnp7\"}"}', 'sonata'), - (1077867, '0x906b1583177048c1251fce8d39971cb722a96972', 0, 1, '2024-05-07 15:24:46+00', 0, 1, '{"fid": 291550, "object": "user", "pfp_url": "https://i.imgur.com/CKWEo2s.jpg", "profile": {"bio": {"text": "F4F 조대리 바로 갑니다!\n$DEGEN ", "mentioned_profiles": []}}, "username": "porsche911", "power_badge": false, "display_name": "porsche911🎩🍖", "active_status": "inactive", "verifications": ["0xae12698b39c5b6ab301b5fb6d4bffc9ae093ceae"], "follower_count": 786, "custody_address": "0x99bc00deddc9a602de92ec4d2be553e294578f0c", "following_count": 1500, "verified_addresses": {"eth_addresses": ["0xae12698b39c5b6ab301b5fb6d4bffc9ae093ceae"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/benhurzz/snooze?si=dc36b7ba49e744aaa2265e829103ee5e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1077971, '0xb464e8cf7e60dd3e67ed323938d9d99e937c3d62', 0, 1, '2024-05-07 15:25:43+00', 0, 1, '{"fid": 422650, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e2f40052-20c1-4e6f-9a6b-127582d8f700/rectcrop3", "profile": {"bio": {"text": "Lucky Pink Coucou 🫶🏻", "mentioned_profiles": []}}, "username": "hicoucou", "power_badge": false, "display_name": "Coucou", "active_status": "inactive", "verifications": ["0xb64d2510e57fa69dfcc9fd45d1c42044127c9284"], "follower_count": 2556, "custody_address": "0x3fb0562f9fbaa5918f94bfef0cef08c685c9a24b", "following_count": 2760, "verified_addresses": {"eth_addresses": ["0xb64d2510e57fa69dfcc9fd45d1c42044127c9284"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/addnG3H5GNmbNVjZ7\"}"}', 'sonata'), - (1072153, '0x4351632f78c847516e4ebdae39094e67f2ca54b1', 0, 1, '2024-05-07 15:17:46+00', 0, 1, '{"fid": 410948, "object": "user", "pfp_url": "https://i.imgur.com/moulzKZ.jpg", "profile": {"bio": {"text": "Always be healthy and happy🥰\n:https://zora.co/manage\n\n", "mentioned_profiles": []}}, "username": "ypuyouyou", "power_badge": false, "display_name": "To The Moon", "active_status": "inactive", "verifications": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "follower_count": 1273, "custody_address": "0x71ce178255135ce793477b4122400c262409d0d3", "following_count": 1281, "verified_addresses": {"eth_addresses": ["0x2885dae94dc45958a3c123e0f2ec9349ede562e0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/livingston-official/lifetime?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1078232, '0x4d0eedc9edad34c70aaa4bda190ec6ca99eabec2', 0, 1, '2024-05-07 15:27:18+00', 0, 6, '{"fid": 379705, "object": "user", "pfp_url": "https://i.imgur.com/LIsfOW0.jpg", "profile": {"bio": {"text": "Thank you ! 감사합니다 !", "mentioned_profiles": []}}, "username": "warrseojun", "power_badge": false, "display_name": "Seo Jun🍀🍎", "active_status": "inactive", "verifications": ["0xb35d01727d3a99bae3e60081dd2bf01acd8f6234"], "follower_count": 1621, "custody_address": "0x41c61814005deafdaea5a62e826965b2a7247139", "following_count": 1955, "verified_addresses": {"eth_addresses": ["0xb35d01727d3a99bae3e60081dd2bf01acd8f6234"], "sol_addresses": []}}', '{"{\"url\":\"소나타 아직 어렵네요ㅠ 노래 찾는거 부터..😰 며칠 더 하다보면 익숙해 지겠죠? https://on.soundcloud.com/hUoySV9rFYaoGZKR7\"}"}', NULL), - (1173675, '0xc82bff37f42be59f3b178e52308befcf58787637', 2610, 1, '2024-05-16 07:01:17+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30881, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4qJzVJ3QzvYq6PrahkUlAI?si=08ad44b737994915\"}"}', NULL), - (1071520, '0x360ffee8366c4f87378b2fceed414f53c605d808', 0, 1, '2024-05-07 15:17:03+00', 0, 4, '{"fid": 428956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/eb75b2be-2961-4ea1-40e3-be7c37761000/original", "profile": {"bio": {"text": "🏔️jeju🌊 photo📷 \n\nYou create your opportunities by asking for them.", "mentioned_profiles": []}}, "username": "ssoyanim", "power_badge": false, "display_name": "jeju🏔️", "active_status": "inactive", "verifications": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x4c61e68ed78381f80c5da81176cc019b019d09c4"], "follower_count": 5005, "custody_address": "0x3ab175b2016f328ff9f9a26b70f8f19f15cda599", "following_count": 2495, "verified_addresses": {"eth_addresses": ["0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x05734c1234b3085bf8ef4f39cce8151d275a9e40", "0x4c61e68ed78381f80c5da81176cc019b019d09c4"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/woohyungwadow/xko89dcokdpm?si=83df595a0f064d539847161fd3902250&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1097109, '0xaab55282c81f7a8a7190a4098d35a392d98b0f25', 0, 1, '2024-05-07 16:05:55+00', 0, 1, '{"fid": 501956, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dfc974c9-092c-4b04-1eee-4d654ffca000/rectcrop3", "profile": {"bio": {"text": "Have a nice day. F4F", "mentioned_profiles": []}}, "username": "snowman7", "power_badge": false, "display_name": "Snow", "active_status": "inactive", "verifications": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "follower_count": 661, "custody_address": "0xa0a8ee605feab4e52ad51887e02672ea0b7cd81c", "following_count": 643, "verified_addresses": {"eth_addresses": ["0x738e59cfe2426c3494c4882e0391a33be69d7cf2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove2/drcoqq1avdbs?si=9d14877594804e0ab689082a689817e5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1130436, '0x19ecd8b7303ecd15f6d7fdda169203b2bf8ba2a2', 0, 1, '2024-05-07 18:35:17+00', 0, 0, '{"fid": 389428, "object": "user", "pfp_url": "https://i.imgur.com/6jAIcXA.jpg", "profile": {"bio": {"text": "Elegant young blonde woman with blow dried hair", "mentioned_profiles": []}}, "username": "foumarie", "power_badge": false, "display_name": "Marie Fou", "active_status": "inactive", "verifications": ["0x35db06ebd58baedb1d50e80b916935c5eb9ebc3c"], "follower_count": 13, "custody_address": "0x6b696e3a9747bf21af1f1839adb9a203e184de62", "following_count": 14, "verified_addresses": {"eth_addresses": ["0x35db06ebd58baedb1d50e80b916935c5eb9ebc3c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/metroboomin/bbl-drizzy-bpm-150-mp3\"}"}', NULL), - (1139936, '0x868ca6cd42f8c48b753266916fa423095e56e40a', 0, 1, '2024-05-07 19:49:12+00', 0, 2, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 280, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/beats-by-abunai-02?referral_source=link\"}"}', 'soundxyz'), - (1077972, '0x9f8aad5c4f0b4e884725244a0625dcbf81c20c00', 10, 1, '2024-05-07 15:25:11+00', 0, 3, '{"fid": 427905, "object": "user", "pfp_url": "https://i.imgur.com/TmoRwAS.jpg", "profile": {"bio": {"text": "頑張って億り人目指したいと思ってます✅\nフォロバします!!\n北の大地\nI’m Japanese! F4F! I am enjoying this app! Please follow me😉\n\nLove & peace ❤️\n\n", "mentioned_profiles": []}}, "username": "samuray07", "power_badge": false, "display_name": "Rei 🎩 🍖 🔥 🍕 🔄", "active_status": "inactive", "verifications": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "follower_count": 925, "custody_address": "0x83f4e93f6ba7bb4464da371b51b5ff63dab30f4f", "following_count": 1047, "verified_addresses": {"eth_addresses": ["0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kygo/ed-sheeran-i-see-fire-kygo?si=b1311977c5084b0f9707a8db6811937c&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1173744, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614', 15350, 1, '2024-05-16 10:11:37+00', 100, 1, '{"fid": 318473, "object": "user", "pfp_url": "https://i.imgur.com/IqDY0fX.jpg", "profile": {"bio": {"text": "musician + designer 🌟 ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ host /creator | follow → x.com/pasteleth", "mentioned_profiles": []}}, "username": "leopastel", "power_badge": true, "display_name": "pastel ← leo ꓽꓽ)", "active_status": "inactive", "verifications": ["0xc6729c943584fe18345b5551599a8fa3e14d432a"], "follower_count": 1065, "custody_address": "0xcbd722e3f9f32df3b8fad1aa23568d8af12a941c", "following_count": 507, "verified_addresses": {"eth_addresses": ["0xc6729c943584fe18345b5551599a8fa3e14d432a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0zTQgz6eXA2vxrj8Z9TXNx?si=GjEn5r2fSo2PGO6av2q4dA\"}"}', 'soundscapes'), - (1078266, '0x3a14974de5da083377344c7becd9a9078bd7301f', 0, 1, '2024-05-07 15:27:04+00', 0, 5, '{"fid": 289659, "object": "user", "pfp_url": "https://i.imgur.com/9GD5dX1.jpg", "profile": {"bio": {"text": "Zora → https://zora.co/@yojizzang // Alfafrens → https://www.alfafrens.com/channel/0xd37c250cd60ca1aed0178515afd5b49b1188d97c", "mentioned_profiles": []}}, "username": "yojizzang", "power_badge": false, "display_name": "yojizzang🍀", "active_status": "inactive", "verifications": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "follower_count": 3161, "custody_address": "0x0466acd0e5f6c6c644f99b9cb4a841dec03d4d8d", "following_count": 2732, "verified_addresses": {"eth_addresses": ["0x173b0d66547e2e8ff03e4c92ac1b9af755488490"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/withariey/park-ji-yoon-steal-away-1998?si=94036aa6948e4b5da1026b0caa0edf47&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1160131, '0xb3ffe299dd4361463fe5cbf110912d3bc81b437a', 0, 1, '2024-05-08 12:27:59+00', 0, 0, '{"fid": 6546, "object": "user", "pfp_url": "https://i.imgur.com/L7pqNbi.gif", "profile": {"bio": {"text": "Unforgettable Hair /bcbhshow, Unforgettable @farchiver 🌌.\n\nPFP: warpcast.com/goose/0x9da7eca8 glitch''d by @0mbre\n\nfcan.xyz | farchiver.xyz d33m:liv", "mentioned_profiles": []}}, "username": "artlu", "power_badge": true, "display_name": "🎩.artlu.eth👃- 呂Kunst", "active_status": "inactive", "verifications": ["0x094f1608960a3cb06346cfd55b10b3cec4f72c78"], "follower_count": 25090, "custody_address": "0x21ca9f0f7c0b59f616b1d96325d55b62c9661d6d", "following_count": 2184, "verified_addresses": {"eth_addresses": ["0x094f1608960a3cb06346cfd55b10b3cec4f72c78"], "sol_addresses": ["HgKZky6hf1fiRPuM6tAc2yn9pKvnEeiMmfRGJGWQBTJh"]}}', '{"{\"url\":\"https://open.spotify.com/track/1oxvtwWnWy6JEY6OiI0MMe\"}"}', NULL), - (1079558, '0xf86f89bff4b8ee23e8aab487db4cb1b8cea1bf67', 0, 1, '2024-05-07 15:29:59+00', 0, 3, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/vBduBqBerhZuRYSq9\"}"}', 'musicjp'), - (1129628, '0x58b50da58640e95a2c24cee0f31466463abed905', 0, 1, '2024-05-07 18:32:45+00', 0, 3, '{"fid": 516836, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/18bfb62c-b678-48ea-0775-269a02b90700/rectcrop3", "profile": {"bio": {"text": "finding a way to enjoy life", "mentioned_profiles": []}}, "username": "!516836", "power_badge": false, "display_name": "ikon", "active_status": "inactive", "verifications": ["0x66408e1db673e79d1b9a4f9f82f039a62bc961c0"], "follower_count": 12, "custody_address": "0x20b776295efcac7d9f6347ca875ea03473455c60", "following_count": 48, "verified_addresses": {"eth_addresses": ["0x66408e1db673e79d1b9a4f9f82f039a62bc961c0"], "sol_addresses": ["HpXvBD9GYLJYvWKaDoiGf682pvQqtdA8UJdKcZq4WBQ1"]}}', '{"{\"url\":\"https://on.soundcloud.com/8hQMdu3hgKnE8yLQ6\"}"}', 'sonata'), - (1097554, '0x20e65dcd57f0bdad54a9e43a04d24f3225797e5d', 1010, 1, '2024-05-07 16:07:41+00', 0, 1, '{"fid": 196086, "object": "user", "pfp_url": "https://i.imgur.com/la32ogk.jpg", "profile": {"bio": {"text": "duck it", "mentioned_profiles": []}}, "username": "ngocnam89", "power_badge": false, "display_name": "imback🎩", "active_status": "inactive", "verifications": ["0xc1490ace8c1805f98b309971dad72503167a6fa9"], "follower_count": 315, "custody_address": "0xc1490ace8c1805f98b309971dad72503167a6fa9", "following_count": 690, "verified_addresses": {"eth_addresses": ["0xc1490ace8c1805f98b309971dad72503167a6fa9"], "sol_addresses": ["J428iMVczpCPpJ7Nm3HmVArLU1a8nPC46hLcHWdSNSiL"]}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/life-is-good-with-jagwar-twin\"}"}', NULL), - (1173745, '0xed3c770655d5066a019c54f89f5c63e921403772', 2100, 1, '2024-05-16 10:17:04+00', 0, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 4278, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 500, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ec73dcce-0d64-4c3e-e5d8-13fab317e400/original\"}","{\"url\":\"https://open.spotify.com/track/46K29sjD9dfGSBKqRTPIsG?si=9tTmeZ_YQL23qi1MXEcNNw\"}"}', 'sonata'), - (1158910, '0x99600b2db304ab00944a97b749c0d3cebb3220e9', 0, 1, '2024-05-07 21:14:04+00', 0, 2, '{"fid": 18325, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/816c8cab-759c-4f89-e652-9c983a5a6100/rectcrop3", "profile": {"bio": {"text": "Based in DC. ⛓️ @DANC3 \nfind me enjoying https://zora.co/@crittiep", "mentioned_profiles": []}}, "username": "crittiep", "power_badge": true, "display_name": "↑ ↑ Crittie p ↑ ↑", "active_status": "inactive", "verifications": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "follower_count": 352, "custody_address": "0x34a56e7cf6de51416ab2f84bc6c48fcee32c18a3", "following_count": 474, "verified_addresses": {"eth_addresses": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "sol_addresses": ["5DCTxf6kHtgrFwT4f2FPsCAbECaxn84ZVjKAx9DW7aY2"]}}', '{"{\"url\":\"https://soundcloud.com/theweeknd/drunk-in-love-the-weeknd-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1158903, '0x423f15e9067942c21b0342bd3d5ce39be5dede4e', 0, 1, '2024-05-07 21:14:14+00', 0, 0, '{"fid": 503217, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1114efb1-97ff-486a-3a11-71ed1e977d00/rectcrop3", "profile": {"bio": {"text": "Looking for sth for fun", "mentioned_profiles": []}}, "username": "bonds", "power_badge": false, "display_name": "James", "active_status": "inactive", "verifications": ["0x779cffde622a66dd704a9801111e28303b506eb4"], "follower_count": 162, "custody_address": "0x40e291fd86644b05782fe293e362a901d1704197", "following_count": 393, "verified_addresses": {"eth_addresses": ["0x779cffde622a66dd704a9801111e28303b506eb4"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/EGRQD\"}"}', 'sonata'), - (1080874, '0x0d2a14c625f0790f62bbfaeaa62900ef3dc42b88', 0, 1, '2024-05-07 15:32:14+00', 0, 5, '{"fid": 426685, "object": "user", "pfp_url": "https://i.imgur.com/FNRt90M.jpg", "profile": {"bio": {"text": "I''m baechu🥬🥬\n", "mentioned_profiles": []}}, "username": "cutyyyyyyy", "power_badge": false, "display_name": "Baechu", "active_status": "inactive", "verifications": ["0xe9a6cbd76db187757920854204dfed326cfb6d9d"], "follower_count": 3132, "custody_address": "0xd171efd2cf5db8705aef39aa1ea014491b95cc6e", "following_count": 3091, "verified_addresses": {"eth_addresses": ["0xe9a6cbd76db187757920854204dfed326cfb6d9d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7EbZgNN9wJZvSTUs6\"}"}', 'sonata'), - (1104889, '0xc31fd86fdbb074d5dd6f3ed7d8114c1042df06d5', 0, 1, '2024-05-07 16:32:18+00', 0, 2, '{"fid": 15716, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aa02241c-2461-4bf2-0f5e-8be636c8d000/rectcrop3", "profile": {"bio": {"text": "Brooklynite by day. Daydreamer by night.", "mentioned_profiles": []}}, "username": "ethtotheweth", "power_badge": false, "display_name": "Eric", "active_status": "inactive", "verifications": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "follower_count": 87, "custody_address": "0xe8e5fc4ea45762caf257a7a6aab07de3df9bf30d", "following_count": 224, "verified_addresses": {"eth_addresses": ["0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/t7kfeqNkYYXvv4Br5\"}"}', NULL), - (1107662, '0x26fa407b3dae727a7f5e47b06fc1ca84cfa7351c', 10, 1, '2024-05-07 16:45:02+00', 0, 5, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1479, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1726, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wgKC9egxaUpx8Akp8\"}"}', 'sonata'), - (1097557, '0x5700669ccfc42a2ea62a9804bb995ba210fa4f93', 0, 1, '2024-05-07 16:08:08+00', 0, 2, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 645, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 758, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/atlanticrecords/hugh-jackman-keala-settle-zac-efron-zendaya-the-greatest-showman-ensemble-the-greatest-show?si=3cf42fc652a749b786497c7e4a2cf9d3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1129309, '0x78dba6c0022f37543b5da02808ff0c901990cc7e', 0, 1, '2024-05-07 18:29:39+00', 0, 3, '{"fid": 403323, "object": "user", "pfp_url": "https://i.imgur.com/ZemtZfN.gif", "profile": {"bio": {"text": "AI art creator as morphinggato. \nI sometimes make small items with Japanese lacquer. \nX acount: @mofukana25 ", "mentioned_profiles": []}}, "username": "morphkana", "power_badge": false, "display_name": "morph🎩🍖", "active_status": "inactive", "verifications": ["0x56c2cb50753a884ca449f59ec17958421cb6263d", "0x535ecfaced22f9e47a0bd80ddc28c46c061e3295"], "follower_count": 545, "custody_address": "0x7d810988faa9036d84ef1d91dacf19401aea2e4d", "following_count": 463, "verified_addresses": {"eth_addresses": ["0x56c2cb50753a884ca449f59ec17958421cb6263d", "0x535ecfaced22f9e47a0bd80ddc28c46c061e3295"], "sol_addresses": ["F8JDcQzJ3j69PeN2NyEFbRe6JyhboGEZzxdjsCjXYPfo"]}}', '{"{\"url\":\"https://open.spotify.com/track/3YRCqOhFifThpSRFJ1VWFM?si=lusk7AEeQBS2EungYcpCiw\"}"}', 'bgm'), - (1078868, '0x5b54c275d4042d5fb7a50c3ef50c8dd16a66680b', 0, 1, '2024-05-07 15:28:08+00', 0, 2, '{"fid": 419625, "object": "user", "pfp_url": "https://i.imgur.com/n9aCS5F.jpg", "profile": {"bio": {"text": "팔로우 환영 \nhttps://zora.co/0xCeFF6Dc174c6E77ED2402eBb873d2CafE930Db00", "mentioned_profiles": []}}, "username": "ky1024", "power_badge": false, "display_name": "ky1024 🎩🍖", "active_status": "inactive", "verifications": ["0xceff6dc174c6e77ed2402ebb873d2cafe930db00"], "follower_count": 1599, "custody_address": "0x1e8eb528385373c4aea1292db081b8e615f542c5", "following_count": 1518, "verified_addresses": {"eth_addresses": ["0xceff6dc174c6e77ed2402ebb873d2cafe930db00"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/johannajy/sondia-tina-cover?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160266, '0xe6e12c210a609fb700738839dbb87daa1a68a5c3', 13110, 1, '2024-05-08 17:42:51+00', 20, 8, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9404, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/90f187f2-0a21-4cab-81b9-8475cf43f4c7\"}","{\"url\":\"https://www.sound.xyz/playerdave/circling\"}"}', NULL), - (1081253, '0xaab4d6255d89721daca84d11ef01033020628d75', 0, 1, '2024-05-07 15:34:16+00', 0, 2, '{"fid": 385616, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/077a794c-7a8e-4709-2ed8-e6bd34183c00/rectcrop3", "profile": {"bio": {"text": "趣味は最近始めたAI画像生成 🤖*\n甘いものとコーヒーがすきななまけもの🦥💜\n\nMy hobby is AI image generation, which I recently started *\nA lazy person who likes sweets and coffee.", "mentioned_profiles": []}}, "username": "maccha8", "power_badge": false, "display_name": "maccha🍕🔵🎩👻🚩", "active_status": "inactive", "verifications": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "follower_count": 251, "custody_address": "0x2dbbac555d9ac7c9a5fcdd0899a97ef18b975b15", "following_count": 463, "verified_addresses": {"eth_addresses": ["0x787383b8fe1f83480a48b76ed70b67cf888b9cb9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uX5onQH6iPfpXLjG6\"}"}', 'musicjp'), - (1097564, '0x1099d303e0352e09104572435e616fe29a9810b1', 0, 1, '2024-05-07 16:06:36+00', 0, 4, '{"fid": 391839, "object": "user", "pfp_url": "https://i.imgur.com/jtSGCZm.jpg", "profile": {"bio": {"text": "@일상소통/투자소통\n@한분한분소중하게 찾아가용!\n@공부하는 오랑이🤗\n\n@조급하지도 걱정도 하자마라.\n@Don''t be impatient and worry.", "mentioned_profiles": []}}, "username": "parkgunwoo", "power_badge": false, "display_name": "오랑이🎩🍖🔵", "active_status": "inactive", "verifications": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "follower_count": 2961, "custody_address": "0x955e52b86ace17f4bcca570234ca7b09d06344c2", "following_count": 2975, "verified_addresses": {"eth_addresses": ["0x794e3af8c4365ca85fb74ba4e94115ef4eda1133"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ieazy/tove-stryke-mood-swings-slowed?si=ba25a642970c44dface858dc53cbfca9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1087637, '0x31c5819be18e709f6e65a41c2d48d8a3be8d625d', 0, 1, '2024-05-07 15:45:46+00', 0, 0, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 221, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 975, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/two-angelz?referral_source=link\"}"}', 'coopdville'), - (1160267, '0x83b1b3fefeda5a67d1dafafbdb232e9c3d4193ca', 2170, 1, '2024-05-08 17:38:46+00', 3, 125, '{"fid": 457, "object": "user", "pfp_url": "https://i.imgur.com/IVEt27b.jpg", "profile": {"bio": {"text": "code @ spindl.xyz. Interested in technology, history, and music // farcaster.network", "mentioned_profiles": []}}, "username": "zachterrell", "power_badge": true, "display_name": "Zach", "active_status": "inactive", "verifications": ["0x5a492d1e15f2ae4b418e424ba9a1d112d6e9706a"], "follower_count": 231698, "custody_address": "0xbce5a0d16dc2031dc53da79c34ddb366e76dc482", "following_count": 461, "verified_addresses": {"eth_addresses": ["0x5a492d1e15f2ae4b418e424ba9a1d112d6e9706a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/09fa61VXzIlN1e1cxsGsVX?si=238310859a2c416f\"}"}', NULL), - (1160259, '0x7cd978127295ccab7ae72612af21b4c93aeff95b', 0, 1, '2024-05-08 17:29:07+00', 0, 10, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm\"}"}', 'sonata'), - (1163558, '0xfdee7df5b54aab36eb8a4073332c74c023fb7414', 0, 1, '2024-05-09 13:51:46+00', 0, 11, '{"fid": 133, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup ", "mentioned_profiles": []}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 25008, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 748, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Koi0fu5VDPxmwAzffy4iD?si=d4d650278bbb4140\"}"}', 'rap'), - (1160248, '0x4f24aea24948870dd276f24e5ab3e3ee9be3bf48', 0, 1, '2024-05-08 16:35:21+00', 0, 20, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 29714, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2RABiORxekaDV23sfNTjid?si=5TUUwnZ0ROWCG69eNlaCWw\"}"}', NULL), - (1083424, '0x398f430faba69422a21c9d5072c47cd1bee52a32', 0, 1, '2024-05-07 15:37:08+00', 0, 1, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KDdmczzspaySrg7GA\"}"}', 'musicjp'), - (1110232, '0x7e11cae8bfacb532c5536ffc0308476d1ba05ea4', 0, 1, '2024-05-07 16:54:30+00', 0, 1, '{"fid": 501070, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/783d321c-bf98-40df-8588-98da71a16c00/rectcrop3", "profile": {"bio": {"text": "픽슨입니다. 댓글필수 X. 캐스트 위주로 운영해서 맞방은 못갈거 같으니 ㅠㅠ 그냥 가볍게만 봐주세요 ^^ 죄송하고 감사합니다.", "mentioned_profiles": []}}, "username": "fixons", "power_badge": false, "display_name": "픽슨s 🍖", "active_status": "inactive", "verifications": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "follower_count": 1747, "custody_address": "0x10c6f3c1240c3e3d4616a82a6548268f8e687106", "following_count": 1599, "verified_addresses": {"eth_addresses": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-193552531/chevy-w-park-bird-if-i-could-ride-a-bike?si=a041b2fb2edf42a2b1f05f5b0a2239d2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1104893, '0xc182d6db9d8a4543c1adfbcd687566394fc3b28e', 0, 1, '2024-05-07 16:32:17+00', 0, 2, '{"fid": 503318, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/550aa6f8-e81c-48f7-b4f1-ae96cfc39c00/rectcrop3", "profile": {"bio": {"text": "Dog. Cat. Love animals", "mentioned_profiles": []}}, "username": "purun2291", "power_badge": false, "display_name": "Odipie🎩🍖🐱", "active_status": "inactive", "verifications": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "follower_count": 822, "custody_address": "0x4f899edc6d308cf2d6262e7317822d3027c6168e", "following_count": 750, "verified_addresses": {"eth_addresses": ["0x4478094f6f5971070346c2a47d27075f44234a46"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/x9Kso\"}"}', 'sonata'), - (1173674, '0x818c38831cd1d3257d377bcc600a00a36f92bda6', 2000, 1, '2024-05-16 06:44:32+00', 10, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30881, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6ul9aRluTKN8OIPgUF8qZS?si=2fdd961ee7354765\"}"}', NULL), - (1100537, '0x5fc16115c2057225102f72ede17848534b80d233', 0, 1, '2024-05-07 16:15:08+00', 0, 1, '{"fid": 345541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a8cfdc-97da-46fb-5971-72104c24e300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨\nViva Tax🔥🔥\n\n裏金(🎩)に繋がるムーブを各チャンネルで行っています。全ては国民の皆様の為!\n\n/ogiri /gurumenavijp /littlehappyjp \n\n\n ", "mentioned_profiles": []}}, "username": "kasoutarou", "power_badge": false, "display_name": "Kasoutaro_👻 🎩⌐◨-◨", "active_status": "inactive", "verifications": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "follower_count": 969, "custody_address": "0xf46e4c92d3c8b02fbaf681a529b682432d2e1b74", "following_count": 1297, "verified_addresses": {"eth_addresses": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5W8YXBz9MTIDyrpYaCg2Ky?si=61-RBfIFQNO6VZusOPro-g&context=spotify%3Aplaylist%3A37i9dQZF1EIWWw7AS5OscY\"}"}', NULL), - (1082025, '0xbf8e3f1aa77cb0d366baa229a23e7de8298ce28a', 1352, 1, '2024-05-07 15:36:09+00', 130, 224, '{"fid": 452078, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5152fb61-f9bd-4797-08a2-99c051b75e00/rectcrop3", "profile": {"bio": {"text": "Welcome my channel", "mentioned_profiles": []}}, "username": "kimtee", "power_badge": false, "display_name": "MARI", "active_status": "inactive", "verifications": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "follower_count": 1584, "custody_address": "0xa20fcef0270870176bafbecaa4b6eb287649a1a2", "following_count": 962, "verified_addresses": {"eth_addresses": ["0xe3f3764804a31cfed31557878f47dd20c9c6e4fc"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zjzXy3xkrfCryTNPA\"}"}', 'sonata'), - (1083400, '0x6888daed5e307eda13b328f6c63416c0bc574163', 0, 1, '2024-05-07 15:38:08+00', 0, 4, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2560, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2544, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ooyPc\"}"}', 'sonata'), - (1166056, '0xde9d63b1b6dc8a711e41cfaac3b83e9cb2d5897b', 2000, 1, '2024-05-11 23:05:42+00', 0, 0, '{"fid": 3441, "object": "user", "pfp_url": "https://i.imgur.com/jJYwi8P.jpg", "profile": {"bio": {"text": "cofounding @catalog // /catalog", "mentioned_profiles": []}}, "username": "jzs", "power_badge": true, "display_name": "jeremy", "active_status": "inactive", "verifications": ["0xeb54d707252ee9e26e6a4073680bf71154ce7ab5"], "follower_count": 653, "custody_address": "0x9475dacd5d84952bdc55442be276d2e832e4bdd4", "following_count": 314, "verified_addresses": {"eth_addresses": ["0xeb54d707252ee9e26e6a4073680bf71154ce7ab5"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lake-hills/lake-hills-latenightwalk\"}"}', 'soundscapes'), - (1160257, '0x1bd67d3a6552b678812d9c1b7ddaf097d74563c6', 11000, 1, '2024-05-08 17:12:21+00', 100, 1, '{"fid": 1069, "object": "user", "pfp_url": "https://i.imgur.com/s3XjT5J.jpg", "profile": {"bio": {"text": "Co-Founder @frenshouse / Orange Cube Art 💛🏠 work @ Art Blocks / ThankYouX 🫡 I Love music, sports, tech, art, marketing, coffee maxi", "mentioned_profiles": []}}, "username": "2ripsgawd", "power_badge": true, "display_name": "2Rips 🎩 ↑", "active_status": "inactive", "verifications": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "follower_count": 552, "custody_address": "0x84a2cdf0a978b16dc4d7e5005b87fa594f3fd5e6", "following_count": 251, "verified_addresses": {"eth_addresses": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "sol_addresses": []}}', '{"{\"url\":\"https://music.apple.com/us/album/fisherrr-remix/1743293790?i=1743293791\"}","{\"url\":\"https://open.spotify.com/track/1rrV4ymf3Tp3xuLgB4zCRN?si=rwdv_O7IQdOkBSepf9VmiA\"}"}', 'music-caster'), - (1171302, '0xae69a2fd16478ab7bdba37bfbd7a0a0bc3162050', 170, 1, '2024-05-14 15:58:17+00', 3, 0, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 543, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 139, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3x9BHDNsyg50xSEzmLMyUd?si=3c1f97c5e76c43bb\"}"}', NULL), - (1173751, '0x5aa1ec739ec4398e7e8862cefcbb560710fca12c', 0, 1, '2024-05-16 11:23:21+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30880, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4kocYmR9mLFdbFOjRwbIEn?si=4jMy8zHOSj-XDQ4s1_U30g\"}"}', NULL), - (1166119, '0xb88d725199c74571fd9902b5dd742ef61c895145', 1170, 1, '2024-05-12 03:37:16+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1885, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 973, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/mimosax\"}"}', 'soundxyz'), - (1160156, '0x1739f75fef18d01ce40210201a93f92fec209739', 0, 1, '2024-05-08 14:24:46+00', 0, 5, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you\"}"}', NULL), - (1082055, '0x5759dfad5c237ba9c71982222226b9f3df8a7142', 0, 1, '2024-05-07 15:35:02+00', 0, 0, '{"fid": 503265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2a940007-6f47-415a-6b66-ae7fea991200/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "kauri-tree", "power_badge": false, "display_name": "Aurora 🎩🍖", "active_status": "inactive", "verifications": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "follower_count": 822, "custody_address": "0xd4b5e5a42b1dfc8c30c44926c72abeeef0c84f9a", "following_count": 642, "verified_addresses": {"eth_addresses": ["0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-761994940/sets/uxcr2bstdqmg?si=173753b54f034586ba491305b240bcd3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1104895, '0xa1b30ce86e549862b17a8a7518670551b0a9d827', 0, 1, '2024-05-07 16:31:47+00', 0, 6, '{"fid": 505013, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2e86efb-37df-47aa-731a-f8625bff3c00/rectcrop3", "profile": {"bio": {"text": "I like degen 워캐 2회차", "mentioned_profiles": []}}, "username": "windtalkers", "power_badge": false, "display_name": "Windtalkers", "active_status": "inactive", "verifications": ["0x46e6f27fe7fe5bec6cbfaec747d499935c06a9b3"], "follower_count": 801, "custody_address": "0x15dd88b3930042ecfa87f7e3dbb39859d3fc1412", "following_count": 1057, "verified_addresses": {"eth_addresses": ["0x46e6f27fe7fe5bec6cbfaec747d499935c06a9b3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TULTH\"}"}', 'sonata'), - (1080869, '0x35348f8c222e3d1af5e4e8ce5ca0134fd07894ab', 0, 1, '2024-05-07 15:32:40+00', 0, 2, '{"fid": 354756, "object": "user", "pfp_url": "https://i.imgur.com/bqU6K7N.jpg", "profile": {"bio": {"text": "OGTOCDNFT Holder/I''m a mother raising a yearling.", "mentioned_profiles": []}}, "username": "sayorix", "power_badge": false, "display_name": "マコ🎩🍖🔮🔥", "active_status": "inactive", "verifications": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "follower_count": 1031, "custody_address": "0x6ef8ec77fd1ffc08a465993abc083e1799b18cd2", "following_count": 1210, "verified_addresses": {"eth_addresses": ["0x22532f0b269ccf35df11fcad29b332e6316554b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gQCFEECmpYHAyb3C9\"}"}', 'musicjp'), - (1110396, '0xd3a46499bcfad95866a17762bfd45727eff5604d', 0, 1, '2024-05-07 16:55:13+00', 0, 8, '{"fid": 417275, "object": "user", "pfp_url": "https://i.imgur.com/S7A5ePA.jpg", "profile": {"bio": {"text": "Every struggle in your life has shaped you into the person . You are today . Be thankful for the hard times , they have made you STRONGER", "mentioned_profiles": []}}, "username": "parytaky", "power_badge": false, "display_name": "Parisa.✈️", "active_status": "inactive", "verifications": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "follower_count": 599, "custody_address": "0x7ce17fd885235346e55fedf7d819095f1240819e", "following_count": 513, "verified_addresses": {"eth_addresses": ["0x7ce17fd885235346e55fedf7d819095f1240819e"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Ozuna - Dile Que Tu Me Quieres by Ozuna on #SoundCloud https://on.soundcloud.com/i7a2m\"}"}', NULL), - (1173752, '0xafd3d12a40c4aafbed49b6f13e48b61eb1aee7aa', 2000, 1, '2024-05-16 11:27:53+00', 0, 0, '{"fid": 11550, "object": "user", "pfp_url": "https://i.imgur.com/U4OqmfE.png", "profile": {"bio": {"text": "Fostering Community at @pooltogether", "mentioned_profiles": []}}, "username": "tjark", "power_badge": true, "display_name": "tjark", "active_status": "inactive", "verifications": ["0x9f36a6bb398118bdcd5b1bc3343d8feb6d7d02b9"], "follower_count": 826, "custody_address": "0xf436b20c8840f16c87027439343e60b7511f4d3a", "following_count": 501, "verified_addresses": {"eth_addresses": ["0x9f36a6bb398118bdcd5b1bc3343d8feb6d7d02b9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/dShkS\"}"}', NULL), - (1115353, '0xa96b8a582956a5a2ec90caf26078826990ee7e66', 0, 1, '2024-05-07 17:24:16+00', 0, 1, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 38, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 131, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/depression-anxiety-paint-suffering-trauma-internationally?referral_source=link\"}"}', 'nftnow'), - (1160268, '0xd3f9b54f4e092bf05f9527798d8f8aae5140cf93', 1000, 1, '2024-05-08 17:36:12+00', 100, 31, '{"fid": 39, "object": "user", "pfp_url": "https://i.imgur.com/Q4TWkMU.jpg", "profile": {"bio": {"text": "Design and software at Apple. Also into AI, philosophy of mind, ethics.", "mentioned_profiles": []}}, "username": "sam", "power_badge": true, "display_name": "Sam Iglesias", "active_status": "inactive", "verifications": ["0x632e7e4716394db3da527f4f0d979e3d60e5f9a7"], "follower_count": 27216, "custody_address": "0xaa17acffbbf0fcfc5a2af4b8ff300ca480a90113", "following_count": 200, "verified_addresses": {"eth_addresses": ["0x632e7e4716394db3da527f4f0d979e3d60e5f9a7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4p0LgrBK4LZdQzdiufjuqr?si=fL3wrjTjTE6m-Rdz1fjQYA&context=spotify%3Asearch%3Abrahms%2Bwaltz\"}"}', NULL), - (1098698, '0x8b7d5912cbf32ee4d04da2a93b21d6fb05cad759', 0, 1, '2024-05-07 16:10:59+00', 0, 0, '{"fid": 379759, "object": "user", "pfp_url": "https://i.imgur.com/Uw16XKC.jpg", "profile": {"bio": {"text": "프로현생러/생존운동러/행복채굴러/소액대박소망좌 가즈아🔥🔥", "mentioned_profiles": []}}, "username": "abcleeth", "power_badge": false, "display_name": "Hong🎩🍖", "active_status": "inactive", "verifications": ["0x1238d4dc3521dae1967bbf42337db51f0e7e58a0"], "follower_count": 1157, "custody_address": "0x194f52e5cb8383d1e835178ca373c11ce1f64372", "following_count": 2602, "verified_addresses": {"eth_addresses": ["0x1238d4dc3521dae1967bbf42337db51f0e7e58a0"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 밤이 깊었네 Oh! What A Shiny Night (2001) by UtopianMicrocosm on #SoundCloud https://on.soundcloud.com/npmko\"}"}', NULL), - (1012337, '0x823b19893afdc72856d2ba466e13bfce9ab0a7d9', 0, 1, '2024-05-07 12:29:05+00', 0, 2, '{"fid": 235257, "object": "user", "pfp_url": "https://i.imgur.com/BtaR5ir.jpg", "profile": {"bio": {"text": "lead myself to silence\nanatu.xyz", "mentioned_profiles": []}}, "username": "anatu", "power_badge": false, "display_name": "anatu", "active_status": "inactive", "verifications": ["0x2423e325bf785096516d88355a5e3854f9d59d1a"], "follower_count": 48, "custody_address": "0x4a6ceca6bb58cc759e819d8d46bc33b005da37a5", "following_count": 44, "verified_addresses": {"eth_addresses": ["0x2423e325bf785096516d88355a5e3854f9d59d1a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/anatu/escape\"}"}', NULL), - (1160316, '0x9604d2c441f30317b05d70fca9f8bbeaeca01f6c', 120, 1, '2024-05-08 20:21:07+00', 5, 10, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 692, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 343, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/fagot-party/may-mclaren-fa-got-party-101222-club-dorado?si=b31a8eacee1b4f34b5497c56722f62f2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1085526, '0x1eb1cfa93df357b1a0026cdcca6a247f5eaba2fb', 0, 1, '2024-05-07 15:41:53+00', 0, 0, '{"fid": 446972, "object": "user", "pfp_url": "https://i.imgur.com/PReb6Qm.jpg", "profile": {"bio": {"text": "Use the weekends to build the life you''ve always wanted.", "mentioned_profiles": []}}, "username": "hsyn", "power_badge": false, "display_name": "Hsyn", "active_status": "inactive", "verifications": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "follower_count": 365, "custody_address": "0xf1ee30b6c5e599b198d04a7faec24fe2c7d22cb0", "following_count": 487, "verified_addresses": {"eth_addresses": ["0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/TDmedEcGB5eYYiRT7\"}"}', NULL), - (1160121, '0xcae03374c939ba2ec3f6ed3512ba89bd18ff1e45', 0, 1, '2024-05-08 12:41:21+00', 0, 3, '{"fid": 196648, "object": "user", "pfp_url": "https://i.imgur.com/abAc1QU.gif", "profile": {"bio": {"text": "@talusnetwork", "mentioned_profiles": []}}, "username": "nonomnouns", "power_badge": true, "display_name": "Nonom⚫", "active_status": "inactive", "verifications": ["0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b"], "follower_count": 1242, "custody_address": "0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b", "following_count": 437, "verified_addresses": {"eth_addresses": ["0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3daf4CNGod9r7I0ING5fn9?si=tSnFglIxSIOZHKbjLF627w\"}"}', 'sonata'), - (1173753, '0x97c2afc891a0685e92a63335e627f35602803cb0', 0, 1, '2024-05-16 12:01:23+00', 0, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 892, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 879, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6NlmRmhfmccg4mmmPP0Vyd?si=hxWnT5S8TamFj9lY08XQ1g\"}"}', 'jazz'), - (1129198, '0x5987573e208f0bc415d0f911640494cd5e324b66', 1000, 1, '2024-05-07 18:28:31+00', 10, 2, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 82, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 254, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7KXjTSCq5nL1LoYtL7XAwS?si=8BdRUGqyRsazFU2zu35IoA\"}"}', NULL), - (1130431, '0x1e2e85f57151106832c9e7f875bf03b709796523', 0, 1, '2024-05-07 18:34:09+00', 0, 0, '{"fid": 389428, "object": "user", "pfp_url": "https://i.imgur.com/6jAIcXA.jpg", "profile": {"bio": {"text": "Elegant young blonde woman with blow dried hair", "mentioned_profiles": []}}, "username": "foumarie", "power_badge": false, "display_name": "Marie Fou", "active_status": "inactive", "verifications": ["0x35db06ebd58baedb1d50e80b916935c5eb9ebc3c"], "follower_count": 13, "custody_address": "0x6b696e3a9747bf21af1f1839adb9a203e184de62", "following_count": 14, "verified_addresses": {"eth_addresses": ["0x35db06ebd58baedb1d50e80b916935c5eb9ebc3c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kendrick-lamar-music/euphoria\"}"}', NULL), - (1160593, '0xf1be0031c9fa4f76f30640064c2f1632e2ced3d3', 0, 1, '2024-05-08 21:09:08+00', 0, 4, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 2062, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 428, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3c7eSkASmAUvihrZRcBpdL?si=e457a79e78bd47f7\"}"}', NULL), - (1083389, '0xe7f9bd485117b25a9e370469434126dc4c3083c8', 0, 1, '2024-05-07 15:36:49+00', 0, 3, '{"fid": 421585, "object": "user", "pfp_url": "https://i.imgur.com/5LpF8d5.jpg", "profile": {"bio": {"text": "nothing but crypto", "mentioned_profiles": []}}, "username": "th1rt3n", "power_badge": false, "display_name": "dmitry", "active_status": "inactive", "verifications": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "follower_count": 607, "custody_address": "0x1762f00e1642ca50e913595285610358ca4c1903", "following_count": 460, "verified_addresses": {"eth_addresses": ["0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d"], "sol_addresses": ["FNLiqWzr8DXDyUYUbxUX4oefZ7ZQ4HzpiCp9j6JB5h2H"]}}', '{"{\"url\":\"https://soundcloud.com/lilyeat/heavy-stunts-feat-don-toliver?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1083401, '0x57ed6daafdd141564815b3548dac13314ac1188b', 0, 1, '2024-05-07 15:38:34+00', 0, 4, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2690, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2984, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3firmHJokiVjRfet7\"}"}', 'sonata'), - (1085513, '0xac69ea74059278ff80f1fb4de76f54039d6ccb91', 0, 1, '2024-05-07 15:40:16+00', 0, 2, '{"fid": 377769, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/01700238-0858-4e1e-b8cd-a36eafe33800/rectcrop3", "profile": {"bio": {"text": "Enjoy life", "mentioned_profiles": []}}, "username": "rame79", "power_badge": false, "display_name": "rame79", "active_status": "inactive", "verifications": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "follower_count": 377, "custody_address": "0x288ce54a6e3c446d0b3603a4b178dccf7274ebde", "following_count": 556, "verified_addresses": {"eth_addresses": ["0x9c3b0af746881466f4a22aa8930d97fda68c7a1d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost21/john-park-foolish-love-when-the-camellia-blooms-ost-part-1?si=f883c51d073d456e913837976374e0d9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1098717, '0xcede5c540b79803a4235417491fbfe5b10dcbe72', 0, 1, '2024-05-07 16:09:34+00', 0, 1, '{"fid": 210731, "object": "user", "pfp_url": "https://i.imgur.com/HxRvUlK.jpg", "profile": {"bio": {"text": "Building /oval - a newborn creative community in Barcelona. Contributor @crowdmuse.", "mentioned_profiles": []}}, "username": "imalvarodelgado", "power_badge": true, "display_name": "alvaro delgado", "active_status": "inactive", "verifications": ["0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e"], "follower_count": 1190, "custody_address": "0xdddcf72a30755ea26e06016cf9b53b72d582956e", "following_count": 322, "verified_addresses": {"eth_addresses": ["0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/cella/its-you?referral=0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e&referral_source=link\"}"}', NULL), - (1160603, '0xa86e22cf74d4b53d5cc304564ccdd295b39f1662', 0, 1, '2024-05-08 21:08:43+00', 0, 17, '{"fid": 349722, "object": "user", "pfp_url": "https://i.imgur.com/mLTLoo6.gif", "profile": {"bio": {"text": "curator collector /communitychannel", "mentioned_profiles": []}}, "username": "artiehandz", "power_badge": true, "display_name": "Artie Handz 🖼💎🙌🏻", "active_status": "inactive", "verifications": ["0x4a39ae58b605102913ac19b7c071da75b55b2674"], "follower_count": 1575, "custody_address": "0x8c5bb40268f815e090b5baf56374443a11352cd3", "following_count": 997, "verified_addresses": {"eth_addresses": ["0x4a39ae58b605102913ac19b7c071da75b55b2674"], "sol_addresses": ["DPr2qRuTLj7GVuGjK429wgWCRtDXWzsEQXzSCrPtSJHe"]}}', '{"{\"url\":\"https://soundcloud.com/the-ham-cannon-podcast\"}"}', 'lp'), - (1085522, '0x24024f95a9c42f4d6c3fba7bfc6807c5b4d5fdc6', 0, 1, '2024-05-07 15:40:29+00', 0, 0, '{"fid": 389456, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiedrqvgkxef3ktcqwfuu63qufdeo7i7fy66ryoqv3hnqcnni7utl4/3345.png", "profile": {"bio": {"text": "🔗", "mentioned_profiles": []}}, "username": "stephenborst", "power_badge": false, "display_name": "Sir Stephen 🎩", "active_status": "inactive", "verifications": ["0x34dfc08eb3b7ed60d00e5b2cb611ac27c152b45c"], "follower_count": 136, "custody_address": "0x9a47459d177f79d5fef0d67663ab5ea10f62d30e", "following_count": 274, "verified_addresses": {"eth_addresses": ["0x34dfc08eb3b7ed60d00e5b2cb611ac27c152b45c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6dvErRnYpGdS2wGXameNij?si=wo4q0RpsTFW1cladyr2xzQ&context=spotify%3Aplaylist%3A37i9dQZEVXbelEfLlaleMv\"}"}', NULL), - (1107445, '0x88633b4d4cefa19f0cbfaed7d446ca55605b6b02', 1010, 1, '2024-05-07 16:41:27+00', 0, 2, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11d25945-614c-4f57-0e82-2a5992f10900/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xb8009403e3f3218a15b77704e0b82c06e385a456"], "follower_count": 105, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xb8009403e3f3218a15b77704e0b82c06e385a456"], "sol_addresses": ["bk95SBqEYhfhFWkzqus25Yzeq9EBVmsCnGHeZrG6YCn", "bk95SBqEYhfhFWkzqus25Yzeq9EBVmsCnGHeZrG6YCn", "bk95SBqEYhfhFWkzqus25Yzeq9EBVmsCnGHeZrG6YCn"]}}', '{"{\"url\":\"https://www.sound.xyz/danielallan/spaceman-with-riz-la-vie-and-emilia-ali?referral=0xaf5735cc5d392e54e92a54be30c3aacfa16a0096&referral_source=link\"}"}', 'musicbusiness'), - (1173342, '0xfc64dc74632095fc7adfb159657ff322d7e681cd', 100, 1, '2024-05-15 20:47:31+00', 0, 1, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2047, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 340, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/5069fac6-f83c-48be-b089-7be9b73d1642?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/danielallan/so-high-feat-jake-neumar?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'soundxyz'), - (1173757, '0x01b8cda3f1366a384925703286b5f394185578f5', 1000, 1, '2024-05-16 12:32:16+00', 0, 1, '{"fid": 190045, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e495182-1969-442e-e9d2-e5de1d8b0100/original", "profile": {"bio": {"text": "Building @superrare. Vibing in /superrare. Tipping $RARE・゚✧", "mentioned_profiles": []}}, "username": "superrarejohn", "power_badge": true, "display_name": "SuperRareJohn", "active_status": "inactive", "verifications": ["0x337101def3eeb6f06e071efe02216274507937bb"], "follower_count": 2065, "custody_address": "0xaafa0b3d56734969539359d957a00276f0ff44c4", "following_count": 225, "verified_addresses": {"eth_addresses": ["0x337101def3eeb6f06e071efe02216274507937bb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1tZbYHImeBPPvEN8aRzMva?si=06118ae3898a4137\"}"}', 'sonata'), - (1151155, '0x5d7a1ad19401cdc2fe28502955d958b92e681153', 0, 1, '2024-05-07 20:37:00+00', 0, 12, '{"fid": 414095, "object": "user", "pfp_url": "https://i.imgur.com/f1IiJJR.jpg", "profile": {"bio": {"text": "Electrical engineer seeking for the meaning of life...\nBut sometimes, you just have to enjoy the ride 🤓", "mentioned_profiles": []}}, "username": "erfan-nia", "power_badge": false, "display_name": "Erfan", "active_status": "inactive", "verifications": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "follower_count": 998, "custody_address": "0x6b517b43809b0fce8623d0654ca3d1e451b0117b", "following_count": 788, "verified_addresses": {"eth_addresses": ["0x00387e098254cd3673faaa82a5c2de297112529e"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/imaginedragons/demons\"}"}', 'music-caster'), - (1160320, '0x7a5505e14b9a47782b446e72c3c0f0147c3d50c7', 1010, 1, '2024-05-08 18:28:23+00', 20, 4, '{"fid": 9581, "object": "user", "pfp_url": "https://i.seadn.io/gae/lXENY3cJnutJqOMOvW_4QAqP_4rhe8RcHHWJl8gl145IBOSwRUVRS6NDk5wcIgEEAAn_lqDrRB32-xmwWm-N-zYeLR5h_7UFq1MyRg?w=500&auto=format", "profile": {"bio": {"text": "fridays at the park season 002 https://zora.co/collect/base:0x1bbea2cc3b2c41774687fd00684ad12f9a666557/6", "mentioned_profiles": []}}, "username": "thepark", "power_badge": true, "display_name": "the park", "active_status": "inactive", "verifications": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "follower_count": 2359, "custody_address": "0x4d125b80e2217b0cdfb366cfb77b84a3d3a94751", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2VOp3fNJpmklVZka3e0fuZ?si=1f1776137d294ae4\"}"}', NULL), - (1106771, '0x3bfa8000f163527a87143d34118fd89a14ba1ac3', 100, 1, '2024-05-07 16:40:19+00', 0, 4, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 310, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 260, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/51EC3I1nQXpec4gDk0mQyP?si=bnc81BkZSGyVyqoV5eoCaQ&context=spotify%3Aplaylist%3A2dHBpMwZpXu1TSelmeYUHr\"}"}', 'bangers'), - (790400, '0x157b16156dd1ca3c04ed2bba5f4a746f0c68bb20', 1000, 1, '2024-05-07 03:05:16+00', 0, 22, '{"fid": 6731, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/021972347cf7146c5a219e03840ffe55.jpg?w=500&auto=format", "profile": {"bio": {"text": "Jamie • /devrel @ /reservoir • /bicycling • /chicago • /djs • home @ /chicagolife", "mentioned_profiles": []}}, "username": "chicago", "power_badge": true, "display_name": "Chicago 🎩 @ FarCon", "active_status": "inactive", "verifications": ["0x6d34927441c4a238a84f9f54a47d67cc3d55f575", "0x5c0d9828ca6595db1012a4063c7ae8b6edee7534"], "follower_count": 23168, "custody_address": "0x0faeba7a10eaf727f0ebb9e9d844682d38c4a02a", "following_count": 686, "verified_addresses": {"eth_addresses": ["0x6d34927441c4a238a84f9f54a47d67cc3d55f575", "0x5c0d9828ca6595db1012a4063c7ae8b6edee7534"], "sol_addresses": []}}', '{"{\"url\":\"https://youtu.be/0XCQNpjWmRE\"}","{\"url\":\"https://open.spotify.com/track/0725YWm6Z0TpZ6wrNk64Eb\"}"}', NULL), - (1131359, '0xbc392b458f113f8cf57d91732510a407a307c1d9', 20, 1, '2024-05-07 18:36:44+00', 10, 48, '{"fid": 438916, "object": "user", "pfp_url": "https://i.imgur.com/SiVhSgZ.jpg", "profile": {"bio": {"text": "Crypto girl, BTC,gym❤️", "mentioned_profiles": []}}, "username": "0xmatin", "power_badge": false, "display_name": "OxMatin", "active_status": "inactive", "verifications": ["0x88bdf8a221594c8377e969030e26bf3c7d9803d2"], "follower_count": 2035, "custody_address": "0xdf40527d290e9e565976d89dfc0278ba23fdb269", "following_count": 2274, "verified_addresses": {"eth_addresses": ["0x88bdf8a221594c8377e969030e26bf3c7d9803d2"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/enriqueiglesias/tonight-im-fuckin-you\"}"}', 'sonata'), - (1173254, '0x504cf64a8cc02f693d7a0d67c6ff8811a6da959f', 7410, 1, '2024-05-15 15:49:58+00', 10, 5, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1947, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 977, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/xyz?referral_source=link\"}"}', 'soundxyz'), - (1155743, '0xba68ba51b6274a96d004324c96090959b9532524', 0, 1, '2024-05-07 20:56:29+00', 0, 21, '{"fid": 391779, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49ccacbc-fa28-4d67-439d-b4ab40013900/rectcrop3", "profile": {"bio": {"text": "𝒜 ℊ𝒾𝓇ℓ 𝒾𝓃 𝓉ℎℯ 𝒸𝓇𝒴℘𝓉ℴ 𝓌ℴ𝓇ℓ𝒹🎈ɹǝʌol pooℲ🍻 𝖈𝖍𝖆𝖗𝖙𝖎𝖘𝖙 ✌️ρꪶꪖꪗꫀ𝕣🎮 切ない-˗ˏˋ ★ ˎˊ˗- Fid :391779", "mentioned_profiles": []}}, "username": "0xdazai.eth", "power_badge": false, "display_name": "𝔇𝔞𝔷𝔞𝔦🎩🍖🔄", "active_status": "inactive", "verifications": ["0xcf24b90c52c14c52ff4fc3928f231f5898716dd4", "0xe99ff7897b8a81f9f444ce5814f18f6a2009ba10"], "follower_count": 807, "custody_address": "0xe99ff7897b8a81f9f444ce5814f18f6a2009ba10", "following_count": 675, "verified_addresses": {"eth_addresses": ["0xcf24b90c52c14c52ff4fc3928f231f5898716dd4", "0xe99ff7897b8a81f9f444ce5814f18f6a2009ba10"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bG2Ld\"}"}', 'sonata'), - (1114203, '0x57d4b363280081d653cc170ef2653470fac26d74', 0, 1, '2024-05-07 17:17:29+00', 0, 2, '{"fid": 403379, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/07cd3518-ead3-40b0-ffb8-d7118fbeff00/rectcrop3", "profile": {"bio": {"text": "\n\n#캐나다사는Knadian #영어어려워 #사실워캐도어려워 #그래사실마흔틴이야 \n\nF4F!!! 연중무휴~!!! 유후~~!!!", "mentioned_profiles": []}}, "username": "gmin", "power_badge": false, "display_name": "Gmin Lee", "active_status": "inactive", "verifications": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "follower_count": 2399, "custody_address": "0xde1c043501c2a703b140a33aa24bad2c0f7a8497", "following_count": 2625, "verified_addresses": {"eth_addresses": ["0x7200b71fc2867dc0d20ca436192d63843f7d6c6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2dUYz\"}"}', 'sonata'), - (1151880, '0xdc3411c58ec6821f6d88f58204d80bc2066c4d4a', 0, 1, '2024-05-07 20:39:45+00', 0, 6, '{"fid": 507746, "object": "user", "pfp_url": "https://arweave.net/YSj1gvCcZQeT_ftbvomLalNwHjOhou_GMHEEhTPtBvE/", "profile": {"bio": {"text": "Gamer🎮 | Crypto& forex trader💰 |\nDvm student🐾", "mentioned_profiles": []}}, "username": "!507746", "power_badge": false, "display_name": "Aria🎩🔮", "active_status": "inactive", "verifications": ["0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a", "0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a"], "follower_count": 385, "custody_address": "0xbbb840915c8f4645165ebcde672b79384a2e34ca", "following_count": 495, "verified_addresses": {"eth_addresses": ["0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a", "0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imaginedragons/believer-feat-lil-wayne?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (5395, '0xba2602928a6ea061f4a96dcbc84e064227f265be', 100, 1, '2024-05-03 20:06:38+00', 1, 25, '{"fid": 434557, "object": "user", "pfp_url": "https://i.imgur.com/mjvAdxf.jpg", "profile": {"bio": {"text": "I am a designer and athlete, I create beautiful pictures and mesmerizing videos.\n\nWeb3, Eth, Base, Ton", "mentioned_profiles": []}}, "username": "evil-eyes", "power_badge": false, "display_name": "Uliana 🎩🔵", "active_status": "inactive", "verifications": ["0x67820573587cde95e639066e4ef845d10fe66a00", "0x8cd6123ccaa051f3b43d72244044aa9195aab865"], "follower_count": 696, "custody_address": "0x36a83267639f681ef06c1960ddf78b3710815f82", "following_count": 876, "verified_addresses": {"eth_addresses": ["0x67820573587cde95e639066e4ef845d10fe66a00", "0x8cd6123ccaa051f3b43d72244044aa9195aab865"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5WgW9bG91h4zRUnBr97d6c?si=j0hKyBcpRH25C8_CSHp7fQ\"}"}', NULL), - (1172895, '0xd1d6bbfbacbf13cac0b37d07cef5f46898c7f915', 200, 1, '2024-05-14 19:58:07+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1935, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/disqtible/bon-voyage?referral=0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426\"}"}', 'soundxyz'), - (1114280, '0x0051788fcaf5e51e6efe54c3a7a614854baa25b4', 0, 1, '2024-05-07 17:18:43+00', 0, 3, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 593, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 721, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hdabkzabc8uq/lee-hi-breathe?si=575caeef5be249a8b8e20912560215a6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1161594, '0x7c6173b2b923f0226a9c0965152a488a6f460c05', 1090, 1, '2024-05-09 00:44:37+00', 0, 12, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Z2J91b2iTGLVTZC4fKgxf?si=131488b8c00642fb\"}"}', NULL), - (1152420, '0xddd105a760e960c6e85551e3fd5cbadc94bdf7f9', 0, 1, '2024-05-07 20:40:55+00', 0, 0, '{"fid": 507746, "object": "user", "pfp_url": "https://arweave.net/YSj1gvCcZQeT_ftbvomLalNwHjOhou_GMHEEhTPtBvE/", "profile": {"bio": {"text": "Gamer🎮 | Crypto& forex trader💰 |\nDvm student🐾", "mentioned_profiles": []}}, "username": "!507746", "power_badge": false, "display_name": "Aria🎩🔮", "active_status": "inactive", "verifications": ["0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a", "0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a"], "follower_count": 370, "custody_address": "0xbbb840915c8f4645165ebcde672b79384a2e34ca", "following_count": 489, "verified_addresses": {"eth_addresses": ["0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a", "0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/imaginedragons/believer-feat-lil-wayne?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1156172, '0x7e6123c70ed0f12721c940cde9ea2aa10a63137b', 0, 1, '2024-05-07 21:00:23+00', 0, 18, '{"fid": 422449, "object": "user", "pfp_url": "https://i.imgur.com/Vejfyow.jpg", "profile": {"bio": {"text": "I like crypto and NFT", "mentioned_profiles": []}}, "username": "vahid70", "power_badge": false, "display_name": "Vahid🎩🔵🍖🧀", "active_status": "inactive", "verifications": ["0x37a58ca3c08c81a772e395e6ae99127edf4ab467"], "follower_count": 1623, "custody_address": "0xedee68243667323dff2175a9c1e3c343f955e584", "following_count": 1084, "verified_addresses": {"eth_addresses": ["0x37a58ca3c08c81a772e395e6ae99127edf4ab467"], "sol_addresses": []}}', '{"{\"url\":\"Listen to INNA - Cheeky by Kh@N on #SoundCloud https://soundcloud.com/user-565119137/inna-cheeky?ref=clipboard&p=a&c=0&si=86c10ff2869f4f87bac56c0abc513350&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1107566, '0xeec5d4f3cdcaf5b79acb9016118dd0c9933de60d', 0, 1, '2024-05-07 16:42:36+00', 0, 2, '{"fid": 345541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a8cfdc-97da-46fb-5971-72104c24e300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨\nViva Tax🔥🔥\n\n裏金(🎩)に繋がるムーブを各チャンネルで行っています。全ては国民の皆様の為!\n\n/ogiri /gurumenavijp /littlehappyjp \n\n\n ", "mentioned_profiles": []}}, "username": "kasoutarou", "power_badge": false, "display_name": "Kasoutaro_👻 🎩⌐◨-◨", "active_status": "inactive", "verifications": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "follower_count": 969, "custody_address": "0xf46e4c92d3c8b02fbaf681a529b682432d2e1b74", "following_count": 1297, "verified_addresses": {"eth_addresses": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0DKNNR9iDjwfCEpMiFXMJq?si=TcFMHKbeSkCkv9MFUd8ehw\"}"}', 'musicjp'), - (1152666, '0xace5ced3da86588dbb6a45731214a07554313d1a', 0, 1, '2024-05-07 20:44:06+00', 0, 11, '{"fid": 245024, "object": "user", "pfp_url": "https://i.imgur.com/JkyySHx.gif", "profile": {"bio": {"text": "web3 degen | rock lover | hosting Rock Music channel: https://warpcast.com/~/channel/rock", "mentioned_profiles": []}}, "username": "calisay", "power_badge": true, "display_name": "Calisay", "active_status": "inactive", "verifications": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "follower_count": 323, "custody_address": "0xbc218297a4e18c050252b4e527d13de104111085", "following_count": 238, "verified_addresses": {"eth_addresses": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rbrW5a3vAjimeL5H8\"}"}', 'rock'), - (1114476, '0xa2d4a36eb17ee079ca37630e02206b7666c14b2b', 0, 1, '2024-05-07 17:21:16+00', 0, 7, '{"fid": 326492, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/69a947e1-b361-4760-06a5-a5093a997800/rectcrop3", "profile": {"bio": {"text": "like cats, dogs and birds", "mentioned_profiles": []}}, "username": "duckypapa", "power_badge": false, "display_name": "duckypapa🔵🔮🍖🧀", "active_status": "inactive", "verifications": ["0x5da3f3247931b9b3c41ce5cd3c2027db549cf418", "0xbb71175cded55696ff76091c8046b3fba01c378e"], "follower_count": 1738, "custody_address": "0x7a7b17995743edeeaf90c99bc0442e1492f4f8a9", "following_count": 1539, "verified_addresses": {"eth_addresses": ["0x5da3f3247931b9b3c41ce5cd3c2027db549cf418", "0xbb71175cded55696ff76091c8046b3fba01c378e"], "sol_addresses": ["HpXvBD9GYLJYvWKaDoiGf682pvQqtdA8UJdKcZq4WBQ1", "7HAfK5pt3dZdMu46vu8hjs8AexJQteyYNkQ8edp5RurM"]}}', '{"{\"url\":\"https://on.soundcloud.com/tZSGAQ2FUprwnywd8\"}"}', 'sonata'), - (1141397, '0x75bc0f62647f1ff17264cf9b718009e6a61c55c3', 0, 1, '2024-05-07 19:55:17+00', 24, 6, '{"fid": 458404, "object": "user", "pfp_url": "https://i.imgur.com/yHpvwyC.jpg", "profile": {"bio": {"text": "Music, films, books, rugby, bàsquet. Engineer, MBA. Visca la Terra Lliure! Gironí i català. Tsool, Stooges, 13th Floor Elevators, The Velvet Underground, ...", "mentioned_profiles": []}}, "username": "jpoubaez", "power_badge": false, "display_name": "Joan", "active_status": "inactive", "verifications": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "follower_count": 49, "custody_address": "0x7ff5f4af616edc48203d36bb2325848f44e15e46", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/34csA\"}"}', 'metal'), - (1151916, '0x4f9759d0c88ba4e3daae11d25db2dedf9467d254', 0, 1, '2024-05-07 20:38:32+00', 0, 0, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1150, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1538, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hu-nh-mai-600785655/sets/comthru?si=5e1851788db34e22be6f436b231afc47&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1114469, '0x98e58c9b65a2073da9211575c0f7b43151f4663c', 0, 1, '2024-05-07 17:21:05+00', 0, 2, '{"fid": 500543, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fec49e2-c33e-4639-1326-106af9696700/rectcrop3", "profile": {"bio": {"text": "Pharmacist 💊 Master''s degree. F4F 💯%", "mentioned_profiles": []}}, "username": "studyhard-", "power_badge": false, "display_name": "Pharmacist 💊 / F4F", "active_status": "inactive", "verifications": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "follower_count": 593, "custody_address": "0x7ad25877a3c854194efe3d5af167481ddfa9b770", "following_count": 721, "verified_addresses": {"eth_addresses": ["0xed00498c24e52645cf4567af1531b1e653ef1fb9"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/deni-achmadzoel/if-it-is-you-jung-seung-hwan?si=9a7dc31b9a484d0cbeb1dc035552ec53&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1110776, '0xf93be47d8d7457a612b56a2e3c2976a3c5081298', 0, 1, '2024-05-07 16:57:55+00', 0, 3, '{"fid": 406632, "object": "user", "pfp_url": "https://i.imgur.com/5UKgbQM.jpg", "profile": {"bio": {"text": "Let''s all go to degen''s country together🎈", "mentioned_profiles": []}}, "username": "euni", "power_badge": false, "display_name": "k-pop", "active_status": "inactive", "verifications": ["0x5297e223f443e0b81c51bfe96c8d44dc11f0a0c1"], "follower_count": 1910, "custody_address": "0xed6368e8f7d7f9909bdb393bb543ca667557c797", "following_count": 1551, "verified_addresses": {"eth_addresses": ["0x5297e223f443e0b81c51bfe96c8d44dc11f0a0c1"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/f4lg97ij69wr/urn7iye3bnon?si=7ed6b2cf134b4101a8757e7d869e0a07&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1132740, '0x9b87f4b1a64d37c0126102b07b0127df90f35aa4', 110, 1, '2024-05-07 18:41:06+00', 10, 17, '{"fid": 363197, "object": "user", "pfp_url": "https://i.imgur.com/tye8WEu.jpg", "profile": {"bio": {"text": "Being yourself is never a bad idea 🎧", "mentioned_profiles": []}}, "username": "bakergracemusic", "power_badge": true, "display_name": "Baker Grace", "active_status": "inactive", "verifications": ["0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0"], "follower_count": 3971, "custody_address": "0xf62d5e54d570623b82b3168b6115276901fc8dab", "following_count": 77, "verified_addresses": {"eth_addresses": ["0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":485751,\"hash\":\"0x55a626f28bfce3968286c899232130dd6c204d93\"}}","{\"url\":\"https://www.sound.xyz/bakergrace\"}"}', NULL), - (1112423, '0x1517ce4cece3e0f7e26db11e1ff41f7e6565041b', 0, 1, '2024-05-07 17:06:05+00', 0, 13, '{"fid": 291140, "object": "user", "pfp_url": "https://i.imgur.com/Xwdx5DY.gif", "profile": {"bio": {"text": "F4F 몽말인디 알디?😊\nDrakula 👇 👇 👇 \nhttps://drakula.app/user/9bro\n", "mentioned_profiles": []}}, "username": "9bro", "power_badge": false, "display_name": "9rohem", "active_status": "inactive", "verifications": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "follower_count": 2937, "custody_address": "0xa6c71b45173d0ef675c910a85afefa539a69b101", "following_count": 2015, "verified_addresses": {"eth_addresses": ["0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9", "0x46fde3d5085e5bbbcc1335d41f2c80a559a9c659"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/0wkjxnktozdy/ozsawhkjh0r7?si=424093af55604717811267b3ced27ade&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1172851, '0xb1f67c7e232777e007e484f98f45c1cf1865cd69', NULL, 1, '2024-05-14 19:19:13+00', 3, 0, '{"fid": 18325, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/816c8cab-759c-4f89-e652-9c983a5a6100/rectcrop3", "profile": {"bio": {"text": "Based in DC. ⛓️ \nfind me enjoying https://zora.co/@crittiep", "mentioned_profiles": []}}, "username": "crittiep", "power_badge": true, "display_name": "↑ ↑ Crittie p ↑ ↑", "active_status": "inactive", "verifications": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "follower_count": 375, "custody_address": "0x34a56e7cf6de51416ab2f84bc6c48fcee32c18a3", "following_count": 493, "verified_addresses": {"eth_addresses": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "sol_addresses": ["5DCTxf6kHtgrFwT4f2FPsCAbECaxn84ZVjKAx9DW7aY2"]}}', '{"{\"url\":\"https://open.spotify.com/track/3GC3xIxWImpR7dfv2F81ze?si=okzrxU8KSqOwbyRGO1GuLQ\"}"}', 'sonata'), - (1113230, '0xe8506a4ce731f6c2ab35d7b7925f3c56d1378e80', 0, 1, '2024-05-07 17:09:36+00', 0, 1, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 221, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 975, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/smoking-marijuana-rip-nipsey?referral_source=link\"}"}', NULL), - (1161409, '0xa0a24d0255bd113f5b68485876e54ad91848bd3c', 110, 1, '2024-05-08 23:21:25+00', 0, 1, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 587, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 524, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/valeinallcaps/chill-like-that?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (1163103, '0x71214507d7901d1132906b904e2db547b23622cd', 1000, 1, '2024-05-09 10:03:52+00', 0, 35, '{"fid": 406536, "object": "user", "pfp_url": "https://i.imgur.com/qO9GySm.jpg", "profile": {"bio": {"text": "같이 으쌰으쌰해요👍🔥", "mentioned_profiles": []}}, "username": "hanbyeol", "power_badge": true, "display_name": "Stella", "active_status": "inactive", "verifications": ["0x2b69be397864dc6651f50c69ebdb5ce4a19eaa21"], "follower_count": 6098, "custody_address": "0x9486313bd97f8cda35668360d656133751e5448e", "following_count": 3550, "verified_addresses": {"eth_addresses": ["0x2b69be397864dc6651f50c69ebdb5ce4a19eaa21"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DU3bCcULZfJQUeGt5\"}"}', 'sonata'), - (1133058, '0x0e46728545dadff889e03d1cd2f37f0e0c2d13a1', 0, 1, '2024-05-07 18:42:17+00', 0, 2, '{"fid": 415745, "object": "user", "pfp_url": "https://i.imgur.com/dj4XWf7.jpg", "profile": {"bio": {"text": "Music producer and sound designer for artists, games and my own music ✨🤟🏼\nCurrently working on Tenebris Somnia \n———\nhttps://www.bonfire.xyz/davyd_music/home", "mentioned_profiles": []}}, "username": "davyd-music", "power_badge": false, "display_name": "David", "active_status": "inactive", "verifications": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "follower_count": 82, "custody_address": "0x662cdccc14f599f50c2f1f99780b7c738acc085d", "following_count": 254, "verified_addresses": {"eth_addresses": ["0xd6c09962e907428112069273d5c0dc861e7b1c57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/27GWWBegMtuzYixG9JTNrW?si=yBxL9n1iRl-vx6QapYcqMQ\"}"}', NULL), - (1141418, '0xe8325c1d0d5e4ee0eebbca73e0242d74a867f980', 0, 1, '2024-05-07 19:54:10+00', 0, 2, '{"fid": 507830, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/691981e7-2f36-4fff-d8aa-f082a11d2c00/rectcrop3", "profile": {"bio": {"text": "Gym,crypto,photo,travel", "mentioned_profiles": []}}, "username": "!507830", "power_badge": false, "display_name": "SaRaa", "active_status": "inactive", "verifications": ["0xaa2e6802ddcd2256c76a365dc02533875230f190"], "follower_count": 73, "custody_address": "0x85f89648c0162cda5c2c029784227c2c1d4239c2", "following_count": 175, "verified_addresses": {"eth_addresses": ["0xaa2e6802ddcd2256c76a365dc02533875230f190"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/tomodell/another-love\"}"}', 'sonata'), - (1173768, '0x6840946c596018145d72a8f01598f2d8ca121d13', 0, 1, '2024-05-16 14:04:24+00', 0, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 575, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 468, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/G8SAbjSac3Pk8W7q7\"}"}', 'sonata'), - (1160309, '0x2d48a0866d2ec4697ccf1708bba4d0c83d8ac84f', 110, 1, '2024-05-08 19:24:08+00', 0, 2, '{"fid": 374660, "object": "user", "pfp_url": "https://i.imgur.com/083jvml.jpg", "profile": {"bio": {"text": "The gang does support for @rainbow 🌈 ~\n\nvideo games | tattoos | art | music | & Danny Devito ", "mentioned_profiles": []}}, "username": "endureandsurvive.eth", "power_badge": true, "display_name": "Taylor 🌈 ᖭི༏ᖫྀ ", "active_status": "inactive", "verifications": ["0x19deaa4a250f87215e125a0eb93ad71138f3ed9b"], "follower_count": 334, "custody_address": "0x19deaa4a250f87215e125a0eb93ad71138f3ed9b", "following_count": 111, "verified_addresses": {"eth_addresses": ["0x19deaa4a250f87215e125a0eb93ad71138f3ed9b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2iS5us96UxLtV2gC1BDKUV?si=dNXcbJbpQt2tw8psBW8WHA\"}"}', NULL), - (1160398, '0x16482d193a382352f1ceebc9f7feb3c952ede8b9', 20, 1, '2024-05-08 20:53:36+00', 0, 3, '{"fid": 12036, "object": "user", "pfp_url": "https://i.imgur.com/G0JZ74M.jpg", "profile": {"bio": {"text": "Artist | Digital Alchemist \n\nbeacons.ai/benalistair", "mentioned_profiles": []}}, "username": "benalistair", "power_badge": true, "display_name": "Benjamin Alistair ", "active_status": "inactive", "verifications": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "follower_count": 288, "custody_address": "0xdf99e8dfff593e38d1f32e594ee485ed615ce0fa", "following_count": 239, "verified_addresses": {"eth_addresses": ["0x01a719a37c75f63968c0e597318914fb3210608f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1WNIMXpLKoUkre1vKRcVSf\"}"}', NULL), - (1173769, '0xcef495d5c8e7ebb4b8c67d2952d1c8256439a4b3', 0, 1, '2024-05-16 14:09:40+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3USxtqRwSYz57Ewm6wWRMp?si=930e394b5e4046e4\"}"}', 'sonata'), - (1140564, '0x738a626d506050680887a7dbfc41bda0d6d3d043', 0, 1, '2024-05-07 19:51:02+00', 0, 1, '{"fid": 458404, "object": "user", "pfp_url": "https://i.imgur.com/yHpvwyC.jpg", "profile": {"bio": {"text": "Music, films, books, rugby, bàsquet. Engineer, MBA. Visca la Terra Lliure! Gironí i català. Tsool, Stooges, 13th Floor Elevators, The Velvet Underground, ...", "mentioned_profiles": []}}, "username": "jpoubaez", "power_badge": false, "display_name": "Joan", "active_status": "inactive", "verifications": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "follower_count": 49, "custody_address": "0x7ff5f4af616edc48203d36bb2325848f44e15e46", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MUTYi\"}"}', 'rock'), - (1133369, '0x01f33714a183e0c03b9c0ebf06bcf7fd7890135b', 0, 1, '2024-05-07 18:44:46+00', 0, 0, '{"fid": 13009, "object": "user", "pfp_url": "https://i.imgur.com/mtYLQEO.jpg", "profile": {"bio": {"text": "product innovation. writing hobbiest. lover of whimsy. mother of dog.✨", "mentioned_profiles": []}}, "username": "olivejuice", "power_badge": false, "display_name": "annie", "active_status": "inactive", "verifications": ["0xa84ca2f5f7786d97c36d83e4ca2d119da7b3180b"], "follower_count": 132, "custody_address": "0xfaa59e4e4208a7eb10955c1a035e55b98d0757b5", "following_count": 187, "verified_addresses": {"eth_addresses": ["0xa84ca2f5f7786d97c36d83e4ca2d119da7b3180b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7FOgcfdz9Nx5V9lCNXdBYv?si=XrB-G2CKQ5S87HmAfaNpg\"}"}', NULL), - (1115083, '0x48a285fa6e81464d541195463a92beff39c2b43b', 0, 1, '2024-05-07 17:24:08+00', 0, 3, '{"fid": 419947, "object": "user", "pfp_url": "https://i.imgur.com/CTIvf5a.jpg", "profile": {"bio": {"text": "Japan\nI''ll follow back!!みなさん宜しくです!", "mentioned_profiles": []}}, "username": "tsumonomi", "power_badge": false, "display_name": "tsumonomi.degen", "active_status": "inactive", "verifications": ["0x2d58788dbc9518c5926e9854e0f02cb433aecd00"], "follower_count": 1142, "custody_address": "0xb932c099c58ec2452211b8fda5fbc0614531c2a6", "following_count": 1325, "verified_addresses": {"eth_addresses": ["0x2d58788dbc9518c5926e9854e0f02cb433aecd00"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jedimaster_okina/r2ljldgfe9h0?in=sc-playlists-jp/sets/3am-browsing&si=4a9f9ef562df48db82859ba8ee90d170&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1173776, '0x1df085ad7482500f01006e0996e9b5360961dac2', 1000, 1, '2024-05-16 14:11:04+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2MWMRlpLe02W5gMuG9lLS5?si=2ef460501f524d94\"}"}', NULL), - (1173774, '0xd9bc26f153495b87083e172985a51156220f71cf', 5000, 1, '2024-05-16 14:10:11+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5NKfB21hWeirObQjEN44x1?si=35afc86003d14e7c\"}"}', NULL), - (1173772, '0x8f0b6107809aaac8c465f6e48c0712731ad92c1d', 2000, 1, '2024-05-16 14:10:57+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7u0fz3V6cYeYTX91DMmIvQ?si=75844fc263f747df\"}"}', NULL), - (1163679, '0x826662623baa3284b44be9e4491057662a67cb41', 0, 1, '2024-05-09 14:26:49+00', 0, 20, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3728, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1744, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove1/san-e?si=faa5a038c8484664b0cdaae4eaa3404d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1142285, '0x8604a9aa848c7759cde4a600e6fcacc160a106ab', 0, 1, '2024-05-07 19:57:13+00', 0, 3, '{"fid": 404623, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeibnvpblu2ehtow3ydq74ixe7ifbzkbwi2oz6rwx42mlaf5nn52uk4", "profile": {"bio": {"text": "No Risk, No Porsche 911 ", "mentioned_profiles": []}}, "username": "imhassanrezaei", "power_badge": false, "display_name": "Ha$$aN 👽🔄🎩🍖🦄🥷", "active_status": "inactive", "verifications": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "follower_count": 1483, "custody_address": "0xd313785101ba70375b352462cfd38885f02429b6", "following_count": 1774, "verified_addresses": {"eth_addresses": ["0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5IInvImAzU3Uwg5ZSn7EoY?si=Nz5AbQQwTY-r2q_RGYEe8A\"}"}', NULL), - (1157175, '0x3bb0609224a671538e87d62fddd0874c4b9ccff8', 0, 1, '2024-05-07 21:04:22+00', 10, 10, '{"fid": 379280, "object": "user", "pfp_url": "https://i.imgur.com/clfdBEZ.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "shabnam1229", "power_badge": false, "display_name": "Shabnam", "active_status": "inactive", "verifications": ["0xeb5ed0a2ceab3e3da6c0defbceb6c07422c0b7f8"], "follower_count": 691, "custody_address": "0x8de68b14671989e7df175cce064eb8cb660dc5c9", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xeb5ed0a2ceab3e3da6c0defbceb6c07422c0b7f8"], "sol_addresses": ["9oWtroB7cYoUpmEL7RokZyMxvK4f7twt5fzmQXf8gmEq"]}}', '{"{\"url\":\"https://open.spotify.com/track/0JiY190vktuhSGN6aqJdrt?si=sE8CxHIrRliN4J9K2EbbGw\"}"}', 'sonata'), - (1173771, '0x5b806ad793a1dab2ebea4635bc64d2a78f888b68', 0, 1, '2024-05-16 14:10:45+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/33ZOUzkmTrwfA1TsW6421d?si=a133884501f447a7\"}"}', NULL), - (1153170, '0x2269c1d3b789b274c1958fd32c0025f37e7470c7', 0, 1, '2024-05-07 20:45:07+00', 0, 0, '{"fid": 508955, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28b1ed85-f0ff-4503-676f-0f371a99c400/rectcrop3", "profile": {"bio": {"text": "live in the world of imagination but work hard for a real life🗺️\n💪🏻📑📺📚☕️🌊", "mentioned_profiles": []}}, "username": "!508955", "power_badge": false, "display_name": "Ryoman", "active_status": "inactive", "verifications": ["0xf2a9364590d9402fa9003fc7f1895b38aee57078"], "follower_count": 346, "custody_address": "0x37dfea32556825d68235f4446dca0eb401d227e8", "following_count": 428, "verified_addresses": {"eth_addresses": ["0xf2a9364590d9402fa9003fc7f1895b38aee57078"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1YJivkKhpLhmDiYG7\"}"}', 'sonata'), - (1115496, '0x578b8243c4a556847751d34bf04f215cc9047f17', 0, 1, '2024-05-07 17:28:54+00', 0, 2, '{"fid": 501070, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/783d321c-bf98-40df-8588-98da71a16c00/rectcrop3", "profile": {"bio": {"text": "픽슨입니다. 댓글필수 X. 캐스트 위주로 운영해서 맞방은 못갈거 같으니 ㅠㅠ 그냥 가볍게만 봐주세요 ^^ 죄송하고 감사합니다.", "mentioned_profiles": []}}, "username": "fixons", "power_badge": false, "display_name": "픽슨s 🍖", "active_status": "inactive", "verifications": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "follower_count": 1747, "custody_address": "0x10c6f3c1240c3e3d4616a82a6548268f8e687106", "following_count": 1599, "verified_addresses": {"eth_addresses": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-989743774/cherry-boy-17-remix?si=1419f9c85f0c41f896705788de6d4482&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1161500, '0xcca3c8247fad6ad5761b400e702336ec82b68926', 0, 1, '2024-05-08 23:59:48+00', 0, 2, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 238, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 197, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/duodomusica/palomas-y-cordajes?referral_source=link\"}"}', 'onchain-music'), - (1161194, '0x638d8ae7da07981a2d96f42b1290f792247d2827', 1030, 1, '2024-05-08 21:58:41+00', 0, 4, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4ztmlSZinz3IbpJU5YX7JG?si=4688ca0fbf184d4d\"}"}', NULL), - (1173773, '0x55fb1edb5f30187f9c4eb14270f46e2093a40851', 0, 1, '2024-05-16 14:09:58+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3hARuUtzTdUuWH1KiLJlSf?si=2cbcbbec4462433d\"}"}', NULL), - (1158775, '0x56e9dee3728de86d45b4190867466cd2f72aa60f', 1130, 1, '2024-05-08 05:22:32+00', 0, 4, '{"fid": 394597, "object": "user", "pfp_url": "https://i.imgur.com/3wCLomw.jpg", "profile": {"bio": {"text": "Art School Dropout | Baggage Handler at 747 Airlines ✈️", "mentioned_profiles": []}}, "username": "jameecornelia", "power_badge": true, "display_name": "Jamee Cornelia✈️", "active_status": "inactive", "verifications": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "follower_count": 361, "custody_address": "0xa75cacaf502ade298af8293ab5a37ef380b3abbc", "following_count": 202, "verified_addresses": {"eth_addresses": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5LDfQCmBF4gkFtjzNWCKDS?si=VvkqouyERzmlk18ELdFMWQ\"}"}', NULL), - (1162719, '0xfeb0069d2459d1e6ddfc30df4d0855a1e3dd527f', 100, 1, '2024-05-09 07:32:01+00', 0, 1, '{"fid": 394597, "object": "user", "pfp_url": "https://i.imgur.com/3wCLomw.jpg", "profile": {"bio": {"text": "Art School Dropout | Baggage Handler at 747 Airlines ✈️", "mentioned_profiles": []}}, "username": "jameecornelia", "power_badge": true, "display_name": "Jamee Cornelia✈️", "active_status": "inactive", "verifications": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "follower_count": 361, "custody_address": "0xa75cacaf502ade298af8293ab5a37ef380b3abbc", "following_count": 202, "verified_addresses": {"eth_addresses": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rico_nasty/bleach-brows-prod-ilykimchi-coucouchloe\"}"}', NULL), - (1116694, '0x02d93ecf784f4bcbd6e7b471ac8c9675d3bcab87', 0, 1, '2024-05-07 17:37:04+00', 0, 3, '{"fid": 503790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e92c9777-5394-45a4-7518-73d3be8aa800/rectcrop3", "profile": {"bio": {"text": "🌈 Let''s be happy.🌈", "mentioned_profiles": []}}, "username": "newhong", "power_badge": false, "display_name": "Newhong", "active_status": "inactive", "verifications": ["0xf71fab0a159428e9d4d4dc731f914eee487ffeb0"], "follower_count": 716, "custody_address": "0x5cf0fb03f51be46c30f38ac9ff57d7e387944abd", "following_count": 935, "verified_addresses": {"eth_addresses": ["0xf71fab0a159428e9d4d4dc731f914eee487ffeb0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/DJvK4gazV9W1647M8\"}"}', NULL), - (1127151, '0xd3978ad995337ef8be1f94a70ec8f5c17a1fb302', 0, 1, '2024-05-07 18:21:17+00', 0, 1, '{"fid": 440524, "object": "user", "pfp_url": "https://i.imgur.com/MnlaEGm.jpg", "profile": {"bio": {"text": "Photographer📸 | Music nerd | Sports guy | Cinephile | I also love to joke about shit.\nTop 250 replyor.", "mentioned_profiles": []}}, "username": "sinadnl", "power_badge": false, "display_name": "Sina🎩", "active_status": "inactive", "verifications": ["0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7"], "follower_count": 638, "custody_address": "0xb8a33c60c65f1c21f488d20eb1debfb47829ca53", "following_count": 565, "verified_addresses": {"eth_addresses": ["0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7yNK27ZTpHew0c55VvIJgm?si=dRksd00FQ3-e-589Pj9lxA\"}"}', NULL), - (1153188, '0xf3f0ebfce3a630c20a4a5a70422a37d052789bb5', 0, 1, '2024-05-07 20:45:03+00', 0, 3, '{"fid": 500239, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5973f51f-fd52-4e41-2b1d-9b188c3d4200/rectcrop3", "profile": {"bio": {"text": "Nice to meet you!!\nLove you\nA fan who loves Warpcast", "mentioned_profiles": []}}, "username": "willie98", "power_badge": false, "display_name": "Willie", "active_status": "inactive", "verifications": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "follower_count": 1517, "custody_address": "0xc38cfa914b6d82d5355c5ae49ab547d9d39b9feb", "following_count": 1787, "verified_addresses": {"eth_addresses": ["0x993a37dd64d8836014c8cc1a8b49a98157a61668"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/RFAVkTLHfqd1NVf77\"}"}', 'sonata'), - (1115927, '0x4c056b5165c43c12ae887aa9b22f0fbd771a7739', 0, 1, '2024-05-07 17:34:09+00', 0, 4, '{"fid": 500371, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7acbb460-b029-47f7-a44d-549b4b8eeb00/rectcrop3", "profile": {"bio": {"text": "Warpcast is good🌸\nLet''s go together🩵\n슈캐 신입 인사드려용", "mentioned_profiles": []}}, "username": "10poon", "power_badge": false, "display_name": "🌈 10poon🎩", "active_status": "inactive", "verifications": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "follower_count": 1774, "custody_address": "0xc4594cf253dcfd3d97b1d03b4045278b7b64bfa7", "following_count": 2801, "verified_addresses": {"eth_addresses": ["0xb4137090d4bb939eb95aa4c47137f39d58988897"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zEvF6pSHaa9WPGvF8\"}"}', 'sonata'), - (1162795, '0xba198fd84ba453b6321fd258fd645896a788a42b', 1310, 1, '2024-05-09 07:56:19+00', 0, 34, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2686, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2187, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4faCmZpskpcM3hrk7\"}"}', 'sonata'), - (1157356, '0xadbe00bbe2c83a4af190973da328b362db33ca15', 0, 1, '2024-05-07 21:06:29+00', 0, 21, '{"fid": 401724, "object": "user", "pfp_url": "https://i.imgur.com/e3Y33jV.jpg", "profile": {"bio": {"text": "DEGEN❤️", "mentioned_profiles": []}}, "username": "tispis", "power_badge": false, "display_name": "YUNSENG🎩🍖", "active_status": "inactive", "verifications": ["0xdca4a67d4e7e1bdfe9144018e1b419d92d666b7d"], "follower_count": 4760, "custody_address": "0xfb2db570d7057c23e16606a8f476de769db3eb32", "following_count": 5172, "verified_addresses": {"eth_addresses": ["0xdca4a67d4e7e1bdfe9144018e1b419d92d666b7d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/zo7WC\"}"}', 'sonata'), - (1173777, '0x36e9681dca306cfd88ff7bad00c48a0c3e495593', 0, 1, '2024-05-16 14:10:33+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/09GY9rmMFHOuH3Z7sGSoKz?si=802a45e63e8c45a5\"}"}', NULL), - (1160133, '0xf7824565e325f258238f8eaef603c8e4d02accff', 0, 1, '2024-05-08 09:59:25+00', 0, 2, '{"fid": 240275, "object": "user", "pfp_url": "https://i.imgur.com/9L9itQk.gif", "profile": {"bio": {"text": "Hi-tech web3 fashion lab", "mentioned_profiles": []}}, "username": "phoebe-heess", "power_badge": true, "display_name": "Gabriel 🎩", "active_status": "inactive", "verifications": ["0x19a23d463b4be0945c05ba4e5aa869adcaa55b08"], "follower_count": 611, "custody_address": "0x6416fc62c5e4f8545fbf5b761e5fa1ee2aa38517", "following_count": 1001, "verified_addresses": {"eth_addresses": ["0x19a23d463b4be0945c05ba4e5aa869adcaa55b08"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/caveman89/sets/tony-touch-power-cypha-12-350-mcs\"}"}', 'vaas'), - (1115699, '0x14a7124e6e1bee7bf4193e62a536a91fb19bd7e3', 0, 1, '2024-05-07 17:30:56+00', 0, 3, '{"fid": 396236, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/de4b576f-ed8f-4569-2104-c13fceacc000/rectcrop3", "profile": {"bio": {"text": "Have a goooood day🌈\nCrypto Trader 365 🚀\nI like tigers that live in Mt. Baekdu in Korea.💕", "mentioned_profiles": []}}, "username": "kimjunwoo76", "power_badge": false, "display_name": "Baekdu Tiger 🎩🍖", "active_status": "inactive", "verifications": ["0x7f929b0198d1e918e7b8e1097f4ed530bf8a2bd5"], "follower_count": 1465, "custody_address": "0xd223e4df089ddf8cb1a0489914a04ef09d009a52", "following_count": 1268, "verified_addresses": {"eth_addresses": ["0x7f929b0198d1e918e7b8e1097f4ed530bf8a2bd5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Ao3jXJukfp3ZRz4QA\"}"}', 'sonata'), - (1107438, '0x7c84b2d0d44c072933b406661a04221ac391c2ca', 0, 1, '2024-05-07 16:44:21+00', 0, 6, '{"fid": 503541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e7bd157f-1901-484d-4e68-9a2d9c7abe00/rectcrop3", "profile": {"bio": {"text": "✔️소소한 일상공유✔️소소한 행복🍀 \n\n✔️The best is yet to come🔥", "mentioned_profiles": []}}, "username": "jmggang", "power_badge": false, "display_name": "PassionJM", "active_status": "inactive", "verifications": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "follower_count": 921, "custody_address": "0x3e587e88dca50b6e3f0b99f2645fefbb283ebe7d", "following_count": 955, "verified_addresses": {"eth_addresses": ["0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/4bsDT677fnQXWHNG6\"}"}', 'sonata'), - (1142430, '0xc87fd269ec5057780c67bb8fa906ce3b56453d39', 0, 1, '2024-05-07 19:58:56+00', 0, 40, '{"fid": 401736, "object": "user", "pfp_url": "https://i.imgur.com/fi9yxl1.jpg", "profile": {"bio": {"text": "/book-reader\nBe beautiful in your own way\n\n", "mentioned_profiles": []}}, "username": "yasamannn79", "power_badge": false, "display_name": "Yasi🎩 🔄", "active_status": "inactive", "verifications": ["0x7e19f07a79f7efa7c4793289bf750cab8f5d8231"], "follower_count": 4509, "custody_address": "0x1c18aa7240537a452c59fd01f30261f3a4e9c025", "following_count": 4950, "verified_addresses": {"eth_addresses": ["0x7e19f07a79f7efa7c4793289bf750cab8f5d8231"], "sol_addresses": ["Tpy2DefjKFVsRMJa3TSJdTM8USVeFpigMSf5XS5SGRm"]}}', '{"{\"url\":\"https://on.soundcloud.com/cgBvVeqGLC3snZQM6\"}"}', NULL), - (1099838, '0x60245b24aba985a61d6bc87d67e0d2871406194a', 0, 1, '2024-05-07 16:08:55+00', 0, 14, '{"fid": 505603, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47eeb8a8-f211-40cb-172c-3d77ad7d0500/rectcrop3", "profile": {"bio": {"text": "I like NFT / Comic / Food / Webtoon / Thank you for visiting my profile", "mentioned_profiles": []}}, "username": "lamu", "power_badge": false, "display_name": "lamu🍖🎩🔵⛓️", "active_status": "inactive", "verifications": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "follower_count": 645, "custody_address": "0x23a630acd179f0de5d44291f5cbefd5e41b8ce12", "following_count": 758, "verified_addresses": {"eth_addresses": ["0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/atlanticrecords/hugh-jackman-keala-settle-zac-efron-zendaya-the-greatest-showman-ensemble-the-greatest-show?si=3cf42fc652a749b786497c7e4a2cf9d3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'banmal-mode'), - (1114027, '0xc3e16db931c0a52c16795ab95e00e479ffaa6a94', 0, 1, '2024-05-07 17:14:55+00', 0, 1, '{"fid": 237763, "object": "user", "pfp_url": "https://i.imgur.com/xMlNksi.jpg", "profile": {"bio": {"text": "Adventuring through web3", "mentioned_profiles": []}}, "username": "0xadventurer", "power_badge": false, "display_name": "0xadventurer", "active_status": "inactive", "verifications": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "follower_count": 60, "custody_address": "0x2ce9b30eee00b8bcb204a1b9976db7316c21b4f1", "following_count": 221, "verified_addresses": {"eth_addresses": ["0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/LwUrpBzuh8PfpBzy6\"}"}', NULL), - (1134066, '0x41ee1d9068e2550ab6d418481cc242a6079a31a8', 0, 1, '2024-05-07 18:49:09+00', 0, 1, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 277, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 83, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/0BIlAz7ARwrHrGdJANZjfw?si=ca5162645141460a\"}"}', 'sonata'), - (1154385, '0x936dddc3108d04337aac9debbc434559e4452629', 0, 1, '2024-05-07 20:51:54+00', 0, 21, '{"fid": 397174, "object": "user", "pfp_url": "https://i.imgur.com/DX0DVSk.jpg", "profile": {"bio": {"text": "₿ maxi/ nature addict 🌱/ movie lover 🎥/ photographer 📷/ anime fan 🫰", "mentioned_profiles": []}}, "username": "houron", "power_badge": false, "display_name": "Houron", "active_status": "inactive", "verifications": ["0x71e1da43dc166fb3e14612b19d6c0f86e0750a2f", "0xd010f4db0e7b64176cb40d5fb301d5193dc80223"], "follower_count": 1589, "custody_address": "0xe29d7759f9623b542086d89e0f30b4be31243bd3", "following_count": 1596, "verified_addresses": {"eth_addresses": ["0x71e1da43dc166fb3e14612b19d6c0f86e0750a2f", "0xd010f4db0e7b64176cb40d5fb301d5193dc80223"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/y0umakemesmile/fix-you-coldplay?ref=clipboard&p=a&c=0&si=00e9dc8c3f3a41c49c441b85db91b58a&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1142465, '0xba449cdf927952bf7b3bc80bd1d27138cbbe0283', 0, 1, '2024-05-07 19:58:44+00', 0, 1, '{"fid": 380202, "object": "user", "pfp_url": "https://i.imgur.com/ZW9Qiww.jpg", "profile": {"bio": {"text": "생활정보/보도자료/축제/여행/맛집/좋은글/코인뉴스/친구\nKorea Life Information/Festival Information/Travel/Food/Good Articles/Coin News", "mentioned_profiles": []}}, "username": "sbs0918", "power_badge": false, "display_name": "JUPITER🎩🍖🔵", "active_status": "inactive", "verifications": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "follower_count": 2125, "custody_address": "0xade954bae927ad74c84b1969af431f2e8663b1cb", "following_count": 2673, "verified_addresses": {"eth_addresses": ["0x9e44938f1bfc12f35776571bb2b43368ec366940"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/rEY7p\"}"}', 'sonata'), - (1117295, '0x7c08c1ffc5754f9423a8bab209f76fd5058f3ac3', 0, 1, '2024-05-07 17:39:01+00', 0, 4, '{"fid": 503790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e92c9777-5394-45a4-7518-73d3be8aa800/rectcrop3", "profile": {"bio": {"text": "🌈 Let''s be happy.🌈", "mentioned_profiles": []}}, "username": "newhong", "power_badge": false, "display_name": "Newhong", "active_status": "inactive", "verifications": ["0xf71fab0a159428e9d4d4dc731f914eee487ffeb0"], "follower_count": 716, "custody_address": "0x5cf0fb03f51be46c30f38ac9ff57d7e387944abd", "following_count": 935, "verified_addresses": {"eth_addresses": ["0xf71fab0a159428e9d4d4dc731f914eee487ffeb0"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/H5PTExmXAYPSejnK7\"}"}', 'sonata'), - (1160310, '0x7763ec4ff47f3d908a8b2b6a0959286cf5a968a2', 0, 1, '2024-05-08 19:51:05+00', 0, 1, '{"fid": 8760, "object": "user", "pfp_url": "https://i.seadn.io/gae/2XD5j62V9kGes2pQ_5g_C41V_KKahOeimKvQfbyNXbx5HnBiNwe0m3pnqCpSwAbL6oyjUNaEPs_WrMdDOqh7h0TZyt96v8FmPcddyQ?w=500&auto=format", "profile": {"bio": {"text": "Staying up late at night wondering what the unrealized possibilities of Farcaster may be.", "mentioned_profiles": []}}, "username": "hderek22", "power_badge": true, "display_name": "Derek Hall", "active_status": "inactive", "verifications": ["0x33965b61b2f76dc0cd158d3ac67ddcf481e22704"], "follower_count": 511, "custody_address": "0xb83bdc8893f9163d427714ab87987407540a9c4d", "following_count": 670, "verified_addresses": {"eth_addresses": ["0x33965b61b2f76dc0cd158d3ac67ddcf481e22704"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2D5bUcNHDDMvXcd0jKWhtk?si=0VIITReISqWOPpgIhWhySQ&context=spotify%3Aplaylist%3A37i9dQZF1E4zTGY8m01R6i\"}"}', NULL), - (1161818, '0xc75f2fd3f40d208a0d07c8ebe6ca65d09685a011', 5000, 1, '2024-05-09 02:14:28+00', 0, 20, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3581, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6aLordjqTyTZQw1R6\"}"}', 'musicjp'), - (1115472, '0x6cb8ce86525563d0b5d046f9d7b1a0acc01e6794', 0, 1, '2024-05-07 17:29:30+00', 0, 1, '{"fid": 503566, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b01a50b5-1f0f-48eb-1931-ed7492d58600/rectcrop3", "profile": {"bio": {"text": "Have a nice day :)", "mentioned_profiles": []}}, "username": "gracerabbit", "power_badge": false, "display_name": "GraceRabbit", "active_status": "inactive", "verifications": ["0x2cf86245b496e3db44e876a428dc9714604f6041"], "follower_count": 1029, "custody_address": "0x861e43ef1caa752bc69ea9b0c7fbda8c35ecab3c", "following_count": 883, "verified_addresses": {"eth_addresses": ["0x2cf86245b496e3db44e876a428dc9714604f6041"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/l2shareost11/ailee-i-will-go-to-you-like-the-first-snow-goblin-ost-part-9?si=26b02645a5064231ad953e1c958b3ec6&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1158915, '0x2089cdedd8f00f29ef09957b9da0b6cfdcd9e937', 0, 1, '2024-05-07 21:13:03+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1499, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 317, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f6faae16-6115-4d89-8885-3bff4cba3bdc?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', 'drakula'), - (1134067, '0xd0bea8d1ea621448bdf74ebb8a12a20476abbb6f', 0, 1, '2024-05-07 18:48:52+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9332, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 17, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/ec27069b-1da4-466c-a9e8-5179604c46d7\"}","{\"url\":\"https://www.sound.xyz/jutes/born-to-lose\"}"}', NULL), - (1161386, '0xd0fc4c0de34c82b45d6dde41c534833e705d8332', 0, 1, '2024-05-08 23:14:28+00', 0, 1, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 587, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 524, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/playerdave/circling?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (1162789, '0x04b83d7aa83661ffedde3dca995e384a2229c49c', 0, 1, '2024-05-09 07:54:41+00', 0, 17, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2smwoqC4tvD48mk7WgdTRv\"}"}', 'sonata'), - (1162454, '0xde20c5f4e4797b66020d0488c23e2b31178c6b93', 0, 1, '2024-05-09 05:59:52+00', 0, 3, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 313, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 261, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4E2XQPB1tO48Q7xtnXzDUG?si=FucrobJySKeBvccL2G7FJA&context=spotify%3Aalbum%3A32Qyg4f5BUL4GaRkd84Iyn\"}"}', 'bangers'), - (1033103, '0x0fa4f6633dd0aea70744d082acea9bfbc85e605a', 1000, 1, '2024-05-07 13:24:51+00', 0, 5, '{"fid": 402923, "object": "user", "pfp_url": "https://i.imgur.com/gaAPtfu.jpg", "profile": {"bio": {"text": "My Channel→\n/restarea\nSweets&Snacks\n\n/pachinko\nパチンコ&スロット\n\n/fishingood\nfishing釣り\n\n/fishigood\n懺悔-Confession Channel\nお返しは大丈夫です🙆‍♂️\nいいキャストにチップkudasai😊", "mentioned_profiles": []}}, "username": "siokaratombo", "power_badge": false, "display_name": "siokaratombo🍖🔮", "active_status": "inactive", "verifications": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "follower_count": 969, "custody_address": "0x14b19445dd6fb33daa1b55bd98773717d20834d2", "following_count": 1125, "verified_addresses": {"eth_addresses": ["0xd252cce759e85d247e5151940791aa6081c9af75", "0xf3a46261c5262ec3876dac537f398845d23f89f6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/wataru-tamatsu/baxuyivwatyd?si=ac9a55e0a9fb46a3852baef166614ea3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'musicjp'), - (1116698, '0xedcf3445d179c7b7e573ba177f6ffd3c5140a0a3', 1300, 1, '2024-05-07 17:37:09+00', 0, 5, '{"fid": 394930, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2c62208a-db73-4e89-6e6d-8537be7df100/rectcrop3", "profile": {"bio": {"text": "Top 100 replyguy. That’s it, that’s the bio.", "mentioned_profiles": []}}, "username": "esish.eth", "power_badge": false, "display_name": "E30SH⛓️🎩", "active_status": "inactive", "verifications": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "follower_count": 1280, "custody_address": "0x1b6902812978e68b00ce878acc9d1ab42f4af60c", "following_count": 682, "verified_addresses": {"eth_addresses": ["0x635de30486d44277080b5c823656f3116c0ceefd", "0xa2cdbdacc2a955fce959106ab7e3548034aee1c1"], "sol_addresses": ["D1vLxcHLZ2w87wrTniAiDmdQoVMrqG1vsSoCU6uAuT9k"]}}', '{"{\"url\":\"https://open.spotify.com/track/6LyAwkJsHlW7RQ8S1cYAtM?si=du62qPpES3GeW18s-ELQdA\"}"}', 'bangers'), - (1112425, '0xd0bbffa3336aaa632bb1121cb5c43d8cf92c0717', 0, 1, '2024-05-07 17:06:35+00', 0, 6, '{"fid": 499057, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92eb5b0b-027b-405c-550d-59f4268c8000/rectcrop3", "profile": {"bio": {"text": "Shiba will save the world🐾 존대말을 못배운 카와이시바 4가지없는게 아니야! 은혜는 무조건 갚는 카와이시바!", "mentioned_profiles": []}}, "username": "kawaiishiba", "power_badge": false, "display_name": "Kawaii_Shiba🎩", "active_status": "inactive", "verifications": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "follower_count": 1111, "custody_address": "0x1fd5449710120b982115e31881eb221ef9979283", "following_count": 1259, "verified_addresses": {"eth_addresses": ["0x6290c52f1dfc02770398323e7935e1a2e5f1263e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/1231234as/changmo-feat-paul-blanco?si=a0ef41ad64fa456e850d8f2a2f013ead&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1107436, '0xbdca6fb0fce29bef41ba1bfa72d965e0fa6cec3e', 0, 1, '2024-05-07 16:42:21+00', 0, 0, '{"fid": 427654, "object": "user", "pfp_url": "https://i.imgur.com/atrcHtA.jpg", "profile": {"bio": {"text": "帽子はあの有名ブランド、メタマスクです🦊\n積極的に絡んでいきますのでよろしくどうぞ🤘\nAlfaFrensもやっとりますのでこちらもよろしくっス!", "mentioned_profiles": []}}, "username": "chianti", "power_badge": false, "display_name": "chianti🐲🎩🔥", "active_status": "inactive", "verifications": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "follower_count": 302, "custody_address": "0xd0698c5468a0e65f51a002502f392954d923d49f", "following_count": 337, "verified_addresses": {"eth_addresses": ["0xe307e9682dcb002e8af4543b071c36aa02c8e850"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ferry-corsten/gouryella-gouryella-radio-edit?si=e8574520b3c04d06be7bb841aa2178a4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1098257, '0x4842d3c9b1d28e4fbd21ff6221f6c223b0cec261', 2510, 1, '2024-05-07 16:09:00+00', 0, 2, '{"fid": 210731, "object": "user", "pfp_url": "https://i.imgur.com/HxRvUlK.jpg", "profile": {"bio": {"text": "Building /oval - a newborn creative community in Barcelona. Contributor @crowdmuse.", "mentioned_profiles": []}}, "username": "imalvarodelgado", "power_badge": true, "display_name": "alvaro delgado", "active_status": "inactive", "verifications": ["0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e"], "follower_count": 1191, "custody_address": "0xdddcf72a30755ea26e06016cf9b53b72d582956e", "following_count": 322, "verified_addresses": {"eth_addresses": ["0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/cella/its-you?referral=0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e&referral_source=link\"}"}', NULL), - (896607, '0x046b2cffe35e2f9092903fb2f004bde0f8432828', 0, 1, '2024-05-07 06:40:42+00', 0, 5, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/11d25945-614c-4f57-0e82-2a5992f10900/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xb8009403e3f3218a15b77704e0b82c06e385a456"], "follower_count": 105, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xb8009403e3f3218a15b77704e0b82c06e385a456"], "sol_addresses": ["bk95SBqEYhfhFWkzqus25Yzeq9EBVmsCnGHeZrG6YCn", "bk95SBqEYhfhFWkzqus25Yzeq9EBVmsCnGHeZrG6YCn", "bk95SBqEYhfhFWkzqus25Yzeq9EBVmsCnGHeZrG6YCn"]}}', '{"{\"url\":\"https://www.sound.xyz/tiatia/summer-08?referral=0xaf5735cc5d392e54e92a54be30c3aacfa16a0096&referral_source=link\"}"}', NULL), - (1101879, '0xdf98fe949687b8ccf03a1c1a0c50af4b988b08c4', 0, 1, '2024-05-07 16:17:45+00', 0, 2, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 111, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 323, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://soundcloud.com/parquetrecordings/kamilo-sanclemente-galactic?in=parquetrecordings/sets/kamilo-sanclemente-intense-delirium-galactic-dust-parquet255\"}"}', NULL), - (840190, '0x57632d531bd613cc6ccefab8430028607287fd4a', 0, 1, '2024-05-07 05:01:49+00', 0, 3, '{"fid": 217510, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9bb50201-f24b-406e-3ac7-0bd764f0d100/original", "profile": {"bio": {"text": "⌐◨-◨🔵🌞| Fella #165 | Outcasts📚 #361 | Swatch #0397", "mentioned_profiles": []}}, "username": "howabtg.eth", "power_badge": false, "display_name": "tranvgiang🔵🎩⛓️🔮", "active_status": "inactive", "verifications": ["0x4662b891269e2196e67cca73e4b7812dd91c7ae3"], "follower_count": 761, "custody_address": "0x3eba0e2ac012437075f393d884f6d4b8dedf3b9b", "following_count": 668, "verified_addresses": {"eth_addresses": ["0x4662b891269e2196e67cca73e4b7812dd91c7ae3"], "sol_addresses": ["6aCVx4HAdBBdfaQst4FiT6M6LoKaD11h6Bwfbq3iKyJ4"]}}', '{"{\"url\":\"https://www.sound.xyz/reocragun/streamz-collect-to-earn-sstrm?referral=0x4662b891269e2196e67cca73e4b7812dd91c7ae3&referral_source=link\"}"}', NULL), - (1160265, '0xc80d2a8f1fcad1fbe551ecfa89439ac273b02a01', 2120, 1, '2024-05-08 17:39:23+00', 200, 7, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=2CJLl4yFRhK-xrbO73K9iw\"}"}', NULL), - (1153895, '0x201c3a025a8f84afc9ca1408463d8059086aaec5', 0, 1, '2024-05-07 20:49:47+00', 0, 2, '{"fid": 437274, "object": "user", "pfp_url": "https://i.imgur.com/PBnvs6J.jpg", "profile": {"bio": {"text": "i love degen\ni love family", "mentioned_profiles": []}}, "username": "kimjeonghwa", "power_badge": false, "display_name": "Kimjeonghwa", "active_status": "inactive", "verifications": ["0x2dbb3d82064faaf500cf74dc92cafb91e493d390", "0x2dbb3d82064faaf500cf74dc92cafb91e493d390"], "follower_count": 2683, "custody_address": "0x83e6c760de9a0a70c5b44541060273956d29c5d2", "following_count": 1879, "verified_addresses": {"eth_addresses": ["0x2dbb3d82064faaf500cf74dc92cafb91e493d390", "0x2dbb3d82064faaf500cf74dc92cafb91e493d390"], "sol_addresses": []}}', '{"{\"url\":\"Listen to 윤도현 사랑two by deeplyshocke on #SoundCloud https://on.soundcloud.com/iDhBy\"}"}', NULL), - (1141383, '0x6c6c88ed0d92cf85aacde8464c0650b47902e4a3', 0, 1, '2024-05-07 19:55:31+00', 0, 4, '{"fid": 458404, "object": "user", "pfp_url": "https://i.imgur.com/yHpvwyC.jpg", "profile": {"bio": {"text": "Music, films, books, rugby, bàsquet. Engineer, MBA. Visca la Terra Lliure! Gironí i català. Tsool, Stooges, 13th Floor Elevators, The Velvet Underground, ...", "mentioned_profiles": []}}, "username": "jpoubaez", "power_badge": false, "display_name": "Joan", "active_status": "inactive", "verifications": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "follower_count": 49, "custody_address": "0x7ff5f4af616edc48203d36bb2325848f44e15e46", "following_count": 164, "verified_addresses": {"eth_addresses": ["0xf9b39beabc953787c4689836fe01f2bd0dd8d28f"], "sol_addresses": []}}', '{"{\"url\":\"Listen to My Own Summer (Shove It) by Deftones on #SoundCloud https://on.soundcloud.com/34csA\"}"}', NULL), - (1160253, '0x6ed4a9684b28e5d5bac02ac45c33f0186bb1247f', 0, 1, '2024-05-08 15:58:25+00', 0, 3, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/lyrah/coming-back\"}"}', NULL), - (1158753, '0x1f7b918aa1dbec4e8b4079f763cbef59aa39894d', 10, 1, '2024-05-08 04:14:43+00', 0, 9, '{"fid": 761, "object": "user", "pfp_url": "https://i.imgur.com/76SEpAy.jpg", "profile": {"bio": {"text": "Partnerships for PoolTogether, Silly Songs for Wassies", "mentioned_profiles": []}}, "username": "timcox", "power_badge": true, "display_name": "tim", "active_status": "inactive", "verifications": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "follower_count": 2369, "custody_address": "0xf26bb67ac1be7ef0c4002f178e2da73d87e20316", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "sol_addresses": ["AN4Mfb82QRDMAYBE6HGuUMxVFGUBNBMQ7iXpj3x2iN4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/2bxQP85JNU11CQV4KXCnau?si=C1bveH4-Tz25Lw-S7q17EQ\"}"}', NULL), - (1134312, '0x89b57c58d05c1762b8e9e1d9bfa5d321e0fc0c4e', 0, 1, '2024-05-07 18:49:44+00', 0, 1, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": false, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 270, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 83, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/0BIlAz7ARwrHrGdJANZjfw?si=ca5162645141460a\"}"}', NULL), - (1173782, '0xedfe703d711f96602f1eaa0163b4591f087cdff4', 1000, 1, '2024-05-16 14:11:43+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6SSxl29fafHgQWESWdjXQQ?si=0e74b377d05841e1\"}"}', NULL), - (1106767, '0x960af9d4f5c1260cd08578ed5a14fa030f152022', 0, 1, '2024-05-07 16:39:22+00', 0, 7, '{"fid": 240835, "object": "user", "pfp_url": "https://i.imgur.com/EozZCWk.png", "profile": {"bio": {"text": "Knowledgeable broke anon", "mentioned_profiles": []}}, "username": "kenanie.eth", "power_badge": true, "display_name": "kenanie.eth", "active_status": "inactive", "verifications": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "follower_count": 2526, "custody_address": "0xc6dd7067493b6dd22f56f61fc72d8980bf883e1f", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "sol_addresses": ["C4Bg7Xa4nnY2Ty5j4j99nEwoP23YzK6SCDPTHVfHTkv7"]}}', '{"{\"url\":\"https://open.spotify.com/track/30MQSL5JdjYhhWQKwudYt3?si=iP_6beVRS2SClTxSPw-KAg\"}"}', 'sonata'), - (1117339, '0x04d12b42744131a1676eee433d33c9f17c2ae205', 0, 1, '2024-05-07 17:39:13+00', 0, 0, '{"fid": 378416, "object": "user", "pfp_url": "https://arweave.net/m84NL03kUMq2EjhKdu6k5yZW-hvdgSL7YkY1wpRpKo8/", "profile": {"bio": {"text": "Medic\nI like warpcast ", "mentioned_profiles": []}}, "username": "amin-phantom", "power_badge": false, "display_name": "Amin 🔄🎩👽🍕", "active_status": "inactive", "verifications": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "follower_count": 1253, "custody_address": "0xbd1ca5951b4cdec1522e3b9a21d2d848d0fc6628", "following_count": 1368, "verified_addresses": {"eth_addresses": ["0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535"], "sol_addresses": ["DWgaBv9RhLQyboeEN1UkPebDz8i7Lz9rtDJADF84bYEC"]}}', '{"{\"url\":\"https://on.soundcloud.com/ppAo1sRNSdqqvL3g6\"}"}', NULL), - (1143461, '0x42c91250ed39c50623b81c723834c1e3383d76ba', 430, 1, '2024-05-07 20:02:49+00', 0, 2, '{"fid": 480671, "object": "user", "pfp_url": "https://i.imgur.com/1IB5Z9l.jpg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "cinnamon0", "power_badge": false, "display_name": "cinnamon", "active_status": "inactive", "verifications": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "follower_count": 1145, "custody_address": "0xa7b8eddf4b8b6850fe3d852c6cec7b16e3682015", "following_count": 1532, "verified_addresses": {"eth_addresses": ["0xfd012709d312eae776a49e6e5b9b3b13eb181428"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/johnmayer/gravity?si=d7af5fd4e0a14d5696bd492871d74d49&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1115077, '0x6420bb30da2f868a3c0d235ba4a102797776993d', 0, 1, '2024-05-07 17:22:34+00', 0, 0, '{"fid": 318525, "object": "user", "pfp_url": "https://i.imgur.com/FUNX0zY.jpg", "profile": {"bio": {"text": "Greek Multidisciplinary Artist \n\nMusic streaming under SAINT KYRIAKI\n\nPodcaster “Shes All Over the Place” \n\nOn-screen actor and VO talent", "mentioned_profiles": []}}, "username": "chonacas", "power_badge": false, "display_name": "Katie Chonacas ", "active_status": "inactive", "verifications": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "follower_count": 38, "custody_address": "0xe4991be6fc21933c8ead259abfb18b13e4dd75df", "following_count": 131, "verified_addresses": {"eth_addresses": ["0x2759583d1a8ed59f695ac74020a7170f6c672087"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/saintkyriaki/depression-anxiety-paint-suffering-trauma-internationally?referral_source=link\"}"}', 'djs'), - (1134071, '0xbc617b9abbf42e1c7a060676c35d137914b43cb2', 1300, 1, '2024-05-07 18:49:06+00', 10, 4, '{"fid": 838, "object": "user", "pfp_url": "https://arweave.net/7hFATkROyNx10j_d_VQJmMSX2-20k5WmcTikN0al5UU/", "profile": {"bio": {"text": "creating kismet", "mentioned_profiles": []}}, "username": "luciano", "power_badge": true, "display_name": "Luciano ", "active_status": "inactive", "verifications": ["0x2bbcac12706b47428664d553af33caf33684ef31"], "follower_count": 1591, "custody_address": "0x032bc5b455d99fb8e0c8270296a3b7116f099554", "following_count": 353, "verified_addresses": {"eth_addresses": ["0x2bbcac12706b47428664d553af33caf33684ef31"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/xcelencia/chimbita?referral=0x2bbcac12706b47428664d553af33caf33684ef31&referral_source=link\"}"}', 'soundxyz'), - (1134608, '0x2202cf7b4dd60edf239071d1fc8ddb52a5336384', 0, 1, '2024-05-07 18:54:28+00', 10, 18, '{"fid": 509267, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f1ad2d36-bf56-4b2e-ee07-6e4fc2d98000/rectcrop3", "profile": {"bio": {"text": "I came from the darkness to the colorful world and\nI return from the colorfulness of the universe to the darkness of unity...", "mentioned_profiles": []}}, "username": "!509267", "power_badge": false, "display_name": "DrH", "active_status": "inactive", "verifications": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "follower_count": 359, "custody_address": "0x3987a9a108e20e705fece41f2ee3a49a25cd0f05", "following_count": 786, "verified_addresses": {"eth_addresses": ["0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2", "0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6S7hw4hkBTSVZ9zCA\"}"}', NULL), - (1141105, '0x8d4d1dbc7a71883a194c07ab02c249bb3b71fc32', 0, 1, '2024-05-07 19:52:36+00', 0, 28, '{"fid": 240835, "object": "user", "pfp_url": "https://i.imgur.com/EozZCWk.png", "profile": {"bio": {"text": "Knowledgeable broke anon", "mentioned_profiles": []}}, "username": "kenanie.eth", "power_badge": true, "display_name": "kenanie.eth", "active_status": "inactive", "verifications": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "follower_count": 2608, "custody_address": "0xc6dd7067493b6dd22f56f61fc72d8980bf883e1f", "following_count": 327, "verified_addresses": {"eth_addresses": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "sol_addresses": ["C4Bg7Xa4nnY2Ty5j4j99nEwoP23YzK6SCDPTHVfHTkv7"]}}', '{"{\"url\":\"https://open.spotify.com/track/65jw6GhwQW3Db55PxlPEpS?si=q2PaBguDSPKdkF2LdshuCQ\"}"}', 'paidgroup'), - (1173783, '0xf6109604267563b2cc5659d6db23a3bc653af8e8', 3000, 1, '2024-05-16 14:12:09+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/20yPPvSSfIomexVwLdgXSo?si=fa8367f82d994e60\"}"}', NULL), - (1101898, '0x2ddfc38a15db6ebcf8d98a5f4095d8f6eedc6e43', 0, 1, '2024-05-07 16:17:58+00', 0, 1, '{"fid": 377951, "object": "user", "pfp_url": "https://i.imgur.com/MCppJKj.gif", "profile": {"bio": {"text": "From Japan\nenjoy crypto / Air drop / dreamer\n\nConecting people. Fl me and FI back 100%🫶💯", "mentioned_profiles": []}}, "username": "dork99999.eth", "power_badge": false, "display_name": "Ryoz 🎩🍖🔮🔵🧀⛓️", "active_status": "inactive", "verifications": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "follower_count": 914, "custody_address": "0x5d0569c077ffb404e76de9f1fc6b39c2536f0ebf", "following_count": 1477, "verified_addresses": {"eth_addresses": ["0xc3412f114f6e9fd49ad91468352d10f599dd9401"], "sol_addresses": ["BXa9GMPHPJs8E7zHmcQWzqhYgNVkaaCSwFx5kmeKV1Ja"]}}', '{"{\"url\":\"https://on.soundcloud.com/JSqqHJ4sf9A9pDkL6\"}"}', 'musicjp'), - (1134954, '0x56ed126a3de387c3ca662fc9fd3a716143452170', 0, 1, '2024-05-07 18:57:21+00', 0, 2, '{"fid": 506199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e90fbe6f-084c-4706-99bc-53decf1f0300/rectcrop3", "profile": {"bio": {"text": "I am male and married. I am 29 yeaor 4 yearr old and have a son :). I am interested in sports and music and movies. And now here im am :)", "mentioned_profiles": []}}, "username": "ehsanwonder", "power_badge": false, "display_name": "Ehsan Mansouri", "active_status": "inactive", "verifications": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "follower_count": 160, "custody_address": "0x5b44b40658f4a30c17cbf43d7dd6e80d0fca2814", "following_count": 218, "verified_addresses": {"eth_addresses": ["0x6195651571097bb7cb2c8f0846e0d91b0c2505f2"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trending-music-de/sets/techno?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1158179, '0x9dcda10857fa96a4f8a82fbeec10be53a1189ab0', 1186, 1, '2024-05-07 21:10:24+00', 0, 40, '{"fid": 394424, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafkreieh2qomxtz34ls5s7vtr7d2by6bjbv5mst5dgryvxhtduf7zvqwte", "profile": {"bio": {"text": "❤️ I love you ~~\n Have a happy day~ 🌈🌅", "mentioned_profiles": []}}, "username": "moyaa", "power_badge": false, "display_name": "Moyaa🎩🍖", "active_status": "inactive", "verifications": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "follower_count": 2735, "custody_address": "0x051dc31fe553cd48a42c98fd7300095bb0d3b84f", "following_count": 2903, "verified_addresses": {"eth_addresses": ["0xa622464a9dc624523a175bd5cf6d44175538334d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GwKX6EbiTpP5MnV77\"}"}', 'sonata'), - (1157963, '0x285460b3909b24b476d9c0c8f5e23169170c0422', 0, 1, '2024-05-07 21:08:28+00', 0, 6, '{"fid": 461146, "object": "user", "pfp_url": "https://i.imgur.com/Ra3wWuT.jpg", "profile": {"bio": {"text": "I''m 35 year old one of interesting of web and internet", "mentioned_profiles": []}}, "username": "subhan68", "power_badge": false, "display_name": "Subhan", "active_status": "inactive", "verifications": ["0x74ae9c2a2cd699302a90156a17658a180e378ac4"], "follower_count": 134, "custody_address": "0x025973294b87fbf1b675b7d084ae17da5fec1d76", "following_count": 183, "verified_addresses": {"eth_addresses": ["0x74ae9c2a2cd699302a90156a17658a180e378ac4"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/user-584433922/sniper?in=trending-music-jp%2Fsets%2Fhouse\"}"}', NULL), - (1126479, '0xe5c4ff387c9eb17498c4d079e73e8742af642aa6', 2010, 1, '2024-05-07 18:18:05+00', 0, 1, '{"fid": 401790, "object": "user", "pfp_url": "https://i.imgur.com/AkfFQVS.jpg", "profile": {"bio": {"text": "My music sounds better with you!", "mentioned_profiles": []}}, "username": "iamgeorgehooks", "power_badge": false, "display_name": "George Hooks", "active_status": "inactive", "verifications": ["0xb9c18a66a45ee459ecffb7feb44b32665230d677"], "follower_count": 16, "custody_address": "0x4a6feffdb7f3fb452431e9fd742f510c8d0cabbb", "following_count": 144, "verified_addresses": {"eth_addresses": ["0xb9c18a66a45ee459ecffb7feb44b32665230d677"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/iamgeorgehooks/love-me\"}"}', NULL), - (1160117, '0xc2ccfae615ae980d97ade0fa6c6562d6f5dd8dcb', 0, 1, '2024-05-08 11:44:17+00', 0, 10, '{"fid": 169, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/fWnQF5IzaerIcPn5rPHvl4oENtum0Jr2M5wxtC99L2c0ELGPD9WzgxhlgeybhUrO-LueMKSYgBWyhKcT5wydRotxpONeNJaP78t2nA", "profile": {"bio": {"text": "I am a VC", "mentioned_profiles": []}}, "username": "fredwilson.eth", "power_badge": true, "display_name": "fredwilson", "active_status": "inactive", "verifications": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "follower_count": 4664, "custody_address": "0x6e6dc9975c7b820c235649924b4ab20068100e76", "following_count": 127, "verified_addresses": {"eth_addresses": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/B4Rpw\"}"}', 'sonata'), - (1160128, '0xebbf590ae90497261c083e7b9a8fefed0b056fb8', 1000, 1, '2024-05-08 09:28:10+00', 0, 13, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2285, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 916, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://open.spotify.com/track/1bhF1dbIKLXbVW2QupmvJl\"}"}', 'musicjp'), - (1160690, '0x5b88874948773cdf8a6ca8cb7915054de8c07369', 0, 1, '2024-05-08 00:30:59+00', 0, 0, '{"fid": 3872, "object": "user", "pfp_url": "https://i.imgur.com/RRU7UUA.jpg", "profile": {"bio": {"text": "Web3 fashion-tech consultant & ex-sr designer @ FILA // copperglobal.io.\n\nFounder/artist @ slowcrypto.com", "mentioned_profiles": []}}, "username": "slowcrypto", "power_badge": true, "display_name": "_slow_crypto 🎩🤷‍♂️", "active_status": "inactive", "verifications": ["0x7b994e111cd89c9391be815fa6fcd6ef2abfd053"], "follower_count": 22864, "custody_address": "0xa1b4e33bace4806c215bb0f8ca76b659a96adef8", "following_count": 1672, "verified_addresses": {"eth_addresses": ["0x7b994e111cd89c9391be815fa6fcd6ef2abfd053"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0EKmlWRZxxz8FXm7YIfr1N?si=CI-7uBqMTs-aCE-CrNFRPA\"}"}', NULL), - (1160681, '0x637f7c5e0db502677bdb39ae07f815f9e2da7aba', 0, 1, '2024-05-07 23:49:17+00', 0, 0, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 329, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 356, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3sDUkC4YZjdvF5jO9nJItK?si=m17rAjW0Q86StOMC0nKY8w&context=spotify%3Aalbum%3A1bJ7SFKnVcexGafRpKmLKO\"}"}', NULL), - (1162711, '0xff93a084985910f18b196e4841153fbfe476dfa7', 0, 1, '2024-05-09 07:32:30+00', 0, 7, '{"fid": 461236, "object": "user", "pfp_url": "https://i.imgur.com/ll655LQ.jpg", "profile": {"bio": {"text": "Welcome to the digital portal of Maheenblues.. It gets Blue here 🔵\n\nhttps://linktr.ee/maheenblues\n\nArtist | Curator | Speaker ", "mentioned_profiles": []}}, "username": "maheenblues", "power_badge": true, "display_name": "Maheenblues", "active_status": "inactive", "verifications": ["0x3164623c29c8d60c7d84b7c3544c596c02167e72", "0x6797fb2aaf47620b900d0506248577e00b4a56e4"], "follower_count": 741, "custody_address": "0x6456bc0b416bbcf9120f82bc3f376deb1bce1a12", "following_count": 575, "verified_addresses": {"eth_addresses": ["0x3164623c29c8d60c7d84b7c3544c596c02167e72", "0x6797fb2aaf47620b900d0506248577e00b4a56e4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1rIoZ8H3v3InBt8YbMBapx?si=6FDTxIUeQgOQXm1GigWeDw&context=spotify%3Aplaylist%3A2NfZsx2aKXqICGY8NojPJri\"}"}', NULL), - (1160710, '0xffa40a22d930ae1d6a9bb60dd52a4436c7d93b69', 0, 1, '2024-05-07 23:58:22+00', 0, 5, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🟣🍖⛓🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 680, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 710, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/jamescarterpresents/shape-of-you\"}"}', NULL), - (1160135, '0x36c971382e858c28f662f791fc3966afd6953f0f', 10000, 1, '2024-05-08 09:44:40+00', 0, 13, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2285, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 916, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://on.soundcloud.com/v6Uex7Q7auzpLvxCA\"}"}', 'jp'), - (1173770, '0xa9942a63da2b4427d31f04da8fdcb7151aa21167', 1000, 1, '2024-05-16 14:11:13+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/31aF4GXwVcAzN5KO7gWgF9?si=0fb95b8ef8d347f8\"}"}', NULL), - (1173781, '0x7bf0eb37709f3b9cdd0c18e4eb0176a209fcbe70', 2000, 1, '2024-05-16 14:12:19+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0sQtXrIlhcOuMqhPhCyF7I?si=e59c92df004c499f\"}"}', NULL), - (1173779, '0x1894ae60efaf52b618b834b59fa81b6dc60e780b', 2000, 1, '2024-05-16 14:12:00+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5DYD4zlGiFlkpLaf2Bk8Vl?si=f4ae3e16a53c40d7\"}"}', NULL), - (1173746, '0x295d1f3ec5b7ee21155304390b19a414377d9da3', 4000, 1, '2024-05-16 10:23:38+00', 100, 0, '{"fid": 318473, "object": "user", "pfp_url": "https://i.imgur.com/IqDY0fX.jpg", "profile": {"bio": {"text": "musician + designer 🌟 ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ ‎ host /creator | follow → x.com/pasteleth", "mentioned_profiles": []}}, "username": "leopastel", "power_badge": true, "display_name": "pastel ← leo ꓽꓽ)", "active_status": "inactive", "verifications": ["0xc6729c943584fe18345b5551599a8fa3e14d432a"], "follower_count": 1065, "custody_address": "0xcbd722e3f9f32df3b8fad1aa23568d8af12a941c", "following_count": 507, "verified_addresses": {"eth_addresses": ["0xc6729c943584fe18345b5551599a8fa3e14d432a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Wj7APHHjPPWKxWNd6\"}"}', 'sonata'), - (1173784, '0x2f86914c7d95619ca0257bc29f28e7ed29ba3c9e', 2000, 1, '2024-05-16 14:11:33+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1bDjMMpLOXqTujqhg94Y4Q?si=f8eb5a018ba343f8\"}"}', NULL), - (1160680, '0x7d3a6cddf169ef0e10ec93e88540d8a3d2f36c23', 0, 1, '2024-05-07 22:39:03+00', 0, 1, '{"fid": 3702, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fccb7b1a-a273-43cd-16b4-d19717ba6b00/original", "profile": {"bio": {"text": "Music Producer / Content Creator •••\n\nLiving Room album 4.24.24 💿 •••\n\nhttps://linktr.ee/supertightwoody", "mentioned_profiles": []}}, "username": "supertightwoody", "power_badge": true, "display_name": "Woody", "active_status": "inactive", "verifications": ["0x0f320368104adc3cb64b2a7be83bf0a549e12b03"], "follower_count": 934, "custody_address": "0xecde21944027c7d146dabec70f385a08a96f0278", "following_count": 351, "verified_addresses": {"eth_addresses": ["0x0f320368104adc3cb64b2a7be83bf0a549e12b03"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4JMTkjIgk9egmGCjJ5p7rb?si=ueL4qp9DRz-WF_dVBMIhvA\"}"}', NULL), - (1162729, '0xf536fd05a8b02c2a4da92a040ff0a48c1d0e9ccd', 0, 1, '2024-05-09 07:40:30+00', 0, 3, '{"fid": 1655, "object": "user", "pfp_url": "https://i.imgur.com/9TxfKZn.jpg", "profile": {"bio": {"text": "$DEGEN President ", "mentioned_profiles": []}}, "username": "juan", "power_badge": true, "display_name": "Juan 🎩", "active_status": "inactive", "verifications": ["0xad5c39984149aa60663bbac47676f84192c04ca8"], "follower_count": 1696, "custody_address": "0xb5e6353fb6d02a9a66e7b83280927b16d87577d8", "following_count": 627, "verified_addresses": {"eth_addresses": ["0xad5c39984149aa60663bbac47676f84192c04ca8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0QLthYlRZYAP9iRs9cjmzD?si=b7b72c2442604b4b\"}"}', 'jrp'), - (1173780, '0x1e381acfcb61c5f9034450bb25a6fb47f5b06e9f', 1443, 1, '2024-05-16 14:11:52+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4cHr9tKAv2sHQwj79tmCG8?si=38fb4f9c864d47b6\"}"}', NULL), - (1173775, '0x0bc1ed7dbd5f52d6c5b5bf15080981d58b4c215b', 2000, 1, '2024-05-16 14:11:23+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KvRFKrsapVHYNzoM7rDUw?si=18d44770b45443b3\"}"}', NULL), - (1158773, '0xaa817708b0d6a8868aba3f6facf2800e161c6ebc', 0, 1, '2024-05-08 05:51:34+00', 0, 3, '{"fid": 215322, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1bcb13b-6c44-4207-7b3c-459bd20b1100/original", "profile": {"bio": {"text": "nature finance onchain /basin @basin\n | place-based /situs | 🦇🔊", "mentioned_profiles": []}}, "username": "tmo.eth", "power_badge": true, "display_name": "TMO 👉 RWAxPGF", "active_status": "inactive", "verifications": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "follower_count": 564, "custody_address": "0x7cba2d1f540fb606e20fe9ae6ad44aad09e8c420", "following_count": 402, "verified_addresses": {"eth_addresses": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3RWY24AnvU6H1UGxvKDDZP?si=8M97u8zLRcytA9feLta5YQ&pi=u-ZvHFXr-oT62S\"}"}', NULL), - (1054072, '0x3ccd4abefd00a1fe9589cfefe712f2558acb3968', 1130, 1, '2024-05-07 14:35:15+00', 0, 57, '{"fid": 431, "object": "user", "pfp_url": "https://i.imgur.com/SbkCwx3.gif", "profile": {"bio": {"text": "co-founder at icebreaker.xyz/j4ck.fc • /icebreaker • /swagcaster • /bromero • /design", "mentioned_profiles": []}}, "username": "j4ck.eth", "power_badge": true, "display_name": "j4ck 🥶↑🎩 icebreaker", "active_status": "inactive", "verifications": ["0xdfe8beee223412f316baf2968b17527d6eba29f1"], "follower_count": 46797, "custody_address": "0xd8cd5f3d2b881aebf0e21fa22e26d06653c06172", "following_count": 1861, "verified_addresses": {"eth_addresses": ["0xdfe8beee223412f316baf2968b17527d6eba29f1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0a09r51dqD5n8xCEOld1WO?si=39e0bdef72ad4526\"}"}', NULL), - (1162204, '0x4a93ec030110a44367a709700367f0b577b8818e', 0, 1, '2024-05-09 04:14:20+00', 0, 8, '{"fid": 18723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59b13267-6b7f-4e90-432b-1429a98eb300/original", "profile": {"bio": {"text": "Growing veggies for the fine folks of Southeastern Massachusetts, w/ a focus on nutrient quality. Always interested in the evolution of digital payments. 🎩 ", "mentioned_profiles": []}}, "username": "brixbounty", "power_badge": true, "display_name": "BrixBountyFarm 🎩", "active_status": "inactive", "verifications": ["0xdbee1cfa10d706ef868dd2dff97246cb6d73b530"], "follower_count": 3337, "custody_address": "0xe0d350e0913c34b8a226b1c49f92af9f0a4e40c3", "following_count": 1376, "verified_addresses": {"eth_addresses": ["0xdbee1cfa10d706ef868dd2dff97246cb6d73b530"], "sol_addresses": ["FfUorQzrbyhknGqh5SDLGWWPpEg2F46r8fGQRgrn1PsG"]}}', '{"{\"url\":\"https://open.spotify.com/track/2OxqWQeenSzXdUuENWq34Z?si=SzqnzEDQT6W8jKfak710wQ&context=spotify%3Aalbum%3A13a3Sby2BrD7oqbH5y2xgh\"}"}', NULL), - (1173413, '0xc78dbc49ec3a299f53fd94c02fcba62969f0e61f', 2100, 1, '2024-05-15 23:15:45+00', 0, 0, '{"fid": 12871, "object": "user", "pfp_url": "https://i.imgur.com/qhh2olT.jpg", "profile": {"bio": {"text": "Building @sonatatips & Artist Relations /soundxyz", "mentioned_profiles": []}}, "username": "divesteamike", "power_badge": true, "display_name": "Michael DiVestea", "active_status": "inactive", "verifications": ["0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050"], "follower_count": 256, "custody_address": "0x96dbff07e0cc5f64047647a7183e3564c5df4f40", "following_count": 288, "verified_addresses": {"eth_addresses": ["0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/71sRb28zCnX53agrl1nerV?si=vREullz7RwasIlk2jXM1ng\"}"}', 'sonata'), - (1158774, '0x18527613577f24576e6535eed1fad2708af1d0ca', 1020, 1, '2024-05-08 05:12:50+00', 62, 32, '{"fid": 1657, "object": "user", "pfp_url": "https://i.imgur.com/QiZQqgT.jpg", "profile": {"bio": {"text": "musician architecture storyteller \nlove is the most enduring force in the 🌍 /keepgoing stay heartFULL /with /urltoirl powered by @nlt143\nhappyfriday.coffee", "mentioned_profiles": []}}, "username": "davidtphung", "power_badge": true, "display_name": "David T Phung url🔄irl ENERGY", "active_status": "inactive", "verifications": ["0x1a1c37c145a1eab58c43f003ebb55c18083b5987"], "follower_count": 24193, "custody_address": "0xc8eea0650f3e9d90d426720b82f59883b596c53c", "following_count": 479, "verified_addresses": {"eth_addresses": ["0x1a1c37c145a1eab58c43f003ebb55c18083b5987"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/10a/mint-condition-10a-remix-unnofficial?ref=clipboard&p=i&c=0&si=DCC68987894443B585A5B2BE7CEC7D9B&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1171185, '0xdfa51e18c87693e9fbb9b73b982e02f830a6f9c3', 2000, 1, '2024-05-14 12:14:59+00', 0, 9, '{"fid": 190045, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e495182-1969-442e-e9d2-e5de1d8b0100/original", "profile": {"bio": {"text": "Building @superrare. Vibing in /superrare. Tipping $RARE・゚✧", "mentioned_profiles": []}}, "username": "superrarejohn", "power_badge": true, "display_name": "SuperRareJohn", "active_status": "inactive", "verifications": ["0x337101def3eeb6f06e071efe02216274507937bb"], "follower_count": 1941, "custody_address": "0xaafa0b3d56734969539359d957a00276f0ff44c4", "following_count": 214, "verified_addresses": {"eth_addresses": ["0x337101def3eeb6f06e071efe02216274507937bb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0jcw8cJf3TNMZN0BXlueML?si=2f9a96321c55404c\"}"}', 'sonata'), - (1166749, '0x7a321903a1bf4a62ab41c5d6a2ca5d61bb6da63c', 4000, 1, '2024-05-13 00:13:30+00', 0, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3682, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 486, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/6jyBqybLXuyac67y8\"}"}', 'sonata'), - (1166057, '0x78b61626dace13f38751818efb85717f4241bd7d', 4100, 1, '2024-05-11 23:16:29+00', 100, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3643, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 484, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Qwpcyymf9H4FomsJ9\"}"}', 'sonata'), - (1173291, '0x703292ee0725b83fac4171151827d7d6943b9b22', 4333, 1, '2024-05-15 17:40:09+00', 0, 5, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 329, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 272, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3zbbRebB1rzlXJgq7Ufn8V?si=gqD9oNGYQZijt2UpqoNRMA&context=spotify%3Aartist%3A4YLQaW1UU3mrVetC8gNkg5\"}"}', 'sonata'), - (1158831, '0x7329f9c7f926006ac2402a17d5733f80eccc705b', 13510, 1, '2024-05-08 06:44:42+00', 0, 12, '{"fid": 8885, "object": "user", "pfp_url": "https://i.imgur.com/mBmqcTV.gif", "profile": {"bio": {"text": "product mgr. pursuing onchain music | onchain artist relations @rohki | music patent 11,620,649 | @techstars alum | @zagster cofounder (acq. by superpedestrian)", "mentioned_profiles": []}}, "username": "jasonmeinzer", "power_badge": true, "display_name": "jasonmeinzer.eth 🎩↑🔮🍖", "active_status": "inactive", "verifications": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "follower_count": 458, "custody_address": "0x973ce5bbc61897a0cffa24fc91b4c1d6874c7896", "following_count": 874, "verified_addresses": {"eth_addresses": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3l75jB2gKi4VpgklWIbTOz?si=ksQHIiESR16sbbrqmUF8jQ\"}"}', NULL), - (485888, '0x2a55a4b1ca680db1a967c825df2bf6e08d71faa8', 2000, 1, '2024-05-06 07:32:59+00', 0, 7, '{"fid": 507381, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1964c8a2-50b8-4b95-7159-93d1bda52800/original", "profile": {"bio": {"text": "🆔FID 507381\n🎧sound engineer \n🖥️video editor \n🧑‍💻media Infra designer\n\n#ProTools #Adobe #DaVinci #dev", "mentioned_profiles": []}}, "username": "!507381", "power_badge": false, "display_name": "soundman", "active_status": "inactive", "verifications": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "follower_count": 87, "custody_address": "0xd7ec0ddf85e83303d75b06527d91b69255fee967", "following_count": 303, "verified_addresses": {"eth_addresses": ["0x550273c395e4914e38f131ebeb0cb49da44a6257", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096", "0xaf5735cc5d392e54e92a54be30c3aacfa16a0096"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/tesh/inhale?referral=0xaf5735cc5d392e54e92a54be30c3aacfa16a0096\"}"}', 'soundxyz'), - (1161275, '0xc713e93d8e0ca7fa9a1504faf816f5e18c2973eb', 3290, 1, '2024-05-08 22:41:06+00', 0, 6, '{"fid": 8939, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ababde70-0724-4e15-99ec-44ab3e1b8400/rectcrop3", "profile": {"bio": {"text": "/annelisa /buidlbox @buidlbox 💫\n(fka @gitcoin events) 💕 one of the /djs ", "mentioned_profiles": []}}, "username": "annelisa", "power_badge": true, "display_name": "annelisa.eth", "active_status": "inactive", "verifications": ["0x31938f42358b993b815cce8e533004eed2146bb6"], "follower_count": 497, "custody_address": "0xddedb00a9fdb399bb2dbf298814f24bee5f19531", "following_count": 128, "verified_addresses": {"eth_addresses": ["0x31938f42358b993b815cce8e533004eed2146bb6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/egnevermusic/taka-ukg-egnever-edit\"}"}', 'djs'), - (1158830, '0xdaa2dfa90d018a6eb80e758ca1069fb355383104', 0, 1, '2024-05-08 06:35:57+00', 0, 7, '{"fid": 5305, "object": "user", "pfp_url": "https://i.imgur.com/BiFWehG.jpg", "profile": {"bio": {"text": "Head of marketing / growth @Gnosis | Former growth product manager @Shopify | Usually in Singapore, Taipei, Berlin or Toronto. | Here for 📸 🚴 🍕", "mentioned_profiles": []}}, "username": "galen", "power_badge": true, "display_name": "Galen @Gnosis 🦉 ", "active_status": "inactive", "verifications": ["0x668ee345328e3fefc99bc1c3745cc2ae345e32bc"], "follower_count": 486, "custody_address": "0x14544ccbe269cb3e938418b7063aff1c4253c91b", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x668ee345328e3fefc99bc1c3745cc2ae345e32bc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Rswo0u0sjfgNwHBguSuPx?si=c0e48a9969e84b69\"}"}', NULL), - (1162297, '0xff8651c76a2910c9bc0c753463e7cae6b647be6a', 2120, 1, '2024-05-09 04:46:02+00', 100, 7, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 4485, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2MjXWroB9wlTG2kqv3avfS?si=ziO5TFNHTJOQ3XZ5jwY3BA\"}"}', 'bangers'), - (1158913, '0xab7adb6333f9788ac0c193d278effd2c4eb161dd', 0, 1, '2024-05-07 21:13:13+00', 0, 3, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1499, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 317, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f6faae16-6115-4d89-8885-3bff4cba3bdc?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', 'theblockexp'), - (1173816, '0x46a854f814613c494c1514a6df13c52bceb6f60b', 1000, 1, '2024-05-16 14:39:53+00', 0, 0, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4555, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=8SW08rNQR-uUuXWkCyNgRw&context=spotify%3Aalbum%3A38N8k7q6vILvaBekWkK4GK\"}"}', 'paidgroup'), - (1173815, '0x60b11a9ff551dad57faf20c2f766613bacd9cedc', 1000, 1, '2024-05-16 14:39:35+00', 0, 0, '{"fid": 4715, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ef1d1585-9e91-4a4d-369f-88730a5f1200/original", "profile": {"bio": {"text": "meatbag version of a custom LLM ⚡️ physician assistant ⚡️ recovering newspaper journalist ⚡️ /yawp ⚡️ /openventures", "mentioned_profiles": []}}, "username": "lo", "power_badge": true, "display_name": "logonaut.eth 🎩🍖🔄🔵", "active_status": "inactive", "verifications": ["0xb0ccf43ada6cbaa26dcf4907117b496d49f74242", "0x38cb891bed9eed2408d121e4f87cd64a8c2b9932"], "follower_count": 4628, "custody_address": "0x8c60d61fbafec22fb223fb6cfb4ec702df5c4f3f", "following_count": 2623, "verified_addresses": {"eth_addresses": ["0xb0ccf43ada6cbaa26dcf4907117b496d49f74242", "0x38cb891bed9eed2408d121e4f87cd64a8c2b9932"], "sol_addresses": ["5Haf6sJPHjZ5hQPRiMFcYi9W8gTZ7gbJSP1qwoV2x2VP"]}}', '{"{\"url\":\"https://open.spotify.com/track/7BlEzh2ckNasaFInca0kQv\"}"}', NULL), - (1155220, '0xe75c2562c1de7a3eb33df3347ab06b3642deb940', 0, 1, '2024-05-07 20:55:15+00', 0, 18, '{"fid": 508955, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28b1ed85-f0ff-4503-676f-0f371a99c400/rectcrop3", "profile": {"bio": {"text": "live in the world of imagination but work hard for a real life🗺️\n💪🏻📑📺📚☕️🌊", "mentioned_profiles": []}}, "username": "!508955", "power_badge": false, "display_name": "Ryoman", "active_status": "inactive", "verifications": ["0xf2a9364590d9402fa9003fc7f1895b38aee57078"], "follower_count": 360, "custody_address": "0x37dfea32556825d68235f4446dca0eb401d227e8", "following_count": 447, "verified_addresses": {"eth_addresses": ["0xf2a9364590d9402fa9003fc7f1895b38aee57078"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/p5MhXs4Bk3rSchHQA\"}"}', 'sonata'), - (1158906, '0x1391111b53c0de1d25e44ed2ebecd2bfe70450a2', 0, 1, '2024-05-07 21:12:51+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1499, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 317, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f6faae16-6115-4d89-8885-3bff4cba3bdc?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', 'soundxyz'), - (1160120, '0x7e1b6083aa7acca7f017e14747e2c7626ec24862', 0, 1, '2024-05-08 09:07:15+00', 0, 5, '{"fid": 394597, "object": "user", "pfp_url": "https://i.imgur.com/3wCLomw.jpg", "profile": {"bio": {"text": "Art School Dropout | Baggage Handler at 747 Airlines ✈️", "mentioned_profiles": []}}, "username": "jameecornelia", "power_badge": true, "display_name": "Jamee Cornelia✈️", "active_status": "inactive", "verifications": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "follower_count": 361, "custody_address": "0xa75cacaf502ade298af8293ab5a37ef380b3abbc", "following_count": 202, "verified_addresses": {"eth_addresses": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0LH7ijaQi0ybY6Oe4SCLo1?si=tsJWPn-gQFSpZ7e_iZGEow\"}"}', NULL), - (1158925, '0x97251de8460d0c8a8e2f30cee26975605ac1fff3', 0, 1, '2024-05-07 21:17:09+00', 0, 1, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9360, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/cad48679-5264-4c69-bb07-21d1859fc5bb\"}","{\"url\":\"https://www.sound.xyz/kansh/my-paradise\"}"}', NULL), - (1158908, '0x89552054f73037282120586f0f12be6157cfd107', 0, 1, '2024-05-07 21:12:27+00', 0, 11, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1499, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 317, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f6faae16-6115-4d89-8885-3bff4cba3bdc?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', NULL), - (1158931, '0x85e44af88ed02fbe5569013eeb8e23694225d38f', 0, 1, '2024-05-07 21:17:54+00', 0, 2, '{"fid": 18325, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/816c8cab-759c-4f89-e652-9c983a5a6100/rectcrop3", "profile": {"bio": {"text": "Based in DC. ⛓️ @DANC3 \nfind me enjoying https://zora.co/@crittiep", "mentioned_profiles": []}}, "username": "crittiep", "power_badge": true, "display_name": "↑ ↑ Crittie p ↑ ↑", "active_status": "inactive", "verifications": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "follower_count": 352, "custody_address": "0x34a56e7cf6de51416ab2f84bc6c48fcee32c18a3", "following_count": 474, "verified_addresses": {"eth_addresses": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "sol_addresses": ["5DCTxf6kHtgrFwT4f2FPsCAbECaxn84ZVjKAx9DW7aY2"]}}', '{"{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral=0x4da2d658ec798af7e723069dedeea27bc7f8ba52&referral_source=link\"}"}', NULL), - (1142356, '0xa40bec6c34cacc9ff84feffdc1e2610360f1ea5d', 0, 1, '2024-05-07 19:56:47+00', 0, 0, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 280, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/pra-dizer-quem-sou-collect-to-earn-sstrm?referral_source=link\"}"}', NULL), - (1154424, '0x9e8a8f607067dc338bd903dd2fd4f1fe2cf5b8e9', 0, 1, '2024-05-07 20:51:27+00', 0, 24, '{"fid": 445815, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8344947a-01ba-4dd1-549a-6d8118924100/rectcrop3", "profile": {"bio": {"text": "Let''s go ", "mentioned_profiles": []}}, "username": "maryamnoz", "power_badge": false, "display_name": "Mery🎩🍖🐐⚡", "active_status": "inactive", "verifications": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "follower_count": 1679, "custody_address": "0xea3119691b1e6bba73566e1eec3264b53306ec93", "following_count": 940, "verified_addresses": {"eth_addresses": ["0x7634b2cb0c10c638d9c6e6b5b2f591ed412e41c4", "0xd18ab3abd74aedcd7af3808669bfe3b187b378e4", "0xc6b0bc7ccd85bdb83b9ad98b76673d9864639210"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ivF4eQBqJiVL5IAE9jRyl?si=C5Q3oF7cTo2xrLzxbPfLjw&utm_source=copy-link&context=spotify%3Aplaylist%3A37i9dQZF1DWVTfbQdQ8l7H GN fam 💖\"}"}', NULL), - (1173817, '0x23a50a0490d5334b4e521253c532962137820752', 3222, 1, '2024-05-16 14:42:25+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1948, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 977, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/de-token\"}"}', 'soundxyz'), - (1160685, '0xb91db9c26b8c60b8d065608f4eea7ac338d164df', 0, 1, '2024-05-07 23:17:18+00', 0, 6, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 4485, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1BwrMGGhPA6GarWIYaFrW8?si=mzOqU44cQdO7VvDpnGB8-A\"}"}', 'bangers'), - (1138240, '0x6eab2a72b625e304d3e08f16b96942b416a5a826', 1000, 1, '2024-05-07 19:36:12+00', 10, 1, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 394, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 199, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/f9d2a9716c357a37239434761c2cde15.m3u8\"}","{\"url\":\"https://open.spotify.com/track/5pLwwYpKqMzDXpps2eEAIR?si=EQdUMX32TU-rrHJgJxzoSA\"}"}', NULL), - (1155720, '0x654b9a9e1931e1c5ed83dc9014aedb1469dfb5e7', 0, 1, '2024-05-07 20:56:48+00', 0, 16, '{"fid": 510066, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/54eff8e4-0f53-4920-fafa-c2cc610b8a00/rectcrop3", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "!510066", "power_badge": false, "display_name": "Saeid", "active_status": "inactive", "verifications": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "follower_count": 247, "custody_address": "0x6fe4b05d6fc7c867484b9f98b1b5d5dff2c27bad", "following_count": 454, "verified_addresses": {"eth_addresses": ["0x41e8874ac24abd3fb1a1b4b00c964be7f580b360"], "sol_addresses": []}}', '{"{\"url\":\"Listen to Ariana Grande - we can''t be friends (wait for your love) by Ariana Grande on #SoundCloud https://on.soundcloud.com/wwgva\"}"}', NULL), - (1159467, '0xb1ed5155b07fcc7af714a57ac2d2d508966f0e34', 0, 1, '2024-05-08 11:28:25+00', 0, 1, '{"fid": 416775, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/dc6921f8-e2ca-435d-7233-9c3b3fa0a300/rectcrop3", "profile": {"bio": {"text": "Interested in NFT", "mentioned_profiles": []}}, "username": "areya", "power_badge": false, "display_name": "Areya🎩", "active_status": "inactive", "verifications": ["0x0445d4537e01838734167752cab5faa9d07d26ac"], "follower_count": 938, "custody_address": "0xef223711a7524bea986ffdabda1f6c554c77d706", "following_count": 841, "verified_addresses": {"eth_addresses": ["0x0445d4537e01838734167752cab5faa9d07d26ac"], "sol_addresses": ["hnXgkSfx5iD2Qjy3FA7tfbyawjzBCX1RCWoxf3VmCML"]}}', '{"{\"url\":\"https://on.soundcloud.com/uBKVNMGVcWtZWxGB6\"}"}', 'sonata'), - (1159202, '0x84a74144528b353c54a6b4fcb70966c335ec9d7a', 1000, 1, '2024-05-08 11:11:28+00', 0, 5, '{"fid": 351715, "object": "user", "pfp_url": "https://i.imgur.com/EPbGTkN.jpg", "profile": {"bio": {"text": "My hobby is mountain climbing. I also like cooking. I have many hobbies, so I would like to exchange information with various people.", "mentioned_profiles": []}}, "username": "kanebooota", "power_badge": false, "display_name": "Kanebooota☀️", "active_status": "inactive", "verifications": ["0x85a1e7dcf004b2c768896751170c06704f4da70c"], "follower_count": 1485, "custody_address": "0x5948d7e91c1c25fdad10305391cf2caf79685969", "following_count": 1062, "verified_addresses": {"eth_addresses": ["0x85a1e7dcf004b2c768896751170c06704f4da70c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6QN8meSeS0ERgEXdGMfOdQ?si=cy_Q2P2gRr2HO0GNWe9pcg\"}"}', 'musicjp'), - (1173818, '0x2105b8ff5bbeb764ebfd17860c1073b9a2b575d1', 6322, 1, '2024-05-16 14:52:48+00', 100, 0, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 330, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 272, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0vMctOnb4YNIvbqgkbWNDy?si=rKzesPGkTEGQmgaSH5dX4g&context=spotify%3Aartist%3A1uiEZYehlNivdK3iQyAbye\"}"}', 'bangers'), - (1159226, '0x28a0e51973e8e398ada0fb8758fa5439db85c898', 0, 1, '2024-05-08 11:20:21+00', 0, 0, '{"fid": 311776, "object": "user", "pfp_url": "https://i.imgur.com/CzZID1j.jpg", "profile": {"bio": {"text": "İ''m kind and crezy", "mentioned_profiles": []}}, "username": "emirmrp", "power_badge": false, "display_name": "Emir", "active_status": "inactive", "verifications": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "follower_count": 66, "custody_address": "0xc920d308083b3cb4e8033e58894df2b34af3e0e1", "following_count": 176, "verified_addresses": {"eth_addresses": ["0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/r3hab/dj-snake-justin-bieber-let-me-love-you-r3hab-remix\"}"}', NULL), - (1159214, '0xb6a5d7bb194ea2abb1a0a124ca1626f1fef3b99a', 0, 1, '2024-05-08 10:18:19+00', 0, 3, '{"fid": 372685, "object": "user", "pfp_url": "https://i.imgur.com/PlpMOKo.jpg", "profile": {"bio": {"text": "年間2000個以上アイス食べて、合間にWeb3とAI触ってます🍦Instagram:28.4k Followers |Marketing/Consulting|Ice cream influencer ", "mentioned_profiles": []}}, "username": "bucho", "power_badge": false, "display_name": "Bucho.degen🎩🔵🍖⛓️", "active_status": "inactive", "verifications": ["0x6553acdbcf4d52e0b49a4f48a03281130ad0355c"], "follower_count": 1452, "custody_address": "0x3f9b675cd66a92f823fbf8ba4628280e8b416bd3", "following_count": 653, "verified_addresses": {"eth_addresses": ["0x6553acdbcf4d52e0b49a4f48a03281130ad0355c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6jRyCWUAnRVir3OK4jSZvV?si=4ZOfuvEETuqVAvZXBHDdCw&context=spotify%3Aplaylist%3A37i9dQZEVXbKXQ4mDTEBXq\"}"}', 'likewen'), - (1159206, '0x45a1975ebda646f851a6230b419307022a8e74f3', 0, 1, '2024-05-08 11:09:29+00', 0, 0, '{"fid": 398388, "object": "user", "pfp_url": "https://i.imgur.com/cUeM72W.jpg", "profile": {"bio": {"text": "まだまだひよっこです🐥\nよろしくお願いします🌛\nalfafrends https://www.alfafrens.com/channel/0x46f21ee971121de6b17f4b3015d62a2ec13efbf1", "mentioned_profiles": []}}, "username": "kuroooo", "power_badge": false, "display_name": "kuroooo🔄🎩", "active_status": "inactive", "verifications": ["0xbbe5938b974035b923782b1bbcec44018ed2584a"], "follower_count": 598, "custody_address": "0xcefdc5da1cc38bd47b1caf36497a7f0a75cbdd2c", "following_count": 652, "verified_addresses": {"eth_addresses": ["0xbbe5938b974035b923782b1bbcec44018ed2584a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3MpAEomh0TJoyca9y7uaBX?si=k1023YZ8Sya-u2779AHwCw&context=spotify%3Atrack%3A3MpAEomh0TJoyca9y7uaBX\"}"}', NULL), - (1159215, '0x9ae27055bc7c2c9c150ae45c3af4294793090416', 0, 1, '2024-05-08 11:16:01+00', 0, 8, '{"fid": 418296, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61889087-55c2-4f4a-d63b-4d738f320c00/original", "profile": {"bio": {"text": "We''re all friends! Come and play❤️‍🔥\nhttps://zora.co/@creambread", "mentioned_profiles": []}}, "username": "creambread", "power_badge": false, "display_name": "creambread", "active_status": "inactive", "verifications": ["0x6538bc9183bd6637e67b28ddb049a768e4ad3ab8"], "follower_count": 5040, "custody_address": "0xf6496812ad761d8a3715519233790d6cd1117cf0", "following_count": 4630, "verified_addresses": {"eth_addresses": ["0x6538bc9183bd6637e67b28ddb049a768e4ad3ab8"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ncMwcSmvmpq5W7qZ9\"}"}', 'sonata'), - (1159221, '0xad7a2796c7909ef02732177e1202e447f9ceca6b', 1000, 1, '2024-05-08 10:16:11+00', 0, 3, '{"fid": 379499, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8159f9d9-73d5-4554-f357-4e8a82427600/rectcrop3", "profile": {"bio": {"text": "Turntablist skratch scratch dmc dj Fortnite stepn pro walker", "mentioned_profiles": []}}, "username": "waiwasaru", "power_badge": false, "display_name": "waiwasaru🥷🥔🎩🩸", "active_status": "inactive", "verifications": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "follower_count": 308, "custody_address": "0x367eb35cadc0fe55d7949560c9c18a04cf455947", "following_count": 500, "verified_addresses": {"eth_addresses": ["0x94f2efb415654d4a1c952140099a9bc6aa02ebd6"], "sol_addresses": ["4N1FL55CAyhZ2n5JBrinmJ6aXThpntShwvqdWtmzU7hu"]}}', '{"{\"url\":\"https://open.spotify.com/track/7l3uhIYBLjjX99XbPGolV1?si=BHJx-cShTNm3e5mRiJQayg\"}"}', 'musicjp'), - (1160676, '0xad30ad959bdeeee61f21901fadbcd2d7a8546bba', 0, 1, '2024-05-07 22:31:44+00', 0, 1, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from another point of view /wevibe ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth 🎩🍖🔵🤙🏽", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 1999, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 575, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2sXaZphe2LlqAyZVKvHbU1?si=9w0ctl18RAGfhoZk0pqqLQ\"}"}', NULL), - (1162495, '0x4716c1d50648f1b8136d7e8a770bafdd57aa08ad', 2610, 1, '2024-05-09 06:06:50+00', 10, 4, '{"fid": 1265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f618f59-2290-4350-100a-4b5d10abef00/original", "profile": {"bio": {"text": "designer, operator, product builder //\nplayer /fbi | fid #1265 ", "mentioned_profiles": []}}, "username": "akhil-bvs", "power_badge": true, "display_name": "Akhil", "active_status": "inactive", "verifications": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "follower_count": 339, "custody_address": "0xdf055eb92e2c97d7da4036278d145458eb11811c", "following_count": 87, "verified_addresses": {"eth_addresses": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7w87IxuO7BDcJ3YUqCyMTT?si=b1c6673584bf44c5\"}"}', NULL), - (1159209, '0x01568705280872d7cae4b4d55e1ae16fc0af8487', 0, 1, '2024-05-08 11:13:24+00', 0, 3, '{"fid": 419208, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2e1f0aa1-0698-411b-9aec-28063cbda400/rectcrop3", "profile": {"bio": {"text": "I''m a student studying Agriculture Insurance Claim Adjuster.\n#손해평가사 #자격증", "mentioned_profiles": []}}, "username": "zinzerman01", "power_badge": false, "display_name": "🎩바른생활🍖🔥", "active_status": "inactive", "verifications": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "follower_count": 1265, "custody_address": "0x15ebb26688c1f4090956849424ece928f04f7b79", "following_count": 1251, "verified_addresses": {"eth_addresses": ["0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove6/0tvj9ywhgyl1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160715, '0x7487ff4ea346df6d747f7a7deeeb49eb8b81c5c9', 0, 1, '2024-05-08 02:54:05+00', 0, 13, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3581, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mina-anh-967372179/very-very-very-ioi?ref=clipboard&p=i&c=0&si=E9A46D389A274F2FBBF7899E2F71E588&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1159239, '0x16c4dd35753ab3d5353d2c13dc97640a3f5102cb', 0, 1, '2024-05-08 11:11:57+00', 0, 7, '{"fid": 459244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/44b61876-09a2-4bb2-6fbe-d6836d457100/rectcrop3", "profile": {"bio": {"text": "같이의 가치 .같이 성장해요❤️\n I know the value of being together🙏", "mentioned_profiles": []}}, "username": "akfcnl4", "power_badge": false, "display_name": "Bumj", "active_status": "inactive", "verifications": ["0xb107c5c09355d5612c3273c7b5ca46fb84e8fdb5"], "follower_count": 2784, "custody_address": "0x35e2511d7fa56d47531f435a15867fbfcdcb501e", "following_count": 2710, "verified_addresses": {"eth_addresses": ["0xb107c5c09355d5612c3273c7b5ca46fb84e8fdb5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MWjpmhYyVMKCYrQc8\"}"}', 'sonata'), - (1162455, '0x40bd4450725c9f16bc8bccb9275ebc688479779b', 1010, 1, '2024-05-09 06:00:13+00', 0, 28, '{"fid": 9581, "object": "user", "pfp_url": "https://i.seadn.io/gae/lXENY3cJnutJqOMOvW_4QAqP_4rhe8RcHHWJl8gl145IBOSwRUVRS6NDk5wcIgEEAAn_lqDrRB32-xmwWm-N-zYeLR5h_7UFq1MyRg?w=500&auto=format", "profile": {"bio": {"text": "fridays at the park season 002 https://zora.co/collect/base:0x1bbea2cc3b2c41774687fd00684ad12f9a666557/6", "mentioned_profiles": []}}, "username": "thepark", "power_badge": true, "display_name": "the park", "active_status": "inactive", "verifications": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "follower_count": 2359, "custody_address": "0x4d125b80e2217b0cdfb366cfb77b84a3d3a94751", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Csqy5kj8Cb8W5T97Hh6Iq?si=7b4e7cef1a4a400c\"}"}', NULL), - (1159231, '0x72dbd9de442ae3e4fd83a8ebd9fe2d41c3abe923', 0, 1, '2024-05-08 07:45:34+00', 0, 0, '{"fid": 256666, "object": "user", "pfp_url": "https://i.imgur.com/3RPI7VK.jpg", "profile": {"bio": {"text": "คนไทยแลกฟอลกันครับ ❤️", "mentioned_profiles": []}}, "username": "polmoeye", "power_badge": false, "display_name": "PolMoeye", "active_status": "inactive", "verifications": ["0x28c1e820706d946a7b43f2c9b79427fb0522eb64", "0x28c1e820706d946a7b43f2c9b79427fb0522eb64"], "follower_count": 1527, "custody_address": "0x66b132b16d8219fbc498b102a1b848da4ba78e3e", "following_count": 1679, "verified_addresses": {"eth_addresses": ["0x28c1e820706d946a7b43f2c9b79427fb0522eb64", "0x28c1e820706d946a7b43f2c9b79427fb0522eb64"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/jutes/born-to-lose?referral=0x28c1e820706d946a7b43f2c9b79427fb0522eb64&referral_source=link\"}"}', NULL), - (1159240, '0xa381b6b4f0b76247232ea088f77e82ecdd8c04c7', 0, 1, '2024-05-08 11:09:00+00', 0, 11, '{"fid": 481476, "object": "user", "pfp_url": "https://i.imgur.com/iZgMET5.jpg", "profile": {"bio": {"text": "🌈 🐭🐭🐭🐭", "mentioned_profiles": []}}, "username": "captainuhm", "power_badge": false, "display_name": "BoriBori🐭", "active_status": "inactive", "verifications": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "follower_count": 1295, "custody_address": "0x0b6e21126a000f5a76eff5a363753b8d154607f8", "following_count": 1490, "verified_addresses": {"eth_addresses": ["0x48a8250b961b880755d37b1ddd1d0d59ddae80ec"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hM4Xk\"}"}', 'sonata'), - (1159266, '0x7f5e7161e84a4b66c5ab4faa766123a1139d0d4f', 0, 1, '2024-05-08 04:40:28+00', 0, 0, '{"fid": 343603, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/cb588f4220b35f600cdf998bff07f42f.gif?w=500&auto=format", "profile": {"bio": {"text": "Web3 music producer, mostly make house music and work on web3 community space", "mentioned_profiles": []}}, "username": "imamkikou14", "power_badge": false, "display_name": "Imam Kikou on the Track 14", "active_status": "inactive", "verifications": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "follower_count": 30, "custody_address": "0xc6455d5bad59f5c5c668cb209d8346f991574754", "following_count": 94, "verified_addresses": {"eth_addresses": ["0x7a09083c848a3637aff552093ec6cc3d9f0254dd"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/k14onthetrack/dexter?referral_source=link\"}"}', NULL), - (1159253, '0xdfbc50f708b53b4950225afad50cf85b1c7047c9', 0, 1, '2024-05-08 03:47:21+00', 0, 2, '{"fid": 20300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f268c7c-62d3-4d51-e07d-c64e93317700/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter, DJ, Sonic Healer, 1/2 of @karmavioletta 🎶 Building @wavwrld 🌊🌐 1/77 of CHAOS & @songcamp", "mentioned_profiles": []}}, "username": "violetta", "power_badge": false, "display_name": "Violetta", "active_status": "inactive", "verifications": ["0x68375427c29995b277ad343aa89be591926c6088"], "follower_count": 83, "custody_address": "0x358273ae8525236066899f57d24dfb5e9d83dbf8", "following_count": 39, "verified_addresses": {"eth_addresses": ["0x68375427c29995b277ad343aa89be591926c6088"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/satisfaction?referral_source=link\"}"}', NULL), - (1159229, '0xb918712fefebcf172195802fa7c0b0e6db0410ea', 0, 1, '2024-05-08 11:11:32+00', 0, 4, '{"fid": 434304, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/95701dd7-a042-4519-2faa-fce2958a4500/rectcrop3", "profile": {"bio": {"text": "03년생 대학생🫅 Major of Philosophy, 사업가(웰니스)\n /부-자유-행복 /\n20대에 부자되는 것이 목표/\nWarpcast and Degen(Base), will lead the ecosystem of Web3, so I bet my future on Degen.", "mentioned_profiles": []}}, "username": "bini77", "power_badge": false, "display_name": "BINI", "active_status": "inactive", "verifications": ["0x91bc5434327986706d60f1a0670a09e66fa81ae6"], "follower_count": 2760, "custody_address": "0x11f6ee630c2bfccbd057f6a2b9dbeaf409a8a4ff", "following_count": 2717, "verified_addresses": {"eth_addresses": ["0x91bc5434327986706d60f1a0670a09e66fa81ae6"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bimrc9ynemix/illit-magnetic?si=ca9340caf4934d4cbb412df7f94f3d46&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1159223, '0x3ebf155593cf3432cd8676beb9d454888d4d5967', 0, 1, '2024-05-08 11:12:25+00', 0, 0, '{"fid": 447737, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9fcf5d6f-1a50-4949-29bd-42321380a000/rectcrop3", "profile": {"bio": {"text": "노래 추천해드립니다 🎶", "mentioned_profiles": []}}, "username": "hiddensinger", "power_badge": false, "display_name": "🟣홍사원🟣", "active_status": "inactive", "verifications": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "follower_count": 2726, "custody_address": "0x5df0fad42f00014b8cdd448e352e39f0a65b471a", "following_count": 3131, "verified_addresses": {"eth_addresses": ["0x617db13db6699aae8875cb4ee04040490c51c9a6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/kDiGXHPugE91LMeKA\"}"}', 'sonata'), - (1158754, '0xd74ca1ac488a375e194979696f1b7961d7c1c4be', 0, 1, '2024-05-08 04:14:12+00', 0, 4, '{"fid": 761, "object": "user", "pfp_url": "https://i.imgur.com/76SEpAy.jpg", "profile": {"bio": {"text": "Partnerships for PoolTogether, Silly Songs for Wassies", "mentioned_profiles": []}}, "username": "timcox", "power_badge": true, "display_name": "tim", "active_status": "inactive", "verifications": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "follower_count": 2369, "custody_address": "0xf26bb67ac1be7ef0c4002f178e2da73d87e20316", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "sol_addresses": ["AN4Mfb82QRDMAYBE6HGuUMxVFGUBNBMQ7iXpj3x2iN4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/6YmhApkbGfwiXlQ5tdyJbL?si=G1hu4lRYQm24r27_qfUpmw\"}"}', NULL), - (1159243, '0x3e3be681819d71d27f5e3a708b11f2a49203e51c', 0, 1, '2024-05-08 06:41:04+00', 0, 1, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/gm\"}"}', NULL), - (1159254, '0x59344287cd15d42aa938727bb862d95abc73ea22', 0, 1, '2024-05-08 05:11:58+00', 0, 0, '{"fid": 417360, "object": "user", "pfp_url": "https://i.imgur.com/4r0anyj.jpg", "profile": {"bio": {"text": "Songwriter, Guitarist, Singer, Avid audiobook listener\nReleasing NFTs on various platforms to do with music.\nhttps://www.sound.xyz/deshsaxena/releases", "mentioned_profiles": []}}, "username": "deshps16", "power_badge": false, "display_name": "Desh Saxena", "active_status": "inactive", "verifications": ["0xc26c7a496eabd0049d95971c2219307119534544"], "follower_count": 25, "custody_address": "0xf79a9d6950d1093e6c43d12dd3c4f6bbe83010b9", "following_count": 191, "verified_addresses": {"eth_addresses": ["0xc26c7a496eabd0049d95971c2219307119534544"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/deshsaxena/white-noise-pardon-me?referral_source=link\"}"}', NULL), - (1159217, '0x4e8e5fa81ba7fda090c256332e92d058c5c2368f', 0, 1, '2024-05-08 10:29:27+00', 0, 1, '{"fid": 380028, "object": "user", "pfp_url": "https://i.imgur.com/xbnrcVT.jpg", "profile": {"bio": {"text": "KING OF PIRATES🏴‍☠️", "mentioned_profiles": []}}, "username": "imluffy", "power_badge": false, "display_name": "LUFFY🎩", "active_status": "inactive", "verifications": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "follower_count": 419, "custody_address": "0xa6cef1929bafb1756ae00b8bdc68ac80bd6978a3", "following_count": 252, "verified_addresses": {"eth_addresses": ["0x1a94b37f5d8634a18483c027d145532fccf6b1b9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4cxMGhkinTocPSVVKWIw0d?si=Rju1doBaQiSu6o4hGgWXvA\"}"}', NULL), - (1159233, '0x53e5ae20813103ea0e8f404c4c2d3af4ccdc2fdd', 0, 1, '2024-05-08 11:12:14+00', 0, 1, '{"fid": 422003, "object": "user", "pfp_url": "https://i.imgur.com/KVduhzo.jpg", "profile": {"bio": {"text": "Digital drawings ✍🏻\nArt and feelings 🫧\nhttps://foundation.app/@ewi", "mentioned_profiles": []}}, "username": "ewi", "power_badge": false, "display_name": "ewi", "active_status": "inactive", "verifications": ["0x843953c8133e12ac7c6eca155a94758ede30a202"], "follower_count": 172, "custody_address": "0x1d26d5b2aa4d1503f1dab476e84da2f5d9bf774d", "following_count": 148, "verified_addresses": {"eth_addresses": ["0x843953c8133e12ac7c6eca155a94758ede30a202"], "sol_addresses": ["GkZ22wRJkhiTYDGzfh455V3MtNiDhgYAThr4m26Dnh95"]}}', '{"{\"url\":\"https://open.spotify.com/track/3J2WUEn6oFN8eDPZov7w9I?si=Su1ZVLh6Ry2LvJvw88JrdQ\"}"}', NULL), - (1159471, '0x25c75b9c2447a1a59e3c5d4f6093197f923a03ab', 0, 1, '2024-05-08 11:27:33+00', 0, 2, '{"fid": 401872, "object": "user", "pfp_url": "https://i.imgur.com/BIHfQYG.jpg", "profile": {"bio": {"text": "Base & Degen >>>ETH 🔥☄️💥 화이팅", "mentioned_profiles": []}}, "username": "hbkang", "power_badge": false, "display_name": "HB", "active_status": "inactive", "verifications": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "follower_count": 2690, "custody_address": "0x834305a91ada92d3a39a4d7949283cacf6f940a7", "following_count": 3149, "verified_addresses": {"eth_addresses": ["0xc8fbc5004df18365f35cd56ff148b660224fc381"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/JjZpwXJmbE5XPhUn8\"}"}', 'sonata'), - (1161317, '0x8a0b2f116b9d804ab85ee430f399b97731370e0d', 0, 1, '2024-05-08 22:59:29+00', 0, 1, '{"fid": 12425, "object": "user", "pfp_url": "https://i.imgur.com/9F7rUZB.jpg", "profile": {"bio": {"text": "Farcaster OG 676, EDM producer,Teacher, Fundamental Researcher, Technoholic , MONAD''s ambassador ", "mentioned_profiles": []}}, "username": "fab", "power_badge": true, "display_name": "HadiFab ", "active_status": "inactive", "verifications": ["0x309471398adfa2b136970583ad0db66294f035e3"], "follower_count": 1579, "custody_address": "0x7aaad5acd163a8e2a93129ce8c0fdd4a9e9d0d1e", "following_count": 938, "verified_addresses": {"eth_addresses": ["0x309471398adfa2b136970583ad0db66294f035e3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5AOvwvuy5FsW2BSNJ7rB6v?si=kIo7yWPyRamoyRMOcAfY_w\"}"}', NULL), - (1161197, '0x0b651f94b61bfb6a65fd372fd523f9cadac4f79c', 1010, 1, '2024-05-08 22:17:17+00', 0, 6, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 692, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 343, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/nodolabel/derrumba?in=cimarron-se-fue/sets/sin-cara-sin-nombre\"}"}', NULL), - (1162010, '0xed2c095d9c78bc2db01a845dbcb2be1a9e70ef97', 0, 1, '2024-05-09 03:25:31+00', 0, 3, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 523, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0gayhpzGMu1hW3FIvM8tIf?si=RKI0eIq2QY2yIzxPprI0pQ\"}"}', 'musicjp'), - (1159245, '0x67f1897dbafdaa1a7fdb427fcfa2847f753d38cf', 1000, 1, '2024-05-08 11:08:05+00', 0, 1, '{"fid": 372685, "object": "user", "pfp_url": "https://i.imgur.com/PlpMOKo.jpg", "profile": {"bio": {"text": "年間2000個以上アイス食べて、合間にWeb3とAI触ってます🍦Instagram:28.4k Followers |Marketing/Consulting|Ice cream influencer ", "mentioned_profiles": []}}, "username": "bucho", "power_badge": false, "display_name": "Bucho.degen🎩🔵🍖⛓️", "active_status": "inactive", "verifications": ["0x6553acdbcf4d52e0b49a4f48a03281130ad0355c"], "follower_count": 1452, "custody_address": "0x3f9b675cd66a92f823fbf8ba4628280e8b416bd3", "following_count": 653, "verified_addresses": {"eth_addresses": ["0x6553acdbcf4d52e0b49a4f48a03281130ad0355c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2OzhQlSqBEmt7hmkYxfT6m?si=Qr9jobLzTeqKshuZLnyUew\"}"}', NULL), - (1159255, '0xbae8ab6a6c436d0e3fece82ad5d45fe0ce13f6e1', 0, 1, '2024-05-08 03:55:09+00', 0, 2, '{"fid": 301979, "object": "user", "pfp_url": "https://i.imgur.com/8FMQBIH.jpg", "profile": {"bio": {"text": "CryptoNER 🚀( คริปโตเน้อออ😆 )", "mentioned_profiles": []}}, "username": "4poppo", "power_badge": false, "display_name": "4poppo", "active_status": "inactive", "verifications": ["0xb9c967aa41292ff7afe2adcd0ee04d302a88e8dd"], "follower_count": 1342, "custody_address": "0xb9f64ce8a5e6da6ef57bdebe1c4bfebf66b1465a", "following_count": 1518, "verified_addresses": {"eth_addresses": ["0xb9c967aa41292ff7afe2adcd0ee04d302a88e8dd"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/state-of-mind?referral=0xb9c967aa41292ff7afe2adcd0ee04d302a88e8dd\"}"}', NULL), - (1159237, '0xc55dd93f1eec95000492be91a0a8a5af01dfaa3c', 10, 1, '2024-05-08 08:02:30+00', 0, 0, '{"fid": 363917, "object": "user", "pfp_url": "https://bafybeibhkbpxttz7jl24cllk53ljx5qwzjhnhe5unfz6xkdkpao77sq53u.ipfs.nftstorage.link/rekt.svg", "profile": {"bio": {"text": "", "mentioned_profiles": []}}, "username": "nitin7177", "power_badge": false, "display_name": "Nitin Kumar Meena", "active_status": "inactive", "verifications": ["0x66016b95a53b198dcee8ecb91b13cdfbcbf0f9d3"], "follower_count": 39, "custody_address": "0xc63ff62ecb94239bda8f328fb7a5bbba05b62a0f", "following_count": 195, "verified_addresses": {"eth_addresses": ["0x66016b95a53b198dcee8ecb91b13cdfbcbf0f9d3"], "sol_addresses": ["LEHANWNaaH7BPrRXpwPjF8z8TUJHvi6R36ZyVpdASR6"]}}', '{"{\"url\":\"https://www.sound.xyz/karmawav/wav?referral=0xadfd576ddd60bb0d730ded731099f37514deb35f&referral_source=link\"}"}', NULL), - (1159249, '0xfc7e40cd5ccfa29f1610a49d509940f95765be44', 0, 1, '2024-05-08 07:45:12+00', 0, 0, '{"fid": 271891, "object": "user", "pfp_url": "https://i.imgur.com/UPrlw49.jpg", "profile": {"bio": {"text": "I''m Mr Meerkat - Each morning, as the sun comes up, I emerge and begin looking for food.", "mentioned_profiles": []}}, "username": "mrmeerkat", "power_badge": false, "display_name": "Mr Meerkat", "active_status": "inactive", "verifications": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "follower_count": 235, "custody_address": "0x2f5b92d58892bf7f4a93ba30d05bae6d512eb84c", "following_count": 499, "verified_addresses": {"eth_addresses": ["0xc0007d6dcd1e5d8517409a4c61f278c6798807c8"], "sol_addresses": ["6z85jgsYieCXPbxmhfN2hG9QgtxYhkX26216issd8zcp"]}}', '{"{\"url\":\"https://www.sound.xyz/mrmeerkat.eth/post/26e1c697-9eff-4d82-a7ad-03faad9cf28e\"}"}', 'soundxyz'), - (1071524, '0x7ab9eca1fa4c44f4b600d1cb5b7afd8ce1ce00ee', 110646, 1, '2024-05-07 15:16:38+00', 1522, 181, '{"fid": 453989, "object": "user", "pfp_url": "https://i.imgur.com/Y37BjM9.jpg", "profile": {"bio": {"text": "$JAAD 🎰🎩 yo legends, im jaad. the $DEGEN chain is my life. welcome to a new tipping experience. jaad.tips CA: 0x373e256C754Bf82f09071141b92bEafb83c38c68", "mentioned_profiles": []}}, "username": "jaadtips", "power_badge": false, "display_name": "jaad, the degen 🎩🎰", "active_status": "inactive", "verifications": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "follower_count": 924, "custody_address": "0x1ffcd57133eaca3c2f7fefd475474253b4494b82", "following_count": 128, "verified_addresses": {"eth_addresses": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dyl/gm?referral=0xffe6a480cd7093194cddaad3860c9f93a6127bdf&referral_source=link\"}"}', NULL), - (1159236, '0x7c0d2b343d54b1f6d5d3b68970ec0ac7e9acc01d', 0, 1, '2024-05-08 11:06:11+00', 0, 20, '{"fid": 474925, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/61b7a94c-579b-40fb-b914-d98e35c62700/original", "profile": {"bio": {"text": "슈캐장착/매일 2유닛 구매/매일 새벽반/진심소통🙏", "mentioned_profiles": []}}, "username": "koreaboy", "power_badge": false, "display_name": "코리아보이", "active_status": "inactive", "verifications": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "follower_count": 2701, "custody_address": "0x255934c64699de465de4e5a078855800be2d5fea", "following_count": 2989, "verified_addresses": {"eth_addresses": ["0xfdeabae9655a6ea2f04d417625a386948b2a4f78"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pkb1pVUm6H2ecbsm9\"}"}', 'sonata'), - (1159220, '0xf4e835bf1be07d041a5d1930da48642d3893972a', 0, 1, '2024-05-08 11:20:19+00', 0, 7, '{"fid": 435513, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/086bb923-eea3-4af4-b4ce-06be6ac17700/rectcrop3", "profile": {"bio": {"text": "I love Oh duck 🐤 Copyright ©️ by Oh duck ", "mentioned_profiles": []}}, "username": "sia08", "power_badge": false, "display_name": "Ori💎", "active_status": "inactive", "verifications": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "follower_count": 1349, "custody_address": "0x547f99de111a162591527e4e0d0a14ed68024e2c", "following_count": 1072, "verified_addresses": {"eth_addresses": ["0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e", "0x4b27579cc89fe4ff4e36d81194e5688a3f2f2bd6"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0185f2a1-aaca-4b2f-cbd4-46eb4cbe4400/original\"}","{\"url\":\"https://on.soundcloud.com/3PdLuPdk6FbBfPL86\"}"}', 'sonata'), - (1159232, '0x48faf1042704b4199477868bfe0c1e2f91147662', 0, 1, '2024-05-08 11:06:31+00', 0, 2, '{"fid": 443355, "object": "user", "pfp_url": "https://i.imgur.com/MDBMT9X.png", "profile": {"bio": {"text": "BTC,ETH love\nDEGEN楽しい\n\nシャドバン中なので引用キャスして下さい🙇‍♂️\n\n例のあれはどの投稿でもOK\n\n잘 부탁드립니다", "mentioned_profiles": []}}, "username": "fun-smile", "power_badge": false, "display_name": "キャス廃👻💯🎩⛓️", "active_status": "inactive", "verifications": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "follower_count": 1503, "custody_address": "0x8c8cdd17a36a70276134b8b4777fabe21842a413", "following_count": 1228, "verified_addresses": {"eth_addresses": ["0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/selennia-aura/sets/one-piece-opening?si=7062c1647504450aaa35a49026e260fa&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1159242, '0x8e712be350bcb3e5874efa1e684df4e05d5f481c', 0, 1, '2024-05-08 11:02:04+00', 0, 19, '{"fid": 501896, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/23f227ba-6847-4352-22a5-017d03310900/rectcrop3", "profile": {"bio": {"text": "hi!! i look forward to your kind cooperation❣️", "mentioned_profiles": []}}, "username": "yuruyuru", "power_badge": false, "display_name": "yuruyuru", "active_status": "inactive", "verifications": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "follower_count": 1821, "custody_address": "0x2a9a19de7beb1ff14bad1f67ddaddd417f1077de", "following_count": 1391, "verified_addresses": {"eth_addresses": ["0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/cu1XXQQavugWMTf66\"}"}', 'sonata'), - (1159252, '0xedf371e01af95dce6c8c7a5f4dd547cae585b103', 0, 1, '2024-05-08 05:53:59+00', 0, 7, '{"fid": 516943, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c8acac4-ff46-4a49-52d0-61cac43bf900/rectcrop3", "profile": {"bio": {"text": "Chance Is Another Name For Hardworking", "mentioned_profiles": []}}, "username": "!516943", "power_badge": false, "display_name": "Donyaw 🧡", "active_status": "inactive", "verifications": ["0x1205e0742e4c9f7f8f14313841be15ab967ad48c"], "follower_count": 81, "custody_address": "0x7537f1ec3685478edd53483ebe27602850ffe9b1", "following_count": 190, "verified_addresses": {"eth_addresses": ["0x1205e0742e4c9f7f8f14313841be15ab967ad48c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rohki/gravity\"}"}', 'sonata'), - (1161869, '0x3daf5c8bd8db6a14057a7ab30f1366513f103ad5', 23230, 1, '2024-05-09 02:39:03+00', 70, 227, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 254802, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 326, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://frames.cooprecords.xyz/generate/v2/jigitz/touch\"}","{\"url\":\"https://www.sound.xyz/jigitz/touch\"}"}', 'coop-recs'), - (1162506, '0xda92f4b9ce94a8807d4f8fe17fd77c014c7b088c', 100, 1, '2024-05-09 06:07:14+00', 0, 3, '{"fid": 9581, "object": "user", "pfp_url": "https://i.seadn.io/gae/lXENY3cJnutJqOMOvW_4QAqP_4rhe8RcHHWJl8gl145IBOSwRUVRS6NDk5wcIgEEAAn_lqDrRB32-xmwWm-N-zYeLR5h_7UFq1MyRg?w=500&auto=format", "profile": {"bio": {"text": "fridays at the park season 002 https://zora.co/collect/base:0x1bbea2cc3b2c41774687fd00684ad12f9a666557/6", "mentioned_profiles": []}}, "username": "thepark", "power_badge": true, "display_name": "the park", "active_status": "inactive", "verifications": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "follower_count": 2359, "custody_address": "0x4d125b80e2217b0cdfb366cfb77b84a3d3a94751", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5pbizIzZ5pjYbObsSdixW4?si=46aa9c25c8f14576\"}"}', NULL), - (1159261, '0x6680dc1e8d41e2f7f72fbb6cbadb53c99bbdcccf', 0, 1, '2024-05-08 01:38:21+00', 0, 4, '{"fid": 238853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a59d05-ac7c-4a6b-f4d3-0b52f78f9b00/original", "profile": {"bio": {"text": "bringing culture onchain. creating virtual artists. building @hume.", "mentioned_profiles": []}}, "username": "db3045", "power_badge": true, "display_name": "DavidBeiner", "active_status": "inactive", "verifications": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "follower_count": 967, "custody_address": "0xde3cea5bb06f5d18d92a827f0ace525bc714963a", "following_count": 371, "verified_addresses": {"eth_addresses": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/im-fine-feat-grimesai-x-wesghost\"}"}', 'sonata'), - (1159228, '0x6a6f0c299de34e487278334bfe799110ce419e2b', 0, 1, '2024-05-08 10:31:14+00', 0, 10, '{"fid": 345541, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/84a8cfdc-97da-46fb-5971-72104c24e300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨\nViva Tax🔥🔥\n\n裏金(🎩)に繋がるムーブを各チャンネルで行っています。全ては国民の皆様の為!\n\n/ogiri /gurumenavijp /littlehappyjp \n\n\n ", "mentioned_profiles": []}}, "username": "kasoutarou", "power_badge": false, "display_name": "Kasoutaro_👻 🎩⌐◨-◨", "active_status": "inactive", "verifications": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "follower_count": 975, "custody_address": "0xf46e4c92d3c8b02fbaf681a529b682432d2e1b74", "following_count": 1299, "verified_addresses": {"eth_addresses": ["0x77b0352100ebdb86a45557296e05721e48cc6d01"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6nJPHXRpKYv2yqtalEjKy5?si=A6qhSgbFS2W48HMt0sMU_w\"}"}', 'musicjp'), - (1159235, '0x298109753c1431f4845b4223080a8e226af786fc', 0, 1, '2024-05-08 11:21:56+00', 0, 0, '{"fid": 23472, "object": "user", "pfp_url": "https://i.imgur.com/kZDOyHt.jpg", "profile": {"bio": {"text": "I''m a little teapot who didn''t fill out my bio", "mentioned_profiles": []}}, "username": "akiphumi", "power_badge": false, "display_name": "akiphumi ✈️", "active_status": "inactive", "verifications": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "follower_count": 150, "custody_address": "0xd3b4b2a5eb9c49cde9b11050c3c61ea3d81b7507", "following_count": 173, "verified_addresses": {"eth_addresses": ["0x95045076fc93a14a4e9b576599479cb4f58a1b11"], "sol_addresses": ["EmXwqdQXcT7H8QGFaxNrcuCLtEV4TEEVCqNoJDCj59Eq"]}}', '{"{\"url\":\"https://www.sound.xyz/jutes/born-to-lose?referral=0x95045076fc93a14a4e9b576599479cb4f58a1b11&referral_source=link\"}"}', NULL), - (1159256, '0xefbc498d53b7eb9bb4f35dae864004aa3ce73b4e', 0, 1, '2024-05-08 06:39:29+00', 0, 2, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 969, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/marea\"}"}', NULL), - (1159246, '0xd2a178b9819c54dcc8d4ae9c16a9488df1a20c1f', 0, 1, '2024-05-08 11:14:08+00', 0, 4, '{"fid": 478436, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ff3f8840-86c8-4e04-6378-d39c7086e000/rectcrop3", "profile": {"bio": {"text": "선팔❤️맞팔 망고 지니 커플의 일상 기록 먹방\nNice too meet you I’m Korean my name is MANGO My girlfriend JINY\nOur couple''s daily life record\n", "mentioned_profiles": []}}, "username": "mangoco", "power_badge": false, "display_name": "MANGO❤️JINY COUPLE", "active_status": "inactive", "verifications": ["0x3af09cf05d346a0945c05ff8baa8ce474e2f044d"], "follower_count": 3568, "custody_address": "0xaf1619f0991e4a8af9d69e476372ed400d4d5e2b", "following_count": 2904, "verified_addresses": {"eth_addresses": ["0x3af09cf05d346a0945c05ff8baa8ce474e2f044d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uFfwrsVGH38hUc9DA\"}"}', 'banmal-mode'), - (240801, '0xc53dd214bb105fb9a2ee0f5f0fe38c6eecfdceba', 32228, 1, '2024-05-05 14:02:09+00', 360, 25, '{"fid": 453989, "object": "user", "pfp_url": "https://i.imgur.com/Y37BjM9.jpg", "profile": {"bio": {"text": "$JAAD 🎰🎩 yo legends, im jaad. the $DEGEN chain is my life. welcome to a new tipping experience. jaad.tips CA: 0x373e256C754Bf82f09071141b92bEafb83c38c68", "mentioned_profiles": []}}, "username": "jaadtips", "power_badge": false, "display_name": "jaad, the degen 🎩🎰", "active_status": "inactive", "verifications": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "follower_count": 793, "custody_address": "0x1ffcd57133eaca3c2f7fefd475474253b4494b82", "following_count": 120, "verified_addresses": {"eth_addresses": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/famous_dyl/sets/internet-legend-1\"}"}', NULL), - (1160693, '0x5d4f39c8467ecde009076ef4017157471402ce16', 0, 1, '2024-05-08 02:38:26+00', 0, 3, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Mg5CBO37Rifk2RyDJ8fzd?si=QSNEfXx-QmSzNytR-VhZaQ\"}"}', 'hard'), - (1159241, '0xedcefc0a68f26d0fd61203d298155878bec65aa8', 570, 1, '2024-05-08 11:02:34+00', 15, 38, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. ", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 5666, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2661, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/d5M5Qn4YswxPyxCk7\"}"}', 'rock'), - (1176094, '0x554a88d7cc3b446f8bf32dc9a84089f22353574c', 0, 1, '2024-05-16 15:07:03+00', 0, 0, '{"fid": 483033, "object": "user", "pfp_url": "https://i.imgur.com/PZ3q7M8.jpg", "profile": {"bio": {"text": "memelord, The Ultimate ReplyGuy /replyguys ", "mentioned_profiles": []}}, "username": "mosdef", "power_badge": true, "display_name": "maxxx 🎩🐂👀", "active_status": "inactive", "verifications": ["0x9dfaa44b42750fdae3c1c8689934b00148dc0680"], "follower_count": 650, "custody_address": "0x029e1508b475ef81dcafafcd1f0ea83f0418542a", "following_count": 337, "verified_addresses": {"eth_addresses": ["0x9dfaa44b42750fdae3c1c8689934b00148dc0680"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1XWWlu64sNi9jqktYeKH8O?si=x4t-DTgnSkm2zYkc7toWbw\"}"}', NULL), - (1159265, '0xb873948db7d4f760aeb286dbb7412a794def78e2', 28138, 1, '2024-05-08 05:14:10+00', 32, 0, '{"fid": 20300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f268c7c-62d3-4d51-e07d-c64e93317700/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter, DJ, Sonic Healer, 1/2 of @karmavioletta 🎶 Building @wavwrld 🌊🌐 1/77 of CHAOS & @songcamp", "mentioned_profiles": []}}, "username": "violetta", "power_badge": false, "display_name": "Violetta", "active_status": "inactive", "verifications": ["0x68375427c29995b277ad343aa89be591926c6088"], "follower_count": 83, "custody_address": "0x358273ae8525236066899f57d24dfb5e9d83dbf8", "following_count": 39, "verified_addresses": {"eth_addresses": ["0x68375427c29995b277ad343aa89be591926c6088"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/satisfaction?referral_source=link\"}"}', NULL), - (1160250, '0xcfeff00196788985db37f572298aede2230f2a0d', 0, 1, '2024-05-08 16:21:57+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 520, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2NeitqclMuX4Xyj1M1mmTp?si=PaDf53swQRWdmPxLDH4QaQ\"}"}', NULL), - (1160662, '0x28120269712eece87bc830f6f47f5aec24c6d57c', 0, 1, '2024-05-08 00:29:52+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Wrd7TpAgRmlUtcbpJCW3T?si=AFw8QJbGT1W-GPuQTrfJvQ\"}"}', NULL), - (1158755, '0x3b088cdbe967ee7de083995d7a59ab6d28b71fba', 1050, 1, '2024-05-08 04:53:13+00', 10, 4, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/abhidijon/twelve\"}"}', NULL), - (1160669, '0x9dba2b257fbbd2885d6e3bbc5e08be247b71d94c', 0, 1, '2024-05-08 00:34:45+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Hc6RM9TyaL3gfRla0Gegq?si=dKpe9460QGywA8e_lq8tXw\"}"}', NULL), - (1160264, '0xf03bfe215175ae15fac321446c8dccad78582c81', 0, 1, '2024-05-08 17:54:32+00', 10, 8, '{"fid": 6591, "object": "user", "pfp_url": "https://i.imgur.com/w3f0n6Y.png", "profile": {"bio": {"text": "\nNPC fighting to attain sentience.\nBuilder of software and songs. CS grad student.\n\nMusic, Blog, Website: https://www.mattlee.world/links", "mentioned_profiles": []}}, "username": "mattlee", "power_badge": true, "display_name": "Matt Lee ", "active_status": "inactive", "verifications": ["0x3ee75b599c076193b81885ca1838e560d268aad1", "0xfd9a638be3d424428a40fb4ce52a90cce7306c14"], "follower_count": 2457, "custody_address": "0x10e566ae27d6d22801f8fd43c1a619c8417da1de", "following_count": 922, "verified_addresses": {"eth_addresses": ["0x3ee75b599c076193b81885ca1838e560d268aad1", "0xfd9a638be3d424428a40fb4ce52a90cce7306c14"], "sol_addresses": ["F1rgKDwQcCvS4RR37S5L8RES1TQHirMjJq9iKvwDXexc"]}}', '{"{\"url\":\"https://open.spotify.com/track/4mY6K0hRQlpOs3hyTNOcKe?si=oPMjfWmVS8q_Eiej5VYjdA&context=spotify%3Aalbum%3A2qwv7hNjSGfLarHY2adeq9\"}"}', NULL), - (1159208, '0x67ffbc14fbe3734789faa83410cdb77d9fe90864', 0, 1, '2024-05-08 11:02:13+00', 0, 0, '{"fid": 403959, "object": "user", "pfp_url": "https://i.imgur.com/HCz0YyK.jpg", "profile": {"bio": {"text": "cocoです❣️よろしくお願いします✨", "mentioned_profiles": []}}, "username": "coco0v0", "power_badge": false, "display_name": "coco", "active_status": "inactive", "verifications": ["0x7c92974852b34fe2f19ad4197e1008a335ee704e"], "follower_count": 101, "custody_address": "0x98b84c4cf93836956c8fccdf9e9224cc4eac4029", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x7c92974852b34fe2f19ad4197e1008a335ee704e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0YTM7bCx451c6LQbkddy4Q?si=uD8HLtkuQNWZYoDlkjb9Iw&context=spotify%3Aplaylist%3A37i9dQZEVXbKXQ4mDTEBXq\"}"}', NULL), - (1159248, '0x3da9d13126209fa07d74039b770522b286a83a3a', 0, 1, '2024-05-08 11:01:26+00', 0, 0, '{"fid": 219069, "object": "user", "pfp_url": "https://i.imgur.com/j2SXQEV.png", "profile": {"bio": {"text": "🎩 🍖", "mentioned_profiles": []}}, "username": "vietnd1201", "power_badge": false, "display_name": "Vietdart.eth 🎩 🔵 🍖 🐹", "active_status": "inactive", "verifications": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "follower_count": 361, "custody_address": "0x21f73438f3b1b00374054725a1c0d606831ecda9", "following_count": 419, "verified_addresses": {"eth_addresses": ["0xca1a6e5fe34293775fe0dd109d74539b567eec34"], "sol_addresses": ["EuKhNC1Xqmmegj4AxxgqzzHSDPLYDDn29Aie2XKtXztA"]}}', '{"{\"url\":\"https://www.sound.xyz/gino/speed?referral=0xca1a6e5fe34293775fe0dd109d74539b567eec34&referral_source=post-266095c5-7148-48a2-bb5d-f708c08763c3\"}"}', NULL), - (1159230, '0xf6579880e281fb65529e210ebce8ab8cc9206ce3', 0, 1, '2024-05-08 11:04:10+00', 0, 0, '{"fid": 384407, "object": "user", "pfp_url": "https://i.imgur.com/ww5WESM.jpg", "profile": {"bio": {"text": "Future Degen Alpha Men", "mentioned_profiles": []}}, "username": "holicromik", "power_badge": false, "display_name": "Holicromik", "active_status": "inactive", "verifications": ["0x0e3e543eb22461c28c92c8987b0d23d79e24a2f3"], "follower_count": 32, "custody_address": "0x5002e6600a38bc85af3faa49a111a4a1b1671374", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x0e3e543eb22461c28c92c8987b0d23d79e24a2f3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby\"}"}', NULL), - (1176096, '0x124b7501b78fae09d06f90b671ba45be46b0bae2', 0, 1, '2024-05-16 15:17:13+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder: /artleague Contact theinversenft@gmail.com theinversenft.eth ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "I N V E R S E ", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1196, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1037, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/6lDRyazOLvirYaOFVecYRb?si=ARkpAGWpR1a1ZYBo1es-Ng&context=spotify%3Aalbum%3A459h6YbUugBOh0jJUi80Jw\"}"}', 'albumoftheday'), - (1176095, '0xbd96480d26c9a361fd1b87d48a799863f5486ee8', 1000, 1, '2024-05-16 15:17:41+00', 0, 1, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 1219, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 535, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/2cQxzcGw5eUJtqIdYuRoLq\"}"}', NULL), - (1159262, '0x6e428840d9b4b40d23e9c152e136adcae58a07ec', 0, 1, '2024-05-08 04:00:33+00', 0, 1, '{"fid": 501199, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fdd303da-9225-4d77-7151-47d9df7dc400/rectcrop3", "profile": {"bio": {"text": "Music | Art | Author 💯🎼\nExhibited X Performed @ NY, LA, TX, Vegas, Miami, Paris +\n\nwww.mrdariusmusic.com\nwww.sound.xyz/mrdarius", "mentioned_profiles": []}}, "username": "mrdariusone", "power_badge": false, "display_name": "MR. DARIUS 🎩", "active_status": "inactive", "verifications": ["0x6904bfb4522e10038fc675552176b866027be939"], "follower_count": 49, "custody_address": "0x60a31d7c961bf0989ff8b4f3c799d57a236667b3", "following_count": 203, "verified_addresses": {"eth_addresses": ["0x6904bfb4522e10038fc675552176b866027be939"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/0cefd289-f7c0-4eb0-9fdc-5ac632f8c906?invite=BCLDNW\"}","{\"url\":\"https://www.sound.xyz/mrdarius/ayo\"}"}', 'soundxyz'), - (1159251, '0x3b6644f7973c0c1937583b6304bebe485576b335', 1000, 1, '2024-05-08 06:05:18+00', 0, 1, '{"fid": 506726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/78eafe4e-461d-4ef5-d498-bd95b1ac3200/rectcrop3", "profile": {"bio": {"text": "危ない A versatile artist, who works as a rapper singer, producer and composer.\n\nhttps://www.sound.xyz/rapperabunai/releases", "mentioned_profiles": []}}, "username": "!506726", "power_badge": false, "display_name": "Rapper Abunai ", "active_status": "inactive", "verifications": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "follower_count": 280, "custody_address": "0x7dcbc4135bd36f691f24d9e8378dfcdbbd07f7fd", "following_count": 1790, "verified_addresses": {"eth_addresses": ["0xd75337cc91170415a8f51600eab50609c7fc3baa"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rapperabunai/beats-by-abunai-03?referral_source=link\"}"}', 'soundxyz'), - (1162514, '0xa0e0fdfb74d322b78cb26ad36de02c98da01d079', 1100, 1, '2024-05-09 06:11:27+00', 0, 6, '{"fid": 9581, "object": "user", "pfp_url": "https://i.seadn.io/gae/lXENY3cJnutJqOMOvW_4QAqP_4rhe8RcHHWJl8gl145IBOSwRUVRS6NDk5wcIgEEAAn_lqDrRB32-xmwWm-N-zYeLR5h_7UFq1MyRg?w=500&auto=format", "profile": {"bio": {"text": "fridays at the park season 002 https://zora.co/collect/base:0x1bbea2cc3b2c41774687fd00684ad12f9a666557/6", "mentioned_profiles": []}}, "username": "thepark", "power_badge": true, "display_name": "the park", "active_status": "inactive", "verifications": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "follower_count": 2359, "custody_address": "0x4d125b80e2217b0cdfb366cfb77b84a3d3a94751", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3YT2vdLbvfcjfCiNR4DsKT?si=cd7f3b20d80b4331\"}"}', NULL), - (1159203, '0xbbdb06746fe15cf1e99f518729942f061fff9139', 0, 1, '2024-05-08 10:45:46+00', 0, 0, '{"fid": 17892, "object": "user", "pfp_url": "https://i.imgur.com/zwxa0tc.jpg", "profile": {"bio": {"text": "Building /herocast. Consumer crypto, /clouds and Italo /disco.", "mentioned_profiles": []}}, "username": "biji", "power_badge": false, "display_name": "Biji", "active_status": "inactive", "verifications": ["0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee"], "follower_count": 114, "custody_address": "0xbc3d093148abebfde9f9e8c7bb589da881eb375b", "following_count": 203, "verified_addresses": {"eth_addresses": ["0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4kSYkNHpNyj04py0rvvGWf?si=5eb4f859802b4da1\"}"}', 'techno'), - (1159210, '0xb8a807aa9c0a826825957714114b9fa83cca5c98', 0, 1, '2024-05-08 11:22:03+00', 0, 2, '{"fid": 501790, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/98ce05e5-11e4-493e-296a-090d22697f00/rectcrop3", "profile": {"bio": {"text": "I love you♡", "mentioned_profiles": []}}, "username": "bizzu", "power_badge": false, "display_name": "Bizzu🎩🍖", "active_status": "inactive", "verifications": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "follower_count": 660, "custody_address": "0x2666b5dc3443876805ea0da8273c4a3b815d0a26", "following_count": 938, "verified_addresses": {"eth_addresses": ["0x12f318f4154f289da3df8785730a119fdafb8b36"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/ta2jian-241487429/duet-with?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1161198, '0xdc802c27b1d9cc644d4f42d19cab9406bbcefb6f', 1000, 1, '2024-05-08 22:23:35+00', 0, 6, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 425, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 169, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5rWvpSsk5b7wyyhBMoS05b?si=633cbe0841e64115\"}"}', NULL), - (1159218, '0x45ac38f968957de5fa43c46955eae41b869ed59d', 0, 1, '2024-05-08 10:27:02+00', 0, 12, '{"fid": 276109, "object": "user", "pfp_url": "https://i.imgur.com/tyIEtsV.jpg", "profile": {"bio": {"text": "lens based light bender | hosting /lightlounge 🔦✨\nlinktr.ee/gabriellamorton", "mentioned_profiles": []}}, "username": "gabriellamorton", "power_badge": true, "display_name": "ella", "active_status": "inactive", "verifications": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "follower_count": 513, "custody_address": "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57", "following_count": 393, "verified_addresses": {"eth_addresses": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/71yW1QmxXGnUtXheGOzxgV?si=PXD-kxECRdCDhCvlTSPa7w\"}"}', 'sonata'), - (1159238, '0xa4388db8bdbf53fd768908e68dbd8322cc5440ae', 0, 1, '2024-05-08 11:06:48+00', 0, 0, '{"fid": 374192, "object": "user", "pfp_url": "https://i.imgur.com/jG6RwlI.jpg", "profile": {"bio": {"text": "😫Stop whinning & Start winnig 😎\nThe Goals in oure live s Deserve to be Reached ", "mentioned_profiles": []}}, "username": "lastlight", "power_badge": false, "display_name": "Shayan 🎩 🔵 ⛓️ 🔮", "active_status": "inactive", "verifications": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "follower_count": 1222, "custody_address": "0xc256c0dc94d268052d65ca85247fd95033c0e7bf", "following_count": 1437, "verified_addresses": {"eth_addresses": ["0x9070d8705a65618b302891b320ecdc6ecf0285bb"], "sol_addresses": ["CCkNB1K4viy87HxawUNH95Y9Xy2gc2xW537RLBm8zN7K"]}}', '{"{\"url\":\"https://on.soundcloud.com/aT3yd\"}"}', NULL), - (1161558, '0x02d1b588885b3b35c6c90933c0f07353a9653e2c', 10, 1, '2024-05-09 00:22:32+00', 0, 11, '{"fid": 18325, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/816c8cab-759c-4f89-e652-9c983a5a6100/rectcrop3", "profile": {"bio": {"text": "Based in DC. ⛓️ @DANC3 \nfind me enjoying https://zora.co/@crittiep", "mentioned_profiles": []}}, "username": "crittiep", "power_badge": true, "display_name": "↑ ↑ Crittie p ↑ ↑", "active_status": "inactive", "verifications": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "follower_count": 361, "custody_address": "0x34a56e7cf6de51416ab2f84bc6c48fcee32c18a3", "following_count": 485, "verified_addresses": {"eth_addresses": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "sol_addresses": ["5DCTxf6kHtgrFwT4f2FPsCAbECaxn84ZVjKAx9DW7aY2"]}}', '{"{\"url\":\"https://open.spotify.com/track/0qxYx4F3vm1AOnfux6dDxP?si=82b3fda26a8d4cff\"}"}', 'sonata'), - (1159224, '0x6fd2703dc4b65029b88134e8f639d1879914d32c', 0, 1, '2024-05-08 11:07:07+00', 0, 3, '{"fid": 372685, "object": "user", "pfp_url": "https://i.imgur.com/PlpMOKo.jpg", "profile": {"bio": {"text": "年間2000個以上アイス食べて、合間にWeb3とAI触ってます🍦Instagram:28.4k Followers |Marketing/Consulting|Ice cream influencer ", "mentioned_profiles": []}}, "username": "bucho", "power_badge": false, "display_name": "Bucho.degen🎩🔵🍖⛓️", "active_status": "inactive", "verifications": ["0x6553acdbcf4d52e0b49a4f48a03281130ad0355c"], "follower_count": 1452, "custody_address": "0x3f9b675cd66a92f823fbf8ba4628280e8b416bd3", "following_count": 653, "verified_addresses": {"eth_addresses": ["0x6553acdbcf4d52e0b49a4f48a03281130ad0355c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6iDb4R20jkxRDlEPIZzMRv?si=qSmRT1WZSXmGrkXTRjr0pQ\"}"}', NULL), - (1176097, '0x575efbecc7adf747902d527035599417a88d24c3', 200, 1, '2024-05-16 15:50:00+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 1004, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 732, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":1315,\"hash\":\"0x379582d01f914b72d9a60864e0021c6f0a231eca\"}}","{\"url\":\"https://open.spotify.com/track/0VLdJcQUsqHBBwqPp4CIKJ?si=gWetw1NrSI6TVKApe57jcg\"}"}', 'spirituality'), - (1161548, '0xcd1fda11d8b953b61ad4ba965e5bc28f2bfd0cf3', 0, 1, '2024-05-09 00:19:18+00', 0, 1, '{"fid": 266845, "object": "user", "pfp_url": "https://i.imgur.com/dWjIM8B.jpg", "profile": {"bio": {"text": "Art lover, crypto enthusiast and gamer. Learning never ends.", "mentioned_profiles": []}}, "username": "ricoxy", "power_badge": true, "display_name": "Rico IS Here 🦊 🎩", "active_status": "inactive", "verifications": ["0xa19b4fd4383a6b80e26578a604c36d60d1007e41"], "follower_count": 926, "custody_address": "0xedd2e6cff4c94a95d03bef589092d5e3c4580208", "following_count": 265, "verified_addresses": {"eth_addresses": ["0xa19b4fd4383a6b80e26578a604c36d60d1007e41"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3AJwUDP919kvQ9QcozQPxg?si=1l6ZFuZySHuNx9KorjKbSQ&utm_source=copy-link\"}"}', NULL), - (1159212, '0x5a5fad61747d3c021ee5e3b2e36f8051d318c2fd', 0, 1, '2024-05-08 10:13:45+00', 0, 4, '{"fid": 291712, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeicd3zrryr6cbb6456epl5eqyzlo6ec4s56sk5wc7awgc246nua27i/1", "profile": {"bio": {"text": "Studying and investing cryptos. ", "mentioned_profiles": []}}, "username": "multan", "power_badge": false, "display_name": "Bonzil🎩", "active_status": "inactive", "verifications": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "follower_count": 1291, "custody_address": "0xe61d9181dffdcd462b0e3269c93d6d0af4a3e4db", "following_count": 1236, "verified_addresses": {"eth_addresses": ["0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66", "0x178532fada1f2f872672dc3872314c32a5ff51f2", "0xd4cc4e417c26ea61e6e1db48ea0ad76cc976ddbf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6RiqaQCC5fInr4n48CH6HJ?si=SF5dahYIQGKtYxJqUbKKqQ\"}"}', 'sonata'), - (1159247, '0xe0c7e15577cd94f09ec346eeb01b24f6828fc657', 0, 1, '2024-05-08 11:01:31+00', 0, 3, '{"fid": 420233, "object": "user", "pfp_url": "https://i.imgur.com/7F1JLM4.jpg", "profile": {"bio": {"text": "F4F 조대리 열심히 갑니다💥\n선팔 환영해요😆", "mentioned_profiles": []}}, "username": "jamessyo", "power_badge": false, "display_name": "Jamess", "active_status": "inactive", "verifications": ["0xd1204cf23774aaf09b0e0e16f451e0841dfd510e"], "follower_count": 1336, "custody_address": "0x7fb06479cccaa7cb4e94512ecfb5a19965e35d2f", "following_count": 1495, "verified_addresses": {"eth_addresses": ["0xd1204cf23774aaf09b0e0e16f451e0841dfd510e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/nxFhJpVEW9MmzL7x8\"}"}', 'sonata'), - (1159219, '0xbe3a42ffcac1ba4dd76d39d64e67e290df63e282', 0, 1, '2024-05-08 10:30:41+00', 0, 1, '{"fid": 13873, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/57ce296f4430989f8612bc4c400ab169.png?w=500&auto=format", "profile": {"bio": {"text": "Civil Engineering Student, Gamer, 5 years of crypto adventure. 💛💙", "mentioned_profiles": []}}, "username": "serhan", "power_badge": false, "display_name": "Serhan", "active_status": "inactive", "verifications": ["0x426bb07783eedbea60adaad4e99f0540afbfebbd"], "follower_count": 36, "custody_address": "0x29a8921f2fdf81879355ecd513677da5318abac7", "following_count": 69, "verified_addresses": {"eth_addresses": ["0x426bb07783eedbea60adaad4e99f0540afbfebbd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5frBDLuieIAoNbCyh3A6Nr?si=OVJxmjW8TPizDFivT6Bgkg\"}"}', NULL), - (1159259, '0x7ecb70d8641bb933d5f9f917e859a0c3121d8f1e', 0, 1, '2024-05-08 05:39:15+00', 0, 24, '{"fid": 404680, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8305e183-56bb-4f14-232b-15286879e900/original", "profile": {"bio": {"text": "Oh yeah, something big is coming👀\n😉", "mentioned_profiles": []}}, "username": "muhmad23", "power_badge": false, "display_name": "Muhammad", "active_status": "inactive", "verifications": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "follower_count": 2297, "custody_address": "0xf06de14417da51b9605b52a2366b7da27cf4c147", "following_count": 2226, "verified_addresses": {"eth_addresses": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rohki/desperado-no-2\"}"}', 'sonata'), - (1176098, '0x1d831c9e2b34e478a41cf909f23598aebcf9c253', 1000, 1, '2024-05-16 15:51:43+00', 0, 0, '{"fid": 243906, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9efb1242-f1dd-4a6a-33b5-16ab8a1e7300/rectcrop3", "profile": {"bio": {"text": "being being a being | in the /garden |\n\nwww.spacetobe.xyz/garden", "mentioned_profiles": []}}, "username": "know", "power_badge": true, "display_name": "know", "active_status": "inactive", "verifications": ["0x10ac0e67d5022a16153fbb4b2d813e15ce442eee", "0xd2e34a23e385a4602abfd7408e35375a1d93c121"], "follower_count": 699, "custody_address": "0xf238549dded59efc589cb09a1850503050f5e24e", "following_count": 393, "verified_addresses": {"eth_addresses": ["0x10ac0e67d5022a16153fbb4b2d813e15ce442eee", "0xd2e34a23e385a4602abfd7408e35375a1d93c121"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Vq9qqSlma4h5xl46436FI?si=FxhrnelaS-ymbw_xuJT2mg\"}"}', 'garden'), - (1161527, '0xda8074640a0e509313bb4fb7629a8e75c5a264d6', 2010, 1, '2024-05-09 00:10:30+00', 0, 6, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6G7OiVdHJAbsaNqx94ojqg?si=5a4efd8a72154701\"}"}', 'sonata'), - (1163899, '0xd7b81107e31c6c89f45d119c6941ce3c342f3e8b', 0, 1, '2024-05-09 15:46:06+00', 100, 2, '{"fid": 420765, "object": "user", "pfp_url": "https://i.imgur.com/GTp8uTs.jpg", "profile": {"bio": {"text": "Software Eng. Dumb dad. Aging emo. Reply guy.", "mentioned_profiles": []}}, "username": "big-red", "power_badge": true, "display_name": "Red 🎩", "active_status": "inactive", "verifications": ["0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8"], "follower_count": 1199, "custody_address": "0x9da027fe76c7fcae3ae9abba775641e7a9d473a8", "following_count": 197, "verified_addresses": {"eth_addresses": ["0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6uaaVLXryfZLwNBIJOdfQE?si=Te2rVCiYRjer9gyLC44BWg\"}"}', 'emo'), - (1165985, '0xa2b5cdfe3c6fb25c62a42352ce0faef28b22ae52', 100, 1, '2024-05-11 16:04:34+00', 0, 0, '{"fid": 415248, "object": "user", "pfp_url": "https://i.imgur.com/sQ371h7.jpg", "profile": {"bio": {"text": "DJ / Producer from London. Dad Joker. Sorare player. Manager name: Stish", "mentioned_profiles": []}}, "username": "plastician.eth", "power_badge": true, "display_name": "Plastician", "active_status": "inactive", "verifications": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "follower_count": 458, "custody_address": "0x09aa8409a31840b0386f205f0edf2974a3522291", "following_count": 255, "verified_addresses": {"eth_addresses": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/KFRq1hNeGmKtz37R7\"}"}', 'paidgroup'), - (1171332, '0x2cc2f7553acb02d3bfc2f87e5e949ffd93511fb7', 0, 1, '2024-05-14 17:39:29+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1935, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/aa8e85ba-3c6d-479b-b554-7417bc00d4b3\"}"}', 'soundxyz'), - (1171333, '0x71f1d755401af647954dc7d5131f7f4858b307a0', 0, 1, '2024-05-14 17:39:37+00', 0, 0, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 299, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 330, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4HR9HEJrwkltRFNsSm2wGE?si=97067e6a0588406b\"}"}', 'housemusic'), - (1159263, '0x04f998893c1420eb3d44f7073ca7d47c983946e4', 0, 1, '2024-05-08 05:10:42+00', 0, 0, '{"fid": 417360, "object": "user", "pfp_url": "https://i.imgur.com/4r0anyj.jpg", "profile": {"bio": {"text": "Songwriter, Guitarist, Singer, Avid audiobook listener\nReleasing NFTs on various platforms to do with music.\nhttps://www.sound.xyz/deshsaxena/releases", "mentioned_profiles": []}}, "username": "deshps16", "power_badge": false, "display_name": "Desh Saxena", "active_status": "inactive", "verifications": ["0xc26c7a496eabd0049d95971c2219307119534544"], "follower_count": 25, "custody_address": "0xf79a9d6950d1093e6c43d12dd3c4f6bbe83010b9", "following_count": 191, "verified_addresses": {"eth_addresses": ["0xc26c7a496eabd0049d95971c2219307119534544"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/deshsaxena/white-noise-pardon-me?referral_source=link\"}"}', 'sonata'), - (119736, '0x65e63f149906b50b73613ccdd03a55aba3e789c1', 19499, 1, '2024-05-05 04:56:05+00', 1980, 159, '{"fid": 486646, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/db7e9182-0de5-4afb-d1ca-a837e062dc00/rectcrop3", "profile": {"bio": {"text": "𝐵𝑒 𝑎 𝑄𝑢𝑒𝑒𝑛 𝐹𝑖𝑔ℎ𝑡𝑖𝑛𝐺 𝑎𝑙𝑜𝑛𝑒", "mentioned_profiles": []}}, "username": "nazanin0", "power_badge": false, "display_name": "Nazanin 🎩", "active_status": "inactive", "verifications": ["0xa7fe4b31258fda80f1777012dabca549cb30117c"], "follower_count": 779, "custody_address": "0xb6ac009e72ae8a7a19b0ed956ce70cb2fe78bccf", "following_count": 695, "verified_addresses": {"eth_addresses": ["0xa7fe4b31258fda80f1777012dabca549cb30117c"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you\"}"}', NULL), - (1160697, '0xcb93dc702248347faa2ab45448701ca38127c0f1', 0, 1, '2024-05-07 23:16:52+00', 0, 1, '{"fid": 226690, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cc6df225-c949-4eba-df5f-60524f320000/original", "profile": {"bio": {"text": "Building onchain Tokyo shit @senspace 🗼 /ball /card /tokyowip /ren /jp\nUnoffficial /farcon-tokyo committee", "mentioned_profiles": []}}, "username": "renstern.eth", "power_badge": true, "display_name": "Ren Stern 🟡🃏🗼", "active_status": "inactive", "verifications": ["0xf98b7e44efe4c60264564554b885ab884d0dd904"], "follower_count": 3990, "custody_address": "0x6e3c23ad0d5388f5b2903a81d7b86a3f08b36e0b", "following_count": 1230, "verified_addresses": {"eth_addresses": ["0xf98b7e44efe4c60264564554b885ab884d0dd904"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7sDfUOhIVCudNZox8rlkZk?si=AI0KdjhNRF6cMOarswxErw\"}"}', NULL), - (1160682, '0x0413895dd68faac4b4dce9816824dec9e9fceb98', 0, 1, '2024-05-08 02:08:17+00', 0, 28, '{"fid": 4407, "object": "user", "pfp_url": "https://i.imgur.com/kynnpYw.jpg", "profile": {"bio": {"text": "The Farcaster formerly known as Kchamp. Books, beats, bodybuilding, bright ideas and beautiful things.\n\nkatherinechampagne.com ", "mentioned_profiles": []}}, "username": "keccers.eth", "power_badge": true, "display_name": "Katherine", "active_status": "inactive", "verifications": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "follower_count": 83887, "custody_address": "0xe4c5b20fd2168af6fe9d74e3e46f55f12684567f", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Ps56dg4abiyLlaRbqJo2R\"}"}', NULL), - (1161479, '0x90c2444cc7aefddbd68001ae2a0a44acf2507516', 2000, 1, '2024-05-08 23:53:33+00', 100, 4, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 573, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 107, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=ab5892fb71fc4da1\"}"}', NULL), - (1173219, '0x5222ba4031654704b22735ea1dab1a3e75ea7fe9', 4333, 1, '2024-05-15 13:29:18+00', 0, 19, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4390, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 519, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2gABnPYOMsyxThmsOQ4uWK?si=CLnWYsX3TAeL_o1N76UfDQ\"}"}', 'bangers'), - (1159264, '0xa529c60a3956085b4612746685bd9939eec45ce8', 0, 1, '2024-05-08 00:25:09+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dasha/austin\"}"}', NULL), - (1159234, '0x470133e39291e298f4fb65fea284cfb4779f43d3', 1000, 1, '2024-05-08 11:07:48+00', 0, 2, '{"fid": 421903, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cb6e9b1b-7c3e-49f9-5e28-d9a932827f00/original", "profile": {"bio": {"text": "🐹メシチャンネル作りました \nチャンネルを覗くだけじゃなくてフォローするんだよっ\n/meshi-jp", "mentioned_profiles": []}}, "username": "pontex", "power_badge": false, "display_name": "pontex🍖🔵", "active_status": "inactive", "verifications": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "follower_count": 1328, "custody_address": "0xf33caca7d25d2b4980bfdf60e3a90e75968eaf5f", "following_count": 905, "verified_addresses": {"eth_addresses": ["0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/lidocain1512/arigatou-kokia?in=kirillstavropol/sets/kokia\"}"}', NULL), - (1160661, '0xeeb00c64ece45bcf699fb9f8db521c5360e907de', 0, 1, '2024-05-08 02:01:27+00', 0, 3, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \n", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🎩 ", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1120, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 987, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4h1Vann4dJFv8BfbM8Q6XI?si=43f37d828e6f486c\"}"}', NULL), - (1161583, '0xb0e5c1bba9897985c41a92a5fb154a491157f6b8', 1010, 1, '2024-05-09 00:32:44+00', 0, 4, '{"fid": 8939, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ababde70-0724-4e15-99ec-44ab3e1b8400/rectcrop3", "profile": {"bio": {"text": "/annelisa /buidlbox @buidlbox 💫\n(fka @gitcoin events) 💕 one of the /djs ", "mentioned_profiles": []}}, "username": "annelisa", "power_badge": true, "display_name": "annelisa.eth", "active_status": "inactive", "verifications": ["0x31938f42358b993b815cce8e533004eed2146bb6"], "follower_count": 497, "custody_address": "0xddedb00a9fdb399bb2dbf298814f24bee5f19531", "following_count": 128, "verified_addresses": {"eth_addresses": ["0x31938f42358b993b815cce8e533004eed2146bb6"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8RY7eCY53phC8Q8o8\"}"}', NULL), - (1176103, '0x5f1563e3af651bc6e87e001303731a5d3916bd24', 1000, 1, '2024-05-16 17:05:35+00', 0, 1, '{"fid": 384424, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a0633ede"}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2946, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2242, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://www.youtube.com/watch?v=94ezqJNfoGY\"}","{\"url\":\"https://on.soundcloud.com/iJEYDAB7Cdf5MewS7\"}"}', 'sonata'), - (1160666, '0xb9d36d1d7090ad9c8dd86624e97071496be47e9d', 0, 1, '2024-05-08 02:46:18+00', 0, 16, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 654, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 452, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7sqii6BhIDpJChYpU3WjwS?si=zxtLGPcISbCUoXcAedxiyA\"}"}', 'sonata'), - (1161195, '0x8717d827b5f333d26a5ac02e50bf4831e2adb5bf', 3222, 1, '2024-05-08 22:00:57+00', 0, 6, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 3601, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6fF4ajiGIcrhl3qKsfnPyY?si=vMJgC_NfQQOEzz58JCWG4Q\"}"}', 'bangers'), - (1160663, '0x1ed12a2963091414a4ec9ad4503bb9ec8681c21a', 0, 1, '2024-05-08 02:31:39+00', 0, 3, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \n", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🎩 ", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1120, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 987, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3A2uW9HGnS8gwoCoo2geYr?si=d18de1b69b3542bf\"}"}', NULL), - (1162850, '0x74847cf1569fed0f1dcdda61db14e08eed1d206c', 1000, 1, '2024-05-09 08:10:10+00', 0, 8, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2285, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 916, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://on.soundcloud.com/A4kqq\"}"}', NULL), - (1159462, '0xeee318c47a73527943fb44598fe84604d65b7be0', 0, 1, '2024-05-08 11:27:47+00', 0, 1, '{"fid": 385262, "object": "user", "pfp_url": "https://i.imgur.com/Ah9MW7u.jpg", "profile": {"bio": {"text": "/paidgroup-jp 管理人/ DEG鯖民 / OGTOCDNFT Holder / Japanese crypto degen /\nhttps://x.com/rayneko6\n\n", "mentioned_profiles": []}}, "username": "rayneko", "power_badge": false, "display_name": "Ray 🍖🎩", "active_status": "inactive", "verifications": ["0xefb823e3b4481f3c5526370c7d9e009040c0028a"], "follower_count": 927, "custody_address": "0xb4598402b40a16134f5245baf95a2a56bac3c45a", "following_count": 1079, "verified_addresses": {"eth_addresses": ["0xefb823e3b4481f3c5526370c7d9e009040c0028a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3iKJWOQJtENE3kFWMXh8JM?si=eLwgg47TShuc97LseO1NbQ\"}"}', NULL), - (1159250, '0xe01137863f8dcf8b58979f61c39b3b55c4cc0353', 0, 1, '2024-05-08 11:07:25+00', 0, 5, '{"fid": 459244, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/44b61876-09a2-4bb2-6fbe-d6836d457100/rectcrop3", "profile": {"bio": {"text": "같이의 가치 .같이 성장해요❤️\n I know the value of being together🙏", "mentioned_profiles": []}}, "username": "akfcnl4", "power_badge": false, "display_name": "Bumj", "active_status": "inactive", "verifications": ["0xb107c5c09355d5612c3273c7b5ca46fb84e8fdb5"], "follower_count": 2784, "custody_address": "0x35e2511d7fa56d47531f435a15867fbfcdcb501e", "following_count": 2710, "verified_addresses": {"eth_addresses": ["0xb107c5c09355d5612c3273c7b5ca46fb84e8fdb5"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/MWjpmhYyVMKCYrQc8\"}"}', NULL), - (1159244, '0x61f23e26dde3b9cc827e067bd69dfb8b3123a23e', 0, 1, '2024-05-08 11:00:47+00', 0, 1, '{"fid": 416834, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeieoqkev25vvsj3l6om2z3evgigkdpbcyb2xswp3ycx2jzgzjesys4", "profile": {"bio": {"text": "日本に住んでいます。\n音楽、旅行、映画に興味があります。\nよろしくお願いします。\n\nI live in Japan.\n I am interested in music, travel and movies.\n Best regards.", "mentioned_profiles": []}}, "username": "hudooo", "power_badge": false, "display_name": "hudooo🔮🎩🔵", "active_status": "inactive", "verifications": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "follower_count": 713, "custody_address": "0x1eb13c786f81cb2326da9e26127e3a5db48e4678", "following_count": 873, "verified_addresses": {"eth_addresses": ["0x5d388e1a6823edffca9255beb15bd7a7b5515a3a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/Xs2pM83WWwfUvHtG7\"}"}', 'japanese-music'), - (1159470, '0x5f50cce9ee186c3e71a7f0c115d75598715ee720', 0, 1, '2024-05-08 11:30:27+00', 0, 6, '{"fid": 401099, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmZgJcuMK7R5R23ngaztyPY2Y2haJeLWdem4U4PXyNsioi?filename=AI_Generative_Art-1713409708087.png", "profile": {"bio": {"text": " 강아지 좋아하고 이제 시작한 코린이!화이팅 맞팔가요:) ", "mentioned_profiles": []}}, "username": "kamsim", "power_badge": false, "display_name": "Kamsim", "active_status": "inactive", "verifications": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "follower_count": 3987, "custody_address": "0x3500eae28629623cda98018e962aeb52fa1c02c1", "following_count": 3412, "verified_addresses": {"eth_addresses": ["0xae5d0cee466d0327b3d6593fdc1572095b8b0de9"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/1xMP6\"}"}', 'sonata'), - (1159482, '0x349e16e1365f83105533b3e5e5f7a9592f769945', 0, 1, '2024-05-08 11:30:14+00', 0, 5, '{"fid": 419991, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/86b144c9-a6ff-44e4-54c8-2cbfcb987a00/rectcrop3", "profile": {"bio": {"text": "😤", "mentioned_profiles": []}}, "username": "siyul12", "power_badge": false, "display_name": "siyul🎩⛓️🍖", "active_status": "inactive", "verifications": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "follower_count": 2595, "custody_address": "0x64f36df4d43f0c14b9d54d808377b84a673caa1b", "following_count": 2584, "verified_addresses": {"eth_addresses": ["0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/e2jbp\"}"}', 'sonata'), - (911523, '0xe14fd85c55d281cc02894ddd5634c6deef3fb5ac', 3689, 1, '2024-05-07 07:05:12+00', 0, 65, '{"fid": 404680, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8305e183-56bb-4f14-232b-15286879e900/original", "profile": {"bio": {"text": "Oh yeah, something big is coming👀\n😉", "mentioned_profiles": []}}, "username": "muhmad23", "power_badge": false, "display_name": "Muhammad", "active_status": "inactive", "verifications": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "follower_count": 2282, "custody_address": "0xf06de14417da51b9605b52a2366b7da27cf4c147", "following_count": 2217, "verified_addresses": {"eth_addresses": ["0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5", "0xc98a8678731f9c4f2d4aad04d28e71b5bced521a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbo/resenaren\"}"}', NULL), - (1176104, '0x9a4027822904472f43a9ef82fbba993072377fdd', 3000, 1, '2024-05-16 17:14:37+00', 100, 0, '{"fid": 398824, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiehycw2f5ed4dvvpgttcrnivsgwwv3df3mxocg7v7pwf43i4n7uom", "profile": {"bio": {"text": "Guy diving into crypto"}}, "username": "xbased", "power_badge": true, "display_name": "Irohcrypto 🎩⛓️🧾", "active_status": "inactive", "verifications": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "follower_count": 945, "custody_address": "0x019db65b233873283c5ac2e5a728ed438c28172c", "following_count": 1264, "verified_addresses": {"eth_addresses": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4KW1lqgSr8TKrvBII0Brf8?si=_lq6zCq2RyaU-E7VNtAx1Q\"}"}', 'bangers'), - (1159485, '0xe783b9077cc6867ef6b2a99952dc043183b654e8', 0, 1, '2024-05-08 11:29:37+00', 0, 0, '{"fid": 287325, "object": "user", "pfp_url": "https://i.imgur.com/t1CAksh.png", "profile": {"bio": {"text": "👋 I am a crypto investment expert! 🚀 Now building success through long-term strategies and deep market understanding. 💰 Do you want to grow together? ", "mentioned_profiles": []}}, "username": "fly-winysm", "power_badge": false, "display_name": "Y.ChongMU🎩🍖🌈", "active_status": "inactive", "verifications": ["0xcdfe2249781b9a9f60b53721a4b8bb01ce5812fd"], "follower_count": 1258, "custody_address": "0xe9d97250987c85f9bd1e671f22865de19f865823", "following_count": 1490, "verified_addresses": {"eth_addresses": ["0xcdfe2249781b9a9f60b53721a4b8bb01ce5812fd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/tAnu3rEmbwcoA4F48\"}"}', 'sonata'), - (1159508, '0x993c067e6b89364ba4fae682c5d1481f27cef98f', 0, 1, '2024-05-08 11:27:59+00', 0, 8, '{"fid": 478670, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/557d5aac-bc5b-4969-c6ca-f33b2b0e5800/rectcrop3", "profile": {"bio": {"text": "Blockchain researcher & web3 domain activist ", "mentioned_profiles": []}}, "username": "zahedtabnak", "power_badge": false, "display_name": "Zahed", "active_status": "inactive", "verifications": ["0xdf197a1d465d01224d83921839f8a7dc6a106212"], "follower_count": 1584, "custody_address": "0x0905777f4eb530ba9bdb4f658bb39bf7cb1fef6c", "following_count": 2404, "verified_addresses": {"eth_addresses": ["0xdf197a1d465d01224d83921839f8a7dc6a106212"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/7fcQ1\"}"}', 'sonata'), - (1176105, '0x9a16ef277998944fa372ec42e34dea161a617065', 1000, 1, '2024-05-16 17:15:53+00', 0, 0, '{"fid": 5818, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/fHFhEyRAWUv3GGEhSdD9fMQ8D9mdNcSPh2CrhTIqqQuXM62gAGclA5co44eUB-p-WP7zOC9opPTCtZYPvr4C9joBLVxMhhLFdjUH?w=500&auto=format", "profile": {"bio": {"text": "Cohost /gmfarcaster livestream podcast🎙️ Conversational Liquidity Provider 💬 Founder Tenger Ways, bringing joy into work with DevOps practices 🤗 mom x 3 💗"}}, "username": "adrienne", "power_badge": true, "display_name": "adrienne", "active_status": "inactive", "verifications": ["0xaea4a0dedb94ba5b2b8ed9477a8a54379c584542"], "follower_count": 53819, "custody_address": "0x1243516408ee976b34573678f2aa029b69de4f00", "following_count": 1418, "verified_addresses": {"eth_addresses": ["0xaea4a0dedb94ba5b2b8ed9477a8a54379c584542"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/chicbangs/shake\"}"}', NULL), - (1162247, '0x28182459309cbae9bbd27db9881fdae1ee5344a3', 0, 1, '2024-05-09 04:34:00+00', 0, 2, '{"fid": 265749, "object": "user", "pfp_url": "https://i.imgur.com/puQnKKh.jpg", "profile": {"bio": {"text": "building the decentralized future of IP at rstlss.xyz\n\n/rstlss", "mentioned_profiles": []}}, "username": "charlicohen", "power_badge": true, "display_name": "Charli Cohen", "active_status": "inactive", "verifications": ["0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3", "0x4b25feb744fb5d4372b318ed8d7655ea37869488"], "follower_count": 1346, "custody_address": "0xb4863ec076bda091ecfe64545d4271ee250a2612", "following_count": 636, "verified_addresses": {"eth_addresses": ["0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3", "0x4b25feb744fb5d4372b318ed8d7655ea37869488"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4iVTSRiJAA18d3QglhyJ6Q?si=GovzXr7MQaSFKwT4zwsqdQ\"}"}', NULL), - (1161408, '0x7e06df56c1eac73417d29557ca49f6abc7f62e8b', 0, 1, '2024-05-08 23:20:24+00', 0, 24, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3728, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1744, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/mkehxWMZsNjDoDgm8\"}"}', 'sonata'), - (1163250, '0x9536ead387b706bb6438711d405c20d72fe16ded', 0, 1, '2024-05-09 12:11:00+00', 0, 4, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1519, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 446, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0GybyL5gY2kSLgiSwauFei\"}"}', NULL), - (1159487, '0x03b0a6f59eea4d1afaa39f728b15f47e7d716957', 0, 1, '2024-05-08 11:24:54+00', 0, 2, '{"fid": 435108, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/55879dbf-e481-4dc4-1293-5aa31e62d700/rectcrop3", "profile": {"bio": {"text": "An account to collect fx trading and crypto info and to write personal memo👾🤖🎃\n\nhttps://twitter.com/hyde2hyde3", "mentioned_profiles": []}}, "username": "hyde2", "power_badge": false, "display_name": "Hyde2", "active_status": "inactive", "verifications": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "follower_count": 1397, "custody_address": "0x611b15d9b9431f107d701f2e5ac93d5fd913c994", "following_count": 1592, "verified_addresses": {"eth_addresses": ["0x082b60b981a64619f5576992d1e087be2eaa0897"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/36c7baa3-153c-4eb5-36ab-890ba1b3c600/original\"}","{\"url\":\"https://on.soundcloud.com/o1Xxo2fDPASx2A5m9\"}"}', 'unko'), - (1176106, '0x0be0f2e2a1774fc9d666b7d3f480386608b568b7', 0, 1, '2024-05-16 17:41:58+00', 0, 0, '{"fid": 4044, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/z9xqChs.jpg", "profile": {"bio": {"text": "👷 Building @interestedfyi (interested.fyi) to help people get /jobs 👔 🟪 #39 + 76 ⏪Prev. @ConsenSysMesh🦇🔊 Class of ’17 🤠"}}, "username": "alec.eth", "power_badge": true, "display_name": "alec.eth🤠", "active_status": "inactive", "verifications": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "follower_count": 3672, "custody_address": "0x8407d58683d74c59436c7d38218239082163fcf9", "following_count": 817, "verified_addresses": {"eth_addresses": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/13HalBseZHAT19C6jWs1Ma?si=bRk6609ASdO-BEe5Cm40hQ\"}"}', NULL), - (1176107, '0x36753eb97ac0eed9e9ac317d3348e4a91d03e2bf', 1000, 1, '2024-05-16 17:44:04+00', 0, 0, '{"fid": 276695, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/60e77210-276b-4555-3893-633b99263f00/original", "profile": {"bio": {"text": "https://www.alfafrens.com/profile/0xA6c1939833FaD0a5689e1Bb989E066596f090bAf Life in Basque Country /jonathan hosting /drip-haus \nNot Finance Advice FID:276695 "}}, "username": "jonathanmccallum", "power_badge": true, "display_name": "Jonathan /jonathan 📹", "active_status": "inactive", "verifications": ["0x1438fe2670272d30cdc0ce1ef657c82b8dbf271f", "0x42363535ea5e59dc08a87608c5a67d558097818b"], "follower_count": 1663, "custody_address": "0x5e272091cdd51656ec4590a155174b4a606018a0", "following_count": 940, "verified_addresses": {"eth_addresses": ["0x1438fe2670272d30cdc0ce1ef657c82b8dbf271f", "0x42363535ea5e59dc08a87608c5a67d558097818b"], "sol_addresses": ["5JHUBABKECjRpXiNRnjRGYAdHxGYSpe1cY1e1HfdFTLH"]}}', '{"{\"url\":\"https://open.spotify.com/track/1Dr1fXbc2IxaK1Mu8P8Khz?si=06ee7ba83d63405e\"}"}', 'alfafrens'), - (1159257, '0xdfa396870c4fb958ac5b672661fd9389d3586e58', 0, 1, '2024-05-08 01:43:03+00', 0, 0, '{"fid": 308457, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a564f425-fb46-4708-43bb-165ba66fcc00/original", "profile": {"bio": {"text": "Portfolio: https://deca.art/bullymeow/musicnfts Metaverse musician since 11/2020 BGAN Punks music collab DOOMED DEGEN SONGS. Collector. @powerdada OG 17''. 🦇🔊", "mentioned_profiles": []}}, "username": "bullymeow", "power_badge": false, "display_name": "Bully Meow", "active_status": "inactive", "verifications": ["0x14076efc88ca7d53594500261ada8185033e6d5b"], "follower_count": 306, "custody_address": "0x9f9e1e99b72f2c71a0e29d00afbfcb71895a0206", "following_count": 383, "verified_addresses": {"eth_addresses": ["0x14076efc88ca7d53594500261ada8185033e6d5b"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bullymeow/so-lucky\"}"}', 'musicnft'), - (1159494, '0x8a66335a4ebe6783052afe654f1c45d12878d6c2', 0, 1, '2024-05-08 11:24:44+00', 10, 2, '{"fid": 421000, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1ddbc0a2-013c-4300-1d16-dd04765af000/original", "profile": {"bio": {"text": "Japanese guy who loves crypto.\nhosting /musicjp /games-jp /stories-jp ", "mentioned_profiles": []}}, "username": "nyasu", "power_badge": false, "display_name": "Nyasu(🎩🎙️🍖🔥)", "active_status": "inactive", "verifications": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "follower_count": 2422, "custody_address": "0xff5035ccce1e588d7ee45dbce9c700ce7b2ab609", "following_count": 1338, "verified_addresses": {"eth_addresses": ["0xa08d1837f14d1644b5bd2b714377c89d3268cf40"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/ronyushi/happy-happy-happy-tiktok-meme\"}"}', 'littlehappyjp'), - (1160137, '0xe0854f4638f1a276d32bf5e21eed605bb7dbbeac', 0, 1, '2024-05-08 08:12:27+00', 0, 9, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3728, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1744, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/pYHLvvuWmxc5hzYU9\"}"}', 'sonata'), - (1159222, '0xbd85f2bf9be3c6dc247754c8b10293174360e668', 0, 1, '2024-05-08 11:19:37+00', 0, 3, '{"fid": 417203, "object": "user", "pfp_url": "https://i.imgur.com/U0jXYDx.jpg", "profile": {"bio": {"text": "반가워요^^ 열심히 소통할께요 ^^\n초선! 반사 :)\n\n", "mentioned_profiles": []}}, "username": "bkbl", "power_badge": false, "display_name": "Bkbl ", "active_status": "inactive", "verifications": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "follower_count": 2364, "custody_address": "0xe9405bfa3a9c004fe826dde1a595d06d7b142e27", "following_count": 1233, "verified_addresses": {"eth_addresses": ["0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/3jv9bVc5RWDKHUCt7\"}"}', 'sonata'), - (1159205, '0x6a4ef1709ceb82e635d414659b00393670ed5722', 0, 1, '2024-05-08 10:52:27+00', 0, 1, '{"fid": 272706, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9281a587-a820-4a67-70d5-930ca01ac700/rectcrop3", "profile": {"bio": {"text": "Make the lifestyle /higher together ↑² ", "mentioned_profiles": []}}, "username": "0xmaruko", "power_badge": false, "display_name": "Maru↑²", "active_status": "inactive", "verifications": ["0xae948f39dce7c0ccfcfba21bfb07ed4f8f943cdc"], "follower_count": 1851, "custody_address": "0x77811898941a62dbdbc778050d7d9fe7f426bfc3", "following_count": 864, "verified_addresses": {"eth_addresses": ["0xae948f39dce7c0ccfcfba21bfb07ed4f8f943cdc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7kM1ugB4jojCdoZWWDNrkt?si=TTxX6FTxRh-RHTR5IYqGfw&context=spotify%3Aplaylist%3A37i9dQZF1DWZeKCadgRdKQ\"}"}', NULL), - (1159500, '0x1b53e127eeb9178deec98cdce3eec06fb3bf76e4', 0, 1, '2024-05-08 11:23:12+00', 0, 2, '{"fid": 501070, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/783d321c-bf98-40df-8588-98da71a16c00/rectcrop3", "profile": {"bio": {"text": "픽슨입니다. 댓글필수 X. 캐스트 위주로 운영해서 맞방은 못갈거 같으니 ㅠㅠ 그냥 가볍게만 봐주세요 ^^ 죄송하고 감사합니다.", "mentioned_profiles": []}}, "username": "fixons", "power_badge": false, "display_name": "픽슨s 🍖", "active_status": "inactive", "verifications": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "follower_count": 1774, "custody_address": "0x10c6f3c1240c3e3d4616a82a6548268f8e687106", "following_count": 1650, "verified_addresses": {"eth_addresses": ["0xcc279aef34e147d7cb2133057fac58597d2ae46c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/T6gek\"}"}', 'sonata'), - (1159207, '0xcb0efaa47503e2f6efc56aa894ceed60d97e0f90', 0, 1, '2024-05-08 10:34:44+00', 0, 1, '{"fid": 285724, "object": "user", "pfp_url": "https://i.imgur.com/cfYZFhZ.jpg", "profile": {"bio": {"text": "I am a Japanese who enjoys crypto🇯🇵\nフォローして頂いたら必ず返します🔥", "mentioned_profiles": []}}, "username": "tzabro", "power_badge": false, "display_name": "TZABRO🎩", "active_status": "inactive", "verifications": ["0xca8443d2f918ef0d696bb11183402642683ed812"], "follower_count": 300, "custody_address": "0x51a6dca9d2727160da44112aa6f5fd14a625e5b9", "following_count": 322, "verified_addresses": {"eth_addresses": ["0xca8443d2f918ef0d696bb11183402642683ed812"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4rcAJoljlgzkYsisGJ1NsT?si=NvzECg66QFaeBQUpF8hWJw\"}"}', 'bgm'), - (1176108, '0xccefff63ba6e954008f0e9871ffead8dcf4f9b9f', 1030, 1, '2024-05-16 17:55:54+00', 0, 0, '{"fid": 262450, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label"}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 11828, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/49a86419-9c6c-4a2b-9672-be163a9bc838\"}","{\"url\":\"https://www.sound.xyz/bakergrace/show-me\"}"}', NULL), - (1159506, '0x41f2a5f793c39113a7555c7b7b448b8869fc6bf0', 1000, 1, '2024-05-08 11:22:22+00', 0, 16, '{"fid": 421782, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmVqoMwQWKaSc5GBDpnm7dZjqBjbr9ex37FLad1qSB4gua?filename=aurory.png", "profile": {"bio": {"text": "YETO ZUNSENG Mr.k2\nI wish to Make Degen Market for RWA\n\nI biggining I love Warp I love this Ecosystem", "mentioned_profiles": []}}, "username": "darkprist", "power_badge": false, "display_name": "Hali 2代目", "active_status": "inactive", "verifications": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "follower_count": 1986, "custody_address": "0xa4ed4691bb5fff89fb1beddb5888e4f8742d9abe", "following_count": 2406, "verified_addresses": {"eth_addresses": ["0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/foWv9wsnzagnrn6t7\"}"}', 'banmal-mode'), - (1162252, '0xb393a8fdff5acf57197e5216308255008becd91a', 0, 1, '2024-05-09 04:35:08+00', 0, 3, '{"fid": 761, "object": "user", "pfp_url": "https://i.imgur.com/76SEpAy.jpg", "profile": {"bio": {"text": "Partnerships for PoolTogether, Silly Songs for Wassies", "mentioned_profiles": []}}, "username": "timcox", "power_badge": true, "display_name": "tim", "active_status": "inactive", "verifications": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "follower_count": 2369, "custody_address": "0xf26bb67ac1be7ef0c4002f178e2da73d87e20316", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "sol_addresses": ["AN4Mfb82QRDMAYBE6HGuUMxVFGUBNBMQ7iXpj3x2iN4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/72sD1izeWWCbeD9mao5PXz?si=vLJHbF58QcOfRKn9Jm2H9w\"}"}', NULL), - (840187, '0x57f2e94061bcabdce8e99aecb841e80f94719785', 22168, 1, '2024-05-07 05:02:20+00', 50, 1, '{"fid": 20300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f268c7c-62d3-4d51-e07d-c64e93317700/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter, DJ, Sonic Healer, 1/2 of @karmavioletta 🎶 Building @wavwrld 🌊🌐 1/77 of CHAOS & @songcamp", "mentioned_profiles": []}}, "username": "violetta", "power_badge": false, "display_name": "Violetta", "active_status": "inactive", "verifications": ["0x68375427c29995b277ad343aa89be591926c6088"], "follower_count": 83, "custody_address": "0x358273ae8525236066899f57d24dfb5e9d83dbf8", "following_count": 38, "verified_addresses": {"eth_addresses": ["0x68375427c29995b277ad343aa89be591926c6088"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/without-you?referral=0x68375427c29995b277ad343aa89be591926c6088\"}"}', NULL), - (1160683, '0x721bdf760026a79c8ce7f90e05f1c66c63bd150a', 0, 1, '2024-05-08 03:51:53+00', 0, 2, '{"fid": 761, "object": "user", "pfp_url": "https://i.imgur.com/76SEpAy.jpg", "profile": {"bio": {"text": "Partnerships for PoolTogether, Silly Songs for Wassies", "mentioned_profiles": []}}, "username": "timcox", "power_badge": true, "display_name": "tim", "active_status": "inactive", "verifications": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "follower_count": 2369, "custody_address": "0xf26bb67ac1be7ef0c4002f178e2da73d87e20316", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "sol_addresses": ["AN4Mfb82QRDMAYBE6HGuUMxVFGUBNBMQ7iXpj3x2iN4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/2GwDKcTJlvoRDaJXkA7ULJ?si=Zb4VkQ3kTdOt7Pj8ySp3WQ&context=spotify%3Aalbum%3A6YbWlg2x8aIHASDTunWF8H\"}"}', NULL), - (1160664, '0x602e810516622f401615b9618a77c56164e6ea12', 1110, 1, '2024-05-08 02:31:47+00', 3, 64, '{"fid": 269694, "object": "user", "pfp_url": "https://i.imgur.com/8V7KO4z.gif", "profile": {"bio": {"text": "Willennial | Crypto since 2012 | /replyguys | /chatbfg | Bitfloorsghost.twitter | My quest for 400 followers continues daily", "mentioned_profiles": []}}, "username": "bitfloorsghost.eth", "power_badge": true, "display_name": "Bitfloorsghost", "active_status": "inactive", "verifications": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "follower_count": 23817, "custody_address": "0x9af356fa72af2c087024daeed021e3082d59406f", "following_count": 4074, "verified_addresses": {"eth_addresses": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "sol_addresses": ["4uxjUREup6MPbindcZTKUPMtRF3b8oVwY8FgpKpodLFB"]}}', '{"{\"url\":\"https://open.spotify.com/track/5oDxXD015GdYNqe78olGMj\"}"}', 'replyguys'), - (1160708, '0x2fa6cb6b7a61c4849a74da94f661461f661119c4', 0, 1, '2024-05-08 03:50:51+00', 0, 3, '{"fid": 761, "object": "user", "pfp_url": "https://i.imgur.com/76SEpAy.jpg", "profile": {"bio": {"text": "Partnerships for PoolTogether, Silly Songs for Wassies", "mentioned_profiles": []}}, "username": "timcox", "power_badge": true, "display_name": "tim", "active_status": "inactive", "verifications": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "follower_count": 2369, "custody_address": "0xf26bb67ac1be7ef0c4002f178e2da73d87e20316", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "sol_addresses": ["AN4Mfb82QRDMAYBE6HGuUMxVFGUBNBMQ7iXpj3x2iN4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/3FRsvppEcnyWOC0h8azd7S?si=iKJtnTACTK-fkXHE8q_mDg\"}"}', NULL), - (1160668, '0x5ad82513395f57382783061a114771697e7cb454', 0, 1, '2024-05-08 00:32:54+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6O3WfmAQIgnLBGVzZJVS40?si=Jix4dtw8Rjm1Np1asWDXoQ\"}"}', NULL), - (1160660, '0xe6fe5e2725a8e2e7fc66549de294eb74134b09a0', 0, 1, '2024-05-08 03:53:28+00', 0, 4, '{"fid": 761, "object": "user", "pfp_url": "https://i.imgur.com/76SEpAy.jpg", "profile": {"bio": {"text": "Partnerships for PoolTogether, Silly Songs for Wassies", "mentioned_profiles": []}}, "username": "timcox", "power_badge": true, "display_name": "tim", "active_status": "inactive", "verifications": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "follower_count": 2369, "custody_address": "0xf26bb67ac1be7ef0c4002f178e2da73d87e20316", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "sol_addresses": ["AN4Mfb82QRDMAYBE6HGuUMxVFGUBNBMQ7iXpj3x2iN4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/0GVX2lQHDj4M1VWiWsvXku?si=hwviBByQQF2swXX4UCJM-w\"}"}', NULL), - (1159260, '0xb28bbf22635050c76430fa796b51223c57a6e289', 0, 1, '2024-05-08 03:56:10+00', 0, 2, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 225, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 980, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5a18a23c-f99e-4e69-5737-616c4ff6fb00/original\"}","{\"url\":\"https://www.sound.xyz/coopdville/two-angelz\"}"}', 'creator'), - (1159211, '0x0ad9b837b4f6ffb76016c768d1aa22e365f152f7', 0, 1, '2024-05-08 10:50:35+00', 0, 7, '{"fid": 10095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fe2684b-a804-4268-ef87-33883f377b00/rectcrop3", "profile": {"bio": {"text": "artist, curator, yogi 💗 hosting /itan-world and /pidgin 🌍 co-hosting /crystals 💎 https://linktr.ee/juujuumama", "mentioned_profiles": []}}, "username": "juujuumama", "power_badge": true, "display_name": "sierra folashade 🎩🍖", "active_status": "inactive", "verifications": ["0x657c1f8421ae93e88fb3171f019779e87b0263ca", "0xfd9bc4707961125f6becd693de62af68b5b51e4f"], "follower_count": 2809, "custody_address": "0x0d03a0431d26e6d17715445ea147cc3597b084cd", "following_count": 2005, "verified_addresses": {"eth_addresses": ["0x657c1f8421ae93e88fb3171f019779e87b0263ca", "0xfd9bc4707961125f6becd693de62af68b5b51e4f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1jmdr7T744oedpWd9X5KkJ?si=iUvtJ_I2TIye810OhcdMUA&context=spotify%3Aplaylist%3A396edYCPuJbVVnyOKZw988\"}"}', 'afrobeats'), - (1160132, '0x631af990976c1ed5f79f1d5304709f9455e37b84', 0, 1, '2024-05-08 08:49:04+00', 0, 34, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from another point of view /wevibe ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth 🎩🍖🔵🤙🏽", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 1999, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 575, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Yk2ZRUGadfTKzMQf2KPVs?si=xGNRMEotSie2qkGDrVRyZg&context=spotify%3Aplaylist%3A3Kvin2sgOUU72Ts3vl9hZR\"}"}', 'jp'), - (1176113, '0xef6929276536013b8eaf5460b26128de9933bf65', 3000, 1, '2024-05-16 18:02:08+00', 0, 0, '{"fid": 262450, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label"}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 11828, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/581823b6-d121-41fd-87f0-b5c8b7bb8cc7\"}","{\"url\":\"https://www.sound.xyz/covexmusic/burn-with-tesh\"}"}', NULL), - (1160691, '0xa3fee8cd3f0e0b8939cb5b0a45407a28c57027da', 0, 1, '2024-05-08 03:52:57+00', 0, 2, '{"fid": 761, "object": "user", "pfp_url": "https://i.imgur.com/76SEpAy.jpg", "profile": {"bio": {"text": "Partnerships for PoolTogether, Silly Songs for Wassies", "mentioned_profiles": []}}, "username": "timcox", "power_badge": true, "display_name": "tim", "active_status": "inactive", "verifications": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "follower_count": 2369, "custody_address": "0xf26bb67ac1be7ef0c4002f178e2da73d87e20316", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x3994537274f3ff3eefc413e0d669b05d6446d46b"], "sol_addresses": ["AN4Mfb82QRDMAYBE6HGuUMxVFGUBNBMQ7iXpj3x2iN4J"]}}', '{"{\"url\":\"https://open.spotify.com/track/6bko8o63cURyCv6IE27Ela?si=HXW63nkuREihdvrCROOzsA&context=spotify%3Aalbum%3A0wNC9N8RpCvzCo8I3YQ8K4\"}"}', NULL), - (1160134, '0x554b1b389be3378b73d264f527e000f9eb18ab19', 0, 1, '2024-05-08 07:14:45+00', 0, 1, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://www.discogs.com/ja/release/3534535-Marvin-Guy-Lets-Get-Lost-Vol-14\"}","{\"url\":\"https://open.spotify.com/track/13ulUUzvqr34si1Es8qbPS\"}"}', NULL), - (1160130, '0xe86ae6e9e880d14a3fe655dbd82f928f838428cf', 0, 1, '2024-05-08 07:16:49+00', 0, 10, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":291942,\"hash\":\"0x5eab219187dc4a1fddd99a28562987a0fa316988\"}}","{\"url\":\"https://open.spotify.com/track/13ulUUzvqr34si1Es8qbPS\"}"}', 'sonata'), - (1160684, '0x5994ae3691f0d961201ed5f059aafd358f81b861', 0, 1, '2024-05-08 02:11:51+00', 0, 13, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2PhNsPmYCUMGB62PwUpq0y\"}"}', 'musicjp'), - (1158824, '0x5eab219187dc4a1fddd99a28562987a0fa316988', 10389, 1, '2024-05-08 06:12:02+00', 0, 19, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/musicforstonedpeople/marvin-guy-town-mfsp-edit\"}"}', 'sonata'), - (1176114, '0xe8bb93915b57c52073012aad0829b8fdd6253acd', 2000, 1, '2024-05-16 18:09:04+00', 0, 1, '{"fid": 1606, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/wOKvMXEOs1E7KRs9QpMJiYPGwHWkiGJ34Asl_1q0y9h8-9eGsVHJhCf2EXnhaanthIJ2nrUaiJZd9owHE_EZ-Y8Q-SOa9XO6tcDt?w=500&auto=format", "profile": {"bio": {"text": "they/them, candlemaker at 🕯️humankind 🕯️, seemore.tv/humankind, hosting /samantha, /humankind"}}, "username": "samantha", "power_badge": true, "display_name": "Sam (crazy candle person) ✦ ", "active_status": "inactive", "verifications": ["0xd5b472ffaf39476f83b8975667169ab6f9216dcd"], "follower_count": 34805, "custody_address": "0x224d5945d8037918df5d21d917a6ce31125c2040", "following_count": 541, "verified_addresses": {"eth_addresses": ["0xd5b472ffaf39476f83b8975667169ab6f9216dcd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6e16mE2pmDobzhkVRYZVsg?si=314146dba9674bb2\"}"}', 'girlypop'), - (1176115, '0x9264a6469b0b9704630a56488340e27006f4afe9', 0, 1, '2024-05-16 18:18:37+00', 0, 1, '{"fid": 248389, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd"}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4603, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/28cfed6a-5898-47a6-e0bb-0815bcca3900/original\"}","{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=NF_xAcBfRtCMVWZkAWBPTg&context=spotify%3Aalbum%3A38N8k7q6vILvaBekWkK4GK\"}"}', NULL), - (1162138, '0xed1c5abacf80e285e668ce9861466e0ab781f28b', 0, 1, '2024-05-09 03:55:27+00', 0, 0, '{"fid": 11528, "object": "user", "pfp_url": "https://i.imgur.com/EQG2yQu.jpg", "profile": {"bio": {"text": "building @ornamental and @atlas", "mentioned_profiles": []}}, "username": "jrf", "power_badge": true, "display_name": "Jacob", "active_status": "inactive", "verifications": ["0x10676738db9601c5af144a17c3a48c8ebda7e353", "0xeaebb62c762f54e1477425bca262f0472cee0991", "0x10676738db9601c5af144a17c3a48c8ebda7e353"], "follower_count": 27179, "custody_address": "0x2ea794e8789e47fb9afdd9e5e9eacb191392f2f2", "following_count": 1604, "verified_addresses": {"eth_addresses": ["0x10676738db9601c5af144a17c3a48c8ebda7e353", "0xeaebb62c762f54e1477425bca262f0472cee0991", "0x10676738db9601c5af144a17c3a48c8ebda7e353"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5FHwElVwKA5C5dryoGGkFC?si=CdpiWRT6R0a6TR1Kg3X4Gg&context=spotify%3Aalbum%3A1siXezO0rAWku1Aoi5vVMa\"}"}', NULL), - (1162062, '0xc72a817e1ca75c78ec15a6dd637b813694823797', 0, 1, '2024-05-09 03:46:37+00', 0, 24, '{"fid": 11528, "object": "user", "pfp_url": "https://i.imgur.com/EQG2yQu.jpg", "profile": {"bio": {"text": "building @ornamental and @atlas", "mentioned_profiles": []}}, "username": "jrf", "power_badge": true, "display_name": "Jacob", "active_status": "inactive", "verifications": ["0x10676738db9601c5af144a17c3a48c8ebda7e353", "0xeaebb62c762f54e1477425bca262f0472cee0991", "0x10676738db9601c5af144a17c3a48c8ebda7e353"], "follower_count": 27179, "custody_address": "0x2ea794e8789e47fb9afdd9e5e9eacb191392f2f2", "following_count": 1604, "verified_addresses": {"eth_addresses": ["0x10676738db9601c5af144a17c3a48c8ebda7e353", "0xeaebb62c762f54e1477425bca262f0472cee0991", "0x10676738db9601c5af144a17c3a48c8ebda7e353"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6U0rVshtVxqmM966IaAT6C?si=aQHIVWUGQnq-Ony3gbPrNw&context=spotify%3Aalbum%3A1siXezO0rAWku1Aoi5vVMa\"}","{\"url\":\"https://en.m.wikipedia.org/wiki/Attack_on_Memory\"}"}', NULL), - (1161746, '0xb42fb1fa93f874bd898790177f441950cea3c17a', 0, 1, '2024-05-09 01:52:30+00', 0, 11, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/20NBPVUpOPAyg6lLMsm87I\"}"}', 'boss'), - (1161507, '0x3896222a5031f97b131be80c28fe917ef1b47293', 0, 1, '2024-05-09 00:02:53+00', 0, 12, '{"fid": 18570, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiews43un3cmkvbzhpepgfaqdgugjmj6vsymmbd3yh4xas4cs3wc5y", "profile": {"bio": {"text": "👨🏻‍🍳 Better cook than I look 👨🏻‍🍳 \n🧪 Dada scientist 🧪 \n📐 Student of design 📐 \n👾 👾 👾 👾 👾 \n\nco-hosting /ai-art", "mentioned_profiles": []}}, "username": "qt", "power_badge": true, "display_name": "daivd 🎩👾🧢🧾 ", "active_status": "inactive", "verifications": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "follower_count": 25599, "custody_address": "0xc4e4a021fef5b18fb0fd8c0ad91e34e246b614a8", "following_count": 1419, "verified_addresses": {"eth_addresses": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "sol_addresses": ["B7k6RCuunXhqWNWunSL3PjZoEaHz6REtyJPW5i1cLRGV"]}}', '{"{\"url\":\"https://open.spotify.com/track/08xh7DFMYERa9o284EdXbc?si=NaFavnsIRHiydVhKF3fONQ&context=spotify%3Aalbum%3A3yjhvPDmXL0estMrSxy2DI\"}"}', NULL), - (1160674, '0x3f8fcf6796668e3f55c23f221d69611ba8e01c90', 0, 1, '2024-05-08 02:56:32+00', 0, 3, '{"fid": 7247, "object": "user", "pfp_url": "https://i.imgur.com/8HNEqtG.jpg", "profile": {"bio": {"text": "building vuhlog", "mentioned_profiles": []}}, "username": "valcoholics", "power_badge": true, "display_name": "V", "active_status": "inactive", "verifications": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "follower_count": 1621, "custody_address": "0x74497159051ce25ed4d5658f5cb497f0af807943", "following_count": 427, "verified_addresses": {"eth_addresses": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7c3SbTuufigBWURcICnAWy?si=ed821303c7f44286\"}"}', NULL), - (1158771, '0x7e077c7bc4d079cf42b2236c068c8fee538377e4', 0, 1, '2024-05-08 05:17:42+00', 0, 16, '{"fid": 18570, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiews43un3cmkvbzhpepgfaqdgugjmj6vsymmbd3yh4xas4cs3wc5y", "profile": {"bio": {"text": "👨🏻‍🍳 Better cook than I look 👨🏻‍🍳 \n🧪 Dada scientist 🧪 \n📐 Student of design 📐 \n👾 👾 👾 👾 👾 \n\nco-hosting /ai-art", "mentioned_profiles": []}}, "username": "qt", "power_badge": true, "display_name": "daivd 🎩👾🧢🧾 ", "active_status": "inactive", "verifications": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "follower_count": 25599, "custody_address": "0xc4e4a021fef5b18fb0fd8c0ad91e34e246b614a8", "following_count": 1419, "verified_addresses": {"eth_addresses": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "sol_addresses": ["B7k6RCuunXhqWNWunSL3PjZoEaHz6REtyJPW5i1cLRGV"]}}', '{"{\"url\":\"https://open.spotify.com/track/1AjJF50RFBWVS9ARRZMZNg\"}"}', 'countrymusic'), - (1163240, '0x09cdbce60ad74890967578e6252e329888c80438', 0, 1, '2024-05-09 11:11:07+00', 0, 2, '{"fid": 12400, "object": "user", "pfp_url": "https://i.imgur.com/qVWtzti.gif", "profile": {"bio": {"text": "artist . painting . animation . performance . stickers . in crypto since 2018", "mentioned_profiles": []}}, "username": "ilannnnnnnnkatin", "power_badge": true, "display_name": "ilannnnnnnnkatin🎩", "active_status": "inactive", "verifications": ["0xab3627317c43d394eb171170f818153b976d28a3"], "follower_count": 2242, "custody_address": "0xfb47fff7eb8b604689de33ea18e47a1e0c4e103a", "following_count": 1042, "verified_addresses": {"eth_addresses": ["0xab3627317c43d394eb171170f818153b976d28a3"], "sol_addresses": ["Fu2tMSKPaQqPnEBRtZr3k7LdqdxQTSyu8uZ73RVwV8Lr"]}}', '{"{\"url\":\"https://open.spotify.com/track/1wb0dzBIHsYgw5CR4ygdic?si=JbXypUbjRRWYroHWDSXJGg\"}"}', NULL), - (1163253, '0xa48eb07e6b167f123fd64628031edb3e0b8d84b3', 0, 1, '2024-05-09 12:35:11+00', 0, 15, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 3601, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0QAo5fInizyQz9iX5uXqsp?si=GTScRKXySC2MDmsBwdMKyA\"}"}', 'bangers'), - (1161486, '0xb82f1c9242ce20f516bd0c522922ac70ab91ceb4', 0, 1, '2024-05-08 23:55:54+00', 0, 3, '{"fid": 208481, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/450a859e-80a1-4e70-bf71-17c4c159ca00/rectcrop3", "profile": {"bio": {"text": "💠father\n• /tattoo \n• psychonaut \n• creative\n• visual mathematic flow💠\n\n\nwww.accsemblecorporis.com >remember the future \n/medicinemusic", "mentioned_profiles": []}}, "username": "accsemble", "power_badge": true, "display_name": "accsemble🎩🐲", "active_status": "inactive", "verifications": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "follower_count": 390, "custody_address": "0xb0d6aff9edda81016e202ca85d7b9fcefeb82f70", "following_count": 192, "verified_addresses": {"eth_addresses": ["0x78a325fab6734b61a5f347adaa9ec9e79ff70204"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rumzar/garbicz-festival-ambient-acid-sunday-session?si=cd823ef6ebe6434a9e8006d75bf39c86&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1176116, '0x8315aff192f7e3cd646cc88ef75ca82627103962', 0, 1, '2024-05-16 18:39:04+00', 0, 0, '{"fid": 287145, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://arweave.net/xioDuYUrIxHyAGpnzpsgDTK8-U3hDY6JSd5Lx0XlUfw/353.jpg/", "profile": {"bio": {"text": "finding my way, through community • building @fcroyalebot for /farcasterroyale • DC me about automating your giveaways 🤖"}}, "username": "satoshitilla", "power_badge": true, "display_name": "𝙏𝙄𝙇𝙇𝘼 🔵,🎩", "active_status": "inactive", "verifications": ["0xd84b5bfdf3b352a4814704e7205bcb866ebb3e17"], "follower_count": 1264, "custody_address": "0x6138ef7c3365f7bcf9f1f7f37885ee92c7b2104e", "following_count": 594, "verified_addresses": {"eth_addresses": ["0xd84b5bfdf3b352a4814704e7205bcb866ebb3e17"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0gEyKnHvgkrkBM6fbeHdwK?si=bee05c025e9b45a5\"}"}', 'bangers'), - (1160123, '0x67a03aa294b34bdd3442aa407d50e7616ce99b9a', 0, 1, '2024-05-08 07:23:50+00', 0, 4, '{"fid": 4760, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 ", "mentioned_profiles": []}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1307, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1167, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/coilofficial/glowworms-waveforms\"}"}', NULL), - (1173778, '0x15467a16e4226f832ffe0226329ad2a6dc490b18', 1000, 1, '2024-05-16 14:10:20+00', 0, 0, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 228, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2lWc1iJlz2NVcStV5fbtPG?si=67b3fbb8235646ef\"}"}', NULL), - (1176112, '0x9c8f7936ec999d4bad9cd1d43ca5928e0ea4c941', 3000, 1, '2024-05-16 18:00:14+00', 0, 0, '{"fid": 1436, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐"}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 703, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 462, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bloodywhite/betty-boop?referral_source=link\"}"}', 'sonata'), - (1176137, '0x4ffed5d5bf645da0e3420cc87dae2f5dd5a2c886', 2000, 1, '2024-05-16 20:04:33+00', 0, 0, '{"fid": 270714, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire"}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 301, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3SYFuQxFvEVrOD54vW0Hu7?si=hMdAoOCXRe-itFWOXz2rvQ&context=spotify%3Aplaylist%3A37i9dQZF1EP6YuccBxUcC1\"}"}', NULL), - (1161516, '0x1114273dbf5ef8c657befe9092d9b3231a3dbd11', 1100, 1, '2024-05-09 00:06:37+00', 0, 2, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 313, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 261, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4XXfQ8fBHMIgcygY4hV6RC?si=Dsv2z1svTlSoVVhND9037g&context=spotify%3Aplaylist%3A5jrUutzvhDnymLdeqCGTjI%3Arecommended\"}"}', 'bangers'), - (1173447, '0x59a83258774182eb43379bba909504592d8325b0', 3010, 1, '2024-05-15 23:51:05+00', 0, 5, '{"fid": 12871, "object": "user", "pfp_url": "https://i.imgur.com/qhh2olT.jpg", "profile": {"bio": {"text": "Building @sonatatips & Artist Relations /soundxyz", "mentioned_profiles": []}}, "username": "divesteamike", "power_badge": true, "display_name": "Michael DiVestea", "active_status": "inactive", "verifications": ["0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050"], "follower_count": 259, "custody_address": "0x96dbff07e0cc5f64047647a7183e3564c5df4f40", "following_count": 288, "verified_addresses": {"eth_addresses": ["0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/danielallan/so-high-feat-jake-neumar\"}"}', NULL), - (1163540, '0x35e4e3420899b303c9f93ade65bc8100cfbba992', 0, 1, '2024-05-09 13:48:09+00', 0, 31, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3683, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 286, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5USrVW7DdoIGQsbZwwdXhy?si=1PW5ig9OSCipWZFLrAK1ug\"}"}', 'paidgroup'), - (1163538, '0x639d26db5e8a1aa701aa652bff878872c8035c9b', 0, 1, '2024-05-09 13:46:53+00', 0, 0, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3683, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 286, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5USrVW7DdoIGQsbZwwdXhy?si=1PW5ig9OSCipWZFLrAK1ug\"}"}', NULL), - (1163397, '0x1009dab5219f8abe40c8fb42e973015097283849', 0, 1, '2024-05-09 13:01:53+00', 0, 27, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 29714, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6oaXFXnerN7Ej0Vbiyl0UV?si=ks9IUIFFSUKoVAcXXZdLfQ\"}"}', NULL), - (1163829, '0x43766d339a30ea922cfc53121eb4f621159d5dd8', 0, 1, '2024-05-09 15:13:16+00', 0, 5, '{"fid": 276109, "object": "user", "pfp_url": "https://i.imgur.com/tyIEtsV.jpg", "profile": {"bio": {"text": "lens based light bender | hosting /lightlounge 🔦✨\nlinktr.ee/gabriellamorton", "mentioned_profiles": []}}, "username": "gabriellamorton", "power_badge": true, "display_name": "ella", "active_status": "inactive", "verifications": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "follower_count": 513, "custody_address": "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57", "following_count": 393, "verified_addresses": {"eth_addresses": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5xHvxOGmmVWSo5CL27zFml?si=skdIhXNhQOWj99c4CQX7Ng\"}"}', 'sonata'), - (1161199, '0x8c82303f45551037d9a5cfcf7c50679712a31478', 1170, 1, '2024-05-08 22:24:44+00', 0, 11, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 692, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 343, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2rDQs2i1Hn3vRxbRR7fQyf?si=44fc969bc704487f\"}"}', NULL), - (1163469, '0xfe9190c8d48053816007072562f22b412381d71e', 0, 1, '2024-05-09 13:28:07+00', 0, 9, '{"fid": 10694, "object": "user", "pfp_url": "https://i.imgur.com/ECKl5Wu.gif", "profile": {"bio": {"text": "conversational liquidity provider || writing at: https://paragraph.xyz/@thearcadia || curating vibes over at /football", "mentioned_profiles": []}}, "username": "chukwukaosakwe", "power_badge": true, "display_name": "Chukwuka Osakwe", "active_status": "inactive", "verifications": ["0x0a61e9065219a1b84a9fa1b67482c485c39c51de"], "follower_count": 1746, "custody_address": "0x63c0df9ccb039241bf53baac41cc1d281ef95b63", "following_count": 598, "verified_addresses": {"eth_addresses": ["0x0a61e9065219a1b84a9fa1b67482c485c39c51de"], "sol_addresses": ["6zDfzrCSAk5UwYCsvHoRq3f7ff1kSXbUFJfRmzh5MUWX"]}}', '{"{\"url\":\"https://open.spotify.com/track/5RMTsrJkrtumtiIZjy7dL6?si=YVUi1hu4TD6nk0QD1pn0JA\"}"}', NULL), - (1163669, '0xb20de7e13454c67934c57080b892055a2362613f', 0, 1, '2024-05-09 14:24:31+00', 0, 5, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3728, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1744, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/beerlove1/san-e?si=faa5a038c8484664b0cdaae4eaa3404d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160701, '0x27da260ae85092787886e25c5b6aef83155e94cb', 0, 1, '2024-05-07 22:42:46+00', 0, 1, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 573, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 107, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7ABLbnD53cQK00mhcaOUVG\"}"}', NULL), - (1163537, '0xe9e2945274c89d407b0187b0dfdb1cd25ffe2cdb', 0, 1, '2024-05-09 13:47:18+00', 0, 0, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3683, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 286, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5USrVW7DdoIGQsbZwwdXhy?si=1PW5ig9OSCipWZFLrAK1ug\"}"}', NULL), - (1158767, '0xc3613f6d8a771758dce292efc3cab14349f45a17', 0, 1, '2024-05-08 05:37:27+00', 0, 4, '{"fid": 215322, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1bcb13b-6c44-4207-7b3c-459bd20b1100/original", "profile": {"bio": {"text": "nature finance onchain /basin @basin\n | place-based /situs | 🦇🔊", "mentioned_profiles": []}}, "username": "tmo.eth", "power_badge": true, "display_name": "TMO 👉 RWAxPGF", "active_status": "inactive", "verifications": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "follower_count": 564, "custody_address": "0x7cba2d1f540fb606e20fe9ae6ad44aad09e8c420", "following_count": 402, "verified_addresses": {"eth_addresses": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6M7LYr6R248JrG3eoA0Xui?si=3UwgDNPfRvCiVom4nVVoqA\"}"}', NULL), - (1176156, '0xfa16579750823ededb4e6589c04b84a9f49869d5', 0, 1, '2024-05-16 20:54:39+00', 0, 0, '{"fid": 194372, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/5jeXgwP.jpg", "profile": {"bio": {"text": "bull market dev bear market farmer. all markets writer \n\nBattle Frame Monsters: https://wowowmon.com | Professional $SPAMmer"}}, "username": "roadu", "power_badge": true, "display_name": "Roadu.𝓮𝓽𝓱 🎩🦊🧾", "active_status": "inactive", "verifications": ["0x4a91f2bf3ade1965f979779d78074ab4f6f93795"], "follower_count": 2113, "custody_address": "0xf79377aa780dc15af01abcebe8b5a4ab32d4bac0", "following_count": 719, "verified_addresses": {"eth_addresses": ["0x4a91f2bf3ade1965f979779d78074ab4f6f93795"], "sol_addresses": ["GCF43gLw1ZR81stghQta6xAFodfSLTmpLBAq38cvmuAd"]}}', '{"{\"url\":\"http://sound.xyz\"}"}', NULL), - (1161708, '0xd0c657eadcbeec4612b1d5f9eb9b4fa7aea0125f', 0, 1, '2024-05-09 01:40:24+00', 0, 8, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/23k8WNgfX0zRO4xX2nxYWW\"}"}', 'musicjp'), - (1160722, '0x0635ab2041588c51b83c7650d8017903547dc046', 0, 1, '2024-05-08 02:33:08+00', 0, 16, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2285, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 916, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/doublesworth/lcd-soundsystem-live-all-my?si=d7915ae4816643ceade6b48b7dc0aa68&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1163653, '0xa973d208243794cef629a57f0ed0d980423e3ca5', 100, 1, '2024-05-09 14:19:17+00', 0, 11, '{"fid": 133, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup ", "mentioned_profiles": []}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 25008, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 748, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4WfjYOo0JxommRm1PyObJl\"}"}', 'rap'), - (1160229, '0x731030323ef2e0e52641d3f9996b4119a6bc924a', 0, 1, '2024-05-08 15:50:54+00', 0, 10, '{"fid": 16098, "object": "user", "pfp_url": "https://i.imgur.com/45e0dnv.gif", "profile": {"bio": {"text": "creating /anky", "mentioned_profiles": []}}, "username": "jpfraneto", "power_badge": true, "display_name": "jp 🦊🎩", "active_status": "inactive", "verifications": ["0xed21735dc192dc4eeafd71b4dc023bc53fe4df15", "0x59a743e6f2996801031a0ffc60d5154db95cd0dd"], "follower_count": 6801, "custody_address": "0xab20de8f5a4f8e147baac9d1f6e236861485516a", "following_count": 1352, "verified_addresses": {"eth_addresses": ["0xed21735dc192dc4eeafd71b4dc023bc53fe4df15", "0x59a743e6f2996801031a0ffc60d5154db95cd0dd"], "sol_addresses": ["9qr7ofpTpGc1SvgHXTh5qrUNt3uAa9rFKE4AtnPH8p5t"]}}', '{"{\"url\":\"https://soundcloud.com/caleesi-sarahkreis/fusion-festival-2023-sonnendeck?si=0af15fc46ebd4c2f9ae7422caee9a522&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1160671, '0xe3f95ef9a715bc2f3583eaf3e57f0facee633031', 0, 1, '2024-05-08 02:16:36+00', 0, 0, '{"fid": 211250, "object": "user", "pfp_url": "https://i.imgur.com/RwY5Ry7.jpg", "profile": {"bio": {"text": "Crypto Defender & Degen ⚔️ Bulwark by protspec.com, BanklessDAO, Bankless Japan", "mentioned_profiles": []}}, "username": "d0wnlore.eth", "power_badge": true, "display_name": "D Ø W N L O R E", "active_status": "inactive", "verifications": ["0xd1ffda9c225ddee34f0837bf4d4a441bdd54c473"], "follower_count": 345, "custody_address": "0xc0cf604227122b93e48b6d71d06b7da99432d745", "following_count": 72, "verified_addresses": {"eth_addresses": ["0xd1ffda9c225ddee34f0837bf4d4a441bdd54c473"], "sol_addresses": ["4hJb9E4bYtPpT5eiofErGqFepYmWTq573FLJDow6RYwq"]}}', '{"{\"url\":\"https://open.spotify.com/track/4i62klaLR4SyuovICQ1lpC?si=ccfe206886d545d5\"}"}', NULL), - (1163666, '0x1f1c3c8f528c45af92b32ddb53379683bf80cd69', 0, 1, '2024-05-09 14:23:41+00', 0, 3, '{"fid": 133, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup ", "mentioned_profiles": []}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 25008, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 748, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7fzHQizxTqy8wTXwlrgPQQ\"}"}', NULL), - (1160698, '0x2b1619c9584ebd674ddf542762cd41925e5062c8', 0, 1, '2024-05-08 02:50:11+00', 0, 5, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 654, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 452, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1p2t6x0xFXuB6zWcZZ0SmZ?si=qtcWoxT6R8qU5ZEjs1toBg\"}"}', NULL), - (1131358, '0xca560ec1da612134e7481735626f98f89d8f8d49', 17391, 1, '2024-05-07 18:36:36+00', 20, 31, '{"fid": 383485, "object": "user", "pfp_url": "https://i.imgur.com/21KRHoG.jpg", "profile": {"bio": {"text": "im a nightmare 🥀", "mentioned_profiles": []}}, "username": "deathpixie", "power_badge": false, "display_name": "DEATHPIXIE", "active_status": "inactive", "verifications": ["0x81ddca7cd2f7d924dd095d6ae3b1d814d1059164"], "follower_count": 106, "custody_address": "0x10ec1aa513f195bc3248011e2c16f591968951d1", "following_count": 98, "verified_addresses": {"eth_addresses": ["0x81ddca7cd2f7d924dd095d6ae3b1d814d1059164"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/deathpixie/hell-girl\"}"}', 'sonata'), - (1163735, '0x8ea4801511ccfce98696db3293ecbc9ba3eaf48b', 200, 1, '2024-05-09 06:08:19+00', 0, 0, '{"fid": 9581, "object": "user", "pfp_url": "https://i.seadn.io/gae/lXENY3cJnutJqOMOvW_4QAqP_4rhe8RcHHWJl8gl145IBOSwRUVRS6NDk5wcIgEEAAn_lqDrRB32-xmwWm-N-zYeLR5h_7UFq1MyRg?w=500&auto=format", "profile": {"bio": {"text": "fridays at the park season 002 https://zora.co/collect/base:0x1bbea2cc3b2c41774687fd00684ad12f9a666557/6", "mentioned_profiles": []}}, "username": "thepark", "power_badge": true, "display_name": "the park", "active_status": "inactive", "verifications": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "follower_count": 2359, "custody_address": "0x4d125b80e2217b0cdfb366cfb77b84a3d3a94751", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4EFx3ZYCZw0XuoEnMjjA5c?si=42a804ba858c4048\"}"}', NULL), - (1163470, '0x405a4aed0f487adccb2baefebd48ec6563e21fc8', 0, 1, '2024-05-09 13:28:30+00', 0, 2, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1164, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/1JuIXW5AaK24y7fjisYbQ9?si=U6RvIYMnS6u-rJaxbVBbDw&context=spotify%3Aalbum%3A6nx7O0T24xjbCpiATB4Rga\"}"}', NULL), - (1160124, '0x47aaf5c421075f1500d1a6f37627070f3efb5705', 1000, 1, '2024-05-08 07:26:07+00', 0, 7, '{"fid": 376944, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeigpbjdoapw5ydp2qktipxbo6rao6fmyivwifyr73z4rsrx2ugdgcq", "profile": {"bio": {"text": "animator & illustrator/Japan🎨🎨🎨 https://linktr.ee/fuffu_dazo 🎨 I will introduce anime materials to you with the #SAKUGA tag!🥳", "mentioned_profiles": []}}, "username": "fuffu", "power_badge": true, "display_name": "fuffu🌱🍖🎨🖼🌻☀️", "active_status": "inactive", "verifications": ["0xef6ed906193f25023df03e8e32591ee119418b19"], "follower_count": 2078, "custody_address": "0xf36682964903f57d6de0017b77b54b8958adb17c", "following_count": 1931, "verified_addresses": {"eth_addresses": ["0xef6ed906193f25023df03e8e32591ee119418b19"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h5iecuJQ1iaDJf8c7\"}","{\"url\":\"https://youtu.be/_ggNDhwyirs?si=USNwwgzeWeAyQG7U\"}"}', 'adhd'), - (1163638, '0x0909bae4837bf5550c55bd4e4e0916e32f935f7f', 0, 1, '2024-05-09 14:11:43+00', 0, 1, '{"fid": 12400, "object": "user", "pfp_url": "https://i.imgur.com/qVWtzti.gif", "profile": {"bio": {"text": "artist . painting . animation . performance . stickers . in crypto since 2018", "mentioned_profiles": []}}, "username": "ilannnnnnnnkatin", "power_badge": true, "display_name": "ilannnnnnnnkatin🎩", "active_status": "inactive", "verifications": ["0xab3627317c43d394eb171170f818153b976d28a3"], "follower_count": 2242, "custody_address": "0xfb47fff7eb8b604689de33ea18e47a1e0c4e103a", "following_count": 1042, "verified_addresses": {"eth_addresses": ["0xab3627317c43d394eb171170f818153b976d28a3"], "sol_addresses": ["Fu2tMSKPaQqPnEBRtZr3k7LdqdxQTSyu8uZ73RVwV8Lr"]}}', '{"{\"url\":\"https://open.spotify.com/track/4QQEzkxcONBthDLfzqIh9S?si=B6xMC0cCQS2bHqENKs5qXQ\"}"}', NULL), - (1163868, '0x9f9bd4565dbb495f5b7613a7c46348492acaa39b', 1000, 1, '2024-05-09 15:21:02+00', 0, 8, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1594, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'soundxyz'), - (1176164, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d', 13226, 1, '2024-05-16 21:49:43+00', 100, 0, '{"fid": 403020, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays "}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4483, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/119c93MHjrDLJTApCVGpvx?si=O32JcrOiRs6pK_THcqRqdQ\"}"}', NULL), - (1163824, '0x7a767d34aa461e7c7006c7a7d38454491106d118', 0, 1, '2024-05-09 15:11:55+00', 0, 2, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1594, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', 'nowplaying'), - (1160723, '0xfe9c3cf8471c65d0824f30f1cf7567f752c93737', 0, 1, '2024-05-08 01:44:01+00', 0, 4, '{"fid": 439718, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\"", "mentioned_profiles": []}}, "username": "ssr", "power_badge": true, "display_name": "SSR 🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "follower_count": 757, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 772, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/trinix1/beautiful-day?utm_source=mobi&utm_campaign=social_sharing\"}"}', 'sonata'), - (1163841, '0x36acc8a500c2b6a47343e971045bb568e35a73fb', 2100, 1, '2024-05-09 15:15:15+00', 0, 10, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 573, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 107, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/64BahXhOSEBLlwQymfa4S9?si=tUIDeX9cQVmKGvrWQiakWQ\"}"}', NULL), - (1176170, '0xe4c3c70226c657356482325d8eb2dc972ef5a44f', 3333, 1, '2024-05-16 22:22:00+00', 0, 0, '{"fid": 403020, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays "}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4487, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/41on8RwRh22IHcChAN2gm8?si=G5wmf_ESRrKcKPNEGpfh0A\"}"}', 'bangers'), - (1160672, '0x3dcc9c0b5e619ba7234eed95228719a3d58a65be', 0, 1, '2024-05-08 00:28:04+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0ve0CavjqrUqVmZ605RhTV?si=NP8s1Rg9RsSXE_dbd0nCdg\"}"}', NULL), - (1161715, '0x7cdb13dd445eaa4b42ebb9319374a01370698877', 0, 1, '2024-05-09 01:42:44+00', 0, 0, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 238, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 197, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/7536f380-154a-47f4-aa5d-a1f8bd00df46\"}"}', NULL), - (1176171, '0x50664484c27c7dc660f5af8a90dee70cadf43e6a', 200, 1, '2024-05-16 22:23:07+00', 0, 0, '{"fid": 335788, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville"}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 231, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 980, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/smoking-marijuana-rip-nipsey\"}"}', NULL), - (1164022, '0xac71b25e22261b3b82868c9a81df02d8056b13b1', 0, 1, '2024-05-09 16:09:04+00', 200, 4, '{"fid": 369904, "object": "user", "pfp_url": "https://i.seadn.io/gae/R5UJsQqS3qi2XvmWYO9_7e89nrkekCD4ck-946eJ8dxk6I4YSMOQoAbUrGC8lOrQ_NBfNRqlyQ8nTjHLTPM36Z4GXsP7KsnjJoVXPA?w=500&auto=format", "profile": {"bio": {"text": "Solarpunk. Groupie. Mental Chillness. \n", "mentioned_profiles": []}}, "username": "coolbeans1r.eth", "power_badge": true, "display_name": "Cool Beans 🌞🎩", "active_status": "inactive", "verifications": ["0xb875badbd67c7d5fa2c845ddce8fe112fe383309"], "follower_count": 447, "custody_address": "0xa02c533b895556aafd5fdb4c73c5ca4d3eabd4e2", "following_count": 371, "verified_addresses": {"eth_addresses": ["0xb875badbd67c7d5fa2c845ddce8fe112fe383309"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7rH8Z1QZrRbGDsJcSbVBt9?si=vyd5XEz8RkS3TbLSXaeB9w\"}"}', 'albumoftheday'), - (1164012, '0x6c5edd0569af4832e6d6374c1114eec220540a3e', 0, 1, '2024-05-09 16:07:48+00', 100, 1, '{"fid": 12400, "object": "user", "pfp_url": "https://i.imgur.com/qVWtzti.gif", "profile": {"bio": {"text": "artist . painting . animation . performance . stickers . in crypto since 2018", "mentioned_profiles": []}}, "username": "ilannnnnnnnkatin", "power_badge": true, "display_name": "ilannnnnnnnkatin🎩", "active_status": "inactive", "verifications": ["0xab3627317c43d394eb171170f818153b976d28a3"], "follower_count": 2242, "custody_address": "0xfb47fff7eb8b604689de33ea18e47a1e0c4e103a", "following_count": 1042, "verified_addresses": {"eth_addresses": ["0xab3627317c43d394eb171170f818153b976d28a3"], "sol_addresses": ["Fu2tMSKPaQqPnEBRtZr3k7LdqdxQTSyu8uZ73RVwV8Lr"]}}', '{"{\"url\":\"https://open.spotify.com/track/4DK3JpX2NkEMhCnltUEvUg?si=enx33WCqTWK6-0sA6cY-_w\"}"}', NULL), - (1164060, '0x071d058e51c9eb68cdbb942140349116eb9342bb', 2200, 1, '2024-05-08 13:36:38+00', 0, 9, '{"fid": 398824, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiehycw2f5ed4dvvpgttcrnivsgwwv3df3mxocg7v7pwf43i4n7uom", "profile": {"bio": {"text": "Guy diving into crypto", "mentioned_profiles": []}}, "username": "xbased", "power_badge": true, "display_name": "Irohcrypto 🎩⛓️🧾", "active_status": "inactive", "verifications": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "follower_count": 772, "custody_address": "0x019db65b233873283c5ac2e5a728ed438c28172c", "following_count": 1213, "verified_addresses": {"eth_addresses": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0YFqKxV9uNu6LUeYkLOKRS?si=27EKXMBuQDWk2d_qXuvycg\"}"}', 'bangers'), - (1176172, '0x9b42247742615c1b1aa97826fe4fb790069c8a27', 0, 1, '2024-05-16 22:38:17+00', 0, 0, '{"fid": 21348, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7abbffe-22f9-4801-fed9-ceb52917dd00/original", "profile": {"bio": {"text": "Data analyst at nft18.com. Drawing vectors. Host /dataviz\nhttps://linktr.ee/besanciahime"}}, "username": "konohime.eth", "power_badge": true, "display_name": "Konohime", "active_status": "inactive", "verifications": ["0x3fe465902811769e3e8738cd162632e85dcbaa86", "0xf85e13c32734ea54ec31be5c9b3e6ed0ae40cbad"], "follower_count": 624, "custody_address": "0x3d069726daa8b375def907609afa7e1d2958d2fe", "following_count": 450, "verified_addresses": {"eth_addresses": ["0x3fe465902811769e3e8738cd162632e85dcbaa86", "0xf85e13c32734ea54ec31be5c9b3e6ed0ae40cbad"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/XxnL5\"}"}', 'chillmusic'), - (1164038, '0x2fb2548bce08ddf64624c26a6f19297d891fbc28', 0, 1, '2024-05-09 16:20:46+00', 100, 0, '{"fid": 223778, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/465d375a-7ccd-424d-25bb-c2a6a2203200/rectcrop3", "profile": {"bio": {"text": "Systems engineer, budding crypto enthusiast, 10K/half-marathon runner 🏃🏾", "mentioned_profiles": []}}, "username": "jerry-d", "power_badge": true, "display_name": "Jerry-d 🍖👽🎩⛓️ ↑", "active_status": "inactive", "verifications": ["0x2943e07ca68febc79533d321f5d427136995ecb6", "0xc99af5c773da20e9b909eb44dd6a045937ba31c7"], "follower_count": 1345, "custody_address": "0xd309a1a18958b8b940ead9af04ef4ae6f2fd4fd6", "following_count": 1749, "verified_addresses": {"eth_addresses": ["0x2943e07ca68febc79533d321f5d427136995ecb6", "0xc99af5c773da20e9b909eb44dd6a045937ba31c7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6SGtTjWuez6lnKXR7clJkP?si=iZqvYGVuQNez7tXWEy9l_g&context=spotify%3Asearch%3Adream%2Blover\"}"}', NULL), - (1176173, '0x87006b7b487cf5fb8d4561553ddddede81b8d1c1', 0, 1, '2024-05-16 22:51:25+00', 0, 0, '{"fid": 114, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b476dd2-c646-4c88-e1b5-b17a6dc8dd00/original", "profile": {"bio": {"text": "media dealer /believein /native jihad.house 🇵🇸"}}, "username": "jihad", "power_badge": true, "display_name": "jihad ↑", "active_status": "inactive", "verifications": ["0x70ece45cdc64a768f936ccb8ac851578251363e3"], "follower_count": 3196, "custody_address": "0x92ec16a15a51490931d983a2d3af11fd82bad0e4", "following_count": 537, "verified_addresses": {"eth_addresses": ["0x70ece45cdc64a768f936ccb8ac851578251363e3"], "sol_addresses": ["D4rqSDcKfhSbNiP2vsunwzz6HxBZZSKPEeUr5NzmHdu2"]}}', '{"{\"url\":\"https://open.spotify.com/track/3Vg7nPYlOrCkcV1abKbRQ1?si=yQfV7v9QQPOxDXW26E9S2w&context=spotify%3Aplaylist%3A37i9dQZF1EP6YuccBxUcC1\"}"}', 'higher'), - (1164099, '0x339ce6d46d4ec43613477c7a223ef0787e50a572', 0, 1, '2024-05-08 20:11:39+00', 0, 2, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 200, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 184, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4qGfJb2KByjvzrwo8HNibg?si=Q269Vzv0QXSHBxVaSChcZQ\"}"}', 'sonata'), - (1164061, '0xd1a46dbd7f2a5ee26511ac673811273f368c2f67', 0, 1, '2024-05-09 00:03:28+00', 0, 0, '{"fid": 398824, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiehycw2f5ed4dvvpgttcrnivsgwwv3df3mxocg7v7pwf43i4n7uom", "profile": {"bio": {"text": "Guy diving into crypto", "mentioned_profiles": []}}, "username": "xbased", "power_badge": true, "display_name": "Irohcrypto 🎩⛓️🧾", "active_status": "inactive", "verifications": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "follower_count": 772, "custody_address": "0x019db65b233873283c5ac2e5a728ed438c28172c", "following_count": 1213, "verified_addresses": {"eth_addresses": ["0x453a437a3a8825f2bf5b41b5090956e3a73dd670"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3cSuhzV7wKX5diQ8hos78P?si=wgyUA4wSRsqsM8Plp6yi0g\"}"}', 'bangers'), - (1164081, '0x68c5582df5f9f0fa539924ba8f4ba4085fb357f5', 0, 1, '2024-05-09 16:32:52+00', 100, 1, '{"fid": 1069, "object": "user", "pfp_url": "https://i.imgur.com/s3XjT5J.jpg", "profile": {"bio": {"text": "Co-Founder @frenshouse / Orange Cube Art 💛🏠 work @ Art Blocks / ThankYouX 🫡 I Love music, sports, tech, art, marketing, coffee maxi", "mentioned_profiles": []}}, "username": "2ripsgawd", "power_badge": true, "display_name": "2Rips 🎩 ↑", "active_status": "inactive", "verifications": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "follower_count": 552, "custody_address": "0x84a2cdf0a978b16dc4d7e5005b87fa594f3fd5e6", "following_count": 251, "verified_addresses": {"eth_addresses": ["0x097f71d2abaf370e686fb3f3d773592d9b0031ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5A4P0HXluOB7NeEhzMzCKG?si=W79m-8bNTcqmptPMPIOAmQ&context=spotify%3Aalbum%3A6jfq0ndRJR396m0a6LpYIq\"}","{\"url\":\"https://music.apple.com/us/album/cadet-limbo/1586500437?i=1586500609\"}"}', 'music-caster'), - (1158769, '0x74a34ae59844ef2dd6af428edaca0e220652933e', 0, 1, '2024-05-08 05:36:48+00', 10, 2, '{"fid": 215322, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1bcb13b-6c44-4207-7b3c-459bd20b1100/original", "profile": {"bio": {"text": "nature finance onchain /basin @basin\n | place-based /situs | 🦇🔊", "mentioned_profiles": []}}, "username": "tmo.eth", "power_badge": true, "display_name": "TMO 👉 RWAxPGF", "active_status": "inactive", "verifications": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "follower_count": 564, "custody_address": "0x7cba2d1f540fb606e20fe9ae6ad44aad09e8c420", "following_count": 402, "verified_addresses": {"eth_addresses": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5B2HDb2YAVdpE9I8t9c3Tn?si=g08ET8q1REKKjJspKxW_HQ\"}"}', NULL), - (1164098, '0x9aa72130684242118eef1dbf432a2ed4e6f33040', 0, 1, '2024-05-09 15:45:45+00', 100, 4, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 200, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 184, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3lzU7IqLsjFb9I5RduLnaI?si=9d3zX9cFSz6TTWqeviZaWg\"}"}', NULL), - (1173215, '0xbedd3559287ff761cbb9791ddb9ce0dd7e168297', 5222, 1, '2024-05-15 13:13:17+00', 0, 4, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 866, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 870, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/13bPROSNrEszkMcTtX2SHh?si=KQznhLUyTsmEeIJ3XzHxbg\"}"}', 'bangers'), - (1164105, '0xe140b3a1e963fb143b1a5d9def9893e002be9269', 0, 1, '2024-05-08 04:32:35+00', 0, 9, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 200, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 184, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ubvP9oKmxLUVq506fgLhk?si=jwLO_ou-QKSnNC3omDmIpg\"}"}', NULL), - (1164914, '0xe6c79bf2040b7c32ac21250b4e69a9cbd2f85456', 1100, 1, '2024-05-09 20:50:06+00', 100, 0, '{"fid": 422557, "object": "user", "pfp_url": "https://i.imgur.com/PUOldeG.jpg", "profile": {"bio": {"text": "Artist | Shamelessly Lift Up Your People | linktr.ee/fractaloasis", "mentioned_profiles": []}}, "username": "fractaloasis.eth", "power_badge": true, "display_name": "Fractal", "active_status": "inactive", "verifications": ["0x4c77de78970bdda2ff9100210d21ff8562efcd0e", "0x5f11aca48d22d4e86612bdf53b1c6bf7ce779282"], "follower_count": 523, "custody_address": "0x7c754f73122db95839590e5f0b958c32330cef30", "following_count": 735, "verified_addresses": {"eth_addresses": ["0x4c77de78970bdda2ff9100210d21ff8562efcd0e", "0x5f11aca48d22d4e86612bdf53b1c6bf7ce779282"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/minnesota/push-it-now-on-beatport\"}"}', NULL), - (1163015, '0x31ee81d5ca53fa656d6f7494aa3d5f296fc1e720', 100, 1, '2024-05-09 09:23:58+00', 0, 3, '{"fid": 394597, "object": "user", "pfp_url": "https://i.imgur.com/3wCLomw.jpg", "profile": {"bio": {"text": "Art School Dropout | Baggage Handler at 747 Airlines ✈️", "mentioned_profiles": []}}, "username": "jameecornelia", "power_badge": true, "display_name": "Jamee Cornelia✈️", "active_status": "inactive", "verifications": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "follower_count": 361, "custody_address": "0xa75cacaf502ade298af8293ab5a37ef380b3abbc", "following_count": 202, "verified_addresses": {"eth_addresses": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/yungbabytate/million-dollar-baby-tate\"}"}', NULL), - (1176183, '0x8534a87608532f2451e226a055cbc0c8c62ca34c', 0, 1, '2024-05-16 23:00:59+00', 0, 0, '{"fid": 381283, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\""}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 1038, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 741, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1KhA8fLv5FTap9nhCFmejI?si=P-1QiCuhS-OiUvwTagv0Rg\"}"}', NULL), - (1164474, '0xfe62d593c05e0c026da63f70cb40665df67550f7', 100, 1, '2024-05-09 18:36:42+00', 100, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9404, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/05cb36ae-554c-4ec5-9aab-9061187024ad\"}","{\"url\":\"https://www.sound.xyz/grady/you-were-so-cool\"}"}', NULL), - (1173080, '0xf802044d44c7d19d81b088257eda9a482e45f6ea', 2000, 1, '2024-05-15 00:36:07+00', 0, 0, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from another point of view /wevibe ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2258, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 602, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6h7jn2jE2EqJadOkDXsDJh?si=N0IGkVQnRAmHfrXazweN-g&context=spotify%3Asearch%3Asleepless\"}"}', 'bangers'), - (1164104, '0x35440bfab3cf8816bf4f2b880d58893cf880b07d', 0, 1, '2024-05-08 01:38:37+00', 0, 1, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 200, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 184, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3UeJTkUgt1iZHTUWHoMskr?si=pEBZT3LXQX-A429C4Xf92g\"}"}', NULL), - (1164906, '0x330f94d5a729cb6ed3f891ca1f0914b949b31cf1', 2200, 1, '2024-05-09 20:47:38+00', 110, 15, '{"fid": 1317, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/42bb7ee0-7246-49fd-7993-8d138aa89000/rectcrop3", "profile": {"bio": {"text": "designeverydays.com", "mentioned_profiles": []}}, "username": "0xdesigner", "power_badge": true, "display_name": "0xdesigner", "active_status": "inactive", "verifications": ["0xabb485fdc925dc375b5d095a30fcae7f136fd007"], "follower_count": 130250, "custody_address": "0x70f48127833c6ef84c00bd933ca3842cbef437d9", "following_count": 670, "verified_addresses": {"eth_addresses": ["0xabb485fdc925dc375b5d095a30fcae7f136fd007"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6zWU7YALeEDMcPGhKKZJhV?si=3ede5869ab5b45a5\"}"}', NULL), - (1164116, '0x172222523dd9cc790ccec2fce8e0e930b8c47e5f', 0, 1, '2024-05-09 16:42:15+00', 100, 6, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 563, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 592, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5geAnlK4PDjZQydQwNPKEl?si=VVxqWqO1Te-6Bf2eBKqZ7g\"}"}', NULL), - (1173281, '0x284b1124ec8ae050bb879c9b59ab416e6cea51ca', 1000, 1, '2024-05-15 17:24:24+00', 0, 26, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from a different point of view ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩🍼📟", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2305, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 603, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/31G9RaSaDOI2NWcpnIp734?si=BbK7h5XlQl6Qj6vonMY74Q\"}"}', 'bangers'), - (1164200, '0x8f123f1318cd35a3a21056ddb0466fee4792c1d4', 0, 1, '2024-05-07 22:37:19+00', 0, 3, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": true, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 296, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 91, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/5NiGZ1JTKhTWg6IQ7mkzQ2?si=8b06a56999494c91\"}"}', NULL), - (1164241, '0xa7d9e494e267d43ad998229ce2487ca4f5c629f4', 0, 1, '2024-05-09 17:14:26+00', 100, 4, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full stack artist 🖌️⚡️🎵\nBuilding ORIGIN STØRIES a creative tech studio (FIB, VPM , REFUSES)", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 680, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 317, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1NHZzHDim0aiS8fhJLPdqk?si=oyLujXFCRHGYTIMFj-l0pA\"}"}', 'sonata'), - (1164199, '0xfaaa106285157844eec02c8c461eaf5a0afd6ff3', 0, 1, '2024-05-07 22:37:12+00', 0, 1, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": true, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 296, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 91, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/4ihykcy9d9SSC5qxHIhPcf?si=87f976a2dcdf4500\"}"}', NULL), - (1164217, '0xe300075698705de93a14334b214fb20a4d173efb', 0, 1, '2024-05-09 17:06:54+00', 100, 0, '{"fid": 242729, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3a70e05b-5890-4b26-0733-e0bb0a336400/rectcrop3", "profile": {"bio": {"text": "Rebellion in my blood. SheFi alumnae. Brand, marcomms & PR. Africa 🫶🏽 | Le bois sacré 🧘🏽‍♀️🛖🌳", "mentioned_profiles": []}}, "username": "hellofady", "power_badge": true, "display_name": "Fady 🎩🔵💫🍖🧾", "active_status": "inactive", "verifications": ["0x7deacf4aa3332e33a5c2dd5e344bbf6a61de4fa8"], "follower_count": 683, "custody_address": "0x5f7977b31a9d469521b1c0afb17ff4cff31cf8d9", "following_count": 194, "verified_addresses": {"eth_addresses": ["0x7deacf4aa3332e33a5c2dd5e344bbf6a61de4fa8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/06wMMYvmlT9pgJgIctB46Q?si=42XW8pzLSlG2qlrRs833wA&context=spotify%3Aplaylist%3A2nZKvcQF2KiK6XRJrCsFv0\"}"}', NULL), - (1161755, '0xefe5ae0c6e045307ab7592b29c2facf945263bc5', 0, 1, '2024-05-09 01:55:57+00', 0, 9, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/56kp1bjrqOIS51QI3mYKuJ\"}"}', 'musicjp'), - (1164201, '0x55a5bf1f079297333481faeaf98a2393bc63d90c', 0, 1, '2024-05-07 22:36:50+00', 0, 1, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": true, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 296, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 91, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=b8a8da0f573e4bf8\"}"}', NULL), - (1176194, '0x1512f716680b5f82c7fa0b0fbffb1527405ee010', 3010, 1, '2024-05-16 23:13:46+00', 0, 0, '{"fid": 403020, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays "}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4495, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 524, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0q75NwOoFiARAVp4EXU4Bs?si=p7AIPpxZSLKWkld0tYbIiw\"}"}', NULL), - (1160720, '0xbca4081c14ad6b6dd240b050972a982a3ca681f6', 0, 1, '2024-05-07 23:34:42+00', 0, 20, '{"fid": 11778, "object": "user", "pfp_url": "https://i.imgur.com/jFxoGJf.gif", "profile": {"bio": {"text": "Designer on #Web3 #DAO #DeFi 🎨\n- Co-Leader Marketing People DAO 👥\n- Poap Design 🔥\n- NFBeez Designer 🐝", "mentioned_profiles": []}}, "username": "rohekbenitez.eth", "power_badge": true, "display_name": "rohekbenitez 🎩🌈🍖", "active_status": "inactive", "verifications": ["0x6c965b656c450259a6d4d95a2e68fb4319eecbc0"], "follower_count": 1689, "custody_address": "0xc848bdbb3af4ddd69ce0bff71487a0f0b6a2a69a", "following_count": 1207, "verified_addresses": {"eth_addresses": ["0x6c965b656c450259a6d4d95a2e68fb4319eecbc0"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/rohekbenitez.eth/post/4627b9d3-88ac-4a7a-8db7-3392afade4a7\"}"}', NULL), - (1164253, '0x581eeaea6ccb9d8566ac5ace48e69e2bb622281f', 0, 1, '2024-05-09 18:03:18+00', 100, 31, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3683, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 286, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=BNW_HewdShS_zQuuzt-bmA\"}"}', 'paidgroup'), - (1164056, '0xba7d4361c87cc593ea9c3f0d3fc74695eacc369f', 0, 1, '2024-05-09 16:25:19+00', 100, 1, '{"fid": 271878, "object": "user", "pfp_url": "https://ipfs.pixura.io/ipfs/QmQGosejyyMSMWqdRmYkQ9z2ygXrir4Dv4jLsuP398eGFH/Mutagenx11021.jpg", "profile": {"bio": {"text": "Neouroscience, ☯️, decentralization, AI. Building the next phase of onchain capital assets with @ bldx.io. I like mountains, seas and space.", "mentioned_profiles": []}}, "username": "hyp", "power_badge": true, "display_name": "Leo 🎩🔵 🧾", "active_status": "inactive", "verifications": ["0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113", "0x8cf7f8a2eb9cbf7a01dfb89f45951de4fb421d27"], "follower_count": 1430, "custody_address": "0x64fc0caaa555b9fbbc9cb730ac964e52325b0e58", "following_count": 1295, "verified_addresses": {"eth_addresses": ["0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113", "0x8cf7f8a2eb9cbf7a01dfb89f45951de4fb421d27"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4NE3oWyUQI2b2NjyMyC8Bi?si=a63255f45ad848f2\"}"}', NULL), - (1163420, '0x5521a023fa4e7285a69b57d851fe64feb50bd633', 0, 1, '2024-05-09 13:05:09+00', 0, 4, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 3601, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 715, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4clAdXxCutY8jOpT5OiaDO?si=erw65XonSASBAfrgZa6WZw\"}"}', NULL), - (1164363, '0xcd7a3c611ad755dee9635358e21fcdb894238e04', 0, 1, '2024-05-09 18:10:43+00', 100, 1, '{"fid": 18506, "object": "user", "pfp_url": "https://i.imgur.com/wgHzrq2.jpg", "profile": {"bio": {"text": "Live life authentically and positively ✌🏼😎\n\n\nCat mama 😸(x2)\n\n\nPowered by the sun ☀️\n\n\nNYC 🍕\n\n\n👍🏼", "mentioned_profiles": []}}, "username": "hnnhstphnz", "power_badge": true, "display_name": "Hannah ", "active_status": "inactive", "verifications": ["0x4960b5248ea4416d6f1574344825afd6f5228487"], "follower_count": 317, "custody_address": "0x5a104047dae4a71eec33c4e291d449fe88250277", "following_count": 215, "verified_addresses": {"eth_addresses": ["0x4960b5248ea4416d6f1574344825afd6f5228487"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=mwFl5_O4TQ2QO0OZNUF_gA&context=spotify%3Aplaylist%3A37i9dQZF1EP6YuccBxUcC1\"}"}', 'nowplaying'), - (1176195, '0x3dc9a0d28190442cba4ab7dcf95767e242249663', 1010, 1, '2024-05-16 23:22:13+00', 0, 0, '{"fid": 375536, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. "}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 449, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 217, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3adwQ0IMNX0FmHTvEcu2wA?si=1c3_15T_T6OwRINs6pyH4Q\"}"}', 'housemusic'), - (1176196, '0xc4574ab74ba321d900c2c7dc4b4c1c45458278a8', 0, 1, '2024-05-16 23:47:41+00', 0, 0, '{"fid": 355566, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️"}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 282, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 213, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/43T82AfQwAvXvv85u4VbJl?si=T6BAroolRH2jMW5c7Yad_A\"}"}', 'albumoftheday'), - (1164477, '0x7d5c9f34fe66d0edd10a24ccf8db95ea14c6d613', 1000, 1, '2024-05-09 18:38:40+00', 100, 2, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 313, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 261, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/76HrzCtA3XPVrvrkfmh7Pm?si=ILD2_iVXQI-v0SBz0inr8g&context=spotify%3Aartist%3A2YUe21UG1hJsuhy9E3bzxp\"}"}', 'bangers'), - (1164396, '0x4c8ce1ccd7ed89b6dab476dc12bcc057c1dbb3f8', 1000, 1, '2024-05-09 18:17:04+00', 100, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": true, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 296, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 91, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/2lfHN9D873RYeTSL0OvJRy?si=958b917de8dc49ef\"}"}', NULL), - (3297, '0x5d219878c19e907bd71277ed8a3a1b4dea01d47d', 100, 1, '2024-04-29 18:24:58+00', 0, 19, '{"fid": 337018, "object": "user", "pfp_url": "https://raw.seadn.io/files/e9a97c0c212eafd620f99fe2bbd1f522.svg", "profile": {"bio": {"text": "Creative Director who makes movies and ads, with a passion for crypto.", "mentioned_profiles": []}}, "username": "baubergo-", "power_badge": true, "display_name": "baubergo 🎩🍖", "active_status": "inactive", "verifications": ["0xbcfca495966a3132ec76d1b0cf8ffe1d4ad95e0a", "0x9d3e7fe9bd43d664ecb64b12d7d0f2b447dfbc0c"], "follower_count": 1583, "custody_address": "0xc36edbf6cf2eee3b0ed1981f13b78addce5fe968", "following_count": 804, "verified_addresses": {"eth_addresses": ["0xbcfca495966a3132ec76d1b0cf8ffe1d4ad95e0a", "0x9d3e7fe9bd43d664ecb64b12d7d0f2b447dfbc0c"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5e66faaa-e071-4995-2a9e-5f4161f8df00/original\"}","{\"url\":\"https://open.spotify.com/track/1A5V1sxyCLpKJezp75tUXn\"}"}', NULL), - (1164424, '0xd22e858db3ac33aadaa6f05cb843db3552004ac3', 0, 1, '2024-05-09 18:26:57+00', 100, 1, '{"fid": 265749, "object": "user", "pfp_url": "https://i.imgur.com/puQnKKh.jpg", "profile": {"bio": {"text": "building the decentralized future of IP at rstlss.xyz\n\n/rstlss", "mentioned_profiles": []}}, "username": "charlicohen", "power_badge": true, "display_name": "Charli Cohen", "active_status": "inactive", "verifications": ["0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3", "0x4b25feb744fb5d4372b318ed8d7655ea37869488"], "follower_count": 1346, "custody_address": "0xb4863ec076bda091ecfe64545d4271ee250a2612", "following_count": 636, "verified_addresses": {"eth_addresses": ["0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3", "0x4b25feb744fb5d4372b318ed8d7655ea37869488"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6JgHKt0WwdwlXIht6M0mqa?si=xl4zBYUURoSYC-bTadSi8A\"}"}', NULL), - (1164390, '0x76d3cada2420df71ef57caabd3e17ca599932066', 0, 1, '2024-05-09 18:16:35+00', 100, 1, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": true, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 296, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 91, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/1s1gephZljhEtwZbW8uAN8?si=a0a102e8a0fa4ba5\"}"}', NULL), - (1164394, '0x94e821af541e7345482208c5ab77b4c4e07fd1a9', 0, 1, '2024-05-09 18:16:49+00', 100, 0, '{"fid": 15844, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7c3cd81b-56c0-4bd2-29cb-64251ecbc500/original", "profile": {"bio": {"text": "( artist ) / ( human ) / ( sack chaser ) | /stomach-pain", "mentioned_profiles": []}}, "username": "kye", "power_badge": true, "display_name": "kyë 🎩🦄⛓️‍💥🧾", "active_status": "inactive", "verifications": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "follower_count": 296, "custody_address": "0xe77078e235881ea9e2a7dea943475a9bd332a7f1", "following_count": 91, "verified_addresses": {"eth_addresses": ["0xcd7e89f8adc80aaada5899312a1132209650ed0e"], "sol_addresses": ["7MxqDmAfoTTgwzGBiYYV2ySPwx6mCUC7g2uzngCqTkRP"]}}', '{"{\"url\":\"https://open.spotify.com/track/6KflfPD0qIbbB1PQyAHla5?si=d73af949a5354145\"}"}', NULL), - (1173375, '0x1cc2c4769aabc8e03d5e985454865c57a6fae3ae', 2100, 1, '2024-05-15 21:25:45+00', 0, 1, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 414, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 213, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbo/im-in-trouble-feat-vivii?referral=0xb642b7b23c84ddc446dc364b1f714cee6bfd0908\"}"}', 'soundxyz'), - (1164519, '0x266756ed772f92569d3f7339dacb938ad5637cd7', 0, 1, '2024-05-09 18:46:03+00', 100, 1, '{"fid": 223778, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/465d375a-7ccd-424d-25bb-c2a6a2203200/rectcrop3", "profile": {"bio": {"text": "Systems engineer, budding crypto enthusiast, 10K/half-marathon runner 🏃🏾", "mentioned_profiles": []}}, "username": "jerry-d", "power_badge": true, "display_name": "Jerry-d 🍖👽🎩⛓️ ↑", "active_status": "inactive", "verifications": ["0x2943e07ca68febc79533d321f5d427136995ecb6", "0xc99af5c773da20e9b909eb44dd6a045937ba31c7"], "follower_count": 1345, "custody_address": "0xd309a1a18958b8b940ead9af04ef4ae6f2fd4fd6", "following_count": 1749, "verified_addresses": {"eth_addresses": ["0x2943e07ca68febc79533d321f5d427136995ecb6", "0xc99af5c773da20e9b909eb44dd6a045937ba31c7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3P5dVXm98CgVuEpcW2HsUk?si=xKQ5VgSdRiuQ9g4TTrHI6A&context=spotify%3Asearch%3Asnap%21\"}"}', NULL), - (1164449, '0x8608187087d07b8e145304a8e02387df62b61c8f', 100, 1, '2024-05-09 18:32:05+00', 100, 9, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 654, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 452, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/elceethealchemist/netflix?referral_source=link\"}"}', 'sonata'), - (1164640, '0x28ab9272680baa5784751b9cdc060121626665e9', 100, 1, '2024-05-09 19:18:13+00', 50, 19, '{"fid": 240835, "object": "user", "pfp_url": "https://i.imgur.com/EozZCWk.png", "profile": {"bio": {"text": "Knowledgeable broke anon", "mentioned_profiles": []}}, "username": "kenanie.eth", "power_badge": true, "display_name": "kenanie.eth", "active_status": "inactive", "verifications": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "follower_count": 2721, "custody_address": "0xc6dd7067493b6dd22f56f61fc72d8980bf883e1f", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "sol_addresses": ["C4Bg7Xa4nnY2Ty5j4j99nEwoP23YzK6SCDPTHVfHTkv7"]}}', '{"{\"url\":\"https://open.spotify.com/track/35r28RDot7nPE7y9K9H7l0?si=VSntfu5qTLqGaZqj-4rjPg\"}"}', 'paidgroup'), - (1164571, '0xe979a9c9badabd608558cb259c5e0165928f9180', 0, 1, '2024-05-09 18:58:52+00', 100, 3, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 2062, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 428, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3U100F4pytAROBRdljmOZN?si=c56bb551036e416b\"}"}', NULL), - (1162744, '0xe526c0f2e621e03aa5afb990f6ad13279f8b6ec2', 2510, 1, '2024-05-09 07:42:26+00', 0, 2, '{"fid": 8885, "object": "user", "pfp_url": "https://i.imgur.com/mBmqcTV.gif", "profile": {"bio": {"text": "product mgr. pursuing onchain music | onchain artist relations @rohki | music patent 11,620,649 | @techstars alum | @zagster cofounder (acq. by superpedestrian)", "mentioned_profiles": []}}, "username": "jasonmeinzer", "power_badge": true, "display_name": "jasonmeinzer.eth 🎩↑🔮🍖", "active_status": "inactive", "verifications": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "follower_count": 458, "custody_address": "0x973ce5bbc61897a0cffa24fc91b4c1d6874c7896", "following_count": 874, "verified_addresses": {"eth_addresses": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2FQrifJ1N335Ljm3TjTVVf?si=de166c93451c444e\"}"}', NULL), - (1164844, '0x9ff896df4f5419a413902ec0546bc038a345278f', 0, 1, '2024-05-09 20:24:15+00', 100, 2, '{"fid": 374660, "object": "user", "pfp_url": "https://i.imgur.com/083jvml.jpg", "profile": {"bio": {"text": "The gang does support for @rainbow 🌈 ~\n\nvideo games | tattoos | art | music | & Danny Devito ", "mentioned_profiles": []}}, "username": "endureandsurvive.eth", "power_badge": true, "display_name": "Taylor 🌈 ᖭི༏ᖫྀ ", "active_status": "inactive", "verifications": ["0x19deaa4a250f87215e125a0eb93ad71138f3ed9b"], "follower_count": 334, "custody_address": "0x19deaa4a250f87215e125a0eb93ad71138f3ed9b", "following_count": 111, "verified_addresses": {"eth_addresses": ["0x19deaa4a250f87215e125a0eb93ad71138f3ed9b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7s8AJ3j76YR5n7OEhhvWoH?si=244f0e34319640ee\"}"}', NULL), - (1164100, '0x8d3616f91390e6d0fccc2d5db2e4efddb20fb546', 0, 1, '2024-05-08 16:14:12+00', 0, 1, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 200, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 184, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9b05e013-f8b8-4c0e-128c-fba4a92d9c00/original\"}","{\"url\":\"https://open.spotify.com/track/0I2iG0LZCdYEoDlaLykJ6Z?si=dJ0c5xonTAqHCu4Z0Zbczw\"}"}', NULL), - (1164666, '0x7d96b4e63ef2de7f9674cf74dcba592a39410dbb', 100, 1, '2024-05-09 19:27:45+00', 100, 0, '{"fid": 223778, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/465d375a-7ccd-424d-25bb-c2a6a2203200/rectcrop3", "profile": {"bio": {"text": "Systems engineer, budding crypto enthusiast, 10K/half-marathon runner 🏃🏾", "mentioned_profiles": []}}, "username": "jerry-d", "power_badge": true, "display_name": "Jerry-d 🍖👽🎩⛓️ ↑", "active_status": "inactive", "verifications": ["0x2943e07ca68febc79533d321f5d427136995ecb6", "0xc99af5c773da20e9b909eb44dd6a045937ba31c7"], "follower_count": 1345, "custody_address": "0xd309a1a18958b8b940ead9af04ef4ae6f2fd4fd6", "following_count": 1749, "verified_addresses": {"eth_addresses": ["0x2943e07ca68febc79533d321f5d427136995ecb6", "0xc99af5c773da20e9b909eb44dd6a045937ba31c7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6fBwVe6udYdnRqwqo06if8?si=Uz-0juR8QYC1Y-6V5whnCg&context=spotify%3Asearch%3Ai%2Bwould%2Bdie%2Bfor%2Byou\"}"}', NULL), - (1162406, '0x6c43e37da591a0e568848f2cc605ca273bb7af8f', 0, 1, '2024-05-09 05:33:43+00', 0, 17, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2340, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/72qFAIhU6gWg8SX9sVhFof\"}"}', 'sonata'), - (1164937, '0xd0674df85ac498eac478c777044b8c6883690719', 200, 1, '2024-05-09 20:56:02+00', 100, 1, '{"fid": 4044, "object": "user", "pfp_url": "https://i.imgur.com/z9xqChs.jpg", "profile": {"bio": {"text": "👷 Building @interestedfyi (interested.fyi) to help people get /jobs 👔 🟪 #39 + 76 ⏪Prev. @ConsenSysMesh🦇🔊 Class of ’17 🤠", "mentioned_profiles": []}}, "username": "alec.eth", "power_badge": true, "display_name": "alec.eth🤠", "active_status": "inactive", "verifications": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "follower_count": 3623, "custody_address": "0x8407d58683d74c59436c7d38218239082163fcf9", "following_count": 808, "verified_addresses": {"eth_addresses": ["0x049569adb8a1e8a9349e9f1111c7b7993a4612eb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5lLNBIyjp72btcnrjBG751?si=H5pHuXgEQnSiR1z12mnPiw&context=spotify%3Aalbum%3A4JAvwK4APPArjIsOdGoJXX\"}"}', NULL), - (1164649, '0xe6ef7346fe8c214f1264f2783a71cdbe0114e684', 3010, 1, '2024-05-09 19:21:35+00', 100, 5, '{"fid": 6591, "object": "user", "pfp_url": "https://i.imgur.com/w3f0n6Y.png", "profile": {"bio": {"text": "\nNPC fighting to attain sentience.\nBuilder of software and songs. CS grad student.\n\nMusic, Blog, Website: https://www.mattlee.world/links", "mentioned_profiles": []}}, "username": "mattlee", "power_badge": true, "display_name": "Matt Lee ", "active_status": "inactive", "verifications": ["0x3ee75b599c076193b81885ca1838e560d268aad1", "0xfd9a638be3d424428a40fb4ce52a90cce7306c14"], "follower_count": 2457, "custody_address": "0x10e566ae27d6d22801f8fd43c1a619c8417da1de", "following_count": 922, "verified_addresses": {"eth_addresses": ["0x3ee75b599c076193b81885ca1838e560d268aad1", "0xfd9a638be3d424428a40fb4ce52a90cce7306c14"], "sol_addresses": ["F1rgKDwQcCvS4RR37S5L8RES1TQHirMjJq9iKvwDXexc"]}}', '{"{\"url\":\"https://www.sound.xyz/matt/philosopher-king?referral_source=link\"}"}', 'soundxyz'), - (1111428, '0xff7ebb29bcf77aa27f609c6a7ffb0760a08873b3', 15400, 1, '2024-05-07 17:00:42+00', 233, 142, '{"fid": 335788, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville", "mentioned_profiles": []}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 221, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 975, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/two-angelz?referral_source=link\"}"}', NULL), - (1165024, '0xb3be72e83036b56c3011840511a22ad38e2fee93', 110, 1, '2024-05-09 21:20:09+00', 100, 0, '{"fid": 9933, "object": "user", "pfp_url": "https://i.imgur.com/81LKUfp.gif", "profile": {"bio": {"text": "dev / collector / chef / ex-Twitter\n\nB.S in Chemical Engineering\n\nBUIDLGUIDL 🛡️⚔️🛠️ \n\nspeedrunethereum.com\n\n+\n\nhttps://youtube.com/@Ongaloid?si=w25tJeY-XgXt0i", "mentioned_profiles": []}}, "username": "m00npapi.eth", "power_badge": true, "display_name": "m00npapi🎩q/dau", "active_status": "inactive", "verifications": ["0x38b2bac6431604dffec17a1e6adc649a9ea0efba"], "follower_count": 4473, "custody_address": "0x820ae05036e269becbd3b01aa7e30bbc9f75026d", "following_count": 1309, "verified_addresses": {"eth_addresses": ["0x38b2bac6431604dffec17a1e6adc649a9ea0efba"], "sol_addresses": ["CoR1gSCxFnmQBLrLSsrHsVDXmrYHpkeuwmkyBgfMuYFT"]}}', '{"{\"url\":\"https://open.spotify.com/track/0i3NZpE5KwC70tf0GSKekx?si=oXrrP35zSVif3nmv58cnLA\"}"}', NULL), - (1176198, '0x56bf40e18bf35df36aac5176b4d23e885984288b', 1010, 1, '2024-05-16 23:53:32+00', 0, 0, '{"fid": 253410, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast."}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 599, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 528, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/show-me\"}"}', NULL), - (1164995, '0x4de123f698e7528681499c285346b398bfd4dc04', 180, 1, '2024-05-09 21:12:26+00', 10, 0, '{"fid": 1797, "object": "user", "pfp_url": "https://i.seadn.io/gae/wZW4s74nLZu0DRrBRjOySOb_A6uHJeYjnJBhJytpYxBhqfHms92c3D8WyG4HXMdrYr6sJWiAjbIcj_tVvfuqgQMDpgLP4dIkMOWjZg?w=500&auto=format", "profile": {"bio": {"text": "Founder & CEO of @fantasymetals • Software engineer by trade, angel investor by accident, creator by nature, obsessed with product & growth", "mentioned_profiles": []}}, "username": "kiren", "power_badge": true, "display_name": "Kiren Srinivasan", "active_status": "inactive", "verifications": ["0x4ca791f11e53323d2907257d6dcab9ea888b65aa"], "follower_count": 513, "custody_address": "0x122b583267728f55f523ce354e575b2f55ae1574", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x4ca791f11e53323d2907257d6dcab9ea888b65aa"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/c2ZVBDBNXTGwpABN7\"}"}', 'soundscapes'), - (1164991, '0x1a2f417f50e69a7fa49955ed6743e2e4feec52b9', 1000, 1, '2024-05-09 21:09:05+00', 100, 1, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 470, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5LmzVQmsQHDFS2w76\"}"}', NULL), - (1176229, '0xcaa78d9708e2fe54c02c6eb819d907abf3c2debd', 1800, 1, '2024-05-16 23:56:08+00', 0, 0, '{"fid": 420229, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me."}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 575, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 468, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/bZistzwNeQcvNeaa8\"}"}', 'sonata'), - (1165078, '0x5eb25bff0c8ca30c969e73f42ff40d3fe6d1c223', 7200, 1, '2024-05-09 21:44:53+00', 110, 0, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 692, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 343, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0r9ZSCNXKinpOBUl943m3l?si=dc569729f6994fc9\"}"}', 'soundscapes'), - (1165079, '0xb376be055551c00298898dd5a4784d6573b6f69b', 1986, 1, '2024-05-09 21:46:40+00', 110, 0, '{"fid": 18325, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/816c8cab-759c-4f89-e652-9c983a5a6100/rectcrop3", "profile": {"bio": {"text": "Based in DC. ⛓️ @DANC3 \nfind me enjoying https://zora.co/@crittiep", "mentioned_profiles": []}}, "username": "crittiep", "power_badge": true, "display_name": "↑ ↑ Crittie p ↑ ↑", "active_status": "inactive", "verifications": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "follower_count": 362, "custody_address": "0x34a56e7cf6de51416ab2f84bc6c48fcee32c18a3", "following_count": 486, "verified_addresses": {"eth_addresses": ["0xd35d60b1746caec2289c892eac7351d66d63455b"], "sol_addresses": ["5DCTxf6kHtgrFwT4f2FPsCAbECaxn84ZVjKAx9DW7aY2"]}}', '{"{\"url\":\"https://open.spotify.com/track/2Zx41xpsAlZZxUVLm1ciar?si=24SA9P8LRWiHSBzreliauA\"}"}', 'yup'), - (1165080, '0x959cac46361fe2d5787d60f9d28af39c523435b6', 1210, 1, '2024-05-09 21:56:09+00', 260, 0, '{"fid": 13304, "object": "user", "pfp_url": "https://i.imgur.com/5ppdwsi.gif", "profile": {"bio": {"text": "music x code // cc0 // building /open-music\n-\nlinktr.ee/producedbydav", "mentioned_profiles": []}}, "username": "dav", "power_badge": true, "display_name": "dav", "active_status": "inactive", "verifications": ["0xcb7504c4cb986e80ab4983b44263381f21273482"], "follower_count": 374, "custody_address": "0x6077ffe161c7402b3e7a8595fcc4dae807fd12de", "following_count": 454, "verified_addresses": {"eth_addresses": ["0xcb7504c4cb986e80ab4983b44263381f21273482"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=P0GVcX2wS165GNsEY4ARjA&context=spotify%3Aalbum%3A5JjnoGJyOxfSZUZtk2rRwZ\"}"}', 'sonata'), - (1164028, '0xebd3c175f77ca98f0678b56c705d67c68064a17e', 0, 1, '2024-05-09 16:15:07+00', 100, 1, '{"fid": 335383, "object": "user", "pfp_url": "https://i.imgur.com/YYCIPvZ.png", "profile": {"bio": {"text": "Digital artist, curator, former VJ. I make art with old computers and video games since 2005. https://linktr.ee/vjentter", "mentioned_profiles": []}}, "username": "entter", "power_badge": true, "display_name": "entter", "active_status": "inactive", "verifications": ["0xf58d4bcf9bf4d30334dfed66d5d4db63147979b1"], "follower_count": 402, "custody_address": "0xb131eff303b6075b9c63c0e84c0f7c530d531062", "following_count": 518, "verified_addresses": {"eth_addresses": ["0xf58d4bcf9bf4d30334dfed66d5d4db63147979b1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3jy3AVBTWVb5Lw3uUnfY02?si=98672288842a4a1a\"}"}', NULL), - (1165122, '0xb0e2e05f9a8ee9dafba2e4e908eaaab8736471f0', 1000, 1, '2024-05-09 22:41:15+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 201, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 185, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4YUXQOeA0ep30SJ70XK8j1?si=lfVog7I7SsW2L7Gk0JPEZg\"}"}', 'trance'), - (1165085, '0x51b5d3977409102f1130e898a07fff69f8a12743', 1070, 1, '2024-05-09 22:22:29+00', 0, 1, '{"fid": 18570, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiews43un3cmkvbzhpepgfaqdgugjmj6vsymmbd3yh4xas4cs3wc5y", "profile": {"bio": {"text": "👨🏻‍🍳 Better cook than I look 👨🏻‍🍳 \n🧪 Dada scientist 🧪 \n📐 Student of design 📐 \n👾 👾 👾 👾 👾 \n\nco-hosting /ai-art", "mentioned_profiles": []}}, "username": "qt", "power_badge": true, "display_name": "daivd 🎩👾🧢🧾 ", "active_status": "inactive", "verifications": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "follower_count": 25602, "custody_address": "0xc4e4a021fef5b18fb0fd8c0ad91e34e246b614a8", "following_count": 1419, "verified_addresses": {"eth_addresses": ["0x198109b0d2c786a230d18b622d3b7a1946131e09"], "sol_addresses": ["B7k6RCuunXhqWNWunSL3PjZoEaHz6REtyJPW5i1cLRGV"]}}', '{"{\"url\":\"https://soundcloud.com/djdissolve/bbl-drizzy-house-remix\"}"}', NULL), - (1165151, '0x9b96dcdbcbd2df2f4e5eb725f11750a67e642040', 110, 1, '2024-05-09 22:46:32+00', 0, 0, '{"fid": 6852, "object": "user", "pfp_url": "https://i.imgur.com/yfusMnJ.jpg", "profile": {"bio": {"text": "Building @metasuyo & @cryptoamigos\nDecentralized Storytelling x Learning DAOs | Web3 for Impact", "mentioned_profiles": []}}, "username": "luisotravez", "power_badge": true, "display_name": "Luis Carranza Perales ", "active_status": "inactive", "verifications": ["0x003276c5c24cdaff1d804170ab5cbb914f51f78a"], "follower_count": 573, "custody_address": "0xffe3b6e81bfec4908d1a41fe6f20679aca0e2b8a", "following_count": 315, "verified_addresses": {"eth_addresses": ["0x003276c5c24cdaff1d804170ab5cbb914f51f78a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4KBtPMklVmUBJqpUrKP1Vf?si=82f3b408ddf64f73\"}"}', NULL), - (1164560, '0xc0534ef1e8cb4c4b18dd2dbb575df93bf67b3b90', 300, 1, '2024-05-09 18:55:09+00', 100, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 9404, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/233afe56-1a2d-4a1a-ac61-36c0aed81392\"}","{\"url\":\"https://www.sound.xyz/atrip/rainbow\"}"}', NULL), - (1165362, '0x32078b380e065dfe4f123350bbef53e9d56f994e', 0, 1, '2024-05-10 05:54:54+00', 3, 0, '{"fid": 394597, "object": "user", "pfp_url": "https://i.imgur.com/3wCLomw.jpg", "profile": {"bio": {"text": "Art School Dropout | Baggage Handler at 747 Airlines ✈️", "mentioned_profiles": []}}, "username": "jameecornelia", "power_badge": true, "display_name": "Jamee Cornelia✈️", "active_status": "inactive", "verifications": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "follower_count": 362, "custody_address": "0xa75cacaf502ade298af8293ab5a37ef380b3abbc", "following_count": 203, "verified_addresses": {"eth_addresses": ["0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0CcLOV6Em3yUTiKzTk2u0r?si=7b8186a14c814c25\"}"}', NULL), - (703501, '0x4c5eea897d96d448974c48499e8cba9373e49d49', 340, 1, '2024-05-06 18:14:59+00', 10, 38, '{"fid": 436542, "object": "user", "pfp_url": "https://i.imgur.com/7o4jU25.jpg", "profile": {"bio": {"text": "Looking for peace ful and life is still beautiful!!", "mentioned_profiles": []}}, "username": "samaneh7", "power_badge": false, "display_name": "Samaneh", "active_status": "inactive", "verifications": ["0x1f9a703dc158ebbfff31aca9cf1a50844d46f354"], "follower_count": 787, "custody_address": "0x1c21b727b00d5951c875dfb3d669c448da9e877e", "following_count": 825, "verified_addresses": {"eth_addresses": ["0x1f9a703dc158ebbfff31aca9cf1a50844d46f354"], "sol_addresses": []}}', '{"{\"url\":\"http://sound.xyz\"}"}', NULL), - (1165174, '0x74cd6aef8e1e460c69a8b246f833513269b5534f', 1000, 1, '2024-05-09 22:53:37+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 312, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 262, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6c0b71e4-2adb-48c8-cbc8-ace8f9e86000/original\"}","{\"url\":\"https://open.spotify.com/track/70HxNVlYQ0Hi6XqBtPLw80?si=7dpQP1LTSO-QORnRxu0NWA&context=spotify%3Aplaylist%3A4QnuDaBrxyobE8wumHZjqc\"}"}', 'chatbfg'), - (1176238, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291', 12311, 1, '2024-05-17 00:13:38+00', 50, 0, '{"fid": 17356, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp"}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 4315, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 500, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7K1xGdUNXv7UhttflCuQak?si=9LCW_VwaT5Gm9tQhFjga7Q\"}"}', NULL), - (1176243, '0x4e59a45212b11920d9834b02b68fb1ef80f96b11', 0, 1, '2024-05-17 01:00:53+00', 0, 0, '{"fid": 439718, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiatogl3vsefleap6g4vle75ojzjltqzzh6pon3i4ty4ximjxi2mzy", "profile": {"bio": {"text": "\"as long as you are alive, opportunities are limitless\" /cryptoninjas"}}, "username": "ssr", "power_badge": true, "display_name": "SSR 🥷🏼🎩", "active_status": "inactive", "verifications": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "follower_count": 900, "custody_address": "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "following_count": 835, "verified_addresses": {"eth_addresses": ["0x22b681aacdae8725a49109bf9fd34692a37efa51", "0x5a1a21e40eaff084fdc3401fc2630ab2f7a70878", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd", "0xfa173f55a61bd5292778d9daa13cd12b86cad1dd"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2QaGVG88GecS191u7\"}"}', 'bangers'), - (1165248, '0x1ae3c7eb82d94fd37111e0167166dc726131d6e4', 0, 1, '2024-05-09 23:48:27+00', 0, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 523, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6PG0nqeLDPKNzwYpKaCWgL?si=fS1Z88-eQcexK_AVVkG6Ng\"}"}', 'musicjp'), - (1165260, '0xe7ee921791a67b9956b5540d823603db521671ab', 0, 1, '2024-05-10 00:18:40+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1602, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":363197,\"hash\":\"0xfa86d5de8a1c3fc43dc0d240ecc3abe238fd9cd6\"}}","{\"url\":\"https://www.sound.xyz/bakergrace/coming-home-to-you?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'theblockexp'), - (1164514, '0xa6c3129b7191040c75f5c6251c53eb9f241a896c', 3430, 1, '2024-05-09 18:44:46+00', 110, 2, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 238, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 197, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/duodomusica/palomas-y-cordajes?referral_source=link\"}"}', 'soundxyz'), - (1165245, '0xa98d3cda624bef7e3e73ea8bffa23ed46f2f9d8b', 100, 1, '2024-05-09 23:23:13+00', 0, 5, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3706, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 288, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=32d5657988804728\"}"}', 'paidgroup'), - (1165267, '0xdf4d5f373965b0398b92cecab13240cd2d988d18', 210, 1, '2024-05-10 00:34:08+00', 10, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 472, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/softt_softt/waxahatchee-right-back-to-it-softt-edit-free-dl?ref=clipboard&p=i&c=0&si=57813DE5F42C40E6AB0F74F973A95778\"}"}', NULL), - (1165264, '0x151a3e74501690ac1307d9d6da2a7aeaf70f97e3', 1100, 1, '2024-05-10 00:29:34+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 472, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/softt_softt/waxahatchee-right-back-to-it-softt-edit-free-dl?ref=clipboard&p=i&c=0&si=57813DE5F42C40E6AB0F74F973A95778\"}"}', NULL), - (1165121, '0x77c24ecee30c62df0b230113c09ea495b46e210d', 10, 1, '2024-05-09 22:30:05+00', 10, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1596, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (1165261, '0xd613fb0ffc841a5163fd03f8e9358fa345c2f840', 2500, 1, '2024-05-10 00:26:52+00', 60, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3583, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/therhythmrights/pokemonbass-dj-seven-club-mix?ref=clipboard&p=i&c=0&si=942C8A32840A4906ADCD8D3163EF2E9C&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165290, '0xb5056e55de9e7bed8d18d4a4f9e568206914b17a', 0, 1, '2024-05-10 01:27:02+00', 0, 6, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3715, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 289, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/46WqYCJ3B0WMeKXIFZk79b?si=bwqevKKlRzujY7DvFrq8ZA&context=spotify%3Aplaylist%3A37i9dQZF1DZ06evO0ENBD3\"}"}', 'replyguys'), - (1165291, '0x35f92863b75416022539d1c750b35b7e49947ad2', 0, 1, '2024-05-10 01:41:56+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 473, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/moistbreezy/calling-lose-my-mind-moistbreezy-remix?utm_source=clipboard&utm_campaign=wtshare&utm_medium=widget&utm_content=https%253A%252F%252Fsoundcloud.com%252Fmoistbreezy%252Fcalling-lose-my-mind-moistbreezy-remix\"}"}', NULL), - (1176244, '0xbcc51b3dbfa7db1f0c354d2baee7dddd0ccc3bf0', 0, 1, '2024-05-17 01:00:10+00', 0, 0, '{"fid": 301144, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://occb0ofnixhvqbrv.public.blob.vercel-storage.com/images/cluwe1frh0035m42f95rtxe30.png", "profile": {"bio": {"text": "ProCrypto HR Professional and casual trader. /degentimes junior author. \n\nhttps://www.alfafrens.com/channel/0x4D9e0272"}}, "username": "itslemon.eth", "power_badge": true, "display_name": "itslemon.eth🔵🎩🧾🥷", "active_status": "inactive", "verifications": ["0xbdf82513b977e1bd329d20dac10dbd1a9d86fd4c"], "follower_count": 2806, "custody_address": "0xf9bb8de0facb9c6a5a62b0b8f2885ea33dd209cb", "following_count": 687, "verified_addresses": {"eth_addresses": ["0xbdf82513b977e1bd329d20dac10dbd1a9d86fd4c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7nnWIPM5hwE3DaUBkvOIpy?si=Sl5lbAplT3S6QPei6hfKPA\"}"}', 'bangers'), - (1165289, '0x407e6012c9fe43386b27f4172e9f55ad7178ee5c', 30, 1, '2024-05-10 01:24:32+00', 0, 0, '{"fid": 17354, "object": "user", "pfp_url": "https://i.imgur.com/MgTJtH5.jpg", "profile": {"bio": {"text": "having too much fun onchain", "mentioned_profiles": []}}, "username": "ariansh.eth", "power_badge": true, "display_name": "Caster Cat #648 🎩🧾", "active_status": "inactive", "verifications": ["0x2499bdf18e33eb830bcf0d1c1e47b7e0cca07071", "0x936b5afd222d63f01302348b7c4e61aa19ecb732"], "follower_count": 695, "custody_address": "0xf365c36f263523c8b389357f1aa426b46974d95c", "following_count": 420, "verified_addresses": {"eth_addresses": ["0x2499bdf18e33eb830bcf0d1c1e47b7e0cca07071", "0x936b5afd222d63f01302348b7c4e61aa19ecb732"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/marshmellomusic/ultra2016?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1165283, '0x11d419ac47e3b783eaddf5abdbea45b7c6283251', 1320, 1, '2024-05-10 01:13:57+00', 0, 0, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 695, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 344, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4yBsKFDacDTa4UuvtrTmpK?si=662232c645b041bd\"}"}', NULL), - (1165297, '0x35de66fbfec4ac7e41c19cc1030da5b5d524a095', 0, 1, '2024-05-10 02:15:46+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 475, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 159, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4WWmgRerNnd9PdaaqKFH40?si=uSRZp7ovSnmHjAKrsiZ7-g\"}"}', NULL), - (1165403, '0x97b3b145ca1b411582298126cced0fd3b82fe831', 0, 1, '2024-05-10 10:02:43+00', 1, 1, '{"fid": 10095, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6fe2684b-a804-4268-ef87-33883f377b00/rectcrop3", "profile": {"bio": {"text": "artist, curator, yogi 💗 hosting /itan-world and /pidgin 🌍 co-hosting /crystals 💎 https://linktr.ee/juujuumama", "mentioned_profiles": []}}, "username": "juujuumama", "power_badge": true, "display_name": "sierra folashade 🎩🍖", "active_status": "inactive", "verifications": ["0x657c1f8421ae93e88fb3171f019779e87b0263ca", "0xfd9bc4707961125f6becd693de62af68b5b51e4f"], "follower_count": 2862, "custody_address": "0x0d03a0431d26e6d17715445ea147cc3597b084cd", "following_count": 2018, "verified_addresses": {"eth_addresses": ["0x657c1f8421ae93e88fb3171f019779e87b0263ca", "0xfd9bc4707961125f6becd693de62af68b5b51e4f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3qH7uGwlgr7tmoL4ksRhPi?si=GNKjoCxTRGSZXIY5wPoqNQ&pi=u-XjJAUJkgQZyl\"}"}', 'pidgin'), - (1165420, '0xd99f5c6c6477d444618faa8fe13d971034d81e43', 0, 1, '2024-05-10 12:36:54+00', 0, 1, '{"fid": 5034, "object": "user", "pfp_url": "https://i.imgur.com/AEHOPBD.gif", "profile": {"bio": {"text": "tribune of the /replyguys 🗣️ cofounder @pageone", "mentioned_profiles": []}}, "username": "tervo", "power_badge": true, "display_name": "tervo🗣️", "active_status": "inactive", "verifications": ["0x2b2894d4d1e0233fdda02246371b9e37bb18e10d"], "follower_count": 16296, "custody_address": "0x56265eb6db0f3456d73af108e140b0fa11d79e79", "following_count": 1496, "verified_addresses": {"eth_addresses": ["0x2b2894d4d1e0233fdda02246371b9e37bb18e10d"], "sol_addresses": ["G9xnGF74uUqhoUuifnDEBGR6zpKkrcjp3h5CGLLy6ESa"]}}', '{"{\"url\":\"https://open.spotify.com/track/56efA4flKJ3mW9tGfIgcbD?si=l\"}"}', 'replyguys'), - (1165296, '0x8a257085383a877782b9d44f8e2da78406b64543', 5330, 1, '2024-05-10 02:11:20+00', 3, 0, '{"fid": 81, "object": "user", "pfp_url": "https://i.imgur.com/DIBzKEi.jpg", "profile": {"bio": {"text": "Founder @joinroyal & I also make electronic 🎵 FID 81", "mentioned_profiles": []}}, "username": "3lau", "power_badge": true, "display_name": "3LAU", "active_status": "inactive", "verifications": ["0x38b6b4387ff2776678e2b42f5eb2af4a452177d7", "0xc41d1f5fc64afcf6c999d1cef4f4ce1649d9653f"], "follower_count": 12698, "custody_address": "0x5ce63d1ea3dba0bdb375cbb41aa92039f18cd83d", "following_count": 213, "verified_addresses": {"eth_addresses": ["0x38b6b4387ff2776678e2b42f5eb2af4a452177d7", "0xc41d1f5fc64afcf6c999d1cef4f4ce1649d9653f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0MyiL5cx015TNjvYx9UgNu?si=dPLOFQydQxa9A2gZA5lrYA&context=spotify%3Aalbum%3A1in9gRnEh2oyr5CpkUdaF8\"}"}', NULL), - (1165313, '0xecff0cdf70869356a40fdf200bdc8d95e8cfb97a', 0, 1, '2024-05-10 03:27:26+00', 0, 0, '{"fid": 191326, "object": "user", "pfp_url": "https://i.imgur.com/e9Gba3p.png", "profile": {"bio": {"text": "Building Onchain Arcade Shits like @triviatech, @DoubleBubble_gg, @farme-club, and #cryptoludens.", "mentioned_profiles": []}}, "username": "0xtouyan.eth", "power_badge": true, "display_name": "0xTouYan at FarCon 2025 Tokyo", "active_status": "inactive", "verifications": ["0xf5709071a0ae5c03d03e90ca9da5b82956354cbc"], "follower_count": 265, "custody_address": "0xc327bdc72944140cc84c691b05f82d2e4b42e36d", "following_count": 351, "verified_addresses": {"eth_addresses": ["0xf5709071a0ae5c03d03e90ca9da5b82956354cbc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3T2LUDcZRrOnYzV1FprZTy?si=Nt2QSyHWTGm4v1yS-n9Oiw\"}"}', NULL), - (1165384, '0xb59d081341e2615a9be3777fb4513be74b89f501', 0, 1, '2024-05-10 06:40:04+00', 0, 1, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 4573, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 362, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6XjDF6nds4DE2BBbagZol6?si=a0b6417715cc4a81\"}"}', 'bangers'), - (1165405, '0xa0323a92bc26e840ed5b98e61de5818577505f94', 0, 1, '2024-05-10 10:49:25+00', 1, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 29829, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/32TTewBmtmhUmYxS1ajqaJ?si=8TPS8_PlReqJlycOhHuVnA\"}"}', NULL), - (1165314, '0x75bae3b0fc71d4c45af8b7d6641d5aac31086680', 0, 1, '2024-05-10 03:27:55+00', 0, 0, '{"fid": 8248, "object": "user", "pfp_url": "https://i.imgur.com/Me01e8c.png", "profile": {"bio": {"text": "BD and GTM for clients in web3 | retired content creator and crypto researcher | ex shitposter @ linkedin.com/in/mitko-wtf", "mentioned_profiles": []}}, "username": "mitko", "power_badge": true, "display_name": "Mitko", "active_status": "inactive", "verifications": ["0x4af749e6bec96913a968fc76e3de2fd8d95c6d06", "0x01e90e074c85e239a37a3a41b882a3f9c3f15b26", "0x39ae92854b6efb97d907af2837490aa306c058e4"], "follower_count": 236, "custody_address": "0xa019d479f45985fd7ba8cd4728768ab2a1ce85a3", "following_count": 184, "verified_addresses": {"eth_addresses": ["0x4af749e6bec96913a968fc76e3de2fd8d95c6d06", "0x01e90e074c85e239a37a3a41b882a3f9c3f15b26", "0x39ae92854b6efb97d907af2837490aa306c058e4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3wcDP3lk1Xp1s3EoTVanaA\"}"}', NULL), - (1165315, '0x5c2c8bac744155ef54919a1ad1d05ef57d206ae9', 0, 1, '2024-05-10 03:33:20+00', 0, 0, '{"fid": 7464, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/27c95e37-2ca2-4032-e866-90bc3d2bbd00/rectcrop3", "profile": {"bio": {"text": "CVO | guitarist, songwriter, art enjoyoor extraordinaire 🎸@Wakefield | making /demo | holler at a player if you see him in the streets ", "mentioned_profiles": []}}, "username": "spitfunkolips", "power_badge": true, "display_name": "spitfunkolips🎩", "active_status": "inactive", "verifications": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "follower_count": 2950, "custody_address": "0xe1b5dec4da876ca281ffe750fa136cc07314ba0c", "following_count": 951, "verified_addresses": {"eth_addresses": ["0xf43b2be4aa887f426f05f78604b364af667c608d"], "sol_addresses": ["ErnvsV8C7GNLjog5FX1km5NpaGfoWDrzbYpYLX91XQQ1"]}}', '{"{\"url\":\"https://open.spotify.com/track/7k5pV90xRtvjA6Y0s4xZeC?si=HGTXf45_RoG9VrqRnIWLRQ\"}"}', 'albumoftheday'), - (1176245, '0x7e973f1112730a5b06d932cce68a7872b8190a88', 2000, 1, '2024-05-17 01:31:54+00', 0, 0, '{"fid": 423457, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/8abd6db3-3a4c-4ec8-b942-dafa72e03f00/original", "profile": {"bio": {"text": "Reply guy.\nDegen.\nPokémon Trainer.\nLOZ fan.\nI build gunpla on the side.\n/imo"}}, "username": "ogerpon.eth", "power_badge": true, "display_name": "Ogerpon.eth🎩🫂🧾 ", "active_status": "inactive", "verifications": ["0x878a39c06e3494f03e1531b5bfce942afd50d585", "0xcb65eb6e9c48d110c02f89d3c9a13255f5f865a6"], "follower_count": 388, "custody_address": "0x9bfb256e91154069ed6ea89af28dd1ed9579e793", "following_count": 565, "verified_addresses": {"eth_addresses": ["0x878a39c06e3494f03e1531b5bfce942afd50d585", "0xcb65eb6e9c48d110c02f89d3c9a13255f5f865a6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4ldhC24MJCtvTmL54X92xi?si=wcGmrnk9TfSzBkxnL2StbA\"}"}', 'sonata'), - (1165319, '0xcc2b6e9e970f538377362ae8e022abd20af14bde', 0, 1, '2024-05-10 03:53:05+00', 0, 0, '{"fid": 466688, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeib4fu3alvtz5jpvzsna7ic2oxebxdxlay2gvwvzdi3vjhf2a2zjau", "profile": {"bio": {"text": "Web 3 degen since the first cardano pump and dump. Specialize in memetics and over-invested in /base.", "mentioned_profiles": []}}, "username": "cryptim.eth", "power_badge": true, "display_name": "Tim", "active_status": "inactive", "verifications": ["0xee22b2cad0598df173099581ddec2c8b393152c3"], "follower_count": 484, "custody_address": "0xb89240e4cca9cbe6b47fe4d749d4c0d8e93d9e19", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xee22b2cad0598df173099581ddec2c8b393152c3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb8a6942-bd9d-4cc8-6ffd-e8ca9a655500/original\"}","{\"url\":\"http://sound.xyz\"}"}', NULL), - (1165320, '0xd5aef0e2873d943e61f9d6ef9ac126379e9c3618', 0, 1, '2024-05-10 03:56:32+00', 0, 1, '{"fid": 296207, "object": "user", "pfp_url": "https://i.imgur.com/7sZisKv.gif", "profile": {"bio": {"text": "Painting narratives through the arts of cinematography and sound.\n‏‏‎ ‎‎\nlynkfire.com/jeffmihaly | host /cinematica", "mentioned_profiles": []}}, "username": "jeffmihaly", "power_badge": true, "display_name": "Jeff Mihaly 🎞🎼🎩", "active_status": "inactive", "verifications": ["0x08e0a3e752d1338c0f02b986b9504f1009a962ca"], "follower_count": 3063, "custody_address": "0xd6f7a23d45b80c5eca9696575ad8088092458587", "following_count": 469, "verified_addresses": {"eth_addresses": ["0x08e0a3e752d1338c0f02b986b9504f1009a962ca"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6DHYWelHYuynVVPv2m58wl?si=ab8af09b47ed4e63\"}"}', 'soundtracks'), - (1165324, '0x3a6cf53b545f41ae39112913ec3f7a0b04d412de', 0, 1, '2024-05-10 04:09:53+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6HTjqv0AsiZ34fOMcGCbSX?si=RLZS9pcxRqq48LoImNKa3g&context=spotify%3Aalbum%3A00Z9OpzSflzHQuKMrR315g\"}"}', NULL), - (1165323, '0x462257c8b4b40d62513febbae498e795e6c03f5e', 0, 1, '2024-05-10 04:07:51+00', 50, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0n4nfjCluBECewuD3Z4Agq?si=O-AokbDzTZuE4BN3sotXKw&context=spotify%3Aalbum%3A6mlqVMvvdPMNr0Ec6CJAV8\"}"}', NULL), - (1165322, '0x459b4e50f94092daf5d054090e736f967f41c46b', 0, 1, '2024-05-10 04:06:22+00', 100, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3tUwmCcdunuXKwHu8u2aBn?si=sr8TfjNUT0uTY9VkPnEDfA&context=spotify%3Aalbum%3A0oXRheajSwu5UTpcDzloop\"}"}', NULL), - (1165329, '0x96bcea0000cbfea64eed0a2a4090314da5a55aeb', 1000, 1, '2024-05-10 04:12:20+00', 0, 7, '{"fid": 18262, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d18adbfc-1bd6-4bab-0887-858288a92900/rectcrop3", "profile": {"bio": {"text": "max bidding vibes and replies /replyguys\n\nlore /4you", "mentioned_profiles": []}}, "username": "droo4you", "power_badge": true, "display_name": "droober🍖🗣️🎩☮️🧾", "active_status": "inactive", "verifications": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "follower_count": 2406, "custody_address": "0x3a38f04a1b56ded7d9c7548a4c6fb206235ca8aa", "following_count": 795, "verified_addresses": {"eth_addresses": ["0xc1cbfd0f49450878c074e3935554002201db3235"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/54DvEccR0kKBdrGPbBnWai?si=5Qj6gD91QleY1JQq52p3nA&context=spotify%3Aplaylist%3A37i9dQZF1EJBunpgRZichH\"}"}', 'replyguys'), - (1165321, '0xc934ea8c1e3a8c4704bbafa9a3f49bfe05e17688', 100, 1, '2024-05-10 04:04:59+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Na2HfNSr58chvfX69fy36?si=nXjj4kSXTcKJ-wqS8ViPOw&context=spotify%3Aalbum%3A7g0PJ7VbsOkYTECUFkyNPN\"}"}', NULL), - (1165309, '0xcce920ac5094ff3d081e55c43e89d7f424a6e8e4', 1210, 1, '2024-05-10 03:12:20+00', 0, 1, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 698, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/user-356037249/rec008-wav?si=81f9b976f2a8443b88fb97b8172eaf91&utm_source=clipboard\"}"}', NULL), - (1165354, '0xa40c1ec52f5f40dcb858e2fa794060ff665b75eb', 0, 1, '2024-05-10 05:15:26+00', 0, 1, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1pyICTBf3mMbtiuZxGyEWi?si=jHODKeF3SqWx78AxFWnnyg&context=spotify%3Aalbum%3A5bOeYTfl6WokPMJj3454O4\"}"}', NULL), - (1165357, '0x2193a8c67b0399b927d71201074d63ba4ad35b5f', 0, 1, '2024-05-10 05:16:27+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3ok8eAQioOTORzkuJ8pHZk?si=ZBJSjBV9SWmuKlFJRT3bVg&context=spotify%3Aalbum%3A65scBPZ6DNuKCjcQkeJnjB\"}"}', NULL), - (1165358, '0x9779b2446b1868e6cec72b42d06c04048bff2ad9', 0, 1, '2024-05-10 05:17:33+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3VsLdQ9MA9Tf316U50sN34?si=XrPdXSxRQ-qt2quPK5bSTQ&context=spotify%3Aalbum%3A6vVP6djBQD80GHolXulYXX\"}"}', NULL), - (1165359, '0x68887ea40f3a8f03ffe7166d6918a03350eadfe0', 0, 1, '2024-05-10 05:18:19+00', 3, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/43ZEiGYEJ5vcmjlBwanwyW?si=kqH9YgxcT_S1DPAi1t7kBw&context=spotify%3Aalbum%3A1cdHnVkU4QloSiH06bI8pA\"}"}', NULL), - (1165355, '0x8c9284bc78311117730fc6f9171d2fdcb84eedae', 1000, 1, '2024-05-10 05:15:01+00', 50, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3587, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/helblinde/supercell-hoshi-ga-matataku-1?ref=clipboard&p=i&c=0&si=D27D7D4E74DD4605A0DCD3CB2C77B230&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165356, '0x023e44bdb33a0f8e821ba381d53f196759f86fcd', 1000, 1, '2024-05-10 05:14:40+00', 0, 1, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/440pYTQHy7OV9gxIkzycpC?si=_RsMN1YMQb67-k2UEILTCQ&context=spotify%3Aalbum%3A67S9NST1Ljvfy95oVX45XN\"}"}', NULL), - (1165361, '0x30bb9ce28d22d3006f1721ef2bb9c37fa64a49ea', 0, 1, '2024-05-10 05:34:09+00', 3, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 479, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7tNMEibLsJeIX7vjQoRg50?si=Wc0ZEW19QMOex_HZcvg4fw&context=spotify%3Aalbum%3A7jhb1YZYcN9ASFAab2YmP5\"}"}', NULL), - (1176273, '0x7a00c6632b05572389da7ba3ef5c815bc8d08d80', 3111, 1, '2024-05-17 02:14:11+00', 0, 0, '{"fid": 17507, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/QuGGLaR.jpg", "profile": {"bio": {"text": "enjoy crypto\nFID : 17507"}}, "username": "cryptonomori.eth", "power_badge": true, "display_name": "cryptonomori 🎩", "active_status": "inactive", "verifications": ["0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5", "0xe15c7575b6efa56ec9355e36fba650cdc92738b5"], "follower_count": 3975, "custody_address": "0xc77943cb5e6127e9af06baece3c58b2df18d7f11", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5", "0xe15c7575b6efa56ec9355e36fba650cdc92738b5"], "sol_addresses": ["6wCArP7GvQPF1dDPakpAPfr8ubifpmEZqkCB8m1YV1ib"]}}', '{"{\"url\":\"https://open.spotify.com/track/08tZmvbJ0fB0eSBpiY9IGb?si=J7kJ1cbOROSASooYS8dFhw\"}"}', NULL), - (1165360, '0x80f0ab0df8f56acd91471159b1e88c7d21bbba9c', 0, 1, '2024-05-10 05:29:38+00', 3, 1, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2345, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 741, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/17rhDgnYYryQU4uS71ZxFu\"}"}', 'musicjp'), - (1176274, '0xdca8f41ad3d38a6b78d635e7eddeaa15e3bd1e6b', 0, 1, '2024-05-17 02:17:43+00', 0, 0, '{"fid": 10123, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/C86LCsP.png", "profile": {"bio": {"text": "Former Tradfi turned Defi, Web3, crypto, DePIN, NFT, blockchain advocate, investor, founder and evangelist. \n\nhttps://linktr.ee/hilgi"}}, "username": "hilgi", "power_badge": true, "display_name": "Mark Hilgenberg ", "active_status": "inactive", "verifications": ["0x50763add868fd7361178342fc055eaa2b95f6846"], "follower_count": 481, "custody_address": "0x415dfb7355cf2f79a100ac9ed7db2acb8cc71464", "following_count": 425, "verified_addresses": {"eth_addresses": ["0x50763add868fd7361178342fc055eaa2b95f6846"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3edXLmc4WGO8r2g5gjh0Ux?si=cd9379ef70ab4a0c\"}"}', NULL), - (1165353, '0x83e386401f40005c55de8c7562b01f9d9da4a374', 0, 1, '2024-05-10 05:12:34+00', 3, 0, '{"fid": 13077, "object": "user", "pfp_url": "https://i.imgur.com/NwgqZfI.jpg", "profile": {"bio": {"text": "Writer | Book lover | Weeb | Walking coordination failure\n| Marketing /subsquid | Enjoyer of /classical music and /postcards", "mentioned_profiles": []}}, "username": "naomiii", "power_badge": true, "display_name": "Naomi ", "active_status": "inactive", "verifications": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "follower_count": 2578, "custody_address": "0x523882b3d8ff12ec24c3a55403ffed32632bfdbc", "following_count": 337, "verified_addresses": {"eth_addresses": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1PINN6x0Riouab3wPSglpp?si=BF6SUfagQcOWYRu7DCPoIw\"}"}', NULL), - (1165383, '0xa526f882c9e2eff19e8c868839c08dbebb1840cc', 0, 1, '2024-05-10 06:22:17+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 480, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3X7wVYr4XpzGgoXmQVnrJo?si=EItESf2BTI6wHwspTBtMRg\"}"}', NULL), - (1176275, '0x4811f792fd1eea9f6f7effdac32aafe4db2096df', 0, 1, '2024-05-17 02:19:21+00', 0, 0, '{"fid": 10123, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/C86LCsP.png", "profile": {"bio": {"text": "Former Tradfi turned Defi, Web3, crypto, DePIN, NFT, blockchain advocate, investor, founder and evangelist. \n\nhttps://linktr.ee/hilgi"}}, "username": "hilgi", "power_badge": true, "display_name": "Mark Hilgenberg ", "active_status": "inactive", "verifications": ["0x50763add868fd7361178342fc055eaa2b95f6846"], "follower_count": 481, "custody_address": "0x415dfb7355cf2f79a100ac9ed7db2acb8cc71464", "following_count": 425, "verified_addresses": {"eth_addresses": ["0x50763add868fd7361178342fc055eaa2b95f6846"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1uVSJkagOwtgMmeexAp1hg?si=d4aca0592d4e438d\"}"}', NULL), - (1165379, '0x452e892d544ebf89d40154a55ca0f3cc9b9742dd', 1010, 1, '2024-05-10 06:05:02+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: Blurred Lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 480, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 160, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/rinsefm/jyoty020524\"}"}', 'blurred-lines'), - (1165402, '0xca3e6c7264058a4631095ca73f4221461388e7cd', 1000, 1, '2024-05-10 09:43:38+00', 1, 0, '{"fid": 5932, "object": "user", "pfp_url": "https://i.imgur.com/jmkjX5y.jpg", "profile": {"bio": {"text": "musical persona simulation 🤖❤️🎵\nhvdson.com", "mentioned_profiles": []}}, "username": "hvdson", "power_badge": true, "display_name": "hvdson", "active_status": "inactive", "verifications": ["0x376275c4f9e4fffd8a89a90852f253f8e3373f67"], "follower_count": 194, "custody_address": "0x3c23e15cf8b66e1ff22c1b19d97c396034a38ce4", "following_count": 219, "verified_addresses": {"eth_addresses": ["0x376275c4f9e4fffd8a89a90852f253f8e3373f67"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/77df798ae8b98faf6abd38e4678f3051.m3u8\"}","{\"url\":\"https://on.soundcloud.com/qMqxTW45G94wDVKT8\"}"}', NULL), - (1165404, '0x4889e34c8cbf8c76b13db713dc1a63ebbe95d11c', 100, 1, '2024-05-10 10:19:54+00', 101, 0, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full stack artist 🖌️⚡️🎵\nBuilding ORIGIN STØRIES a creative tech studio (FIB, VPM , REFUSES)", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 684, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/wXpucSVGDfMdjPzb7\"}"}', 'sonata'), - (1165401, '0xbcabffcba3fa544f9932929b5669da01cc6d9860', 0, 1, '2024-05-10 09:36:52+00', 1, 0, '{"fid": 422559, "object": "user", "pfp_url": "https://i.imgur.com/bzqkQ88.jpg", "profile": {"bio": {"text": "/bugs are friends 𓆨𓆣ᯓᡣ𐭩 \n\n\nhttps://objkt.com/@katipo", "mentioned_profiles": []}}, "username": "katipo", "power_badge": true, "display_name": "katipo 𖦹 ", "active_status": "inactive", "verifications": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "follower_count": 264, "custody_address": "0xbb9cf53b77147b6c4f643a71f9a11bfad879a2b9", "following_count": 227, "verified_addresses": {"eth_addresses": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1OJxI8lIWRqBvouJxW1nzN?si=Sow6wvSsR2GX9JzHrJgOcQ\"}"}', NULL), - (1165395, '0xfaa38be1086dae5160fee26f9bab1f4dce96d06e', 0, 1, '2024-05-10 08:34:34+00', 1, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 524, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 455, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1wm0WKsYYhMEaxHv7yWzL8?si=64Axl2IkQ7-Cg3WpPk_4qQ\"}"}', 'musicjp'), - (1165421, '0x9e70cea84791776ac0dd2b14a0ee379853643c4d', 0, 1, '2024-05-10 12:42:26+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 615, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 270, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":2,\"hash\":\"0xd4b595f1a977462765f69f1df68cbd6033f451de\"}}","{\"url\":\"https://open.spotify.com/track/2WJZbgO6DneYvEjyDfYJN1?si=Dx1xsw7cR62-1Dxi2uoM0A&context=spotify%3Aalbum%3A6DUg51ztkBdt5PvUAV7Rod\"}"}', 'nowplaying'), - (1165422, '0x14e4cc7d21f459ab77f96bcc168eb2b90d96e569', 0, 1, '2024-05-10 12:51:44+00', 0, 0, '{"fid": 10971, "object": "user", "pfp_url": "https://i.seadn.io/gae/5Y51u8vlx73mQj6R7jObpdvC9nkdAIeMul8ErYUjbXEYC8luNtZs-nniFBATubJHAMv3HtA_G76IG5yDopU9sW9OtKDSoW0gm4TXvxA?w=500&auto=format", "profile": {"bio": {"text": "@usv | jared.xyz | formerly founder of groupme and fundera ", "mentioned_profiles": []}}, "username": "jaredhecht.eth", "power_badge": true, "display_name": "Jared Hecht", "active_status": "inactive", "verifications": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "follower_count": 304, "custody_address": "0xe363817e3eb0f4c3d5628142b63ea7b275a4491b", "following_count": 101, "verified_addresses": {"eth_addresses": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3lB31lvF4GEwKwMgFWwCJ7?si=wsrL4DZwTYmidt6IIY-W1g&context=spotify%3Aplaylist%3A37i9dQZF1EQn2GRFTFMl2A\"}"}', 'soundscapes'), - (1165394, '0x55fffffe65b0a0c5c2c1e156a338f0506e01cc7d', 0, 1, '2024-05-10 08:17:18+00', 100, 0, '{"fid": 276109, "object": "user", "pfp_url": "https://i.imgur.com/tyIEtsV.jpg", "profile": {"bio": {"text": "lens based light bender | hosting /lightlounge 🔦✨\nlinktr.ee/gabriellamorton", "mentioned_profiles": []}}, "username": "gabriellamorton", "power_badge": true, "display_name": "ella", "active_status": "inactive", "verifications": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "follower_count": 515, "custody_address": "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57", "following_count": 394, "verified_addresses": {"eth_addresses": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0syxBXqvW4MhO3yYGcxkuw?si=468179c29eb142c2\"}"}', 'sonata'), - (1165429, '0xc59a138ba8e41b1e10368b7b503d1b7bc5b55ad1', 0, 1, '2024-05-10 13:52:48+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3404, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 626, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":398596,\"hash\":\"0x48706c6ec0eec82302178c70e234717bf37e075e\"}}","{\"url\":\"https://open.spotify.com/track/0suLmBuEbatdochI4tHduq?si=764b4e46bbd84b78\"}"}', 'campfire'), - (1165427, '0x2819ce9b629d1c86d29e30260b7d0373a4b4f5f3', 1100, 1, '2024-05-10 13:24:15+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 29895, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/72xUfYlx9miurK20KXgQrq?si=a5htWrf4Qr-XCNvA1pJbUg&context=spotify%3Aplaylist%3A37i9dQZF1E8O5zs0U5XR5k\"}"}', NULL), - (1165432, '0x7a882ce0515b5dac013ae77e644d5da7aac2a83d', 200, 1, '2024-05-10 14:12:18+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 209, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 190, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6kooDsorCpWVMGc994XjWN?si=R2hSMuFNSqSlv0oLPjg_GA\"}"}', 'btw'), - (1165434, '0x398397bf5632157c33ce59de918df666f2406126', 1000, 1, '2024-05-10 14:21:02+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1641, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'soundxyz'), - (1173201, '0x85a96af993457b6e0823dd0aba16b0bd966168c7', 3000, 1, '2024-05-15 09:04:30+00', 0, 16, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a0633ede", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2933, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2242, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gp7QETSvwvuUrSXw8\"}"}', 'sonata'), - (1173104, '0xd837ea615dfc4443ebeee9e678202bf035cb1c81', 3110, 1, '2024-05-15 01:42:55+00', 0, 0, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 279, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/09jscLcwa4usINbtfzo5FL?si=JrFEfwesTDG84qauoaDwPg&context=spotify%3Aalbum%3A0SeTonJJPjy57LqiCDmeEM\"}"}', 'albumoftheday'), - (1176271, '0x98a5948cbc6647ecf32a7e79533ac1320528f137', 2080, 1, '2024-05-17 01:58:04+00', 100, 0, '{"fid": 291942, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas"}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2813, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 786, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0iH86XIUAfiMdToNLI0sLq\"}"}', 'sonata'), - (1165435, '0x82e4ed365cda4c9d0f4da8c42170dcd7982e0b88', 220, 1, '2024-05-10 14:30:59+00', 0, 0, '{"fid": 201043, "object": "user", "pfp_url": "https://i.imgur.com/UyDS3lo.jpg", "profile": {"bio": {"text": "Artist | Listen to ‘Libre’ 🪽🎶 https://open.spotify.com/track/7gSBx3QBKkIK2X5XMQAzTJ?si=myiR_yvNR3mT3uUSxfLsZA&context=spotif", "mentioned_profiles": []}}, "username": "iamlosi", "power_badge": true, "display_name": "Losi🎩🎤", "active_status": "inactive", "verifications": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "follower_count": 377, "custody_address": "0x9d6e47eaa5f4b44b83827fc97e7a8e157b3f2386", "following_count": 197, "verified_addresses": {"eth_addresses": ["0x10c163364fe153cadf6532a5b34481eefb99d96d"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/losi/libre?referral_source=link\"}"}', NULL), - (1165439, '0xee3dce7d19cdfb7ad8b80b0590c525f2ca683ae9', 0, 1, '2024-05-10 14:37:35+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3409, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1bayldynRCc4z9ywAmV8uo?si=8e593897d89c4ab5\"}"}', 'campfire'), - (1165443, '0xf8710fa28b6abb03fff0b3be5ca07a92cda3a3ca', 0, 1, '2024-05-10 14:52:01+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3409, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3DnVO6Fc2Op0KlcouTaD0K?si=37abaeca72714f5f\"}"}', 'campfire'), - (1165446, '0xb1fa4d75ac09f99bb1a3711f98a5683fa5165e12', 0, 1, '2024-05-10 15:00:45+00', 0, 0, '{"fid": 210744, "object": "user", "pfp_url": "https://i.imgur.com/SZ0Bftg.gif", "profile": {"bio": {"text": "scape.radio", "mentioned_profiles": []}}, "username": "bxb", "power_badge": true, "display_name": "Bxb🎩", "active_status": "inactive", "verifications": ["0xe6922d3ca96e64b48ed9bfecc5b961de8c58be54", "0xf4b74f373c351b76a2de23f542ecc548fbc4a106"], "follower_count": 1896, "custody_address": "0x6491c1a3c5415f479ee2f2ff01f59e10278981fa", "following_count": 702, "verified_addresses": {"eth_addresses": ["0xe6922d3ca96e64b48ed9bfecc5b961de8c58be54", "0xf4b74f373c351b76a2de23f542ecc548fbc4a106"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7ddVpLW467CLYffbPRQNmH?si=48ce6e0d2d38431a\"}"}', NULL), - (1165445, '0xb0421da6333e6cd7befa4b668d581076a3e65531', 100, 1, '2024-05-10 14:58:05+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3409, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/56rgqDNRIqKq0qIMdu7r4r?si=58c7317ed0c1485e\"}"}', 'campfire'), - (1165441, '0x815ff053d0e970d7951992be29a1ef013a20374d', 5010, 1, '2024-05-10 14:42:08+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3409, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 628, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4IL7XG68Hh95OORQSequaq?si=7539395908da490f\"}"}', 'campfire'), - (1165442, '0xcee531fa76e313b9c06b03e77db511fe6780efc1', 1000, 1, '2024-05-10 14:51:51+00', 0, 1, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2325, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 923, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/531ce1f9-a4f0-4030-952e-469695f14800/original\"}","{\"url\":\"https://soundcloud.com/muddypal/rosso?si=948734c4c2bf44f6ba54f8a55860cb51&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165451, '0xcf0230e8cf5633aef6598bb6921544c028b56164', 0, 1, '2024-05-10 15:17:40+00', 0, 0, '{"fid": 9710, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/54f9c527fd81c5ac0a8c0eb316f1de15.jpg?w=500&auto=format", "profile": {"bio": {"text": "coinbase engineer. levity enjoyer", "mentioned_profiles": []}}, "username": "mbar", "power_badge": true, "display_name": "Matthew Barton", "active_status": "inactive", "verifications": ["0x4fe4f54474fd3b1196bf865ae59021bf8b6eb1c9"], "follower_count": 949, "custody_address": "0x2d04d33262f9babecbed1161ae5290273c4c6edc", "following_count": 402, "verified_addresses": {"eth_addresses": ["0x4fe4f54474fd3b1196bf865ae59021bf8b6eb1c9"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4sIFi8LpJWPvI5xviWFyA6?si=ddXyuZ5HQciW_zYGqQsdJg&context=spotify%3Aalbum%3A2MASm01cgG0a0CgioQpe6Q\"}"}', NULL), - (1165452, '0xc3a0cb38fe17fa793f2d569a9a3a937c8e0d2a31', 0, 1, '2024-05-10 15:25:18+00', 0, 0, '{"fid": 263664, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3d865e2-466c-4435-6114-efde80725b00/rectcrop3", "profile": {"bio": {"text": "A forever /replyguy and host of /casting-couch", "mentioned_profiles": []}}, "username": "oppai", "power_badge": true, "display_name": "Oppai🍓", "active_status": "inactive", "verifications": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "follower_count": 3488, "custody_address": "0x3fd57eea6e0b65c3010f050a96fe962ff3e5a3ce", "following_count": 1834, "verified_addresses": {"eth_addresses": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "sol_addresses": ["Ct9p9bbUxinAwTQu3nfSdnyS8NQHypcTfxTpW32zh1T8"]}}', '{"{\"url\":\"https://open.spotify.com/track/4N20NYwhJRArlzEhdCKXka?si=W56DtjC8RJqeQtDTUxYmPQ\"}"}', NULL), - (1176289, '0x9281fca40e2aab7d6ed841632f103ae19715a137', 2111, 1, '2024-05-17 02:58:19+00', 100, 0, '{"fid": 291942, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas"}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2817, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 786, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5cuM5ejQpKz5dz8OhPHC5W\"}"}', 'housemusic'), - (1165455, '0xb514e9c55202b1a13d7373c765a100188aaea28d', 100, 1, '2024-05-10 15:32:49+00', 14, 0, '{"fid": 296737, "object": "user", "pfp_url": "https://i.imgur.com/011H0Mz.gif", "profile": {"bio": {"text": "Certified /rad\n⟐ Asking questions in /how & /why", "mentioned_profiles": []}}, "username": "duderad.eth", "power_badge": true, "display_name": "𝙍𝘼𝘿 🎩 ", "active_status": "inactive", "verifications": ["0x76d018a493e9795d6a6331b0bb6472977319638b", "0xcfe909e0071c6d6da0c24451d1db53609ddb8e1c", "0x237b60f29fad79dd1fdfdeecae16bd3237f87213", "0x327c009254dcb7fb15b006227a01d9d62fc09d1b"], "follower_count": 4134, "custody_address": "0x668442cc8b30add039aa547c225abd9c838d7bbf", "following_count": 763, "verified_addresses": {"eth_addresses": ["0x76d018a493e9795d6a6331b0bb6472977319638b", "0xcfe909e0071c6d6da0c24451d1db53609ddb8e1c", "0x237b60f29fad79dd1fdfdeecae16bd3237f87213", "0x327c009254dcb7fb15b006227a01d9d62fc09d1b"], "sol_addresses": ["FuCVTeUzsLDTK9vt1MDRGjRzPRHT3puDLQ8UdFUt7vNa"]}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3\"}"}', 'bangers'), - (1165450, '0xf0dd5baeb46dac687e8f34f02dbb3ccdfb7c9786', 0, 1, '2024-05-10 15:17:27+00', 100, 0, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3755, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1751, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/2o9qbaukqx7w/iu-friday-feat-yijeong-of?si=593a6b279e56462bb63f95d0c3b107b2&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165390, '0xdcb405d6d94e84a761d158342a96ae99f469ef92', 1100, 1, '2024-05-10 07:24:57+00', 1, 2, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2350, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 742, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/18NMAVI9m0AvjrAqQx9vXH\"}"}', 'degen-japan'), - (1165466, '0x2bdab1ef3f655ad94342b61febbc5dc7791ba88a', 0, 1, '2024-05-10 16:30:16+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: /blurred-lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 487, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 164, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7tmgmrJYAGshsUHUNWPMlO?si=JlGcHgtJRKu-N2ZzBQaOxg\"}"}', NULL), - (1176290, '0xd4f7293cad1f938f0bc315b907e683c0916a966f', 14030, 1, '2024-05-17 03:02:24+00', 101, 0, '{"fid": 17507, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/QuGGLaR.jpg", "profile": {"bio": {"text": "enjoy crypto\nFID : 17507"}}, "username": "cryptonomori.eth", "power_badge": true, "display_name": "cryptonomori 🎩", "active_status": "inactive", "verifications": ["0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5", "0xe15c7575b6efa56ec9355e36fba650cdc92738b5"], "follower_count": 3975, "custody_address": "0xc77943cb5e6127e9af06baece3c58b2df18d7f11", "following_count": 882, "verified_addresses": {"eth_addresses": ["0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5", "0xe15c7575b6efa56ec9355e36fba650cdc92738b5"], "sol_addresses": ["6wCArP7GvQPF1dDPakpAPfr8ubifpmEZqkCB8m1YV1ib"]}}', '{"{\"url\":\"https://open.spotify.com/track/3NRWNmJG4AiHeFjPjNLOc0?si=BQCEq3S2SkaOzdhcHe1-aw\"}"}', NULL), - (1165456, '0x68e8e8a42500bf4f780d4dbb94163716622248b8', 100, 1, '2024-05-10 15:34:00+00', 1, 0, '{"fid": 263664, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b3d865e2-466c-4435-6114-efde80725b00/rectcrop3", "profile": {"bio": {"text": "A forever /replyguy and host of /casting-couch", "mentioned_profiles": []}}, "username": "oppai", "power_badge": true, "display_name": "Oppai🍓", "active_status": "inactive", "verifications": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "follower_count": 3488, "custody_address": "0x3fd57eea6e0b65c3010f050a96fe962ff3e5a3ce", "following_count": 1834, "verified_addresses": {"eth_addresses": ["0x0260d1d864e9a8864ae0d0e42245729a1b232ae6"], "sol_addresses": ["Ct9p9bbUxinAwTQu3nfSdnyS8NQHypcTfxTpW32zh1T8"]}}', '{"{\"url\":\"https://open.spotify.com/track/42VsgItocQwOQC3XWZ8JNA?si=91vV0lTwRBOjx25jXSBwRQ\"}"}', NULL), - (1165475, '0x9f8c518dba0392c901239d4adf9f4072144f2842', 1000, 1, '2024-05-10 16:40:31+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 29948, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3iHrGCUXfZ4BoOy615Ydbk?si=OG_1ZZhxRFKU_mtfTQGSvQ\"}"}', NULL), - (1165468, '0x5a93841d54c2b439475ab11dcff1cc0b3bc6cbc7', 1000, 1, '2024-05-10 16:30:46+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 and /downshift ⚙️", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3412, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 631, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5zpwNK99io4P6geNdpRkzV?si=b7e128fa4b53471b\"}"}', 'campfire'), - (1165509, '0x6c466cbae196f3f34857ff0540bf291f2a4779a1', 1100, 1, '2024-05-10 18:13:06+00', 102, 13, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3795, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 292, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/016d95c6-ba2d-429e-e337-34b9087d2e00/original\"}","{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=qlQrtxF6Ss-OdDp8n4rIyA&context=spotify%3Aalbum%3A38N8k7q6vILvaBekWkK4GK\"}"}', 'paidgroup'), - (1165495, '0x5a23cc316a4d7a7aa5f3efe4ee0738cc0fec571c', 0, 1, '2024-05-10 17:48:57+00', 0, 1, '{"fid": 192490, "object": "user", "pfp_url": "https://supercast.mypinata.cloud/ipfs/QmRjCEcCPxQDJvPTE5S8mzstYtZPkXQJJijUmdSkDuoW9M?filename=original.webp", "profile": {"bio": {"text": "Hi, my name is Chris and I have a dog ;) You can find my NFT collections here https://linktr.ee/godspointof \n\nI started cooking here:\n/iamalive\n", "mentioned_profiles": []}}, "username": "music-guy.eth", "power_badge": true, "display_name": "Chris MusicGuy", "active_status": "inactive", "verifications": ["0xf56e55e35d2cca5a34f5ba568454974424aea0f4"], "follower_count": 1008, "custody_address": "0x54d40681e3a866fa4b4c2f27647e9c6123a3f67b", "following_count": 596, "verified_addresses": {"eth_addresses": ["0xf56e55e35d2cca5a34f5ba568454974424aea0f4"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/redrumgm/los-inmortales\"}"}', NULL), - (1165507, '0xadf477928e46282348cacc402bb6b97c7e89b5c8', 3110, 1, '2024-05-10 18:09:54+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 10227, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/233d5955-5629-4ccd-9c1d-06a45aa51946\"}","{\"url\":\"https://www.sound.xyz/daktyl/idols\"}"}', NULL), - (1165489, '0x3a578ef0372e23ec6474fcfa489c749c3912b39f', 2842, 1, '2024-05-10 17:34:27+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 659, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 452, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pastel/oxytocin-with-glasstempo?referral=0x4817260d616ffc30e61f782c0dbc20ad0fda56b4\"}"}', 'sonata'), - (1165508, '0xcb1696cc530225887b4f3ecf902f16312213d751', 1000, 1, '2024-05-10 18:09:25+00', 1, 1, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 and /downshift ⚙️", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3417, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 631, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3977b10c-d219-4640-0e16-85e1499f2a00/original\"}","{\"url\":\"https://open.spotify.com/track/5FCzMiHrGRayOu12J65Syp?si=e4c7656b680e4337\"}"}', 'campfire'), - (1165483, '0xf3e9f332ede5cf96b2591984bb7154e3c60c13e5', 1190, 1, '2024-05-10 17:24:32+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 401, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 199, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77EwsTh7jz9khxVQK7gFBW?si=d2oQbHa0TZuQ9KoCJiBqlQ\"}"}', NULL), - (1165506, '0x8e2359d8d738589265ef2dddcad21f4766b62f48', 1000, 1, '2024-05-10 18:10:00+00', 10, 0, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 244, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 203, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/duodomusica/palomas-y-cordajes?referral_source=link\"}"}', NULL), - (1165449, '0x487f2b8dec4f2a2f6de0187fa8b28929343b313e', 4422, 1, '2024-05-10 15:11:29+00', 50, 0, '{"fid": 276109, "object": "user", "pfp_url": "https://i.imgur.com/tyIEtsV.jpg", "profile": {"bio": {"text": "lens based light bender | hosting /lightlounge 🔦✨\nlinktr.ee/gabriellamorton", "mentioned_profiles": []}}, "username": "gabriellamorton", "power_badge": true, "display_name": "ella", "active_status": "inactive", "verifications": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "follower_count": 522, "custody_address": "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57", "following_count": 396, "verified_addresses": {"eth_addresses": ["0xb32044d6911effab4f19a143a9cecd886403003e", "0xe13b7a56d63be0ba05c00e3998c8d78a1140aa57"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7i4hAFqaMcw12ITAKtLyQb?si=9961d654eb974559\"}"}', 'sonata'), - (1165517, '0x88c36242f6b7c368a0320e4c284d014de6bdd3a2', 100, 1, '2024-05-10 18:16:50+00', 0, 0, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 244, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 203, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/yoshiromare/kitsune-ft-duo-do?referral_source=link\"}"}', NULL), - (1165520, '0xb033278542192560906c7500ffa50d266d35ec8c', 1000, 1, '2024-05-10 18:22:53+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 and /downshift ⚙️", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3417, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 631, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2NCbnqj4aV4kZI3bI5xrfD?si=f53ecf1c07db459c\"}"}', 'campfire'), - (1165522, '0xbf36586788458e491dd2c52c3fa1608c809bd6ff', 210, 1, '2024-05-10 18:31:43+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 10227, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/danielallan/so-high-feat-jake-neumar\"}","{\"url\":\"https://inbox.boost.xyz/boost/4966208d-f864-4787-8e44-b25b2e7e38d9\"}"}', NULL), - (1165514, '0x51dde3f5dedfe60994fbaa4d79f243b5a6ea18f6', 0, 1, '2024-05-10 18:15:35+00', 100, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 970, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/gm\"}"}', 'sonata'), - (1165521, '0x59f9780f5fabf10ab3f7184d9bb7fc7e99a4785c', 11020, 1, '2024-05-10 18:24:06+00', 10, 1, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 970, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/duodomusica/palomas-y-cordajes?referral=0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426\"}"}', 'soundxyz'), - (1173213, '0x001d75ad8932bd7ce5e5da5e5882ad0281b48f0e', 2000, 1, '2024-05-15 12:48:27+00', 0, 10, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 873, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 728, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/cavidan-quliyev/maroon-5-sugar\"}"}', NULL), - (1165530, '0x25eeefd8c3b84e9bd36744629d3b92a57f2f25d4', 0, 1, '2024-05-10 18:42:27+00', 0, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 409, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 588, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/43DRYHCJWpKCGblFKAqzGJ?si=rJOpwqUMQhqzHinz1GRi3w\"}"}', NULL), - (1165532, '0x5628992330deb3bc297ce6e5c31db05db0aa310d', 0, 1, '2024-05-10 18:44:40+00', 0, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 409, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 588, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/43DRYHCJWpKCGblFKAqzGJ?si=rJOpwqUMQhqzHinz1GRi3w\"}"}', 'bangers'), - (1165533, '0x36bd1e1a5e4e4c7cea7183c454493426017cac94', 10100, 1, '2024-05-10 18:51:49+00', 0, 0, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 710, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 345, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0kPFRDvfZbNYdyfDspF2bO?si=130e3da2037742a5\"}"}', 'soundscapes'), - (1165523, '0xe4b2d7db5ea57cb653e2a56cd0063b7f87eddedd', 0, 1, '2024-05-10 18:33:09+00', 51, 1, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2722, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2197, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47125e2b-c5ec-4156-4699-64bf38222e00/original\"}","{\"url\":\"https://soundcloud.com/paul-desmond-official/the-theme-from-black-orpheus-1?si=83ca887b31aa44d2a2d139576240de40&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165524, '0x7c5a8557358bc2c1e66c6f135f202411f8074881', 0, 1, '2024-05-10 18:34:37+00', 1, 2, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3795, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 292, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/066c8485-b42e-45d3-3b9d-f25a758bae00/original\"}","{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=jRKSFk7TSoCt-d0bPcDUiw\"}"}', 'replyguys'), - (1165531, '0xac90faae7633164bc1669d0ac535396de701a789', 10, 1, '2024-05-10 18:45:15+00', 0, 1, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2722, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2197, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/17f31fbf-2683-4296-02e1-3c20e75e3300/original\"}","{\"url\":\"https://on.soundcloud.com/QATyd49BYSwcNyZ96\"}"}', 'sonata'), - (1165537, '0x71423375048c1d7377fa0593dd94d773e57cc3fc', 0, 1, '2024-05-10 18:59:11+00', 0, 1, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 1163, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 536, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/2OnEwBiBUG6ApR3hL36JQr\"}"}', NULL), - (1165543, '0xd4e425aed20cc6dd51faee7155e175020f33bf26', 0, 1, '2024-05-10 19:19:21+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1656, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/4d60da50-6566-496e-8b30-00e2189653f4?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'theblockexp'), - (1165545, '0xac878b37c289085b57ae46356b6e2df472c7796e', 0, 1, '2024-05-10 19:20:05+00', 0, 0, '{"fid": 397691, "object": "user", "pfp_url": "https://i.imgur.com/Y4A5zoR.jpg", "profile": {"bio": {"text": "Astrophotographer from Ireland.", "mentioned_profiles": []}}, "username": "ronanhunt", "power_badge": true, "display_name": "Ronan Hunt 💎🎩✨🆓🍖", "active_status": "inactive", "verifications": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "follower_count": 2734, "custody_address": "0x0b168a222d0950b3ef58d7d8be3e647be65ca4d5", "following_count": 1394, "verified_addresses": {"eth_addresses": ["0xd8fe942c2bd17c3b73892eee55934308e9463e62"], "sol_addresses": ["CUAmbyMbPL7Tg4HAXyk28noTNQqgz5M1Ymi98j5yVgMx"]}}', '{"{\"url\":\"https://open.spotify.com/track/42GP0xKtkolBnmqQRvSllO?si=wLFmpVQMS8W9ejq0sGrr9g&context=spotify%3Aartist%3A3utxjLheHaVEd9bPjQRsy8\"}"}', 'bangers'), - (1165541, '0x1352d31e31e53f213faf4e76b72f17d551bf8d05', 1200, 1, '2024-05-10 19:13:18+00', 0, 0, '{"fid": 133, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup ", "mentioned_profiles": []}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 25278, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 755, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2ZIaH69kaz55RM4Pjx6KXl\"}"}', NULL), - (1165536, '0x0e7fa82ff59d18b35872e0fa1ac31d9228bb0518', 1000, 1, '2024-05-10 18:55:41+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 970, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/agablis/soulquake?referral=0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426\"}"}', NULL), - (1165542, '0x4b93345959c577859a15d079a5cfa019088a1026', 3030, 1, '2024-05-10 19:14:00+00', 0, 0, '{"fid": 10914, "object": "user", "pfp_url": "https://i.imgur.com/S2BYMSo.jpg", "profile": {"bio": {"text": "artist. realms of music and vision. founder of Zoratopia. Building new dawns with ZORA.", "mentioned_profiles": []}}, "username": "callmelatasha", "power_badge": true, "display_name": "LATASHÁ", "active_status": "inactive", "verifications": ["0x6e786fcfcb98da9df87ab0b7a2d64067c90daba9"], "follower_count": 338, "custody_address": "0x8b42c2ea3c13c02941d96b89a9235c05a43136e1", "following_count": 78, "verified_addresses": {"eth_addresses": ["0x6e786fcfcb98da9df87ab0b7a2d64067c90daba9"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mialailani/play-out-ft-latasha-remix\"}"}', NULL), - (1173408, '0x6b9d8d18318ad1f171ecbdb9de27102f3e0c8f15', 4000, 1, '2024-05-15 23:00:27+00', 0, 14, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 4261, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 499, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5PjdY0CKGZdEuoNab3yDmX?si=CcTDlD-HQTOj3QxB2fThJw\"}"}', 'sonata'), - (1165565, '0x2522ad9dfe27d9d4794a4fc22d8bec9a62ce90c8', 0, 1, '2024-05-10 20:36:31+00', 1, 1, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3818, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 299, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bf937c05-2e24-42d0-59ec-1273dc193c00/original\"}","{\"url\":\"https://open.spotify.com/track/5vLAsShVUvp7mTpUdoiFqJ?si=8dV7eVTTSEKV-IAvIpmuaw&context=spotify%3Aalbum%3A6tLZbSs5l6xOdSK5eME8FK\"}"}', 'dyl'), - (1165569, '0x0657a489a7024e793f33a3d413829ce91bcec5f1', 0, 1, '2024-05-10 20:58:44+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 617, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 270, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c60f07fd-30d2-46c8-73d8-aa2a3ff9a000/original\"}","{\"url\":\"https://open.spotify.com/track/3jDdpx9PMlfMBS5tOBHFm9?si=I4V5bmdqSciEb99XzOuGBQ\"}"}', 'fc-ogs'), - (1165570, '0x4606a342bb19cce84b4e6ae698764e4eacd50324', 0, 1, '2024-05-10 21:18:50+00', 0, 0, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3821, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 299, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6qMXubogFdMrvVMJwqATzd?si=181ToBoTQSiuA0NdH60xAg\"}"}', NULL), - (1176231, '0xb36ae6a499f36a706fa2c357db2ca2d40e9ee8a4', 1000, 1, '2024-05-17 00:04:53+00', 0, 0, '{"fid": 355566, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️"}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 282, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 213, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/duodomusica/caminando?referral=0x0d3c16f2d152373539610da87d231f4d78f73a35\"}"}', 'soundxyz'), - (1165573, '0x4627c9ce81daf518d87622b9d3f017f852531a06', 0, 1, '2024-05-10 22:05:57+00', 0, 0, '{"fid": 1890, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/e7d49b5c2a6021ff1543a69cfa466719.jpg?w=500&auto=format", "profile": {"bio": {"text": "Program Manager in publishing and media tech.", "mentioned_profiles": []}}, "username": "jayce", "power_badge": true, "display_name": "Chaotic Neutral", "active_status": "inactive", "verifications": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "follower_count": 617, "custody_address": "0x80ec31ef159f54c996cc0eae2db8b3dec4cc94f1", "following_count": 270, "verified_addresses": {"eth_addresses": ["0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1EjIXKhNHI00ZLMRpS8iz8?si=ac007848d700419a\"}"}', 'nowplaying'), - (1165574, '0xeb4d6bcd82e72686fbafde24a4104cc3e681d446', 0, 1, '2024-05-10 22:41:49+00', 0, 1, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 1171, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 536, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/2OnEwBiBUG6ApR3hL36JQr\"}"}', NULL), - (1165576, '0xd08fe087dd08e773681fc5e9445ea51710306da9', 0, 1, '2024-05-10 22:58:49+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1668, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 325, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', 'base-builds'), - (1165675, '0x19894a8c2e176477e452be8a2a01364beb0ae775', 4230, 1, '2024-05-11 03:47:12+00', 250, 0, '{"fid": 7247, "object": "user", "pfp_url": "https://i.imgur.com/8HNEqtG.jpg", "profile": {"bio": {"text": "building vuhlog", "mentioned_profiles": []}}, "username": "valcoholics", "power_badge": true, "display_name": "V", "active_status": "inactive", "verifications": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "follower_count": 1628, "custody_address": "0x74497159051ce25ed4d5658f5cb497f0af807943", "following_count": 429, "verified_addresses": {"eth_addresses": ["0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/mixedbyjba/jaded-club-edit-remastered?ref=clipboard&p=i&c=0&si=E21924898D3E4990ACFB4E9A6AA7F490&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165575, '0xbf90319cafb2b33e6001afb7d5825136d30207f8', 500, 1, '2024-05-10 22:57:37+00', 0, 0, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 245, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 203, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7AMGgAPFczs3wJgMqu6Eqi?si=TGNrhyg6Ttabt-c78KZkKA\"}"}', 'albumoftheday'), - (1165572, '0x0e6cd9217413e35bb6bc80bed851a2e44f68c828', 0, 1, '2024-05-10 21:40:53+00', 1, 1, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 1170, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 536, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/1PUwCOtQUOZrjAp8ljxGhE\"}"}', 'bangers'), - (1173670, '0xc965ed92e19ac7e74e196825eace32adcad289bd', 2100, 1, '2024-05-16 06:09:21+00', 0, 3, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a0633ede", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2933, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2242, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/ka5tXF8aN44CtRoy8\"}"}', 'sonata'), - (1165581, '0x9f5c4a139d5403fb5bb35b19266837eded843672', 0, 1, '2024-05-10 23:53:28+00', 0, 0, '{"fid": 253127, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/47e4bb34-6bd7-44c6-d8a4-4668be00de00/original", "profile": {"bio": {"text": "/lebleuelefant BDFL\n", "mentioned_profiles": []}}, "username": "agust", "power_badge": true, "display_name": "🃏🔷🐘 LeBleuElefant", "active_status": "inactive", "verifications": ["0xe9dadd9ded105d67e6cb7aadc48be0c2d45df652", "0xe9dadd9ded105d67e6cb7aadc48be0c2d45df652", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xc05f7c22c83a1a050cd3d6029786bf1a093e7f01", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xeca9315ad26ca93384e824cefc609c8e63bd7720"], "follower_count": 7361, "custody_address": "0xdbcd4dc537ea96ead3439575027729e3e6c30db4", "following_count": 3733, "verified_addresses": {"eth_addresses": ["0xe9dadd9ded105d67e6cb7aadc48be0c2d45df652", "0xe9dadd9ded105d67e6cb7aadc48be0c2d45df652", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xc05f7c22c83a1a050cd3d6029786bf1a093e7f01", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xf5e9a212c15aa67a7658048f59ec3e88bc9c0ea2", "0xeca9315ad26ca93384e824cefc609c8e63bd7720"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/gatoneran/melanconia-alegria-antonia-font-lo-fi-remix\"}"}', NULL), - (1165582, '0x1910b1d90c2fe8aa38b2efc6e75208f809c52b0d', 0, 1, '2024-05-10 23:54:25+00', 0, 0, '{"fid": 422559, "object": "user", "pfp_url": "https://i.imgur.com/bzqkQ88.jpg", "profile": {"bio": {"text": "/bugs are friends 𓆨𓆣ᯓᡣ𐭩 \n\n\nhttps://objkt.com/@katipo", "mentioned_profiles": []}}, "username": "katipo", "power_badge": true, "display_name": "katipo 𖦹 ", "active_status": "inactive", "verifications": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "follower_count": 265, "custody_address": "0xbb9cf53b77147b6c4f643a71f9a11bfad879a2b9", "following_count": 227, "verified_addresses": {"eth_addresses": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6OtfwrzhIaIg6gmnzgPlu1?si=xNMnKR6iSomb8T7vVhV76Q&context=spotify%3Aalbum%3A5IFOummNcGXY3qCBWRchqP\"}"}', NULL), - (1165583, '0x93334fc2d4da1b4e7f8f98f11a07f1b51af18626', 300, 1, '2024-05-10 23:57:11+00', 0, 0, '{"fid": 465063, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e134e4d9-202f-4524-3247-4989ead5ab00/rectcrop3", "profile": {"bio": {"text": "Professional over-thinker. Amateur human.\nDegen c. 1996\nETH c. 2017\n/classic /miamicrypto", "mentioned_profiles": []}}, "username": "indicub.eth", "power_badge": true, "display_name": "Blockchain Bandido", "active_status": "inactive", "verifications": ["0x0b255cd2188dae3787c1447a8dd99fb9611f461f"], "follower_count": 707, "custody_address": "0xaa92958f21cf0a16e30d85d2a29241eaa79c6e0e", "following_count": 441, "verified_addresses": {"eth_addresses": ["0x0b255cd2188dae3787c1447a8dd99fb9611f461f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kaytranada/danny-brown-lie4-kaytradamus\"}"}', NULL), - (1165579, '0x4445b53e5a76888b934475b1494233d672d7d0f8', 100, 1, '2024-05-10 23:46:12+00', 0, 0, '{"fid": 18883, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/20a6659f-3121-497a-d152-324d27a1c700/rectcrop3", "profile": {"bio": {"text": "young savage, trapping hard | trae young fan account | poor \n", "mentioned_profiles": []}}, "username": "notswizz.eth", "power_badge": true, "display_name": "jack 🆗🆒", "active_status": "inactive", "verifications": ["0xee8e952926d7a2413f1f563bc9595bcf45af57ee", "0x768b07575496359503b64667c370bf253e71d7da", "0xef5238f4f97f7ac44778a559af7944d5ea7716eb"], "follower_count": 742, "custody_address": "0x788d03c697e704750532b03fdc94926f50c61fe6", "following_count": 391, "verified_addresses": {"eth_addresses": ["0xee8e952926d7a2413f1f563bc9595bcf45af57ee", "0x768b07575496359503b64667c370bf253e71d7da", "0xef5238f4f97f7ac44778a559af7944d5ea7716eb"], "sol_addresses": ["AvwKaGmfW2ksXqsoiGnmvQKo8XsN9pg1axxum7xfpZxP"]}}', '{"{\"url\":\"https://open.spotify.com/track/0B8QzDH7YWih85V5SEMnyJ?si=TowQP7HZT8uutkjFTHqjiQ\"}"}', NULL), - (1165585, '0xd4c81cb54b49c8532be8f6d628ee84a12476d222', 100, 1, '2024-05-11 00:00:10+00', 0, 0, '{"fid": 10144, "object": "user", "pfp_url": "https://i.imgur.com/KmoXOQ5.gif", "profile": {"bio": {"text": "finding my way ", "mentioned_profiles": []}}, "username": "thebluffer.eth", "power_badge": true, "display_name": "johann 🎩🧾", "active_status": "inactive", "verifications": ["0x66e75e94eeccacb8708fa9c2fdf93750d770b0fb"], "follower_count": 2831, "custody_address": "0x92415155e19b2fbc3668a21aff18e5b66bf9b9a7", "following_count": 808, "verified_addresses": {"eth_addresses": ["0x66e75e94eeccacb8708fa9c2fdf93750d770b0fb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1FqWZWLVzKeMQ8cNXsvVyA?si=JAbsTH_GS-i7naLFTrGGnQ&context=spotify%3Aalbum%3A6WBUyDe1Xy8QRwF6wzhJsY\"}"}', NULL), - (1165584, '0x5c9b3951f3cba9425a01fa539e2c2d8a45f19465', 6210, 1, '2024-05-10 23:57:30+00', 150, 0, '{"fid": 238853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a59d05-ac7c-4a6b-f4d3-0b52f78f9b00/original", "profile": {"bio": {"text": "bringing culture onchain. creating virtual artists. building @hume.", "mentioned_profiles": []}}, "username": "db3045", "power_badge": true, "display_name": "DavidBeiner", "active_status": "inactive", "verifications": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "follower_count": 993, "custody_address": "0xde3cea5bb06f5d18d92a827f0ace525bc714963a", "following_count": 375, "verified_addresses": {"eth_addresses": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/2055-with-reo-cragun\"}"}', 'sonata'), - (1173246, '0x10b4b721f62ac3d6b742ef1cef49b2b40c0bc02a', 3020, 1, '2024-05-15 15:26:19+00', 0, 6, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 759, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 353, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5vtXtPjH9NBC79ZOuTHYrF?si=d30668bb81064d60\"}"}', 'sonata'), - (1165588, '0x7cb07db0ca6be2ef7f4af78dde1d0f5fe09c6601', 0, 1, '2024-05-11 00:11:46+00', 150, 0, '{"fid": 215322, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b1bcb13b-6c44-4207-7b3c-459bd20b1100/original", "profile": {"bio": {"text": "nature finance onchain /basin @basin\n | place-based /situs | 🦇🔊", "mentioned_profiles": []}}, "username": "tmo.eth", "power_badge": true, "display_name": "TMO 👉 RWAxPGF", "active_status": "inactive", "verifications": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "follower_count": 580, "custody_address": "0x7cba2d1f540fb606e20fe9ae6ad44aad09e8c420", "following_count": 405, "verified_addresses": {"eth_addresses": ["0x79c2d72552df1c5d551b812eca906a90ce9d840a", "0xeaf9830bb7a38a3cebcaca3ff9f626c424f3fb55", "0x92dc27b8a07839c639c5c594f65aaaf91c6f05a6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1rbVHN9kCEauy7JQ1QnvHa?si=JDhYKggdRG--l4OTl3sEXg&context=spotify%3Atrack%3A1rbVHN9kCEauy7JQ1QnvHa\"}"}', 'sonata'), - (1165591, '0x45f9d28e4398460401b52e0fe1b446fa15180423', 1000, 1, '2024-05-11 00:13:53+00', 0, 0, '{"fid": 6437, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/44e8b100-d11c-4af8-3c49-bcf82cc9c900/original", "profile": {"bio": {"text": "hosting /framemadness • utility @beam-eco⁜ • supporting /eco", "mentioned_profiles": []}}, "username": "robertfelt.eth", "power_badge": true, "display_name": "rob", "active_status": "inactive", "verifications": ["0x5dd1b4c6132c175944c226fc89a8739b8bd9904e"], "follower_count": 477, "custody_address": "0x8c582d35fd8855513c1f3a4ba1fb3cca4311ad1f", "following_count": 490, "verified_addresses": {"eth_addresses": ["0x5dd1b4c6132c175944c226fc89a8739b8bd9904e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2AoQEc3N6MSLQVTEDIVysD?si=2f82b99b071e4415\"}"}', NULL), - (1165596, '0x97b5deb7d173ab061e96bcdcd5d59af4d8532125', 0, 1, '2024-05-11 00:28:14+00', 1, 0, '{"fid": 9192, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeihollepu4pkpzqhllac3naop2irz36arglodrsemx53vvalmjahka", "profile": {"bio": {"text": "Onchain Ticketing infrastructure - onopen.xyz. >5m tickets sold. Fixing ticketing for creators, organizers and systems. MA Phil. @poolsuite exec 🍸🪩", "mentioned_profiles": []}}, "username": "42", "power_badge": true, "display_name": "Sander | OPEN ✊🎟", "active_status": "inactive", "verifications": ["0x5a4de28b93deeb48f682336f5a91cc43b71964b2"], "follower_count": 639, "custody_address": "0x98ade15194c8d828e2e778b55f90b582e07b1639", "following_count": 662, "verified_addresses": {"eth_addresses": ["0x5a4de28b93deeb48f682336f5a91cc43b71964b2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5tLGKO2qrOc2UHgSjZBG0a?si=Il81og_NRkK_CxsL7IOCrg&context=spotify%3Aalbum%3A7yu5ozdJWDS0tjQV8jrdv4\"}"}', NULL), - (1165592, '0xbefbaab59a07a8d2a829de299b8337cd647ce14e', 0, 1, '2024-05-11 00:17:16+00', 1, 0, '{"fid": 384868, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b93fdac-19c2-4298-9b96-aab53710a400/original", "profile": {"bio": {"text": "CHAMELEONIC 👅 pro /cs2 for nouns @esports fe + artist ✨️ building a prop /nouns ⌐◧-◧ -> nouns.gg (she/her 💌) on /alfafrens + building /nountrees", "mentioned_profiles": []}}, "username": "nounslunari.eth", "power_badge": true, "display_name": "テ riley luna ✨ ⌐◨-◨", "active_status": "inactive", "verifications": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "follower_count": 357, "custody_address": "0xf2ed7c31c86d89934f30f39852231e7042d744c8", "following_count": 412, "verified_addresses": {"eth_addresses": ["0x56ebd346d5013a531105aaeeb574b31f003e11dd"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7sVPmzAf2TagX4anSxasuo?si=6e688659bed948b2\"}"}', NULL), - (1165597, '0x3f7dc6723e741f035e1beb7164a5fe6aa88a9462', 1000, 1, '2024-05-11 00:29:29+00', 1, 0, '{"fid": 3609, "object": "user", "pfp_url": "https://i.imgur.com/DAbyZ9R.png", "profile": {"bio": {"text": "/music co-host | BD Consulting at trustswap.org | Music DAO founder everwave.xyz | ex telco.in co-founder | writing on web3 & culture mirror.xyz/alixkun.eth", "mentioned_profiles": []}}, "username": "alixkun", "power_badge": true, "display_name": "alixkun🎩🍡", "active_status": "inactive", "verifications": ["0x18190f18098fa97f36e398a26be613cb2c1c2eb0"], "follower_count": 1007, "custody_address": "0x34fa4fcdb1dc98bc4fd987ed486bf72040a81dea", "following_count": 219, "verified_addresses": {"eth_addresses": ["0x18190f18098fa97f36e398a26be613cb2c1c2eb0"], "sol_addresses": ["C2spVmfBuvPLQXArKTbQvpMi1iN1VRM8SDrz5hJNipX4"]}}', '{"{\"url\":\"https://open.spotify.com/track/5SzmTJh5uOLvK4slLzOSk6?si=a97958e1f1994b23\"}"}', 'everwave'), - (1165598, '0x49425cb734a226de17abaf9c3a041326752c032b', 1200, 1, '2024-05-11 00:32:28+00', 1, 0, '{"fid": 269321, "object": "user", "pfp_url": "https://i.imgur.com/GirfNIl.jpg", "profile": {"bio": {"text": "multidisciplinary music artist -\n\nDOMS OTW //\n\n + join /flourish\n\nhttps://linktr.ee/dominosmusic", "mentioned_profiles": []}}, "username": "dominosmusic", "power_badge": true, "display_name": "Domino", "active_status": "inactive", "verifications": ["0xbf46d2161045251cb97d0b41929bc1d36044e1a0"], "follower_count": 1175, "custody_address": "0x2ea0fe46d4a96381d691f604d4a5843995fbdbc5", "following_count": 413, "verified_addresses": {"eth_addresses": ["0xbf46d2161045251cb97d0b41929bc1d36044e1a0"], "sol_addresses": ["BFoetGLXvFZ2QcVX49SVxdnCn1pPMG6GopJgRCYUJWjz"]}}', '{"{\"url\":\"https://www.sound.xyz/eternalgarden/domino-pressure-wtk\"}"}', NULL), - (1176099, '0x7fa93f1a292de33a33161d14e1f0f3a35167acbc', 1000, 1, '2024-05-16 16:05:59+00', 0, 1, '{"fid": 2802, "object": "user", "pfp_url": "https://i.imgur.com/Hf9CCmq.jpg", "profile": {"bio": {"text": "Stay Curious // iixii // Lazer Technologies // CoinDesk", "mentioned_profiles": []}}, "username": "garrett", "power_badge": true, "display_name": "Garrett 🎩↑ᖽ", "active_status": "inactive", "verifications": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "follower_count": 9624, "custody_address": "0xb3b4c5d8a76b33d5db8f94b44444563b9038a7a3", "following_count": 1937, "verified_addresses": {"eth_addresses": ["0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f"], "sol_addresses": ["GBoV4dY33PwzvoTkCaHRwqAsAcBBv9qfgTXexqZBzopk"]}}', '{"{\"url\":\"https://open.spotify.com/track/7sCjuA6HWsFzPt4KvM1w6J?si=ahuNP11kQ9m8W2uxOuGnAw&context=spotify%3Aalbum%3A2x0tgivEmpZRjEI2F3NQt9\"}"}', NULL), - (1165601, '0x1a85b5fac0b0e194cf2465678e64f87c7b4e5a0b', 0, 1, '2024-05-11 00:48:13+00', 1, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 527, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1P2T8CcWGPHj83H5DryUwh?si=53e8906026af40c6\"}"}', NULL), - (1173321, '0xf76f4393d3881a700606f320d984f712a27fa3af', 92, 1, '2024-05-15 19:50:53+00', 0, 4, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 414, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 213, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3cQ2pYZrrqTUVqrzPMDRoX?si=KSwcZVqcTrKvdBsm6h0I3w\"}"}', 'soundscapes'), - (1165700, '0xa67ba496ced5f4a29325f55c9cacd6777d101ec1', 0, 1, '2024-05-11 04:31:20+00', 0, 0, '{"fid": 278653, "object": "user", "pfp_url": "https://i.imgur.com/Ph6d9IU.jpg", "profile": {"bio": {"text": "My dog/cat thinks I''m cool.", "mentioned_profiles": []}}, "username": "alexescd.eth", "power_badge": true, "display_name": "alexesc 🎩", "active_status": "inactive", "verifications": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "follower_count": 857, "custody_address": "0xdfeb78e753bc0811431b73cf830ff114e10619ae", "following_count": 1435, "verified_addresses": {"eth_addresses": ["0x6e45310b69908a7490ebdbb66601462c8da6e46a"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/alexescd.eth/post/01b5cbca-1ef2-43df-a6b3-0e825a107b05\"}"}', NULL), - (1165580, '0x3d2fb8cb1bf1c052a92056fe35eb7bf86d89861f', 3110, 1, '2024-05-10 23:53:45+00', 0, 0, '{"fid": 268878, "object": "user", "pfp_url": "https://i.imgur.com/g5Bl6JV.jpg", "profile": {"bio": {"text": "onchain music\n\nhttps://drakula.app/user/serboy", "mentioned_profiles": []}}, "username": "serboy", "power_badge": true, "display_name": "serboy", "active_status": "inactive", "verifications": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "follower_count": 142, "custody_address": "0x693d7059bcec34abd383feaf75d3026fa698530c", "following_count": 123, "verified_addresses": {"eth_addresses": ["0xb57b74a81d2e550128932e8c3978f58ca03205b6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Stz1dIY7OD61gU7SdVR22?si=ydO7cqj7RUWnp2EhUc62PA\"}"}', NULL), - (1165731, '0x1e27641b2ef7eeecc0b4cd247a6c645d161160f9', 1000, 1, '2024-05-11 05:50:58+00', 0, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2353, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 926, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/shinkansen1969-2/down-town-19760401?ref=clipboard&p=a&c=0&si=9f8cf90cccdb4a25aa99010e8e92f5c9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'japanese-music'), - (1165602, '0x6e2a544c0be3e2accd5706eee4c5ac286c0c91b8', 1000, 1, '2024-05-11 01:00:35+00', 1, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 527, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 152, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/badley/fool?referral_source=link\"}"}', 'soundxyz'), - (1165600, '0x156761933e68e543ddabd478d0bcac92515c54b7', 1000, 1, '2024-05-11 00:37:21+00', 1, 0, '{"fid": 18723, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/59b13267-6b7f-4e90-432b-1429a98eb300/original", "profile": {"bio": {"text": "Growing veggies for the fine folks of Southeastern Massachusetts, w/ a focus on nutrient quality. Always interested in the evolution of digital payments. 🎩 ", "mentioned_profiles": []}}, "username": "brixbounty", "power_badge": true, "display_name": "BrixBountyFarm 🎩", "active_status": "inactive", "verifications": ["0xdbee1cfa10d706ef868dd2dff97246cb6d73b530"], "follower_count": 3359, "custody_address": "0xe0d350e0913c34b8a226b1c49f92af9f0a4e40c3", "following_count": 1383, "verified_addresses": {"eth_addresses": ["0xdbee1cfa10d706ef868dd2dff97246cb6d73b530"], "sol_addresses": ["FfUorQzrbyhknGqh5SDLGWWPpEg2F46r8fGQRgrn1PsG"]}}', '{"{\"url\":\"https://open.spotify.com/track/3DTcOLzQM7wBA4DWwfaBLe?si=78QJkPSoQ-CAfHe1Opi3tg&context=spotify%3Aalbum%3A13a3Sby2BrD7oqbH5y2xgh\"}"}', NULL), - (1165614, '0x801d42705725d299738055292da63923b0c0c8d3', 0, 1, '2024-05-11 01:42:47+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1673, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 325, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3U0ISMMS9mbRWzaLJoGln3?si=i9K7cGU_QbqSOGo0EuwxoQ&context=spotify%3Asearch\"}"}', NULL), - (1165615, '0xd5db80dac47cf8026d1d0f751761f177c797a504', 0, 1, '2024-05-11 01:43:06+00', 0, 0, '{"fid": 5623, "object": "user", "pfp_url": "https://i.imgur.com/m9C6Q4Q.png", "profile": {"bio": {"text": "building /give /colinks-and-co\n@coordinape, host @cryptosapiens_, was blue pilled @yearnfi, ex-facebook/instagram, ex-netflix. ↑", "mentioned_profiles": []}}, "username": "defiginger", "power_badge": true, "display_name": "chris eberle", "active_status": "inactive", "verifications": ["0xff9b563140952fb7e3e5552f1a5068b637f0de0a"], "follower_count": 266, "custody_address": "0xe2a1072e53ea4d77ce88d2f59522e18debae5365", "following_count": 273, "verified_addresses": {"eth_addresses": ["0xff9b563140952fb7e3e5552f1a5068b637f0de0a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5iIKaDGB9NcbgepirpKQFK?si=vB0VSl69RzyZMTkLwqsnDQ\"}"}', 'punkrock'), - (1165616, '0xda2529e31926e6909cb47740b015289e781d4551', 0, 1, '2024-05-11 01:48:34+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1673, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 325, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', NULL), - (1165617, '0xbb2256fa20c5ddcb152481e89e40a55fdf88bafb', 0, 1, '2024-05-11 01:49:19+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1673, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 325, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3U0ISMMS9mbRWzaLJoGln3?si=_WcsTnq7QIC40awj4iL2yw&context=spotify%3Asearch\"}"}', NULL), - (1165546, '0x9cd1b871a84b897d75e21988ca9e7e0af123f37d', 3220, 1, '2024-05-10 19:20:32+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1656, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/4d60da50-6566-496e-8b30-00e2189653f4?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'soundxyz'), - (1176320, '0x33fca43adabc1e0e49d4bdab8423d8a46db1a4a4', 0, 1, '2024-05-17 04:01:20+00', 0, 0, '{"fid": 7408, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/xyH0Yar.gif", "profile": {"bio": {"text": "/the northern nightmare"}}, "username": "emush", "power_badge": true, "display_name": "emush🎩", "active_status": "inactive", "verifications": ["0xb8ac952dcdfd1e77222213ae508ad8864dc391b4"], "follower_count": 2515, "custody_address": "0x8364089ef4452ea75b14b1a0094bb04320b30400", "following_count": 1132, "verified_addresses": {"eth_addresses": ["0xb8ac952dcdfd1e77222213ae508ad8864dc391b4"], "sol_addresses": ["B29X6ec9yHeFHSNMpdXfcWYScAjKyt2w6yL6bGYbGETM"]}}', '{"{\"url\":\"https://open.spotify.com/track/1Od0GHU6C7NDqHhNhl9wE9?si=lGATS21JSVGwjbwRDbFyqw\"}"}', 'japanese-music'), - (1165630, '0x1ec668f4b40e748a2e1e725970fd81d73ae2995b', 0, 1, '2024-05-11 02:14:27+00', 0, 1, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1673, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 325, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', 'replyguys'), - (1165577, '0x3ff62b3e76234ed6dbff41a33b2b53d6dee106a2', 5300, 1, '2024-05-10 23:32:52+00', 150, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3613, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tofubeats/dont-stop-the-music-feat?ref=clipboard&p=i&c=0&si=FE9705CD69DA4ECA821D3335A68075C7&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1176321, '0x1b6874f1a1b585bd18fe1924e22eab44a6bf3325', 0, 1, '2024-05-17 04:15:16+00', 0, 0, '{"fid": 310928, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8d7aec5-e64b-4332-4e53-25129162b100/original", "profile": {"bio": {"text": "the intern''s intern\npolymarket.com"}}, "username": "polymarket", "power_badge": true, "display_name": "Polymarket", "active_status": "inactive", "verifications": ["0x7cd1fa8f4e22eb278c0dd2c46a653da2cb45bef8"], "follower_count": 7344, "custody_address": "0x22c8f140faf674c9609afae90f3f77afd6819bc9", "following_count": 168, "verified_addresses": {"eth_addresses": ["0x7cd1fa8f4e22eb278c0dd2c46a653da2cb45bef8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/59rtiYOPgMEDf3yPEfU2la?si=edkJ-Jr3SwibZmKQamj15g&context=spotify%3Asearch%3Astill%2Btip\"}"}', NULL), - (1165681, '0x0eab37edfe9dc64380d1bdb732f72531c8e2f256', 0, 1, '2024-05-11 04:00:36+00', 0, 0, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 3752, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 717, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0jkeRqlWciqKxU3iHQfdWj?si=8GRo_nqHSa2m04DOun1Oiw\"}"}', 'bangers'), - (1165638, '0xd248135476c89510f6b7cb47790dc5ba6e080ed1', 1000, 1, '2024-05-11 02:48:31+00', 0, 0, '{"fid": 6852, "object": "user", "pfp_url": "https://i.imgur.com/yfusMnJ.jpg", "profile": {"bio": {"text": "Building @metasuyo & @cryptoamigos\nDecentralized Storytelling x Learning DAOs | Web3 for Impact", "mentioned_profiles": []}}, "username": "luisotravez", "power_badge": true, "display_name": "Luis Carranza Perales ", "active_status": "inactive", "verifications": ["0x003276c5c24cdaff1d804170ab5cbb914f51f78a"], "follower_count": 576, "custody_address": "0xffe3b6e81bfec4908d1a41fe6f20679aca0e2b8a", "following_count": 320, "verified_addresses": {"eth_addresses": ["0x003276c5c24cdaff1d804170ab5cbb914f51f78a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4KBtPMklVmUBJqpUrKP1Vf?si=Fi6HPbKiQBqZlDJDKgTnfQ&context=spotify%3Aalbum%3A4ByVrmVhAb2YTQubbz1R2P\"}"}', NULL), - (1165653, '0x7c13ed7600a7e4daa9fa7d5074ae866f12e589c1', 0, 1, '2024-05-11 03:13:08+00', 11, 1, '{"fid": 270684, "object": "user", "pfp_url": "https://i.imgur.com/yBkGIrw.gif", "profile": {"bio": {"text": "Artist, (Skullture)\nDegen,\nCryptoPunk,\nMy X - https://twitter.com/zaharia_af\n", "mentioned_profiles": []}}, "username": "zafgod", "power_badge": true, "display_name": "ZafGod 🎩 ", "active_status": "inactive", "verifications": ["0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3"], "follower_count": 15738, "custody_address": "0x3cff8ae0740248932b824545bed5e1a8ee47011e", "following_count": 690, "verified_addresses": {"eth_addresses": ["0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/08291555-a6c5-4786-fdac-fbd38d2a4800/original\"}","{\"url\":\"https://open.spotify.com/track/0ivNJZGwjRiMFnhnRuN6vv?si=atcmduG6RFelll7IWDvOEw&context=spotify%3Aplaylist%3A7eHrjaC4fkZqMwierm3b4E\"}"}', NULL), - (1165637, '0x16655966dce9e1ef68cfb9e0d320eea4a0094882', 1000, 1, '2024-05-11 02:46:55+00', 0, 0, '{"fid": 4294, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/299c4356bab839eb87f29119312a0ff2.png?w=500&auto=format", "profile": {"bio": {"text": "musican. ai artiste. \n\ndesigned the channel icon for /relationships \n\ntricil.twitter\n\ntricil.art\n\ntricil.net", "mentioned_profiles": []}}, "username": "tricil.eth", "power_badge": true, "display_name": "tricil🎩", "active_status": "inactive", "verifications": ["0x3339726b077b08ca88ca2262108beba4e7236882", "0x12239fcdff8cd48c24661d3c4243ce33ceb2e273"], "follower_count": 1317, "custody_address": "0x644ec1de03d02753482c904982d075d7354f6657", "following_count": 282, "verified_addresses": {"eth_addresses": ["0x3339726b077b08ca88ca2262108beba4e7236882", "0x12239fcdff8cd48c24661d3c4243ce33ceb2e273"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3PyHm9p7A6IbCusyeOlwfF?si=NbBS4F0ZSO6krPdnsRGhJw\"}"}', NULL), - (1165703, '0x243e1c69d425e5efa56dd377ed1d303fa8d3a30b', 100, 1, '2024-05-11 04:37:34+00', 10, 0, '{"fid": 1079, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aea87773-c0f3-40e4-df82-83f789bbf300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨ ‘ing around. Working on Nouns Creative focused on narrative works. Music Publisher & Manager by day.", "mentioned_profiles": []}}, "username": "joshuafisher.eth", "power_badge": true, "display_name": "Joshua Fisher ⌐◨-◨ テ🎩", "active_status": "inactive", "verifications": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "follower_count": 3175, "custody_address": "0xeb31e335531c06ca4d8fe58bed841e9031de4ee4", "following_count": 304, "verified_addresses": {"eth_addresses": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/28lmqduaFZVV6r46kALIpP?si=OqQCPUSVRnmCB4nYhwxFFA&context=spotify%3Aalbum%3A2YhXAEGsBxEE4qpqFPbDUV\"}"}', NULL), - (1165682, '0x89dbdef549433b51775861b4a638071cf76f4762', 1110, 1, '2024-05-11 04:02:05+00', 10, 0, '{"fid": 922, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/69f3b77bd5ebe2cff4d4dff722b7b45e.png?w=500&auto=format", "profile": {"bio": {"text": "🏃👨‍💻🦁 | Building @privy", "mentioned_profiles": []}}, "username": "segall", "power_badge": true, "display_name": "Max", "active_status": "inactive", "verifications": ["0x89213f11e4a356d450ab89a876f4c1cb5b8996da"], "follower_count": 2124, "custody_address": "0x2e69082fd66bb416df9ff4762943796093f843c8", "following_count": 728, "verified_addresses": {"eth_addresses": ["0x89213f11e4a356d450ab89a876f4c1cb5b8996da"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0RC2B9uIITHA0wtDFfQk3K?si=35op3RL1Rv-AlRRXQiyqJA&context=spotify%3Asearch%3Acha%2Bcha%2Bslide\"}"}', NULL), - (1165701, '0xb26d4c4f75b20360775afca729f4a10ac831f43b', 0, 1, '2024-05-11 04:34:33+00', 0, 0, '{"fid": 1079, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aea87773-c0f3-40e4-df82-83f789bbf300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨ ‘ing around. Working on Nouns Creative focused on narrative works. Music Publisher & Manager by day.", "mentioned_profiles": []}}, "username": "joshuafisher.eth", "power_badge": true, "display_name": "Joshua Fisher ⌐◨-◨ テ🎩", "active_status": "inactive", "verifications": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "follower_count": 3175, "custody_address": "0xeb31e335531c06ca4d8fe58bed841e9031de4ee4", "following_count": 304, "verified_addresses": {"eth_addresses": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3aJF7HsFOwuUAFOaRMQCxR?si=mgdWc8wpQiyzT-SeumUp_A\"}"}', NULL), - (1165702, '0x801cb0e742bf9ea48a8d091e10a2c927f7ba7e01', 1100, 1, '2024-05-11 04:36:32+00', 10, 0, '{"fid": 1079, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/aea87773-c0f3-40e4-df82-83f789bbf300/rectcrop3", "profile": {"bio": {"text": "⌐◨-◨ ‘ing around. Working on Nouns Creative focused on narrative works. Music Publisher & Manager by day.", "mentioned_profiles": []}}, "username": "joshuafisher.eth", "power_badge": true, "display_name": "Joshua Fisher ⌐◨-◨ テ🎩", "active_status": "inactive", "verifications": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "follower_count": 3175, "custody_address": "0xeb31e335531c06ca4d8fe58bed841e9031de4ee4", "following_count": 304, "verified_addresses": {"eth_addresses": ["0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6u1XMGGLkwPEJHjaKB5eND?si=n0jWTroaS2ihFmcceDxSnA&context=spotify%3Aalbum%3A0Axq02hDwH1qlocZPy4Xtn\"}"}', NULL), - (1165647, '0xb83b1499c6f409333932058e571699821552816b', 6000, 1, '2024-05-11 02:53:43+00', 150, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2345, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 924, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/taiki-kataino/andymori-mp3?si=0de6a29ba04e4a539737a8cfc030c111&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1166396, '0x62e62df855183897b620c510a2589d61fbb7334c', 0, 1, '2024-05-12 15:41:41+00', 0, 0, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 462, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 179, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/72Yy5KRM5MBcmAjPix1nfX?si=ae4e8018d2fc4dc0\"}"}', NULL), - (1165567, '0x4198b9155bcf58abda945701daa915e2dc8d17c1', 4310, 1, '2024-05-10 20:54:18+00', 0, 0, '{"fid": 521, "object": "user", "pfp_url": "https://i.imgur.com/EGHTdd7.jpg", "profile": {"bio": {"text": "designer, dj, and co-founder @titlesxyz /titles", "mentioned_profiles": []}}, "username": "sorenwrenn", "power_badge": true, "display_name": "sören john", "active_status": "inactive", "verifications": ["0xfcdd256267ade068babfb94f526a47aadf143a55"], "follower_count": 1062, "custody_address": "0xf0148f5aef8c40850a8827a0f664df027e080abc", "following_count": 460, "verified_addresses": {"eth_addresses": ["0xfcdd256267ade068babfb94f526a47aadf143a55"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6vT7FSKpD8af0DtLQH33hC?si=2e2278002e4d4a77\"}"}', 'djs'), - (1165730, '0x12849d41865c99f7c15cf1fc67abc0aadd8f629a', 0, 1, '2024-05-11 05:21:41+00', 0, 0, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 257273, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 329, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/8af38c99-c1ff-4f22-be0a-f188dde3d576\"}"}', NULL), - (1165724, '0x61945c26428ab82f96e091383534e6ec3fc16b3e', 200, 1, '2024-05-11 04:54:10+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2397, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 746, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5J1OtbKNqhTh5bzRPhBnLQ\"}"}', 'techno'), - (1165735, '0x19015ea20115d5838483ccc603a7a0b56636e9e0', 100, 1, '2024-05-11 05:54:53+00', 100, 0, '{"fid": 17256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fb3267ae-39e0-4069-445b-8bfa3ade1100/rectcrop3", "profile": {"bio": {"text": "Always building. Engineering manager for @matchaxyz | @0xproject | ❤️✌️🏄‍♂️", "mentioned_profiles": []}}, "username": "mathieuw", "power_badge": true, "display_name": "Mathieu Welche", "active_status": "inactive", "verifications": ["0x6ea28eedf8ca259f252ed2fa54afe43b073b6cf9", "0x6714e3fbeb9f5648903bf57ed01e497349899d3c"], "follower_count": 151, "custody_address": "0x228fca998a81b8c565143610eb72a9187fcbc6a3", "following_count": 95, "verified_addresses": {"eth_addresses": ["0x6ea28eedf8ca259f252ed2fa54afe43b073b6cf9", "0x6714e3fbeb9f5648903bf57ed01e497349899d3c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1qUo7d5lAOclNVbTUY0A2R?si=b20aa78816b64ec9\"}"}', NULL), - (1165770, '0x29122df8c84114a46a5ea60da6888a8a1f734f78', 0, 1, '2024-05-11 06:57:56+00', 0, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 525, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 454, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0OYioqo4NjQA6NAMtzcbVX?si=AZxcxSmGQV2MZhf-Ezhc8Q&context=spotify%3Aalbum%3A6Y3nWqg8p7AcXbceOW1G7p\"}"}', NULL), - (1165426, '0xc5bc8164279588371904732bcb00e102de46c552', 100, 1, '2024-05-10 13:18:53+00', 0, 2, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3747, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 289, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=MlLlfPK_SjqjORvlm_2t2g\"}"}', 'paidgroup'), - (1165758, '0x414955019f36eb02fe294da624b210f0c2f0f7d1', 2055, 1, '2024-05-11 06:24:23+00', 50, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2405, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 746, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1M5qlCXGBykhZq1830MZE5\"}"}', 'sonata'), - (1165804, '0x0090f7680cdde83fa2fd38e4804631934448b15c', 0, 1, '2024-05-11 07:31:12+00', 0, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 421, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 596, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6EUcP55GlbmsmCzfL2vxtZ?si=Qwrd080mT1yYlgxl7HWuNw\"}"}', 'bangers'), - (1165393, '0x38918eef90485834077b168808c359906a32f8a0', 10815, 1, '2024-05-10 08:17:10+00', 1, 2, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2699, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2196, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/gojxdTnj8DghYCg98\"}"}', 'sonata'), - (1165819, '0x538b86948702ac89660f72592d45d00787c3535d', 0, 1, '2024-05-11 07:58:38+00', 0, 0, '{"fid": 12425, "object": "user", "pfp_url": "https://i.imgur.com/9F7rUZB.jpg", "profile": {"bio": {"text": "Farcaster OG 676, EDM producer,Teacher, Fundamental Researcher, Technoholic , MONAD''s ambassador ", "mentioned_profiles": []}}, "username": "fab", "power_badge": true, "display_name": "HadiFab ", "active_status": "inactive", "verifications": ["0x309471398adfa2b136970583ad0db66294f035e3"], "follower_count": 1585, "custody_address": "0x7aaad5acd163a8e2a93129ce8c0fdd4a9e9d0d1e", "following_count": 938, "verified_addresses": {"eth_addresses": ["0x309471398adfa2b136970583ad0db66294f035e3"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/91244ffc51f1a1b3a655057f755823de.m3u8\"}","{\"url\":\"https://open.spotify.com/track/4BvCVaG0NrsVOwNDlQIlKN?si=-7v6g6stR-Gi9E7GoTFGpQ\"}"}', NULL), - (1176328, '0x8cc0cd5227af238d17e51ebb2cc29b5c637a6194', 0, 1, '2024-05-17 04:31:20+00', 0, 0, '{"fid": 7408, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/xyH0Yar.gif", "profile": {"bio": {"text": "/the northern nightmare"}}, "username": "emush", "power_badge": true, "display_name": "emush🎩", "active_status": "inactive", "verifications": ["0xb8ac952dcdfd1e77222213ae508ad8864dc391b4"], "follower_count": 2515, "custody_address": "0x8364089ef4452ea75b14b1a0094bb04320b30400", "following_count": 1132, "verified_addresses": {"eth_addresses": ["0xb8ac952dcdfd1e77222213ae508ad8864dc391b4"], "sol_addresses": ["B29X6ec9yHeFHSNMpdXfcWYScAjKyt2w6yL6bGYbGETM"]}}', '{"{\"url\":\"https://open.spotify.com/track/1IXkMScsAJARqxbN8RNL2V?si=xKgrGDfQRgOtqFc_9_l90Q\"}"}', 'japanese-music'), - (1165823, '0xc78e3c97a31bcc6fd18c29e20dedb121a47252b6', 0, 1, '2024-05-11 08:06:45+00', 0, 0, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 679, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 242, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/50WIRW5ItqEWp0a5Y2O5ja?si=3C-qOfHHQpCP6BczOTmv5Q&context=spotify%3Aplaylist%3A0kbF0Mfw2y6QJWt6IBNUd6\"}"}', 'bangers'), - (1165848, '0xd4f17faedd3215587b63a69123421c4df7893c4b', 0, 1, '2024-05-11 09:23:43+00', 0, 0, '{"fid": 408951, "object": "user", "pfp_url": "https://i.imgur.com/zwbcIUJ.jpg", "profile": {"bio": {"text": "ꜱᴏᴜɴᴅ ᴅᴇꜱɪɢɴᴇʀ / ᴍᴜꜱɪᴄ ᴘʀᴏᴅᴜᴄᴇʀ @akidcalledvoid\n\n", "mentioned_profiles": []}}, "username": "venemy.eth", "power_badge": true, "display_name": "Venemy", "active_status": "inactive", "verifications": ["0x2b9218d929c4f7dee9ea565d3c63769c238e4c99"], "follower_count": 500, "custody_address": "0xa9c9f95a149e10fa1b79f0915e768e261a9d5fde", "following_count": 819, "verified_addresses": {"eth_addresses": ["0x2b9218d929c4f7dee9ea565d3c63769c238e4c99"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/void\"}"}', NULL), - (1165444, '0xac171e8bb1e11e429285f770ba59ed112090b357', 1230, 1, '2024-05-10 14:57:20+00', 10, 2, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2374, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 744, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5OcyX5eg7VrJuI833qOCUc\"}"}', 'sonata'), - (1063751, '0xf7610ec2675f129d4cfcac09510640e890857e56', 3100, 1, '2024-05-07 15:00:46+00', 0, 0, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 310, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 260, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/59wlTaYOL5tDUgXnbBQ3my?si=ggHYEAsfSWmN_dKf6gabHA&context=spotify%3Aplaylist%3A37i9dQZF1E4BhrwyDrXw8L\"}"}', 'bangers'), - (1159741, '0xd550215fcca9853315a1f6fc41dac2b61cf5908a', 3222, 1, '2024-05-08 11:33:05+00', 0, 1, '{"fid": 428802, "object": "user", "pfp_url": "https://i.imgur.com/GIAjuNv.jpg", "profile": {"bio": {"text": "I''m curious about future world", "mentioned_profiles": []}}, "username": "armanb73", "power_badge": false, "display_name": "mery", "active_status": "inactive", "verifications": ["0x50cf12c7b0e6a860eca69f3f1d3c181dc00f134b"], "follower_count": 982, "custody_address": "0xfcf881dde42cfd3a3e27ccdcf13680a42c08105a", "following_count": 433, "verified_addresses": {"eth_addresses": ["0x50cf12c7b0e6a860eca69f3f1d3c181dc00f134b"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5555b548-cf3e-49f5-81e3-57fbae76d800/original\"}","{\"url\":\"https://open.spotify.com/track/47Slg6LuqLaX0VodpSCvPt?si=DcdbmYxgROmwHSNj24Q0ig&utm_source=copy-link&context=spotify%3Aplaylist%3A37i9dQZF1DWVTfbQdQ8l7H\"}"}', 'sonata'), - (1176329, '0x15174fc428194ee3bc317f4647991f1e4f9a4bc9', 0, 1, '2024-05-17 04:31:25+00', 0, 0, '{"fid": 387246, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ "}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 933, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 976, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7xsZLC176508xajKRL8HiD?si=GM4sfVoHSRua4IezvG38Mg\"}"}', 'bangers'), - (1165430, '0x011b47951e68d0a3acef4481937af4968559ca02', 1000, 1, '2024-05-10 13:59:13+00', 0, 1, '{"fid": 133, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup ", "mentioned_profiles": []}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 25222, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 754, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0ed6evAMZvewGh4UI9KkVU?si=0df5a4ea0f7b46bf\"}"}', 'rap'), - (1176330, '0x490019a1ada8e76951da6744731ed9e31f67f408', 0, 1, '2024-05-17 04:32:11+00', 0, 0, '{"fid": 14537, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/"}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1953, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 980, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/much-love?referral_source=link\"}"}', 'soundxyz'), - (1165482, '0x866905836cff4e9f87ba6dc17a7fce1933148c5b', 3530, 1, '2024-05-10 16:52:28+00', 0, 0, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 291, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 328, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/barrycantswim/sunsleeper-8?si=a42eb169bd154f33a6f038355a685be9&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1165728, '0x30f57c755f941fce4ed935af9d71d5af4ece78b2', 1100, 1, '2024-05-11 05:11:01+00', 0, 0, '{"fid": 13077, "object": "user", "pfp_url": "https://i.imgur.com/NwgqZfI.jpg", "profile": {"bio": {"text": "Writer | Book lover | Weeb | Walking coordination failure\n| Marketing /subsquid | Enjoyer of /classical music and /postcards", "mentioned_profiles": []}}, "username": "naomiii", "power_badge": true, "display_name": "Naomi ", "active_status": "inactive", "verifications": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "follower_count": 2588, "custody_address": "0x523882b3d8ff12ec24c3a55403ffed32632bfdbc", "following_count": 337, "verified_addresses": {"eth_addresses": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5EGxgchEJCoG6t0VjvMbmE?si=4Rhy6l_ZRpmnh1U1OK26rw\"}"}', NULL), - (1165571, '0x05af40955a71454ae96b5942507149715338c2e9', 2200, 1, '2024-05-10 21:32:44+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 401, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 199, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/66cGEca0mM1syYeB0jIKci?si=1-rlykEfR_SlT69XUqQ0EA&context=spotify%3Aplaylist%3A6isoH65GLBFtBhKsMnrwsR\"}"}', 'soundscapes'), - (1165652, '0x5e9aac026dd0709d7b4127b9ea6fb2c22908ed34', 3600, 1, '2024-05-11 03:03:11+00', 160, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 704, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 713, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/8fryvypaj5ig/abqfsx5pepem\"}"}', 'sonata'), - (1165539, '0xe64e7292e129059dbcc564ad90c69d1c55a0a362', 1200, 1, '2024-05-10 19:04:06+00', 0, 0, '{"fid": 633, "object": "user", "pfp_url": "https://i.imgur.com/f3MHWW0.jpg", "profile": {"bio": {"text": "Music Nerd nerding with @clt on musicnerd.xyz. Productizing patronage.", "mentioned_profiles": []}}, "username": "cxy", "power_badge": true, "display_name": "C.Y. Lee | cxy.eth", "active_status": "inactive", "verifications": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "follower_count": 471, "custody_address": "0x42336ad90fb7a447e013d9f495cb96d7edc1a003", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "sol_addresses": ["2fj2ne42grvCHsDUTuL4HVFT9wrAKZ3F9VZ2ktKMyDHP"]}}', '{"{\"url\":\"https://open.spotify.com/track/3ESbnlo4XUDRUDwrnVWoSf?si=Bm50LGC-SU26msrfLG7Sag\"}"}', NULL), - (1165863, '0xbf6db7ed7e1d7ccb011fd0d64989e36e916f13c7', 1000, 1, '2024-05-11 09:43:02+00', 50, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2374, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/asami-takashima/storywriter?si=a1708c59c87a424f972d0bc937c23aec&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1165316, '0x0d8b02c62ed3ccb547ce1a4a063194e9a35f598e', 2010, 1, '2024-05-10 03:39:54+00', 0, 2, '{"fid": 466688, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeib4fu3alvtz5jpvzsna7ic2oxebxdxlay2gvwvzdi3vjhf2a2zjau", "profile": {"bio": {"text": "Web 3 degen since the first cardano pump and dump. Specialize in memetics and over-invested in /base.", "mentioned_profiles": []}}, "username": "cryptim.eth", "power_badge": true, "display_name": "Tim", "active_status": "inactive", "verifications": ["0xee22b2cad0598df173099581ddec2c8b393152c3"], "follower_count": 484, "custody_address": "0xb89240e4cca9cbe6b47fe4d749d4c0d8e93d9e19", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xee22b2cad0598df173099581ddec2c8b393152c3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/lyrah/coming-back\"}"}', 'replyguys'), - (1165729, '0x0e131f6f5099d5f6ac70151de6f4d8896e30f40e', 220, 1, '2024-05-11 05:21:35+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2397, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 746, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":365492,\"hash\":\"0xae7fb6f1e407011f3782bd10bf5f8385cbc024ae\"}}","{\"url\":\"https://open.spotify.com/track/0nOoZKPouFPYpuHLugXylG\"}"}', 'housemusic'), - (1165433, '0x104f7f197982f4f6670559fe3f154a4b891d4524', 1010, 1, '2024-05-10 14:14:11+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 600, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 604, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6b37xrsNCWYIUphFBazqD6?si=zQbJisD8SZ-a_MszI5nqtA\"}"}', NULL), - (1176331, '0x07db3b84b335e87583735a183bc9057793feaa5d', 0, 1, '2024-05-17 04:40:52+00', 0, 0, '{"fid": 10123, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/C86LCsP.png", "profile": {"bio": {"text": "Former Tradfi turned Defi, Web3, crypto, DePIN, NFT, blockchain advocate, investor, founder and evangelist. \n\nhttps://linktr.ee/hilgi"}}, "username": "hilgi", "power_badge": true, "display_name": "Mark Hilgenberg ", "active_status": "inactive", "verifications": ["0x50763add868fd7361178342fc055eaa2b95f6846"], "follower_count": 483, "custody_address": "0x415dfb7355cf2f79a100ac9ed7db2acb8cc71464", "following_count": 425, "verified_addresses": {"eth_addresses": ["0x50763add868fd7361178342fc055eaa2b95f6846"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6Cfjbe0yuS82fNIdbFWImO?si=7a92398a821b4c57\"}"}', 'jazz'), - (1176332, '0x5b547c5318931c9f1749da55cf1b8339eb0eb9e3', 0, 1, '2024-05-17 04:44:46+00', 0, 0, '{"fid": 387246, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ "}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 933, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 976, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2L71LlGPWi7bCFfJe5P45z?si=EMwNO-pIQvCpN3SXVVXI9w\"}"}', 'appreciation'), - (1176333, '0x74274b577d8226d04e02dace9b9541a37fffc2f1', 0, 1, '2024-05-17 04:45:36+00', 0, 0, '{"fid": 387246, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ "}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 933, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 976, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2L71LlGPWi7bCFfJe5P45z?si=EMwNO-pIQvCpN3SXVVXI9w\"}"}', 'bangers'), - (1165865, '0x6f28f350c685d3f7816251a39828f4f0c311be7c', 1630, 1, '2024-05-11 09:44:16+00', 110, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 713, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 713, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kyle-munro-647072189/high-hopes\"}"}', 'sonata'), - (1165906, '0xcb2a9297088ab9b328e9a3bba5f7763196befe7f', 0, 1, '2024-05-11 12:07:56+00', 0, 0, '{"fid": 24178, "object": "user", "pfp_url": "https://i.imgur.com/FsB13vJ.jpg", "profile": {"bio": {"text": "engineer, 3d animator, art collector, trash coder, VIP, radish farmer, nanoguy.eth✨⚛️🎵🖥️", "mentioned_profiles": []}}, "username": "nan0", "power_badge": true, "display_name": "nano", "active_status": "inactive", "verifications": ["0x0055354f80275a5fc29d43feed8ce64701579cad"], "follower_count": 273, "custody_address": "0x71a746e32ebccd4e26df3e3b8459c94b63da0e05", "following_count": 136, "verified_addresses": {"eth_addresses": ["0x0055354f80275a5fc29d43feed8ce64701579cad"], "sol_addresses": []}}', '{"{\"url\":\"https://www.dazeddigital.com/music/article/62542/1/rinse-fm-at-30-an-oral-history-of-the-notorious-east-london-radio\"}","{\"url\":\"https://soundcloud.com/rinsefm/jyoty140418\"}"}', NULL), - (1165904, '0x5464f72b7c1d48fb3e4f9814e8fde4b136035cad', 16732, 1, '2024-05-11 11:35:11+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 3774, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 501, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2e3Ea0o24lReQFR4FA7yXH?si=reOXdq2iSLmC_nuJ_SWYFw\"}"}', 'bangers'), - (1165916, '0xae0d4b704ac834a502699da4e5b5f6369dfd39d0', 0, 1, '2024-05-11 12:47:49+00', 0, 0, '{"fid": 24178, "object": "user", "pfp_url": "https://i.imgur.com/FsB13vJ.jpg", "profile": {"bio": {"text": "engineer, 3d animator, art collector, trash coder, VIP, radish farmer, nanoguy.eth✨⚛️🎵🖥️", "mentioned_profiles": []}}, "username": "nan0", "power_badge": true, "display_name": "nano", "active_status": "inactive", "verifications": ["0x0055354f80275a5fc29d43feed8ce64701579cad"], "follower_count": 273, "custody_address": "0x71a746e32ebccd4e26df3e3b8459c94b63da0e05", "following_count": 136, "verified_addresses": {"eth_addresses": ["0x0055354f80275a5fc29d43feed8ce64701579cad"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/plastician/plastician-w-djemba-djemba\"}"}', NULL), - (1165921, '0x77bb077a83e9b48f3d99248db0bf09e957cb3f7a', 0, 1, '2024-05-11 13:39:42+00', 0, 0, '{"fid": 4407, "object": "user", "pfp_url": "https://i.imgur.com/kynnpYw.jpg", "profile": {"bio": {"text": "The Farcaster formerly known as Kchamp. Books, beats, bodybuilding, bright ideas and beautiful things.\n\nkatherinechampagne.com ", "mentioned_profiles": []}}, "username": "keccers.eth", "power_badge": true, "display_name": "Katherine", "active_status": "inactive", "verifications": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "follower_count": 85054, "custody_address": "0xe4c5b20fd2168af6fe9d74e3e46f55f12684567f", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6TOhXLevQUI4fjrxLL1nJE?si=dH48eFs1TmCqHura_TG1Ow\"}"}', NULL), - (1165923, '0x805dc08aff973c0d65c52c9ff758e0e0c642c6a5', 0, 1, '2024-05-11 13:47:38+00', 0, 0, '{"fid": 4407, "object": "user", "pfp_url": "https://i.imgur.com/kynnpYw.jpg", "profile": {"bio": {"text": "The Farcaster formerly known as Kchamp. Books, beats, bodybuilding, bright ideas and beautiful things.\n\nkatherinechampagne.com ", "mentioned_profiles": []}}, "username": "keccers.eth", "power_badge": true, "display_name": "Katherine", "active_status": "inactive", "verifications": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "follower_count": 85054, "custody_address": "0xe4c5b20fd2168af6fe9d74e3e46f55f12684567f", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/67MoDnJtywQsAS6Bovvuon\"}"}', NULL), - (1165898, '0x12a91531219547b38755e1bc49f6d84b3400492f', 1500, 1, '2024-05-11 10:16:24+00', 0, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2374, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 927, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/niki72488016/evisbeatsmv-feat?si=c4e4106cc03c4a25a837f9786d4c5500&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing#t=0%3A27\"}"}', NULL), - (1176335, '0x55c258df87d57e6f1ff821f7d40dfca9bda14317', 0, 1, '2024-05-17 04:50:24+00', 0, 0, '{"fid": 14537, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/"}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1953, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 980, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/agablis/releases\"}"}', 'soundxyz'), - (1165922, '0xba3e868ff427449ff195fc0b1ef682a088d5aa02', 1000, 1, '2024-05-11 13:44:03+00', 0, 0, '{"fid": 4407, "object": "user", "pfp_url": "https://i.imgur.com/kynnpYw.jpg", "profile": {"bio": {"text": "The Farcaster formerly known as Kchamp. Books, beats, bodybuilding, bright ideas and beautiful things.\n\nkatherinechampagne.com ", "mentioned_profiles": []}}, "username": "keccers.eth", "power_badge": true, "display_name": "Katherine", "active_status": "inactive", "verifications": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "follower_count": 85054, "custody_address": "0xe4c5b20fd2168af6fe9d74e3e46f55f12684567f", "following_count": 1112, "verified_addresses": {"eth_addresses": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0JN7vUgUolHGHFrOR8xk7S\"}"}', NULL), - (1165947, '0x6d0551f960692fcb7a7d0505e8496fe680c23fa9', 0, 1, '2024-05-11 15:09:38+00', 0, 0, '{"fid": 235192, "object": "user", "pfp_url": "https://wearables.crvox.com/19e22881-d9d4-4608-a092-a7ed67e2c85a-it-s-not-me-glasses.gif", "profile": {"bio": {"text": "Senior Web Dev (For Hire) • Metaverse Nomad • Class of 2020 • Mug Dispenser at Franky''s Tavern in DCL @ juxton.land • Host /mugclub • linktr.ee/juxton", "mentioned_profiles": []}}, "username": "juxton.eth", "power_badge": true, "display_name": "juxton", "active_status": "inactive", "verifications": ["0xd4f20b86ab05e5e91cecfefe874657b0f7bfc87d"], "follower_count": 465, "custody_address": "0xfc75bb4e7202cd74d40031936402e84e9379f85a", "following_count": 229, "verified_addresses": {"eth_addresses": ["0xd4f20b86ab05e5e91cecfefe874657b0f7bfc87d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77qIucqhEJMq8OmMzTofJ5?si=0ccd47a9cc484c6f\"}"}', 'punkrock'), - (1165924, '0x5f0fe8012ac2d151a02a78e9ee44c60321154087', 1100, 1, '2024-05-11 13:54:39+00', 0, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: /blurred-lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 492, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 170, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0GdWI9k2h0PzW6x2kAhXeI?si=8kWgbHy6QZKzm4KLA6DlEA&context=spotify%3Aalbum%3A2mwjp35FHpj726XhNWOOen\"}"}', NULL), - (1165925, '0x2a3e49f1b772c6a91dbcf1642e520a704dd40097', 250, 1, '2024-05-11 13:55:24+00', 0, 0, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. ", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 5985, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2586, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/jgpBibJErPMMEbNX7\"}"}', 'rock'), - (1165929, '0xb5ab9be0626bb7d8825016b633132aeff14b100d', 1050, 1, '2024-05-11 14:15:28+00', 0, 0, '{"fid": 385387, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6d5095a2-50ef-41e8-e8f0-5fbc144ed200/original", "profile": {"bio": {"text": "lawyer but (probably) not your lawyer - WSGR & Gunderson alum / on-chain since EtherDelta / CtG S2 finalist", "mentioned_profiles": []}}, "username": "vizualobserver", "power_badge": true, "display_name": "Viz 🧾", "active_status": "inactive", "verifications": ["0x09641015fb8b08388a7367b946e634d37dddffaa"], "follower_count": 315, "custody_address": "0xb9d78931f736fa9018b78d9b373fe8587be6a96a", "following_count": 497, "verified_addresses": {"eth_addresses": ["0x09641015fb8b08388a7367b946e634d37dddffaa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6lFZbCc7pn6Lme1NP7qQqQ\"}"}', NULL), - (1165945, '0x19650461b7cd40b071029222625c46341801fc5e', 1100, 1, '2024-05-11 14:53:23+00', 0, 0, '{"fid": 20323, "object": "user", "pfp_url": "https://i.imgur.com/HLVAXTS.jpg", "profile": {"bio": {"text": "Crypto Research at American Express. /yellow", "mentioned_profiles": []}}, "username": "0x0neill.eth", "power_badge": true, "display_name": "0x0neill.eth 🛡️", "active_status": "inactive", "verifications": ["0xe13ee4df81868304b4a4ba21ca0da6dc59de48be"], "follower_count": 340, "custody_address": "0x903081f733f277fcb29fe0e757f5ae361a02559e", "following_count": 378, "verified_addresses": {"eth_addresses": ["0xe13ee4df81868304b4a4ba21ca0da6dc59de48be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6HhFgEBHu25b8gy8Bl4eG0?si=g5nJh-F7RxqpxdvGhwhj1w&context=spotify%3Aalbum%3A1J60iwLlrXqJokziB4h19U\"}"}', NULL), - (1166015, '0x345e389c6740e5872d3347a4d2829a86394c4d8f', 4333, 1, '2024-05-11 19:04:53+00', 100, 0, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 2185, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 429, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3U100F4pytAROBRdljmOZN?si=866b13a3b60542ed\"}"}', 'sonata'), - (1176336, '0x5bd73b32a8784cbd36889a7282891886c8211c2c', 0, 1, '2024-05-17 04:51:12+00', 0, 0, '{"fid": 14537, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/"}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1953, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 980, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/fde671b8-e07a-4ce8-9ce7-f341d155d7be\"}"}', 'soundxyz'), - (1176337, '0x7a62e9784991cb1d1913a2ecd1242884cd83635c', 0, 1, '2024-05-17 04:50:56+00', 0, 1, '{"fid": 7408, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/xyH0Yar.gif", "profile": {"bio": {"text": "/the northern nightmare"}}, "username": "emush", "power_badge": true, "display_name": "emush🎩", "active_status": "inactive", "verifications": ["0xb8ac952dcdfd1e77222213ae508ad8864dc391b4"], "follower_count": 2515, "custody_address": "0x8364089ef4452ea75b14b1a0094bb04320b30400", "following_count": 1132, "verified_addresses": {"eth_addresses": ["0xb8ac952dcdfd1e77222213ae508ad8864dc391b4"], "sol_addresses": ["B29X6ec9yHeFHSNMpdXfcWYScAjKyt2w6yL6bGYbGETM"]}}', '{"{\"url\":\"https://open.spotify.com/track/6HrRqbT6lIFJa8grf7vYNO?si=bsa73mRfS9ibL-Xbg3B76w\"}"}', 'japanese-music'), - (1165525, '0x301f4f9dffc966c489f94af87292bc2a8cafd4e4', 3310, 1, '2024-05-10 18:38:06+00', 0, 0, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 509, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 138, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/59WN2psjkt1tyaxjspN8fp?si=ccBOdNv_T9uaJZUHhoCLhw&context=spotify%3Aartist%3A2d0hyoQ5ynDBnkvAbJKORj\"}"}', NULL), - (87282, '0xec5418594e911efe32a9177543f2e4f5801fb379', 2110, 1, '2024-05-05 00:37:57+00', 0, 0, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 111, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://www.sound.xyz/agablis/soulquake?referral=0x94734e11b78680a35b0a86ba3ce634d334d6d2a7\"}"}', 'soundxyz'), - (1165990, '0xf35855c00e8f43a16eb6e68c9e44dcf40632cef4', 2010, 1, '2024-05-11 16:44:08+00', 0, 0, '{"fid": 245024, "object": "user", "pfp_url": "https://i.imgur.com/JkyySHx.gif", "profile": {"bio": {"text": "web3 degen | rock lover | hosting Rock Music channel: https://warpcast.com/~/channel/rock", "mentioned_profiles": []}}, "username": "calisay", "power_badge": true, "display_name": "Calisay", "active_status": "inactive", "verifications": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "follower_count": 332, "custody_address": "0xbc218297a4e18c050252b4e527d13de104111085", "following_count": 241, "verified_addresses": {"eth_addresses": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/la-guns/over-the-edge-album-version?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'rock'), - (1165956, '0x68a78d9a51af768dff7f5ee836e5f3ea314da1f7', 1000, 1, '2024-05-11 15:21:14+00', 0, 0, '{"fid": 2126, "object": "user", "pfp_url": "https://eigen-layer.s3.us-east-1.amazonaws.com/tokens/7941.png", "profile": {"bio": {"text": "figuring things out. Casts are my public notes. ", "mentioned_profiles": []}}, "username": "ananthsridhar.eth", "power_badge": true, "display_name": "Arjun ", "active_status": "inactive", "verifications": ["0x270de0ae1bef06d1de5cdbdcf411357f5784ed2e"], "follower_count": 812, "custody_address": "0x4f09640c3a9855cce73c65302751bca76ae78cc4", "following_count": 1367, "verified_addresses": {"eth_addresses": ["0x270de0ae1bef06d1de5cdbdcf411357f5784ed2e"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/abBUoEj89kbQr3yx9\"}"}', NULL), - (1166003, '0xfe550f8ed153509cefeea76bb09d8b1ba448ef4e', 100, 1, '2024-05-11 17:42:52+00', 1, 1, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3919, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 302, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1d432dbe-2979-443a-094e-3cbbe619c500/original\"}","{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=HGeejEAUT_G0YZD6O9gixg\"}"}', 'paidgroup'), - (1166007, '0xb03d16d8cfae42e2061162d409296f3aca21bb12', 0, 1, '2024-05-11 18:03:41+00', 0, 0, '{"fid": 8794, "object": "user", "pfp_url": "https://i.imgur.com/RHJBkb5.jpg", "profile": {"bio": {"text": "Account about nothing | Researcher | @safe Guardian 🔰 | ISO 8601 maxi 🕗", "mentioned_profiles": []}}, "username": "adamhurwitz.eth", "power_badge": true, "display_name": "Adam", "active_status": "inactive", "verifications": ["0x0b948efb1b515d8071363a210c362297d2c9db67"], "follower_count": 613, "custody_address": "0x81c971693136dd8574d373e9e1bffd48892a0bec", "following_count": 113, "verified_addresses": {"eth_addresses": ["0x0b948efb1b515d8071363a210c362297d2c9db67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2QfX9Pdz3q66fN3kCXl0Js?si=36f9e4ad73624077\"}"}', NULL), - (1165566, '0x9f7e0d7e0bca9fb3fb98dbba906e3dca7d91a97e', 2210, 1, '2024-05-10 20:49:35+00', 1, 3, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3821, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 299, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c18044c2-6d35-4464-f43d-cdf5e4504400/original\"}","{\"url\":\"https://open.spotify.com/track/5vLAsShVUvp7mTpUdoiFqJ?si=Y2hOgKyqSCuY3BcjBjYmHQ&context=spotify%3Aalbum%3A6tLZbSs5l6xOdSK5eME8FK\"}"}', NULL), - (1176340, '0xcf5cfe31895b66435358b51d3e6f80aacc57d40f', 0, 1, '2024-05-17 05:23:18+00', 0, 0, '{"fid": 245579, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️"}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3944, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1020, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A5PYC\"}"}', 'sonata'), - (1166014, '0x7e1fa553b3793c65346f4d3af056933004993fd7', 0, 1, '2024-05-11 19:05:33+00', 0, 0, '{"fid": 15789, "object": "user", "pfp_url": "https://i.seadn.io/gae/CWL9_JIDIsR-rBDm3eOt2dcfm9QaSW8YhyWmiH9GzoALeW5yZrJiV6nzBGxLuzYNEf8dFU8xDjq2hj4arbKcGwjZ5Kog4igt1ewW?w=500&auto=format", "profile": {"bio": {"text": "Photographer, Digital Artist, maker of music\n\nhttps://linktr.ee/seanmundy\n\nMod & host of /concept-photo\n", "mentioned_profiles": []}}, "username": "seanmundy", "power_badge": true, "display_name": "Sean Mundy 🎩", "active_status": "inactive", "verifications": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "follower_count": 2185, "custody_address": "0x8ad71f5c9e5d0cc7e2fc203a1b5d8a7bdb7fcab5", "following_count": 429, "verified_addresses": {"eth_addresses": ["0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3U100F4pytAROBRdljmOZN?si=866b13a3b60542ed\"}"}', NULL), - (1166012, '0xea8de8cd0392f45eeeed6053e43afb0595431dd7', 1000, 1, '2024-05-11 18:21:59+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 and /downshift ⚙️", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3461, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 644, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4PSq1vPPpzEpVfwLCadN9j?si=92e4d2308b724be0\"}"}', 'campfire'), - (1166008, '0xf5cfeb287fe7397691d69d62419eddd05808b2f9', 300, 1, '2024-05-11 18:06:07+00', 2, 2, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 3928, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 302, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dyl/dyor\"}"}', NULL), - (1176341, '0x564e25a2dc4f892ac1e304cada5ff6e4e35b27b4', 0, 1, '2024-05-17 05:38:50+00', 0, 0, '{"fid": 326920, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks"}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🇯🇵💿", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1164, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1014, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1ulVKX61ePVrT81RLFqrOj?si=af433e850d8d4f3d\"}"}', 'clique-tracks'), - (1166017, '0xa41da70fe7589171633de4f69856d1fc05149e98', 0, 1, '2024-05-11 19:12:44+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1723, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f9269686-5266-41c5-8736-9a25836af31d?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/dyl/dyor?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'replyguys'), - (1166018, '0xcb7313a7395c742b3e489f12765c20785060234c', 0, 1, '2024-05-11 19:12:16+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1723, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f9269686-5266-41c5-8736-9a25836af31d?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/dyl/dyor?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'soundxyz'), - (1166019, '0x1b68dfafb8a7b0de27f6e82f49fc4585f1111f6c', 0, 1, '2024-05-11 19:11:57+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1723, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f9269686-5266-41c5-8736-9a25836af31d?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/dyl/dyor?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (1166021, '0xaae232a43f867cf4884105767a5fab095f7a2737', 0, 1, '2024-05-11 19:12:55+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1723, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f9269686-5266-41c5-8736-9a25836af31d?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/dyl/dyor?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'replyke'), - (1165538, '0xbdee0ccd0e13c736b285e88a53b43d3af2fab2c2', 1100, 1, '2024-05-10 19:00:10+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1884, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 970, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/much-love?referral_source=link\"}"}', 'soundxyz'), - (1166029, '0x80d74b3084a1fe262676216ae29ca05e6ed70fb7', 0, 1, '2024-05-11 20:53:10+00', 0, 0, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 4938, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 363, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7221xIgOnuakPdLqT0F3nP?si=a4220188f7d84848\"}"}', 'bangers'), - (1161593, '0x23526db999e1f683f71e977222557d1180e92448', 1000, 1, '2024-05-09 00:44:11+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1524, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 319, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', NULL), - (1166049, '0x92a6b121c4c08dc0e524ebce6eb5cc740c987590', 0, 1, '2024-05-11 21:55:45+00', 0, 0, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 698, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 242, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1sai7MWjXTEe8vaBa4OEy1?si=Bw2J6Mz6QH6P2Ikd077oFw&context=spotify%3Aalbum%3A2bwyHN2Y9iljWbUZYPXMrC\"}"}', 'bangers'), - (1166050, '0x42ab9e55affde50d2688c64353afdd578d7d9ad7', 0, 1, '2024-05-11 21:57:06+00', 0, 0, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full stack artist 🖌️⚡️🎵\nBuilding ORIGIN STØRIES a creative tech studio (FIB, VPM , REFUSES)", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 692, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/49R1F3rIdSzuPk7AcHi6d1?si=crQdMjWJT7iPNJjpZ662hQ\"}"}', 'eurovision'), - (1176157, '0xa8feb3c93382b33a93e546c4c2bec3c3f40058bc', 2500, 1, '2024-05-16 20:56:34+00', 0, 1, '{"fid": 238853, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a59d05-ac7c-4a6b-f4d3-0b52f78f9b00/original", "profile": {"bio": {"text": "bringing culture onchain. creating virtual artists. building @hume."}}, "username": "db3045", "power_badge": true, "display_name": "DavidBeiner", "active_status": "inactive", "verifications": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "follower_count": 1187, "custody_address": "0xde3cea5bb06f5d18d92a827f0ace525bc714963a", "following_count": 386, "verified_addresses": {"eth_addresses": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/new-location\"}"}', 'sonata'), - (1166048, '0x7d93ec4b6ea136ae153ce971d66c76406a4f6a3e', 1000, 1, '2024-05-11 21:39:32+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 240, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 193, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0FObGp4X2a0YeRR2PY0AwJ?si=Aa2xyJQ6Rs2jr5UNrJWkXw\"}"}', 'soundscapes'), - (1166062, '0xc44e536b0c250635e200f4b5191b5f4fbba5f276', 10, 1, '2024-05-12 00:02:32+00', 0, 0, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 597, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 526, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/memloop/helios?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (1166054, '0xb1b8bece7d6b148ede56cdb45256bf79c4e536ab', 0, 1, '2024-05-11 22:40:21+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1734, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 334, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', NULL), - (1166055, '0x5c62c37078591b0b9bf32ad6725083e50f096673', 0, 1, '2024-05-11 22:40:50+00', 0, 0, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 698, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 242, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3WcC6NH9J77xPEvj1SOL7z?si=ZDzt8YuCR02YbwK6G5r3CA&context=spotify%3Aalbum%3A4Mqt4zRLIwFtZyzh7tAUQE\"}"}', 'bangers'), - (1166058, '0x519813641c3eb51061d027cd35d05e10ed983049', 0, 1, '2024-05-11 23:21:57+00', 0, 0, '{"fid": 9667, "object": "user", "pfp_url": "https://i.imgur.com/ktqNJFY.gif", "profile": {"bio": {"text": "Sample Mangler, Super Emcee, Undisciplined Chord Fumbler, Dynamics Crushing, Beat Hoarder. Collector / Creator of Artifacts\n\n\n\nlinktr.ee/peacepeacegawd\n\n\n", "mentioned_profiles": []}}, "username": "dutchyyy", "power_badge": true, "display_name": "Dutchyyy ", "active_status": "inactive", "verifications": ["0x26ef03a20aaeda8aafcee4e146dc6b328195947c"], "follower_count": 300, "custody_address": "0x5b724272bc727333bc170ab76f60583d6ec60a6b", "following_count": 130, "verified_addresses": {"eth_addresses": ["0x26ef03a20aaeda8aafcee4e146dc6b328195947c"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/snackyrobinson/first-blum-by-blum-08-sleep\"}"}', 'soundscapes'), - (1166059, '0xb6b2a9397eade063de8f2f7a70d95f8a85331aa1', 0, 1, '2024-05-11 23:25:50+00', 0, 0, '{"fid": 9789, "object": "user", "pfp_url": "https://i.seadn.io/gae/TmVq_93ZIKlBQ-FIL7dwMX040NBZRtgcAGDNjgijNtFe058XHMIh0oWQjT5jwTkldWx3xWlEg7_-JeVfV0WvDOFnv2XLJvgrQCYS?w=500&auto=format", "profile": {"bio": {"text": "Defi expert, The075Dao creator, Music Artist, AI, VR/AR Nft artist", "mentioned_profiles": []}}, "username": "bennyj504", "power_badge": true, "display_name": "BennyJ504 🎩🔵", "active_status": "inactive", "verifications": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "follower_count": 479, "custody_address": "0xcf508cb03936e2730a301d49deaf262ddf3a8745", "following_count": 246, "verified_addresses": {"eth_addresses": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bennyj504/hustlers-lament?referral_source=link\"}"}', 'base-builds'), - (1176346, '0x29b3bd30eb4e4a1dcdb8ee8bbfb876674d538c09', 0, 1, '2024-05-17 06:09:46+00', 0, 0, '{"fid": 214841, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/4vS5SkI.jpg", "profile": {"bio": {"text": "Sapiens qui prospicit - Wannabe Polymath. Interested in art, music, history, philosophy and religion."}}, "username": "maurice", "power_badge": true, "display_name": "Maurice", "active_status": "inactive", "verifications": ["0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f"], "follower_count": 777, "custody_address": "0xbf0de1ac8bf65b2e7273f355a3e31df41eed1147", "following_count": 225, "verified_addresses": {"eth_addresses": ["0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/46kGppt1IQGJEtKglM31SR?si=SO4UJhBVROCTIVRpiG6mnw\"}"}', NULL), - (1165986, '0x7c9e7efc55b357620b2064e8d9d962cb8bbfc657', 1000, 1, '2024-05-11 16:10:28+00', 10, 1, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2755, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2206, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7013b93d-7631-4192-e4b1-c27bbb6cde00/original\"}","{\"url\":\"https://on.soundcloud.com/2g3CQkPX7XJ94mTm9\"}"}', 'sonata'), - (1166060, '0x4719e4a8b9024f49d6d1b20833c5dc5639dc6b7a', 0, 1, '2024-05-11 23:46:13+00', 100, 1, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1738, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 334, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove\"}"}', NULL), - (1166061, '0xe7f12f22e46bc1d1248038d5d3a825ccc7117368', 10, 1, '2024-05-12 00:02:21+00', 0, 0, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 597, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 526, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/memloop/helios?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (1176347, '0x48ad1730d502b539b83410089e276267b612ac3b', 0, 1, '2024-05-17 06:14:06+00', 0, 0, '{"fid": 384424, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a0633ede"}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2969, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2244, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/5zmFapaC7WzoBaZp7\"}","{\"url\":\"https://www.youtube.com/watch?v=yzTuBuRdAyA\"}"}', 'sonata'), - (1166067, '0x6e67194498b999690cec1589de14eb49f9831392', 2100, 1, '2024-05-12 00:47:15+00', 100, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 730, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 714, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/hello-95558636/ice-cream-blackpink-selena-3\"}"}', 'sonata'), - (1166013, '0x3c7688299a5ec3daf5032d6354f4ceeecdb14316', 1500, 1, '2024-05-11 18:28:30+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 and /downshift ⚙️", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3461, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 644, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bitsjams/electric-forest-2023-camp-house-plant-dj-set\"}"}', 'campfire'), - (1165599, '0xc74196b103ec1155fc808a4d59b35ba4c0542a9f', 100, 1, '2024-05-11 00:37:03+00', 1, 0, '{"fid": 202360, "object": "user", "pfp_url": "https://assets.bueno.art/images/90f39490-9b88-47b2-abe8-02cc24485762/default/650?s=b2ad2189b6fe47d53fa85ebf5ba8e5c5", "profile": {"bio": {"text": "Residing on base | pfp: Primitives | long all things Proxystudio.eth ⚪️ | Alfafrens https://www.alfafrens.com/channel/0x220d3c860dd793a3e7c564aabf54aa87df391feb", "mentioned_profiles": []}}, "username": "melllow.eth", "power_badge": true, "display_name": "Melllow 🎩⚪️🧾🍖", "active_status": "inactive", "verifications": ["0x67a79badea1c3648c02116be4357a30e1835a811"], "follower_count": 560, "custody_address": "0x48df660f658ae47319b624c69e8175e762ab44be", "following_count": 634, "verified_addresses": {"eth_addresses": ["0x67a79badea1c3648c02116be4357a30e1835a811"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tommyrichmann/million-dollar-baby?utm_source=mobi&utm_campaign=social_sharing\"}"}', NULL), - (1166081, '0x2e8b752c08e48ca33388972bb08800f518dffe00', 1100, 1, '2024-05-12 01:15:12+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 243, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 194, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7DRm8WnYYJcNgovTZVZDwl?si=xHNhv2hSTLmje-ZKvZ3aow\"}"}', 'playlists'), - (1166064, '0x2c2e6d0b82ff55b23fa0aa863670da9f9f4c0905', 1100, 1, '2024-05-12 00:27:11+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30192, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 441, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5HEx0ZwJEmZhvjlrMYnSuf?si=wjLJx4XQQGOjt39XhMl1bg\"}"}', NULL), - (1165727, '0x33729aeb57c711ee554ee8714d74f815c2d27839', 100, 1, '2024-05-11 05:09:29+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2397, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 746, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Kj1TpLA0c8o4wzdyglvGF\"}"}', 'housemusic'), - (1166101, '0x3e5db119783ac11d89eb3b394c63c65c9340a689', 100, 1, '2024-05-12 02:25:32+00', 0, 0, '{"fid": 422559, "object": "user", "pfp_url": "https://i.imgur.com/bzqkQ88.jpg", "profile": {"bio": {"text": "/bugs are friends 𓆨𓆣ᯓᡣ𐭩 \n\n\nhttps://objkt.com/@katipo", "mentioned_profiles": []}}, "username": "katipo", "power_badge": true, "display_name": "katipo 𖦹 ", "active_status": "inactive", "verifications": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "follower_count": 274, "custody_address": "0xbb9cf53b77147b6c4f643a71f9a11bfad879a2b9", "following_count": 231, "verified_addresses": {"eth_addresses": ["0x565f036a2f5a9c4d23194bf1439298bbc06e2af0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4U6kjCi4y7ShL5VjQEYfCC?si=Ngdr2hCjRpOnUIq6hxtOrQ\"}"}', NULL), - (1165627, '0x1ffa190c1b2897e2eeae93e86e820feb218931cc', 1000, 1, '2024-05-11 02:04:26+00', 10, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 314, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 264, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3r8RuvgbX9s7ammBn07D3W?si=_0XdK8V6SbycDsEFBsPeyQ&context=spotify%3Aplaylist%3A37i9dQZF1E4xGcU10nFpkR\"}"}', 'bangers'), - (1166063, '0x3e04abbacf0e0be7b6ac75c7ab399f2b7fb29adc', 1010, 1, '2024-05-12 00:23:02+00', 10, 1, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3814, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1754, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/PrwwKgRbXnUzT1Mf7\"}"}', 'sonata'), - (1165926, '0xd663862b9cac3e17c0eeef26f657791cfc1277d7', 1200, 1, '2024-05-11 14:00:01+00', 10, 0, '{"fid": 218814, "object": "user", "pfp_url": "https://i.imgur.com/CG6oTyL.jpg", "profile": {"bio": {"text": "Founder: /blurred-lines • Day job @ YouTube • co-host: /fashion• Passionate about tastemakers, world-building & putting culture onchain\nBlurredLinesCH@gmail.com", "mentioned_profiles": []}}, "username": "melknee", "power_badge": true, "display_name": "Melanie McClain", "active_status": "inactive", "verifications": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "follower_count": 492, "custody_address": "0xe12d373d7c4f40a6ddea0e8d69035b61e7c0f9e3", "following_count": 170, "verified_addresses": {"eth_addresses": ["0x414531e74c58b4a5c5c998b18fbe819a70d78f30"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/byhaze/feel-good?referral=0x414531e74c58b4a5c5c998b18fbe819a70d78f30&referral_source=link\"}"}', NULL), - (1166164, '0xe684b02aabac9203d139fc0a00d9c076ecb10c3f', 1100, 1, '2024-05-12 04:54:22+00', 0, 0, '{"fid": 14515, "object": "user", "pfp_url": "https://i.imgur.com/ipJRbGn.gif", "profile": {"bio": {"text": "Playfully Controversial | Art in All The Fancy Places | Destigmatize | #cc0 |\nrc.xyz/empresstrash\nbeacons.ai/empresstrash\n/cryptoart\n/trash-art\n/empress-trash", "mentioned_profiles": []}}, "username": "empresstrash", "power_badge": true, "display_name": "Empress Trash 🎩🌈🖤", "active_status": "inactive", "verifications": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "follower_count": 2729, "custody_address": "0x1fe3a27087710e956deab0a498ec7f0f031a7da2", "following_count": 712, "verified_addresses": {"eth_addresses": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "sol_addresses": ["81gcTouikeKU4vtqWKGVuGwBA9yTgM3EbDCquPp6MGXE"]}}', '{"{\"url\":\"https://open.spotify.com/track/4NWpGwfkWMlA7G2ZpFKDXZ?si=26eeaec65e2c49b3\"}"}', NULL), - (1173118, '0x3f78995e9051197b8556ddca4e04ebbbfb4a17e4', 15200, 1, '2024-05-15 02:26:47+00', 0, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2626, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 940, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/gaga-digi/the-black-keys-lonely-boy?si=768cad8de3254c0ca5d88001305a328e&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}","{\"url\":\"https://youtu.be/a_426RiwST8?si=6O4iyTx-XLXSZqFA\"}"}', 'sonata'), - (1173689, '0x827c801cc449e791228e71ca207796bc75a52f24', 4019, 1, '2024-05-16 07:51:15+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2756, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 785, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3PJqKHhoOadu49z2PmkIur\"}"}', 'techno'), - (1173678, '0x76da0f6dec792164a8f37f031f36f1a424a04697', 11700, 1, '2024-05-16 07:20:40+00', 110, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 874, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 728, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/porscheshh/yoasobi-ano-yume-wo-nazotte\"}"}', 'sonata'), - (1165431, '0x86dcd707ff53eaee93f3c22e47b6ad1708b0467b', 100, 1, '2024-05-10 14:07:50+00', 0, 1, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 ", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3404, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 626, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7aw4SIGi131oiPQJ0t4c77?si=899d29ed22df4fe0\"}"}', 'campfire'), - (1165077, '0xb59a9f96cd756cc474f1da0a492b3bc1b2c30436', 1159, 1, '2024-05-09 21:44:31+00', 110, 0, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 497, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 137, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6ERjyW3kpEZN9yHpLIRfxC?si=a8cd435a272044b0\"}"}', NULL), - (1162513, '0xa274e64fe65e080f5bd5dc738c68daa451e736dc', 100, 1, '2024-05-09 06:10:22+00', 0, 2, '{"fid": 9581, "object": "user", "pfp_url": "https://i.seadn.io/gae/lXENY3cJnutJqOMOvW_4QAqP_4rhe8RcHHWJl8gl145IBOSwRUVRS6NDk5wcIgEEAAn_lqDrRB32-xmwWm-N-zYeLR5h_7UFq1MyRg?w=500&auto=format", "profile": {"bio": {"text": "fridays at the park season 002 https://zora.co/collect/base:0x1bbea2cc3b2c41774687fd00684ad12f9a666557/6", "mentioned_profiles": []}}, "username": "thepark", "power_badge": true, "display_name": "the park", "active_status": "inactive", "verifications": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "follower_count": 2359, "custody_address": "0x4d125b80e2217b0cdfb366cfb77b84a3d3a94751", "following_count": 276, "verified_addresses": {"eth_addresses": ["0x589ffbbda0eacd5a9c2ba208b379c886b2630503"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7G07BhMd2IrDD23C0MHsww?si=9aa7cc2f49864672\"}"}', NULL), - (1166082, '0xad5cb0c853274e7894865e01db177cdddceb3541', 20510, 1, '2024-05-12 01:37:59+00', 0, 0, '{"fid": 324876, "object": "user", "pfp_url": "https://i.imgur.com/38VUjUA.jpg", "profile": {"bio": {"text": "artist-producer and founder of web3 music blog iridescent wave 🌊\nhttps://www.celiainsidemusic.com/", "mentioned_profiles": []}}, "username": "celiainside", "power_badge": true, "display_name": "celia inside ", "active_status": "inactive", "verifications": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "follower_count": 303, "custody_address": "0x408f57c90244ba993ef486c57336818bc5d13d25", "following_count": 385, "verified_addresses": {"eth_addresses": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2RdEC8Ff83WkX7kDVCHseE?si=3c9779b04e524902\"}"}', 'gaycoinz'), - (1166137, '0x4c7103521023ca560183928aa188f69aac68989b', 1200, 1, '2024-05-12 04:25:06+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNot a single meme is mine probably\n\n\n\n\n\n\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 534, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/badley/fool\"}"}', NULL), - (1176327, '0x22dd23fd03c4dcb9d2bf4364944c8da88a375d54', 1000, 1, '2024-05-17 04:22:48+00', 0, 0, '{"fid": 387246, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ "}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 933, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 976, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7znjbX9XdoQayIrVNdd50Z?si=DIHnoWPcS924eE3uOnujbA\"}"}', 'jazz'), - (1166406, '0x3930e6e9fa4bc7d704e3878ff757d8dcb9bdcbab', 1000, 1, '2024-05-12 16:09:08+00', 0, 0, '{"fid": 270714, "object": "user", "pfp_url": "https://i.imgur.com/Pg9GjuQ.jpg", "profile": {"bio": {"text": "head bopper extraordinaire", "mentioned_profiles": []}}, "username": "vinogarden", "power_badge": true, "display_name": "Matti", "active_status": "inactive", "verifications": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "follower_count": 295, "custody_address": "0x3f8b8010e1b4eed7d86e1a9a3db1be751271c57d", "following_count": 330, "verified_addresses": {"eth_addresses": ["0xeea0471cfcaed2f83117a2660b3d21738d478990"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3icQv6mDRbFuJiErdKmhZ1?si=d6e1af0cea5849cc\"}"}', 'housemusic'), - (1166066, '0xf99b998b684ce17c48156fc3a64470bba867f814', 100, 1, '2024-05-12 00:33:54+00', 10, 0, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full stack artist 🖌️⚡️🎵\nBuilding ORIGIN STØRIES a creative tech studio (FIB, VPM , REFUSES)", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 692, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 318, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6fp6OgPkpioAcx7jSpzcs7?si=6WOtDio4Q3ynZHhwwCyXoQ&context=spotify%3Aalbum%3A1i4h8WVN36gIMvJoXorRWe\"}"}', 'sonata'), - (1166208, '0x0f69dfbcf37d701eccfadc2384591109f91cf07d', 1030, 1, '2024-05-12 05:37:11+00', 121, 2, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2772, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2207, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2332fedd-85e9-4958-70e7-201b11ba1600/original\"}","{\"url\":\"https://on.soundcloud.com/62od4gfk8a5ncTtL7\"}"}', 'sonata'), - (1166209, '0x8d58c83542729cde11071ad2ea15e9661b6a48dc', 100, 1, '2024-05-12 05:52:05+00', 100, 1, '{"fid": 416087, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/57a72886-c3f3-4814-f359-a8579d579a00/original", "profile": {"bio": {"text": "Might be a punk\nA real degenerate\nNot employed \n\n\nKeep the dream alive: https://www.alfafrens.com/channel/0xCE64705563D0E6247e06D171f858115689EB6e66", "mentioned_profiles": []}}, "username": "mingming13.eth", "power_badge": true, "display_name": "Ming🫂🎩🧾👉", "active_status": "inactive", "verifications": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "follower_count": 2548, "custody_address": "0x06cb72dd275166d936e56293c5b02e592bc0da47", "following_count": 2200, "verified_addresses": {"eth_addresses": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/kla-28/untitled-how-could-this-happen\"}"}', NULL), - (1166210, '0xd990e786ebac19bb2ae422aa4cb45238ebe13dc6', 0, 1, '2024-05-12 06:14:58+00', 100, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 489, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 695, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/25zlnOAzbVoOzIeXSvQFf1?si=TJKiHXneQ3KmAH7kuKGeCw\"}"}', 'bangers'), - (1165900, '0x8ce31b0f7a123d5963bdfe064ea59625d49660c1', 1000, 1, '2024-05-11 10:55:14+00', 51, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3625, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 484, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/hVUb8byzP1RyQAUf8\"}"}', 'sonata'), - (1166201, '0xdbbb5d4b22f087e3e821ced4c7a723b5f0e476b0', 1050, 1, '2024-05-12 05:21:17+00', 0, 0, '{"fid": 229042, "object": "user", "pfp_url": "https://i.imgur.com/Tb2VGnD.png", "profile": {"bio": {"text": "“The Crypto AI Guy”\n\nAngel 😇\n\nEntrepreneurial Guesser", "mentioned_profiles": []}}, "username": "toptickcrypto", "power_badge": true, "display_name": "Top Tick Crypto🎩💩", "active_status": "inactive", "verifications": ["0x99dc0e0e23ed468d3fe6dac0f71d67c1059b3920", "0x2fcc020f72e5d2edd2a24d04f3dc90d7fdfbd1dd", "0x7e3b9e461d1ccd4d0ec4cf09fc1de9d6d4e335ac", "0x031b329ef376d1362a7a76be7ab0b358671c9d8c", "0x8cdf1b6cfb693db9e171a1b9dda88c257e68638c"], "follower_count": 877, "custody_address": "0x006c71a4e7b44904bc150bebc3c3edbbd3079a7f", "following_count": 201, "verified_addresses": {"eth_addresses": ["0x99dc0e0e23ed468d3fe6dac0f71d67c1059b3920", "0x2fcc020f72e5d2edd2a24d04f3dc90d7fdfbd1dd", "0x7e3b9e461d1ccd4d0ec4cf09fc1de9d6d4e335ac", "0x031b329ef376d1362a7a76be7ab0b358671c9d8c", "0x8cdf1b6cfb693db9e171a1b9dda88c257e68638c"], "sol_addresses": ["6xbV17oHY3srdRb6jPmVWwUug31Nb1wC6td7XkxjcZPk"]}}', '{"{\"url\":\"https://open.spotify.com/track/3LE32FAgsrDfVoj7fNHGFv?si=60c1579e541f4750\"}"}', 'housemusic'), - (1165959, '0x5505cf06729b62459ffd10cbafeb1444454bbe5d', 1351, 1, '2024-05-11 15:30:43+00', 60, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 664, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 453, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5eLQpl37psEDaLToB8PVAq?si=OPWyEv7_QJ268gdTjU2zOA\"}"}', 'sonata'), - (1166113, '0xc9b03d36b9c1e93cf39a343dbc27897c296c3da7', 2200, 1, '2024-05-12 03:02:21+00', 10, 0, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 613, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 107, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4eJXH4tss0nwgHlaPqMwSc?si=BGHBN-daTuS0OGMpq2FHqA\"}"}', NULL), - (1166298, '0x06785bf87f0c56b692b4deb4c75fb1fda340457e', 3222, 1, '2024-05-12 09:37:50+00', 0, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 516, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 705, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7jqzUrQlx59stbR6fNebwW?si=x5qx1LNFS7WzptnW3quE_A\"}"}', 'bangers'), - (1166289, '0x240aa1a1ce3356ee8fb962687e2fc9d20380482f', 1000, 1, '2024-05-12 08:52:14+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 404, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1biA0bTccdmzKMTHphnIQg?si=-p_nMN96QrqwVw1X9-0vgw&pi=e-tEPKeK69Tu29\"}"}', NULL), - (1166291, '0x6c57a2cff48b5c28a318fbefc218ae98dd4b44e3', 1000, 1, '2024-05-12 08:58:19+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 404, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5KgDztq0q1kEO4UXVDCrID?si=8dVltevnT-26YyIxpYTs2w&context=spotify%3Aalbum%3A2yix6ciimzalVAJKBnQd0t\"}"}', NULL), - (1166274, '0x1a663e2206b5a468aa0e3da0f67cd4d6d4f147d4', 2500, 1, '2024-05-12 07:26:20+00', 0, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 739, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 716, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/tbkpns/fujiikaze_flower_tbkbootleg\"}"}', 'sonata'), - (1166803, '0x2d5724afa1c674e714217d378e3b7bb9751adc72', 0, 1, '2024-05-13 01:59:12+00', 0, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 768, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 718, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/search?q=LUNA%20SEA%E3%80%80I%20For%20You\"}"}', 'sonata'), - (1166820, '0x10ff8934fa6f6df61651ad34a1a73b62b8573255', 0, 1, '2024-05-13 03:32:26+00', 0, 0, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30372, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 449, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Jl0mQEHMn82Ed0SBuEdu8?si=7BQiyaL1Roe0Ih48XBXBwQ\"}"}', NULL), - (1166349, '0x90e9df0561d545967f77ab457436fbaa7205e08a', 5343, 1, '2024-05-12 14:34:27+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 406, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/06PMrP6azkJ6IgyuVBaLlj?si=QYa3PsNRRNCoDvroG0gfOw\"}"}', 'soundscapes'), - (1166334, '0x858493602985475e7d74989dfab88543ebb34d63', 0, 1, '2024-05-12 11:50:42+00', 0, 0, '{"fid": 191326, "object": "user", "pfp_url": "https://i.imgur.com/e9Gba3p.png", "profile": {"bio": {"text": "Building Onchain Arcade Shits like @triviatech, @DoubleBubble_gg, @farme-club, and #cryptoludens.", "mentioned_profiles": []}}, "username": "0xtouyan.eth", "power_badge": true, "display_name": "0xTouYan at FarCon 2025 Tokyo", "active_status": "inactive", "verifications": ["0xf5709071a0ae5c03d03e90ca9da5b82956354cbc"], "follower_count": 271, "custody_address": "0xc327bdc72944140cc84c691b05f82d2e4b42e36d", "following_count": 353, "verified_addresses": {"eth_addresses": ["0xf5709071a0ae5c03d03e90ca9da5b82956354cbc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4AE7Lj39VnSZNOmGH2iZaq?si=TVS0Abe_QXOHFt6yDuesKQ\"}"}', NULL), - (1166351, '0xe639905afbac0c1545f0822790bdb7efb99a63ad', 70, 1, '2024-05-12 14:38:35+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1795, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 335, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral=0x745793487a535ef578567de19be1b1e011589bac\"}"}', 'soundxyz'), - (1166318, '0x869b7f54e3cc36f6368daaf6f2fbb3fcceb391db', 5222, 1, '2024-05-12 09:40:44+00', 0, 0, '{"fid": 368021, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/cec3a7e3-69ed-46e2-5bfa-08298366fd00/original", "profile": {"bio": {"text": "Thunderclappin’ cheeks.\n⚡️👏🍑 ⚡️ Gotta clap ‘em all!\n\n\n/spin2win ", "mentioned_profiles": []}}, "username": "raichu.eth", "power_badge": true, "display_name": "raichu.eth 🆓 🎩 ☔️ 🌀", "active_status": "inactive", "verifications": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "follower_count": 3904, "custody_address": "0xa4f8c598aec2627fc546265385e7470bdef34550", "following_count": 723, "verified_addresses": {"eth_addresses": ["0xd277938edcb283c080a22c1832fe1de40898735f", "0xa1027632c4dbc44aa37a15f2ec76fe688e7fd83f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5W7xC99N2Zzfh69r7I7zWK?si=dB8fTR_bRpyCKaQ24AJcBw\"}"}', 'bangers'), - (1166335, '0xb1bf6466fe53767c70b24ac1a9eae784104d5ce3', 2000, 1, '2024-05-12 11:56:58+00', 0, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3668, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 485, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/091867c6-a74a-4498-e327-871fcd5de100/original\"}","{\"url\":\"https://open.spotify.com/track/5eSllZgRWCIJsDTAqFRwQw?si=LpAoQUX2SrOoG5ghc6_RAg\"}"}', 'sonata'), - (1166320, '0xde0c6ac9d09b1251d76a8885fb956d23dceda75e', 2000, 1, '2024-05-12 09:40:58+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2511, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 766, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4YOixxEQ37yJAk8oCeayMt\"}"}', 'sonata'), - (1176358, '0xb3d8c4cc7248bec8ba4fa678b894464d07584291', 0, 1, '2024-05-17 07:37:45+00', 0, 0, '{"fid": 414203, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0fde924f-ef21-4d9c-7153-bfc2cd5c3800/original", "profile": {"bio": {"text": "one song at a time / chief noise maker @ seraphim outputs / @fabric Hypersub Accelerator member"}}, "username": "gabrieloutside", "power_badge": true, "display_name": "gabrieldotwav.eth", "active_status": "inactive", "verifications": ["0xa7b03ec56514ed687e89e900ac32a5ff6df7c74e"], "follower_count": 36, "custody_address": "0x35be5c9b9540c178fa430d068fbafa803a12f4f4", "following_count": 35, "verified_addresses": {"eth_addresses": ["0xa7b03ec56514ed687e89e900ac32a5ff6df7c74e"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7HnkwRI6NTKGMXM5PhKEtp\"}"}', 'seraphim'), - (1166342, '0xb1798e481b9102de295854c493c58bc2a01251fe', 0, 1, '2024-05-12 14:10:48+00', 0, 0, '{"fid": 9789, "object": "user", "pfp_url": "https://i.seadn.io/gae/TmVq_93ZIKlBQ-FIL7dwMX040NBZRtgcAGDNjgijNtFe058XHMIh0oWQjT5jwTkldWx3xWlEg7_-JeVfV0WvDOFnv2XLJvgrQCYS?w=500&auto=format", "profile": {"bio": {"text": "Defi expert, The075Dao creator, Music Artist, AI, VR/AR Nft artist", "mentioned_profiles": []}}, "username": "bennyj504", "power_badge": true, "display_name": "BennyJ504 🎩🔵", "active_status": "inactive", "verifications": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "follower_count": 480, "custody_address": "0xcf508cb03936e2730a301d49deaf262ddf3a8745", "following_count": 246, "verified_addresses": {"eth_addresses": ["0x08f38b09777486bac18df882f2b9e9a181e36bc2"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2UyhCkEu7PSP0TMnulFm4h\"}"}', NULL), - (1166343, '0x30ca7060ec4b46815b8be6591b2c73433b62d302', 0, 1, '2024-05-12 14:12:30+00', 0, 0, '{"fid": 243719, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/92a7c9fb-8693-4194-5038-eba578b06400/original", "profile": {"bio": {"text": "internet native, programmer, tech founder, creator of @degentipbot. producer/dj & host of /campfire 🎧 and /downshift ⚙️", "mentioned_profiles": []}}, "username": "downshift", "power_badge": true, "display_name": "🔽⚙️", "active_status": "inactive", "verifications": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "follower_count": 3491, "custody_address": "0xbac15878e22d525c60ef156f8fc11e598de56462", "following_count": 647, "verified_addresses": {"eth_addresses": ["0x3702205145fac0fb99a9b8bc61e33486c126f155"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4EDhPDlCB6kXwn9q9LpQ0S?si=CXZMmNxMScu3qLFf7Pxnig\"}"}', 'campfire'), - (1166336, '0xa1f39142979f586f2f1b0fa5fa10d73b4cb294f2', 1000, 1, '2024-05-12 13:24:25+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2523, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 767, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5yeXw1L7CqKXkHaJ0W4RrT\"}"}', 'musicjp'), - (1166346, '0xb2828b6e73f6fcd4436a9cd25d7cacaf95145741', 1000, 1, '2024-05-12 14:29:11+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 406, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5FzrXX7WuiRpKSVVzUtIiB?si=ISqokaYzQ2O9y2xmM4ULLA\"}"}', 'real-friends'), - (1166339, '0xfab32e91f4925c330e10295810b68090499e6792', 100, 1, '2024-05-12 14:03:48+00', 0, 0, '{"fid": 197007, "object": "user", "pfp_url": "https://i.imgur.com/EITOCJn.jpg", "profile": {"bio": {"text": "jack of some trades @syndicate, sharing swing /jazz", "mentioned_profiles": []}}, "username": "btayengco", "power_badge": true, "display_name": "Bryce", "active_status": "inactive", "verifications": ["0x7702134be60497e9ce43794759d96792675485fc", "0xfc250eec2732eb615b47793ad216ea634cd039a1"], "follower_count": 513, "custody_address": "0xae05c12e9ef2c5f7ff627b1c5da7bef29c489f62", "following_count": 335, "verified_addresses": {"eth_addresses": ["0x7702134be60497e9ce43794759d96792675485fc", "0xfc250eec2732eb615b47793ad216ea634cd039a1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2hXBS8q9rGMovfG1S8FB4F?si=BA3VNBTITva1o9xRAzRh5A\"}"}', 'jazz'), - (1166344, '0xdd844be5e67e5a4d2eee913ae426f22166b9e8df', 1000, 1, '2024-05-12 14:21:21+00', 0, 0, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4018, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 302, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/edbede09-5b0b-48de-4b66-b3ba7eb61a00/original\"}","{\"url\":\"https://open.spotify.com/track/6qMXubogFdMrvVMJwqATzd?si=6a91d4fbd4bb4f2e\"}"}', NULL), - (1166364, '0x43ad2408e2badca6c83195a522e3f2de4edbe5d2', 1000, 1, '2024-05-12 15:14:49+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 274, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 191, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2P4wRFA7ftewX1JdN3On2K?si=nraPqn7gQ-6rNhR4U68HKw\"}"}', 'trance'), - (1166361, '0x36c7661f0c26e1e3d849c57645897929ff4c73cb', 0, 1, '2024-05-12 15:01:41+00', 0, 0, '{"fid": 235192, "object": "user", "pfp_url": "https://wearables.crvox.com/19e22881-d9d4-4608-a092-a7ed67e2c85a-it-s-not-me-glasses.gif", "profile": {"bio": {"text": "Senior Web Dev (For Hire) • Metaverse Nomad • Class of 2020 • Mug Dispenser at Franky''s Tavern in DCL @ juxton.land • Host /mugclub • linktr.ee/juxton", "mentioned_profiles": []}}, "username": "juxton.eth", "power_badge": true, "display_name": "juxton", "active_status": "inactive", "verifications": ["0xd4f20b86ab05e5e91cecfefe874657b0f7bfc87d"], "follower_count": 471, "custody_address": "0xfc75bb4e7202cd74d40031936402e84e9379f85a", "following_count": 233, "verified_addresses": {"eth_addresses": ["0xd4f20b86ab05e5e91cecfefe874657b0f7bfc87d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5RsGSgBAkCQzTChScLpcux?si=7c50afdcc7994665\"}"}', 'punkrock'), - (1166395, '0xad381659b93e0fa9cadc3ae2a5f0012012a6ea7b', 100, 1, '2024-05-12 15:41:20+00', 0, 0, '{"fid": 297256, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/bdcbf0d0-0caa-4785-a22d-99c51e139200/original", "profile": {"bio": {"text": "O B S E R V E R ⛰️", "mentioned_profiles": []}}, "username": "gora", "power_badge": true, "display_name": "Gora 🎩🔵", "active_status": "inactive", "verifications": ["0x0d9a5b29db1a5d109a3f6e3d3d5141691461d44d"], "follower_count": 419, "custody_address": "0x9e871b60ef873270c931ec2ea7141f24c9926b68", "following_count": 228, "verified_addresses": {"eth_addresses": ["0x0d9a5b29db1a5d109a3f6e3d3d5141691461d44d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4WhyHQ2BXi2VU1iaFbF6jv?si=XbWuxyWwRN-gubNXM9MKgw\"}"}', 'chatbfg'), - (1166338, '0x876ee6ec1360460f57d649696537c75248820443', 1000, 1, '2024-05-12 13:38:51+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 405, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 212, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4HeTRqzQe2x3NvYH6daZl7?si=VrWARoROQAeTgEfLnZxtkA\"}"}', NULL), - (1165544, '0xfbd823987caf4a484c74edf66d697b426ed22c75', 1000, 1, '2024-05-10 19:20:19+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1656, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 323, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/4d60da50-6566-496e-8b30-00e2189653f4?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/lyrah/coming-back?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (1166321, '0x733fe8b3e1635777604e5c7edbeaefdb2688cfaf', 2100, 1, '2024-05-12 09:45:59+00', 10, 1, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2511, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 766, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2gP8u87Ch3DZS1Lat0qGvc\"}"}', 'techno'), - (1166397, '0x6859538989d50a5dc137d1e9f68b5859148dea82', 0, 1, '2024-05-12 15:49:01+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1797, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 335, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral=0x745793487a535ef578567de19be1b1e011589bac\"}"}', NULL), - (1166399, '0x9d19c3fee8f951e4f285554a8b50eb17a2753b28', 0, 1, '2024-05-12 15:55:55+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1797, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 335, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral=0x745793487a535ef578567de19be1b1e011589bac\"}"}', 'theblockexp'), - (1166423, '0xc0ea45409ed9ae362623340abbdb7d8d0c31a387', 2000, 1, '2024-05-12 17:05:29+00', 0, 0, '{"fid": 387246, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d2412aa7-ac74-484d-528b-77a41e5a9700/rectcrop3", "profile": {"bio": {"text": "🍖\n⌐◨-◨\nH͎I͎G͎H͎E͎R͎ ", "mentioned_profiles": []}}, "username": "jaxhope", "power_badge": true, "display_name": "Jaxhope.eth ↑ ⌐◨-◨ 🍖", "active_status": "inactive", "verifications": ["0x907fc75de849646eb8faba840219bd2953902782"], "follower_count": 561, "custody_address": "0xedff8ef61946ee21c69c32960772642ccc0df43d", "following_count": 721, "verified_addresses": {"eth_addresses": ["0x907fc75de849646eb8faba840219bd2953902782"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0vjeOZ3Ft5jvAi9SBFJm1j?si=uA55xV2WTlKcvJEM02CPzA\"}"}', 'bangers'), - (1166417, '0x870b63ff7546ac375d11dd1a7bd8879fee0620ce', 1000, 1, '2024-05-12 16:49:21+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 632, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 611, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6D43oUO6nImERk2psfXdNY?si=Wdb24mqUSquiM88zyTGSFA\"}"}', NULL), - (1166414, '0xbfcfd5ad6f8590a7f46576f0b0a904c81f562279', 100, 1, '2024-05-12 16:21:58+00', 0, 0, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 730, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 242, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4cg1yakyRSIOjxKM2I7J1q?si=bgrBjf8lQUSe3vnnjislCg&context=spotify%3Aalbum%3A4iqbFIdGOTzXeDtt9owjQn\"}"}', 'bangers'), - (1166398, '0x9ded9cd083f9eb9476887b34bf47da7c6e223bf8', 1110, 1, '2024-05-12 15:50:51+00', 10, 1, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#stock/cryptocurrency trader📈 ✨Loving art, fitness 👉🏻 Feeling alive, breathing🌿 ✔Mint 👉🏻 https://zora.co/@hannibal_barca", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2796, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2214, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/806c9028-2cee-4966-23a3-9cbaa3604200/original\"}","{\"url\":\"https://on.soundcloud.com/dSHmwVkhW4uiBp329\"}"}', 'sonata'), - (1166425, '0x4f72ecbfc673e0c8873f814d0041d49e7313b1c4', 1000, 1, '2024-05-12 17:40:13+00', 0, 0, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 314, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 265, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Jl0mQEHMn82Ed0SBuEdu8?si=FLgKvsTnSgS83p9VwpJ01g&context=spotify%3Aalbum%3A1ieee5ixJ8UZUyVAlPk6QQ\"}"}', 'bangers'), - (1173690, '0x7eb263bebf4baaf157d7120022aa8c1eec5e39db', 1136, 1, '2024-05-16 08:14:16+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2760, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 785, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VBut1bAiXHU8a5KY8\"}"}', 'housemusic'), - (1166016, '0x40fb1b384a1202c5c75218ccfc940db083041f9f', 330, 1, '2024-05-11 19:12:29+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1723, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f9269686-5266-41c5-8736-9a25836af31d?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/dyl/dyor?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'nowplaying'), - (1176359, '0x0e9724568dc48a03f52cfe776779c00e79c1d5c5', 1111, 1, '2024-05-17 07:40:06+00', 0, 0, '{"fid": 17356, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp"}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 4327, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 504, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6g4MtYaLFIyTQmOIiMY2oV?si=kRx8FSffRTqrBnJpzNvV0A\"}"}', 'sonata'), - (1176366, '0x4e9c1e3c156f599cb1ec901b9104cf760761887e', 0, 1, '2024-05-17 07:46:57+00', 0, 0, '{"fid": 6751, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ "}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 429, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 240, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4bLujgDSlHpsPaMZDuc59i?si=MKnCx4jvQtKYij3nmWX_DA\"}"}', 'sonata'), - (1176356, '0x4f3cef5116fe268e606cf6922bb1a9472fe94ca5', 1110, 1, '2024-05-17 07:35:33+00', 0, 0, '{"fid": 326920, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks"}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🇯🇵💿", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1164, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1014, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/03U4Qix6CbNgj9Dhlmlh58?si=NVTBM6GdThyUnZx0XCHMVw\"}"}', 'japanese-music'), - (1176334, '0x3413aa531c0c33137ec4eb6992ff8ba39c19b530', 200, 1, '2024-05-17 04:47:45+00', 0, 0, '{"fid": 360601, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f5c757e-35a9-4119-c073-1ea7de2f1200/original", "profile": {"bio": {"text": "Normie end user, here to support the homies and creatives. Collective noun #67 ⌐◨-◨ 🔵🟡🟣"}}, "username": "loudman.eth", "power_badge": true, "display_name": "Loudman⌐◨-◨🎩🔵🟡", "active_status": "inactive", "verifications": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "follower_count": 1948, "custody_address": "0x37ca8875540d99ace5f8ab1d5990e30277c0f3b4", "following_count": 1335, "verified_addresses": {"eth_addresses": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":360601,\"hash\":\"0x89223934f6e7bced6f422cd04bf0eb3679c5895b\"}}","{\"url\":\"https://open.spotify.com/track/07eY2lIHJMak0zOw0U6HST?si=8BEzr1TWRxK-sen6zRSVGQ\"}"}', NULL), - (1173765, '0x00dc8e8d21c04b0356b80d75d3a8f2c8651464ac', 300, 1, '2024-05-16 12:47:51+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 416, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 213, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6kooDsorCpWVMGc994XjWN?si=aLrRkeLPQAyFp1xUOBkZvg\"}"}', 'lp'), - (1176363, '0xd48d01e06c7bee142444b920a32edda31a7a8a34', 1000, 1, '2024-05-17 07:42:35+00', 0, 0, '{"fid": 291942, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas"}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2826, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 787, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":3609,\"hash\":\"0xa928c6d8691c8aeab823c3fae818695ce6df7aeb\"}}","{\"url\":\"https://open.spotify.com/track/0WqsugtVfvB52EGeZBG7Ox\"}"}', 'housemusic'), - (1176378, '0x75781223695abb22379dce81c20e53718c210ff1', 0, 1, '2024-05-17 08:31:05+00', 0, 0, '{"fid": 17892, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/zwxa0tc.jpg", "profile": {"bio": {"text": "Building /herocast. Consumer crypto, /clouds and Italo /disco."}}, "username": "biji", "power_badge": true, "display_name": "Biji", "active_status": "inactive", "verifications": ["0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee"], "follower_count": 152, "custody_address": "0xbc3d093148abebfde9f9e8c7bb589da881eb375b", "following_count": 221, "verified_addresses": {"eth_addresses": ["0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3K7Q9PHUWPTaknlbFPThn2?si=8QsUZcTKRqmMxzrm52LV2A\"}"}', 'disco'), - (1176379, '0x76390cd1a1731909b04fc725f9819679128e2c13', 10, 1, '2024-05-17 08:43:00+00', 0, 0, '{"fid": 379777, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻"}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 4009, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1764, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/s4pztpfsnQ4UMPgy9\"}"}', 'sonata'), - (1176380, '0xfaf75b021ed82e9346f02855a2fdb440503f237e', 0, 1, '2024-05-17 08:48:14+00', 0, 0, '{"fid": 245579, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️"}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3954, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1024, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/o4gM5\"}"}', 'sonata'), - (1176381, '0xaaec8b1ebec23e1bfa7b51b96fd95e705220208e', 10, 1, '2024-05-17 08:58:50+00', 0, 1, '{"fid": 437357, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/0aO2VCr.gif", "profile": {"bio": {"text": "Knight to the Ham King 🍖 / Pixel Artist 🟦 / Learning generative art - Anime/Dark Fantasy/Retro 🤖"}}, "username": "mouseknight.eth", "power_badge": true, "display_name": "Munk 🎩🍖🧾🤫", "active_status": "inactive", "verifications": ["0xe7e3884efd3955789c4baec29c081bb61ded8015", "0x88c1d401bf50a7556ba0575ff62958161d231cf4"], "follower_count": 2405, "custody_address": "0xe7e3884efd3955789c4baec29c081bb61ded8015", "following_count": 572, "verified_addresses": {"eth_addresses": ["0xe7e3884efd3955789c4baec29c081bb61ded8015", "0x88c1d401bf50a7556ba0575ff62958161d231cf4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7JgBlEV4AbeHVhaTczGdTg?si=wNducdG2RiumN_1rf-MMiw\"}"}', 'japanf4f'), - (1176382, '0x06fa156798e8e32060a2a45ef8f4600e8d8518a3', 0, 1, '2024-05-17 09:02:15+00', 0, 1, '{"fid": 193826, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Urc2CHT.gif", "profile": {"bio": {"text": "Building a portable community graph 👜 /los-fomos. Show me your /typos. Dancing in /latinmusic. "}}, "username": "pauline-unik", "power_badge": true, "display_name": "Pauline Unik 🌶️", "active_status": "inactive", "verifications": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "follower_count": 1546, "custody_address": "0x285b0d0d896591bf9cf34dcb5d401883c8ead439", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3mYCd23hPxJW5okSvMoy3x?si=ci13p9xpTG-wUOzHuxbAbA\"}"}', 'los-fomos'), - (1176384, '0x98ae33c084f2b678ee229129d32ba8cd8fc2ec64', 0, 1, '2024-05-17 09:58:53+00', 0, 0, '{"fid": 288204, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from a different point of view "}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩🍼📟", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2387, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 607, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6D6I1Vp41uEomF14FeQYwr?si=pJ5DXkJvQOysXcYdw3uTJA&context=spotify%3Aplaylist%3A2hjJ4iEIjSUGwIa6ihZAUC\"}"}', 'bangers'), - (1176385, '0x2e4d89f1541bd1cb2058480ec8c877daaf0c8ba0', 100, 1, '2024-05-17 10:02:45+00', 0, 1, '{"fid": 403020, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays "}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4541, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 525, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0cuNKO8LlpNW24NrQuE1Wn?si=f-VzQRuCTW--bxDA7el5TA\"}"}', 'bangers'), - (1176390, '0xf67176440f31e3c613c4ef023bdfad5e77bb50a9', 0, 1, '2024-05-17 10:54:53+00', 0, 0, '{"fid": 416087, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/57a72886-c3f3-4814-f359-a8579d579a00/original", "profile": {"bio": {"text": "Might be a punk\nA real degenerate\nNot employed \n\n\nKeep the dream alive: https://www.alfafrens.com/channel/0xCE64705563D0E6247e06D171f858115689EB6e66"}}, "username": "mingming13.eth", "power_badge": true, "display_name": "Ming🫂🎩🧾👉", "active_status": "inactive", "verifications": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "follower_count": 3084, "custody_address": "0x06cb72dd275166d936e56293c5b02e592bc0da47", "following_count": 2318, "verified_addresses": {"eth_addresses": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "sol_addresses": []}}', '{"{\"url\":\"https://m.soundcloud.com/elohimelohim/elohim-tv\"}"}', NULL), - (1176391, '0xdc2fef42741cda55f527b1a0b873115ed79c1523', 1000, 1, '2024-05-17 10:59:54+00', 0, 0, '{"fid": 4760, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/NFtPUKvFyKAELmrONNxouycEx-NwWcEwjYxgTeKXV2uJSofCXepxuQCipyRfP7bnrYjyXJRpLtoDORldJb8EyJlVQ66R9gstJPdB?w=500&auto=format", "profile": {"bio": {"text": "Transparent Eyeball founder / games marketing / Alusta.art / former Decentraland / 3D scanning statues onchain / DAO Academy founder / mom x 2 / 🇫🇮 "}}, "username": "viisikanta.eth", "power_badge": true, "display_name": "Marja 🎩 👾", "active_status": "inactive", "verifications": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "follower_count": 1341, "custody_address": "0x97d732a89c79bde89436153d90233488b64eb8d7", "following_count": 1199, "verified_addresses": {"eth_addresses": ["0xe1e8590b110a5ec1c44247f026269b2e66aa7b47", "0xd7891d741d58abb5a21c9bed0444df6f30e37b21"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/anarchyjournal/jefferson-airplane-white\"}"}', NULL), - (1176392, '0x73b2b585a881e6241a78adc8a2269ef01c1a9982', 100, 1, '2024-05-17 11:15:15+00', 0, 0, '{"fid": 1198, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/bq79zwm.jpg", "profile": {"bio": {"text": "netizen @archetype; ex-@coinbase; /aapi\n\nkatiechiou.xyz "}}, "username": "katiewav", "power_badge": true, "display_name": "katie", "active_status": "inactive", "verifications": ["0x28b4de9c45af6cb1a5a46c19909108f2bb74a2be"], "follower_count": 1417, "custody_address": "0xf53a4d94b63e493ccfe707e9d3e9f5780048f51f", "following_count": 391, "verified_addresses": {"eth_addresses": ["0x28b4de9c45af6cb1a5a46c19909108f2bb74a2be"], "sol_addresses": ["4UvnjQ8pBPsGu944qi7rtm1PeTzPtjLUjtaSWeWZieXN"]}}', '{"{\"url\":\"https://on.soundcloud.com/HdxixD8SJ2SjHJY39\"}"}', 'soundscapes'), - (1173224, '0xb6d3761a2f45a56870aa2da53f98a5e43d12dfce', 2120, 1, '2024-05-15 14:17:30+00', 0, 26, '{"fid": 269694, "object": "user", "pfp_url": "https://i.imgur.com/8V7KO4z.gif", "profile": {"bio": {"text": "Willennial | Crypto since 2012 | /replyguys | /chatbfg | Bitfloorsghost.twitter | My quest for 400 friends continues daily", "mentioned_profiles": []}}, "username": "bitfloorsghost.eth", "power_badge": true, "display_name": "Bitfloorsghost", "active_status": "inactive", "verifications": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "follower_count": 24374, "custody_address": "0x9af356fa72af2c087024daeed021e3082d59406f", "following_count": 4171, "verified_addresses": {"eth_addresses": ["0xa312a2a835bdcda893020ce23871470ffd26b990"], "sol_addresses": ["4uxjUREup6MPbindcZTKUPMtRF3b8oVwY8FgpKpodLFB"]}}', '{"{\"url\":\"https://open.spotify.com/track/5stJEL2X1WkqAFz4kTq8hV?si=nGHoClIzQPOHb0DZslKjHg&context=spotify%3Aplaylist%3A7bkzEFj1IfmSciYaVqeEyh\"}"}', 'retrowave'), - (1176400, '0x0867fbe59c7f461649e40a08f27075c31625f839', 0, 1, '2024-05-17 11:43:27+00', 0, 0, '{"fid": 416087, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/57a72886-c3f3-4814-f359-a8579d579a00/original", "profile": {"bio": {"text": "Might be a punk\nA real degenerate\nNot employed \n\n\nKeep the dream alive: https://www.alfafrens.com/channel/0xCE64705563D0E6247e06D171f858115689EB6e66"}}, "username": "mingming13.eth", "power_badge": true, "display_name": "Ming🫂🎩🧾👉", "active_status": "inactive", "verifications": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "follower_count": 3086, "custody_address": "0x06cb72dd275166d936e56293c5b02e592bc0da47", "following_count": 2320, "verified_addresses": {"eth_addresses": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/bojinarin/minsu-i-like-me\"}"}', 'sonata'), - (1176401, '0xef2109c9a2ae287ae4d8e732e31dece880644693', 0, 1, '2024-05-17 11:54:11+00', 0, 0, '{"fid": 245024, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/JkyySHx.gif", "profile": {"bio": {"text": "web3 degen | rock lover | hosting Rock Music channel: https://warpcast.com/~/channel/rock"}}, "username": "calisay", "power_badge": true, "display_name": "Calisay", "active_status": "inactive", "verifications": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "follower_count": 343, "custody_address": "0xbc218297a4e18c050252b4e527d13de104111085", "following_count": 243, "verified_addresses": {"eth_addresses": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Xls4cNOwy01dtrNXb1inG\"}"}', NULL), - (1176403, '0xfe03746af3f38071d985dcc2e71435ecb0b07766', 110, 1, '2024-05-17 11:58:32+00', 0, 0, '{"fid": 360601, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/1f5c757e-35a9-4119-c073-1ea7de2f1200/original", "profile": {"bio": {"text": "Normie end user, here to support the homies and creatives. Collective noun #67 ⌐◨-◨ 🔵🟡🟣"}}, "username": "loudman.eth", "power_badge": true, "display_name": "Loudman⌐◨-◨🎩🔵🟡", "active_status": "inactive", "verifications": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "follower_count": 1988, "custody_address": "0x37ca8875540d99ace5f8ab1d5990e30277c0f3b4", "following_count": 1337, "verified_addresses": {"eth_addresses": ["0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0wTt0ioMU095PjWI7i8m2f?si=41aSZJQmTBawdCGpIdh84Q\"}"}', 'bangers'), - (1176404, '0x65768d5c6f1c74a44eb35f5c496ac94a09b8a0ba', 100, 1, '2024-05-17 12:08:21+00', 100, 0, '{"fid": 169, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/fWnQF5IzaerIcPn5rPHvl4oENtum0Jr2M5wxtC99L2c0ELGPD9WzgxhlgeybhUrO-LueMKSYgBWyhKcT5wydRotxpONeNJaP78t2nA", "profile": {"bio": {"text": "I am a VC"}}, "username": "fredwilson.eth", "power_badge": true, "display_name": "fredwilson", "active_status": "inactive", "verifications": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "follower_count": 4726, "custody_address": "0x6e6dc9975c7b820c235649924b4ab20068100e76", "following_count": 127, "verified_addresses": {"eth_addresses": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/q5QtN\"}"}', 'sonata'), - (1176411, '0x2bcc824c5cb378cfb68ecb050e8ce10a31df61da', 500, 1, '2024-05-17 12:24:30+00', 100, 0, '{"fid": 245124, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. "}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 6763, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2517, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2PpNgmrS9mAyrkRAwn6YPq\"}"}', 'rock'), - (1176412, '0xd24c2026559d24cc435850b60965dbb46b671e07', 0, 1, '2024-05-17 12:34:37+00', 100, 0, '{"fid": 410523, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7cf7dd44-61b6-4373-e7f3-1b0e4f144d00/rectcrop3", "profile": {"bio": {"text": "Just an old man from Maine. wtf is crypto? / Moto #293 / CobFarmMX\n"}}, "username": "skins", "power_badge": true, "display_name": "skins🎩", "active_status": "inactive", "verifications": ["0x95f45afde79613c10634d82e94b2a0da5bd2d0c6"], "follower_count": 756, "custody_address": "0xecc4e37f4f549c9415046695d269c64be329b7bc", "following_count": 445, "verified_addresses": {"eth_addresses": ["0x95f45afde79613c10634d82e94b2a0da5bd2d0c6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3y3NwQPQAjKCunRz2eKggA?si=zpJAJR33RyWGl9rEsN0ShQ\"}"}', 'bangers'), - (1176413, '0x1e9074ff0c19e3cc25c71bc3b4171097cdb30210', 0, 1, '2024-05-17 12:34:59+00', 100, 0, '{"fid": 240247, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata"}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 776, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 354, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Evhu0dKCkIuEn88Pmb9mj?si=r17bXUcAQ2qJytqwxsa01A&context=spotify%3Aalbum%3A0HHmJpwOXXRJu9HI9iQiEO\"}"}', NULL), - (1176414, '0x00b2a2398d88948b407e1890d81a6e26a7bd7de2', 0, 1, '2024-05-17 12:40:23+00', 100, 0, '{"fid": 190968, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK"}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1531, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 435, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/3xmintra/tatu-all-the-things-she-said-3xm-tekk-remix-180er-1\"}"}', NULL), - (1176415, '0x96dc93dcbf75ad02cbb83d1babe25e51185f30ac', 0, 1, '2024-05-17 12:41:30+00', 100, 0, '{"fid": 335788, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville"}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 231, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 980, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"cast_id\":{\"fid\":335788,\"hash\":\"0x6dc603a2ef97ffdd6691e1916466598c5b97ae08\"}}","{\"url\":\"https://www.sound.xyz/coopdville/smoking-marijuana-rip-nipsey?referral_source=link\"}"}', 'drakula'), - (1176416, '0xa4c854908bef968e8f1b7e2c5a08d501e080ccd1', 110, 1, '2024-05-17 12:44:09+00', 0, 0, '{"fid": 335788, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmeWV75Qfkernrubs3h1Ugus3NNU5eXPi71VdX7ghCsqkb", "profile": {"bio": {"text": "Web 3.0 Hiphop Artist/Musician🎹🎸/Producer/Blockchain Consultant - D''Ville Crypto Solutions\n\nhttps://bio.site/coopdville\n\nhost of my new channel - /coopdville"}}, "username": "coopdville", "power_badge": true, "display_name": "Coop D''Ville aka DCSCRYPTO.ETH", "active_status": "inactive", "verifications": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "follower_count": 231, "custody_address": "0xf9355c79006f859a9b1d7500021b00c05c08e434", "following_count": 980, "verified_addresses": {"eth_addresses": ["0xf6f92a1e3eee58e3717cf3c074185c9101e86b47"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/coopdville/smoking-marijuana-rip-nipsey?referral_source=link\"}"}', NULL), - (1176421, '0x103f687cee0b15e70545daa3fa4097f1d5c31a0d', 0, 1, '2024-05-17 12:49:03+00', 0, 0, '{"fid": 416087, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/57a72886-c3f3-4814-f359-a8579d579a00/original", "profile": {"bio": {"text": "Might be a punk\nA real degenerate\nNot employed \n\n\nKeep the dream alive: https://www.alfafrens.com/channel/0xCE64705563D0E6247e06D171f858115689EB6e66"}}, "username": "mingming13.eth", "power_badge": true, "display_name": "Ming🫂👉", "active_status": "inactive", "verifications": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "follower_count": 3094, "custody_address": "0x06cb72dd275166d936e56293c5b02e592bc0da47", "following_count": 2328, "verified_addresses": {"eth_addresses": ["0x78e5110039a7a72e817598273f29661fb856fe6d"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/rainbow-kitten-surprise/its-called-freefall\"}"}', NULL), - (1176426, '0xd240b8bccf556717e839cc1f62b1d55a217b02f6', 0, 1, '2024-05-17 13:19:41+00', 0, 0, '{"fid": 211227, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/kTGnISd.jpg", "profile": {"bio": {"text": "working on @thespartanlabs by day ✴ mixing rare funk by night — @safary 🦁"}}, "username": "0xjiminal.eth", "power_badge": true, "display_name": "jim ↑✈️", "active_status": "inactive", "verifications": ["0xe583fe1a14b2aa06a8f099813d1fc5bbe1610777"], "follower_count": 252, "custody_address": "0x97381242b2803489a91332b0eb150f8fc330d4b0", "following_count": 243, "verified_addresses": {"eth_addresses": ["0xe583fe1a14b2aa06a8f099813d1fc5bbe1610777"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/2AdXYMx6rEVFTQyh7\"}"}', 'selectors'), - (1176429, '0xc03577d4cbbd7e20aa6d2858e85b6fa5d205e975', 778, 1, '2024-05-17 13:31:31+00', 0, 0, '{"fid": 248389, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd"}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4665, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 321, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7dv1U4CRXNdbBhwfPiMyYF?si=sazvCHOtQzWhYL8so3W5fQ&context=spotify%3Aalbum%3A7BvmDxaP6GzW75A1f0AsLN\"}"}', NULL), - (1176432, '0x2be9bbc43b51c234676a0836983afc18844f9e79', 1000, 1, '2024-05-17 13:35:04+00', 100, 0, '{"fid": 243818, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp"}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2123, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 343, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/a467c076-90ba-4357-90e8-9cd43426ca10?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/angelbaby/new-location?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'theblockexp'), - (1176431, '0xde07d7e742840792a78f42ae8ae6eefe9ec78748', 1000, 1, '2024-05-17 13:34:29+00', 100, 0, '{"fid": 243818, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp"}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2123, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 343, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/a467c076-90ba-4357-90e8-9cd43426ca10?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/angelbaby/new-location?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', NULL), - (1176433, '0x634c57e608d38ecb62bc7155c8637c2a06a1d1e6', 1000, 1, '2024-05-17 13:34:53+00', 0, 0, '{"fid": 243818, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp"}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 2123, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 343, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/a467c076-90ba-4357-90e8-9cd43426ca10?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/angelbaby/new-location?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'soundxyz'), - (1176434, '0x7c9a7fb814b092457052a6e80be36a9133bb20aa', 2222, 1, '2024-05-17 13:44:11+00', 100, 0, '{"fid": 3827, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/2219c015-256b-47a0-2581-d2ca32a9a600/rectcrop3", "profile": {"bio": {"text": "Lil curious about blockchain\nPD @artistprogram\nAF : Market Discussion (All markets)."}}, "username": "sqx", "power_badge": true, "display_name": "SQX 🎩 ⌐◨-◨ 🧾🍖", "active_status": "inactive", "verifications": ["0x2ee0485f71764bcd2062a84d9455688c581b90f8", "0x72d037f63a6c782f85c059fc917a12e71b2e0c73"], "follower_count": 3097, "custody_address": "0x23020a7f5c580d82a5115d0c7c792c11b1f7d049", "following_count": 1405, "verified_addresses": {"eth_addresses": ["0x2ee0485f71764bcd2062a84d9455688c581b90f8", "0x72d037f63a6c782f85c059fc917a12e71b2e0c73"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5UWwZ5lm5PKu6eKsHAGxOk?si=58afb693edbc4647\"}"}', NULL), - (1176435, '0x99a05e164f70a8f8e8233ccf304d692e6f7ecf4c', 1000, 1, '2024-05-17 13:56:53+00', 100, 0, '{"fid": 3726, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a802f59-ad74-411e-9da9-add0f355c100/original", "profile": {"bio": {"text": "⌐◨-◨ Artist of Archer and Adventure Time, I draw things from time to time."}}, "username": "thepencil.eth", "power_badge": true, "display_name": "thepencil.eth ⌐◨-◨ 🎩", "active_status": "inactive", "verifications": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "follower_count": 719, "custody_address": "0x47461d4657c9aeb7772913227388c029a10562cf", "following_count": 402, "verified_addresses": {"eth_addresses": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/thecrew/say-gm?referral_source=link\"}"}', NULL), - (1176438, '0x75b6da4c7e142694b174786f34fb849a3b0c71fc', 1000, 1, '2024-05-17 14:39:00+00', 100, 0, '{"fid": 351803, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/qs9zDsd.gif", "profile": {"bio": {"text": "Why are you on social networking sites?\n\nhttps://twitter.com/Robotimy"}}, "username": "nomiu", "power_badge": true, "display_name": "NomiU🎩", "active_status": "inactive", "verifications": ["0x86eb590d35fe7087af7fe33b614659933a2a1d17"], "follower_count": 1626, "custody_address": "0x1035dc36af4b31565780736570c86adc91c91a84", "following_count": 1270, "verified_addresses": {"eth_addresses": ["0x86eb590d35fe7087af7fe33b614659933a2a1d17"], "sol_addresses": ["724twusyKzikRtvQbwjBDVKhK7rd3JypvjfebAc44G8b"]}}', '{"{\"url\":\"https://open.spotify.com/track/4eHbdreAnSOrDDsFfc4Fpm?si=QNqXChOUQk-DxuO0RUJ6cQ&context=spotify%3Asearch%3Ai%2Bwill%2Balways%2Blove%2Byou\"}"}', NULL), - (1176439, '0x86cc722e310091bb502e042003bdd6f6c7358e89', 1000, 1, '2024-05-17 14:41:37+00', 100, 0, '{"fid": 351803, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/qs9zDsd.gif", "profile": {"bio": {"text": "Why are you on social networking sites?\n\nhttps://twitter.com/Robotimy"}}, "username": "nomiu", "power_badge": true, "display_name": "NomiU🎩", "active_status": "inactive", "verifications": ["0x86eb590d35fe7087af7fe33b614659933a2a1d17"], "follower_count": 1626, "custody_address": "0x1035dc36af4b31565780736570c86adc91c91a84", "following_count": 1270, "verified_addresses": {"eth_addresses": ["0x86eb590d35fe7087af7fe33b614659933a2a1d17"], "sol_addresses": ["724twusyKzikRtvQbwjBDVKhK7rd3JypvjfebAc44G8b"]}}', '{"{\"url\":\"https://open.spotify.com/track/4eHbdreAnSOrDDsFfc4Fpm?si=QNqXChOUQk-DxuO0RUJ6cQ&context=spotify%3Asearch%3Ai%2Bwill%2Balways%2Blove%2Byou\"}"}', 'sonata'), - (1176440, '0x823d832772fc11e3b0b0871da88f1d16e4d738e5', 1000, 1, '2024-05-17 14:45:33+00', 100, 3, '{"fid": 248389, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd"}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4676, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 323, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/af0dc9ad-ddf9-4935-fffa-07f7df283700/original\"}","{\"url\":\"https://open.spotify.com/track/4clTEVX29ZgmXzeC1MxK8L?si=PBrYGEDxRyG8fWPazTFTtg&context=spotify%3Aplaylist%3A37i9dQZF1DZ06evO0ENBD3\"}"}', 'replyguys'), - (1176430, '0x0c982aab4c4c40166575de3c15b0afb01499e6d2', 1000, 1, '2024-05-17 13:32:55+00', 100, 0, '{"fid": 291942, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas"}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2847, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 788, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2B8O2z6I7XIPmVXeZKULJ1\"}"}', 'techno'), - (1176451, '0xf55d73f823141d922f8a8452d0efb29865c4d4bd', 0, 1, '2024-05-17 14:49:42+00', 100, 0, '{"fid": 381086, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee50b6a5-5320-4af2-87ad-b3d53079b300/rectcrop3", "profile": {"bio": {"text": "Film director and writer. Getting better every year and happy as it goes. \nLots of work can be seen on my website:\nmackandco.uk"}}, "username": "jamiemccormack", "power_badge": true, "display_name": "Jamie McCormack", "active_status": "inactive", "verifications": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "follower_count": 160, "custody_address": "0xf810f1e885226cd165e10b11e3103c50986e5dc6", "following_count": 204, "verified_addresses": {"eth_addresses": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3MsYZmSzsWAauoMuM7vfOd?si=dMwKFzmOSkefBh-lMZcLtw\"}"}', 'sonata'), - (1176452, '0xb5af1efa645d5640ca7e5148bdf8537969a3e5eb', 100, 1, '2024-05-17 14:55:47+00', 100, 1, '{"fid": 288204, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from a different point of view "}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩🍼📟", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2403, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 609, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2N3U8uTYhjX2KwGT0pf5x0?si=CqVYYdlLTTqbzr8HHjVmWA&context=spotify%3Asearch\"}"}', 'bangers'), - (1176230, '0xc36942b746661e5a8727cc72d412f3eb1760458c', 2322, 1, '2024-05-16 23:56:59+00', 101, 0, '{"fid": 253410, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast."}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 599, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 528, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/show-me?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', 'soundxyz'), - (1176498, '0xb2ce18e1f2b74368259a3164fd1c839e4dba10f2', 0, 1, '2024-05-17 15:23:41+00', 0, 0, '{"fid": 382890, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/m3mkucY.jpg", "profile": {"bio": {"text": "Transdisciplinary artist, working with traditional and digital painting, 2D animation, 3D and music // she/her — https://thehug.xyz/artists/qabqabqab"}}, "username": "qabqabqab", "power_badge": true, "display_name": "qabqabqab", "active_status": "inactive", "verifications": ["0x9904ceddba825a18bdf7e1984a886d23394ccbcc"], "follower_count": 467, "custody_address": "0xae4080212a7e3aba161fd86b9afc8f7e4bbdc14e", "following_count": 448, "verified_addresses": {"eth_addresses": ["0x9904ceddba825a18bdf7e1984a886d23394ccbcc"], "sol_addresses": ["HsFxoPHwGWHXyZ3sSekaZArV8gQW9BGnAcc8j2V5CvUu"]}}', '{"{\"url\":\"https://open.spotify.com/track/6k60LdMxc5vWUrKxiEcMoG?si=327ae44c8a364159\"}"}', 'albumoftheday'), - (1176503, '0xbfa5f51f879417a33d901fcd44ca6346a0d347b4', 0, 1, '2024-05-17 16:43:26+00', 0, 0, '{"fid": 403020, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays "}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4576, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 526, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6hANdvhL9H7bkESqIVeVIZ?si=FsMOfl6uSM-mG7Te80reSQ\"}"}', 'bangers'), - (1176505, '0xd416ccf49ffc6592e1f81fcd9642a73f83c60984', 0, 1, '2024-05-17 16:44:42+00', 0, 1, '{"fid": 359, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/v58dn3Qon30ikaovcRc_91qg8UdIAuDEcbBPkMxP6DP2eOvdGs96azCsUomVJIbeElIMx9hQdlNFrZf7ujWVE6fZkM8QaEPG8Km6sQ=s120", "profile": {"bio": {"text": "Founder https://axflow.dev // creator of the https://blockchainsmokers.xyz // nf.td/nicho"}}, "username": "pushix", "power_badge": true, "display_name": "Nicholas Charriere", "active_status": "inactive", "verifications": ["0xda46696c9de358a9f17f5d8ad5bea9ac12eef348", "0x885f8588bb15a046f71bd5119f5bc3b67ee883d3"], "follower_count": 130383, "custody_address": "0x60c22bb5109ae2139b781e67d18d936144c5bf3a", "following_count": 1143, "verified_addresses": {"eth_addresses": ["0xda46696c9de358a9f17f5d8ad5bea9ac12eef348", "0x885f8588bb15a046f71bd5119f5bc3b67ee883d3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1zcCvJeGmcLQFfYHlcDnf1?si=67b737c443f04dee\"}"}', NULL), - (1166718, '0x978a8722073cafce3a75943dfdbb75e44546bb4c', 1000, 1, '2024-05-12 18:45:07+00', 0, 0, '{"fid": 14515, "object": "user", "pfp_url": "https://i.imgur.com/ipJRbGn.gif", "profile": {"bio": {"text": "Playfully Controversial | Art in All The Fancy Places | Destigmatize | #cc0 |\nrc.xyz/empresstrash\nbeacons.ai/empresstrash\n/cryptoart\n/trash-art\n/empress-trash", "mentioned_profiles": []}}, "username": "empresstrash", "power_badge": true, "display_name": "Empress Trash 🎩🌈🖤", "active_status": "inactive", "verifications": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "follower_count": 2762, "custody_address": "0x1fe3a27087710e956deab0a498ec7f0f031a7da2", "following_count": 713, "verified_addresses": {"eth_addresses": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "sol_addresses": ["81gcTouikeKU4vtqWKGVuGwBA9yTgM3EbDCquPp6MGXE"]}}', '{"{\"url\":\"https://open.spotify.com/track/0epAG0WWRlDMsMFJiE5c6I?si=f1852403a6a84330\"}"}', NULL), - (1166717, '0x2b7add17eb6721eea42979cffe041bbe34a44577', 150, 1, '2024-05-12 18:02:43+00', 0, 0, '{"fid": 266418, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifi3s7royxcj3husroqxh3pi3xgmqibm7ijlfinzawrzyybsga3re", "profile": {"bio": {"text": "Imagine letting a caster outcast you ", "mentioned_profiles": []}}, "username": "leoxcrane", "power_badge": true, "display_name": "Leoxcrane", "active_status": "inactive", "verifications": ["0x0551eb17f2ac1db089eaa6690ef37ad1fe835b19"], "follower_count": 462, "custody_address": "0xd0087da86888f523d18ae11317a3360f1371d925", "following_count": 125, "verified_addresses": {"eth_addresses": ["0x0551eb17f2ac1db089eaa6690ef37ad1fe835b19"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6AI3ezQ4o3HUoP6Dhudph3?si=nQnk8Ni-QcOyxIbXzQ9JkQ\"}"}', 'replyguys'), - (1166020, '0xef9e32c8cc4b0206fd9fb57163fd1637c250ee68', 2580, 1, '2024-05-11 19:13:03+00', 0, 0, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1723, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 333, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/f9269686-5266-41c5-8736-9a25836af31d?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/dyl/dyor?referral=0x745793487a535ef578567de19be1b1e011589bac&referral_source=link\"}"}', 'theblockexp'), - (1176506, '0x7e6daf3f98d4e53a736cd6321c199c13d803e51b', 300, 1, '2024-05-17 16:46:14+00', 0, 0, '{"fid": 384424, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a0633ede"}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2984, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2246, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/F6hPaUQXoLXUYuF59\"}","{\"url\":\"https://www.youtube.com/watch?v=CX5f0NcqlMs\"}"}', 'sonata'), - (1166727, '0xa071dc85421b240b1ffbe7f7c55e3c876d20d819', 0, 1, '2024-05-12 19:22:21+00', 0, 0, '{"fid": 4375, "object": "user", "pfp_url": "https://i.imgur.com/fV5FWdH.png", "profile": {"bio": {"text": "janitor@ /middle-mgmt // web3 law stuff //\nfree Ross // free Assange // ☮︎ Ξ\n\nlovelight.eth.limo", "mentioned_profiles": []}}, "username": "resipsa", "power_badge": true, "display_name": "res ipsa ☺︎", "active_status": "inactive", "verifications": ["0x0d74d273a4d2971e7cb8e7acb25ccfe149e37465"], "follower_count": 1917, "custody_address": "0xf55d80f2f5ff2289a4bdb286b2b3dbc70f763068", "following_count": 428, "verified_addresses": {"eth_addresses": ["0x0d74d273a4d2971e7cb8e7acb25ccfe149e37465"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/03QgO3lV2SxLD2rrdetFHt?si=5uWDNmi2TbaOCfVsVnIudQ\"}"}', 'inquiry'), - (1166734, '0x741636446cfed90cef4ef61b94be16ed712888e7', 2000, 1, '2024-05-12 21:05:16+00', 0, 0, '{"fid": 244479, "object": "user", "pfp_url": "https://i.imgur.com/l17HkUg.jpg", "profile": {"bio": {"text": "Artist | Tm Labs 🧪 | /lessoninthere ✍️ /champion 🥇", "mentioned_profiles": []}}, "username": "dragonite.eth", "power_badge": true, "display_name": "Dragonite.eth 🎩🥇✍️🧾", "active_status": "inactive", "verifications": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "follower_count": 5135, "custody_address": "0x14d0f9497589829dfb10304a00845ae24f8222d6", "following_count": 363, "verified_addresses": {"eth_addresses": ["0x9a70d89db9a7ae5c04d2bea3049d136098e32e22"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/51eSHglvG1RJXtL3qI5trr?si=QUVDuMydQL6oXO_4YextWQ\"}"}', 'bangers'), - (1166352, '0xb12a47dad6b883cbc7600892f5904851e740e47b', 2000, 1, '2024-05-12 14:42:15+00', 0, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2473, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 933, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/mischief-brew-uk/01-elvis-cosstello-pump-it-up?si=2c2fd197bb1b4de88e25b449052f04c4&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'sonata'), - (1166733, '0x4508c58302d75853df30a991896a5a5333cd0800', 0, 1, '2024-05-12 20:25:50+00', 0, 0, '{"fid": 246221, "object": "user", "pfp_url": "https://i.imgur.com/VnoSmqa.jpg", "profile": {"bio": {"text": "Co-founder @theburrow | \nMember Ullu /superteam | \nPhotographer | CA | Marathoner\n\nhttps://linktr.ee/bombaymalayali\n", "mentioned_profiles": []}}, "username": "bombaymalayali", "power_badge": true, "display_name": "Anand ആനന്ദ്🦉🎩", "active_status": "inactive", "verifications": ["0x1aac4cbff120e1ac659a0ff2645ad63ac096bf3a", "0x11a22b262e505d355f975e1e48a365b5d4811ae0"], "follower_count": 1003, "custody_address": "0x074972fe7350d70caba1ccfa4e06a2bd39497747", "following_count": 359, "verified_addresses": {"eth_addresses": ["0x1aac4cbff120e1ac659a0ff2645ad63ac096bf3a", "0x11a22b262e505d355f975e1e48a365b5d4811ae0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0cVrLxeQjiAcftuGzp32qY?si=8jIVs3z7RRC0Go6lUbpxKw&context=spotify%3Aplaylist%3A2s9vnPqlqkDeCAhf7pngmG\"}"}', NULL), - (1166728, '0x0e4006e2fa66aed95d95eef8cc439deafbd62140', 1000, 1, '2024-05-12 19:36:12+00', 0, 0, '{"fid": 633, "object": "user", "pfp_url": "https://i.imgur.com/f3MHWW0.jpg", "profile": {"bio": {"text": "/musicnerd nerding /with @clt on musicnerd.xyz. Productizing /patronage.", "mentioned_profiles": []}}, "username": "cxy", "power_badge": true, "display_name": "C.Y. Lee | cxy.eth", "active_status": "inactive", "verifications": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "follower_count": 479, "custody_address": "0x42336ad90fb7a447e013d9f495cb96d7edc1a003", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "sol_addresses": ["2fj2ne42grvCHsDUTuL4HVFT9wrAKZ3F9VZ2ktKMyDHP"]}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6db3a58-6626-429c-9ea1-f6b02b3b5e00/original\"}","{\"url\":\"https://open.spotify.com/track/1hofkiaBcdSVj3jlWZzVWX\"}"}', 'sonata'), - (1166822, '0xac07cadf432d47c8a571c54cf69b9570671280c8', 200, 1, '2024-05-13 03:36:09+00', 0, 1, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30372, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 449, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3nZIiM8v7Y1fcxmmqAYHh9?si=wWiXNkpcQNisO0X2c8_0cw\"}"}', NULL), - (1166860, '0x07d9ffd891fad8c4111d7bc077d06ff46b8ea2fe', 0, 1, '2024-05-13 06:30:49+00', 0, 0, '{"fid": 5620, "object": "user", "pfp_url": "https://i.imgur.com/4mRk8Xo.png", "profile": {"bio": {"text": "mattwelter.com — making farcaster apps FarcasterUserStats.com", "mentioned_profiles": []}}, "username": "fun", "power_badge": true, "display_name": "welter.eth", "active_status": "inactive", "verifications": ["0x02ac33835070d0c90bef87c273514e67aea36ef8"], "follower_count": 33633, "custody_address": "0xbee82d68f49ee2aa8408f8111db64d92e4d61971", "following_count": 288, "verified_addresses": {"eth_addresses": ["0x02ac33835070d0c90bef87c273514e67aea36ef8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/66gQu4ZIHmDhB8H4wkwm5f?si=noed-YDDQE-9FWppPSJBUw&context=spotify%3Aalbum%3A2brwuyGZ2lLqWnBX6U4MQT\"}"}', NULL), - (1166719, '0xaba1a9881b45dc8abfb0b2ec9e6f78c671862a2b', 1000, 1, '2024-05-12 18:46:18+00', 0, 0, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. ", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 6176, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2587, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/buckcherry-official/sorry-1\"}"}', 'rock'), - (1166742, '0xbeb3067aa761b98a0bf38547ff6fe87dcd12566d', 5010, 1, '2024-05-12 22:51:57+00', 0, 0, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 726, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 346, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3jqhNvgCey0yW6ZMtUh4wd?si=i6xf4Cp0TzyjskfMr-bo7A&context=spotify%3Aalbum%3A1FcTAH4sBWvtdO55OffwCQ\"}"}', 'soundscapes'), - (1166736, '0x4249bea2b0bca827b4feec046dee7e48226c5212', 0, 1, '2024-05-12 21:16:04+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 288, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 190, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2ruNb1iGM1lCPvx4lYPg1U?si=cPy2lzfDRHqjHL81_OgdqA\"}"}', 'soundscapes'), - (1166739, '0x52f528c655f9f1f56af12c7028e336bbac083897', 1100, 1, '2024-05-12 22:29:57+00', 10, 1, '{"fid": 405348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f8fa7300-1191-4542-5bdb-5bda92c14b00/original", "profile": {"bio": {"text": "purveyor of love ༉‧♥︎˚. /replyguys enjoyer", "mentioned_profiles": []}}, "username": "xyztoni", "power_badge": true, "display_name": "toni", "active_status": "inactive", "verifications": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "follower_count": 1220, "custody_address": "0x525cc51b2cbbb13720d3f0cdf2d111314865ade0", "following_count": 535, "verified_addresses": {"eth_addresses": ["0x624516c0b381e643962ee9a1ce0f6eda022e6fb3"], "sol_addresses": ["1fkTA3oFnUboh7Ec6N3YMSAygoZDdvH7hzhddKiMA74"]}}', '{"{\"url\":\"https://open.spotify.com/track/6GGmABM6AMwMzEhK7szqJT\"}"}', NULL), - (1166737, '0x54e9342c4faf8bd5d239446a62e415dffa27ee88', 1100, 1, '2024-05-12 22:21:25+00', 0, 0, '{"fid": 363197, "object": "user", "pfp_url": "https://i.imgur.com/tye8WEu.jpg", "profile": {"bio": {"text": "Being yourself is never a bad idea 🎧", "mentioned_profiles": []}}, "username": "bakergracemusic", "power_badge": true, "display_name": "Baker Grace", "active_status": "inactive", "verifications": ["0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0"], "follower_count": 3984, "custody_address": "0xf62d5e54d570623b82b3168b6115276901fc8dab", "following_count": 81, "verified_addresses": {"eth_addresses": ["0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/what-do-you-say?referral=0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0\"}"}', NULL), - (1166884, '0x00211cd93289040b0f46aa217c3e2b39bd028d86', 0, 1, '2024-05-13 08:19:33+00', 10, 0, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3866, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1757, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/uThwGtWUgmNQ91A78\"}"}', 'sonata'), - (1166931, '0x2b359b3e981fef0b2b353f52fa4a01966755e911', 1100, 1, '2024-05-13 12:24:13+00', 0, 0, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3697, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 489, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/h38yWhxmyoWViL68A\"}"}', 'sonata'), - (1166743, '0x0cc9c16d9bf202f48c69eb2d764bbebc0cbc023b', 0, 1, '2024-05-12 23:14:36+00', 0, 0, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. ", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 6195, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2587, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/08nVwMJvWeJwwc9pSd74wO?si=c6829438bd424fb1\"}"}', 'rock'), - (1166746, '0xb8e1f9d46555b7e955e39cdd3af3af6baeeb6ab1', 0, 1, '2024-05-12 23:54:52+00', 0, 0, '{"fid": 269385, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeifkag6ydsosww6j6zg3igzg7fernrjrcvjhffmcghjirujtod76hy", "profile": {"bio": {"text": "not a bot. good caster. active on alfafrens\nhttps://www.alfafrens.com/profile/0x20f62fa73759006eefa96fb40b26b857de70ec69", "mentioned_profiles": []}}, "username": "kazirt", "power_badge": true, "display_name": "kazirt", "active_status": "inactive", "verifications": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "follower_count": 360, "custody_address": "0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "following_count": 380, "verified_addresses": {"eth_addresses": ["0xec93285cadbafaea1df58af2e46c201fe4bfb9df", "0x1d72ccc4226c014ca7938a0a4c76b02d377110ed"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5APAPnpSciLxsOzWnWjq6y?si=S6ijo96yRBqgEmX6y9vNmw&context=spotify%3Aalbum%3A1bJ7SFKnVcexGafRpKmLKO\"}"}', NULL), - (1176348, '0xfd313fc5841b0f6e9c894dc3ab6d9fdb0890d8c5', 1611, 1, '2024-05-17 06:20:24+00', 0, 0, '{"fid": 291942, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas"}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2825, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 787, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/54bOz8yKjdrdD4EO9Dapgr\"}"}', 'musicjp'), - (1166747, '0xe4f0987930149ae5a340a4d60a8284059eb3769a', 1000, 1, '2024-05-13 00:10:48+00', 0, 0, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 255, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 205, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/932b6df9-07a0-4e83-c94c-c277510b0d00/original\"}","{\"url\":\"https://open.spotify.com/track/39HrUxcvKF3jtLz7fUDWXc?si=cJJEeZLdRhiGvqL7OLH3VA&context=spotify%3Aartist%3A7lbSsjYACZHn1MSDXPxNF2\"}"}', 'albumoftheday'), - (1166751, '0x673e2f5d2d6d518b4f18283b43ce7e056ddfc114', 0, 1, '2024-05-13 00:48:28+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 670, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 625, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/46QY8OXrH3Jlxj8Tj31XkJ?si=pzFIDbU4RDWgePQUAb7zaw\"}"}', NULL), - (1166804, '0x65823389fb246eee40558f1a155fc2a0c316d336', 100, 1, '2024-05-13 02:02:05+00', 0, 0, '{"fid": 1265, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6f618f59-2290-4350-100a-4b5d10abef00/original", "profile": {"bio": {"text": "designer, operator, product builder //\nplayer /fbi | fid #1265 ", "mentioned_profiles": []}}, "username": "akhil-bvs", "power_badge": true, "display_name": "Akhil", "active_status": "inactive", "verifications": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "follower_count": 361, "custody_address": "0xdf055eb92e2c97d7da4036278d145458eb11811c", "following_count": 88, "verified_addresses": {"eth_addresses": ["0xab14023979a34b4abb17abd099a1de1dc452011a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1ghlpxVfPbFH2jenrv9vVw?si=IgP-pf0mR-S-JZMy87sdQQ&context=spotify%3Aalbum%3A45EFycwtfRhnDPWbc2mClK\"}"}', NULL), - (1166821, '0x2ad6fc744f4e1bc92e01056f3fd412e9fe8c6bb9', 0, 1, '2024-05-13 03:34:08+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 682, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 636, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0sAIljILdEo8Ku4tPLQ7dF?si=BdZCq9rpTvWHzqP5FPp4XA&context=spotify%3Aartist%3A7MlyHuGRHi31yYlrttDqgT\"}"}', NULL), - (1166767, '0x245693638dcb45d0efc0429fbf5929d0ccbaf7b7', 0, 1, '2024-05-13 01:12:25+00', 0, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 528, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 459, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/73X3FOZWP0ktM0bebojQd4?si=Xizkr5RKTrOh0k4zWasERg\"}"}', NULL), - (1166416, '0xfac1b6e2200d4e68c7116642f8e8af94639e0caa', 4381, 1, '2024-05-12 16:38:44+00', 0, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1901, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/sabato?referral_source=link\"}"}', 'soundxyz'), - (1166775, '0xbc4dddec50b439a71d29ca26f8ef2133d4d5a5af', 0, 1, '2024-05-13 01:31:33+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2546, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 768, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5CCa4AqJrSCYpMpFPuXDMM\"}"}', 'housemusic'), - (1166812, '0xe049f5297cb83b7a1dcbdb0ea113d673fdfcd65c', 0, 1, '2024-05-13 02:41:46+00', 0, 0, '{"fid": 355566, "object": "user", "pfp_url": "https://i.imgur.com/KYPDFHQ.jpg", "profile": {"bio": {"text": "Genre-free & in-motion music 💫 📍🇯🇵🔛🇦🇷 Be part of our holders fam and support our Japan Tour 24 ⛩️", "mentioned_profiles": []}}, "username": "duodomusica", "power_badge": true, "display_name": "Dúo Dø", "active_status": "inactive", "verifications": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "follower_count": 258, "custody_address": "0x0a9ed3d5fe415393b67fee6fc376d80ade102f51", "following_count": 207, "verified_addresses": {"eth_addresses": ["0x688f1d8b0c59e9716d3512a0cbf32cda837544dc", "0x0d3c16f2d152373539610da87d231f4d78f73a35"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/playlist/7536f380-154a-47f4-aa5d-a1f8bd00df46\"}"}', NULL), - (1166794, '0x5fc900557d19a490cc2c05cd7124f8904aab4e71', 0, 1, '2024-05-13 01:51:30+00', 0, 0, '{"fid": 313886, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a6744060-7c2d-42ba-470f-1a973c6efd00/rectcrop3", "profile": {"bio": {"text": "Husband, father, artist, builder. ", "mentioned_profiles": []}}, "username": "theinverse", "power_badge": true, "display_name": "G r 🌎 w n U p", "active_status": "inactive", "verifications": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "follower_count": 1179, "custody_address": "0x550dbd380c5a0a70c5b934429d6f142cedfc4030", "following_count": 1033, "verified_addresses": {"eth_addresses": ["0x69116c07f69ae31d6fba77b43f9fe6844cdc466e"], "sol_addresses": ["BZQbunZHzgAFpSZaaXQBj4yhWe6n2DBxtzHoDTQGKCS2"]}}', '{"{\"url\":\"https://open.spotify.com/track/2VGDntFPvgvqSiUf9ITEfW?si=NljDS6haQyOQ-_adVc4q2A&context=spotify%3Asearch%3Alcd%2Bsome\"}"}', NULL), - (1166740, '0xb4db98d82c61a1418c8fa29c96c0270f5381623b', 3000, 1, '2024-05-12 22:31:53+00', 10, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 314, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 265, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1KYjLDMkBlfFSAPYL9w6oY?si=PFh0kPzaQ6iju5Vb4xsIVQ&context=spotify%3Aplaylist%3A40iEfyh1hokYNc7ZjCWIxj\"}"}', 'bangers'), - (1166838, '0xdc076ae7134133adc1b4295c818546af16f99f82', 2100, 1, '2024-05-13 04:37:07+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2554, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 769, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1x62N4B6k427U5Oj2aFxRY\"}"}', 'sonata'), - (1166839, '0x5777713ce9f83be030e62d8d9e7f2d37b23d5c54', 1500, 1, '2024-05-13 04:53:03+00', 10, 1, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2824, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2216, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/GgwAcEXjnYbGhAQ9A\"}"}', 'sonata'), - (1166841, '0xce1c550d5209478f705802b3ffbd4b49fdd8762b', 0, 1, '2024-05-13 05:27:23+00', 0, 0, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \n", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🎩 ", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1135, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 999, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3FV1ttVw39pJZn2MV2WyMT?si=BHAdDykZRZubtIcnEXDtcA\"}"}', NULL), - (661925, '0x0f7553c844c1610c513a1cbcd05119e42e2aecec', 100, 1, '2024-05-06 15:05:28+00', 0, 0, '{"fid": 426065, "object": "user", "pfp_url": "https://i.imgur.com/LQ1cEuy.jpg", "profile": {"bio": {"text": "1/1 artist | collage | digital painting | illustration | in relationship with NFT \n\nhttps://linktr.ee/magda_americangangsta", "mentioned_profiles": []}}, "username": "magdagangsta", "power_badge": false, "display_name": "Magda Americangangsta 🎩", "active_status": "inactive", "verifications": ["0xda47a6b9ec624f9d8cfe1db6423a26cbebc1246d"], "follower_count": 747, "custody_address": "0xa8a6130190cb439246a4f79364fde5d3e1031fe4", "following_count": 955, "verified_addresses": {"eth_addresses": ["0xda47a6b9ec624f9d8cfe1db6423a26cbebc1246d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3ven4ZKSspshBwiLMMibEa?si=tWyO0To7QWO2MSNfb-ELNg\"}"}', 'albumoftheday'), - (1166836, '0x906ba0070133e1fd7f8b27629f76cbff560d740d', 1100, 1, '2024-05-13 04:16:54+00', 0, 2, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 299, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 194, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6UBjSnyP1O5W5ndJoO9vUk?si=w_gwB7SMQqm1t2FFiKHQyQ\"}"}', NULL), - (1166859, '0xcfb8c9a6d027807c5c1b6746619db59c382e040d', 0, 1, '2024-05-13 06:00:17+00', 0, 0, '{"fid": 347050, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e474ba4a-29e5-4238-2e48-940936ddb900/rectcrop3", "profile": {"bio": {"text": "artist. cat. jazz fiend •\n\nhosting /whoa\n•\n\nhttps://linktr.ee/TruptyS", "mentioned_profiles": []}}, "username": "trupty", "power_badge": true, "display_name": "Trupty Somaiah 🎩🦉", "active_status": "inactive", "verifications": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "follower_count": 2200, "custody_address": "0x64116e340ae712b58060820f2f328023ddbedf0a", "following_count": 417, "verified_addresses": {"eth_addresses": ["0x09b2f0988b6d24336b348c84c2764d2b4f85142f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3E7QzgM8Je4hyf0kK8tGmD?si=-Irl-zBjTYmFDPxFutwpHA&context=spotify%3Aplaylist%3A3QlOrvZsR8XH5qi9k8Hd3N\"}"}', 'jazz'), - (1166768, '0x7e56a5ce19eea97647fe726d5cb51562ccd5caf4', 2500, 1, '2024-05-13 01:13:07+00', 0, 0, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 680, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 453, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/atrip/all-night\"}"}', 'sonata'), - (1166861, '0x5507e0b03f8b45998391efb450044c54272d121b', 0, 1, '2024-05-13 06:55:03+00', 0, 0, '{"fid": 13077, "object": "user", "pfp_url": "https://i.imgur.com/NwgqZfI.jpg", "profile": {"bio": {"text": "Writer | Book lover | Weeb | Walking coordination failure\n| Marketing /subsquid | Enjoyer of /classical music and /postcards", "mentioned_profiles": []}}, "username": "naomiii", "power_badge": true, "display_name": "Naomi ", "active_status": "inactive", "verifications": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "follower_count": 2600, "custody_address": "0x523882b3d8ff12ec24c3a55403ffed32632bfdbc", "following_count": 337, "verified_addresses": {"eth_addresses": ["0xea79aace874e1203d4ff08f4cc7f713acc608236", "0x44bca7e527efc8ce8a8b2a83596ea66194dd9239"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/14d909bc-5913-472c-af04-6c90e52f2200/original\"}","{\"url\":\"https://open.spotify.com/track/4h4lwakAutaaFKHbvwcFSZ?si=25beacdc02214c2d\"}"}', NULL), - (1166865, '0x0297b13cabeb413ceb52b6a54d815b2a95ee7ccc', 0, 1, '2024-05-13 07:23:06+00', 0, 0, '{"fid": 8885, "object": "user", "pfp_url": "https://i.imgur.com/mBmqcTV.gif", "profile": {"bio": {"text": "product mgr. pursuing onchain music | onchain artist relations @rohki | music patent 11,620,649 | @techstars alum | @zagster cofounder (acq. by superpedestrian)", "mentioned_profiles": []}}, "username": "jasonmeinzer", "power_badge": true, "display_name": "jasonmeinzer.eth 🎩↑🔮🍖", "active_status": "inactive", "verifications": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "follower_count": 460, "custody_address": "0x973ce5bbc61897a0cffa24fc91b4c1d6874c7896", "following_count": 886, "verified_addresses": {"eth_addresses": ["0x892e7d0d45171c97f2f1c73815c1cebef3d1f812"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4Na2HfNSr58chvfX69fy36?si=CIMsze3aQlqbxy-MFNqOWQ\"}"}', NULL), - (1166877, '0xe022e20175f029311e288a6cf7bb3fa27d4fea0e', 8100, 1, '2024-05-13 07:53:49+00', 0, 1, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from another point of view /wevibe ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2170, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 595, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6MXXY2eiWkpDCezVCc0cMH?si=6e0d4d04c5734ce0\"}"}', 'bangers'), - (1166883, '0x65118ceff8a063994040c50c64bbdd0d23df9c80', 1000, 1, '2024-05-13 08:06:57+00', 0, 0, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2564, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 769, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Xy2YQj8ZqiUMDw2AEm8gE\"}"}', 'techno'), - (1166823, '0xb06e6ddc17d641aac5c028fe0282dfc19ab45111', 1180, 1, '2024-05-13 04:06:22+00', 0, 0, '{"fid": 387472, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f7fe81ca-42c6-4fb8-0474-7236dbf18b00/original", "profile": {"bio": {"text": "Singer/Songwriter /music\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNot a single meme is mine probably\n\n\n\n\n\n\nbadleyofficial.com", "mentioned_profiles": []}}, "username": "bradleyscott", "power_badge": true, "display_name": "Bradley", "active_status": "inactive", "verifications": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "follower_count": 534, "custody_address": "0x9bf1492e6b9ef03d62bd68e89766982c7a89182e", "following_count": 153, "verified_addresses": {"eth_addresses": ["0x8284fdb345236d8285fecd91855c16ca22a1033f"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/badley/fool\"}"}', 'soundxyz'), - (1166790, '0xf7d2cc931e06b437176e8891d7800ec032165cc9', 100, 1, '2024-05-13 01:48:06+00', 10, 1, '{"fid": 1114, "object": "user", "pfp_url": "https://i.imgur.com/sQstCQc.jpg", "profile": {"bio": {"text": "data @ op labs, building /optimism 🔴✨ | go /gators 🐊 | casts are my own dumb thoughts | msilb7.com", "mentioned_profiles": []}}, "username": "msilb7", "power_badge": true, "display_name": "Michael Silberling", "active_status": "inactive", "verifications": ["0xa62649da86cce4b2e350fa314d7f226a083cab46", "0xeead1396fe5f0daec6dbc04d8a43e85dde4d97da", "0x5b63b49ee3e45cb6fe260859f6663f875f6b09bf"], "follower_count": 2265, "custody_address": "0x0556c8311f10cda7059ee8cf92dc4c992649ff01", "following_count": 439, "verified_addresses": {"eth_addresses": ["0xa62649da86cce4b2e350fa314d7f226a083cab46", "0xeead1396fe5f0daec6dbc04d8a43e85dde4d97da", "0x5b63b49ee3e45cb6fe260859f6663f875f6b09bf"], "sol_addresses": ["FmwGyp5TVDwi2FgN25scjD595xjfsawDV7MrFgYVuFaR"]}}', '{"{\"url\":\"https://open.spotify.com/track/6iyCeNSV9mS6ytzt0eeJub?si=318dfe8a51ae484e\"}"}', 'hockey'), - (1166869, '0xef5652bd1ea6043de0e60dd55c3b4998bb6a1ecd', 1500, 1, '2024-05-13 07:32:06+00', 0, 0, '{"fid": 378285, "object": "user", "pfp_url": "https://i.imgur.com/l5bGJK2.gif", "profile": {"bio": {"text": "FX trader/Mother of 2 junior high school students/Manga and anime lover/Pokémon Wooloo fan/from Japan", "mentioned_profiles": []}}, "username": "anco", "power_badge": true, "display_name": "anco🎩🍖🤫🐏", "active_status": "inactive", "verifications": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "follower_count": 778, "custody_address": "0x9dffca530bb5c513bb3efb8da6dcc69ff99d0539", "following_count": 720, "verified_addresses": {"eth_addresses": ["0xcdce6ad76143a42c14ebdac67c199af57cebc565"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/innercircle-reggae/sweat-a-la-la-la-la-long-by\"}"}', 'sonata'), - (1171331, '0x64a78f3c1d305286e415c8e0c0105f70213cef7b', 310, 1, '2024-05-14 17:38:22+00', 3, 0, '{"fid": 14537, "object": "user", "pfp_url": "https://i.imgur.com/QMPp8WF.gif", "profile": {"bio": {"text": "Argentinian psychonaut\nhttps://mortespiral.eth.co/", "mentioned_profiles": []}}, "username": "mortespiral.eth", "power_badge": true, "display_name": "Mort Espiral", "active_status": "inactive", "verifications": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "follower_count": 1935, "custody_address": "0x673430271a56c3302597065d6e1ded45b346185c", "following_count": 975, "verified_addresses": {"eth_addresses": ["0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/mortespiral/cambios\"}"}', 'soundxyz'), - (1166887, '0xfabd4a19ba1e3ebfb01a471414ef834a5c1dd0ba', 5100, 1, '2024-05-13 09:08:34+00', 0, 0, '{"fid": 206, "object": "user", "pfp_url": "https://i.imgur.com/0NB7bxd.gif", "profile": {"bio": {"text": "Onchain is the new online - FID 206 - Building /coop-recs", "mentioned_profiles": []}}, "username": "coopahtroopa.eth", "power_badge": true, "display_name": "Coop", "active_status": "inactive", "verifications": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "follower_count": 260648, "custody_address": "0x2c4832db7f6eccbb4d32ee29456d0caa20673200", "following_count": 330, "verified_addresses": {"eth_addresses": ["0x5b93ff82faaf241c15997ea3975419dddd8362c5", "0x46301f7e700be9cffce3e5e142a2244df3f2d4f2"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pluko/get-right?referral=0xeaff5716a61a6be7151b3bad141ad2ac3d683bcb\"}"}', 'sonata'), - (1166895, '0x933761fb99f0b51ed08a4717de36269d8dec477a', 2222, 1, '2024-05-13 10:52:27+00', 100, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 409, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 232, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6QndKEhGoxbCDixi6FPOGD?si=K_fMCh38RgixulFSu8UmcA\"}"}', 'sonata'), - (1166889, '0xb85347d476916112975f4a667a570da288b4c12e', 2000, 1, '2024-05-13 09:16:13+00', 0, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2515, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 934, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://on.soundcloud.com/8FPy9\"}"}', 'sonata'), - (1166893, '0xaf8a7d34e0405cd76aac298378b76d3c1be8dfa9', 0, 1, '2024-05-13 10:26:44+00', 100, 0, '{"fid": 2928, "object": "user", "pfp_url": "https://i.imgur.com/w3mf27t.png", "profile": {"bio": {"text": "art x design x coding\n\nprev /wovn /bright-moments /flow and a few other start ups ", "mentioned_profiles": []}}, "username": "jbird", "power_badge": true, "display_name": "jesse", "active_status": "inactive", "verifications": ["0xb4a996956856fee7a3c3dca4b384e4ef26a7bc25", "0xe33173117612d12c368925afd4231fce32ade8fe"], "follower_count": 724, "custody_address": "0xc7a4db142b75ac5098e324f2a614a8de61ffa221", "following_count": 475, "verified_addresses": {"eth_addresses": ["0xb4a996956856fee7a3c3dca4b384e4ef26a7bc25", "0xe33173117612d12c368925afd4231fce32ade8fe"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2w4OE0IjsQdmB07DDsc4r9?si=lPxaTx8YSCuEE6aW5kfUHQ\"}"}', NULL), - (1166892, '0x0df2937e2c94dda2024df5da5823e9cfdf1221b1', 0, 1, '2024-05-13 10:24:18+00', 50, 0, '{"fid": 5851, "object": "user", "pfp_url": "https://i.imgur.com/VFBDCrE.jpg", "profile": {"bio": {"text": "superstar curator • culture strategist • DJ • yes you know me from Boiler Room", "mentioned_profiles": []}}, "username": "opiumhum", "power_badge": true, "display_name": "Michail / Opium Hum / Hyper Real", "active_status": "inactive", "verifications": ["0xf1708bccf4ce044699ea2ecafc2ff0c5139bdbc3"], "follower_count": 531, "custody_address": "0x4bbc4c137b1ee74982a873973dc06305b2d0e751", "following_count": 77, "verified_addresses": {"eth_addresses": ["0xf1708bccf4ce044699ea2ecafc2ff0c5139bdbc3"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/resident-advisor/ra936-karen-nyame-kg\"}"}', NULL), - (1166894, '0x87e25087716552a51a26d4ce2d44f33b319e5c3d', 2100, 1, '2024-05-13 10:33:07+00', 113, 1, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. ", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 6271, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2654, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5DYCWUXiq2u7fRZbfzucf5\"}"}', 'rock'), - (1166918, '0xaf4705a15c53c781e9b661d59e7e52f9274309d7', 0, 1, '2024-05-13 11:47:33+00', 100, 0, '{"fid": 301385, "object": "user", "pfp_url": "https://i.imgur.com/w6mLoOw.gif", "profile": {"bio": {"text": "crypto\n$DEGEN🎩🍖 \n\neditor. comic editor. DTP. boardgamegeek NY TOKYO", "mentioned_profiles": []}}, "username": "wakkin", "power_badge": true, "display_name": "wakkin🎩🍖🔮 🧀🍕🍗", "active_status": "inactive", "verifications": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "follower_count": 2528, "custody_address": "0xf26fb244942d74f00eb4eae1c71fcbbd530104a5", "following_count": 934, "verified_addresses": {"eth_addresses": ["0xb4ed1a39491c83219764152e4dc68944d5547947"], "sol_addresses": ["2TM6TzsP4vtR4PRCZ1EtYkM8btFGi7NKfenPcfKHX5tW"]}}', '{"{\"url\":\"https://soundcloud.com/k-f-8/japanese-mix-2016?si=24f564f6dbf34517ad98a53a1e931c80&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', 'jp'), - (1166937, '0x7417b7c76b7a1df293ab9b172b04dad2199627d3', 0, 1, '2024-05-13 12:51:24+00', 0, 0, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full stack artist 🖌️⚡️🎵\nBuilding ORIGIN STØRIES a creative tech studio (FIB, VPM , REFUSES)", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 704, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 319, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6uaNE8bWMRIv3b6kQhQxHF?si=j-h7K8J7ROO3rpDnF4CzWg\"}"}', 'sonata'), - (1166741, '0x63f3da2c62e86814049b601ff2dd8b644dc66294', 7154, 1, '2024-05-12 22:50:06+00', 0, 0, '{"fid": 633, "object": "user", "pfp_url": "https://i.imgur.com/f3MHWW0.jpg", "profile": {"bio": {"text": "/musicnerd nerding /with @clt on musicnerd.xyz. Productizing /patronage.", "mentioned_profiles": []}}, "username": "cxy", "power_badge": true, "display_name": "C.Y. Lee | cxy.eth", "active_status": "inactive", "verifications": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "follower_count": 481, "custody_address": "0x42336ad90fb7a447e013d9f495cb96d7edc1a003", "following_count": 342, "verified_addresses": {"eth_addresses": ["0x7b753919b953b1021a33f55671716dc13c1eae08"], "sol_addresses": ["2fj2ne42grvCHsDUTuL4HVFT9wrAKZ3F9VZ2ktKMyDHP"]}}', '{"{\"cast_id\":{\"fid\":6751,\"hash\":\"0x16e8f8e5a6355833b3e19e7bf30085e85d25b4bd\"}}","{\"url\":\"https://open.spotify.com/track/5pLwwYpKqMzDXpps2eEAIR\"}"}', 'soundscapes'), - (1167090, '0x335b34b2602ec1b1e3246e8d70b15e4035123ffa', 2010, 1, '2024-05-13 19:32:58+00', 0, 4, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5wCT8PLpvSkRo867tmnNaE?si=71f175bec0284803\"}"}', 'sonata'), - (1166919, '0x416d40f69de316ee1269aacad5355266b7ab9fe4', 2510, 1, '2024-05-13 11:52:58+00', 100, 0, '{"fid": 169, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/fWnQF5IzaerIcPn5rPHvl4oENtum0Jr2M5wxtC99L2c0ELGPD9WzgxhlgeybhUrO-LueMKSYgBWyhKcT5wydRotxpONeNJaP78t2nA", "profile": {"bio": {"text": "I am a VC", "mentioned_profiles": []}}, "username": "fredwilson.eth", "power_badge": true, "display_name": "fredwilson", "active_status": "inactive", "verifications": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "follower_count": 4699, "custody_address": "0x6e6dc9975c7b820c235649924b4ab20068100e76", "following_count": 127, "verified_addresses": {"eth_addresses": ["0x2cb5ae51861a4a6e8568b527cafc3891317ac94d"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/VYfgs\"}"}', 'sonata'), - (1166938, '0x78d4fa9065a78ca909ac1bfb215fc6664bed5d56', 61, 1, '2024-05-13 12:51:38+00', 0, 0, '{"fid": 8439, "object": "user", "pfp_url": "https://i.imgur.com/1I0zSEh.jpg", "profile": {"bio": {"text": "building /royalpatron, data lover, jpeg collector. previously data science at warby parker ", "mentioned_profiles": []}}, "username": "eddie", "power_badge": true, "display_name": "Eddie Wharton", "active_status": "inactive", "verifications": ["0x1115e7bed26542bf247a7f800a9f48d530c3f955", "0xe330b0ab6d18e3f523890403a9df284feb4ba2b8", "0x30b7b41e299f90ae78a11b764ad2804ab2bf272b", "0xcdc8292124218263155fe06ca8200db0ee262be4"], "follower_count": 2286, "custody_address": "0x3e7edf2ed4a4b123b405c03af66b81aff37bd839", "following_count": 496, "verified_addresses": {"eth_addresses": ["0x1115e7bed26542bf247a7f800a9f48d530c3f955", "0xe330b0ab6d18e3f523890403a9df284feb4ba2b8", "0x30b7b41e299f90ae78a11b764ad2804ab2bf272b", "0xcdc8292124218263155fe06ca8200db0ee262be4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5XAHbHsz5bChzR3mjQPwWc?si=rXaDg1pyT0i2ARxDbsY0eg\"}"}', 'sonata'), - (1166978, '0x1e448c57f7e6e617f543a65797c550fc879ac7e0', 0, 1, '2024-05-13 13:34:07+00', 0, 0, '{"fid": 10971, "object": "user", "pfp_url": "https://i.seadn.io/gae/5Y51u8vlx73mQj6R7jObpdvC9nkdAIeMul8ErYUjbXEYC8luNtZs-nniFBATubJHAMv3HtA_G76IG5yDopU9sW9OtKDSoW0gm4TXvxA?w=500&auto=format", "profile": {"bio": {"text": "@usv | jared.xyz | formerly founder of groupme and fundera ", "mentioned_profiles": []}}, "username": "jaredhecht.eth", "power_badge": true, "display_name": "Jared Hecht", "active_status": "inactive", "verifications": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "follower_count": 343, "custody_address": "0xe363817e3eb0f4c3d5628142b63ea7b275a4491b", "following_count": 102, "verified_addresses": {"eth_addresses": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/49MHCPzvMLXhRjDantBMVH?si=paRZP6d5Qmqsl5uVhnVJ5A\"}"}', NULL), - (1166983, '0x97f0ff58e8e6dbe4b69cef12e4eba8c92b84cca5', 0, 1, '2024-05-13 14:06:01+00', 0, 0, '{"fid": 4407, "object": "user", "pfp_url": "https://i.imgur.com/kynnpYw.jpg", "profile": {"bio": {"text": "The Farcaster formerly known as Kchamp. Books, beats, bodybuilding, bright ideas and beautiful things.\n\nkatherinechampagne.com ", "mentioned_profiles": []}}, "username": "keccers.eth", "power_badge": true, "display_name": "Katherine", "active_status": "inactive", "verifications": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "follower_count": 86324, "custody_address": "0xe4c5b20fd2168af6fe9d74e3e46f55f12684567f", "following_count": 1114, "verified_addresses": {"eth_addresses": ["0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3Zb7Coui3HJ5nCvspOnQ2j?si=X7uGCxQVQTe7xrEnUIGLjQ\"}"}', NULL), - (1166993, '0x79eb638233364c3e161739aff8de492d4e6cdcf9', 0, 1, '2024-05-13 14:36:07+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 731, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 657, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2mXJ362fylTUkSarvwfuTH?si=uNaXO3hqTqGdzSXS_wefew\"}"}', NULL), - (1166994, '0xdd43fd42a75f5244335cee49f4f91b06a4912d82', 0, 1, '2024-05-13 14:43:22+00', 0, 0, '{"fid": 9218, "object": "user", "pfp_url": "https://i.imgur.com/vQTCwo5.jpg", "profile": {"bio": {"text": "new media artist and internet diarist ✨ \n\nhttps://linktr.ee/tinyrainboot", "mentioned_profiles": []}}, "username": "tinyrainboot", "power_badge": true, "display_name": "tinyrainboot 🔮", "active_status": "inactive", "verifications": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "follower_count": 2447, "custody_address": "0x09c6e1d005f69c52ed6c0cf353f806a443e6044a", "following_count": 302, "verified_addresses": {"eth_addresses": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4KULAymBBJcPRpk1yO4dOG?si=b524759d80254e30\"}"}', NULL), - (1166995, '0x353c85dddac17e485edaa282bfffb38ec986fe36', 0, 1, '2024-05-13 14:43:25+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 322, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 195, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Di7t9yGoxdZRLAt5a4pi0?si=PGjS8cmAR6KjFGulKVhilQ\"}"}', 'nostalgia'), - (1166996, '0x84e99c07faa0c495e5cb85d5259ad8db251baa89', 0, 1, '2024-05-13 14:44:38+00', 0, 0, '{"fid": 9218, "object": "user", "pfp_url": "https://i.imgur.com/vQTCwo5.jpg", "profile": {"bio": {"text": "new media artist and internet diarist ✨ \n\nhttps://linktr.ee/tinyrainboot", "mentioned_profiles": []}}, "username": "tinyrainboot", "power_badge": true, "display_name": "tinyrainboot 🔮", "active_status": "inactive", "verifications": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "follower_count": 2447, "custody_address": "0x09c6e1d005f69c52ed6c0cf353f806a443e6044a", "following_count": 302, "verified_addresses": {"eth_addresses": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/440v2YUlT7g3YQw7KI4813?si=788c5bc4a1bd4bdf\"}"}', NULL), - (1166997, '0x1cee5d7d0cd7c1c8130a355e207acee66e898709', 0, 1, '2024-05-13 14:46:43+00', 0, 0, '{"fid": 9218, "object": "user", "pfp_url": "https://i.imgur.com/vQTCwo5.jpg", "profile": {"bio": {"text": "new media artist and internet diarist ✨ \n\nhttps://linktr.ee/tinyrainboot", "mentioned_profiles": []}}, "username": "tinyrainboot", "power_badge": true, "display_name": "tinyrainboot 🔮", "active_status": "inactive", "verifications": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "follower_count": 2447, "custody_address": "0x09c6e1d005f69c52ed6c0cf353f806a443e6044a", "following_count": 302, "verified_addresses": {"eth_addresses": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6d3QUBsiAw3aZI6F2mMhzk?si=89af981f74e74d2e\"}"}', NULL), - (1166998, '0xa8af91adf44d9ae5a69c01476f1554935d5c564b', 0, 1, '2024-05-13 14:47:34+00', 0, 0, '{"fid": 9218, "object": "user", "pfp_url": "https://i.imgur.com/vQTCwo5.jpg", "profile": {"bio": {"text": "new media artist and internet diarist ✨ \n\nhttps://linktr.ee/tinyrainboot", "mentioned_profiles": []}}, "username": "tinyrainboot", "power_badge": true, "display_name": "tinyrainboot 🔮", "active_status": "inactive", "verifications": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "follower_count": 2447, "custody_address": "0x09c6e1d005f69c52ed6c0cf353f806a443e6044a", "following_count": 302, "verified_addresses": {"eth_addresses": ["0x91137bf8d5e95ce028235f38dbd7274a50d0f258", "0x1216083be36842278fb3cf9c3f56b7792ecc359b"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4KULAymBBJcPRpk1yO4dOG?si=26482a5ebeee460c\"}","{\"url\":\"https://open.spotify.com/track/440v2YUlT7g3YQw7KI4813?si=cde2f8dd694043c7\"}"}', NULL), - (1167006, '0x9c898e7eb38daa6ffb6e2c2f6cf45a975ba30ccb', 0, 1, '2024-05-13 16:24:26+00', 0, 8, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d741ebcf-92be-442d-0640-13e995223200/original\"}","{\"url\":\"https://open.spotify.com/track/2DHtD6MrR7Zy2XKqGnZYK7?si=cY2Ws-cjQf6OCFTBPv3_qA&pi=u-KOUHnyPOSC-U\"}"}', NULL), - (1167010, '0xde9efa84af7166da42f90fc5ada025c5d78a22aa', 0, 1, '2024-05-13 16:40:10+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2DHtD6MrR7Zy2XKqGnZYK7?si=1FotcDv7TYiaY0M59okeqw\"}"}', NULL), - (1167005, '0xb2a9bb79c7aefde1fc1728b52bd42b48ace6fc31', 0, 1, '2024-05-13 16:17:22+00', 0, 3, '{"fid": 193826, "object": "user", "pfp_url": "https://i.imgur.com/Urc2CHT.gif", "profile": {"bio": {"text": "Building a portable community graph 👜 /los-fomos. Show me your /typos. Dancing in /latinmusic. ", "mentioned_profiles": []}}, "username": "pauline-unik", "power_badge": true, "display_name": "Pauline Unik 🌶️", "active_status": "inactive", "verifications": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "follower_count": 1536, "custody_address": "0x285b0d0d896591bf9cf34dcb5d401883c8ead439", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6XjDF6nds4DE2BBbagZol6?si=xKpJ13miRke77v1HS4pQzw&context=spotify%3Aplaylist%3A37i9dQZF1DWY7IeIP1cdjF\"}"}', 'latinmusic'), - (1167003, '0x40316825e3ea8674cfe51a4f09c607f03641f553', 0, 1, '2024-05-13 16:13:36+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Lt6XpDCo3xETDwWgvZJIY?si=kaW0KqY1QMubCcBPkOH6Fw\"}"}', NULL), - (1167004, '0xe3e8af3090d594101e03c8f9a91830403c01b709', 0, 1, '2024-05-13 16:16:54+00', 0, 1, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0qOn7Z91EYtFUENpjKXvtP?si=VeQCdDWAReCnNJL4XnQELA\"}"}', NULL), - (1167009, '0x598a0e60b41863f1238b3f0cd42d061a47b70107', 0, 1, '2024-05-13 16:36:37+00', 0, 14, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2881, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2230, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/7208b410-1478-40a5-4192-e8d647a04900/original\"}","{\"url\":\"https://on.soundcloud.com/YphTAmVXsN3qSZym6\"}"}', 'sonata'), - (1170951, '0x1fd9652a6b1331a562df38c26b79b60004daffd4', 12210, 1, '2024-05-13 22:15:55+00', 1, 13, '{"fid": 17356, "object": "user", "pfp_url": "https://i.imgur.com/Ia74rN8.jpg", "profile": {"bio": {"text": "Gundam💜むぅ。です。\n\n🧛‍♀️:https://drakula.app/user/miiiiapp", "mentioned_profiles": []}}, "username": "miiiiapp", "power_badge": true, "display_name": "muu🎩🧀🍖🔵 🔄", "active_status": "inactive", "verifications": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "follower_count": 3743, "custody_address": "0x4c5db66d58d9ec97d4f972383f6b4e1ff3318066", "following_count": 493, "verified_addresses": {"eth_addresses": ["0xc4f67dea55e19155774dd2c9611738677a687d9a"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/aevzG8jVVETkXp1R9\"}"}', 'sonata'), - (274469, '0x7d707a24e6bcfd097b96810363bd4fa6740d1264', 320, 1, '2024-05-05 17:18:11+00', 10, 3, '{"fid": 373566, "object": "user", "pfp_url": "https://i.imgur.com/aOrsVER.gif", "profile": {"bio": {"text": "Interdimensional Frequency Sculptor | 432 Hz Conscious Electronic Music | Musica W3 Co-Founder\n\nhttps://www.bonfire.xyz/YoshiroMare", "mentioned_profiles": []}}, "username": "yoshiro-mare", "power_badge": false, "display_name": "Yoshiro Mare 🎩", "active_status": "inactive", "verifications": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "follower_count": 111, "custody_address": "0xedc0a98eab9749f257bfd9520a2dec7502d72fa7", "following_count": 322, "verified_addresses": {"eth_addresses": ["0x94734e11b78680a35b0a86ba3ce634d334d6d2a7"], "sol_addresses": ["F9U1Q12LtVRadwMud97Mm6K4YCBSrEgS7ZBd9vMTB1t8"]}}', '{"{\"url\":\"https://www.sound.xyz/nenx/portal-ii?referral=0x94734e11b78680a35b0a86ba3ce634d334d6d2a7&referral_source=link\"}"}', 'soundxyz'), - (1167029, '0x1818be45f4b9f1113cbc5bbe5f7bad5bfab0abf9', 0, 1, '2024-05-13 17:53:48+00', 0, 0, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 766, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 244, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0Y7di9ZCmB6Elad5WISaPc?si=IjzIctd_Tf2-K8QW_SlfeQ\"}"}', 'bangers'), - (1167022, '0x5c3552b31d315bf46d07c3d42219dcf210879185', 0, 1, '2024-05-13 17:07:27+00', 0, 44, '{"fid": 5431, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/40c72a19-41ec-4128-9377-be9469383100/original", "profile": {"bio": {"text": "Designing /brand3 strategies at /floc | /degen logo creator | nf.td/esdotge", "mentioned_profiles": []}}, "username": "esdotge.eth", "power_badge": true, "display_name": "S·G 🎩 ", "active_status": "inactive", "verifications": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "follower_count": 32752, "custody_address": "0xec8e91d76ffd0593567b5a175b3e30b97f2cfdc5", "following_count": 1530, "verified_addresses": {"eth_addresses": ["0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/pochi/farcon-vibes\"}"}', NULL), - (1167023, '0xc9ab4553a04e0afc1f06fd15a9537ce1c8411966', 0, 1, '2024-05-13 17:13:00+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1hZJcuz9iMoz6tLkFlIaUy?si=vzh1ykFkSteII0hJFSkAow\"}"}', NULL), - (1176510, '0x0b0fc4bbe9561f57a337a35a82df222ee23d9a36', 100, 1, '2024-05-17 17:13:26+00', 0, 0, '{"fid": 253764, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/fffd0afd-a59e-4d9f-9b6a-b94322261300/rectcrop3", "profile": {"bio": {"text": "That Asian girl you met | Came to Paris for the fashion, stayed for the web3 homies | We do a little tokenizing for major brands idk"}}, "username": "cxs", "power_badge": true, "display_name": "cxs", "active_status": "inactive", "verifications": ["0x33f858b3a2ef0b1d725e841e4993d396fef94ecf", "0xa7e4f4c1616316f67f520744457bd187ca58e1d8"], "follower_count": 408, "custody_address": "0x06dd0e062dfaa7522a47c04a2a6ec2520d65117f", "following_count": 182, "verified_addresses": {"eth_addresses": ["0x33f858b3a2ef0b1d725e841e4993d396fef94ecf", "0xa7e4f4c1616316f67f520744457bd187ca58e1d8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4VqPOruhp5EdPBeR92t6lQ?si=aXMzr-iVRKGNmqRRuoVcCQ\"}"}', 'music-caster'), - (1167033, '0x3797d24ffdd428464a40c7180833b1069eef7b41', 0, 1, '2024-05-13 18:20:53+00', 0, 0, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 410, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 233, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6nl7KJ5FZLf60z7i6GedIT?si=mO2tNwC4RumsHjlqGrPdvQ&context=spotify%3Aalbum%3A5y9Fis539BaAsi7MmHKHm2\"}"}', NULL), - (1167036, '0x6b7eb9c37e2431436c9a69a85b74937ab508c453', 1000, 1, '2024-05-13 18:39:05+00', 0, 1, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 358, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 199, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2a2Yb7fc67EzRUVpYTUyZq?si=-0YUCt1tSwWJzUnArKZFYg\"}"}', NULL), - (1167035, '0x69f621c45c4b2e15bf2fb5673586f40e5e0d9f9f', 1000, 1, '2024-05-13 18:31:55+00', 0, 7, '{"fid": 14515, "object": "user", "pfp_url": "https://i.imgur.com/ipJRbGn.gif", "profile": {"bio": {"text": "Playfully Controversial | Art in All The Fancy Places | Destigmatize | #cc0 |\nrc.xyz/empresstrash\nbeacons.ai/empresstrash\n/cryptoart\n/trash-art\n/empress-trash", "mentioned_profiles": []}}, "username": "empresstrash", "power_badge": true, "display_name": "Empress Trash 🎩🌈🖤", "active_status": "inactive", "verifications": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "follower_count": 2840, "custody_address": "0x1fe3a27087710e956deab0a498ec7f0f031a7da2", "following_count": 718, "verified_addresses": {"eth_addresses": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "sol_addresses": ["81gcTouikeKU4vtqWKGVuGwBA9yTgM3EbDCquPp6MGXE"]}}', '{"{\"url\":\"https://open.spotify.com/track/1aNUSKBe6UMyMk3pEu9ws7?si=ab7db28b1c0b4870\"}"}', NULL), - (1167034, '0x8b48e7f40195181cf9daff7e482f1f9a00597415', 100, 1, '2024-05-13 18:23:15+00', 0, 3, '{"fid": 6751, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/a57ff335-1b6d-43dc-9b33-73a509117400/rectcrop3", "profile": {"bio": {"text": "Jamie | Putting my life in my music | Electronic music artist | World Building | Sharing what I learn /real-friends \nhttps://scenes.soundoffractures.com/ ", "mentioned_profiles": []}}, "username": "soundoffractures", "power_badge": true, "display_name": "Sound of Fractures ", "active_status": "inactive", "verifications": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "follower_count": 421, "custody_address": "0xf84b226811da2927b276c74a8301f8727d2e703d", "following_count": 237, "verified_addresses": {"eth_addresses": ["0x3585ca22df80d70f6d1cc0867d8387c360181349"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6nl7KJ5FZLf60z7i6GedIT?si=mO2tNwC4RumsHjlqGrPdvQ&context=spotify%3Aalbum%3A5y9Fis539BaAsi7MmHKHm2\"}"}', 'real-friends'), - (1167031, '0xf36cb0b08621891097353fbeb55e752d2e123d24', 0, 1, '2024-05-13 17:56:30+00', 0, 4, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1944, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 338, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/99fbd1dd-f307-4d09-a961-01e1220ae284?invite=gHHzk6\"}","{\"url\":\"http://sound.xyz\"}"}', 'theblockexp'), - (1167037, '0xbd86bb4d6ec78b98b23f7d2504bf037647a163a4', 1000, 1, '2024-05-13 18:41:10+00', 0, 1, '{"fid": 5448, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/1e8408526d3fe3d5e233fe6ab645f0cb.jpg?w=500&auto=format", "profile": {"bio": {"text": "Team Warpcast. Ex data platform @ Coinbase & Robinhood. I like /techno music & /mech-kb", "mentioned_profiles": []}}, "username": "cmlad.eth", "power_badge": true, "display_name": "Chris", "active_status": "inactive", "verifications": ["0x9c928c1b01339ebfaf45d400f793989b60b6331e"], "follower_count": 1658, "custody_address": "0x61d00ad76068f8d4740c358c8c03aaeb510b590d", "following_count": 703, "verified_addresses": {"eth_addresses": ["0x9c928c1b01339ebfaf45d400f793989b60b6331e"], "sol_addresses": ["DFPArtDTYxS2pdoTYPowuVNsjsmwVCZ883KsmSrqadRk"]}}', '{"{\"url\":\"https://open.spotify.com/track/04wMzABDjelhfCgwzAcXKX?si=2654d3c361a344eb\"}"}', NULL), - (413750, '0xe0bfac9871d1f119f387b8e9fadc725ce214249b', 23727, 1, '2024-05-06 05:31:09+00', 10, 4, '{"fid": 20300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f268c7c-62d3-4d51-e07d-c64e93317700/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter, DJ, Sonic Healer, 1/2 of @karmavioletta 🎶 Building @wavwrld 🌊🌐 1/77 of CHAOS & @songcamp", "mentioned_profiles": []}}, "username": "violetta", "power_badge": false, "display_name": "Violetta", "active_status": "inactive", "verifications": ["0x68375427c29995b277ad343aa89be591926c6088"], "follower_count": 82, "custody_address": "0x358273ae8525236066899f57d24dfb5e9d83dbf8", "following_count": 38, "verified_addresses": {"eth_addresses": ["0x68375427c29995b277ad343aa89be591926c6088"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/noise/karmavioletta-humanity\"}"}', NULL), - (1176523, '0x0ff1d8b44815edf3096b597597d14a52d032761d', 0, 1, '2024-05-17 17:57:02+00', 0, 0, '{"fid": 9318, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmPASmu4tqbgwuceqWtHbEZTrn24zsva1NDBxpfzEjVpQR/5451.png", "profile": {"bio": {"text": "subtraction speculation visualization\nThrive ↑\nHYPERPEOPLE \n/dark-ops"}}, "username": "catra.eth", "power_badge": true, "display_name": "catra ↑", "active_status": "inactive", "verifications": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "follower_count": 907, "custody_address": "0xc656b9dc4fc21cb0a01d3efddb8a68c123ddc31b", "following_count": 195, "verified_addresses": {"eth_addresses": ["0x96df10a852b1528f6b7972ccd83b755f71210b5c", "0xe8bb2e08e6f52f11d8b65e2a3db772daa60e117e"], "sol_addresses": ["DFqgM6sTHJknZ2NDPWA3PSFCeEEASZeLFyg6JWNaLcr1", "AKT6jmnPAvvKPiFNwsrLAdb8hMpHADWV5fr6TsGiNB7c"]}}', '{"{\"url\":\"https://open.spotify.com/track/22hH5X4qc0r4cam7nasvvi?si=JYTpa4G2RWK-J4GVsUL_HA\"}"}', NULL), - (1167038, '0xd6f80664b619fccfb7bf472b636bed4ed40447b1', 0, 1, '2024-05-13 18:44:26+00', 0, 1, '{"fid": 240835, "object": "user", "pfp_url": "https://i.imgur.com/EozZCWk.png", "profile": {"bio": {"text": "Knowledgeable broke anon", "mentioned_profiles": []}}, "username": "kenanie.eth", "power_badge": true, "display_name": "kenanie.eth", "active_status": "inactive", "verifications": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "follower_count": 3091, "custody_address": "0xc6dd7067493b6dd22f56f61fc72d8980bf883e1f", "following_count": 310, "verified_addresses": {"eth_addresses": ["0xa9c4512042dfe48e8cdf653999a91519c85296e0", "0x40d4e079226d4754de2768c103b90f114a551c4a"], "sol_addresses": ["C4Bg7Xa4nnY2Ty5j4j99nEwoP23YzK6SCDPTHVfHTkv7"]}}', '{"{\"url\":\"https://open.spotify.com/track/65jw6GhwQW3Db55PxlPEpS?si=VKerxviASk-lxMqerzQHYw\"}"}', NULL), - (40924, '0x79649109f4c9897f305556d68f4d98277e1216c4', 40096, 1, '2024-05-04 22:22:22+00', 41, 9, '{"fid": 387368, "object": "user", "pfp_url": "https://i.imgur.com/oL269KD.jpg", "profile": {"bio": {"text": "@karmawav + @violetta. Music duo & couple. Exploring music in web3. Building a better WRLD via @wavwrld 🌊 2/77 of Chaos & @songcamp 🎶 /djs", "mentioned_profiles": []}}, "username": "karmavioletta", "power_badge": false, "display_name": "KarmaVioletta", "active_status": "inactive", "verifications": ["0xc678a7af0e40ba1e99390b31dbdb7099c563c935"], "follower_count": 29, "custody_address": "0x7a870809ebd7fdb9fd5444f3b0afa1f1fa6d3bbd", "following_count": 22, "verified_addresses": {"eth_addresses": ["0xc678a7af0e40ba1e99390b31dbdb7099c563c935"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/grateful?referral_source=link\"}"}', NULL), - (1167088, '0x8bf38b40f622dbed23d2e49c1fb9e24341b75ea2', 0, 1, '2024-05-13 19:32:39+00', 0, 18, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4326, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 307, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://stream.warpcast.com/v1/video/f40afaf43da56e3c95dfaf9756e515a1.m3u8\"}","{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=wNVFftoiSAmgnxfVlSz_5Q&context=spotify%3Aalbum%3A38N8k7q6vILvaBekWkK4GK\"}"}', 'replyguys'), - (1167087, '0x2b01118bf74b5ab952b7374a113c562b5a6243d3', 0, 1, '2024-05-13 19:18:11+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5iynCtpEY7mx4ou54tHBPH?si=jN-prze7RYuySgNd2DjnLg\"}"}', NULL), - (1167040, '0x96cc30bf0f46192a957bf9706297a68b44328a65', 2500, 1, '2024-05-13 18:57:01+00', 0, 1, '{"fid": 1436, "object": "user", "pfp_url": "https://openseauserdata.com/files/791e48424dc2ab81566ad53ae32171f7.svg", "profile": {"bio": {"text": "ᴀʀᴛɪsᴛ/ᴘʀᴏᴅᴜᴄᴇʀ │ ᴘʀᴀᴄᴛɪᴄɪɴɢ ᴄʀᴇᴀᴛɪᴠɪᴛʏ @songcamp │ @wavwrld 𝟷/𝟸 ᴏғ @karmavioletta ʙᴜɪʟᴅɪɴɢ /wavwrld 🌊🌐", "mentioned_profiles": []}}, "username": "karmawav", "power_badge": true, "display_name": "karma.wav ↑ 🌊", "active_status": "inactive", "verifications": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "follower_count": 685, "custody_address": "0x85a971364f50fa5c41fc4b0cfbc7edf10ddffc1d", "following_count": 458, "verified_addresses": {"eth_addresses": ["0xde0cbd5df89bb67ab804db21e9b931bad4200392", "0xfed59f5760e4cb16cd37d129c54a0d2557d167d3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2WeArzthhVanDyJM1vzU7R?si=b76631b764c34a9c\"}"}', 'sonata'), - (1167032, '0x028b670c7d2141592b5cbaf749892d5e5110b8c6', 3000, 1, '2024-05-13 18:14:51+00', 0, 33, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from another point of view /wevibe ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2243, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 598, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1h29y63PqkBoEXbyiumalC?si=5Yv67afQQP6zenqnTQMZTg&context=spotify%3Asearch%3Apalm\"}"}', 'bangers'), - (1167091, '0x3d3d72686c17b73c1a76727b5b27fa5cae5d9268', 10, 1, '2024-05-13 19:33:40+00', 0, 1, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/75TDPu9k7Yv3IovdYaNCwk?si=0ab6de7b8a8d42a5\"}"}', NULL), - (1167093, '0xd5a6a17f476d0ca9e9204bd7b73c4f14b5bc616c', 10, 1, '2024-05-13 19:34:01+00', 0, 1, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0UsNgv6unHisK9NslsZxwz?si=cdbabaad6fca4344\"}"}', NULL), - (1167094, '0x203fd5e52dd660ea2ddc94fa077a72cfa5f55aa7', 1010, 1, '2024-05-13 19:34:27+00', 0, 1, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1e4oFJVGlKcq6kv12eER2P?si=0393550545314912\"}"}', NULL), - (1176524, '0xc57cf048161f0ccd1e25d9e22a16fa12f1a6788e', 0, 1, '2024-05-17 18:12:50+00', 0, 0, '{"fid": 375536, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. "}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 471, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 219, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3hQCHzkE5oSA3F1xM8bpcM?si=7GqQ68GvTwe9ScNAWWqE0w\"}"}', 'bangers'), - (1167097, '0x1370b5886388acd83b199a770ddc0e0dd68d4d90', 20, 1, '2024-05-13 19:33:50+00', 0, 2, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3RL92qOlVwpt5KV9rlLV82?si=e93df1a579484bd8\"}"}', NULL), - (1167095, '0xc559e6062aeb566c3717244577d3b64b104bbe28', 10, 1, '2024-05-13 19:34:12+00', 0, 1, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3HflSAiRSzyDrAuMsewh3i?si=813cc1e9dc894614\"}"}', NULL), - (1167092, '0xd90458d527527434a3a6f56dbdc26807eab35ea3', 2020, 1, '2024-05-13 19:34:37+00', 0, 2, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2x4Wu8WR2X47rMBgWVWBnU?si=fd2be7be1e8849e1\"}"}', NULL), - (1167108, '0xc3ee9d0616b8eab637592732c9c59ca9dd0ba02e', 0, 1, '2024-05-13 19:42:40+00', 0, 0, '{"fid": 190045, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e495182-1969-442e-e9d2-e5de1d8b0100/original", "profile": {"bio": {"text": "Building @superrare. Vibing in /superrare. Tipping $RARE・゚✧", "mentioned_profiles": []}}, "username": "superrarejohn", "power_badge": true, "display_name": "SuperRareJohn @farcon", "active_status": "inactive", "verifications": ["0x337101def3eeb6f06e071efe02216274507937bb"], "follower_count": 1821, "custody_address": "0xaafa0b3d56734969539359d957a00276f0ff44c4", "following_count": 205, "verified_addresses": {"eth_addresses": ["0x337101def3eeb6f06e071efe02216274507937bb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/philr9945/pr026\"}"}', NULL), - (1167117, '0x4f6f32d9a1db9ea6812389739e6a32071dcb80ee', 3710, 1, '2024-05-13 20:23:09+00', 0, 2, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 358, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 199, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/kasbo/alive?referral=0xb642b7b23c84ddc446dc364b1f714cee6bfd0908\"}"}', 'soundxyz'), - (1167000, '0x7f82e7a4fa9e7aada1a6eea5289d2bcd2fc83b17', 100, 1, '2024-05-13 15:31:58+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 737, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 663, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2HbpYFQbairMoU2YFyOP2x?si=2Zzr2lr5TL6ZlEpNoIW7oQ\"}"}', NULL), - (1167120, '0xc9cc29996050fea23ea51be222cfc2b21fa02040', 2000, 1, '2024-05-13 20:39:59+00', 1, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 11085, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/c2fe849a-ae89-4bdb-a2a5-29ca897f8656\"}","{\"url\":\"https://www.sound.xyz/noisecontrol/raggamuffin\"}"}', NULL), - (1167115, '0x91f816ac1f0506f6045956d32c7042613e04f608', 2510, 1, '2024-05-13 20:20:14+00', 0, 14, '{"fid": 363197, "object": "user", "pfp_url": "https://i.imgur.com/tye8WEu.jpg", "profile": {"bio": {"text": "Being yourself is never a bad idea 🎧", "mentioned_profiles": []}}, "username": "bakergracemusic", "power_badge": true, "display_name": "Baker Grace", "active_status": "inactive", "verifications": ["0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0"], "follower_count": 3989, "custody_address": "0xf62d5e54d570623b82b3168b6115276901fc8dab", "following_count": 81, "verified_addresses": {"eth_addresses": ["0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/bakergrace/state-of-mind?referral=0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0\"}"}', NULL), - (1167096, '0xc28b18c505c138a316a375c24892ca6a63161e69', 2210, 1, '2024-05-13 19:34:46+00', 0, 1, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2QbTsEUF97LixvDbyKUdCj?si=77fd4c708169484f\"}"}', NULL), - (1167121, '0x123ab2489fcd0367ada86082274fe3296434e702', 0, 1, '2024-05-13 20:55:20+00', 0, 12, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30651, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0lPIzdTQ6sWYJqHxAxhL1y?si=ace7a956738745a2\"}"}', NULL), - (1176525, '0x24db3c8c879bb7448001d5b8b074fa3928bcd7ca', 0, 1, '2024-05-17 18:20:46+00', 0, 0, '{"fid": 14515, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/ipJRbGn.gif", "profile": {"bio": {"text": "Playfully Controversial | Art in All The Fancy Places | Destigmatize | #cc0 |\nrc.xyz/empresstrash\nbeacons.ai/empresstrash\n/cryptoart\n/trash-art\n/empress-trash"}}, "username": "empresstrash", "power_badge": true, "display_name": "Empress Trash 🎩🌈🖤", "active_status": "inactive", "verifications": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "follower_count": 2943, "custody_address": "0x1fe3a27087710e956deab0a498ec7f0f031a7da2", "following_count": 720, "verified_addresses": {"eth_addresses": ["0x8469b7b08d30c63fea3a248a198de9d634b63d70"], "sol_addresses": ["81gcTouikeKU4vtqWKGVuGwBA9yTgM3EbDCquPp6MGXE"]}}', '{"{\"url\":\"https://open.spotify.com/track/6KflfPD0qIbbB1PQyAHla5?si=4314eee2d79c40aa\"}"}', NULL), - (1167089, '0x516d8dae771e9adf6d23bdafc664d1ac6b8640e1', 10, 1, '2024-05-13 19:33:19+00', 0, 1, '{"fid": 350625, "object": "user", "pfp_url": "https://i.imgur.com/Mn5nqbi.jpg", "profile": {"bio": {"text": "the one, the only ✨uh-ray-luh ✨\n\n~onchain music things~\n\nhttps://drakula.app/user/arella", "mentioned_profiles": []}}, "username": "arella", "power_badge": true, "display_name": "arella", "active_status": "inactive", "verifications": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "follower_count": 222, "custody_address": "0xa14369b7ce69dee09f4a4c13e68e8c06cba44c98", "following_count": 523, "verified_addresses": {"eth_addresses": ["0xb408a9ee6332477b143c8cfe6c2c8899849a2edf"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7GHqPV9RCRofSXh68htAkg?si=50b8d09bdd6c4ddb\"}"}', NULL), - (1167118, '0x6442dcc12e5d0f8550325e86ed324428f03cfd78', 2010, 1, '2024-05-13 20:30:37+00', 0, 13, '{"fid": 190045, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3e495182-1969-442e-e9d2-e5de1d8b0100/original", "profile": {"bio": {"text": "Building @superrare. Vibing in /superrare. Tipping $RARE・゚✧", "mentioned_profiles": []}}, "username": "superrarejohn", "power_badge": true, "display_name": "SuperRareJohn", "active_status": "inactive", "verifications": ["0x337101def3eeb6f06e071efe02216274507937bb"], "follower_count": 1941, "custody_address": "0xaafa0b3d56734969539359d957a00276f0ff44c4", "following_count": 214, "verified_addresses": {"eth_addresses": ["0x337101def3eeb6f06e071efe02216274507937bb"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/philr9945/pr026\"}"}', 'sonata'), - (1167125, '0xbe249d74b093f3d7cc10f839ba6b848fcb401da4', 0, 1, '2024-05-13 21:01:55+00', 1, 7, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30651, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2hs6nh9zqZHZFRpqxmAZc3?si=ff95dfc0a4514744\"}"}', 'real-friends'), - (1167126, '0xd6e0f5efe4ecf6bcea51756ba6fc8fff946144d1', 10, 1, '2024-05-13 21:12:24+00', 1, 5, '{"fid": 324876, "object": "user", "pfp_url": "https://i.imgur.com/38VUjUA.jpg", "profile": {"bio": {"text": "artist-producer and founder of web3 music blog iridescent wave 🌊\nhttps://www.celiainsidemusic.com/", "mentioned_profiles": []}}, "username": "celiainside", "power_badge": true, "display_name": "celia inside ", "active_status": "inactive", "verifications": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "follower_count": 310, "custody_address": "0x408f57c90244ba993ef486c57336818bc5d13d25", "following_count": 390, "verified_addresses": {"eth_addresses": ["0x68abc0679a9ddaf7569255ca71993ab759f4e8e1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1Gp8BAbyFdjGP6j9uxtsup?si=fe9575810dce4692\"}"}', 'hyefa'), - (1167021, '0x10a8009ae376e1ce4293ccc725f1f3612f0b0ef3', 1100, 1, '2024-05-13 17:00:53+00', 0, 11, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30651, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/51Rs7xpi3HxrqvN1bI0i5w?si=ooDZW7aoSXGKU-iQwSLQpQ\"}"}', NULL), - (1176526, '0xe2dacb757eb200cdc8c089daa32e5354d521dcb1', 0, 1, '2024-05-17 18:26:30+00', 0, 0, '{"fid": 2514, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/YBsWO1w.jpg", "profile": {"bio": {"text": "Cofounder @morphl2 l Consultant UNICEF CryptoFund l VP Foresight Ventures l prev @gitcoin"}}, "username": "azeem", "power_badge": true, "display_name": "azeem", "active_status": "inactive", "verifications": ["0x9600e2ee6377dadad7299b120026661c336a5e6d"], "follower_count": 365, "custody_address": "0x02b58639294eea1e61b0f179e21a74c75f08e931", "following_count": 103, "verified_addresses": {"eth_addresses": ["0x9600e2ee6377dadad7299b120026661c336a5e6d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6j3wDNKqEeZ6QwPtCcpJX8?si=Cnn7JSjSRNS-EzUP75xYqA\"}"}', NULL), - (622066, '0x195d990f36eaf371f7b4a37accc90186e949c921', 37970, 1, '2024-05-06 13:35:44+00', 910, 118, '{"fid": 453989, "object": "user", "pfp_url": "https://i.imgur.com/Y37BjM9.jpg", "profile": {"bio": {"text": "$JAAD 🎰🎩 yo legends, im jaad. the $DEGEN chain is my life. welcome to a new tipping experience. jaad.tips CA: 0x373e256C754Bf82f09071141b92bEafb83c38c68", "mentioned_profiles": []}}, "username": "jaadtips", "power_badge": false, "display_name": "jaad, the degen 🎩🎰", "active_status": "inactive", "verifications": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "follower_count": 824, "custody_address": "0x1ffcd57133eaca3c2f7fefd475474253b4494b82", "following_count": 123, "verified_addresses": {"eth_addresses": ["0xffe6a480cd7093194cddaad3860c9f93a6127bdf"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/famous_dyl/blockchain-1?in=famous_dyl/sets/crypto-rich-deluxe\"}"}', NULL), - (1170956, '0x9e3bb5982f3682f950a54ae1e7d946b1510fe137', 0, 1, '2024-05-13 23:46:34+00', 0, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 569, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 463, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Ukb3ax4BcAfhvPFfUOnd6?si=IWOWaYrCTYacVHCQ_ptMrgは\"}"}', 'musicjp'), - (1176532, '0x365f1e8734c973cbd4a95ed817047fbeee4f4424', 0, 1, '2024-05-17 18:49:36+00', 0, 0, '{"fid": 528, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/254e8cd6-7e4d-47b9-8aeb-49bebf2dbf00/original", "profile": {"bio": {"text": "icebreaker.xyz/0xen |\nhttps://gallery.so/Oxen/galleries | https://opensea.io/collection/farcats"}}, "username": "0xen", "power_badge": true, "display_name": "0xen 🎩", "active_status": "inactive", "verifications": ["0x333d0ebc54707c0a9d92cac749b3094c28a0e111"], "follower_count": 91019, "custody_address": "0xb1a1e2d2c56f085c9663ad7f298073cbd3549eef", "following_count": 2450, "verified_addresses": {"eth_addresses": ["0x333d0ebc54707c0a9d92cac749b3094c28a0e111"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6JQVN9gi04NCK1tiz0aQA1?autoplay=true\"}"}', NULL), - (1170954, '0xe8c3f91326fef3306386a9561039ee4117a09087', 1000, 1, '2024-05-13 23:07:48+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 328, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/3c36c519-4bec-41a3-e3ef-a670294f6500/original\"}","{\"url\":\"https://open.spotify.com/track/7szBZqBJuj9eAC8HJ4CyTM?si=snUUztfWRQiwiXws5fE9VQ&context=spotify%3Aartist%3A6ft7JnxMyZhp7N52qzHymY\"}"}', 'chatbfg'), - (1170952, '0xa42baa9e3dc6740e1ad5b3de575381d9c597e56f', 4222, 1, '2024-05-13 22:36:22+00', 0, 1, '{"fid": 381086, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee50b6a5-5320-4af2-87ad-b3d53079b300/rectcrop3", "profile": {"bio": {"text": "Film director and writer. Getting better every year and happy as it goes. \nLots of work can be seen on my website:\nmackandco.uk", "mentioned_profiles": []}}, "username": "jamiemccormack", "power_badge": true, "display_name": "Jamie McCormack", "active_status": "inactive", "verifications": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "follower_count": 157, "custody_address": "0xf810f1e885226cd165e10b11e3103c50986e5dc6", "following_count": 198, "verified_addresses": {"eth_addresses": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2nFGIC472JfEAskv3z8iBs?si=pt_ocKfZTN2Ae7N8OQ5lqg\"}"}', 'sonata'), - (1170961, '0x3bc9d1da3d72ebcb54265e291d5347b8628862a6', 6200, 1, '2024-05-13 23:53:11+00', 0, 26, '{"fid": 238853, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/49a59d05-ac7c-4a6b-f4d3-0b52f78f9b00/original", "profile": {"bio": {"text": "bringing culture onchain. creating virtual artists. building @hume.", "mentioned_profiles": []}}, "username": "db3045", "power_badge": true, "display_name": "DavidBeiner", "active_status": "inactive", "verifications": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "follower_count": 1115, "custody_address": "0xde3cea5bb06f5d18d92a827f0ace525bc714963a", "following_count": 381, "verified_addresses": {"eth_addresses": ["0x6d15dffbcb274e423c51c197777eb43665018533"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/angelbaby/life-is-good-with-jagwar-twin\"}"}', 'sonata'), - (1170953, '0x8987f2cbe2a11e9591384c5448110d84d46626a3', 1000, 1, '2024-05-13 23:02:00+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 328, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7kjL0ldXgBwZ3xOzA0WHMD?si=iHlBwxdrSRmaCM2nUve9Rw&context=spotify%3Aalbum%3A692R05mxz7V6eOFoj5PMlQ\"}"}', 'bangers'), - (1176533, '0x7d3223245053f9499b2d44220d8180dbdf68544e', 0, 1, '2024-05-17 18:57:36+00', 0, 0, '{"fid": 288204, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from a different point of view "}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩🍼📟", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2412, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 610, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/19gEmPjfqSZT0ulDRfjl0m?si=zvnp2nRwRfOESDMpTOenUg&context=spotify%3Aplaylist%3A0ypDDA884P7VxjA9eDKbiD\"}"}', 'bangers'), - (1170999, '0x3bbf79333835fb258100f4327919bb9bad1bc7e3', 1504, 1, '2024-05-14 02:08:16+00', 0, 1, '{"fid": 326920, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/053f4128-f794-4e86-6d02-cf8e1e353700/original", "profile": {"bio": {"text": "What''s in the /ball ?🟡\nIt''s Showtime /card 🃏\n@senspace ・SC06 /seedclub \nWant to create friendships in frequencies /clique-tracks", "mentioned_profiles": []}}, "username": "kaspertakagi", "power_badge": true, "display_name": "Kasper 🟡🃏🎩 ", "active_status": "inactive", "verifications": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "follower_count": 1153, "custody_address": "0x3efca5f852b462f33bd8a8a6c2c6bc04489216bf", "following_count": 1005, "verified_addresses": {"eth_addresses": ["0xe9d387b9ed1327e59589da2b82fb491817703bc1"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1tp3KD8fbxSdTWUxL27NJU?si=Ui77MEtPSEOU5Jk0sxKe-A\"}"}', 'clique-tracks'), - (1170996, '0xa7411dcd57966599d31efed63a37bcc56dcf2acd', 5100, 1, '2024-05-14 02:07:01+00', 3, 3, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 750, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 348, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7epwpv5eX5E5rJLOKMBKS4?si=c77782f4715f44ec\"}"}', 'salsa'), - (1170968, '0xbd6d7a737490dd45085ace4939f4bbf7ce44466c', 1000, 1, '2024-05-14 00:22:11+00', 0, 0, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3736, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1015, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sEaRn4YNKWr6E6CMA\"}"}', NULL), - (1170967, '0x2b5d5bfec6a1e156f79e7120a21f07bf95ed84cd', 100, 1, '2024-05-14 00:07:42+00', 3, 14, '{"fid": 326147, "object": "user", "pfp_url": "https://i.imgur.com/IIkcYjX.jpg", "profile": {"bio": {"text": "digital artist and aesthetics 💅🏼🎀💋 🐩\nhttps://linktr.ee/ladelmas", "mentioned_profiles": []}}, "username": "ladelmas.eth", "power_badge": true, "display_name": "La Delmas 🎩", "active_status": "inactive", "verifications": ["0xc672f0fa5ebdc8bc4877f53f232a98e87fcd6416", "0x82625231673248763ebf62ed9e30e4d3e8bd8b82"], "follower_count": 1403, "custody_address": "0xff03d97f687b52bfe5f1f9d70be344fcbbea689e", "following_count": 530, "verified_addresses": {"eth_addresses": ["0xc672f0fa5ebdc8bc4877f53f232a98e87fcd6416", "0x82625231673248763ebf62ed9e30e4d3e8bd8b82"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5oYVxFt2k4SkVp6wzVsFWN?si=fXYOFPiwSCCJxS-n2kkAEA\"}"}', 'replyguys'), - (1171001, '0xb7df7ee67d0ee28467430a63a16219783ef4c644', 0, 1, '2024-05-14 02:08:54+00', 0, 3, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 358, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 199, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4PKpjgLVKfZ9L4K3aheFtF?si=gLioRaFAR92QTKvKaAJjMA\"}"}', 'djs'), - (1170975, '0xb1ec282a4f36de0ff1e69bcf0d28dbf5b12ba911', 5000, 1, '2024-05-14 01:08:21+00', 0, 5, '{"fid": 240247, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/300b5211-852e-4959-668e-23b73d700400/rectcrop3", "profile": {"bio": {"text": "Alchemist at /sonata", "mentioned_profiles": []}}, "username": "sebas.eth", "power_badge": true, "display_name": "Sebas", "active_status": "inactive", "verifications": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "follower_count": 750, "custody_address": "0x5cfb021c45b80e6c90789c0620a9d4d43e7826d6", "following_count": 348, "verified_addresses": {"eth_addresses": ["0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453", "0xf95972d846684eb401083e8bc1a5554a3d4ed888"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2BOcua9pjhKuVtgN40AAHX?si=EpcBsq9DR0GDPe7bifZlEg\"}"}', 'salsa'), - (1170970, '0x3a2af995deccc1a0a2e0401957f125b336b6ccf7', 0, 1, '2024-05-14 00:22:58+00', 0, 4, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3789, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1024, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/sEaRn4YNKWr6E6CMA\"}"}', NULL), - (1171009, '0xf3a8482d6bce0648b513441b079b7c1a27d8498a', 0, 1, '2024-05-14 02:13:18+00', 0, 0, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 554, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 460, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3nocX9ZE2RkdM7YxQzIloq?si=2utS2ZgYQOewsprUMreJKw\"}"}', NULL), - (414930, '0x62ce1810574b492ce34df1b489f4874c5ce328fe', 14220, 1, '2024-05-06 05:33:20+00', 0, 4, '{"fid": 20300, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/5f268c7c-62d3-4d51-e07d-c64e93317700/rectcrop3", "profile": {"bio": {"text": "Singer/Songwriter, DJ, Sonic Healer, 1/2 of @karmavioletta 🎶 Building @wavwrld 🌊🌐 1/77 of CHAOS & @songcamp", "mentioned_profiles": []}}, "username": "violetta", "power_badge": false, "display_name": "Violetta", "active_status": "inactive", "verifications": ["0x68375427c29995b277ad343aa89be591926c6088"], "follower_count": 82, "custody_address": "0x358273ae8525236066899f57d24dfb5e9d83dbf8", "following_count": 38, "verified_addresses": {"eth_addresses": ["0x68375427c29995b277ad343aa89be591926c6088"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/karmavioletta/so-deep\"}"}', NULL), - (1176534, '0x6032c47fb576acb088ed81a9f4aa72c207d6a631', 0, 1, '2024-05-17 18:57:26+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1uq7p42c5q0ueaw083TIlw?si=2fc1e6f328a74a13\"}"}', NULL), - (1171018, '0xc97f7ab9eb90b095569f6698f4e3ac065576a3de', 1000, 1, '2024-05-14 02:38:21+00', 0, 22, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4326, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 307, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0e184a75-b5cf-4f5a-426c-95e01992b100/original\"}","{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=9K2-O-VjQ82iJiI5USZRtQ&context=spotify%3Aalbum%3A38N8k7q6vILvaBekWkK4GK\"}"}', NULL), - (1171012, '0xa541078b440ae274eb5012656e693a941c9c3d3f', 0, 1, '2024-05-14 02:14:21+00', 0, 3, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 569, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 463, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3nocX9ZE2RkdM7YxQzIloq?si=2utS2ZgYQOewsprUMreJKw\"}"}', 'sonata'), - (1176535, '0xad344503796a8c9e9e8a2ce0e754b0afbc474c31', 0, 1, '2024-05-17 18:57:25+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3RKblQNJs8HPvWBgXmq6nn?si=84390c1fd5184140\"}"}', NULL), - (1171062, '0x07e497d753b4d1be70e3abfe6def86a3654a2035', 0, 1, '2024-05-14 03:37:23+00', 0, 4, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3789, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1024, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/m2TZTgfL8oUcwmGs8\"}"}', NULL), - (1170987, '0x56be9129952556448c0120ae8a381784669b228a', 80623, 1, '2024-05-14 01:44:34+00', 120, 18, '{"fid": 253410, "object": "user", "pfp_url": "https://i.imgur.com/1CkdtOO.png", "profile": {"bio": {"text": "Web3 citizen, DeFi Professional, Investor and Blockchain enthusiast.", "mentioned_profiles": []}}, "username": "0xlapi", "power_badge": true, "display_name": "0xlapi 🎩", "active_status": "inactive", "verifications": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "follower_count": 597, "custody_address": "0xa097e40e89b7d396303aa391d30bcc802deec406", "following_count": 527, "verified_addresses": {"eth_addresses": ["0x71535aae1b6c0c51db317b54d5eee72d1ab843c1"], "sol_addresses": ["EX83cU8Sx7jn5uE3KyrMBxdfnQ4JCP3Rv5ACqBxehfNH"]}}', '{"{\"url\":\"https://www.sound.xyz/badley/fool?referral=0x71535aae1b6c0c51db317b54d5eee72d1ab843c1&referral_source=link\"}"}', NULL), - (1171170, '0x5dc1a8a7ee8d8d9c12cc7eb0c3ae8f239d79a2f3', 2000, 1, '2024-05-14 13:28:56+00', 0, 18, '{"fid": 310928, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b8d7aec5-e64b-4332-4e53-25129162b100/original", "profile": {"bio": {"text": "the intern''s intern\npolymarket.com", "mentioned_profiles": []}}, "username": "polymarket", "power_badge": true, "display_name": "Polymarket", "active_status": "inactive", "verifications": ["0x7cd1fa8f4e22eb278c0dd2c46a653da2cb45bef8"], "follower_count": 5974, "custody_address": "0x22c8f140faf674c9609afae90f3f77afd6819bc9", "following_count": 170, "verified_addresses": {"eth_addresses": ["0x7cd1fa8f4e22eb278c0dd2c46a653da2cb45bef8"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0lEjxUUlKqjqXrVlIHFduD?si=L1NLda0iS92zsPjGNtx5gQ&context=spotify%3Asearch%3Apowe\"}"}', NULL), - (1171053, '0x37a170a829281c312ba0d960d0a2ecc79bf60a0f', 1000, 1, '2024-05-14 03:35:00+00', 0, 12, '{"fid": 7637, "object": "user", "pfp_url": "https://i.imgur.com/Zp7vXPu.jpg", "profile": {"bio": {"text": "Farcaster OG. Dev/Artist exploring themes of perception, isolation and disability. Exhibited Internationally.\n\n/daily-art-mint\n/scanography\n/cyanotype", "mentioned_profiles": []}}, "username": "aaronrferguson.eth", "power_badge": true, "display_name": "Aaron Ferguson 🎩🏰📚🔵", "active_status": "inactive", "verifications": ["0x822ec855cc9f41b592622108e6f3565e976430c6"], "follower_count": 31675, "custody_address": "0x956b61eaffd4c8b7a712a2ed2b88d30d203078fe", "following_count": 1225, "verified_addresses": {"eth_addresses": ["0x822ec855cc9f41b592622108e6f3565e976430c6"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3jLq4IGIZrwJuqzJBnlBAL?si=LJMDhGwTSjaz26MRMdE3fA&context=spotify%3Aalbum%3A1cXLCULlgr8yINxG19qGu2\"}"}', NULL), - (1170955, '0xee7d7cbe37365586f6194803aaa9f97e78282bee', 1000, 1, '2024-05-13 23:28:39+00', 0, 5, '{"fid": 210648, "object": "user", "pfp_url": "https://i.imgur.com/KX2nQMz.png", "profile": {"bio": {"text": "the dev for onchain music", "mentioned_profiles": []}}, "username": "sweetman.eth", "power_badge": true, "display_name": "sweetman", "active_status": "inactive", "verifications": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "follower_count": 653, "custody_address": "0xc0839ddde7ad70bc49fd20fc5800c0fb1b2c4d9c", "following_count": 111, "verified_addresses": {"eth_addresses": ["0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38", "0x0b04b2abe7844895cf79bee2734932ff18ee28e8", "0xb5acded340d66678f01097818940a0f028dafb8d"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7Kmfjms3yyhg2y56mN7EfZ?si=p6N-0zm8SFGNGJQe-fTjuQ\"}"}', 'salsa'), - (1167012, '0xa3357a53d8498ede78a1f62416edc9878e199ca8', 1000, 1, '2024-05-13 16:55:16+00', 0, 14, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30651, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5Jl0mQEHMn82Ed0SBuEdu8?si=L72UZiTdT0CtBdbYo8JK2w\"}"}', NULL), - (1171075, '0xb14d87a77f1cd2a37d098ef91e1186b756dd171d', 0, 1, '2024-05-14 03:41:44+00', 0, 10, '{"fid": 245579, "object": "user", "pfp_url": "https://arweave.net/4skvQ_5wWqRiKVp_eCEfrC2k7PtdE8a7H6av_M7gAd0/", "profile": {"bio": {"text": "All in Base & Degen\n\n🔵 My channel : /sonny ⚽️⚽️⚽️", "mentioned_profiles": []}}, "username": "justin926", "power_badge": true, "display_name": "niceonesonny.eth🎩⛓️", "active_status": "inactive", "verifications": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "follower_count": 3789, "custody_address": "0x7d8de54e8c8dbaf3a00f499a700d7503c67030c1", "following_count": 1024, "verified_addresses": {"eth_addresses": ["0x270735e7afdc9ef0ee9f3186990fd118e253dcc1"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/8Fhfy\"}"}', 'sonata'), - (1171019, '0xf25190e40e84fb03dbf09547b2cb92b2632e438a', 2110, 1, '2024-05-14 02:47:57+00', 0, 1, '{"fid": 352172, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/be1d78d7-8c34-4f9c-035b-c88c3887d800/original", "profile": {"bio": {"text": "Doodles Community Watch | on-chain collectooor", "mentioned_profiles": []}}, "username": "zkpawky", "power_badge": true, "display_name": "zkpawky", "active_status": "inactive", "verifications": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "follower_count": 797, "custody_address": "0x2c310bd4f38edf55d23ff2ef8ae772368932f30a", "following_count": 247, "verified_addresses": {"eth_addresses": ["0xc1033ebdbf17e1a350d18196035c26090eaac708", "0x791f543c2ede2e272323c48cee3ea092a4e72ff4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2JmFRXaJrkAUD2cs6U20KG?si=fhWU1nZeRtWunVmBvMsCzQ&context=spotify%3Aalbum%3A5wtE5aLX5r7jOosmPhJhhk\"}"}', 'bangers'), - (1171195, '0xfe1e0e5139a495a6af7d805885c2bf58429cd787', 0, 1, '2024-05-14 13:01:24+00', 0, 1, '{"fid": 444025, "object": "user", "pfp_url": "https://i.imgur.com/oLNr12J.jpg", "profile": {"bio": {"text": "A fremen always pays his debts. \nhttps://guild.xyz/aiww ", "mentioned_profiles": []}}, "username": "stilgar", "power_badge": true, "display_name": "Stilgar 🎩🍖", "active_status": "inactive", "verifications": ["0x13a45e1199776a0960b375f11a03d505cffdcd43"], "follower_count": 3067, "custody_address": "0x1e7835316dac5984caa2f058122b5b58c32eec50", "following_count": 1493, "verified_addresses": {"eth_addresses": ["0x13a45e1199776a0960b375f11a03d505cffdcd43"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3fkN7F1LtH4VcKS1RlsX2M?si=jSrRRC2NQDuvnOTz3VfjdQ\"}"}', NULL), - (1171200, '0xe624af7f0d82f03f30667e30dd273a9421d65d38', 0, 1, '2024-05-14 14:10:28+00', 0, 0, '{"fid": 410039, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/d3ab1a1a-cdac-42d2-6676-b44a1f79da00/original", "profile": {"bio": {"text": "I mek beats\n\n/timestamps /imadeathing\n\nhttps://linktr.ee/yungraj", "mentioned_profiles": []}}, "username": "yungraj", "power_badge": true, "display_name": "Yung.Raj", "active_status": "inactive", "verifications": ["0x8bcb6e436eb92a2c6459ad64aa3c4c049ffb44ed"], "follower_count": 491, "custody_address": "0x542249a0c68211d3e4484a89051f79a8f3e547e0", "following_count": 475, "verified_addresses": {"eth_addresses": ["0x8bcb6e436eb92a2c6459ad64aa3c4c049ffb44ed"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/badtips/223-rakhi-dread-backpocket-slammers?in=badtips/sets/premieres&si=df2d87d4268042a5a644eefdfaa9fca3&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (924276, '0xe3834d86cadcec739ad1a4c1f5ece72784b863a4', 11000, 1, '2024-05-07 07:37:24+00', 0, 0, '{"fid": 466312, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/9975ea25-819f-429b-3969-c8c0ef401600/original", "profile": {"bio": {"text": "no longer a non-shiny and a non-lurker \n//\ni make dune dashboards\n//\nhttps://dune.com/whimsicott/pokemonensonfarcaster \n//\n⌐◨-◨ pilled", "mentioned_profiles": []}}, "username": "whimsicott.eth", "power_badge": false, "display_name": "Φ テ whimsi 🧢🎩", "active_status": "inactive", "verifications": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "follower_count": 144, "custody_address": "0x39a2de2cbdac5a19ed60f4c43e3ae5a539580a6b", "following_count": 296, "verified_addresses": {"eth_addresses": ["0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e"], "sol_addresses": []}}', '{"{\"url\":\"https://soundcloud.com/whimsi-beats/emei-love-me-not-whimsi-dnb?in=whimsi-beats/sets/garageband-shenanigans&si=430d7d50221648398a5766769251496b&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\"}"}', NULL), - (1171076, '0xe3a75c033348cad5169fa47b13c1aaac75232011', 0, 1, '2024-05-14 04:35:16+00', 0, 1, '{"fid": 5305, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26b9a548-642f-4248-9738-ba9590394200/rectcrop3", "profile": {"bio": {"text": "Head of marketing / growth @Gnosis | Former growth product manager @Shopify | Usually in Singapore, Taipei, Berlin or Toronto. | Here for 📸 🚴 🍕", "mentioned_profiles": []}}, "username": "galen", "power_badge": true, "display_name": "Galen.gno @Gnosis 🦉 ", "active_status": "inactive", "verifications": ["0x668ee345328e3fefc99bc1c3745cc2ae345e32bc"], "follower_count": 551, "custody_address": "0x14544ccbe269cb3e938418b7063aff1c4253c91b", "following_count": 316, "verified_addresses": {"eth_addresses": ["0x668ee345328e3fefc99bc1c3745cc2ae345e32bc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6e4ui7TAbFcL5JlumPN4jQ?si=oLd6TYZtSQeP9YHMBLuU_Q&context=spotify%3Aalbum%3A0meFGx9eWzacSifnRoxwf0\"}"}', NULL), - (1176536, '0x70cc884f8025db2eebfd19ebfd56a7583d3b90d6', 0, 1, '2024-05-17 18:57:26+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0gV5B7zmJkS1aaH9APokrH?si=4be7960d5cc442bb\"}"}', NULL), - (1171334, '0xce8d3158b11109e244e60db8ca0c5a5a0e4f46dd', 0, 1, '2024-05-14 17:55:14+00', 0, 0, '{"fid": 328068, "object": "user", "pfp_url": "https://i.imgur.com/Yhbuo9K.jpg", "profile": {"bio": {"text": "I''m a film & creative director, and a crypto enthusiast.\n\n/slowlife /aesthetics /semicolon", "mentioned_profiles": []}}, "username": "gabrioche", "power_badge": true, "display_name": "gabriel🎩🍞", "active_status": "inactive", "verifications": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "follower_count": 511, "custody_address": "0xbb82050513eafd161b5e9e20d249e7a0e544651e", "following_count": 186, "verified_addresses": {"eth_addresses": ["0xe4848bab98fc72bea42977d957abeda4c2fce35f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1qbt0lhWF7LGtPFA4DxXjt?si=d6dc204e4f0447ca\"}"}', 'latinmusic'), - (35868, '0xf107e8cc894b93c580d4e81c104961002a812482', 14302, 1, '2024-05-04 21:51:47+00', 50, 25, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 2916, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 264, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/dyl/rugged\"}"}', NULL), - (1171071, '0xf6df05b0a7d2a5d1f5942a371c52978a462bff33', 0, 1, '2024-05-14 03:38:56+00', 0, 4, '{"fid": 4294, "object": "user", "pfp_url": "https://i.seadn.io/gcs/files/299c4356bab839eb87f29119312a0ff2.png?w=500&auto=format", "profile": {"bio": {"text": "musican. ai artiste. \n\ndesigned the channel icon for /relationships \n\ntricil.twitter\n\ntricil.art\n\ntricil.net", "mentioned_profiles": []}}, "username": "tricil.eth", "power_badge": true, "display_name": "tricil🎩", "active_status": "inactive", "verifications": ["0x3339726b077b08ca88ca2262108beba4e7236882", "0x12239fcdff8cd48c24661d3c4243ce33ceb2e273"], "follower_count": 1326, "custody_address": "0x644ec1de03d02753482c904982d075d7354f6657", "following_count": 283, "verified_addresses": {"eth_addresses": ["0x3339726b077b08ca88ca2262108beba4e7236882", "0x12239fcdff8cd48c24661d3c4243ce33ceb2e273"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0px0VGMJcIIvJsW6Q12zCg?si=MdbQaJk3R167T5jPhjgnbg&context=spotify%3Aplaylist%3A37i9dQZF1EIetR3TGpat1j\"}"}', NULL), - (1171168, '0xa0153f0757f3aa31d5c19cac2f9baa306e9782d2', 0, 1, '2024-05-14 14:36:42+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 837, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 688, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5w7zABMCN6IYHlTXkvA8Ty?si=vd6Fn3tiQDOllEqrfiALLA\"}"}', NULL), - (1176537, '0x1fad22467ffcdecedfce1e081296898d9e490bb5', 0, 1, '2024-05-17 18:57:23+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2Zx41xpsAlZZxUVLm1ciar?si=d7fa9e4446c548f7\"}"}', NULL), - (1167011, '0xe6afee928962e85987b1d827ea692dbe354db409', 1200, 1, '2024-05-13 16:44:50+00', 0, 8, '{"fid": 6731, "object": "user", "pfp_url": "https://i.seadn.io/s/raw/files/021972347cf7146c5a219e03840ffe55.jpg?w=500&auto=format", "profile": {"bio": {"text": "Jamie • /devrel @ /reservoir • /bicycling • /chicago • /djs • home @ /chicagolife", "mentioned_profiles": []}}, "username": "chicago", "power_badge": true, "display_name": "Chicago 🎩 → q/DAU", "active_status": "inactive", "verifications": ["0x6d34927441c4a238a84f9f54a47d67cc3d55f575", "0x5c0d9828ca6595db1012a4063c7ae8b6edee7534"], "follower_count": 24983, "custody_address": "0x0faeba7a10eaf727f0ebb9e9d844682d38c4a02a", "following_count": 714, "verified_addresses": {"eth_addresses": ["0x6d34927441c4a238a84f9f54a47d67cc3d55f575", "0x5c0d9828ca6595db1012a4063c7ae8b6edee7534"], "sol_addresses": []}}', '{"{\"url\":\"https://www.youtube.com/watch?v=dVExpCA_H3A\"}","{\"url\":\"https://open.spotify.com/track/5gC2aJwuSzGe3IJVlk9r2O\"}"}', 'djs'), - (1176540, '0x245959fef7ede468b44829d541e07d51f46f5463', 0, 1, '2024-05-17 18:57:22+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4yaqvFl3Q0hyguzUjQPcEl?si=e4d33472511840b9\"}"}', NULL), - (1171175, '0x42da1121c8398ba57b15ac22db95a3f22ab3b6a4', 1000, 1, '2024-05-14 13:36:51+00', 0, 21, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4219, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 509, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0xdYzkbBBfTevSyOJqWUSX?si=CzNllpRPQ4GXvGdCmQu5jw\"}"}', 'bangers'), - (1171173, '0xdb0582e4e59114ec039fec36bb74ab4269090977', 0, 1, '2024-05-14 13:25:03+00', 0, 0, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1510, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 423, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/18Og44j4YDLSaPkcWe8Rif?si=37ad10928a424b5c\"}"}', NULL), - (1171172, '0x46bf3e6b8bb49443244559ce2ca19e6c9dccb4c2', 0, 1, '2024-05-14 14:01:21+00', 0, 1, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1842, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2HXAuE93CIy9O64LnDtINe?si=1ab31846d062469f\"}"}', NULL), - (1171177, '0x5bbcd61b67e2dfac54b94f6d8c820e0723228ee6', 0, 1, '2024-05-14 14:12:35+00', 0, 3, '{"fid": 193826, "object": "user", "pfp_url": "https://i.imgur.com/Urc2CHT.gif", "profile": {"bio": {"text": "Building a portable community graph 👜 /los-fomos. Show me your /typos. Dancing in /latinmusic. ", "mentioned_profiles": []}}, "username": "pauline-unik", "power_badge": true, "display_name": "Pauline Unik 🌶️", "active_status": "inactive", "verifications": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "follower_count": 1536, "custody_address": "0x285b0d0d896591bf9cf34dcb5d401883c8ead439", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0GVu2gXzurD0FBL7CHqE0F?si=iJrw6jDoQV-pPcNLPOQVgQ\"}"}', 'latinmusic'), - (1171174, '0x1351ac3f22e54e47b7e3c4060f221ea475d7cb5f', 0, 1, '2024-05-14 14:36:42+00', 0, 0, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1842, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5H4rKylLnO8KrmdXTRhj5s?si=Ch4wTgO6Qz6n4sMncRVPow\"}"}', NULL), - (1171171, '0x81fa2627514d3364a30c41f2cee29a81aca4deed', 0, 1, '2024-05-14 12:52:34+00', 0, 29, '{"fid": 245124, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e045538f-bcdd-4554-6576-cc3eff598d00/original", "profile": {"bio": {"text": "Tech exec dedicated to securely onboarding users. \nBoard member and advisor to startups and investment groups.\nDevelops things. ", "mentioned_profiles": []}}, "username": "sgniwder", "power_badge": true, "display_name": "Frederick", "active_status": "inactive", "verifications": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "follower_count": 6460, "custody_address": "0x92d44a1ea1587b477c2b81d1fa7231b5b0af6735", "following_count": 2617, "verified_addresses": {"eth_addresses": ["0xd1642fcc093202f30e64d28eb8de8d0714958f8f"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0M7K4Xeb92Wo9tfoCs9m3V\"}"}', 'rock'), - (1176538, '0x5ebdaa7afa8d3ab0e9430d28db18b176a3eb6dec', 0, 1, '2024-05-17 18:57:24+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2jvuMDqBK04WvCYYz5qjvG?si=56dc41760df6495b\"}"}', NULL), - (1171178, '0xdc33e255f2132bf2b19e31648a0a76d4c2f8fc6e', 0, 1, '2024-05-14 06:10:17+00', 0, 5, '{"fid": 420229, "object": "user", "pfp_url": "https://i.imgur.com/jCrlFXN.jpg", "profile": {"bio": {"text": "仮想通貨fx、競馬をやっています。#BCG #airdrop #btc #sol #eth #p2e Please DM me if you need me.", "mentioned_profiles": []}}, "username": "kozikachan", "power_badge": true, "display_name": "こじかちゃん ", "active_status": "inactive", "verifications": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "follower_count": 569, "custody_address": "0x65dc03e01b96c9ca2db58f5f36877cf3ef4faed8", "following_count": 463, "verified_addresses": {"eth_addresses": ["0x543504622a0b392911621c2a874e3d8f687cdf67"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/A7MfD9KQkQztHAVCA\"}"}', 'sonata'), - (1171192, '0x6616c94e603c42edb4dc20cc09d9578320a1d46c', 1000, 1, '2024-05-14 06:50:55+00', 0, 0, '{"fid": 363545, "object": "user", "pfp_url": "https://i.imgur.com/WDeC61M.jpg", "profile": {"bio": {"text": "Post Photographer\nLatent Space Explorer ", "mentioned_profiles": []}}, "username": "ganbrood", "power_badge": true, "display_name": "Ganbrood", "active_status": "inactive", "verifications": ["0x685e34c6a94f330fa494d708b652261140b55aba"], "follower_count": 1774, "custody_address": "0xc3efa132f87b0e39416f16646fe68c4223eb5fea", "following_count": 406, "verified_addresses": {"eth_addresses": ["0x685e34c6a94f330fa494d708b652261140b55aba"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7CDq94RPdQ19GdGlejjFU3?si=61bbf323fee34f51\"}"}', NULL), - (1176539, '0x96e537074bea125fb77c73560b1eee6fb4819289', 0, 1, '2024-05-17 18:57:22+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6BKAKoo7J2vwJGZJs5dhGD?si=0d9dd419bd6d400d\"}"}', NULL), - (1176542, '0xebcc3b1ddbe9192857d78a81161c2c66e0420342', 0, 1, '2024-05-17 18:57:23+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7yNK27ZTpHew0c55VvIJgm?si=c3017d8b623f4953\"}"}', NULL), - (1171187, '0x6616f76a178a7e2808b022bdc349b817379531c4', 0, 1, '2024-05-14 13:00:15+00', 0, 2, '{"fid": 10971, "object": "user", "pfp_url": "https://i.seadn.io/gae/5Y51u8vlx73mQj6R7jObpdvC9nkdAIeMul8ErYUjbXEYC8luNtZs-nniFBATubJHAMv3HtA_G76IG5yDopU9sW9OtKDSoW0gm4TXvxA?w=500&auto=format", "profile": {"bio": {"text": "@usv | jared.xyz | formerly founder of groupme and fundera ", "mentioned_profiles": []}}, "username": "jaredhecht.eth", "power_badge": true, "display_name": "Jared Hecht", "active_status": "inactive", "verifications": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "follower_count": 415, "custody_address": "0xe363817e3eb0f4c3d5628142b63ea7b275a4491b", "following_count": 102, "verified_addresses": {"eth_addresses": ["0xfb12ae037c51fa0026ab54678c0111c77ce4057c"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/4XhzDUvgDIokNmvMtHsmOz?si=joOQ1BH3TZ6Hd5qLyAsbbA&context=spotify%3Aartist%3A1xgA0hENxpykh3AxlMBjlT\"}"}', 'soundscapes'), - (1171197, '0x26cdc20c19f4cb839697b72a55cd564390ef7ef3', 20, 1, '2024-05-14 08:51:31+00', 0, 0, '{"fid": 13314, "object": "user", "pfp_url": "https://i.imgur.com/SnEGSGh.jpg", "profile": {"bio": {"text": "Full stack artist 🖌️⚡️🎵\nBuilding ORIGIN STØRIES a creative tech studio (FIB, VPM , REFUSES)", "mentioned_profiles": []}}, "username": "originstory", "power_badge": true, "display_name": "origin 🎩 ", "active_status": "inactive", "verifications": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "follower_count": 709, "custody_address": "0xd699c82ecdd17a6e97d7264d03429ef5c738e2b0", "following_count": 320, "verified_addresses": {"eth_addresses": ["0x27bbe645730ad333a35837f4bfb2b28fee3ce753", "0x9a269a441e1f2b64d7663c766ea23f0e97d8cffb"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/77OA90fESjDqV9mJw5LbdG?si=ZHuyG0M8TwGmW52Kl-jWbw\"}"}', 'sonata'), - (1171182, '0x264f471bd62892aea8e32b3c0ba0c5947a3f8bc5', 100, 1, '2024-05-14 08:55:14+00', 3, 1, '{"fid": 245024, "object": "user", "pfp_url": "https://i.imgur.com/JkyySHx.gif", "profile": {"bio": {"text": "web3 degen | rock lover | hosting Rock Music channel: https://warpcast.com/~/channel/rock", "mentioned_profiles": []}}, "username": "calisay", "power_badge": true, "display_name": "Calisay", "active_status": "inactive", "verifications": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "follower_count": 340, "custody_address": "0xbc218297a4e18c050252b4e527d13de104111085", "following_count": 241, "verified_addresses": {"eth_addresses": ["0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5ICzofRr7EAgXLNH38EPJf?si=jMunGGLATru0KgArezYKgA\"}"}', NULL), - (1171179, '0xf1c4f9a362ed7ae6e3f7720f59e2caafc231a18a', 1000, 1, '2024-05-14 07:41:23+00', 0, 9, '{"fid": 4065, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ba776434-7fd2-4038-34be-f17e94546300/original", "profile": {"bio": {"text": "Co-Founder of @checkin @beyondclub - Foursquare on Farcaster 🗺️ 📍\nicebreaker.xyz/yuki.fc", "mentioned_profiles": []}}, "username": "yuki", "power_badge": true, "display_name": "Yuki ✅ @ Farcon", "active_status": "inactive", "verifications": ["0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0"], "follower_count": 5107, "custody_address": "0x94a50c72b4841f6ff73a626d92fa7ed487bc4373", "following_count": 461, "verified_addresses": {"eth_addresses": ["0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7LHT8U1WPHe8C6p4G3pimS?si=FaJOfyeqTviosIo0FM768A\"}"}', NULL), - (1171180, '0x3562773854c3758606626b93df2527b52acdfc3e', 3000, 1, '2024-05-14 07:55:54+00', 0, 1, '{"fid": 461236, "object": "user", "pfp_url": "https://i.imgur.com/ll655LQ.jpg", "profile": {"bio": {"text": "Welcome to the digital portal of Maheenblues.. It gets Blue here 🔵\n\nhttps://linktr.ee/maheenblues\n\nArtist | Curator | Speaker ", "mentioned_profiles": []}}, "username": "maheenblues", "power_badge": true, "display_name": "Maheenblues", "active_status": "inactive", "verifications": ["0x3164623c29c8d60c7d84b7c3544c596c02167e72", "0x6797fb2aaf47620b900d0506248577e00b4a56e4"], "follower_count": 918, "custody_address": "0x6456bc0b416bbcf9120f82bc3f376deb1bce1a12", "following_count": 612, "verified_addresses": {"eth_addresses": ["0x3164623c29c8d60c7d84b7c3544c596c02167e72", "0x6797fb2aaf47620b900d0506248577e00b4a56e4"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1rIoZ8H3v3InBt8YbMBapx?si=esHOsGnEQLWOFc8bRk58Ew\"}"}', NULL), - (1176541, '0x7e8847c49760f17be3bfc80bfaaf6f0dfd1f46d8', 0, 1, '2024-05-17 18:57:25+00', 0, 0, '{"fid": 133, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://i.imgur.com/Ati4GoY.gif", "profile": {"bio": {"text": "building @yup\n\ntry crossposting to farcaster and twitter at yup.io . join /yup "}}, "username": "nir", "power_badge": true, "display_name": "nir.eth 🌿🟣🐦☁️", "active_status": "inactive", "verifications": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "follower_count": 26207, "custody_address": "0xbde5a3dd81dbc809abb02607b157d8853d85227d", "following_count": 764, "verified_addresses": {"eth_addresses": ["0x4303ddc9943d862f2b205af468a4a786c5137e76"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7pKfPomDEeI4TPT6EOYjn9?si=498cd5d52d854fe7\"}"}', NULL), - (1171183, '0x84821193c46c51e8a3453376e503187a979e1afe', 0, 1, '2024-05-14 13:26:00+00', 0, 1, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1510, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 423, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/73pZIKPI5TgJVq6FUovIYu?si=ea95ba628dfe4b04\"}"}', NULL), - (1171193, '0x4ab3a26052e1778ffc3f4229ce08396e5ac8a535', 5010, 1, '2024-05-14 15:38:02+00', 0, 0, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 543, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 139, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6NbnMPtOzr9qSLGWf9LLaU?si=c8c6a8ddfda44945\"}"}', NULL), - (1171188, '0xc3cd6b1b99f30b07aa01b621fab64e60fce7e6a8', 100, 1, '2024-05-14 08:43:26+00', 3, 16, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2635, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 778, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1eQSDFeP025vwEm0ItKbhV\"}"}', 'sonata'), - (1176543, '0x601bf053c2d385cec00f19e74e8de2c8f8278e1c', 0, 1, '2024-05-17 19:12:31+00', 0, 0, '{"fid": 381086, "notes": {"active_status": "Warpcast has transitioned from active badges to power badges, Neynar will deprecate this key in the user object in the next few weeks"}, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/ee50b6a5-5320-4af2-87ad-b3d53079b300/rectcrop3", "profile": {"bio": {"text": "Film director and writer. Getting better every year and happy as it goes. \nLots of work can be seen on my website:\nmackandco.uk"}}, "username": "jamiemccormack", "power_badge": true, "display_name": "Jamie McCormack", "active_status": "inactive", "verifications": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "follower_count": 161, "custody_address": "0xf810f1e885226cd165e10b11e3103c50986e5dc6", "following_count": 207, "verified_addresses": {"eth_addresses": ["0x29f562912d7ac4d8a9dc382873102167fd60d7e0"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2vVymI8HQDsy6ez9OU6f0n?si=RW6Oh4GvQ5a_baJ347NnaQ\"}"}', 'sonata'), - (1171186, '0xbe0fd11b751a805eb6ef7b5fd37f58635952a0a7', 0, 1, '2024-05-14 12:50:37+00', 0, 9, '{"fid": 291942, "object": "user", "pfp_url": "https://i.seadn.io/gae/8x5mN1SdZkJsgf3erECLe24BL6BKIvvlAsqlUhG65nT0GqHlyjAa-IRgiYzLHUkf7mtad_ZZKO_QrqBUq6IMf_Rku-zTrlaB2PjC6WA?w=500&auto=format", "profile": {"bio": {"text": "I’m a Japanese DJ.\nGraphic Designer, Crypto Investor, Art Collector.\nTrack of the day archives 🎧\nhttps://linktr.ee/djfreak\n/cryptoninjas", "mentioned_profiles": []}}, "username": "djfreak.eth", "power_badge": true, "display_name": "FREAK🔮🔵🐹🧀🥷🏼", "active_status": "inactive", "verifications": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "follower_count": 2635, "custody_address": "0x1333d95de0027984ddfdfa50f163d314b81150df", "following_count": 778, "verified_addresses": {"eth_addresses": ["0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0", "0x886675378ee560dd7ec6e29273f962ece29c7c28", "0xc336154c28fa7a86115217e9bf838a8ed9612391"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/60dyhittzt2ETdXgyVAAL6\"}"}', 'techno'), - (1171194, '0xf31a54d9aee749c6197806dac2abc5657dd77976', 0, 1, '2024-05-14 15:01:38+00', 0, 22, '{"fid": 248389, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/c05c54ba-115f-4450-78ea-ad5278598900/original", "profile": {"bio": {"text": "Multi-Platinum Artist. $Dyl. Music NFTs. dylmusic.com/coin 🎩 @jaadtips 🎰 basedball, Drakula. i build. drakula.app/user/dylmusic?invite=kQWJtd", "mentioned_profiles": []}}, "username": "dylmusic", "power_badge": true, "display_name": "Dyl 🎩🎰🎶", "active_status": "inactive", "verifications": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "follower_count": 4326, "custody_address": "0x3675ceecbc1f9637a1df5187e87360fa9c420720", "following_count": 307, "verified_addresses": {"eth_addresses": ["0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5YjnRaRc3vJW4znkYzoYaa?si=aa7e128323404b12\"}"}', 'paidgroup'), - (1171184, '0xbdf8055694ccc9c7f5acba9b59f6b59757df5ec3', 0, 1, '2024-05-14 13:27:17+00', 0, 0, '{"fid": 190968, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/QmWV3QZSVgQH6udJL7WweYGSyg2DN8rsuJFFaaFHuziRen/292.png", "profile": {"bio": {"text": "Co-founder @ Chaineducation Labs // \n\nCouncil & intern @ /nova //\n\nAdvisor @ /defigirls //\n\nciefa.eth & ciefa.btc // \n\n#LeXpunK", "mentioned_profiles": []}}, "username": "ciefa.eth", "power_badge": true, "display_name": "ciefa", "active_status": "inactive", "verifications": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "follower_count": 1510, "custody_address": "0x095479578b3fc4750f1d0458a310cef83a7e6e32", "following_count": 423, "verified_addresses": {"eth_addresses": ["0xe06ce2ca5418f0763e9091f5bb348707a1b65bde"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/667WZUNLKbsaNtxtkqP9yo?si=06a8f6b210464822\"}"}', NULL), - (1171190, '0x31b000f5d95e82c0cf4231bb60cdfb79f6bfdfed', 0, 1, '2024-05-14 15:32:43+00', 0, 1, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1842, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2HXAuE93CIy9O64LnDtINe?si=f83b0fd04bbc4546\"}"}', NULL), - (1171196, '0x49f5cf84d795343872c706167b715fa7c7aab518', 1000, 1, '2024-05-14 15:01:54+00', 0, 5, '{"fid": 1970, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4240f27e-3050-4d59-f69b-4db2d3fbd900/original", "profile": {"bio": {"text": "fractalist. tech lead at cabin.city. founder of LBRY.com, Odysee.com, vibe.camp, @farcon, grin.io", "mentioned_profiles": []}}, "username": "grin", "power_badge": true, "display_name": "grin", "active_status": "inactive", "verifications": ["0x3dedb545e9b89f63fa71ab75497735d802c9d26f"], "follower_count": 70442, "custody_address": "0xa0114ba7fe57ad00afb47e3bc1cc0b122d28df89", "following_count": 599, "verified_addresses": {"eth_addresses": ["0x3dedb545e9b89f63fa71ab75497735d802c9d26f"], "sol_addresses": ["7gTmu6nMCAR4URzcoJVvYx8bzeiWyQvrXLcp8ivuXu7v"]}}', '{"{\"url\":\"https://soundcloud.com/when-we-dip-radio/sparrow-barbossa-when-we-dip-radio-174-12920\"}"}', 'higher'), - (1171199, '0x373a47b9c4e93a0bc540ab6d8febf0ab7b96f37e', 0, 1, '2024-05-14 10:02:19+00', 0, 1, '{"fid": 403020, "object": "user", "pfp_url": "https://i.imgur.com/ULdfJGZ.gif", "profile": {"bio": {"text": "Believer of /weareone • cohost of /thetaproom • 3D artist • Year 4 of everydays ", "mentioned_profiles": []}}, "username": "push-", "power_badge": true, "display_name": "Push 🔵🎩🤌🏻", "active_status": "inactive", "verifications": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "follower_count": 4219, "custody_address": "0x9d3bb6f6dca97beec313328404988753532c8ee9", "following_count": 509, "verified_addresses": {"eth_addresses": ["0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2SrXt0JJEX9PfVSZuJ6dqg?si=Peno1EXrRBO0st0lspe_Gw\"}"}', NULL), - (1171189, '0x01c850b6546c45b9b6c1423c9a3619a5a0908d14', 0, 1, '2024-05-14 08:04:35+00', 0, 2, '{"fid": 193826, "object": "user", "pfp_url": "https://i.imgur.com/Urc2CHT.gif", "profile": {"bio": {"text": "Building a portable community graph 👜 /los-fomos. Show me your /typos. Dancing in /latinmusic. ", "mentioned_profiles": []}}, "username": "pauline-unik", "power_badge": true, "display_name": "Pauline Unik 🌶️", "active_status": "inactive", "verifications": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "follower_count": 1536, "custody_address": "0x285b0d0d896591bf9cf34dcb5d401883c8ead439", "following_count": 438, "verified_addresses": {"eth_addresses": ["0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2", "0x7712f32dfae4595e6bd6512996bbf9091f1fe0be"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/6P3JPwDgzRzR4TXJuHRDaN?si=c4595b87d34f4811\"}"}', 'latinmusic'), - (1171209, '0x120c7aa7da602fe00250e1c68c614fcdf537b3ce', 0, 1, '2024-05-14 05:27:45+00', 0, 1, '{"fid": 269636, "object": "user", "pfp_url": "https://i.imgur.com/dOA7sqP.jpg", "profile": {"bio": {"text": "Flauner 🦦", "mentioned_profiles": []}}, "username": "rtfkt", "power_badge": true, "display_name": "Kalen 🎩", "active_status": "inactive", "verifications": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "follower_count": 328, "custody_address": "0xd45ad3e360de1d6dd2ec3c6de3f3156984f354f6", "following_count": 266, "verified_addresses": {"eth_addresses": ["0x95d394f35705033008ccdaf0bce3d07e4be090f4", "0x3495b719e33e18d2264425380397fa5425c1e975", "0x089315793c7f31083a00899d1503b38079dedad3", "0x0c135f1aad9137510af0b4e6272c64b062418f7f", "0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3HlK8txWAdtKMrbsqX40pl?si=k-G7l40QTEC2XnDRfjRqog&context=spotify%3Aplaylist%3A37i9dQZF1DX2sUQwD7tbmL\"}"}', 'bangers'), - (1171181, '0x4aadf390bba9f4f9d85d01ce70b44aae0102c5e4', 0, 1, '2024-05-14 12:30:48+00', 0, 2, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1842, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2HXAuE93CIy9O64LnDtINe?si=bfda9d7f6a5d419f\"}"}', NULL), - (1171191, '0x63cb1e5ca269e1c908d9e553a78bc9f873a6231b', 0, 1, '2024-05-14 07:30:34+00', 0, 2, '{"fid": 5305, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/26b9a548-642f-4248-9738-ba9590394200/rectcrop3", "profile": {"bio": {"text": "Head of marketing / growth @Gnosis | Former growth product manager @Shopify | Usually in Singapore, Taipei, Berlin or Toronto. | Here for 📸 🚴 🍕", "mentioned_profiles": []}}, "username": "galen", "power_badge": true, "display_name": "Galen.gno @Gnosis 🦉 ", "active_status": "inactive", "verifications": ["0x668ee345328e3fefc99bc1c3745cc2ae345e32bc"], "follower_count": 551, "custody_address": "0x14544ccbe269cb3e938418b7063aff1c4253c91b", "following_count": 316, "verified_addresses": {"eth_addresses": ["0x668ee345328e3fefc99bc1c3745cc2ae345e32bc"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0kquvtx4m8aB5Meh7Q067u?si=8e55bf463b034f5a\"}"}', NULL), - (1171300, '0x87642567c92f5faf7c3b7be735be6d0f0b1643c6', 1010, 1, '2024-05-14 15:54:39+00', 0, 0, '{"fid": 5197, "object": "user", "pfp_url": "https://i.imgur.com/kJUxE7z.jpg", "profile": {"bio": {"text": "Frame Specialist. Building @cooprecs ", "mentioned_profiles": []}}, "username": "ramie", "power_badge": true, "display_name": "Ramie", "active_status": "inactive", "verifications": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "follower_count": 543, "custody_address": "0x6a2de6866efd3ed1f3b6cbd5cc407c3367f6b868", "following_count": 139, "verified_addresses": {"eth_addresses": ["0xde6ab026bb29136523ec81c0673738c166ecc8f5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/0PfR5qCmwobwbpXL3vaqPm?si=914cb17124264cb4\"}"}', NULL), - (1171176, '0xa10cd7341f74566e17d4e93bde735e307780caa0', 0, 1, '2024-05-14 08:49:31+00', 0, 23, '{"fid": 288204, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeih6a65qekiszxifbelt2jm46nbwuvgyxscmmlzar7lhmztidjechi", "profile": {"bio": {"text": "i am you, from another point of view /wevibe ", "mentioned_profiles": []}}, "username": "dwn2erth", "power_badge": true, "display_name": "dwn2erth🎩", "active_status": "inactive", "verifications": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "follower_count": 2243, "custody_address": "0x97a1362e798ffdcaa5918289509ba6df858609ad", "following_count": 598, "verified_addresses": {"eth_addresses": ["0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7JHVXlqkoXViFD4giUlzEs?si=f3Wv0HyzQQ2rSPOiS9Wp_A&context=spotify%3Aplaylist%3A2hjJ4iEIjSUGwIa6ihZAUC\"}"}', 'bangers'), - (1171222, '0x30958ed08546ff222f9df570f3925125018d1cc5', 0, 1, '2024-05-14 05:53:47+00', 0, 29, '{"fid": 7910, "object": "user", "pfp_url": "https://i.imgur.com/fSsXxpc.gif", "profile": {"bio": {"text": "Building @tasseo \n\nProduct Person. History Lover. \n\nthe world can do with more beauty and art. doing our part to make that happen.", "mentioned_profiles": []}}, "username": "rch", "power_badge": true, "display_name": "Rch 🎩 ", "active_status": "inactive", "verifications": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "follower_count": 1842, "custody_address": "0x34efbdd751bf824d90eeb06345d8871240dd3375", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xcffbda2841ef95df3e977982ecc55429b8d82eb5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/2HXAuE93CIy9O64LnDtINe?si=NvHSlxGESr-H-6U9SM1qzA\"}"}', 'replyguys'), - (1171295, '0x6657cf2139ffe4ece4260a8b29249c53b086e4f6', 0, 1, '2024-05-14 05:28:13+00', 0, 17, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2881, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2230, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/NgU5s9974zLSPJJh7\"}"}', 'sonata'), - (1171279, '0x8559a397b2d99ba966be7cbfc2682dcfaa17f9a7', 0, 1, '2024-05-14 05:40:19+00', 0, 16, '{"fid": 379777, "object": "user", "pfp_url": "https://i.imgur.com/Cg20bTC.jpg", "profile": {"bio": {"text": "hello.선팔맞팔갑니다🫶🏻", "mentioned_profiles": []}}, "username": "misonyer", "power_badge": true, "display_name": "HYEWON", "active_status": "inactive", "verifications": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "follower_count": 3907, "custody_address": "0x438078f2f9bcab30eb6f7b5f89f36370440c4bfe", "following_count": 1760, "verified_addresses": {"eth_addresses": ["0x2b2d91d275bfcff4c17105d10c8c1cff7303119c"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/z63EtqVRHGRzuZtk7\"}"}', 'sonata'), - (1167030, '0xbd55d64347d867f83c6597c0583aa9a408bdaae7', 0, 1, '2024-05-13 17:55:39+00', 0, 1, '{"fid": 243818, "object": "user", "pfp_url": "https://i.imgur.com/MDctu7l.jpg", "profile": {"bio": {"text": "CEO - @media3 | Join us at /scoop3, an onchain podcast player | \n https://www.scoop3.fm | Host of The Blockchain Experience /theblockexp", "mentioned_profiles": []}}, "username": "metadavid", "power_badge": true, "display_name": "meta-david🎩 | Building Scoop3", "active_status": "inactive", "verifications": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "follower_count": 1944, "custody_address": "0x26d8cc56012aab48c399ee4b90c43aec9a254147", "following_count": 338, "verified_addresses": {"eth_addresses": ["0xda469a6c78d12996895721fceba62e510b38faf3", "0x745793487a535ef578567de19be1b1e011589bac"], "sol_addresses": []}}', '{"{\"url\":\"https://drakula.app/post/99fbd1dd-f307-4d09-a961-01e1220ae284?invite=gHHzk6\"}","{\"url\":\"https://www.sound.xyz/metadavid/farcaster-base-groove?referral_source=link\"}"}', 'soundxyz'), - (1171301, '0x7f42aa2eb043570db721db847e733ff6b7cfcd42', 0, 1, '2024-05-14 15:55:46+00', 0, 0, '{"fid": 21348, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/b7abbffe-22f9-4801-fed9-ceb52917dd00/original", "profile": {"bio": {"text": "Data analyst at nft18.com. Drawing vectors. Host /dataviz\nhttps://linktr.ee/besanciahime", "mentioned_profiles": []}}, "username": "konohime.eth", "power_badge": true, "display_name": "Konohime", "active_status": "inactive", "verifications": ["0x3fe465902811769e3e8738cd162632e85dcbaa86", "0xf85e13c32734ea54ec31be5c9b3e6ed0ae40cbad"], "follower_count": 623, "custody_address": "0x3d069726daa8b375def907609afa7e1d2958d2fe", "following_count": 448, "verified_addresses": {"eth_addresses": ["0x3fe465902811769e3e8738cd162632e85dcbaa86", "0xf85e13c32734ea54ec31be5c9b3e6ed0ae40cbad"], "sol_addresses": []}}', '{"{\"url\":\"https://on.soundcloud.com/oov6w\"}"}', 'chillmusic'), - (1171307, '0x440888c0cf7286346f02847a33a81dc04e1411e4', 0, 1, '2024-05-14 16:27:46+00', 0, 0, '{"fid": 488178, "object": "user", "pfp_url": "https://ipfs.decentralized-content.com/ipfs/bafybeiedrqvgkxef3ktcqwfuu63qufdeo7i7fy66ryoqv3hnqcnni7utl4/3910.png", "profile": {"bio": {"text": "investing in web3, onchain, /base | \n\n\nfrequent flyer @\n/alfafrens /replyguys /lp /paidgroup\n/nba /memes /gloomtoken", "mentioned_profiles": []}}, "username": "nikdmello", "power_badge": true, "display_name": "Niko 🎩", "active_status": "inactive", "verifications": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "follower_count": 512, "custody_address": "0x8062371c6cecd5d28fcd3c4c7928a348189bb55f", "following_count": 206, "verified_addresses": {"eth_addresses": ["0x58f1eb47c0885606e708564c52f4eeed54d24f02"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/3JhgPs7rbmzLBWRvHlel8U?si=983433346b944b16\"}"}', 'paidgroup'), - (1171318, '0x2c3b679fd6d5fa8271ebe1c19a70d84b8e4ccc65', 0, 1, '2024-05-14 16:40:34+00', 0, 0, '{"fid": 3726, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/4a802f59-ad74-411e-9da9-add0f355c100/original", "profile": {"bio": {"text": "⌐◨-◨ Artist of Archer and Adventure Time, producer for “The Crew”", "mentioned_profiles": []}}, "username": "thepencil.eth", "power_badge": true, "display_name": "thepencil.eth ⌐◨-◨ 🎩", "active_status": "inactive", "verifications": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "follower_count": 699, "custody_address": "0x47461d4657c9aeb7772913227388c029a10562cf", "following_count": 381, "verified_addresses": {"eth_addresses": ["0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/thecrew/upand2-the-right?referral=0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683\"}"}', NULL), - (1171335, '0xc91c9042f676466dfc70bfeeccc06f7b945bb6f7', 3010, 1, '2024-05-14 18:00:57+00', 0, 0, '{"fid": 262450, "object": "user", "pfp_url": "https://i.imgur.com/YZRdO5m.jpg", "profile": {"bio": {"text": "Onchain Record Label", "mentioned_profiles": []}}, "username": "cooprecs", "power_badge": true, "display_name": "Coop Records", "active_status": "inactive", "verifications": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "follower_count": 11090, "custody_address": "0xa799a1746f7f81e7de2ec41793486a4a74a08b32", "following_count": 18, "verified_addresses": {"eth_addresses": ["0x512b55b00d744fc2edb8474f223a7498c3e5a7ce"], "sol_addresses": []}}', '{"{\"url\":\"https://inbox.boost.xyz/boost/e202dfda-cd3b-463b-b2fa-bf43b4e96310\"}","{\"url\":\"https://www.sound.xyz/familiarfaces/otherside\"}"}', NULL), - (1171020, '0x96c850d0b879613cc997faa32ddc88e263b5bc8a', 3000, 1, '2024-05-14 03:12:25+00', 0, 21, '{"fid": 18910, "object": "user", "pfp_url": "https://i.imgur.com/qHPBLrK.jpg", "profile": {"bio": {"text": "internet money // venture curious // automotive photographer // musician + dj // co-host of /music channel\n\n\n", "mentioned_profiles": []}}, "username": "viybz", "power_badge": true, "display_name": "Maxbrain Capital ", "active_status": "inactive", "verifications": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "follower_count": 30651, "custody_address": "0x6e684e7d49d69d62913e880e5854895ee5605676", "following_count": 451, "verified_addresses": {"eth_addresses": ["0x8a958db686c100436610b7042d2c8eed343fac48"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5vBRXormXITLRQBZAl0Jbx?si=jr-KUyuhQfmuc6pG97rnwA\"}"}', NULL), - (1171319, '0x1636374f5f90823faf9e4ab4732acd1989afd30c', 0, 1, '2024-05-14 16:45:19+00', 0, 1, '{"fid": 384424, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6b891c27-d5cf-4120-6f0b-d243b7742e00/original", "profile": {"bio": {"text": "#Trade, Art, Fitness\n✔Mint🌿 → https://zora.co/@hannibal_barca\n✔Alfa Frens🔵 → https://www.alfafrens.com/channel/0x228a0e99920307fc6dc13ea213e3d215a", "mentioned_profiles": []}}, "username": "hannibal-barca", "power_badge": true, "display_name": "hnb", "active_status": "inactive", "verifications": ["0x2cf185748541410b336863c960d6024955f384da"], "follower_count": 2884, "custody_address": "0x43d667243d8f6551f5650778c32d002e91ee0af3", "following_count": 2230, "verified_addresses": {"eth_addresses": ["0x2cf185748541410b336863c960d6024955f384da"], "sol_addresses": []}}', '{"{\"url\":\"https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/657e8d92-311d-4869-7f06-fc0401b64f00/original\"}","{\"url\":\"https://on.soundcloud.com/Xqz2jcY9TYpiZKmS9\"}"}', 'sonata'), - (1171321, '0x77c8da6e1091f043edf26a8cb3ac1af9f124786d', 0, 1, '2024-05-14 16:53:33+00', 0, 0, '{"fid": 415248, "object": "user", "pfp_url": "https://i.imgur.com/sQ371h7.jpg", "profile": {"bio": {"text": "DJ / Producer from London. Dad Joker. Sorare player. Manager name: Stish", "mentioned_profiles": []}}, "username": "plastician.eth", "power_badge": true, "display_name": "Plastician", "active_status": "inactive", "verifications": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "follower_count": 610, "custody_address": "0x09aa8409a31840b0386f205f0edf2974a3522291", "following_count": 257, "verified_addresses": {"eth_addresses": ["0xad66810a7358ad499c611d50108d0e0a8733e913"], "sol_addresses": []}}', '{"{\"url\":\"https://www.sound.xyz/incipe/crying-on-the-low?referral=0xad66810a7358ad499c611d50108d0e0a8733e913\"}"}', NULL), - (1171330, '0x1adb27a8c43b29846bd2c8e27977d5c1a3b0f453', 0, 1, '2024-05-14 17:33:05+00', 0, 0, '{"fid": 381283, "object": "user", "pfp_url": "https://i.imgur.com/a5NTbqy.jpg", "profile": {"bio": {"text": "Touching the numinous 🕉️ | Web3 positivity | Outdoor guide | 🏃⛷️ 🏄‍♂️ 🧘‍♂️ 🌱 🏔️ 🌊 | Digital creator | ⚛️ | \"We''re all just walking each other home\"", "mentioned_profiles": []}}, "username": "owlercoaster", "power_badge": true, "display_name": "Owlito", "active_status": "inactive", "verifications": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "follower_count": 844, "custody_address": "0x8396b6efbfe1bd98e39e3f05fa8bf7c9b321a7c3", "following_count": 699, "verified_addresses": {"eth_addresses": ["0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/7wJoFiCMRZZp9U3owkxjUG?si=Bkffv1NcQ7qDIoAmFQAFEg\"}"}', NULL), - (1171323, '0x80117fd939f91cb127f42d4c25dfe6e48ae1e097', 1000, 1, '2024-05-14 17:01:35+00', 0, 0, '{"fid": 271878, "object": "user", "pfp_url": "https://ipfs.pixura.io/ipfs/QmQGosejyyMSMWqdRmYkQ9z2ygXrir4Dv4jLsuP398eGFH/Mutagenx11021.jpg", "profile": {"bio": {"text": "Neouroscience, ☯️, decentralization, AI. Building the next phase of onchain capital assets with @ bldx.io. I like mountains, seas and space.", "mentioned_profiles": []}}, "username": "hyp", "power_badge": true, "display_name": "Leo 🎩🔵 🧾", "active_status": "inactive", "verifications": ["0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113", "0x8cf7f8a2eb9cbf7a01dfb89f45951de4fb421d27"], "follower_count": 1477, "custody_address": "0x64fc0caaa555b9fbbc9cb730ac964e52325b0e58", "following_count": 1301, "verified_addresses": {"eth_addresses": ["0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113", "0x8cf7f8a2eb9cbf7a01dfb89f45951de4fb421d27"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1jcTfIiBUz35bBqgHYItP6?si=dI8EKhr3RICZChU23vP1HA\"}"}', NULL), - (1171325, '0x3292c8187e41c5d2e5c7d3e84729241cce83dab3', 1000, 1, '2024-05-14 17:28:04+00', 0, 0, '{"fid": 4316, "object": "user", "pfp_url": "https://lh3.googleusercontent.com/GBtzV5Z6K8KhrFXQ5i3dseG4Jjamaa2UUtsHfmEE7K-CRd1cnR195zXb_TGKwQSrM95TQXZm-7wZ_bm7fphpP4SczsNHLxJrnhv_4c4", "profile": {"bio": {"text": "Jake (not from State Farm) // community @ courtyard.io\n // sneakerhead // guitar aficionado // xoogler", "mentioned_profiles": []}}, "username": "spin", "power_badge": true, "display_name": "chefspin 🎩", "active_status": "inactive", "verifications": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "follower_count": 883, "custody_address": "0xcaeaab4f1e1c662518456b28e0096b6b9026e4a4", "following_count": 483, "verified_addresses": {"eth_addresses": ["0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/5GO4rpfnM2lghVqEulTJUf?si=7f1ea4f7b71f4579\"}"}', 'bangers'), - (1171336, '0xaf8fb07f6bffae750eee1f8a10d1b338d6fdf1d3', 0, 1, '2024-05-14 18:11:20+00', 0, 0, '{"fid": 18989, "object": "user", "pfp_url": "https://i.imgur.com/bNTkyaN.jpg", "profile": {"bio": {"text": "Community •I cook for a living •LA for now•\nPreviously @ The Restaurant at Meadowood•\nCurrently-Private Chef • /recipes • /food •Email: Jmagg25@icloud.com \n", "mentioned_profiles": []}}, "username": "giuseppe", "power_badge": true, "display_name": "Joseph Maggio 🌊 🫶", "active_status": "inactive", "verifications": ["0x7ecdf3fd56d3b9f512fa70a68734ce871e36be96"], "follower_count": 34627, "custody_address": "0x212fc3b0e7b24cec60aa8b7426faffb36a99c69a", "following_count": 933, "verified_addresses": {"eth_addresses": ["0x7ecdf3fd56d3b9f512fa70a68734ce871e36be96"], "sol_addresses": []}}', '{"{\"url\":\"https://zora.co/collect/base:0xa0aea5fafc7e411c215751c43f56a4b8e4aef3f0/2?referrer=0x7eCDF3FD56d3b9f512fA70a68734cE871E36Be96\"}","{\"url\":\"https://open.spotify.com/track/5vZ1BKMSLgrxxPYGMR904n?si=1sBF81ERRhKCl1nub8050g\"}"}', NULL), - (1171339, '0xdbd9d369ecf004c03df2c9703745d13df6abdbeb', 5000, 1, '2024-05-14 18:29:28+00', 0, 0, '{"fid": 18989, "object": "user", "pfp_url": "https://i.imgur.com/bNTkyaN.jpg", "profile": {"bio": {"text": "Community •I cook for a living •LA for now•\nPreviously @ The Restaurant at Meadowood•\nCurrently-Private Chef • /recipes • /food •Email: Jmagg25@icloud.com \n", "mentioned_profiles": []}}, "username": "giuseppe", "power_badge": true, "display_name": "Joseph Maggio 🌊 🫶", "active_status": "inactive", "verifications": ["0x7ecdf3fd56d3b9f512fa70a68734ce871e36be96"], "follower_count": 34647, "custody_address": "0x212fc3b0e7b24cec60aa8b7426faffb36a99c69a", "following_count": 933, "verified_addresses": {"eth_addresses": ["0x7ecdf3fd56d3b9f512fa70a68734ce871e36be96"], "sol_addresses": []}}', '{"{\"url\":\"https://zora.co/collect/base:0xa0aea5fafc7e411c215751c43f56a4b8e4aef3f0/2?referrer=0x7eCDF3FD56d3b9f512fA70a68734cE871E36Be96\"}","{\"url\":\"https://open.spotify.com/track/5vZ1BKMSLgrxxPYGMR904n?si=hMuxetd3Tt66lmad8ffmYQ\"}"}', NULL), - (1171338, '0x8e0796cfecbbdaf8ed8a54ca0188e7bd6baa3ee3', 1000, 1, '2024-05-14 18:24:46+00', 0, 0, '{"fid": 375536, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e4c9a400-e8a9-460b-acce-50fd58e6d800/rectcrop3", "profile": {"bio": {"text": "Passed the test in Season 3. Back at it in Season 4. Hustle & Creative Flow. ", "mentioned_profiles": []}}, "username": "jdotfinn", "power_badge": true, "display_name": "J Finn 🎩", "active_status": "inactive", "verifications": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "follower_count": 361, "custody_address": "0x14cf59c5166e4ac6aafaf51ef33e5d7e6b0e6acf", "following_count": 199, "verified_addresses": {"eth_addresses": ["0xb642b7b23c84ddc446dc364b1f714cee6bfd0908"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/1CBQ1Ur6ZGqP6bpU8YkN7Q?si=UFiDq4RoTWWjfnNcRkjryA\"}"}', 'trance'), - (1171340, '0x4633fbf6da60d80d6cdd6625342f03ad3c936527', 1000, 1, '2024-05-14 18:47:56+00', 0, 0, '{"fid": 9135, "object": "user", "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/0d4c3b0e-52dc-4e80-c166-862f2b200200/original", "profile": {"bio": {"text": "consistently curious | host of /art and /collector-walls | self-proclaimed ambassador of /higher | ex Sismo.io", "mentioned_profiles": []}}, "username": "kugusha.eth", "power_badge": true, "display_name": "kugusha ↑", "active_status": "inactive", "verifications": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "follower_count": 34718, "custody_address": "0x7ad6cbeaed607851ca0201faa835f01f123d5be6", "following_count": 719, "verified_addresses": {"eth_addresses": ["0x8379bd16381620914d8fa3d535f6ca9ef23ece53", "0x34a80a650a2cc89802dac3ceba1d29a7dc90d70a"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/14K1dZ8zZzwfam9Qbqbdqr?si=aOjDYT6RQfm0ulOcAWU9Bg\"}"}', NULL), - (1171337, '0x99ef6368e6e95f14d62027daefc8cf929226067a', 1100, 1, '2024-05-14 18:24:01+00', 0, 1, '{"fid": 39, "object": "user", "pfp_url": "https://i.imgur.com/Q4TWkMU.jpg", "profile": {"bio": {"text": "Design and software at Apple. Also into AI, philosophy of mind, ethics.", "mentioned_profiles": []}}, "username": "sam", "power_badge": true, "display_name": "Sam Iglesias", "active_status": "inactive", "verifications": ["0x632e7e4716394db3da527f4f0d979e3d60e5f9a7"], "follower_count": 30428, "custody_address": "0xaa17acffbbf0fcfc5a2af4b8ff300ca480a90113", "following_count": 201, "verified_addresses": {"eth_addresses": ["0x632e7e4716394db3da527f4f0d979e3d60e5f9a7"], "sol_addresses": []}}', '{"{\"url\":\"https://open.spotify.com/track/01Hx0Kt7vPlxgxxBiXwhDQ?si=tPKS856tRUWIfI3jKV_GsQ\"}"}', NULL); - - --- --- Data for Name: tip_query_date; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO "public"."tip_query_date" ("id", "last_checked") VALUES - (1, '2024-05-17T05:59:34.000Z'); - - --- --- Data for Name: tips; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO "public"."tips" ("id", "created_at", "wallet_address", "daily_tip_allocation", "remaining_tip_allocation", "version", "first_post_date", "num_posts", "total_likes", "fid", "power_badge") VALUES - (81869, '2024-05-10 23:12:07.154873+00', '0xc4f67dea55e19155774dd2c9611738677a687d9a', 10274, 9274, 1, '2024-05-05', 17, 80, '17356', true), - (91171, '2024-05-10 23:12:34.817039+00', '0xb8debd39f03a80f182657a47b24d40982d9fec4c', 0, 0, 1, '2024-04-09', 1, 5, '280449', false), - (91189, '2024-05-10 23:12:34.916326+00', '0x2cbc6f23dca3117f4674a944d2e0726f2768d2c9', 0, 0, 1, '2024-04-07', 3, 1, '258531', false), - (91344, '2024-05-10 23:12:35.312236+00', '0x9a84d7cd1ce11f2f52ee7417b43c6dbc1f7ac4f1', 0, 0, 1, '2024-04-03', 2, 1, '403881', false), - (91389, '2024-05-10 23:12:35.479416+00', '0x7ec9932e7de1ca2dc93a4edf382ddf2e5d50a1e3', 0, 0, 1, '2024-04-03', 1, 0, '429759', false), - (92950, '2024-05-10 23:12:39.780648+00', '0x74ac894c6469b6872b4e9fb6bfecb23452041ebc', 0, 0, 1, '2024-02-06', 2, 0, '244414', false), - (92997, '2024-05-10 23:12:39.917177+00', '0x291ffba32db59d4995415056bed2a5d35123eeed', 0, 0, 1, '2024-02-06', 1, 1, '304629', false), - (90353, '2024-05-10 23:12:32.572022+00', '0x7fdcd78669591bc6bf7a9e9925acd8ad55061fd8', 0, 0, 1, '2024-05-05', 1, 5, '302926', false), - (81516, '2024-05-10 23:12:06.19685+00', '0xff0aef0b51f6b38c57e5c2c030cfc5ec83b77f8a', 0, 0, 1, '2024-05-07', 6, 30, '507746', false), - (90829, '2024-05-10 23:12:33.917891+00', '0xa315c96c0903b6a5f0c997fdc6b257851017590b', 0, 0, 1, '2024-04-19', 1, 0, '266308', false), - (92029, '2024-05-10 23:12:37.256687+00', '0x83cbb71271457d450e70d61a1f12b5e39618db0f', 0, 0, 1, '2024-02-06', 2, 6, '251430', false), - (91086, '2024-05-10 23:12:34.660909+00', '0xdf4a612ebc3a4135d55b576bbb6b78543c8be261', 0, 0, 1, '2024-04-11', 1, 1, '345047', false), - (91618, '2024-05-10 23:12:36.161149+00', '0xd521a39ab3035beb80ae0afe865f17ed686307d6', 0, 0, 1, '2024-03-27', 2, 0, '394699', false), - (91745, '2024-05-10 23:12:36.522227+00', '0xcb46bfb7315eca9ecd42d02c1ae174da4bbff291', 0, 0, 1, '2024-03-21', 1, 1, '397668', false), - (91099, '2024-05-10 23:12:34.685148+00', '0xb970df834f589b269af9be54386e42ea890f0bfe', 0, 0, 1, '2024-03-17', 2, 7, '254051', false), - (91900, '2024-05-10 23:12:36.906165+00', '0xc4a9107f16c0d427238eafaa7be50d47281f9a72', 0, 0, 1, '2024-03-16', 1, 1, '384444', false), - (91919, '2024-05-10 23:12:36.991218+00', '0x086ce37549fee88e10a217e3c2478163177a8273', 0, 0, 1, '2024-03-16', 1, 1, '192002', false), - (90592, '2024-05-10 23:12:33.229674+00', '0x515bee382ea1043b699863c06f319a8267d58431', 0, 0, 1, '2024-04-28', 1, 3, '494914', false), - (90620, '2024-05-10 23:12:33.327671+00', '0x543853fa91439f0ac1b746beaa1a12c780fd31f0', 0, 0, 1, '2024-04-28', 1, 2, '385977', false), - (90641, '2024-05-10 23:12:33.363792+00', '0x91d708962d843011d580163894553d4fe7415890', 0, 0, 1, '2024-04-27', 1, 5, '335453', false), - (90656, '2024-05-10 23:12:33.381898+00', '0xbf16dfaee9fbbbcff66467964dea940ed229bf62', 0, 0, 1, '2024-04-27', 1, 5, '477919', false), - (90702, '2024-05-10 23:12:33.512997+00', '0x542c13ddb4a630c212e1ea15c54b8177b8569acd', 0, 0, 1, '2024-04-26', 1, 5, '427573', false), - (90769, '2024-05-10 23:12:33.748777+00', '0x5d2795d1a98f5a652173d8b3e48ca94a2283336a', 0, 0, 1, '2024-04-23', 1, 5, '295801', false), - (91088, '2024-05-10 23:12:34.667657+00', '0xa50b2ac8d26e4ad1e976a5e73eba8a2600b3b32c', 0, 0, 1, '2024-04-11', 1, 5, '288391', false), - (91119, '2024-05-10 23:12:34.691432+00', '0x79e5c126bb94de9777e36bc5944c43c3a512ac6b', 0, 0, 1, '2024-04-11', 1, 0, '423852', false), - (91197, '2024-05-10 23:12:34.925358+00', '0xed55793bda1aec0a3a98cc5f092e071e5785106c', 0, 0, 1, '2024-04-08', 1, 5, '368296', false), - (91232, '2024-05-10 23:12:34.962839+00', '0x377aacf0420fb9b132e95b64a43232ba054eafac', 0, 0, 1, '2024-04-08', 1, 0, '462128', false), - (91341, '2024-05-10 23:12:35.314571+00', '0xf059bc01f150f7d2382c8f83c1ae17a8a803fa7f', 0, 0, 1, '2024-04-03', 1, 0, '401623', false), - (91024, '2024-05-10 23:12:34.4364+00', '0xc47f2266b6076b79c0a6a9906c6592b34c03c914', 0, 0, 1, '2024-03-23', 2, 9, '19408', false), - (91850, '2024-05-10 23:12:36.768876+00', '0x2f93566b411ad8437db8cee893053b6dfc42c7f6', 0, 0, 1, '2024-03-17', 1, 4, '284003', false), - (91927, '2024-05-10 23:12:36.994251+00', '0xa28a89c9d6a52f2f5a64e3f3b764ed686fbd76eb', 0, 0, 1, '2024-03-15', 1, 4, '17605', false), - (93760, '2024-05-10 23:12:42.142884+00', '0x7f0f7504e5f2e237e41c15d78ec6ab6391d7261a', 0, 0, 1, '2023-09-15', 1, 5, '18033', false), - (91858, '2024-05-10 23:12:36.865037+00', '0xf0a68cd0e9ac293ae4e9a5730852c9cd0eaa56a0', 0, 0, 1, '2024-03-17', 1, 1, '277353', false), - (91886, '2024-05-10 23:12:36.898037+00', '0x06bb496c6fb6d934a2acd014f5d22647a228142f', 0, 0, 1, '2024-03-16', 1, 0, '274572', false), - (92045, '2024-05-10 23:12:37.28736+00', '0x48037bf163cd1a01a596229e8a78f4fe80b4c22c', 0, 0, 1, '2024-03-08', 2, 1, '200325', false), - (92089, '2024-05-10 23:12:37.414029+00', '0x50a34f434455f06bb1933beb2766a127f27a7b97', 0, 0, 1, '2024-03-08', 1, 1, '15519', false), - (91536, '2024-05-10 23:12:35.923676+00', '0x65fd21584232b1d5064301e20fa447937261781f', 0, 0, 1, '2024-02-08', 8, 9, '240489', false), - (92597, '2024-05-10 23:12:38.784272+00', '0xfc0f8f25433d16bf368fc6bc5b57c7a999969176', 0, 0, 1, '2024-02-07', 1, 0, '293035', false), - (92655, '2024-05-10 23:12:38.975074+00', '0x82f6e93f079d74b5cb910f9a5a8f6d72300e9b50', 0, 0, 1, '2024-02-06', 2, 2, '278052', false), - (92720, '2024-05-10 23:12:39.216298+00', '0xb754074f031cd08820e19f778befe219f5950681', 0, 0, 1, '2024-02-06', 1, 0, '258635', false), - (92736, '2024-05-10 23:12:39.237947+00', '0x8f6667f108fb2c1ced63db71e9d6b5d1cb46f782', 0, 0, 1, '2024-02-06', 1, 5, '251419', false), - (92751, '2024-05-10 23:12:39.2535+00', '0xcc82847315e39d179d339fc68b448d05812ccaad', 0, 0, 1, '2024-02-06', 1, 0, '258607', false), - (92768, '2024-05-10 23:12:39.344221+00', '0xd9079476ef0ef06da14c1bf37b52a717163f09ce', 0, 0, 1, '2024-02-06', 1, 0, '261524', false), - (92803, '2024-05-10 23:12:39.377921+00', '0x1e7cc9a55a9b9645e083d23c3a2742b2df41f773', 0, 0, 1, '2024-02-06', 1, 0, '284203', false), - (93166, '2024-05-10 23:12:40.42619+00', '0x156803b87433656634666b433a1aee442dbb9acc', 0, 0, 1, '2024-02-06', 1, 2, '268545', false), - (82953, '2024-05-10 23:12:10.454066+00', '0xba27938067e95acd4dacca76af066d05c0ab2d50', 0, 0, 1, '2024-05-05', 9, 0, '410573', false), - (74853, '2024-05-10 23:11:46.980771+00', '0x1d76ad634ba6f77c159c73ed79c17bbc441eb80e', 0, 0, 1, '2024-05-06', 2, 10, '329134', false), - (81534, '2024-05-10 23:12:06.209241+00', '0xf8b362eff7ba0a898dbc1850fffcae7e68040d76', 0, 0, 1, '2024-05-05', 10, 46, '507380', false), - (95384, '2024-05-13 06:00:35.231322+00', '0xf5e1ec915b82f9aa9d788581109953480ce4925d', 0, 0, 1, '2024-05-12', 2, 10, '382236', false), - (88181, '2024-05-10 23:12:26.179636+00', '0xb3d1e41f84acd0e77f83473aa62fc8560c2a3c0c', 0, 0, 1, '2024-03-28', 2, 1, '333405', false), - (82405, '2024-05-10 23:12:08.822416+00', '0x3e95990b1ff868b401faedc5511cd6c5d8f4abff', 0, 0, 1, '2024-05-09', 6, 29, '286351', false), - (93186, '2024-05-10 23:12:40.444566+00', '0xe853ad4d11fa0f9da7ef8f620b397c72f5cde37a', 0, 0, 1, '2024-02-06', 1, 3, '273204', false), - (93222, '2024-05-10 23:12:40.550423+00', '0x5e29771c89511788f112fe12e591eecbfa62ece7', 0, 0, 1, '2024-02-06', 1, 0, '290188', false), - (92873, '2024-05-10 23:12:39.611978+00', '0xcff81aa6f77be0e0dc154dc409707534f11524ac', 0, 0, 1, '2024-02-04', 3, 15, '246598', false), - (93366, '2024-05-10 23:12:40.944567+00', '0x6dba42b06bf0f851d7ff37eeaec681f2f8c5aa5d', 0, 0, 1, '2024-02-02', 1, 1, '249915', false), - (93588, '2024-05-10 23:12:41.555643+00', '0x9e55958688a76229e4fd2d58d8987708693c2b47', 0, 0, 1, '2023-12-24', 1, 4, '193304', false), - (93136, '2024-05-10 23:12:40.29898+00', '0xb5ed0c31f5f590262879f73fdfccb170681e028a', 0, 0, 1, '2024-02-06', 1, 2, '296320', false), - (93158, '2024-05-10 23:12:40.413315+00', '0xf0904311782cbb5c718c890da568f76189f31585', 0, 0, 1, '2024-02-06', 1, 1, '292668', false), - (93178, '2024-05-10 23:12:40.437586+00', '0x414314eb06abc624130afcec1c2d6cc19c5ebe71', 0, 0, 1, '2024-02-06', 1, 1, '14915', false), - (93198, '2024-05-10 23:12:40.457249+00', '0x6702100ada4da5244644ef87a2d5e35f3deae11d', 0, 0, 1, '2024-02-06', 2, 2, '257403', false), - (93226, '2024-05-10 23:12:40.543236+00', '0x5bcec71723bebca19ab1d91ed816950994f41f5d', 0, 0, 1, '2024-02-06', 1, 5, '265957', false), - (93300, '2024-05-10 23:12:40.722251+00', '0x94ef5e61fa3de11cbb3ff09837b23099733dd60f', 0, 0, 1, '2024-02-06', 1, 1, '294499', false), - (93264, '2024-05-10 23:12:40.676709+00', '0xe17be3fe72b3a9f3825b9be9c9e2e6aeb37fbd28', 0, 0, 1, '2024-02-06', 2, 0, '211722', false), - (93360, '2024-05-10 23:12:40.944923+00', '0xc9aeefaa9609dbeaef8b7b9d606b9049e9fae5ac', 0, 0, 1, '2024-02-02', 1, 0, '256395', false), - (93374, '2024-05-10 23:12:40.96845+00', '0xd37adbb6ca0054b78eb5c7a40799b13b7f83ced2', 0, 0, 1, '2024-02-02', 1, 2, '7614', false), - (77671, '2024-05-10 23:11:54.679817+00', '0x28179240a7798abe7e72dae9861fad3529959e96', 0, 0, 1, '2024-04-03', 2, 1, '395677', false), - (78031, '2024-05-10 23:11:55.817278+00', '0x5f98736a54e68104d5e4f272484840094712d66e', 0, 0, 1, '2024-03-31', 1, 2, '312924', false), - (78481, '2024-05-10 23:11:57.142345+00', '0xcf70041f229fd3092d0630406444d89ebe96928a', 0, 0, 1, '2024-03-16', 5, 7, '306841', false), - (93594, '2024-05-10 23:12:41.645491+00', '0x3e7d5ef4c7f4593f1f726c75b1b089520a82edd8', 0, 0, 1, '2023-12-21', 1, 1, '193350', false), - (79433, '2024-05-10 23:11:59.824458+00', '0x5d5d1c3179addf4a598818421047ffa622052ef6', 0, 0, 1, '2024-02-07', 3, 1, '10284', false), - (73809, '2024-05-10 23:11:42.923221+00', '0x55b97e94b29cd9bf491fe63011cc23dae6392628', 0, 0, 1, '2024-05-10', 1, 5, '239272', false), - (79548, '2024-05-10 23:12:00.250151+00', '0xca7612a96cfc6fdeb93d5723f90fa3f0e1b6d008', 0, 0, 1, '2024-02-10', 1, 0, '295390', false), - (93137, '2024-05-10 23:12:40.298002+00', '0x57c1d0f3dae69d24a47237c8a57b5b5395c15ed1', 0, 0, 1, '2024-02-06', 1, 1, '251553', false), - (93162, '2024-05-10 23:12:40.421282+00', '0x700fb8c4447784b6381d482b16000828f6a60fe5', 0, 0, 1, '2024-02-06', 1, 5, '261358', false), - (93598, '2024-05-10 23:12:41.64904+00', '0x458676bd480bc8de1ccc07094e34c00f47dcc04c', 0, 0, 1, '2023-12-20', 1, 3, '195201', false), - (93632, '2024-05-10 23:12:41.692261+00', '0xca5ce67a4cc81875f9e687c24ac81d1a6a2ee841', 0, 0, 1, '2023-12-19', 1, 1, '17710', false), - (93446, '2024-05-10 23:12:41.18392+00', '0xdbde8e347118a9c45c5a7752131623be81d2a4f5', 0, 0, 1, '2023-12-21', 4, 1, '21469', false), - (73826, '2024-05-10 23:11:43.067714+00', '0x185cdf961d21cb90d9ae75d5018e16b2e8fc25f2', 0, 0, 1, '2024-05-04', 2, 10, '344719', false), - (73821, '2024-05-10 23:11:42.966608+00', '0xe51c3ac4bd40486aeebf55a9b9336a70f0a25b34', 0, 0, 1, '2024-03-30', 8, 13, '269506', false), - (73776, '2024-05-10 23:11:42.754726+00', '0x00806e94e9d7fe715ea0ab12e8b1c96e8f827e63', 0, 0, 1, '2024-05-03', 2, 2, '461400', false), - (73777, '2024-05-10 23:11:42.754829+00', '0x74c38b94b963711574d15f48f132c33e8fbd759c', 0, 0, 1, '2024-05-05', 6, 30, '419506', false), - (73853, '2024-05-10 23:11:43.123893+00', '0xcaf80412a7c2e6c7a049b7d07842891dfd36ce4a', 0, 0, 1, '2024-05-07', 4, 5, '473818', false), - (73789, '2024-05-10 23:11:42.91806+00', '0x3ce1a71383c7651d4770d5f4fdd5606dc2e4dd1a', 0, 0, 1, '2024-04-01', 15, 48, '332107', false), - (73784, '2024-05-10 23:11:42.831563+00', '0x779851d2d320cdf8ed094e51ccda17f1920b0ae7', 0, 0, 1, '2024-05-04', 5, 1, '496478', false), - (78975, '2024-05-10 23:11:58.480002+00', '0x1e23125a63312e6a85c9faa12dd804ba113919dc', 0, 0, 1, '2024-02-24', 1, 0, '236367', false), - (74083, '2024-05-10 23:11:44.596337+00', '0x52eb270f43d762bbbfbc3e11269831934181b108', 0, 0, 1, '2024-05-09', 1, 1, '405205', false), - (74088, '2024-05-10 23:11:44.617636+00', '0x37b3dc87130d40c956ad66ac708124a19f56685b', 0, 0, 1, '2024-05-09', 1, 0, '301177', false), - (81491, '2024-05-10 23:12:06.092966+00', '0x41382082bc04904218fca3e7bd8d7855bf739820', 0, 0, 1, '2024-05-06', 26, 88, '492400', false), - (74092, '2024-05-10 23:11:44.625591+00', '0x20846c7fd7f757d193ee692a8391b9c85d87d908', 0, 0, 1, '2024-03-26', 9, 32, '399715', false), - (96949, '2024-05-16 06:00:34.512804+00', '0x5f7b8f07142ee2bdbefd828e72290d06fa283ae8', 0, 0, 1, '2024-05-15', 1, 5, '527830', false), - (74179, '2024-05-10 23:11:44.902237+00', '0xd5c32eba1b836d2e0a62dd0b18ca32d6ab3a2b17', 0, 0, 1, '2024-05-09', 1, 5, '448505', false), - (75831, '2024-05-10 23:11:49.396239+00', '0xbf222ca2ef5126affe94ea72903764d52cd12642', 0, 0, 1, '2024-04-18', 10, 5, '489296', false), - (73871, '2024-05-10 23:11:43.324621+00', '0x1c08da0decdbd4b58d325bc97ab1ae96b896e950', 0, 0, 1, '2023-05-16', 8, 2, '9373', false), - (75110, '2024-05-10 23:11:47.653476+00', '0xb3af8fbc63abaea31e0a4ddb268e15a9ab6dc67f', 0, 0, 1, '2024-05-05', 3, 2, '258025', false), - (74510, '2024-05-10 23:11:45.78393+00', '0xf841c57ff3ceba0751f7ed9accdfdfb384767222', 0, 0, 1, '2024-05-08', 1, 1, '411769', false), - (73842, '2024-05-10 23:11:43.09124+00', '0xd01bac494a46f8033b43637e7cd38f06d1154931', 0, 0, 1, '2024-05-10', 2, 10, '470382', false), - (73900, '2024-05-10 23:11:43.389996+00', '0x1a659702117d6cac8c59923cc8d9aab36d88ad53', 0, 0, 1, '2024-05-07', 10, 45, '428699', false), - (74215, '2024-05-10 23:11:44.969364+00', '0xbbf385c217ffe68942238ccf07280e246ac59a89', 0, 0, 1, '2024-05-09', 2, 1, '519249', false), - (73822, '2024-05-10 23:11:43.050039+00', '0xeda5d99dce69824b44ad9a5eb6d7919d6496a176', 0, 0, 1, '2024-02-29', 8, 13, '328524', false), - (73854, '2024-05-10 23:11:43.124624+00', '0x429c970f5556b78f2516117d1a7d49b51c2c2278', 0, 0, 1, '2024-05-10', 3, 15, '19258', false), - (73794, '2024-05-10 23:11:42.920299+00', '0x843953c8133e12ac7c6eca155a94758ede30a202', 0, 0, 1, '2024-04-23', 7, 18, '422003', false), - (75928, '2024-05-10 23:11:49.637365+00', '0x2300c67365e8d0db283cd3772237183beabf41bc', 0, 0, 1, '2024-04-25', 1, 1, '3600', false), - (75221, '2024-05-10 23:11:47.9218+00', '0x7496142a7e58b13fdd9c6593fe3f8c69c019bb61', 0, 0, 1, '2024-05-04', 1, 2, '515288', false), - (74705, '2024-05-10 23:11:46.477663+00', '0xe9aa9816952f7a96eb0d0035a46fa26fcd678582', 0, 0, 1, '2024-05-07', 1, 1, '514211', false), - (76525, '2024-05-10 23:11:51.463267+00', '0x9620f5fc93aafa58173053c7065bcb0db56f2159', 0, 0, 1, '2024-02-18', 8, 4, '356971', false), - (74029, '2024-05-10 23:11:44.457895+00', '0x5241051084a45a62ba9dff2f553e70cc0a7de9fe', 0, 0, 1, '2024-04-21', 5, 4, '467312', false), - (74250, '2024-05-10 23:11:45.093821+00', '0xf9ac61dcc5c93e6c4bded22a418d51ff8bbf8c08', 0, 0, 1, '2024-05-05', 5, 1, '433641', false), - (75804, '2024-05-10 23:11:49.367645+00', '0x693a7ee2deab47babae43fd9226012a7045d9eb4', 0, 0, 1, '2024-04-27', 1, 1, '461913', false), - (79456, '2024-05-10 23:11:59.956726+00', '0x0f516afaf53ad3a970ef06f97142094d1c0f3f81', 0, 0, 1, '2024-02-12', 1, 0, '295509', false), - (74361, '2024-05-10 23:11:45.377957+00', '0xd20ce27f650598c2d790714b4f6a7222b8ddce22', 0, 0, 1, '2024-05-02', 4, 7, '278703', false), - (76283, '2024-05-10 23:11:50.846217+00', '0xa8cc6dc1d07282dd5e614b08ca7e02153e4c517e', 0, 0, 1, '2024-04-21', 1, 0, '306922', false), - (75465, '2024-05-10 23:11:48.503491+00', '0x8a183976686c15797b86aee156e6b6c451da3ace', 0, 0, 1, '2024-05-01', 1, 5, '16679', false), - (76208, '2024-05-10 23:11:50.65735+00', '0xdfe467f610f6707169523a3b24369732d339c2e6', 0, 0, 1, '2024-04-22', 1, 3, '302102', false), - (76426, '2024-05-10 23:11:51.205198+00', '0x6d3c0c5723a5e8b6c33e5edfb8018af80bcb61b8', 0, 0, 1, '2024-04-20', 1, 0, '290772', false), - (73839, '2024-05-10 23:11:43.08883+00', '0x8bdaae81a398ca6618e38e3dd769c0035712450e', 0, 0, 1, '2024-05-05', 7, 27, '425117', false), - (73811, '2024-05-10 23:11:42.951891+00', '0x14076efc88ca7d53594500261ada8185033e6d5b', 0, 0, 1, '2024-02-10', 8, 2, '308457', false), - (75486, '2024-05-10 23:11:48.523003+00', '0x636e2ce8ededd4a0cadd638d3d14664332fa56a0', 0, 0, 1, '2024-04-04', 6, 23, '270048', false), - (76829, '2024-05-10 23:11:52.282803+00', '0xd43a380bc2ac4b537a98e2be1e2bb61ea0ebfeb5', 0, 0, 1, '2024-03-22', 3, 10, '263498', false), - (75202, '2024-05-10 23:11:47.898752+00', '0xd00b8fff8c61ca45debeb523176a685ae0763434', 0, 0, 1, '2024-05-05', 1, 1, '372462', false), - (75216, '2024-05-10 23:11:47.916513+00', '0xfd582819aded5cb38ed6a9496d150b55a1bd029e', 0, 0, 1, '2024-05-04', 1, 1, '515254', false), - (76611, '2024-05-10 23:11:51.674133+00', '0x1160e5e2d9d301a81cf5e9280174bb93ddccd606', 0, 0, 1, '2024-04-18', 1, 3, '268498', false), - (76138, '2024-05-10 23:11:50.353277+00', '0xb1ab37e704a6126f9d24fc1abb0ec033893e3496', 0, 0, 1, '2024-04-23', 2, 4, '274272', false), - (76182, '2024-05-10 23:11:50.536873+00', '0x84a48792d42f8b037ce518502a24c9b2052cf316', 0, 0, 1, '2024-03-06', 4, 8, '201299', false), - (74333, '2024-05-10 23:11:45.352442+00', '0x0143bdfe40c8458d99d52c6550b687a8b3ee0a93', 0, 0, 1, '2024-05-08', 1, 0, '466304', false), - (73815, '2024-05-10 23:11:42.94851+00', '0x397cec2859d79aee8f08baa3cf23b20b1ef7768a', 0, 0, 1, '2024-05-10', 3, 2, '497229', false), - (73836, '2024-05-10 23:11:43.079464+00', '0xd46a1f0da48e920e235cfe587768fdef9245d0a9', 0, 0, 1, '2024-05-10', 3, 15, '390448', false), - (74379, '2024-05-10 23:11:45.467392+00', '0x97afa1a3507759dfe38c7d8fa00d3d17b3fcac7e', 0, 0, 1, '2024-05-08', 1, 1, '437524', false), - (75626, '2024-05-10 23:11:48.890735+00', '0xa2c75e8736e446149d5f368db640dd46771b4c2f', 0, 0, 1, '2024-04-29', 1, 5, '307047', false), - (75680, '2024-05-10 23:11:49.02612+00', '0x3f1c0ea76342cc3427962452891f8de8649a301b', 0, 0, 1, '2024-04-29', 1, 0, '272146', false), - (75210, '2024-05-10 23:11:47.909593+00', '0xb2ffa393f0b4072081eb2738eb8340bf877bae38', 0, 0, 1, '2023-12-23', 8, 21, '13756', false), - (74710, '2024-05-10 23:11:46.554025+00', '0x8e3d504acfa412b7fdc91f7a95dff264344a4b6f', 0, 0, 1, '2024-05-07', 1, 5, '399675', false), - (81508, '2024-05-10 23:12:06.179244+00', '0xb7fe403f505999612cd7ad8579e563a9e9ee4e50', 0, 0, 1, '2024-03-12', 2, 2, '384647', false), - (75727, '2024-05-10 23:11:49.132497+00', '0x6c25e8243fccc7a46a19ded768d98cb7340e7fb3', 0, 0, 1, '2024-04-07', 9, 8, '281385', false), - (74233, '2024-05-10 23:11:45.071458+00', '0xe20ec9706633c7305ef2adfc0d639e5a1abef944', 0, 0, 1, '2024-04-15', 3, 0, '412416', false), - (75028, '2024-05-10 23:11:47.428736+00', '0xe955575298d2b9f6a1f4d2f6e9467f4af859e384', 0, 0, 1, '2024-05-05', 1, 5, '511577', false), - (75136, '2024-05-10 23:11:47.661048+00', '0xc485712b3d7873d39928719b15d9bbdb92288d1c', 0, 0, 1, '2024-02-18', 9, 2, '208417', false), - (76937, '2024-05-10 23:11:52.52367+00', '0x906edabb3adb8bcab69062a94f030493b65883d7', 0, 0, 1, '2024-04-10', 2, 3, '310089', false), - (76054, '2024-05-10 23:11:50.107068+00', '0x5629857b9ee0833f8e413b9eeb518f9c2f82dee7', 0, 0, 1, '2024-04-09', 2, 1, '410704', false), - (94270, '2024-05-12 06:00:31.911735+00', '0xd4f20b86ab05e5e91cecfefe874657b0f7bfc87d', 1323, 1323, 1, '2024-05-11', 2, 2, '235192', true), - (94212, '2024-05-12 06:00:31.440678+00', '0x0b948efb1b515d8071363a210c362297d2c9db67', 650, 650, 1, '2024-05-11', 1, 0, '8794', true), - (94289, '2024-05-12 06:00:31.959926+00', '0xe13ee4df81868304b4a4ba21ca0da6dc59de48be', 998, 998, 1, '2024-05-11', 1, 2, '20323', true), - (96938, '2024-05-16 06:00:34.474494+00', '0x6d61070a83ab80b97b72dce9d10dad357acc6314', 0, 0, 1, '2024-05-16', 2, 2, '242134', false), - (75935, '2024-05-10 23:11:49.633904+00', '0x24ca9423d66595596ea05b2c8a49e94ee79f1fb0', 0, 0, 1, '2024-04-02', 11, 32, '389106', false), - (97108, '2024-05-16 06:00:35.716512+00', '0x21eb35333a7296881ee100fbe2b60b4770651387', 0, 0, 1, '2024-05-15', 3, 14, '469880', false), - (73823, '2024-05-10 23:11:43.052457+00', '0x31f665f338a1ec8efcddb039d851593930ad4f5b', 0, 0, 1, '2024-05-10', 5, 25, '470817', false), - (79845, '2024-05-10 23:12:01.062822+00', '0x18ab0108817dcbf8f7b371aac5f7b87d7d4427e1', 0, 0, 1, '2024-02-04', 4, 0, '246241', false), - (74963, '2024-05-10 23:11:47.290455+00', '0x832ba26354d6033f0009faef84354cef7e03dfba', 0, 0, 1, '2024-05-06', 5, 23, '426662', false), - (74550, '2024-05-10 23:11:45.900247+00', '0xc5f0b18ca29709d3e1d25154a7222bd770893712', 0, 0, 1, '2024-05-08', 1, 5, '418985', false), - (74159, '2024-05-10 23:11:44.797715+00', '0xd08da3621a547d7d7cb07425e6aa6679c566e40f', 0, 0, 1, '2024-02-09', 6, 12, '188147', false), - (74565, '2024-05-10 23:11:45.982161+00', '0x5c53ee9c2d1f676ee73ad85620ec8516edd752cd', 0, 0, 1, '2024-05-07', 2, 5, '500946', false), - (73885, '2024-05-10 23:11:43.347617+00', '0x79579b2032565133a53f876e80179d0066d293f0', 0, 0, 1, '2024-04-28', 10, 41, '411409', false), - (73948, '2024-05-10 23:11:44.118871+00', '0x92f225381f5882e9e1e468fd33c560c22bb8a70f', 0, 0, 1, '2024-05-10', 3, 15, '377663', false), - (75083, '2024-05-10 23:11:47.5631+00', '0xacdacc050f46a2e0b65eac5736c1f1b1c68afff9', 0, 0, 1, '2024-05-05', 9, 17, '500809', false), - (75803, '2024-05-10 23:11:49.366704+00', '0x2d6fdee7cff50805cb11062860f9f64e6b859242', 0, 0, 1, '2024-04-26', 6, 30, '469871', false), - (74685, '2024-05-10 23:11:46.456766+00', '0x944e849b76de37d70c323b30366363d583649e88', 0, 0, 1, '2024-05-07', 1, 1, '499969', false), - (76394, '2024-05-10 23:11:51.176338+00', '0x4b07b6f0998735ecb2269694dd961e5f2c805d73', 0, 0, 1, '2024-04-20', 1, 0, '391614', false), - (75129, '2024-05-10 23:11:47.65786+00', '0x178dbcce09ac48e63e57507c003259657833553f', 0, 0, 1, '2024-05-05', 4, 20, '418456', false), - (76173, '2024-05-10 23:11:50.524936+00', '0x060233eb6867f329c57586d9be5bd918ad06adf2', 0, 0, 1, '2024-04-22', 1, 0, '490124', false), - (73908, '2024-05-10 23:11:43.400474+00', '0xb7412e73dc7a0824f97d784be3177fdf25673a48', 0, 0, 1, '2024-05-10', 3, 15, '474534', false), - (74828, '2024-05-10 23:11:46.957968+00', '0x7a1d5b6d777cfc257d10707bba4e94a0bb2ffa54', 0, 0, 1, '2024-04-21', 5, 25, '463625', false), - (74515, '2024-05-10 23:11:45.851672+00', '0x497a7dee2f13db161eb2fec060fa783cb041419f', 0, 0, 1, '2024-03-31', 11, 20, '424820', false), - (74660, '2024-05-10 23:11:46.431333+00', '0x81d79b63494bf03d03e910dfec67bbc9efc512db', 0, 0, 1, '2024-05-04', 2, 2, '419790', false), - (74470, '2024-05-10 23:11:45.734339+00', '0xca8443d2f918ef0d696bb11183402642683ed812', 0, 0, 1, '2024-05-08', 3, 6, '285724', false), - (76635, '2024-05-10 23:11:51.784217+00', '0x6e58fa4eecd76e95d4f40ed2bb9a297e0e2ae99d', 0, 0, 1, '2024-04-17', 1, 5, '222357', false), - (76842, '2024-05-10 23:11:52.290591+00', '0x9c21564d7b03dba5f494c93733ecad1fa0129f7c', 0, 0, 1, '2024-04-16', 1, 0, '415597', false), - (75729, '2024-05-10 23:11:49.144882+00', '0xf0956319b8026bd7ff8db68803c8fd81974b6b54', 0, 0, 1, '2024-04-16', 4, 12, '314616', false), - (76928, '2024-05-10 23:11:52.514889+00', '0x5d1234fde915e2e5989e91ad6c9184dbaf01015b', 0, 0, 1, '2024-04-15', 1, 5, '256537', false), - (74748, '2024-05-10 23:11:46.59008+00', '0x34dfc08eb3b7ed60d00e5b2cb611ac27c152b45c', 0, 0, 1, '2024-04-04', 4, 4, '389456', false), - (74129, '2024-05-10 23:11:44.758926+00', '0x7feca2da87cd20c5e040ee142f15e993d88e91a7', 0, 0, 1, '2024-05-06', 3, 15, '511517', false), - (76234, '2024-05-10 23:11:50.680463+00', '0xa66fd186bb39c15ec8830948c9cad52b83d8f84c', 0, 0, 1, '2024-04-22', 1, 3, '287173', false), - (75035, '2024-05-10 23:11:47.437204+00', '0xbffd807ade6cec5e9e3aac578b30be315a044462', 0, 0, 1, '2024-05-05', 2, 10, '404627', false), - (76546, '2024-05-10 23:11:51.548103+00', '0x012c213e4fa5144ed956066499eb5e9e0fe2f57b', 0, 0, 1, '2024-04-18', 1, 4, '188566', false), - (74063, '2024-05-10 23:11:44.500978+00', '0x08d8604a1c24fd74b85366aeafb01186d49708af', 0, 0, 1, '2024-04-13', 4, 1, '373625', false), - (75017, '2024-05-10 23:11:47.422206+00', '0x7f2da54a26a363276cffad8f976dcfb7469aade8', 0, 0, 1, '2024-05-05', 1, 0, '512232', false), - (75546, '2024-05-10 23:11:48.739809+00', '0xc14d0c616b01a80e026fe74869c6efd8a100b951', 0, 0, 1, '2024-04-30', 1, 1, '465861', false), - (75835, '2024-05-10 23:11:49.400324+00', '0x7334d854ab4973e9f3f2f80fbfc1758a300d7953', 0, 0, 1, '2024-04-12', 8, 40, '377049', false), - (76408, '2024-05-10 23:11:51.184287+00', '0x81df54bd9f9449153927e20d10046d59bd3aca95', 0, 0, 1, '2024-04-20', 1, 1, '368767', false), - (88267, '2024-05-10 23:12:26.354531+00', '0x17daf278f0d4e406b435ea74387f52d0b18c5c25', 0, 0, 1, '2024-05-04', 6, 29, '214570', false), - (76324, '2024-05-10 23:11:50.96241+00', '0xf67cdd951c3951c57db14ed0c261f2d6a282e3d3', 0, 0, 1, '2024-04-21', 1, 5, '267076', false), - (76263, '2024-05-10 23:11:50.823793+00', '0x6bab973001ec05f4935766e29f09045fae184f73', 0, 0, 1, '2024-04-08', 3, 15, '330087', false), - (76299, '2024-05-10 23:11:50.950229+00', '0x9eb3feaedccd9b364d5c316888b47ed21c9b48b3', 0, 0, 1, '2024-04-18', 2, 10, '20350', false), - (74391, '2024-05-10 23:11:45.493174+00', '0xfbf19dcd5387e9c087c8cb93fbbc8bcc09e0a252', 0, 0, 1, '2024-05-04', 3, 8, '287576', false), - (77272, '2024-05-10 23:11:53.54203+00', '0xba7e9bb153f9c4c32903b721eb53b751e2c0bf12', 0, 0, 1, '2024-04-11', 1, 0, '12415', false), - (77440, '2024-05-10 23:11:53.975945+00', '0x1a5d3c0f9f9b7f291878c287417d2074b8c8856f', 0, 0, 1, '2024-04-08', 1, 1, '465128', false), - (76980, '2024-05-10 23:11:52.624819+00', '0xd62e2caf16c25fb4d99a4c5ef78476569a075043', 0, 0, 1, '2024-04-07', 2, 2, '273711', false), - (77391, '2024-05-10 23:11:53.8543+00', '0x67dba667e312bc7870478307004f30ab72f92ca8', 0, 0, 1, '2024-03-20', 2, 2, '235305', false), - (74693, '2024-05-10 23:11:46.464461+00', '0x66b45b470b6c7da44f2c8ff5f666a3e01cf33ff7', 0, 0, 1, '2024-04-17', 9, 21, '440524', false), - (73997, '2024-05-10 23:11:44.277697+00', '0xaf2ac2ee9438e648978f7fc1b0f257e0391ce4b3', 0, 0, 1, '2024-04-24', 11, 55, '376638', false), - (76997, '2024-05-10 23:11:52.642866+00', '0xec903903f51d11b24dcf9d5161ed889168e31572', 0, 0, 1, '2024-04-14', 2, 5, '334557', false), - (75065, '2024-05-10 23:11:47.54292+00', '0xed00498c24e52645cf4567af1531b1e653ef1fb9', 0, 0, 1, '2024-05-05', 9, 39, '500543', false), - (86680, '2024-05-10 23:12:22.179941+00', '0x55c5075596efa35c7311aa5f5b3620c3a5cdc5c2', 0, 0, 1, '2024-05-05', 2, 1, '426283', false), - (86480, '2024-05-10 23:12:21.589429+00', '0x5dfa35ecd686624ad3fa120f8ce1bd2ed3dfe129', 0, 0, 1, '2024-05-05', 2, 7, '417412', false), - (75747, '2024-05-10 23:11:49.23929+00', '0xfcf1cd40fc0e73819cd486a7cb270cc31641d8b6', 0, 0, 1, '2024-04-17', 3, 6, '484981', false), - (74784, '2024-05-10 23:11:46.831414+00', '0xa4dd015652d35a4285ddaf1927e12b7d1177a646', 0, 0, 1, '2024-05-07', 1, 0, '515444', false), - (74377, '2024-05-10 23:11:45.480849+00', '0x36741e664ad6dc02253ab08a437f84d4a48879c0', 0, 0, 1, '2024-03-31', 6, 5, '419984', false), - (76312, '2024-05-10 23:11:50.962255+00', '0x9c628b41ae8a73c4c1a607d3793ad2854fc354d6', 0, 0, 1, '2024-04-21', 1, 1, '469772', false), - (75653, '2024-05-10 23:11:48.990588+00', '0x8e7bfde3aa9041f15aebbca37cd7da993dc08560', 0, 0, 1, '2024-04-28', 1, 1, '377748', false), - (75916, '2024-05-10 23:11:49.62542+00', '0x00caa5fc4f0c1ef8936c576e830eb0799fab00d5', 0, 0, 1, '2024-04-25', 1, 1, '17855', false), - (75715, '2024-05-10 23:11:49.128692+00', '0x01c9ea664b6d06bc4609cec8e75dd600221e1c36', 0, 0, 1, '2024-02-18', 3, 6, '8399', false), - (77579, '2024-05-10 23:11:54.435598+00', '0x60eaaa669c70166dc7504a860353161cf525da0b', 0, 0, 1, '2024-04-05', 3, 2, '3444', false), - (77865, '2024-05-10 23:11:55.375195+00', '0xbc7d8949f3bef710e2c51c4f77076e2952db271c', 0, 0, 1, '2024-04-02', 1, 0, '412264', false), - (74591, '2024-05-10 23:11:46.022247+00', '0x1788026a3e75dd93e328a41eb0c6999f9457e34c', 0, 0, 1, '2024-05-08', 1, 1, '519781', false), - (75132, '2024-05-10 23:11:47.679635+00', '0xb5648bfa0fe2eaa57a95562a8d236727afd78c80', 0, 0, 1, '2024-04-28', 2, 4, '504151', false), - (74684, '2024-05-10 23:11:46.454625+00', '0xa29a90406e64b043d64f9c4d4327d3846527d852', 0, 0, 1, '2024-05-07', 1, 1, '463779', false), - (74074, '2024-05-10 23:11:44.589775+00', '0x810657d67c68cf7299f7ecbc321b293ee064c5df', 0, 0, 1, '2024-03-26', 12, 21, '15238', false), - (74810, '2024-05-10 23:11:46.936302+00', '0xe1149ba1477d81de13af598efff1daea364f452a', 0, 0, 1, '2024-04-12', 2, 4, '195483', false), - (76189, '2024-05-10 23:11:50.631649+00', '0x7593c9b3f6213552ff0393b059fc77a2b0acc832', 0, 0, 1, '2024-04-22', 1, 1, '477327', false), - (75661, '2024-05-10 23:11:48.999001+00', '0xdf83d5f341f72767bef69ce605f0df55a4f8d158', 0, 0, 1, '2024-03-31', 2, 3, '22438', false), - (75336, '2024-05-10 23:11:48.167539+00', '0x67820573587cde95e639066e4ef845d10fe66a00', 0, 0, 1, '2024-04-18', 2, 10, '434557', false), - (76748, '2024-05-10 23:11:52.04235+00', '0x74fa211f68b0e6120392ef713babf347d62d0ccd', 0, 0, 1, '2024-04-17', 1, 1, '358990', false), - (76805, '2024-05-10 23:11:52.167099+00', '0x9e58f3070d1e1a1e704f50c0eff241a655e9bfc5', 0, 0, 1, '2024-04-16', 2, 2, '439150', false), - (76115, '2024-05-10 23:11:50.334255+00', '0xed49162911774f5561fab00b0cbd827710c20ddc', 0, 0, 1, '2024-04-04', 7, 7, '408805', false), - (74759, '2024-05-10 23:11:46.800988+00', '0xcccee5f5b1fe6678ce511c66307da1d278ff1ead', 0, 0, 1, '2024-04-01', 4, 3, '2308', false), - (79043, '2024-05-10 23:11:58.623542+00', '0xeec9fedcf90e7a8c4d538490ed255ffc1f262f0d', 0, 0, 1, '2024-02-07', 4, 4, '306667', false), - (75070, '2024-05-10 23:11:47.54983+00', '0xf3d7bb25f5644818b55c524616d31563ba2dd049', 0, 0, 1, '2024-05-05', 3, 14, '501190', false), - (79010, '2024-05-10 23:11:58.525028+00', '0x9606509b456f052084aa5bd807e984213f49a2cd', 0, 0, 1, '2024-02-24', 1, 0, '339712', false), - (75625, '2024-05-10 23:11:48.896536+00', '0x9f714d8882fdf99f14eba000ae583ea4ddcf0b7a', 0, 0, 1, '2024-04-29', 1, 1, '410309', false), - (76016, '2024-05-10 23:11:49.904747+00', '0x0658bdff8fa7128e41c3f46feac8d0c3893f5671', 0, 0, 1, '2024-04-24', 1, 2, '363788', false), - (75789, '2024-05-10 23:11:49.290205+00', '0xe307e9682dcb002e8af4543b071c36aa02c8e850', 0, 0, 1, '2024-04-18', 13, 8, '427654', false), - (73889, '2024-05-10 23:11:43.354139+00', '0xa3fda2f536ef3b64ff76a18fed57f7d7c8508f31', 0, 0, 1, '2024-05-05', 20, 44, '393489', false), - (75292, '2024-05-10 23:11:48.056616+00', '0xd59712dca7127a91ab99ca5136fee56b4cb832f7', 0, 0, 1, '2024-05-04', 3, 0, '475244', false), - (75121, '2024-05-10 23:11:47.662955+00', '0xe696170f696f25d2dd5fe8ea71fdf47d05598d01', 0, 0, 1, '2024-05-05', 8, 3, '449008', false), - (76548, '2024-05-10 23:11:51.554789+00', '0x1aeb0f2883488bfc09ebe8e9dbcb29e5515f24b6', 0, 0, 1, '2024-04-18', 2, 0, '19673', false), - (75677, '2024-05-10 23:11:49.019492+00', '0x01ee98341878319eccc146aba2494a63a19db468', 0, 0, 1, '2024-04-17', 7, 19, '461015', false), - (74337, '2024-05-10 23:11:45.362635+00', '0xf2491ff3c05145d143607c3373344c722c04171a', 0, 0, 1, '2024-05-08', 1, 5, '383029', false), - (79217, '2024-05-10 23:11:59.176135+00', '0x069da1bad547d67abf26c42358d3a6a8a78deca0', 0, 0, 1, '2024-02-18', 1, 0, '319596', false), - (74158, '2024-05-10 23:11:44.798966+00', '0x7c92974852b34fe2f19ad4197e1008a335ee704e', 0, 0, 1, '2024-05-08', 2, 8, '403959', false), - (73967, '2024-05-10 23:11:44.237057+00', '0x415f43441e4aa92973915c22ea95de8d3829702d', 0, 0, 1, '2024-05-05', 12, 36, '505850', false), - (75270, '2024-05-10 23:11:48.030661+00', '0x73cc0bec7a4d54853adb418ed3149baa88912752', 0, 0, 1, '2024-05-04', 1, 5, '321850', false), - (74662, '2024-05-10 23:11:46.43305+00', '0x27bc9b569540eb8c0828d86aab47bfc2bf2e21d7', 0, 0, 1, '2024-05-07', 1, 1, '508334', false), - (75796, '2024-05-10 23:11:49.359162+00', '0xc53548a2cd877fa1cc4e836c1e8bad5a72067aa1', 0, 0, 1, '2024-04-26', 2, 2, '416662', false), - (76632, '2024-05-10 23:11:51.779719+00', '0xf5a57dae2ef473926ce7cc2b12c46de5178f5cf7', 0, 0, 1, '2024-04-17', 1, 0, '242680', false), - (74138, '2024-05-10 23:11:44.774203+00', '0x684711290861fde38b1e30a251114ded0e21c75b', 0, 0, 1, '2024-05-08', 5, 12, '367739', false), - (75426, '2024-05-10 23:11:48.39578+00', '0x5ee2006e03e0bfe49e0b75b573b608eb2b3aa800', 0, 0, 1, '2024-05-02', 1, 5, '469694', false), - (73978, '2024-05-10 23:11:44.257106+00', '0x9fca2c3634208458a2c214c36da601a371e9caa3', 0, 0, 1, '2024-05-02', 8, 40, '392169', false), - (74827, '2024-05-10 23:11:46.958413+00', '0xd00226b73bab097e97c6df416dc031df7c4b5af1', 0, 0, 1, '2024-04-06', 12, 34, '345427', false), - (74053, '2024-05-10 23:11:44.48992+00', '0xc26c7a496eabd0049d95971c2219307119534544', 0, 0, 1, '2024-04-12', 8, 14, '417360', false), - (76343, '2024-05-10 23:11:51.051064+00', '0x41f727fa294e50400ac27317832a9f78659476b9', 0, 0, 1, '2024-04-20', 1, 0, '215299', false), - (76806, '2024-05-10 23:11:52.182927+00', '0xfc372c222faa3f88aac417f1b7037bab619a6902', 0, 0, 1, '2024-03-27', 2, 2, '349093', false), - (76378, '2024-05-10 23:11:51.084124+00', '0xbd1676b6f9db967e351d3dd1ef614ee46d0f1f24', 0, 0, 1, '2024-04-20', 1, 0, '492341', false), - (74996, '2024-05-10 23:11:47.323309+00', '0xda47a6b9ec624f9d8cfe1db6423a26cbebc1246d', 0, 0, 1, '2024-04-09', 10, 10, '426065', false), - (76821, '2024-05-10 23:11:52.20357+00', '0xd2779012e62c8a40437a84e3a2102d6aea2b94b6', 0, 0, 1, '2024-04-16', 1, 1, '413086', false), - (75851, '2024-05-10 23:11:49.496946+00', '0xd98110a7bfc40d60d3711104f05098fd45461c7e', 0, 0, 1, '2024-04-25', 3, 6, '500324', false), - (75868, '2024-05-10 23:11:49.511346+00', '0x2f8beba6312509c5f2859021ed20eb5b787a5495', 0, 0, 1, '2024-04-20', 2, 1, '356441', false), - (76000, '2024-05-10 23:11:49.886031+00', '0xd06790e35b6e722f30082ea2c23417db3b2244dc', 0, 0, 1, '2024-04-24', 1, 1, '8743', false), - (76604, '2024-05-10 23:11:51.696333+00', '0x3a3297881e9904d0463fec7acd9d6d34b915dcb7', 0, 0, 1, '2024-04-18', 1, 0, '3856', false), - (73950, '2024-05-10 23:11:44.140067+00', '0x0dec55d77f81ead734cad0c4ff60072f0024e453', 0, 0, 1, '2024-05-05', 18, 44, '504446', false), - (74518, '2024-05-10 23:11:45.853299+00', '0x2b2e658eb0ee41677b79e614fe961feed23f1d2c', 0, 0, 1, '2024-05-05', 6, 30, '503284', false), - (76684, '2024-05-10 23:11:51.899945+00', '0x8c2538fd519109cfbb1db7e240ad9df94fd05971', 0, 0, 1, '2024-04-17', 5, 0, '436416', false), - (74068, '2024-05-10 23:11:44.578625+00', '0x282f3fca7f3dc1b92b125f0936076da36ce4b946', 0, 0, 1, '2024-05-08', 3, 0, '518538', false), - (74395, '2024-05-10 23:11:45.501419+00', '0x186c5d3d9137d98501db8410dad139c7875fe4fe', 0, 0, 1, '2024-03-17', 7, 28, '272706', false), - (74769, '2024-05-10 23:11:46.81319+00', '0xf2590aaabe69015ca6f03b9a079c0c75736b410f', 0, 0, 1, '2024-05-07', 4, 0, '289911', false), - (73793, '2024-05-10 23:11:42.908578+00', '0x973eee4325cf145f98ae77b41449464f47e91b9c', 0, 0, 1, '2024-05-09', 6, 10, '401159', false), - (74035, '2024-05-10 23:11:44.458149+00', '0xc77d66286d8832112225de79717fbaac4727a901', 0, 0, 1, '2024-05-08', 3, 4, '409857', false), - (75752, '2024-05-10 23:11:49.241901+00', '0xb979d8ddc4cfd3a4eb271401e448a1fbd4c076a5', 0, 0, 1, '2024-04-27', 1, 5, '503849', false), - (76386, '2024-05-10 23:11:51.169352+00', '0x6008292b9637f069a716cbe6ccb92d19eef13a4f', 0, 0, 1, '2024-04-20', 1, 0, '436595', false), - (74479, '2024-05-10 23:11:45.742358+00', '0x785f26f6557b9229cddc5f1c4660216c5c02fd67', 0, 0, 1, '2024-04-06', 14, 13, '414050', false), - (74924, '2024-05-10 23:11:47.17976+00', '0xb508ad96f177edf45d910af7d1ba849b8849ef96', 0, 0, 1, '2024-05-06', 1, 1, '508032', false), - (74216, '2024-05-10 23:11:45.039482+00', '0xc9e71cb59f953e3e8b38ee19b0027f9aa86b519e', 0, 0, 1, '2024-05-04', 15, 36, '420326', false), - (74084, '2024-05-10 23:11:44.612338+00', '0x0353b1a2f7ae0b5903c12bbf52b491eae77c8156', 0, 0, 1, '2024-05-05', 16, 32, '500304', false), - (75156, '2024-05-10 23:11:47.781245+00', '0x5a38b2c6ee3ea3267abe1ede76f70d2a896f99dc', 0, 0, 1, '2024-05-05', 2, 1, '218265', false), - (76617, '2024-05-10 23:11:51.700234+00', '0x85df020866f4b94f96c855c2c28498c128679f2e', 0, 0, 1, '2024-04-18', 1, 1, '459193', false), - (76472, '2024-05-10 23:11:51.328315+00', '0xc2d732167395cc3e1ed63ffedb31d51335a05144', 0, 0, 1, '2024-04-16', 2, 3, '441308', false), - (75936, '2024-05-10 23:11:49.638096+00', '0x0f488236185607138ea494cf48cc923c1039cb26', 0, 0, 1, '2024-04-22', 2, 0, '481681', false), - (76742, '2024-05-10 23:11:52.041402+00', '0xd40d1bfc948c358e121ebc3341ab06ffa5b5078c', 0, 0, 1, '2024-04-16', 1, 1, '432086', false), - (77428, '2024-05-10 23:11:53.965519+00', '0xd4027b154e579d984778964b608134b80f606921', 0, 0, 1, '2024-04-09', 1, 5, '328644', false), - (76828, '2024-05-10 23:11:52.283233+00', '0x8b80b850c579aace8fb562fd9a6cea8869b246d2', 0, 0, 1, '2024-04-16', 3, 6, '428671', false), - (75172, '2024-05-10 23:11:47.803416+00', '0xac2cb05d001091f6ffea9111377710cb2efc55ae', 0, 0, 1, '2024-05-05', 4, 13, '333546', false), - (76518, '2024-05-10 23:11:51.45661+00', '0xebfe1ab93d1122e065adcafd8c3174261e8e726f', 0, 0, 1, '2024-04-17', 4, 10, '308426', false), - (74055, '2024-05-10 23:11:44.491159+00', '0x3e54113a4564e3b017f07ef1a26ed36ba91176a6', 0, 0, 1, '2024-05-09', 2, 5, '442951', false), - (74862, '2024-05-10 23:11:47.051667+00', '0x109094d990adbdfc97c5c9ea5f5bce54f4eb1bdb', 0, 0, 1, '2024-05-07', 1, 1, '481970', false), - (76791, '2024-05-10 23:11:52.162061+00', '0x7ea1694c2f2a34374b0248397a6172af69c1f501', 0, 0, 1, '2024-04-04', 2, 3, '381761', false), - (74398, '2024-05-10 23:11:45.503427+00', '0xde886ab4d1a988c336ea3039a51fc31c0480bc0b', 0, 0, 1, '2024-05-08', 1, 2, '322060', false), - (76242, '2024-05-10 23:11:50.802968+00', '0x3bb3256c141fdd8138c8a1457fb1c1d6c157a6fb', 0, 0, 1, '2024-04-22', 1, 1, '9949', false), - (74415, '2024-05-10 23:11:45.595455+00', '0x8f96aa1c4cbd3b10786c81031c6917bcac66423c', 0, 0, 1, '2024-05-08', 1, 0, '21093', false), - (74911, '2024-05-10 23:11:47.17056+00', '0x07004a13f78c13dd8e6678414dd33a2fd7c407f4', 0, 0, 1, '2024-05-05', 3, 15, '509433', false), - (75138, '2024-05-10 23:11:47.692243+00', '0xa0f6ce829aea4a96de3eeaa695ad61085dba5c82', 0, 0, 1, '2024-05-05', 1, 0, '410074', false), - (74441, '2024-05-10 23:11:45.631676+00', '0x8bc77d5945c761183b178ca920eee516a2024bc3', 0, 0, 1, '2024-05-08', 3, 7, '346912', false), - (75105, '2024-05-10 23:11:47.645813+00', '0xce6fb9f93084629394261e83371dfe2b224b71f0', 0, 0, 1, '2024-04-21', 2, 9, '304523', false), - (77250, '2024-05-10 23:11:53.444977+00', '0xe099f24beadf91240ea9bf3e8ecbdf6ff16a2ad2', 0, 0, 1, '2024-04-08', 5, 4, '459278', false), - (74456, '2024-05-10 23:11:45.651922+00', '0x50cf12c7b0e6a860eca69f3f1d3c181dc00f134b', 0, 0, 1, '2024-05-08', 2, 10, '428802', false), - (74059, '2024-05-10 23:11:44.494005+00', '0x0de1bf69e2c04e6cb948cb51bc70e13d159a0917', 0, 0, 1, '2024-04-30', 9, 17, '499783', false), - (73797, '2024-05-10 23:11:42.924585+00', '0x71e1da43dc166fb3e14612b19d6c0f86e0750a2f', 0, 0, 1, '2024-05-07', 4, 20, '397174', false), - (74155, '2024-05-10 23:11:44.799112+00', '0xf2cac69e4bb8d1b63bb3e1d8794a78035f44ed84', 0, 0, 1, '2024-05-07', 5, 21, '286539', false), - (76533, '2024-05-10 23:11:51.537684+00', '0xfbf7e572a63ca6a4e21a83720c0f23dd644e32e0', 0, 0, 1, '2024-04-18', 2, 8, '327209', false), - (73992, '2024-05-10 23:11:44.268663+00', '0x34ef8b38fe5a9818ec1d2947054ae6b4cc881a34', 0, 0, 1, '2024-05-05', 5, 0, '515449', false), - (76002, '2024-05-10 23:11:49.890695+00', '0x86325e4684fec94e4e77bffd4aa6e665c933ce87', 0, 0, 1, '2024-04-20', 2, 0, '347002', false), - (79341, '2024-05-10 23:11:59.571414+00', '0x126d2cebd1ff6da07ccbc905fd6e0ee97ca265ad', 3257, 3257, 1, '2024-02-16', 2, 2, '399', true), - (95842, '2024-05-14 06:00:31.667239+00', '0xb4a996956856fee7a3c3dca4b384e4ef26a7bc25', 1044, 1044, 1, '2024-05-13', 1, 4, '2928', true), - (76201, '2024-05-10 23:11:50.648288+00', '0xd27967a81a397b544a166a6bcfa5cd0738cd84be', 0, 0, 1, '2024-04-03', 12, 27, '402545', false), - (81550, '2024-05-10 23:12:06.320949+00', '0xb49adf34bb4dcf7da99b611de0045c480bd90474', 0, 0, 1, '2024-05-05', 14, 70, '329190', false), - (97030, '2024-05-16 06:00:35.195765+00', '0x006fd9f7547c8b7320ec83eb253f09a69cdd8452', 0, 0, 1, '2024-05-15', 1, 2, '1520', false), - (73796, '2024-05-10 23:11:42.923092+00', '0x60702925f9966df283d10509ef36ffbaae1f4ca5', 0, 0, 1, '2024-04-06', 7, 10, '364866', false), - (76587, '2024-05-10 23:11:51.662672+00', '0xe0ac36de6bedb01b6f8ac5506db75fd19e17ebf4', 0, 0, 1, '2024-04-18', 6, 30, '357078', false), - (75853, '2024-05-10 23:11:49.499662+00', '0x55ac518007a3767c2e1bfb728319b4abc64c3d87', 0, 0, 1, '2024-04-20', 4, 14, '491590', false), - (76172, '2024-05-10 23:11:50.516439+00', '0x3ee6cb4bc7a755e13d8f255e18c3d55b06e68f3d', 0, 0, 1, '2024-04-15', 2, 6, '430304', false), - (76025, '2024-05-10 23:11:49.910356+00', '0x82882206f416e97c9a6717649935d9808c311675', 0, 0, 1, '2024-04-18', 4, 14, '472670', false), - (76090, '2024-05-10 23:11:50.30234+00', '0x3a4fbcf9c0f0d781712c81a6f782e7d31091d93a', 0, 0, 1, '2024-04-24', 1, 2, '492182', false), - (79029, '2024-05-10 23:11:58.610052+00', '0xe1c7b3dbbc5ebe0492550d01b46d68de36ab8cb8', 0, 0, 1, '2024-02-20', 3, 0, '293754', false), - (75410, '2024-05-10 23:11:48.385681+00', '0x808faacb4a502060a73de1f0f4b094eedbc60c08', 0, 0, 1, '2024-04-05', 2, 0, '330658', false), - (76913, '2024-05-10 23:11:52.438408+00', '0x77350e1152efd5f2d807a6124015c629a907155e', 0, 0, 1, '2024-04-15', 1, 0, '275062', false), - (77643, '2024-05-10 23:11:54.581583+00', '0x475b261ad8e1dd8fdfdc957dd861dd450b02d2a4', 0, 0, 1, '2024-04-06', 1, 1, '439957', false), - (73914, '2024-05-10 23:11:43.412349+00', '0x9440c6dace67b3e62a481b5241daf30c36cd8c9c', 0, 0, 1, '2024-04-14', 18, 77, '466583', false), - (74466, '2024-05-10 23:11:45.729852+00', '0x539cb87b3961a8dec33d4b307e8183b86fe0388c', 0, 0, 1, '2024-05-07', 4, 20, '509718', false), - (73804, '2024-05-10 23:11:42.944176+00', '0x6f834a4b9f42aac14aecd50e145a30f9779aeab4', 0, 0, 1, '2024-05-08', 7, 33, '470263', false), - (74232, '2024-05-10 23:11:45.070972+00', '0xa9aee5ed1b5ff1cc503298328defe11f6c0d2a8e', 0, 0, 1, '2024-02-08', 22, 15, '326415', false), - (77825, '2024-05-10 23:11:55.197343+00', '0xc01e2298830a412b03d461d255b0360b6edfd165', 0, 0, 1, '2024-04-04', 1, 1, '383893', false), - (74824, '2024-05-10 23:11:46.954976+00', '0x8ba5908a107ed29c898b00b498fcce0d88299175', 0, 0, 1, '2023-06-12', 7, 19, '13728', false), - (74041, '2024-05-10 23:11:44.472969+00', '0x8be022568931f02eaf41c1647f15dacac9c9228b', 0, 0, 1, '2024-05-05', 9, 30, '500345', false), - (75160, '2024-05-10 23:11:47.786118+00', '0x4a722ae7c5ed9b438755e567f5531eb113f044cb', 0, 0, 1, '2024-05-05', 26, 120, '501014', false), - (75266, '2024-05-10 23:11:48.028817+00', '0xb7e57a44b1b63374e8f6ad7fb85be840709114a7', 0, 0, 1, '2024-04-11', 5, 6, '427317', false), - (75843, '2024-05-10 23:11:49.487458+00', '0x0571d9c2350b2743acc34e8b95d5527abad70908', 0, 0, 1, '2024-04-26', 1, 0, '369165', false), - (74144, '2024-05-10 23:11:44.78202+00', '0xaed98a518f6db3aa8f2c55c79027f6cae87f4dcd', 0, 0, 1, '2024-05-07', 9, 19, '397868', false), - (74302, '2024-05-10 23:11:45.242466+00', '0x20da700ea03e9fe8bf3409d6f66105184aefb2fc', 0, 0, 1, '2024-03-16', 13, 21, '195117', false), - (76435, '2024-05-10 23:11:51.291377+00', '0x6db11a284803898b0bd4efb09ee8749fee36d00b', 0, 0, 1, '2024-04-09', 5, 19, '399428', false), - (75862, '2024-05-10 23:11:49.505984+00', '0xeacece9ac95be020f535845106c202d2bf7d32fb', 0, 0, 1, '2024-04-26', 1, 1, '194339', false), - (76673, '2024-05-10 23:11:51.826159+00', '0xc61ecc09913be00f9872ef5ae9f411dadb90519c', 0, 0, 1, '2024-04-13', 3, 2, '413456', false), - (76244, '2024-05-10 23:11:50.807391+00', '0x84d00054939b0eeb0c1779e83419250ba44802f5', 0, 0, 1, '2024-04-17', 8, 7, '487762', false), - (75127, '2024-05-10 23:11:47.672466+00', '0xb80b1423b9cea2ff7d1ae56e4e2fa61a49ced93e', 0, 0, 1, '2024-05-05', 17, 83, '501378', false), - (75521, '2024-05-10 23:11:48.615295+00', '0x8daa60e0ff964bb4d1f30fae8791626229c3f63b', 0, 0, 1, '2024-04-30', 1, 1, '441832', false), - (75084, '2024-05-10 23:11:47.566266+00', '0xa3d82d8a3a412a69a57079f72079a7357b6f4bec', 0, 0, 1, '2024-05-05', 1, 0, '190348', false), - (74272, '2024-05-10 23:11:45.182148+00', '0x0778095a1011f842a2b2dc7c63c57012f9ad1267', 0, 0, 1, '2024-05-08', 1, 0, '432342', false), - (74348, '2024-05-10 23:11:45.380096+00', '0x24c7e233e61b7312b28c58f9e355f211c72f4c06', 0, 0, 1, '2024-05-08', 1, 0, '494409', false), - (75094, '2024-05-10 23:11:47.5746+00', '0x3a09a30fb3b4b44817976e503a9a89ee4eebeafd', 0, 0, 1, '2024-05-05', 1, 0, '396687', false), - (73891, '2024-05-10 23:11:43.356844+00', '0xb1724bca5304d9ce6ba0d3248697f5c6dd5fe6ba', 0, 0, 1, '2024-05-08', 12, 38, '403170', false), - (74663, '2024-05-10 23:11:46.434281+00', '0x757388d958cb4629f612463247990de5a8c08ce4', 0, 0, 1, '2024-05-07', 3, 7, '490760', false), - (74830, '2024-05-10 23:11:46.93934+00', '0xe87f168a266e7dabc051ec39c2ab4f691e6bac85', 0, 0, 1, '2024-05-05', 7, 12, '265597', false), - (75000, '2024-05-10 23:11:47.309933+00', '0x7fa77093e83c9292c2357ea799ac2c57ec138203', 0, 0, 1, '2024-04-04', 12, 20, '211286', false), - (74698, '2024-05-10 23:11:46.472054+00', '0xeb5ed0a2ceab3e3da6c0defbceb6c07422c0b7f8', 0, 0, 1, '2024-05-07', 1, 5, '379280', false), - (74214, '2024-05-10 23:11:44.963028+00', '0x62b648854e88935162b9751c9058ec4236cd81b2', 0, 0, 1, '2024-05-07', 4, 0, '324152', false), - (81545, '2024-05-10 23:12:06.217446+00', '0xcf404ce254ac12435505a899889a7a84159bcaad', 0, 0, 1, '2024-05-07', 30, 150, '418881', false), - (74209, '2024-05-10 23:11:44.95524+00', '0x308d912e26eeb489d313765e5662b5c860220efa', 0, 0, 1, '2024-05-07', 4, 6, '385250', false), - (75161, '2024-05-10 23:11:47.784961+00', '0x24b110df94f076dec088e0a8ea90856e1d6a2391', 0, 0, 1, '2024-05-05', 1, 0, '515032', false), - (75025, '2024-05-10 23:11:47.42477+00', '0x937b57b35d355e7f694be333369012e25cc051ee', 0, 0, 1, '2024-05-05', 7, 12, '499091', false), - (75593, '2024-05-10 23:11:48.794342+00', '0xca4ecd4a99a09525bf34e06eda7d8b1e9c902958', 0, 0, 1, '2024-04-29', 1, 1, '504891', false), - (76107, '2024-05-10 23:11:50.325608+00', '0x746def24be0c1b85e82d37f35eb444cc635b04f4', 0, 0, 1, '2024-04-20', 2, 4, '390403', false), - (76139, '2024-05-10 23:11:50.362943+00', '0x1d4adf47b7a4584967a6f5ccc625684732e0efa1', 0, 0, 1, '2024-04-23', 1, 0, '481457', false), - (76027, '2024-05-10 23:11:49.904146+00', '0xf9e6de3e51f4090c87ed91551bd0413ae4cb0b3e', 0, 0, 1, '2024-04-19', 7, 17, '452903', false), - (73780, '2024-05-10 23:11:42.81232+00', '0x9e0149f7cc28c93a3b5f76ab3e8a2a22d14435b5', 57518, 57518, 1, '2024-02-01', 68, 226, '248389', true), - (96996, '2024-05-16 06:00:34.969977+00', '0xd275fa8933c6994e51a3337b65237800f4ba54c1', 655, 655, 1, '2024-05-15', 1, 5, '298503', true), - (74882, '2024-05-10 23:11:47.069331+00', '0xd41726f322e3ff43f3c8edceda1412dd2f20560b', 0, 0, 1, '2024-03-18', 4, 9, '293102', false), - (77045, '2024-05-10 23:11:52.920485+00', '0xc0e13ad655fb96569dacfd79c5f65f6f4c42b023', 0, 0, 1, '2024-04-14', 1, 0, '460750', false), - (79059, '2024-05-10 23:11:58.627696+00', '0x9bcdc7db2f57b0f960a737ccc29373a9bc760134', 0, 0, 1, '2024-02-09', 2, 4, '5291', false), - (73832, '2024-05-10 23:11:43.070572+00', '0xfdeabae9655a6ea2f04d417625a386948b2a4f78', 0, 0, 1, '2024-05-05', 20, 100, '474925', false), - (86735, '2024-05-10 23:12:22.292304+00', '0x614b070d71444268d5957756bd7aeccbe663051b', 0, 0, 1, '2024-05-05', 3, 15, '316311', false), - (86254, '2024-05-10 23:12:20.848547+00', '0x8a69f735bfac93da4da3e2f46a977b4ac6a4f49a', 0, 0, 1, '2024-05-06', 4, 16, '415861', false), - (77031, '2024-05-10 23:11:52.888005+00', '0x6f46d90553141d464c000d76e41d0d5380fc0b23', 0, 0, 1, '2024-02-19', 4, 6, '348427', false), - (88371, '2024-05-10 23:12:26.60774+00', '0xf217a1d3230377b43c8ac590e34deae6947df9f8', 0, 0, 1, '2024-05-05', 1, 0, '443870', false), - (79294, '2024-05-10 23:11:59.523221+00', '0x9c0710a878f21e921c45e43f73ec15de5ae24bfb', 0, 0, 1, '2024-02-16', 3, 1, '329813', false), - (75907, '2024-05-10 23:11:49.622348+00', '0xc3ed5d2a44c66191e38211649cf99c6b2bc2bcd8', 0, 0, 1, '2024-04-25', 1, 0, '467383', false), - (77313, '2024-05-10 23:11:53.699518+00', '0x38fcffcd0cd989978dc4f0232d45e7cec0cbcd1d', 0, 0, 1, '2024-04-10', 1, 1, '3879', false), - (74033, '2024-05-10 23:11:44.457742+00', '0xf63ff253b9b075b32e4d12d2423b0b10e5e4c807', 0, 0, 1, '2024-05-07', 2, 10, '398438', false), - (77418, '2024-05-10 23:11:53.955123+00', '0x4b6c4bb261d6f4b4630e7afd2a93f090df0719f9', 0, 0, 1, '2024-04-09', 1, 0, '413405', false), - (77458, '2024-05-10 23:11:54.066024+00', '0xacfbc87d4ff16bc6d2df6d383c25ffe7efa56da8', 0, 0, 1, '2024-04-08', 1, 1, '307899', false), - (74571, '2024-05-10 23:11:46.002194+00', '0x18925665f141a6370d7b065a74e7729945fae0d2', 0, 0, 1, '2024-05-06', 3, 8, '260151', false), - (77492, '2024-05-10 23:11:54.103223+00', '0x4780829b7c0e8643872d4777334ee2580975a178', 0, 0, 1, '2024-04-08', 1, 5, '422982', false), - (74325, '2024-05-10 23:11:45.345814+00', '0xbbdf2441782e6fd2f62ff5ba53abc8907b79c109', 0, 0, 1, '2024-05-05', 3, 15, '500922', false), - (77296, '2024-05-10 23:11:53.564386+00', '0x2a08325ad00da971cb66a5e9e04ad3529b8f59ab', 0, 0, 1, '2023-11-27', 2, 4, '196186', false), - (74423, '2024-05-10 23:11:45.608151+00', '0xe22f200f4e464c58d12120d5221c1558a6b6dec7', 0, 0, 1, '2024-05-05', 31, 70, '485732', false), - (76328, '2024-05-10 23:11:50.977732+00', '0x4d72d3b315e8d8244d7a1c1d136c3fde2e79ed53', 0, 0, 1, '2024-04-17', 2, 1, '340534', false), - (75773, '2024-05-10 23:11:49.273023+00', '0xe48819eade2db95941a3d7f6230f195e880fc0c4', 0, 0, 1, '2024-04-15', 4, 16, '478317', false), - (79033, '2024-05-10 23:11:58.611251+00', '0x550d1e3993cbbb5c7b9b964fdf87064447bfacb2', 0, 0, 1, '2024-02-22', 1, 0, '353377', false), - (74476, '2024-05-10 23:11:45.735243+00', '0x6195088f4aaae1f8c0a03fe0cd18bb84a57aa11b', 0, 0, 1, '2024-04-14', 2, 1, '477604', false), - (74225, '2024-05-10 23:11:45.053698+00', '0x1004d58464e923132e20c9cd94ea440fe2746d21', 0, 0, 1, '2024-05-09', 1, 5, '431433', false), - (74329, '2024-05-10 23:11:45.351272+00', '0xfe1d6413f605eff67fde74727d50dbaedc0db96b', 0, 0, 1, '2024-05-06', 2, 0, '195868', false), - (75763, '2024-05-10 23:11:49.263134+00', '0xbc7636322b9abdba1bac9c6b7e119282b17517fb', 0, 0, 1, '2024-04-27', 1, 3, '403854', false), - (74873, '2024-05-10 23:11:47.064385+00', '0x29ec3409729ff4cbed66d69a88ac94234b8c0ca1', 0, 0, 1, '2024-05-05', 3, 15, '449301', false), - (74409, '2024-05-10 23:11:45.521145+00', '0xfa336c62d378a82bfc150da3d87cb6600f177429', 0, 0, 1, '2024-05-08', 1, 5, '372745', false), - (75240, '2024-05-10 23:11:47.938756+00', '0xe657a35bb94d9ca25e900259ce61798135f1edaf', 0, 0, 1, '2024-05-05', 5, 19, '404408', false), - (73910, '2024-05-10 23:11:43.408421+00', '0x1a94b37f5d8634a18483c027d145532fccf6b1b9', 0, 0, 1, '2024-04-20', 26, 41, '380028', false), - (74808, '2024-05-10 23:11:46.93202+00', '0x6eb0d7d9bd7ad62ea75d9089870c1c4090295125', 0, 0, 1, '2024-05-07', 12, 53, '486388', false), - (75813, '2024-05-10 23:11:49.379971+00', '0x5176c0dd454b6a15fba23d7bbd7152114632ad94', 0, 0, 1, '2024-04-27', 1, 1, '252936', false), - (74132, '2024-05-10 23:11:44.760903+00', '0xb220563b0f237f79c1d12d887c3a9d9c17bc35b0', 0, 0, 1, '2024-05-06', 19, 72, '421903', false), - (77635, '2024-05-10 23:11:54.58243+00', '0x9226bf4554c4b4dd6040fa0357356e47195d7205', 0, 0, 1, '2024-04-06', 4, 2, '381623', false), - (73909, '2024-05-10 23:11:43.406462+00', '0xae662b081d00df31ebfab162f0954e1973eb9adf', 0, 0, 1, '2024-05-08', 5, 25, '383411', false), - (79047, '2024-05-10 23:11:58.628433+00', '0xf033618c0eeeb9342641a227c17d76c799866f52', 0, 0, 1, '2024-02-08', 10, 7, '262439', false), - (74688, '2024-05-10 23:11:46.459109+00', '0x84fc4c6e0490aec21a8dfcb1425c32c1a7a34042', 0, 0, 1, '2024-05-07', 1, 1, '509240', false), - (75208, '2024-05-10 23:11:47.906873+00', '0xf528a20d5d7267e3b32035ea7d213c1bb38edebc', 0, 0, 1, '2024-05-04', 1, 5, '335469', false), - (76534, '2024-05-10 23:11:51.538157+00', '0xb8237dc5d28065d28f818fea8e2220b556c56cae', 0, 0, 1, '2024-04-19', 1, 5, '400104', false), - (75219, '2024-05-10 23:11:47.918947+00', '0x52c16fd6a693e345bd54ffb74670f804b4ff196e', 0, 0, 1, '2024-05-04', 1, 1, '514681', false), - (74813, '2024-05-10 23:11:46.939483+00', '0x4b9e02d58e33b03b696715a24bcdd77cf5b2703e', 0, 0, 1, '2024-05-07', 2, 0, '213923', false), - (96076, '2024-05-14 06:00:33.09527+00', '0x337101def3eeb6f06e071efe02216274507937bb', 2196, 2066, 1, '2024-05-13', 4, 20, '190045', true), - (82012, '2024-05-10 23:12:07.743196+00', '0xa3a50300902320acfe4bbfd58d475d58b2419ec2', 0, 0, 1, '2024-05-10', 7, 14, '415037', false), - (76314, '2024-05-10 23:11:50.961933+00', '0x3602302b946044bccede79f689aa2ca505852841', 0, 0, 1, '2024-04-21', 1, 5, '411602', false), - (75429, '2024-05-10 23:11:48.396706+00', '0xeb261ca61e0186210522b4ef13e7b0a3374475ab', 0, 0, 1, '2024-05-02', 1, 1, '427453', false), - (73887, '2024-05-10 23:11:43.353643+00', '0xf7d760e82256e6674218ca0b5ad75b8dee987ab5', 0, 0, 1, '2024-05-05', 8, 11, '506048', false), - (75800, '2024-05-10 23:11:49.368195+00', '0xf2088fbddd6d470962673e4e2883d4401abcd41a', 0, 0, 1, '2024-04-08', 3, 8, '358163', false), - (74766, '2024-05-10 23:11:46.809116+00', '0x9299d0b39158dd684d559ed55074cc6ea0975de8', 0, 0, 1, '2024-02-06', 5, 2, '711', false), - (74966, '2024-05-10 23:11:47.293674+00', '0xdcf98b00ad5c61739f5762f6241a872ac1e0217e', 0, 0, 1, '2024-05-06', 3, 15, '378690', false), - (79577, '2024-05-10 23:12:00.37668+00', '0x837b62988107d80c66e4dad561347341cf231805', 0, 0, 1, '2024-02-09', 1, 0, '274964', false), - (81490, '2024-05-10 23:12:06.092161+00', '0xa3b89f0897faaaa3244e8c1edfc5cd0a2f8a35c1', 0, 0, 1, '2024-05-06', 11, 47, '416064', false), - (79805, '2024-05-10 23:12:01.023893+00', '0x3cd9b835f1f072e31c0d4a16c3c03e3e054565da', 0, 0, 1, '2024-02-06', 1, 0, '283898', false), - (78669, '2024-05-10 23:11:57.590286+00', '0xea53d61ceaabb194bd3dffbd39356345f2d8018a', 0, 0, 1, '2024-02-03', 2, 1, '263548', false), - (79957, '2024-05-10 23:12:01.685685+00', '0xfd2862e0f562c99c911d3502a101d35f0bb4f579', 0, 0, 1, '2024-02-03', 1, 1, '267355', false), - (79436, '2024-05-10 23:11:59.834367+00', '0xd6d24f55fc552c7f001d302138a7547b5b089aa0', 0, 0, 1, '2024-02-03', 2, 1, '237118', false), - (78387, '2024-05-10 23:11:56.87588+00', '0x2e496f6001b04dbdbf6cf59dd78ea764edf4dbf2', 0, 0, 1, '2023-08-04', 3, 0, '9470', false), - (80252, '2024-05-10 23:12:02.497247+00', '0xf6fe08ea0250ff49b0b479bc0dbac528b30d5fc4', 0, 0, 1, '2024-01-01', 1, 0, '6639', false), - (75316, '2024-05-10 23:11:48.147265+00', '0x9d819695056bb1a372f9e715af5ec4c79595b67c', 0, 0, 1, '2024-05-01', 2, 8, '417302', false), - (76551, '2024-05-10 23:11:51.553958+00', '0x09fc1031d03a78ed4f60463fa9749870d33439bc', 0, 0, 1, '2024-04-19', 1, 1, '290472', false), - (75735, '2024-05-10 23:11:49.152997+00', '0x5edd077dc1d219ff80af1588ca5eb5ccdadf3575', 0, 0, 1, '2024-04-02', 7, 8, '415258', false), - (74375, '2024-05-10 23:11:45.473678+00', '0x6f8e39673e598e2b701a7f70d9e18e769f915fef', 0, 0, 1, '2024-03-28', 6, 5, '326181', false), - (76649, '2024-05-10 23:11:51.801008+00', '0xf07fea54203087390d8821c6c6be67321d083064', 0, 0, 1, '2024-04-17', 4, 2, '421372', false), - (76577, '2024-05-10 23:11:51.563373+00', '0x000000087f00ae6e6b0da6d4125096cbe2138f25', 0, 0, 1, '2024-04-18', 1, 0, '319028', false), - (76064, '2024-05-10 23:11:50.114306+00', '0x6ba3ef70f5a52501ba37df23dc8a047db65295b7', 0, 0, 1, '2024-04-24', 1, 3, '480503', false), - (97103, '2024-05-16 06:00:35.706267+00', '0x2ee0485f71764bcd2062a84d9455688c581b90f8', 366, 366, 1, '2024-05-15', 1, 1, '3827', true), - (91699, '2024-05-10 23:12:36.407619+00', '0xca9a3c13994699a4efc928a030a3e2326d4c5909', 0, 0, 1, '2024-03-25', 1, 1, '239823', false), - (78883, '2024-05-10 23:11:58.202661+00', '0x141851ca7ffbead76491b365c3515bf5bfd9efed', 0, 0, 1, '2024-02-28', 6, 4, '207400', false), - (81862, '2024-05-10 23:12:07.146905+00', '0x532d05bb8995b91ab214e8a87adf23133d8896d1', 0, 0, 1, '2024-05-10', 3, 10, '386755', false), - (81478, '2024-05-10 23:12:06.079425+00', '0x844ccc0df134b2e74e4d6fe1b6297b956e5ac589', 0, 0, 1, '2024-05-05', 7, 26, '427338', false), - (76194, '2024-05-10 23:11:50.637448+00', '0x695f89e00288f6c8280f21a63b89b27b53a68f8a', 0, 0, 1, '2024-04-22', 1, 1, '342554', false), - (76028, '2024-05-10 23:11:49.892315+00', '0xf24a4ba4c3c87f3e097bc06e7625aa02d5db8d0f', 0, 0, 1, '2024-04-25', 2, 1, '349623', false), - (74072, '2024-05-10 23:11:44.580313+00', '0xfa75c7172496dcf3ac4edf36f5405c1d1991c7ec', 0, 0, 1, '2024-04-15', 16, 38, '12495', false), - (76356, '2024-05-10 23:11:51.066671+00', '0xd0f224d8248c9cb4b28d2bafd20cb6298ad7634c', 0, 0, 1, '2024-04-20', 1, 2, '402397', false), - (76416, '2024-05-10 23:11:51.198808+00', '0x435172c1b669839de487c8a26bee3124e2f06d78', 0, 0, 1, '2024-04-20', 1, 0, '314353', false), - (76812, '2024-05-10 23:11:52.192514+00', '0x9d356f4f49ce1ec8094a55f918d6e5c1cb07d47d', 0, 0, 1, '2024-04-16', 1, 2, '397873', false), - (77119, '2024-05-10 23:11:53.141388+00', '0x5904096158981102302a5bf06e6cd97c61a274cc', 0, 0, 1, '2024-04-13', 1, 0, '424374', false), - (75492, '2024-05-10 23:11:48.536+00', '0x8715dcbf7394a4e6ad98ac5d112e7fb6c3ea9f70', 0, 0, 1, '2024-04-05', 9, 9, '427206', false), - (76734, '2024-05-10 23:11:52.034368+00', '0x4826b308ecd84ca214248509fede5881a264b0a2', 0, 0, 1, '2024-04-12', 3, 1, '403724', false), - (75499, '2024-05-10 23:11:48.603324+00', '0x14fc3aded5f88a486c1ba41b751e3b7e9e92bfd4', 0, 0, 1, '2024-02-10', 7, 3, '295329', false), - (76246, '2024-05-10 23:11:50.810987+00', '0x81374f000b448c01dd109f920d731ddd66bf0638', 0, 0, 1, '2024-04-11', 4, 4, '427867', false), - (75224, '2024-05-10 23:11:47.922013+00', '0xd118f7b97031188df014974fd2c88b91ca85abe1', 0, 0, 1, '2024-04-01', 15, 16, '422090', false), - (75167, '2024-05-10 23:11:47.79311+00', '0x2ff673a287a816fc4089cc51933f32e8c16fd416', 0, 0, 1, '2024-05-05', 1, 5, '291971', false), - (74176, '2024-05-10 23:11:44.894899+00', '0x26b4c08af698ed072738ab141412958e484c15a0', 0, 0, 1, '2024-05-09', 1, 2, '14381', false), - (75618, '2024-05-10 23:11:48.886285+00', '0xb39f0d7a2e76df206e864863ff7197d1caa75205', 0, 0, 1, '2024-04-29', 17, 85, '500303', false), - (74229, '2024-05-10 23:11:45.061581+00', '0x2ff64727bfa375b4bfaaa6fdde3c1b7d90cce08a', 0, 0, 1, '2024-05-05', 8, 31, '385242', false), - (74293, '2024-05-10 23:11:45.236729+00', '0xa064d2935cfbdf084df9af145ddd32f3ea4fd620', 0, 0, 1, '2024-05-08', 6, 19, '386287', false), - (73917, '2024-05-10 23:11:43.413554+00', '0xd249cac450ceb99e61d2fe41bae5fdc4c64c8d71', 0, 0, 1, '2024-05-08', 6, 19, '424031', false), - (76623, '2024-05-10 23:11:51.708133+00', '0x547e74307af43a1bc633761e36477899299a6a75', 0, 0, 1, '2024-04-18', 2, 5, '469659', false), - (74090, '2024-05-10 23:11:44.616067+00', '0x68ff636e0dd653625fe84822ac3ecb530444ddd3', 0, 0, 1, '2024-05-05', 11, 34, '499503', false), - (74135, '2024-05-10 23:11:44.759074+00', '0x84d80ef261a24e9ba4d0407df934c1ea5b470887', 0, 0, 1, '2024-05-07', 7, 35, '500614', false), - (76237, '2024-05-10 23:11:50.791917+00', '0x65f1671ae44c263aaa74552779569b9a368120e2', 0, 0, 1, '2024-04-22', 1, 1, '435805', false), - (75575, '2024-05-10 23:11:48.775038+00', '0x7621e3d3780355a5fcacdd39ff8d0659a5b8bea9', 0, 0, 1, '2024-04-29', 1, 1, '426248', false), - (75049, '2024-05-10 23:11:47.458532+00', '0x1f7df402de23b87499a6272c44344a5ac265f270', 0, 0, 1, '2024-05-06', 1, 0, '421263', false), - (81568, '2024-05-10 23:12:06.357975+00', '0xe9b4de0efb4572110e49504aca350eb7e43f01aa', 0, 0, 1, '2024-05-07', 8, 33, '439086', false), - (75972, '2024-05-10 23:11:49.798886+00', '0xfa205120907585d2c46214beb2f27bc496e4235d', 0, 0, 1, '2024-02-20', 3, 2, '347930', false), - (75769, '2024-05-10 23:11:49.255575+00', '0xc98f8aa1a406fdefeec6c30e7d187171f75a2741', 0, 0, 1, '2024-04-15', 3, 0, '422480', false), - (76809, '2024-05-10 23:11:52.1863+00', '0x158f05fdf8f8557d211d7748b0afd32439a21926', 0, 0, 1, '2024-04-16', 1, 1, '309420', false), - (76884, '2024-05-10 23:11:52.413995+00', '0xaac0ed37b405cc13e7c9167a77dee510688dcafe', 0, 0, 1, '2024-04-15', 1, 0, '15378', false), - (74116, '2024-05-10 23:11:44.738663+00', '0x64bf915d290bb2b19656becfc23b4acffbb70147', 0, 0, 1, '2024-04-02', 9, 15, '414288', false), - (74162, '2024-05-10 23:11:44.809487+00', '0x457a96bb89baf897451aa10431ec6a72d95087eb', 0, 0, 1, '2024-05-09', 3, 15, '413614', false), - (75032, '2024-05-10 23:11:47.437888+00', '0x09f12992341d49d6992dbed55f7b1209eb702588', 0, 0, 1, '2024-05-04', 11, 43, '292154', false), - (77459, '2024-05-10 23:11:54.060919+00', '0x08d4b30cbd21623641b433fdf230db0133a83e3a', 0, 0, 1, '2024-04-08', 1, 1, '320414', false), - (75908, '2024-05-10 23:11:49.621989+00', '0x9bcd78ae10965c28ed1d60f1963ad55f245bd353', 0, 0, 1, '2024-04-08', 2, 1, '13960', false), - (77513, '2024-05-10 23:11:54.295111+00', '0xf7ea196c0f44179b8d60a37a8707d42c0ea767d7', 0, 0, 1, '2024-04-08', 1, 0, '450756', false), - (77575, '2024-05-10 23:11:54.427144+00', '0xd36aab03676f519ed49c1863cc6003e9bbb1e1f4', 0, 0, 1, '2024-04-07', 1, 1, '328691', false), - (75211, '2024-05-10 23:11:47.911382+00', '0x6deb668521436b45cddfd9497b714d9fcb019bfe', 0, 0, 1, '2024-05-04', 6, 8, '287924', false), - (79167, '2024-05-10 23:11:58.980618+00', '0xc0f5758a1f72ef6d0c6249df258a3e9d419fc065', 0, 0, 1, '2024-02-20', 1, 1, '317556', false), - (74404, '2024-05-10 23:11:45.513988+00', '0x5da4fbe370f2aee4610f55ca06290d218b1f6a2c', 0, 0, 1, '2024-05-07', 3, 6, '386247', false), - (74871, '2024-05-10 23:11:47.062354+00', '0x8142b9a50a603ea0ed05c5d71e91e0fc41a6ef0b', 0, 0, 1, '2024-05-07', 2, 4, '382891', false), - (74149, '2024-05-10 23:11:44.790322+00', '0xbeea50d91a3e0bf7ed39a4178af78bbaee578a59', 0, 0, 1, '2024-05-06', 10, 43, '384997', false), - (97158, '2024-05-16 06:00:36.110269+00', '0x7ff446ecf4a6c7224264eab1ee97e26a1d71152d', 180, 180, 1, '2024-05-16', 1, 5, '248216', true), - (93986, '2024-05-11 06:00:25.760425+00', '0x66e75e94eeccacb8708fa9c2fdf93750d770b0fb', 650, 650, 1, '2024-05-11', 1, 0, '10144', true), - (83343, '2024-05-10 23:12:11.692279+00', '0xf553e9423a52b2f3f9b897b420af9b5002276bd5', 0, 0, 1, '2024-05-05', 50, 242, '443043', false), - (82100, '2024-05-10 23:12:08.031775+00', '0xfd012709d312eae776a49e6e5b9b3b13eb181428', 0, 0, 1, '2024-05-06', 53, 166, '480671', false), - (81700, '2024-05-10 23:12:06.735285+00', '0x15878850971770adb4d13aaa6ac5f8e7d5927a09', 0, 0, 1, '2024-05-03', 12, 60, '507928', false), - (81992, '2024-05-10 23:12:07.634162+00', '0x4743ca53638631603c1d869b15998c0093dab724', 0, 0, 1, '2024-05-07', 8, 40, '286771', false), - (81552, '2024-05-10 23:12:06.329555+00', '0xf8308a8fed4382ca89d0bd5ac0cf859a98b046f0', 0, 0, 1, '2024-05-05', 47, 110, '347868', false), - (74295, '2024-05-10 23:11:45.223732+00', '0x550273c395e4914e38f131ebeb0cb49da44a6257', 0, 0, 1, '2024-05-04', 30, 97, '507381', false), - (75234, '2024-05-10 23:11:47.935471+00', '0xba86e23e64828781a43b71647cc2d2a32bfe8890', 0, 0, 1, '2024-05-04', 4, 6, '241141', false), - (82145, '2024-05-10 23:12:08.083622+00', '0x4d5c7ef8ec16be15c601673a2f8583441a15b03d', 0, 0, 1, '2024-02-07', 11, 22, '262294', false), - (81953, '2024-05-10 23:12:07.597612+00', '0x388f3fabe51dfc21d54a34102c6aecc46134f153', 0, 0, 1, '2024-05-07', 8, 33, '286613', false), - (95808, '2024-05-14 06:00:31.323309+00', '0x67aa4eb2e0fd5c9ed8a2f84a50137a458d778b3a', 0, 0, 1, '2024-05-13', 1, 5, '473222', false), - (95850, '2024-05-14 06:00:31.682005+00', '0x44f3662b9dc4a223fcdfc392114b5049ce1f3447', 0, 0, 1, '2024-05-13', 2, 1, '510273', false), - (75064, '2024-05-10 23:11:47.543705+00', '0x65e1decab2466edc05051754dcc643239b26cf18', 0, 0, 1, '2024-05-05', 3, 15, '16469', false), - (74021, '2024-05-10 23:11:44.434601+00', '0x742615b7fec0cc1d09b39f483c932393f066ffd5', 0, 0, 1, '2024-05-09', 1, 0, '413819', false), - (74060, '2024-05-10 23:11:44.495371+00', '0xb5592f774757dc60c1601895e8e339c50916a563', 0, 0, 1, '2024-05-09', 1, 2, '7513', false), - (74167, '2024-05-10 23:11:44.879732+00', '0x6553acdbcf4d52e0b49a4f48a03281130ad0355c', 0, 0, 1, '2024-05-08', 4, 18, '372685', false), - (74875, '2024-05-10 23:11:47.061502+00', '0x43d1a22c1dd5ac43385385af38a9ff5cc68bc50d', 0, 0, 1, '2024-02-21', 2, 0, '336644', false), - (74139, '2024-05-10 23:11:44.773835+00', '0x4b7c261960bd96f72ff9427938feff7cbb83c38a', 0, 0, 1, '2024-05-05', 10, 50, '489027', false), - (76852, '2024-05-10 23:11:52.309357+00', '0x8060c684c03eb9e9065f3799d18cb365d153abff', 0, 0, 1, '2024-04-09', 6, 9, '422655', false), - (74369, '2024-05-10 23:11:45.466574+00', '0x9507f3854a7d935f028aea8558ffe7cbb0e4f49d', 0, 0, 1, '2024-05-08', 1, 3, '386293', false), - (84152, '2024-05-10 23:12:14.222401+00', '0x77995de9a6fa25e24e3c7633ce82bbc87e5b4701', 0, 0, 1, '2024-05-07', 3, 0, '464147', false), - (74261, '2024-05-10 23:11:45.106105+00', '0x6ea4e2d5667e7d8cf5052383bfd09db548d2ec3e', 0, 0, 1, '2023-11-17', 23, 39, '16236', false), - (97622, '2024-05-17 06:00:44.615148+00', '0x1060e3591850c16c0a0270c303dfc7081f5aa67d', 0, 0, 1, '2024-05-16', 2, 10, '17488', false), - (94722, '2024-05-12 06:00:35.078436+00', '0x75a5f2817a91a33af028d1df669b05057913abf3', 0, 0, 1, '2024-05-11', 2, 9, '482196', false), - (73960, '2024-05-10 23:11:44.16241+00', '0x90a7989ef0369e9a57c599e88338878335cda715', 0, 0, 1, '2024-04-07', 25, 82, '386476', false), - (81836, '2024-05-10 23:12:07.015594+00', '0x2bebbbe0e0d7c845c502f0a0b6469142c1fa5144', 0, 0, 1, '2024-05-10', 8, 37, '425166', false), - (94079, '2024-05-11 06:00:26.460358+00', '0x5f81efc1f5ba862f9d102080663cf950f11cf93c', 0, 0, 1, '2024-05-11', 16, 79, '447251', false), - (74711, '2024-05-10 23:11:46.557527+00', '0x756d53c524a845a5d593c40fac355964ebbf9bda', 0, 0, 1, '2024-04-21', 4, 14, '493000', false), - (74554, '2024-05-10 23:11:45.905084+00', '0x428da27260d9b0ce1f229334581b26e8dcd05818', 0, 0, 1, '2024-05-08', 1, 0, '434691', false), - (74431, '2024-05-10 23:11:45.617163+00', '0xb1189f70f77a4d390edc7cc802d1e5bb17cacac5', 0, 0, 1, '2024-05-08', 4, 5, '399716', false), - (74651, '2024-05-10 23:11:46.339221+00', '0x1f4f56292f0a2bd5908168d0fb8a048f782a07aa', 0, 0, 1, '2024-05-07', 2, 3, '452823', false), - (74946, '2024-05-10 23:11:47.202184+00', '0xec9bb5ee2b8458613f0a6a764ef6a9c5da0ebe70', 0, 0, 1, '2024-05-06', 1, 1, '348320', false), - (74806, '2024-05-10 23:11:46.928894+00', '0x02304bcfb1b7a1b1afb38f6dfd11a49c6fb0edf5', 0, 0, 1, '2024-04-08', 5, 0, '411507', false), - (74569, '2024-05-10 23:11:45.998304+00', '0xa08d1837f14d1644b5bd2b714377c89d3268cf40', 0, 0, 1, '2024-05-06', 6, 21, '421000', false), - (74516, '2024-05-10 23:11:45.855097+00', '0x8f00e451816f6af313c4827934566996e8df4e8d', 0, 0, 1, '2024-05-07', 2, 7, '406278', false), - (74723, '2024-05-10 23:11:46.569401+00', '0x81a8ccb2fa2bd6bdb67f50ccd6dc860641381c07', 0, 0, 1, '2024-03-24', 4, 15, '196444', false), - (74234, '2024-05-10 23:11:45.065301+00', '0x94f2efb415654d4a1c952140099a9bc6aa02ebd6', 0, 0, 1, '2024-05-06', 23, 56, '379499', false), - (74612, '2024-05-10 23:11:46.254911+00', '0x0d36f3b293144d18667823635342e151468fe6f1', 0, 0, 1, '2024-05-05', 4, 0, '231533', false), - (74920, '2024-05-10 23:11:47.173392+00', '0x1e8564a52fc67a68fee78fc6422f19c07cfae198', 0, 0, 1, '2024-05-06', 1, 2, '390759', false), - (76543, '2024-05-10 23:11:51.549479+00', '0x7c8db435f2980a555394c21919628490be494b5b', 0, 0, 1, '2024-04-18', 1, 1, '482255', false), - (75137, '2024-05-10 23:11:47.693013+00', '0xf812408fc655530ae21e69c1ff8b6c3fe8828b63', 0, 0, 1, '2024-05-05', 1, 1, '363041', false), - (76637, '2024-05-10 23:11:51.780941+00', '0x68235b42562ad5040948932c2942a6c589b2ab06', 0, 0, 1, '2024-04-17', 1, 2, '452775', false), - (76581, '2024-05-10 23:11:51.665063+00', '0x2eec6f87a2727af2de1e6049187b0072d90d18c3', 0, 0, 1, '2024-04-17', 2, 2, '211652', false), - (76026, '2024-05-10 23:11:49.903519+00', '0x84697ce7ff7782bdfab734a36a5d665b75fd1c36', 0, 0, 1, '2024-04-24', 1, 5, '244629', false), - (74897, '2024-05-10 23:11:47.087571+00', '0xdd6cdfa4ad9a04afdb95b5aec93f1b0688cab8a9', 0, 0, 1, '2024-05-06', 4, 12, '246039', false), - (74714, '2024-05-10 23:11:46.561854+00', '0x56c2cb50753a884ca449f59ec17958421cb6263d', 0, 0, 1, '2024-05-06', 5, 14, '403323', false), - (74326, '2024-05-10 23:11:45.350803+00', '0x065baf5897ff3d7a020195fa9ce58568defbc9ce', 0, 0, 1, '2024-05-08', 3, 14, '416361', false), - (77841, '2024-05-10 23:11:55.212782+00', '0x9a5b39473a28764dd4abc19705b45bc1f567cbcd', 0, 0, 1, '2024-04-03', 1, 0, '436165', false), - (75300, '2024-05-10 23:11:48.063672+00', '0x555e888a040a183ff0e0a7b2586798184d7f8a43', 0, 0, 1, '2024-05-03', 2, 10, '512443', false), - (77084, '2024-05-10 23:11:53.028239+00', '0x64c3eecc8b27c5c342706ca327e5a54235610683', 0, 0, 1, '2024-04-03', 3, 4, '324885', false), - (76108, '2024-05-10 23:11:50.32239+00', '0x39716fe8534b630156ec768532fe367306285799', 0, 0, 1, '2024-04-23', 1, 0, '471331', false), - (76120, '2024-05-10 23:11:50.340073+00', '0x486fb530c103b750f82074f95a441d307670009b', 0, 0, 1, '2024-04-23', 1, 0, '483944', false), - (75283, '2024-05-10 23:11:48.048699+00', '0x0d10721a50434ec2bfb2aeed8cfea9d9f171a5f3', 0, 0, 1, '2024-04-22', 3, 5, '406365', false), - (77363, '2024-05-10 23:11:53.811504+00', '0x27c98b1b1a67495cf42c99da293bf7ecc0bab246', 0, 0, 1, '2024-04-10', 1, 3, '264933', false), - (76601, '2024-05-10 23:11:51.690538+00', '0xb020928356dea062667599d035c49b60fc3422ce', 0, 0, 1, '2024-03-29', 4, 14, '407042', false), - (74120, '2024-05-10 23:11:44.742453+00', '0x9b4abb199083a61f78ea34446b2aeccc375a8a4e', 0, 0, 1, '2024-05-08', 7, 16, '423394', false), - (74025, '2024-05-10 23:11:44.440718+00', '0x87af71ffa2051dc58bbc2da8fdacbc036b701788', 0, 0, 1, '2024-05-04', 12, 9, '264690', false), - (73844, '2024-05-10 23:11:43.101149+00', '0x54db737c7b9c72e3dc6a8ac4969a26f27d9a3b91', 0, 0, 1, '2024-05-10', 3, 15, '444123', false), - (81797, '2024-05-10 23:12:06.915819+00', '0x9f05e379a0ea4407ba76fec8c319538c0594f2b0', 0, 0, 1, '2024-05-05', 14, 64, '502380', false), - (81547, '2024-05-10 23:12:06.22286+00', '0xdc8606437c74318b8b144b5232eb30946d4dba30', 0, 0, 1, '2024-05-07', 76, 375, '475970', false), - (97965, '2024-05-17 06:00:47.070314+00', '0x366d78fc9e7713430779b9644bb22d3e5fe6ef94', 0, 0, 1, '2024-05-16', 1, 5, '378592', false), - (97979, '2024-05-17 06:00:47.086902+00', '0x7decc05384062a182a00dcf049e553bc0ecb4630', 0, 0, 1, '2024-05-17', 1, 1, '510731', false), - (98013, '2024-05-17 06:00:47.352537+00', '0x182629b2c2c4b9e562d2e526051ad3f5aa96e29c', 0, 0, 1, '2024-05-16', 1, 1, '321174', false), - (77637, '2024-05-10 23:11:54.581301+00', '0xa5340ac7d467d9325a91ae5e199c5de1ecd6b706', 0, 0, 1, '2024-04-06', 1, 1, '427120', false), - (77908, '2024-05-10 23:11:55.486217+00', '0x6f48d7361bf9334dbfacfb6a73f46e22df871497', 0, 0, 1, '2024-02-27', 3, 0, '368264', false), - (74382, '2024-05-10 23:11:45.486674+00', '0x05803c77427df62d65b4cef38c743580e0582963', 0, 0, 1, '2024-05-05', 5, 0, '498079', false), - (74145, '2024-05-10 23:11:44.784186+00', '0x46dac7412752e7567c941e8233f9bd647a0e46be', 0, 0, 1, '2024-03-20', 12, 18, '199118', false), - (76490, '2024-05-10 23:11:51.430696+00', '0x3c465de32bbaca3a6cda285b93417dd0ed60c7e7', 0, 0, 1, '2024-04-19', 1, 1, '241620', false), - (76432, '2024-05-10 23:11:51.289007+00', '0x9f456dfe4bb4d1a8450e16ad3d8738c117892e8e', 0, 0, 1, '2024-04-07', 5, 20, '396880', false), - (77218, '2024-05-10 23:11:53.413251+00', '0xfd067a330af3e78468c36cced4ea8877b3fec7d3', 0, 0, 1, '2024-04-11', 1, 2, '309381', false), - (77677, '2024-05-10 23:11:54.685718+00', '0x6c1cbe8cfc32a74188a9d3bf364945ea53b01b04', 0, 0, 1, '2024-04-05', 2, 3, '316097', false), - (78096, '2024-05-10 23:11:56.024257+00', '0x95f7157c4f92719d1d03898df226c1c6dfed6c0b', 0, 0, 1, '2024-03-28', 2, 0, '320746', false), - (77749, '2024-05-10 23:11:54.999006+00', '0xa871ded972f7b8466b79f0c355352b29608f1830', 0, 0, 1, '2024-04-04', 1, 2, '440947', false), - (78195, '2024-05-10 23:11:56.3053+00', '0x77b1b4d3a056013ccf0bfed140be6081a782a6a0', 0, 0, 1, '2024-03-26', 1, 1, '9644', false), - (78288, '2024-05-10 23:11:56.58993+00', '0x2066a357231a084e3e883a70afe292bf46ae243c', 0, 0, 1, '2024-03-23', 1, 2, '296971', false), - (75313, '2024-05-10 23:11:48.146078+00', '0xfb36c377a2e0b9853281c2239dfb791d375f9b8b', 0, 0, 1, '2024-03-22', 9, 21, '387795', false), - (78492, '2024-05-10 23:11:57.153299+00', '0xa136c52c7065f0fa87284b823701befc1c5d9daf', 0, 0, 1, '2024-03-16', 1, 0, '296148', false), - (76423, '2024-05-10 23:11:51.203741+00', '0x5a787f8d4f867496a47ff221e39aac23d7d47bd1', 0, 0, 1, '2024-04-20', 1, 0, '404119', false), - (73907, '2024-05-10 23:11:43.400724+00', '0x400c3829633a1a58bcf656b42852aa48b484f582', 0, 0, 1, '2024-05-10', 3, 13, '514638', false), - (75614, '2024-05-10 23:11:48.883666+00', '0x849a27048de274c084f42551f395823f8fa18f2e', 0, 0, 1, '2024-04-27', 2, 6, '342840', false), - (75759, '2024-05-10 23:11:49.255986+00', '0x56876f3f31582d65a9b99f22a7c2c84f0ccca723', 0, 0, 1, '2024-04-28', 1, 0, '383359', false), - (75820, '2024-05-10 23:11:49.377398+00', '0x55857aada1a01b939d8b1ee41300aa3cb5885ed6', 0, 0, 1, '2024-04-27', 1, 1, '431712', false), - (75981, '2024-05-10 23:11:49.805977+00', '0x1d3356c7c1bf57136e80f340975a6bc493fc0e6b', 0, 0, 1, '2024-04-25', 1, 5, '380764', false), - (76489, '2024-05-10 23:11:51.429518+00', '0xa34fbc6bb017cd320833d74547fc639ecf39c12b', 0, 0, 1, '2024-04-19', 1, 0, '5057', false), - (76125, '2024-05-10 23:11:50.343723+00', '0x701d0ecb3ba780de7b2b36789aec4493a426010a', 0, 0, 1, '2024-04-23', 2, 0, '388213', false), - (75958, '2024-05-10 23:11:49.784639+00', '0x5e756a3cb21c5fd471156d5229f09676dad78500', 0, 0, 1, '2024-04-09', 10, 28, '279689', false), - (76206, '2024-05-10 23:11:50.655629+00', '0x09df9bdedf10ca9ba636a209bb5bbea3f4227153', 0, 0, 1, '2024-04-22', 1, 1, '495204', false), - (77627, '2024-05-10 23:11:54.572029+00', '0x18b93ebb7fc1b9f3a8f08fd3190ea3efcb124b58', 0, 0, 1, '2024-04-02', 2, 8, '226767', false), - (76162, '2024-05-10 23:11:50.515221+00', '0xe401ccf9671a2e0331177a7ac5568c10e89aae4f', 0, 0, 1, '2024-04-21', 2, 0, '471698', false), - (75413, '2024-05-10 23:11:48.383508+00', '0xb85d31b6f1f44c0d113bdca6b550e773b24d345d', 0, 0, 1, '2024-04-07', 4, 3, '367639', false), - (74266, '2024-05-10 23:11:45.179839+00', '0x309471398adfa2b136970583ad0db66294f035e3', 13215, 13215, 1, '2023-09-03', 9, 19, '12425', true), - (98014, '2024-05-17 06:00:47.353487+00', '0xaea4a0dedb94ba5b2b8ed9477a8a54379c584542', 122, 122, 1, '2024-05-16', 1, 2, '5818', true), - (93930, '2024-05-11 06:00:25.367088+00', '0x6ea28eedf8ca259f252ed2fa54afe43b073b6cf9', 1162, 1162, 1, '2024-05-11', 2, 0, '17256', true), - (75099, '2024-05-10 23:11:47.572875+00', '0xe97022e3e50ac76d20f5138141d79f65acf3bc82', 11725, 11725, 1, '2024-02-03', 10, 12, '263333', true), - (81802, '2024-05-10 23:12:06.978534+00', '0xb1f1658832da1624f5a7c1ef829ebe05069e5732', 0, 0, 1, '2024-05-05', 18, 70, '468054', false), - (95002, '2024-05-13 06:00:31.483392+00', '0x75f89de43c0068cf2bbb57b2e35525be5dd4af1f', 0, 0, 1, '2024-05-12', 5, 19, '516658', false), - (97582, '2024-05-17 06:00:44.357135+00', '0x77ee54a1647402b6d370705ea1e433a6b2ceb65c', 0, 0, 1, '2024-05-16', 1, 0, '245819', false), - (73922, '2024-05-10 23:11:43.539129+00', '0x3ba804f7ba06fcbb1f0795359ebf6ba5144bf252', 0, 0, 1, '2024-04-24', 21, 62, '389207', false), - (83138, '2024-05-10 23:12:10.987945+00', '0xe80eacad88b4e8b98b717d52103664e011d3e2c5', 0, 0, 1, '2024-05-05', 9, 14, '508231', false), - (82026, '2024-05-10 23:12:07.756519+00', '0x59479108adfd232aa3f2af184639fa0e08f24dde', 0, 0, 1, '2024-05-07', 18, 65, '426167', false), - (97887, '2024-05-17 06:00:46.415579+00', '0x764cf158398c1a0cc828e02cc883eb5063019ef2', 0, 0, 1, '2024-05-16', 1, 5, '511315', false), - (91187, '2024-05-10 23:12:34.909005+00', '0xf46d36a35eca074dac347bab4f70d969e8cbce59', 0, 0, 1, '2024-02-28', 7, 23, '327500', false), - (97978, '2024-05-17 06:00:47.087281+00', '0x25a613ab611ecfe3f40f82ccab2dd798038e5f17', 0, 0, 1, '2024-05-16', 2, 7, '465733', false), - (97520, '2024-05-17 06:00:43.756861+00', '0xfd9f63c6db461eb8399d7e8b9230eeb820830e16', 0, 0, 1, '2024-05-16', 2, 1, '508999', false), - (75549, '2024-05-10 23:11:48.747157+00', '0xb3b6952a8cd1460c58b809f0f6d3cac768fe0f2d', 0, 0, 1, '2024-04-11', 10, 50, '446185', false), - (76405, '2024-05-10 23:11:51.189412+00', '0x3d6b2cec224643267b2e4f8f81bb0b18f62f3c1e', 0, 0, 1, '2024-04-20', 1, 0, '299216', false), - (78899, '2024-05-10 23:11:58.224156+00', '0xbf78efc16c278ac1394ed802ce39cacd3c88dca9', 0, 0, 1, '2024-02-28', 1, 0, '292155', false), - (76759, '2024-05-10 23:11:52.058227+00', '0x56788f7b66060c2bdb816e0c424f84088ac01fbb', 0, 0, 1, '2024-04-17', 1, 0, '470362', false), - (77613, '2024-05-10 23:11:54.557462+00', '0xe60ead0c469e9801c886ed1080524fe9ab76bdff', 0, 0, 1, '2024-04-06', 1, 1, '421080', false), - (78774, '2024-05-10 23:11:57.918323+00', '0x50eb5249b9114ec5cce3a88d3404ab11f8c10a1d', 0, 0, 1, '2024-03-05', 4, 0, '304974', false), - (77653, '2024-05-10 23:11:54.661136+00', '0xa29ad7cc2fe7ccd79805914c1a983aa3a0176d09', 0, 0, 1, '2024-04-06', 1, 1, '9894', false), - (76968, '2024-05-10 23:11:52.554399+00', '0xc3260d96a7745fe24ba7c53d8b05fcf1f397bd27', 0, 0, 1, '2024-04-14', 1, 1, '418488', false), - (78605, '2024-05-10 23:11:57.460299+00', '0x5a4df723e23026889d1286c20bc6f2e36e7fe798', 0, 0, 1, '2024-03-11', 1, 0, '302981', false), - (75337, '2024-05-10 23:11:48.167225+00', '0x610dce6c9cb8e035ca7ebb3f7e3df1674c1572ad', 0, 0, 1, '2024-03-29', 36, 63, '368989', false), - (79052, '2024-05-10 23:11:58.63456+00', '0xc75dc651f947b77c03fa4ecffc710776964bbfb6', 0, 0, 1, '2024-02-22', 1, 1, '341267', false), - (78672, '2024-05-10 23:11:57.592534+00', '0xcb10777525c25465901b54edfa59671a5ab2bfa7', 0, 0, 1, '2024-03-11', 1, 0, '332584', false), - (74486, '2024-05-10 23:11:45.750321+00', '0xc9737651e2a88e2e3e8395ac98b4e3a360733369', 0, 0, 1, '2024-03-30', 8, 11, '9887', false), - (78945, '2024-05-10 23:11:58.343177+00', '0x1b739d4cf035d71c52a41cc9bd259eb00e80b1ad', 0, 0, 1, '2024-02-26', 1, 2, '316831', false), - (97531, '2024-05-17 06:00:43.847218+00', '0xb8ac952dcdfd1e77222213ae508ad8864dc391b4', 0, 0, 1, '2024-05-17', 3, 6, '7408', true), - (97546, '2024-05-17 06:00:43.990106+00', '0x70b71b98c8b95643462c68e0a396d0a6d15337bf', 0, 0, 1, '2024-05-17', 1, 0, '10097', false), - (97599, '2024-05-17 06:00:44.395729+00', '0x68bbea7a67ce565baf378d2d57280bbb1dbe725c', 0, 0, 1, '2024-05-16', 1, 5, '404574', false), - (82361, '2024-05-10 23:12:08.692782+00', '0x8e1bee003639aba3b6cc008e6a44dc14cffc81ee', 0, 0, 1, '2024-05-07', 5, 21, '383655', false), - (97761, '2024-05-17 06:00:45.710163+00', '0xc83e83677dd95618686ac9af2cd48972f1b72c22', 0, 0, 1, '2024-05-16', 1, 0, '299904', false), - (82069, '2024-05-10 23:12:07.925356+00', '0xbb9425abb19cd7a35eaa4befe319ddae7857b318', 0, 0, 1, '2024-05-07', 17, 38, '451020', false), - (83648, '2024-05-10 23:12:12.710285+00', '0xcfaafed6aa20e5e4c27ca8fb57a0852df1615b95', 0, 0, 1, '2024-05-05', 4, 20, '348696', false), - (82043, '2024-05-10 23:12:07.77694+00', '0xbc362d817c49c6258f00e8dafb067668fc860733', 0, 0, 1, '2024-05-05', 10, 50, '500929', false), - (97898, '2024-05-17 06:00:46.526628+00', '0x1659d7dc0ba538b8323da7495fa19b4b5a0fe816', 0, 0, 1, '2024-05-16', 1, 5, '443818', false), - (97973, '2024-05-17 06:00:47.083528+00', '0xb26c469c17154911af343e506ed8efcd77eebda0', 0, 0, 1, '2024-05-16', 1, 1, '336979', false), - (98036, '2024-05-17 06:00:47.665594+00', '0xcd5393f4c6117048bfb7d7e2bc9d5f80d5d44389', 0, 0, 1, '2024-05-16', 1, 5, '500646', false), - (80435, '2024-05-10 23:12:02.985498+00', '0x25788fd5e65a94f1f02604c8d72d05e0bf4cac5f', 0, 0, 1, '2023-12-09', 1, 0, '12061', false), - (85557, '2024-05-10 23:12:18.662562+00', '0x4630cf0fa55f83e11e43286ff04fc6930e1eb095', 0, 0, 1, '2024-05-07', 1, 2, '17137', false), - (75108, '2024-05-10 23:11:47.65067+00', '0xe533f15a1e690d312ddc59e6f3d23f8e5af72a39', 0, 0, 1, '2024-05-05', 2, 1, '373065', false), - (75226, '2024-05-10 23:11:47.929111+00', '0xec37025f888d7ac49d16a6798d397edb64798008', 0, 0, 1, '2024-05-04', 1, 0, '348617', false), - (75236, '2024-05-10 23:11:47.937066+00', '0x832d0d5f60bfb954d48d3675f72adcbca545ca55', 0, 0, 1, '2024-05-04', 1, 5, '513084', false), - (75253, '2024-05-10 23:11:48.01235+00', '0x12f294883638784a75215897fb141c5ff53fca73', 0, 0, 1, '2024-05-04', 1, 0, '513741', false), - (75590, '2024-05-10 23:11:48.792311+00', '0x89ba0cb315a40f39220584f6b92beab0cc860d6c', 0, 0, 1, '2024-04-29', 1, 1, '304566', false), - (75712, '2024-05-10 23:11:49.126633+00', '0x603eda0701b03babc5e00b7f61b524103eb9e5d9', 0, 0, 1, '2024-04-28', 1, 5, '484886', false), - (77946, '2024-05-10 23:11:55.657494+00', '0xe8b0016130a38f26c116576a7b13267c9fb11b59', 0, 0, 1, '2024-04-01', 5, 0, '296', false), - (76360, '2024-05-10 23:11:51.072681+00', '0xe5ea585a76d0bcaf6c4d7396b27b06fea9aca528', 0, 0, 1, '2024-04-20', 1, 0, '440782', false), - (77961, '2024-05-10 23:11:55.674566+00', '0xf762c3993403d170adee1f58974215905887128c', 0, 0, 1, '2024-03-30', 2, 0, '319488', false), - (76496, '2024-05-10 23:11:51.435674+00', '0x817771a4952bad1db380aebfdc2717116b8ea758', 0, 0, 1, '2024-04-17', 2, 3, '419532', false), - (77182, '2024-05-10 23:11:53.307325+00', '0x904e1aa3248b6a8eddf379110694eabf8c24b3f2', 0, 0, 1, '2024-04-12', 1, 1, '422352', false), - (76410, '2024-05-10 23:11:51.188728+00', '0x61b41947d9105c174dad4548537c58a2cef6c8fa', 0, 0, 1, '2024-04-17', 2, 0, '403450', false), - (76053, '2024-05-10 23:11:50.105297+00', '0x98566fb212871c7b51a09b30d7320e564b9d0504', 0, 0, 1, '2024-04-03', 9, 42, '296420', false), - (77146, '2024-05-10 23:11:53.171439+00', '0xfd83ec36e824631d186701907209bac485ea5bd9', 0, 0, 1, '2024-04-11', 2, 4, '14467', false), - (76975, '2024-05-10 23:11:52.620874+00', '0x9b8906e2bb3abe81a93ea59c8b1bf6106d81bd9f', 0, 0, 1, '2024-04-14', 1, 0, '429792', false), - (77395, '2024-05-10 23:11:53.85517+00', '0x04c4e054f7116e55647fbef26e6743ed437a6bae', 0, 0, 1, '2024-04-09', 1, 1, '434340', false), - (77436, '2024-05-10 23:11:53.972351+00', '0x0e45464d8300000427ccbaa7cefd91bfcba48bd8', 0, 0, 1, '2024-04-09', 1, 3, '421047', false), - (77379, '2024-05-10 23:11:53.827627+00', '0x07a235857ae8845831a25c73a8ba56c63c859a8f', 0, 0, 1, '2024-04-07', 2, 0, '434407', false), - (74290, '2024-05-10 23:11:45.228393+00', '0xe8c583ecaa8aaac7b1243bb9c45bebd38457e682', 0, 0, 1, '2024-05-07', 16, 42, '387117', false), - (74396, '2024-05-10 23:11:45.502633+00', '0x3b073a8d0ce0589eef40dd5015a27526260b2c38', 0, 0, 1, '2024-04-22', 8, 35, '409059', false), - (77574, '2024-05-10 23:11:54.428077+00', '0xcdb39f4cca9edae727f12d7784bf84fe23dcd0d8', 0, 0, 1, '2024-04-07', 1, 0, '414003', false), - (77585, '2024-05-10 23:11:54.441017+00', '0xd9459ceb0aeda7082fe87a9f7228c679df858d44', 0, 0, 1, '2024-04-07', 1, 0, '439990', false), - (81895, '2024-05-10 23:12:07.152616+00', '0xbee8a2acaa1d98338b935fd7e090267d5b26a9e9', 0, 0, 1, '2024-05-07', 22, 59, '516732', false), - (97982, '2024-05-17 06:00:47.091465+00', '0x4a91f2bf3ade1965f979779d78074ab4f6f93795', 101, 101, 1, '2024-05-16', 1, 1, '194372', true), - (98031, '2024-05-17 06:00:47.480064+00', '0x10bff2cd55385d82de3679ae0b0c7858fbe677d6', 142, 142, 1, '2024-05-16', 1, 3, '972', true), - (73851, '2024-05-10 23:11:43.123653+00', '0xb0325f29c243cb8fd68ae5b872a54ddf3eb71b36', 0, 0, 1, '2024-05-08', 36, 158, '425372', false), - (73919, '2024-05-10 23:11:43.536365+00', '0xe9bb1532e4ded8f5ba5f72892af4e9f96cde4a66', 0, 0, 1, '2024-05-05', 22, 53, '291712', false), - (88992, '2024-05-10 23:12:28.339291+00', '0x712a03ae051841074bd3bbd906b736548569ff6f', 0, 0, 1, '2024-03-15', 6, 11, '210201', false), - (81506, '2024-05-10 23:12:06.183974+00', '0x6195651571097bb7cb2c8f0846e0d91b0c2505f2', 0, 0, 1, '2024-05-06', 66, 155, '506199', false), - (96376, '2024-05-15 06:00:32.501436+00', '0x2497c55dbf6a3c5ee781c8024b92fd5dc386d8b1', 0, 0, 1, '2024-05-15', 3, 1, '324567', false), - (82033, '2024-05-10 23:12:07.761036+00', '0x10e375c4ec42de971ddea5ca055d04ca61250afc', 0, 0, 1, '2024-05-07', 20, 82, '400888', false), - (97481, '2024-05-16 06:00:38.484025+00', '0x252097d2491d7dac679a1826886426cd73edaf35', 0, 0, 1, '2024-05-15', 1, 5, '358490', false), - (73905, '2024-05-10 23:11:43.399798+00', '0x9f60245b7d325fadca019cde324bf8d1d74c77ee', 0, 0, 1, '2024-05-05', 6, 29, '423559', false), - (74508, '2024-05-10 23:11:45.771018+00', '0x9746c2bbbbc13cf92d78e7818e9ffa4fef1f1e6e', 0, 0, 1, '2024-04-24', 6, 8, '467826', false), - (77991, '2024-05-10 23:11:55.774951+00', '0xf809d45f026c2f00f083440fb06ff21ebbd9c1ad', 0, 0, 1, '2024-03-31', 3, 0, '414756', false), - (78090, '2024-05-10 23:11:56.018039+00', '0x0cb9d25ddd81f8ba363465d30213d027fa68fff9', 0, 0, 1, '2024-02-22', 8, 2, '362407', false), - (78748, '2024-05-10 23:11:57.797793+00', '0x137effbb0b405cd6a3c549e53dd6244a439c514d', 0, 0, 1, '2024-03-06', 1, 0, '13729', false), - (78770, '2024-05-10 23:11:57.908862+00', '0x86a12c61ce635823487903c302a3dc2824d1b0bf', 0, 0, 1, '2024-03-05', 1, 1, '277426', false), - (78232, '2024-05-10 23:11:56.436739+00', '0x5f7134664844b4aae298fbfa3aecb2e2aa9c99c1', 0, 0, 1, '2024-03-04', 2, 2, '271815', false), - (73877, '2024-05-10 23:11:43.33397+00', '0x0b8b3648060b97447c023e9ee227bb92e35b30fe', 0, 0, 1, '2023-08-10', 6, 2, '17108', false), - (84411, '2024-05-10 23:12:15.040496+00', '0xf91dad612d3366d7cd57f970617a2dc0c07db830', 0, 0, 1, '2024-05-06', 3, 1, '460454', false), - (85698, '2024-05-10 23:12:19.101699+00', '0x804100c300269fde9b93862b089e3db9add7a69a', 0, 0, 1, '2024-05-06', 1, 5, '502476', false), - (83052, '2024-05-10 23:12:10.791952+00', '0x0ae3d4c995ba20e6a26176dae9c483070bc8296c', 0, 0, 1, '2024-05-08', 2, 0, '417075', false), - (73935, '2024-05-10 23:11:43.559029+00', '0xcce3379afb42f8b3e34c1cab29e1a19078fd2c22', 0, 0, 1, '2024-05-10', 5, 25, '383106', false), - (82079, '2024-05-10 23:12:07.937933+00', '0x35b798337d68ed8b86e7872975fe9f2a94cbdac9', 0, 0, 1, '2024-05-06', 18, 28, '347212', false), - (81888, '2024-05-10 23:12:07.168039+00', '0x4f559820d481d75d9d0ad44046ca45a0b481fbc0', 0, 0, 1, '2024-05-07', 9, 45, '416138', false), - (81554, '2024-05-10 23:12:06.330116+00', '0xaf3a9a16619122366e496fb69673ec56b8f0baf7', 0, 0, 1, '2024-05-07', 12, 49, '503907', false), - (94298, '2024-05-12 06:00:31.987874+00', '0x4ea764025f0e91240600725f16e8eae83d911ad5', 0, 0, 1, '2024-05-11', 3, 15, '378500', false), - (94872, '2024-05-12 06:00:36.015959+00', '0x30cd5b015057fda66a903d2198de8b8b622faa9d', 0, 0, 1, '2024-05-11', 2, 10, '382889', false), - (73911, '2024-05-10 23:11:43.410261+00', '0xbfd6e2e66a42f9f768ca4b865ec00bab5d5fa90b', 0, 0, 1, '2024-05-04', 4, 16, '498997', false), - (96447, '2024-05-15 06:00:33.094772+00', '0x506eda046dea4175e3445ee66333226d81ad811e', 0, 0, 1, '2024-05-14', 1, 0, '292208', false), - (75914, '2024-05-10 23:11:49.627816+00', '0x77e8001a83e5175e36b0d80c11fe8b5a65ab5ca3', 0, 0, 1, '2024-04-16', 4, 5, '476825', false), - (97600, '2024-05-17 06:00:44.397283+00', '0x02d968c82b76dbaa6e017062625a1cddbeb2a289', 0, 0, 1, '2024-05-16', 1, 0, '379521', false), - (96382, '2024-05-15 06:00:32.533016+00', '0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5', 1046, 46, 1, '2024-05-15', 3, 15, '17507', true), - (74070, '2024-05-10 23:11:44.580924+00', '0xaf3d94f1e8a891804a51463039dc5d853caf62f7', 0, 0, 1, '2024-05-06', 10, 13, '324411', false), - (74820, '2024-05-10 23:11:46.951437+00', '0xddcffade622fa032021f823be481636f2e56ff38', 0, 0, 1, '2024-05-06', 19, 42, '406564', false), - (95128, '2024-05-13 06:00:32.301513+00', '0x6c926a8972ec6381d39b70eba165b0ababc07308', 0, 0, 1, '2024-05-12', 2, 10, '469424', false), - (81790, '2024-05-10 23:12:06.909399+00', '0x606287e4fbf1d4fda67a3a0a6f822ee331c2fd75', 0, 0, 1, '2024-05-05', 13, 20, '389058', false), - (95342, '2024-05-13 06:00:34.920226+00', '0x9581c6a4afc5b47a8c1d00cbcfebe19e02fd4cd7', 0, 0, 1, '2024-05-12', 5, 25, '386081', false), - (83711, '2024-05-10 23:12:13.0222+00', '0x56e3d17b082db2529291d0fb2986cad87878de86', 0, 0, 1, '2024-05-06', 7, 16, '449176', false), - (96594, '2024-05-15 06:00:34.445542+00', '0x827605d4bdf392696ff1e6f9ac1b3c3767e3a414', 0, 0, 1, '2024-05-15', 1, 0, '379787', false), - (96723, '2024-05-15 06:00:35.368015+00', '0x90b53660bd66d2b88587b0785bb43d032d917ccf', 0, 0, 1, '2024-05-14', 7, 35, '499008', false), - (97714, '2024-05-17 06:00:45.367021+00', '0x37975bf16ab5e1b669603b2120f6e62e7c6120be', 0, 0, 1, '2024-05-17', 2, 5, '222864', false), - (75141, '2024-05-10 23:11:47.700282+00', '0x5a4de28b93deeb48f682336f5a91cc43b71964b2', 1808, 1808, 1, '2024-05-05', 2, 2, '9192', true), - (73968, '2024-05-10 23:11:44.237915+00', '0x7a0d794c290fb18404a0197525a4392b45a44607', 0, 0, 1, '2024-05-05', 16, 80, '500276', false), - (76484, '2024-05-10 23:11:51.419625+00', '0x25fec6e8875120dd496e05cb474373be35f2432b', 0, 0, 1, '2024-04-16', 11, 9, '483444', false), - (94854, '2024-05-12 06:00:35.993718+00', '0x4e2e641777e96b1017eb590680a6f13699d563db', 0, 0, 1, '2024-05-11', 2, 10, '517340', false), - (97775, '2024-05-17 06:00:45.734845+00', '0x82be117fe80dbc9ca0215bcb2f47b5d91717cb69', 0, 0, 1, '2024-05-16', 1, 5, '434807', false), - (94105, '2024-05-11 06:00:26.682255+00', '0x1cd08a953c687fbd3f3db7c49011acedb857c737', 0, 0, 1, '2024-05-11', 13, 56, '452668', false), - (97862, '2024-05-17 06:00:46.388208+00', '0xf413d05a69570e94a482268a6beb7fff243449a7', 0, 0, 1, '2024-05-16', 1, 5, '378546', false), - (88534, '2024-05-10 23:12:27.071798+00', '0x5247299421a3ff724c41582e5a44c6551d135fd3', 0, 0, 1, '2024-02-23', 53, 85, '347582', false), - (96489, '2024-05-15 06:00:33.545676+00', '0x52db949166fcc6e06d9d4fa808bc1a571d9ac7d7', 0, 0, 1, '2024-05-14', 1, 0, '459466', false), - (77725, '2024-05-10 23:11:54.803594+00', '0x8458f55a9d529fc8eaf055df3b6b91eb044986f2', 0, 0, 1, '2024-04-05', 1, 5, '269958', false), - (78109, '2024-05-10 23:11:56.039097+00', '0x4991823598287059e469cd7523538b204760280e', 0, 0, 1, '2024-03-25', 2, 1, '389357', false), - (82320, '2024-05-10 23:12:08.568+00', '0xf82bf1f8db920890de2d59e2c35bb5d2f10d4b22', 0, 0, 1, '2024-05-09', 1, 4, '493123', false), - (83125, '2024-05-10 23:12:10.969915+00', '0x0670303c741a704de90c4264ad6d775116a88a1b', 0, 0, 1, '2024-05-06', 7, 35, '484256', false), - (84289, '2024-05-10 23:12:14.522481+00', '0xe2d7b4247718a7bddbe5cc7d8853b37a4f46abaf', 0, 0, 1, '2024-05-07', 1, 2, '350592', false), - (78432, '2024-05-10 23:11:57.019196+00', '0x42e3b2b9969308c2fa6c4b71f6a13762e3136a1a', 0, 0, 1, '2024-03-19', 1, 0, '5842', false), - (78133, '2024-05-10 23:11:56.132006+00', '0xae163919b6a6677b1d82c06beabbb6876108bdaf', 0, 0, 1, '2024-03-18', 2, 0, '378716', false), - (77930, '2024-05-10 23:11:55.506791+00', '0x85a5c18b9ef09c5796a6ea68ca1322e145bbafa4', 0, 0, 1, '2024-02-23', 3, 0, '222498', false), - (78445, '2024-05-10 23:11:57.034396+00', '0xa1afd8df52687a1362ec606428aee8d97bc3269b', 0, 0, 1, '2024-01-21', 5, 6, '14359', false), - (77412, '2024-05-10 23:11:53.951382+00', '0xec2dd18e6d6d814fbb3e7a48ced0e3352344e5a0', 0, 0, 1, '2024-04-09', 3, 2, '453912', false), - (75553, '2024-05-10 23:11:48.75445+00', '0x6d9e53347296b19450aa85378cf6acee137a25be', 0, 0, 1, '2024-04-30', 1, 3, '431629', false), - (76505, '2024-05-10 23:11:51.443724+00', '0xf04fd8595b52f530a775c5aefca7a7c7afd00aa8', 0, 0, 1, '2024-04-09', 2, 2, '329898', false), - (75896, '2024-05-10 23:11:49.610062+00', '0xa6e5411a621a00d5195bb55d736505f4a5e7c289', 0, 0, 1, '2024-04-25', 1, 5, '379089', false), - (77438, '2024-05-10 23:11:53.976145+00', '0x2d62b7b4ab2aea16f53f78af3544088300040126', 0, 0, 1, '2024-04-09', 1, 1, '15164', false), - (75966, '2024-05-10 23:11:49.790763+00', '0xc181ff30f22f85bc42c4287be492d69c184c3867', 0, 0, 1, '2024-04-25', 1, 1, '447894', false), - (76231, '2024-05-10 23:11:50.681435+00', '0xbd1adf73228fca70f4430894cdf117644d0d0dc9', 0, 0, 1, '2024-04-22', 1, 0, '237558', false), - (75673, '2024-05-10 23:11:49.015492+00', '0x4dcaa43263f903befbdb2f7d1a50dd0aebebd8e0', 0, 0, 1, '2024-04-21', 2, 0, '415947', false), - (76677, '2024-05-10 23:11:51.829928+00', '0x92c03c0788d4eb4164620fd51624d0d42b1ecbd7', 0, 0, 1, '2024-03-15', 5, 1, '385569', false), - (77761, '2024-05-10 23:11:55.012811+00', '0xef6be5381dce24626dfa59a370f5658270307dda', 0, 0, 1, '2024-04-04', 1, 1, '362935', false), - (75883, '2024-05-10 23:11:49.523656+00', '0xbd8468446e7122686b16e185e68f764b66413493', 0, 0, 1, '2024-04-18', 2, 10, '475653', false), - (76696, '2024-05-10 23:11:51.912843+00', '0x6e2da038f09cde468ebe8cf3211149ff80cc34c9', 0, 0, 1, '2024-04-17', 1, 0, '246572', false), - (77802, '2024-05-10 23:11:55.169082+00', '0x1ce217c1fa87fcccfcea7c640974f19fac989e40', 0, 0, 1, '2024-04-03', 1, 0, '438545', false), - (76737, '2024-05-10 23:11:52.036887+00', '0x173a55e664c25986f7a2495998751a255793d1ab', 0, 0, 1, '2024-04-16', 1, 4, '409416', false), - (75332, '2024-05-10 23:11:48.166206+00', '0x62239c6bd68fc55478c2fa0e1edd626e5810ca07', 0, 0, 1, '2024-04-16', 7, 0, '379577', false), - (76128, '2024-05-10 23:11:50.346388+00', '0x351201a7d6bbd30a89bd09d681d1ddb657ea4a02', 0, 0, 1, '2024-04-06', 16, 32, '417034', false), - (75570, '2024-05-10 23:11:48.766202+00', '0x7d18c8fee53b394297f4545261343bd5eb847b88', 0, 0, 1, '2024-03-22', 5, 15, '229878', false), - (75315, '2024-05-10 23:11:48.146993+00', '0x5438a58fccf464be36917947b552a6cf9d9b242b', 0, 0, 1, '2024-04-29', 4, 8, '504872', false), - (75431, '2024-05-10 23:11:48.404525+00', '0xb17b3e7910af9d232cb683c083ef73c34521fc8a', 0, 0, 1, '2024-05-02', 2, 0, '211635', false), - (77981, '2024-05-10 23:11:55.690652+00', '0xbdbe82206e469882e312939de961778a4b6ab3c6', 0, 0, 1, '2024-04-01', 1, 0, '428296', false), - (74227, '2024-05-10 23:11:45.060988+00', '0x95cb62d2c2da19612c3a287637a33bed083b3743', 0, 0, 1, '2024-03-11', 10, 34, '343808', false), - (97591, '2024-05-17 06:00:44.379332+00', '0x6e48db5a7069c6d8e5ad0679651440f885b4c17d', 0, 0, 1, '2024-05-16', 1, 0, '226531', false), - (81719, '2024-05-10 23:12:06.752699+00', '0xac77727bcaf7fd536279021126ed43995752d325', 0, 0, 1, '2024-05-10', 7, 35, '387383', false), - (81474, '2024-05-10 23:12:06.074651+00', '0x5d388e1a6823edffca9255beb15bd7a7b5515a3a', 0, 0, 1, '2024-05-07', 28, 99, '416834', false), - (98018, '2024-05-17 06:00:47.356853+00', '0x5d690b81ca7efbe1ef7fafc8a9f31bbf05c62808', 0, 0, 1, '2024-05-16', 1, 5, '306729', false), - (83491, '2024-05-10 23:12:12.213793+00', '0x2dbb3d82064faaf500cf74dc92cafb91e493d390', 0, 0, 1, '2024-05-07', 4, 16, '437274', false), - (93742, '2024-05-10 23:12:42.116887+00', '0x529f786b6cc026ce88ee866a0de859283c216e50', 0, 0, 1, '2023-10-17', 1, 5, '188303', false), - (92991, '2024-05-10 23:12:39.907634+00', '0x32dff34396f4b98b497b7a9df517ac5a879ce3d8', 0, 0, 1, '2024-02-06', 1, 2, '270414', false), - (93030, '2024-05-10 23:12:40.035804+00', '0x4fb9748746ffc5716f33b0a62f32b9d5009264d8', 0, 0, 1, '2024-02-06', 1, 1, '251607', false), - (93053, '2024-05-10 23:12:40.054751+00', '0x13ecee9b4215b23f705ae48cbc3fddd4988942d8', 0, 0, 1, '2024-02-06', 1, 0, '249435', false), - (73882, '2024-05-10 23:11:43.343265+00', '0xf36e7a3fa8d4e71563253d11e1d0fbaf3ab12c57', 0, 0, 1, '2024-05-08', 5, 20, '273286', false), - (83294, '2024-05-10 23:12:11.564687+00', '0x89579b817f6bf1e05a8229b3aa1e7ab58dc8d05c', 0, 0, 1, '2024-05-05', 7, 35, '425915', false), - (74013, '2024-05-10 23:11:44.318573+00', '0xd7bc0ed023e71ffc6426a2be6b89ba4ff9e33478', 0, 0, 1, '2024-05-07', 3, 14, '305835', false), - (94153, '2024-05-12 06:00:30.573862+00', '0x553ceef07c2d49d0fef26d10b5c55b444440fac9', 0, 0, 1, '2024-05-12', 3, 9, '378525', false), - (78544, '2024-05-10 23:11:57.296721+00', '0x76cf6f0663bb530c7573b1cd67c6688addd94bbf', 0, 0, 1, '2024-02-06', 2, 4, '18223', false), - (77444, '2024-05-10 23:11:53.979301+00', '0x7237462736c21cc333977c20a93bdf32511ff086', 0, 0, 1, '2023-07-12', 2, 6, '12966', false), - (77520, '2024-05-10 23:11:54.303157+00', '0x9240427c5b286e47728b80fb746f1c8b564d5567', 0, 0, 1, '2024-04-07', 1, 3, '367938', false), - (77644, '2024-05-10 23:11:54.5881+00', '0x5dcbc73493a55024d951e887b4e3c7dd79c1e457', 0, 0, 1, '2024-04-06', 1, 1, '369357', false), - (89833, '2024-05-10 23:12:31.007163+00', '0x40a7b8b49dd21e96707d6d38b1f60447afcff6c3', 0, 0, 1, '2023-07-21', 1, 2, '9859', false), - (91357, '2024-05-10 23:12:35.327191+00', '0x9e37d8472201c997995ce854120a438eef6b70b0', 0, 0, 1, '2024-04-03', 2, 2, '415830', false), - (91443, '2024-05-10 23:12:35.65654+00', '0x8f8202209fcc3ef9cf697ddd0b8fa06b06d844ea', 0, 0, 1, '2024-04-01', 1, 1, '245038', false), - (91053, '2024-05-10 23:12:34.562614+00', '0x9cd6ecca20919c1cdec545cc4521e3b8b23c8783', 0, 0, 1, '2024-03-31', 2, 3, '336526', false), - (84804, '2024-05-10 23:12:16.30702+00', '0x919c397950ce2edacc0cd5293e1b9b753e644265', 0, 0, 1, '2024-05-06', 20, 26, '475277', false), - (88607, '2024-05-10 23:12:27.226168+00', '0xb107fb1a8504d6a2b6fc2385dd701eee7d56c3fe', 0, 0, 1, '2024-04-28', 1, 0, '434206', false), - (88590, '2024-05-10 23:12:27.212026+00', '0xd3c85ff58467a970fc3a3b9996343f3f4ddad4c5', 0, 0, 1, '2024-04-23', 2, 1, '399523', false), - (88657, '2024-05-10 23:12:27.360942+00', '0xf460c596f231b928e67be3cf5c6d06795346d047', 0, 0, 1, '2024-04-23', 1, 1, '473850', false), - (73879, '2024-05-10 23:11:43.3408+00', '0xfd5f3bcd5ff915e140ea7dea7f207bb398dbc9ed', 0, 0, 1, '2024-05-06', 9, 40, '499287', false), - (73774, '2024-05-10 23:11:42.719502+00', '0x97f2f11fc9ee30e9fa92a9ebe1547e25f18cce34', 0, 0, 1, '2024-04-27', 7, 4, '437630', false), - (73838, '2024-05-10 23:11:43.088845+00', '0x8b67305dcd897d380498bf38c9a1992bfafab763', 0, 0, 1, '2024-05-05', 14, 39, '343971', false), - (73918, '2024-05-10 23:11:43.535262+00', '0xb0d64858e585e9569024209491361382dea8b5f6', 0, 0, 1, '2024-05-09', 7, 21, '288788', false), - (82114, '2024-05-10 23:12:08.050781+00', '0x5a7ca006d52ec8abe6136a58d7b016d4982abf1a', 0, 0, 1, '2024-05-06', 11, 55, '406956', false), - (81799, '2024-05-10 23:12:06.981953+00', '0x9607b528a8c25052d9d11573886ab5077f0a78d8', 0, 0, 1, '2024-05-08', 6, 30, '386002', false), - (87102, '2024-05-10 23:12:23.291904+00', '0xd2a6877f0caffcc0f1bf9a98b3c8923bc05cbe0e', 0, 0, 1, '2024-05-05', 2, 3, '406532', false), - (83488, '2024-05-10 23:12:12.205698+00', '0x3e0d2a8c7eb98a1c8ff3e2a5b4a6e4c0f5363bd5', 0, 0, 1, '2024-05-05', 5, 25, '497740', false), - (87695, '2024-05-10 23:12:24.895557+00', '0x253cde1f264329e997fceb4d577d1f0c1d2295c8', 0, 0, 1, '2024-05-05', 1, 5, '499521', false), - (88651, '2024-05-10 23:12:27.354381+00', '0x794ded5a4ef88cb3a9d296c48ab0df9e4b2d8bef', 0, 0, 1, '2024-04-03', 33, 9, '415714', false), - (85306, '2024-05-10 23:12:17.878939+00', '0x0d6b62cca88a61a2e1f092c243ed01570ab2c08a', 0, 0, 1, '2024-05-06', 2, 10, '421703', false), - (83274, '2024-05-10 23:12:11.544544+00', '0x05734c1234b3085bf8ef4f39cce8151d275a9e40', 0, 0, 1, '2024-05-06', 13, 65, '428956', false), - (90149, '2024-05-10 23:12:32.048541+00', '0xa6d713d765fc5405869e040db1b1cd83208fc30b', 0, 0, 1, '2024-03-04', 20, 75, '379522', false), - (83665, '2024-05-10 23:12:12.735177+00', '0xd3d856758267dbefb2648278d29c1c4526f3431f', 0, 0, 1, '2024-05-06', 6, 25, '417261', false), - (83416, '2024-05-10 23:12:12.032431+00', '0x1865039a5490cb55f78776de61e186a9f12aff46', 0, 0, 1, '2024-05-07', 3, 15, '497494', false), - (92588, '2024-05-10 23:12:38.780751+00', '0x9fcb9053cc81848698405a4e4f679395ada4d1c2', 0, 0, 1, '2024-02-07', 1, 0, '195882', false), - (91550, '2024-05-10 23:12:35.933475+00', '0x56154612bcaa7ad754ab2e342570d5a0fa8333ce', 0, 0, 1, '2024-03-31', 1, 0, '403388', false), - (93097, '2024-05-10 23:12:40.179332+00', '0xcc1d22b6fc3040dba9a7d3f98f14245726042c5f', 0, 0, 1, '2024-02-06', 1, 1, '216378', false), - (93195, '2024-05-10 23:12:40.454102+00', '0xc4ce9988708f1f447609b38560e8afcb540b5f56', 0, 0, 1, '2024-02-06', 1, 0, '306438', false), - (89970, '2024-05-10 23:12:31.538722+00', '0xd0514e154c4f22af658a57713aa4e62e03725af1', 0, 0, 1, '2024-05-09', 1, 0, '353887', false), - (84222, '2024-05-10 23:12:14.379143+00', '0x2592e904f21ce308249a8ffb25e82e35c69de163', 0, 0, 1, '2024-02-24', 4, 4, '323324', false), - (73800, '2024-05-10 23:11:42.93632+00', '0x4b764659c758928aa6b8b09e703618d46d2136b5', 0, 0, 1, '2024-04-15', 26, 82, '316982', false), - (74869, '2024-05-10 23:11:47.055587+00', '0x5849734d2e3ada23b64e12311adfa6bcd6fe687c', 0, 0, 1, '2024-03-10', 143, 184, '386139', false), - (81820, '2024-05-10 23:12:07.000079+00', '0x1f4c28fd72aa25437e9ea65a9b2c6446550059e2', 0, 0, 1, '2024-05-05', 15, 64, '501931', false), - (97865, '2024-05-17 06:00:46.392531+00', '0x5162c27cf9309e14111d52793422b6bcb6ae031e', 0, 0, 1, '2024-05-16', 1, 1, '435978', false), - (94090, '2024-05-11 06:00:26.651648+00', '0x11cbf26d192d5cd5d5c8fce9ccd6e399cf0e8e80', 0, 0, 1, '2024-05-11', 19, 87, '452576', false), - (73861, '2024-05-10 23:11:43.150555+00', '0x745d9f9c9f01c7d8afb63e81d16c60f2fb74a1e0', 79770, 77770, 1, '2024-02-25', 108, 401, '291942', true), - (97954, '2024-05-17 06:00:46.874668+00', '0x36ec8089e56e7a5cb090ff21d9872c6d589238c0', 0, 0, 1, '2024-05-16', 1, 5, '511305', false), - (73785, '2024-05-10 23:11:42.866453+00', '0x907fc75de849646eb8faba840219bd2953902782', 10170, 10170, 1, '2024-05-03', 16, 53, '387246', true), - (77846, '2024-05-10 23:11:55.347464+00', '0x87bf447ac29ba9498e5c0859513c39a0931f303a', 1712, 1712, 1, '2024-04-03', 1, 1, '14831', true), - (75366, '2024-05-10 23:11:48.252983+00', '0x9c928c1b01339ebfaf45d400f793989b60b6331e', 27011, 27011, 1, '2023-07-23', 21, 67, '5448', true), - (74603, '2024-05-10 23:11:46.037946+00', '0xa2fe1d4145443ebc027f15c9f7ca27f7e9fd5f33', 62341, 62341, 1, '2023-05-28', 57, 138, '4407', true), - (76961, '2024-05-10 23:11:52.550185+00', '0x4ea2a2b47286d31302dc21faacbac97f98a79dd9', 1233, 1233, 1, '2024-04-15', 1, 0, '434196', true), - (76712, '2024-05-10 23:11:51.934232+00', '0x1f0b9135a4cd2169177cf12341ebe002ca94788f', 3217, 3217, 1, '2024-02-21', 2, 2, '211644', true), - (75937, '2024-05-10 23:11:49.648957+00', '0x98f5f9d4252118398ff1db3c02b1c0586fb141b7', 5743, 5743, 1, '2024-04-15', 6, 5, '399364', true), - (76296, '2024-05-10 23:11:50.943733+00', '0x60da6adb09e45f24d694d560b04e194184519b80', 1476, 1476, 1, '2024-04-21', 1, 1, '284063', true), - (74524, '2024-05-10 23:11:45.870293+00', '0xdf58c34414b0812b38c362e8423380a0f27eda8c', 8378, 8378, 1, '2024-02-14', 6, 21, '326765', true), - (77029, '2024-05-10 23:11:52.895697+00', '0x822ec855cc9f41b592622108e6f3565e976430c6', 16005, 16005, 1, '2023-10-30', 12, 32, '7637', true), - (76023, '2024-05-10 23:11:49.910746+00', '0x09ca6926f0a1fa30ddc04710db2d89ec0d73b608', 2697, 2697, 1, '2024-04-19', 2, 4, '209951', true), - (76530, '2024-05-10 23:11:51.526237+00', '0xf32c74ca26465dce91df6eed7021d6dc110e3ba5', 2411, 2411, 1, '2024-04-19', 2, 2, '271142', true), - (75869, '2024-05-10 23:11:49.495473+00', '0x0a559aed5ca0ca4f07e2bfea109518800a8bd12c', 2119, 2119, 1, '2024-04-19', 2, 0, '9677', true), - (75166, '2024-05-10 23:11:47.794422+00', '0x8270e5cccb7e4cd47a49ce29ade9d39a5960d408', 2656, 2656, 1, '2024-04-15', 2, 3, '422412', true), - (76865, '2024-05-10 23:11:52.316139+00', '0x6ee31f6954bec68f5d0b72b9532b63d315c52014', 2183, 2183, 1, '2024-04-16', 1, 3, '16975', true), - (75502, '2024-05-10 23:11:48.60941+00', '0x503f9fe2429489bfe0ce730ea2b221f470f4936d', 2910, 2910, 1, '2024-02-09', 2, 0, '7559', true), - (75976, '2024-05-10 23:11:49.803151+00', '0xad73eafcac4f4c6755dfc61770875fb8b6bc8a25', 8537, 8537, 1, '2023-12-13', 6, 8, '6023', true), - (77538, '2024-05-10 23:11:54.326908+00', '0x80e451777dcd4e4a589a038a61b1dca72d718045', 3138, 3138, 1, '2024-04-07', 2, 5, '11761', true), - (77417, '2024-05-10 23:11:53.952469+00', '0x62d36767473db61a39d7e5e71fa378cfa3317362', 4976, 4976, 1, '2024-03-28', 4, 7, '297095', true), - (77721, '2024-05-10 23:11:54.794727+00', '0x89213f11e4a356d450ab89a876f4c1cb5b8996da', 8086, 8086, 1, '2024-02-15', 6, 16, '922', true), - (79791, '2024-05-10 23:12:00.943549+00', '0x953448062cbc361c4a49144bd1d43a294e4b61eb', 2081, 2081, 1, '2024-02-07', 1, 1, '6726', true), - (78534, '2024-05-10 23:11:57.284796+00', '0xdd99d97bff9b1064a0fa81840725a3ae3c3d7525', 1483, 1483, 1, '2024-03-13', 1, 0, '6788', true), - (77792, '2024-05-10 23:11:55.049919+00', '0xc8d7f5e1cfee2deac53eafa5e7e95be968b1a629', 13247, 13247, 1, '2024-02-03', 11, 34, '11467', true), - (78048, '2024-05-10 23:11:55.894208+00', '0x399e62557a267b0abd6e99bf22e5af5a21ead53b', 4792, 4792, 1, '2024-02-01', 3, 5, '242052', true), - (77760, '2024-05-10 23:11:55.014651+00', '0x78b037b39704e88a82dd23cfbe1f57f6aef8ebc5', 9980, 9980, 1, '2023-10-30', 7, 7, '21168', true), - (97966, '2024-05-17 06:00:47.072745+00', '0xc39394994fdba91b354ac3534630b4dcb7a85977', 0, 0, 1, '2024-05-16', 2, 10, '438346', false), - (97988, '2024-05-17 06:00:47.098074+00', '0x86cdd62fb34b7e37e4fe33a08b319abeba2741d7', 0, 0, 1, '2024-05-17', 1, 0, '540827', false), - (77443, '2024-05-10 23:11:53.975455+00', '0x9c99bf82fc38713c471d4415f66c8336d361501a', 5576, 5576, 1, '2024-02-21', 4, 6, '7759', true), - (73959, '2024-05-10 23:11:44.152243+00', '0x4af749e6bec96913a968fc76e3de2fd8d95c6d06', 895, 895, 1, '2024-05-10', 1, 1, '8248', true), - (97633, '2024-05-17 06:00:44.749469+00', '0xb732f1d01f48e67b4364f4c9d89678cf7ceb6b0a', 0, 0, 1, '2024-05-16', 1, 1, '354510', false), - (81450, '2024-05-10 23:12:06.038276+00', '0x3ae54db09157ca5bd8b13c9bc530e86c2c21806b', 0, 0, 1, '2024-05-07', 15, 70, '427595', false), - (81527, '2024-05-10 23:12:06.202519+00', '0xe7ebfc2b900b5faa879f334cab748f85cc1904d9', 0, 0, 1, '2024-04-30', 10, 46, '364763', false), - (73860, '2024-05-10 23:11:43.148118+00', '0x69505e7ca74ed4ae1a1dfc521076d14e4287333e', 0, 0, 1, '2024-05-09', 43, 45, '524773', false), - (97968, '2024-05-17 06:00:47.074969+00', '0xb7696dca94a198b4e3a10fb37c37101f02d42613', 0, 0, 1, '2024-05-17', 1, 0, '491122', false), - (90516, '2024-05-10 23:12:33.070189+00', '0xc627fd4bec977b2845057e64153bbdbc88ef9333', 0, 0, 1, '2024-02-05', 26, 37, '284991', false), - (87202, '2024-05-10 23:12:23.545213+00', '0x9d17e6017d50a82bd6fbd6b4c4d634fa16477987', 0, 0, 1, '2024-05-05', 2, 9, '323201', false), - (87990, '2024-05-10 23:12:25.643311+00', '0x011ccc1f1f25d2ed4d60506eed621ddbc4318e1a', 0, 0, 1, '2024-05-05', 1, 5, '384553', false), - (88746, '2024-05-10 23:12:27.579891+00', '0xb6efe8d82450a56270a4fc18093d4a5aa8e502db', 0, 0, 1, '2024-04-04', 2, 10, '420817', false), - (90920, '2024-05-10 23:12:34.149655+00', '0x58ef110454a2fda0677a52b7da6463b940e53585', 0, 0, 1, '2024-04-16', 1, 2, '269651', false), - (90223, '2024-05-10 23:12:32.280587+00', '0x5dfa7f70094ca517681c6f2b8c20108ed56d2a6c', 0, 0, 1, '2024-05-06', 1, 5, '194220', false), - (91622, '2024-05-10 23:12:36.165198+00', '0xf80f32cda81817869be9f5f8169db05332d02b05', 0, 0, 1, '2024-03-27', 1, 0, '19316', false), - (91765, '2024-05-10 23:12:36.625632+00', '0xa623bc4550409c8af3773278604ff92940f50292', 0, 0, 1, '2024-01-25', 4, 13, '226651', false), - (90049, '2024-05-10 23:12:31.692778+00', '0x85399d0f51a78e7cc66330f3b9eb83c5e5762513', 0, 0, 1, '2024-03-13', 11, 12, '257278', false), - (92792, '2024-05-10 23:12:39.3671+00', '0x1a488a9c4282a05e6d7594e598fb879aa8013690', 0, 0, 1, '2024-02-06', 1, 1, '19016', false), - (91615, '2024-05-10 23:12:36.152786+00', '0xfc6384d477754adcb526543411fa01b10482b02a', 0, 0, 1, '2024-03-27', 1, 0, '7503', false), - (78784, '2024-05-10 23:11:57.934246+00', '0xe8f20c9e359b7711eaecede253692b2d25885d07', 0, 0, 1, '2024-03-04', 1, 4, '254426', false), - (90067, '2024-05-10 23:12:31.801777+00', '0x34e078afb3e89df97c1f7cee7b91b14a9236079d', 0, 0, 1, '2024-05-07', 1, 5, '352484', false), - (77046, '2024-05-10 23:11:52.921715+00', '0x5989e670c16a4d9fa4ec87d25e7a320d46b3e869', 0, 0, 1, '2024-04-07', 2, 5, '454745', false), - (76728, '2024-05-10 23:11:52.025835+00', '0x85b8c953146e0017dc071d8cba36faa8928a2b67', 0, 0, 1, '2024-04-17', 1, 2, '367555', false), - (74606, '2024-05-10 23:11:46.039734+00', '0xb77e10413f14f728bbdf5a577f80bc636b74cc13', 0, 0, 1, '2024-05-08', 1, 5, '454094', false), - (74163, '2024-05-10 23:11:44.808468+00', '0xd0a33930f865a9236a5963ad685114b181326f14', 0, 0, 1, '2024-05-09', 2, 0, '426233', false), - (73870, '2024-05-10 23:11:43.257523+00', '0x787383b8fe1f83480a48b76ed70b67cf888b9cb9', 0, 0, 1, '2024-05-06', 7, 28, '385616', false), - (73962, '2024-05-10 23:11:44.154377+00', '0xd252cce759e85d247e5151940791aa6081c9af75', 0, 0, 1, '2024-05-07', 16, 70, '402923', false), - (75218, '2024-05-10 23:11:47.914986+00', '0x04a93274045e96924b0a3e5d037a834b6e14012e', 0, 0, 1, '2024-05-04', 1, 3, '448074', false), - (74511, '2024-05-10 23:11:45.849258+00', '0x1471966abfe75cf87fdad8b76d657eab8400f0b0', 0, 0, 1, '2024-04-04', 3, 6, '247018', false), - (76113, '2024-05-10 23:11:50.324752+00', '0xc4a6bb8dc04da482c00df877042ff17aadf8fb38', 0, 0, 1, '2024-04-14', 2, 2, '420825', false), - (78879, '2024-05-10 23:11:58.198758+00', '0x8f98ccdbf03c46bf769fe993f6b284b2fcc45f6e', 0, 0, 1, '2024-02-07', 2, 0, '317943', false), - (84197, '2024-05-10 23:12:14.350099+00', '0x779cffde622a66dd704a9801111e28303b506eb4', 0, 0, 1, '2024-05-07', 2, 1, '503217', false), - (81704, '2024-05-10 23:12:06.738545+00', '0x52e5053323dbabd5738026c29d49fe6512dadc17', 0, 0, 1, '2024-05-07', 5, 25, '287958', false), - (81860, '2024-05-10 23:12:07.146913+00', '0x56ba7b51eae5121a787415e4b656d43354d6f850', 0, 0, 1, '2024-05-06', 7, 35, '488004', false), - (84226, '2024-05-10 23:12:14.3834+00', '0xcf24b90c52c14c52ff4fc3928f231f5898716dd4', 0, 0, 1, '2024-05-05', 2, 10, '391779', false), - (81698, '2024-05-10 23:12:06.673164+00', '0x3b5e16973408e1c60a049693589e62b101a19426', 0, 0, 1, '2024-05-07', 13, 40, '415663', false), - (81582, '2024-05-10 23:12:06.382453+00', '0x81f7a5244a87eac618cdf55751289cc47cd5c634', 0, 0, 1, '2024-05-07', 5, 7, '372218', false), - (73942, '2024-05-10 23:11:43.566808+00', '0x40984867824eb8693c1467f590de646c79a1a078', 0, 0, 1, '2024-05-10', 4, 20, '385215', false), - (81795, '2024-05-10 23:12:06.912657+00', '0x83b01c3a08efd868f67b5ab2c6a62fc998b8a9b8', 0, 0, 1, '2024-05-06', 25, 113, '459170', false), - (81594, '2024-05-10 23:12:06.394704+00', '0x470a712e7d5ab5f6e06714871bec5468b35863c7', 0, 0, 1, '2024-05-10', 1, 2, '365492', false), - (96478, '2024-05-15 06:00:33.526594+00', '0x7cd1fa8f4e22eb278c0dd2c46a653da2cb45bef8', 1242, 1242, 1, '2024-05-14', 2, 10, '310928', true), - (73984, '2024-05-10 23:11:44.261751+00', '0xcb7504c4cb986e80ab4983b44263381f21273482', 1703, 1703, 1, '2024-05-09', 1, 5, '13304', true), - (73874, '2024-05-10 23:11:43.330734+00', '0xf9b39beabc953787c4689836fe01f2bd0dd8d28f', 0, 0, 1, '2024-04-30', 21, 27, '458404', false), - (73936, '2024-05-10 23:11:43.558451+00', '0xae5076b2e3aff4c0cf47d31e85d7cad47a0d8588', 0, 0, 1, '2024-05-10', 6, 30, '396717', false), - (74124, '2024-05-10 23:11:44.750369+00', '0x2267fd18538550c9ae63fa849723de038cb97a65', 0, 0, 1, '2024-05-05', 16, 23, '398319', false), - (73837, '2024-05-10 23:11:43.07997+00', '0x4e935b522d7a4674a91945db6898cd5c313fa72a', 0, 0, 1, '2024-04-12', 5, 2, '247254', false), - (81982, '2024-05-10 23:12:07.617792+00', '0x48a7ca7f8a21e73228bc0f32d553580a38988990', 0, 0, 1, '2024-05-06', 29, 104, '509691', false), - (81629, '2024-05-10 23:12:06.525206+00', '0x5bd1e9bea6128076370bbeb9292a103f1c277533', 0, 0, 1, '2024-05-06', 25, 124, '401137', false), - (97918, '2024-05-17 06:00:46.74604+00', '0x626158f12ddd02f99abef1fc9e4ea1505fc9f3b6', 0, 0, 1, '2024-05-16', 1, 5, '396791', false), - (98010, '2024-05-17 06:00:47.34897+00', '0xbcdb165940a6d706e0d3da8c04db51cba1cfbcd0', 0, 0, 1, '2024-05-16', 1, 1, '379286', false), - (82198, '2024-05-10 23:12:08.259384+00', '0x532092cd2dfa460957a332b1a2f6ae9f3df2c142', 0, 0, 1, '2024-05-05', 6, 30, '290640', false), - (89427, '2024-05-10 23:12:29.842801+00', '0x1b73dc0bfa7e095a9bcb71bc6f3e95242c76c0e1', 0, 0, 1, '2024-02-06', 2, 0, '244545', false), - (74182, '2024-05-10 23:11:44.900108+00', '0x48a2f743483dac0bb8973a22a3a7e55ad35022f3', 0, 0, 1, '2024-04-25', 7, 3, '312211', false), - (73901, '2024-05-10 23:11:43.392872+00', '0x8ea51ab257bb66be7380bf98253ab1471bff736f', 0, 0, 1, '2024-05-05', 28, 94, '404871', false), - (77804, '2024-05-10 23:11:55.17664+00', '0x0298fdafcab4527580b18e8234b3a1bec96eba51', 0, 0, 1, '2024-04-03', 1, 1, '390311', false), - (77885, '2024-05-10 23:11:55.396522+00', '0x9b5e32f4f620187f6209e5342a3926e7c26bd172', 0, 0, 1, '2024-04-03', 1, 1, '237549', false), - (77923, '2024-05-10 23:11:55.495025+00', '0x1556b5cff14136d21c45a374e50fcf460ced59e2', 0, 0, 1, '2024-04-02', 1, 0, '14407', false), - (81512, '2024-05-10 23:12:06.190838+00', '0xee8001b4abdbe6f87d44efc941a202ffccbd0a60', 0, 0, 1, '2024-05-06', 16, 43, '500461', false), - (77965, '2024-05-10 23:11:55.672907+00', '0x10581fa7522f7fec08fc070fd77233aedb10a1eb', 0, 0, 1, '2024-04-01', 1, 0, '410629', false), - (89973, '2024-05-10 23:12:31.542716+00', '0x2759583d1a8ed59f695ac74020a7170f6c672087', 0, 0, 1, '2024-04-30', 36, 44, '318525', false), - (82644, '2024-05-10 23:12:09.517837+00', '0x296180138ffc4833ff6da617b51089d56ac45bf0', 0, 0, 1, '2024-05-05', 6, 26, '496665', false), - (87210, '2024-05-10 23:12:23.547442+00', '0x572974d21e48b0057b53c78579e1abcd3f2506f6', 0, 0, 1, '2024-05-05', 1, 4, '421467', false), - (82576, '2024-05-10 23:12:09.328443+00', '0x9b11c256cf485c0120e03cac843386dcc8979e9b', 0, 0, 1, '2024-05-08', 3, 15, '463303', false), - (95365, '2024-05-13 06:00:34.95294+00', '0x7615cbfe65b9fb4d483ea4bb334cdc9232734262', 0, 0, 1, '2024-05-12', 2, 5, '482236', false), - (82558, '2024-05-10 23:12:09.309911+00', '0x9d74fcc4ac1061b1b1ced8542332bba087cb550a', 0, 0, 1, '2024-05-06', 10, 50, '498906', false), - (84145, '2024-05-10 23:12:14.212175+00', '0x441669d3e05f320ad104c61aa3f294eb6a28185b', 0, 0, 1, '2024-05-07', 2, 10, '408536', false), - (85718, '2024-05-10 23:12:19.125068+00', '0x1d8775623df5469116ece78b55a97bce8424b899', 0, 0, 1, '2024-05-07', 1, 2, '239664', false), - (82421, '2024-05-10 23:12:08.834868+00', '0xfbd6207cac6dc88cb28c1d6c84583930db2ee061', 0, 0, 1, '2024-05-08', 6, 9, '298347', false), - (83266, '2024-05-10 23:12:11.537206+00', '0x30e2803dc4a9ec782559554eb2c207240f6b9736', 0, 0, 1, '2024-05-08', 1, 5, '389824', false), - (83441, '2024-05-10 23:12:12.043829+00', '0x0e3e543eb22461c28c92c8987b0d23d79e24a2f3', 0, 0, 1, '2024-03-12', 2, 0, '384407', false), - (88594, '2024-05-10 23:12:27.194414+00', '0x264db049d0cfa73fb334cb605dc8c2843c1edf95', 0, 0, 1, '2024-04-05', 3, 10, '249247', false), - (86376, '2024-05-10 23:12:21.228177+00', '0x42f859724da452f412a3f67677199617e2b4a31e', 0, 0, 1, '2024-05-06', 1, 5, '425464', false), - (88442, '2024-05-10 23:12:26.841301+00', '0x4cc8ebd5af782805411ff90a07512a57bc419232', 0, 0, 1, '2024-05-04', 2, 10, '390928', false), - (87043, '2024-05-10 23:12:23.164572+00', '0x664305ff3ba03dfd3e02891b3e645e3714936bb2', 0, 0, 1, '2024-05-06', 1, 5, '498224', false), - (86413, '2024-05-10 23:12:21.469196+00', '0x533f15a3cf28fc3656c68ce080747f6e7aaa61b4', 0, 0, 1, '2024-05-04', 4, 20, '283780', false), - (84249, '2024-05-10 23:12:14.478952+00', '0x66408e1db673e79d1b9a4f9f82f039a62bc961c0', 0, 0, 1, '2024-05-07', 1, 3, '516836', false), - (75301, '2024-05-10 23:11:48.129915+00', '0x8b80755c441d355405ca7571443bb9247b77ec16', 23054, 23054, 1, '2023-05-10', 17, 23, '4163', true), - (75994, '2024-05-10 23:11:49.878242+00', '0xa7226e53f3100c093a0a5bcb6e3d0976eb3db1d6', 7438, 7438, 1, '2023-12-28', 5, 9, '6986', true), - (96519, '2024-05-15 06:00:33.834833+00', '0x685e34c6a94f330fa494d708b652261140b55aba', 418, 418, 1, '2024-05-14', 1, 0, '363545', true), - (95058, '2024-05-13 06:00:31.880862+00', '0x7702134be60497e9ce43794759d96792675485fc', 903, 903, 1, '2024-05-12', 1, 2, '197007', true), - (74052, '2024-05-10 23:11:44.470584+00', '0x4849aad81d9b94da5fb21e9f8c8afa0239a410f8', 20904, 20904, 1, '2024-03-31', 25, 69, '420765', true), - (74424, '2024-05-10 23:11:45.606085+00', '0x2469b75537bfeaa25f9497c7fb0c0afadb0c07b7', 0, 0, 1, '2024-04-27', 10, 41, '436349', false), - (94528, '2024-05-12 06:00:33.839584+00', '0x5124beaf2ddf06b811515e968bd543a23c743594', 0, 0, 1, '2024-05-11', 5, 10, '526236', false), - (94459, '2024-05-12 06:00:33.283835+00', '0xeeb59c4e23ad7541652957f6e174611d84319ddf', 0, 0, 1, '2024-05-12', 6, 27, '516896', false), - (82076, '2024-05-10 23:12:07.924288+00', '0x817cb1072b606991b63f2bbd232b5ae7b5cd1a9e', 0, 0, 1, '2024-05-08', 16, 79, '403958', false), - (98003, '2024-05-17 06:00:47.215656+00', '0x32f72dac1c6c5556be3b1ae98cbfa31620030808', 0, 0, 1, '2024-05-17', 1, 0, '495140', false), - (82372, '2024-05-10 23:12:08.702635+00', '0xf3f5e0ca82f167926af198af639629794865b532', 0, 0, 1, '2024-05-05', 11, 52, '377731', false), - (86497, '2024-05-10 23:12:21.684326+00', '0xb34035f2a4df7e542d6c05ffd586f5f45eead274', 0, 0, 1, '2024-05-06', 1, 5, '461031', false), - (82523, '2024-05-10 23:12:09.195713+00', '0xdfb9e76960bbad0c1dfc11795579b4bbe105c429', 0, 0, 1, '2024-05-06', 4, 20, '496920', false), - (88622, '2024-05-10 23:12:27.237165+00', '0x806907bb4cfa34fe290b2fb3e84bcd6a9c21f068', 0, 0, 1, '2024-04-27', 1, 5, '497261', false), - (83838, '2024-05-10 23:12:13.327417+00', '0x362a3c06710e9635e6ee185c44fc459cb2938f12', 0, 0, 1, '2024-05-07', 2, 10, '490939', false), - (85045, '2024-05-10 23:12:17.148959+00', '0x9bf21fa5558c620497223846bd88593a6b905f93', 0, 0, 1, '2024-05-06', 5, 24, '501170', false), - (93132, '2024-05-10 23:12:40.291838+00', '0x4049ef5ac0b876f3c3fe7e69916f2d10a25db890', 0, 0, 1, '2024-02-06', 1, 0, '275924', false), - (84046, '2024-05-10 23:12:13.935242+00', '0x25e52ed2c80b96f5a6c4383db72db48f323fd504', 0, 0, 1, '2024-05-07', 3, 15, '329782', false), - (87513, '2024-05-10 23:12:24.410222+00', '0x1b17fdcb7293f2268eb29850a1221ea4eca6fcbf', 0, 0, 1, '2024-05-05', 1, 0, '195224', false), - (87569, '2024-05-10 23:12:24.541172+00', '0x41dd6696fc637b81d10198a43a0e19f57c29d02e', 0, 0, 1, '2024-05-05', 2, 2, '499109', false), - (90048, '2024-05-10 23:12:31.688618+00', '0x28c1e820706d946a7b43f2c9b79427fb0522eb64', 0, 0, 1, '2024-05-08', 1, 0, '256666', false), - (90128, '2024-05-10 23:12:32.028455+00', '0xb2c67cb2e5d2e1e8c03c98cd33c9267f7da11433', 0, 0, 1, '2024-05-07', 1, 5, '507486', false), - (92629, '2024-05-10 23:12:38.955064+00', '0x049c35342229879c8ddcc54c7ad743b1d823ae74', 0, 0, 1, '2024-02-07', 1, 0, '244023', false), - (89936, '2024-05-10 23:12:31.431364+00', '0x95045076fc93a14a4e9b576599479cb4f58a1b11', 0, 0, 1, '2023-11-14', 51, 4, '23472', false), - (85855, '2024-05-10 23:12:19.581014+00', '0xc44a6ac808081a005aec9b5fe4e4e6808dec0a97', 0, 0, 1, '2024-05-06', 4, 11, '509905', false), - (96298, '2024-05-14 06:00:34.750916+00', '0x36d36d3dcd05a28d3f018a96f61254b2e0eecd03', 0, 0, 1, '2024-05-13', 1, 5, '387394', false), - (81725, '2024-05-10 23:12:06.763481+00', '0x88b34343ff69f5474ebf82d658760c3786175a7c', 0, 0, 1, '2024-05-07', 5, 25, '504204', false), - (88962, '2024-05-10 23:12:28.226489+00', '0x10780583999f7562df3c115266f48a699f0559ee', 0, 0, 1, '2024-04-04', 1, 0, '416374', false), - (84178, '2024-05-10 23:12:14.245023+00', '0x94f50b94b9323d36e6b0f583f2d55bc46cefbf42', 0, 0, 1, '2024-05-05', 11, 55, '477470', false), - (82769, '2024-05-10 23:12:09.910949+00', '0x03e054022d3756429bbfc17e788a44781b221649', 0, 0, 1, '2024-05-05', 6, 30, '499426', false), - (88980, '2024-05-10 23:12:28.325693+00', '0x5c21829e27132a66eedc93d4dbb2a7dfdfd87ef4', 0, 0, 1, '2024-04-02', 1, 1, '323165', false), - (88400, '2024-05-10 23:12:26.731433+00', '0xed68dd16e2456aead0ebb915b51984faff428c21', 0, 0, 1, '2024-05-05', 1, 1, '415227', false), - (88569, '2024-05-10 23:12:27.106743+00', '0xaa247c5b4f6c25de5cf4f33d924d738a128dd246', 0, 0, 1, '2024-04-03', 2, 2, '241079', false), - (89884, '2024-05-10 23:12:31.126254+00', '0x0f56808073141eea2d13e09f0ad1817df51feec1', 0, 0, 1, '2024-05-10', 2, 0, '423433', false), - (89298, '2024-05-10 23:12:29.244017+00', '0x6f4e3617db82be3aa2f470de50051f7b3f95be9b', 0, 0, 1, '2024-02-07', 3, 4, '211661', false), - (83100, '2024-05-10 23:12:10.944335+00', '0x30995f6c74fe399e974afc61588197cb3bfbe20f', 0, 0, 1, '2024-05-05', 11, 34, '385168', false), - (84273, '2024-05-10 23:12:14.50265+00', '0x61fd6a1edb5b6cc1860ff7f2c7e3fe4cbcea1c4e', 0, 0, 1, '2024-05-07', 1, 5, '336963', false), - (82353, '2024-05-10 23:12:08.682492+00', '0xdca4ed00771a7b771c9f92e7d1bf53183f4bba6a', 0, 0, 1, '2024-05-09', 1, 5, '506084', false), - (98017, '2024-05-17 06:00:47.359932+00', '0x52da39325e7b4e185fa7b041082ee11b9c823b34', 180, 180, 1, '2024-05-16', 1, 5, '12590', true), - (95004, '2024-05-13 06:00:31.487413+00', '0x0d9a5b29db1a5d109a3f6e3d3d5141691461d44d', 749, 749, 1, '2024-05-12', 1, 1, '297256', true), - (81588, '2024-05-10 23:12:06.386517+00', '0x02d55926475067d1d7bad79e4113a1455ac3a619', 0, 0, 1, '2024-05-08', 7, 35, '462832', false), - (81983, '2024-05-10 23:12:07.626049+00', '0x561d0924c8d60b75f3605ea7403d8df99fc38e4c', 0, 0, 1, '2024-05-09', 18, 86, '411192', false), - (89906, '2024-05-10 23:12:31.14848+00', '0xd75337cc91170415a8f51600eab50609c7fc3baa', 0, 0, 1, '2024-04-30', 58, 136, '506726', false), - (95813, '2024-05-14 06:00:31.417933+00', '0xb9f39eb7ce1669c9a4d5c36f2d7c98c881ec166c', 0, 0, 1, '2024-05-13', 2, 10, '392172', false), - (81741, '2024-05-10 23:12:06.781289+00', '0xd73f64a8b3dc39880116dde5ff8149d87252a2b7', 0, 0, 1, '2024-05-09', 27, 116, '380400', false), - (95618, '2024-05-13 06:00:36.726476+00', '0x41d777badbf66d9e549da410f09f320e740a6b8c', 0, 0, 1, '2024-05-12', 3, 15, '396250', false), - (93334, '2024-05-10 23:12:40.84705+00', '0x9291ea9c52e9ceab1cbaf30903ba12685b1f918e', 0, 0, 1, '2024-02-04', 1, 0, '266362', false), - (93607, '2024-05-10 23:12:41.666094+00', '0x8f791c0592db171d84167d10baa70fd6dd26705c', 0, 0, 1, '2023-12-20', 1, 5, '23922', false), - (93621, '2024-05-10 23:12:41.681568+00', '0x13b3ff6f1d996eaf36022ea2a92669e1371e46d7', 0, 0, 1, '2023-12-20', 1, 0, '192355', false), - (93263, '2024-05-10 23:12:40.682812+00', '0x7a72e2f61634381779fc06d4850251fbc0112bfc', 0, 0, 1, '2024-02-05', 1, 5, '16095', false), - (93310, '2024-05-10 23:12:40.822096+00', '0x506903a4f594c9b7a5075d8bc78696ba9865f4e5', 0, 0, 1, '2024-02-04', 1, 1, '267442', false), - (93324, '2024-05-10 23:12:40.839583+00', '0x3d27340eded7bb9c705b694288bba78927f04a89', 0, 0, 1, '2024-02-04', 1, 2, '618', false), - (93348, '2024-05-10 23:12:40.856284+00', '0x1a5e1ecdb654214c197a2e2be140fa79fd963d97', 0, 0, 1, '2024-02-04', 1, 1, '272107', false), - (93556, '2024-05-10 23:12:41.520965+00', '0x303715a9da8043bfb2ec65c4d5daf3eb63c7a9dd', 0, 0, 1, '2023-12-22', 1, 0, '194298', false), - (93622, '2024-05-10 23:12:41.682091+00', '0xa689100c8febcbdc92137b6a6bbbfda305a6d319', 0, 0, 1, '2023-12-20', 1, 2, '18710', false), - (95626, '2024-05-13 06:00:36.738584+00', '0x99fb0989c5f3e4f455d5ec010527f7307c1ecf7e', 0, 0, 1, '2024-05-12', 2, 6, '485356', false), - (93948, '2024-05-11 06:00:25.567906+00', '0xb37bb88b00e642b50d7b6213484bd88679d28b44', 0, 0, 1, '2024-05-11', 2, 10, '417661', false), - (73983, '2024-05-10 23:11:44.261321+00', '0x07b0a3fddfab60675f9e355c60bcc6784995d0b3', 0, 0, 1, '2024-05-09', 10, 29, '420290', false), - (93989, '2024-05-11 06:00:25.920952+00', '0xb335fbdf6830647e455e657078d0752700bcb242', 0, 0, 1, '2024-05-11', 2, 10, '452150', false), - (84722, '2024-05-10 23:12:16.020586+00', '0x2f92d7df7138d1accfb3205836084e559af809ce', 0, 0, 1, '2024-05-05', 3, 4, '508363', false), - (88975, '2024-05-10 23:12:28.324811+00', '0xb9c29c4b549b6cdeb6079726c4ceca8309fcfa9f', 0, 0, 1, '2024-04-01', 15, 3, '432230', false), - (91130, '2024-05-10 23:12:34.71283+00', '0x25c1d4606cd25e5e9890bc637c203b93cf310e43', 0, 0, 1, '2024-04-11', 1, 0, '328765', false), - (94190, '2024-05-12 06:00:30.848427+00', '0x6f4524a430b51c125c36fc64f14363f54bd00fb0', 0, 0, 1, '2024-05-12', 1, 2, '387469', false), - (94283, '2024-05-12 06:00:31.948866+00', '0xb9318b1731c98a5cd0bc7ce830c9a6bd10f72e8c', 0, 0, 1, '2024-05-11', 1, 0, '403355', false), - (94240, '2024-05-12 06:00:31.503676+00', '0x7ff74e94f3b3f0e42600ad4070c0f128bb38191a', 0, 0, 1, '2024-05-11', 1, 4, '430883', false), - (94244, '2024-05-12 06:00:31.510272+00', '0xe6a043f68eb52365869fb117c758af9affaaf461', 0, 0, 1, '2024-05-11', 1, 2, '465070', false), - (94286, '2024-05-12 06:00:31.953542+00', '0xa79f0b06dd035aebf8dbdcbc6926c53cd9393018', 0, 0, 1, '2024-05-11', 2, 10, '392080', false), - (93023, '2024-05-10 23:12:40.027901+00', '0x656aeb34d6641335a444bfbe028878986a6cd886', 0, 0, 1, '2024-02-06', 1, 0, '305040', false), - (93043, '2024-05-10 23:12:40.049885+00', '0xe43c85ca13aca2d5f297fc8f35d8256332c1eab3', 0, 0, 1, '2024-02-06', 2, 10, '242597', false), - (93093, '2024-05-10 23:12:40.170827+00', '0x7e27aa5729fac3d522f4fac1810899e14d8fb5fd', 0, 0, 1, '2024-02-06', 1, 0, '236201', false), - (93194, '2024-05-10 23:12:40.44357+00', '0x9e2bd55c17547acaccc183bafe9e74749d675195', 0, 0, 1, '2024-02-06', 1, 4, '251530', false), - (93224, '2024-05-10 23:12:40.551673+00', '0x69167e79c15223f4a254d8b9b43365bdf15f6b24', 0, 0, 1, '2024-02-06', 1, 1, '242114', false), - (93244, '2024-05-10 23:12:40.571293+00', '0x0230f604a7697607fa07376e15f6a46ef1aff513', 0, 0, 1, '2024-02-06', 1, 5, '242317', false), - (79814, '2024-05-10 23:12:01.03314+00', '0x6dac6ef6008eb2ed7e8c6b20bc89663a8114f3d8', 0, 0, 1, '2024-02-06', 1, 1, '282516', false), - (79432, '2024-05-10 23:11:59.826622+00', '0x62776c4859585b82e1c2be84500e30c3e511f331', 0, 0, 1, '2024-02-13', 1, 2, '288384', false), - (93270, '2024-05-10 23:12:40.682071+00', '0x14d1a955e2467ee8d04d747eed647c7966e6ac06', 0, 0, 1, '2024-02-06', 1, 5, '199938', false), - (93298, '2024-05-10 23:12:40.713825+00', '0x6350922658ea7d425f9abe00d3d5aac93871754f', 0, 0, 1, '2024-02-05', 1, 1, '9622', false), - (93790, '2024-05-10 23:12:42.257911+00', '0x0150c608a25176c08d9bc8b43d0dc64e4c9f4a58', 0, 0, 1, '2023-08-31', 1, 3, '16610', false), - (90525, '2024-05-10 23:12:33.078678+00', '0x0c1ed0f872d8e3aee104ade99b21d301df03aa17', 0, 0, 1, '2024-05-01', 1, 0, '420372', false), - (90961, '2024-05-10 23:12:34.278152+00', '0x3b1df4f6067505e445e7b48b4c09593196865b68', 0, 0, 1, '2024-04-15', 1, 0, '282719', false), - (93221, '2024-05-10 23:12:40.54811+00', '0x46dc9f18d5d6eccc08184196d858979a585f632e', 0, 0, 1, '2024-02-06', 1, 0, '252877', false), - (91008, '2024-05-10 23:12:34.42433+00', '0x2a9ccf2ef3b42216c1aa6b78154561c84b6dd8bb', 0, 0, 1, '2024-04-11', 3, 3, '446918', false), - (91183, '2024-05-10 23:12:34.831789+00', '0x0dbb9d306ddcd839f698adad757c95d30538603a', 0, 0, 1, '2024-04-09', 1, 5, '304465', false), - (91221, '2024-05-10 23:12:34.951261+00', '0x422858c32411a747a319383c6e95a8111ec9bed7', 0, 0, 1, '2024-04-08', 1, 0, '460974', false), - (91319, '2024-05-10 23:12:35.20586+00', '0xfd7e6c923ef60c663adffcbe4e2cded29e7cffd0', 0, 0, 1, '2024-04-05', 1, 5, '310998', false), - (91413, '2024-05-10 23:12:35.542789+00', '0x5828ff37ff6932c614a50b2784dce352dd882308', 0, 0, 1, '2024-04-03', 1, 0, '378843', false), - (81184, '2024-05-10 23:12:04.983497+00', '0x5a084aaef5eddd9195f28f6fe056785e01f210eb', 2014, 2014, 1, '2023-07-31', 1, 0, '5952', true), - (80329, '2024-05-10 23:12:02.729102+00', '0xceb78abfad166c11e350156fd671b385265a6c87', 3753, 3753, 1, '2023-11-18', 2, 2, '834', true), - (79110, '2024-05-10 23:11:58.845959+00', '0x00063ddb30be7bc2292583d5f143e9d6e6228440', 6822, 6822, 1, '2023-11-01', 4, 8, '2689', true), - (77476, '2024-05-10 23:11:54.086268+00', '0xb386c139442a81a482424f11214e70625a2c7109', 59559, 59559, 1, '2023-06-12', 55, 37, '7909', true), - (81052, '2024-05-10 23:12:04.590864+00', '0x0e03d94c2a33ac6d7c0f1b2d3381803723838e1a', 1986, 1986, 1, '2023-08-22', 1, 0, '6236', true), - (81135, '2024-05-10 23:12:04.865792+00', '0x744c28e52dbe6af8e68937d006323ee2b514ad4a', 5511, 5511, 1, '2023-08-03', 3, 3, '324', true), - (81714, '2024-05-10 23:12:06.755075+00', '0x376275c4f9e4fffd8a89a90852f253f8e3373f67', 2232, 2232, 1, '2024-05-05', 2, 6, '5932', true), - (78228, '2024-05-10 23:11:56.430995+00', '0xa41cd41474f7b59736da76b7fe12b9b8d9afb94f', 9118, 9118, 1, '2024-01-18', 7, 9, '21941', true), - (78803, '2024-05-10 23:11:57.951846+00', '0x277c74f45724945b2066f305fcb5a609312390e2', 2352, 2352, 1, '2024-03-03', 1, 2, '15562', true), - (80434, '2024-05-10 23:12:02.986652+00', '0xdaa83039aca9a33b2e54bb2acc9f9c3a99357618', 20899, 20899, 1, '2023-05-06', 15, 22, '1214', true), - (78894, '2024-05-10 23:11:58.207705+00', '0x24f33c5d552ddd8d9ba085fc1ad2e28c40989599', 2374, 2374, 1, '2024-02-29', 1, 2, '10602', true), - (78226, '2024-05-10 23:11:56.368321+00', '0xee8f047761228cea75712241c7b8338fa81ed5c5', 1397, 1397, 1, '2024-03-27', 1, 0, '3686', true), - (78713, '2024-05-10 23:11:57.715586+00', '0xc9eae131858bb939e5117b283dc2ca70b0589fc0', 2315, 2315, 1, '2024-03-08', 1, 2, '278406', true), - (78939, '2024-05-10 23:11:58.334249+00', '0x4f7d469a5237bd5feae5a3d852eea4b65e06aad1', 3165, 3165, 1, '2024-02-27', 1, 4, '20559', true), - (79385, '2024-05-10 23:11:59.700541+00', '0x81064c1a10b0a3d2a1d716a54281ee73318524f0', 1610, 1610, 1, '2024-02-14', 1, 0, '280586', true), - (79545, '2024-05-10 23:12:00.234806+00', '0xe5a71a3696d4edb65f07b6f9a3f000f826367305', 4077, 4077, 1, '2023-12-13', 2, 4, '7038', true), - (80384, '2024-05-10 23:12:02.860767+00', '0x1bccc3dc32d6977ca14beff7a2130f578620cdb3', 1800, 1800, 1, '2023-12-10', 1, 0, '429', true), - (80767, '2024-05-10 23:12:03.937873+00', '0x77ac30452890e5210cb334f601a0a6e8f0a5201b', 1930, 1930, 1, '2023-09-30', 1, 0, '2558', true), - (75833, '2024-05-10 23:11:49.398478+00', '0x8bcb6e436eb92a2c6459ad64aa3c4c049ffb44ed', 18030, 18030, 1, '2024-03-28', 21, 20, '410039', true), - (81209, '2024-05-10 23:12:05.229811+00', '0xb3d1a413968f7133ef644e720f74e216090c51a8', 2018, 2018, 1, '2023-07-28', 1, 0, '3435', true), - (74973, '2024-05-10 23:11:47.298983+00', '0xd48ba19c4d8ae08fc189273b52b696931b271e53', 53312, 53312, 1, '2024-02-09', 64, 78, '17582', true), - (79591, '2024-05-10 23:12:00.392364+00', '0xc008a83beb75cb32e1ac6a7aadcdf71b57f5fdcd', 2498, 2498, 1, '2024-02-09', 1, 2, '263537', true), - (79898, '2024-05-10 23:12:01.556179+00', '0xbba1cdd6e94aca527637ef3dc4354d203e16c146', 2094, 2094, 1, '2024-02-04', 1, 1, '211890', true), - (79500, '2024-05-10 23:12:00.123601+00', '0x56176778b638e7ccff5053e40f3935b5e354d2f2', 5723, 5723, 1, '2024-02-03', 4, 5, '238260', true), - (81190, '2024-05-10 23:12:04.986569+00', '0x19f8a76474ebf9effb269ec5c2b935a3611d6779', 4090, 4090, 1, '2023-08-02', 2, 2, '4155', true), - (80668, '2024-05-10 23:12:03.659425+00', '0x5802bc0fee2e236d1f8f1396c27a171fc5accc4f', 3361, 3361, 1, '2023-10-30', 1, 3, '16987', true), - (89552, '2024-05-10 23:12:30.242378+00', '0x961aa96febee5465149a0787b03bfa14d8e9033f', 1767, 1767, 1, '2023-12-24', 1, 0, '5694', true), - (76100, '2024-05-10 23:11:50.316217+00', '0xedac3381eca8487a723d80a882430f1fed8caf0f', 3920, 3920, 1, '2024-04-06', 2, 10, '16237', true), - (74017, '2024-05-10 23:11:44.429356+00', '0x7deacf4aa3332e33a5c2dd5e344bbf6a61de4fa8', 1747, 1747, 1, '2024-05-06', 2, 2, '242729', true), - (75246, '2024-05-10 23:11:47.945387+00', '0x8469b7b08d30c63fea3a248a198de9d634b63d70', 9700, 9700, 1, '2024-04-13', 10, 45, '14515', true), - (91009, '2024-05-10 23:12:34.423487+00', '0x2b9218d929c4f7dee9ea565d3c63769c238e4c99', 6637, 6637, 1, '2024-03-26', 6, 7, '408951', true), - (91672, '2024-05-10 23:12:36.383578+00', '0x2e004b20330dd2b6925d94070a989e045f33b953', 3193, 3193, 1, '2024-03-26', 1, 5, '11512', true), - (91883, '2024-05-10 23:12:36.894472+00', '0x42b3fc1e3e9766f719344a79349b1aec05cc129d', 3321, 3321, 1, '2024-03-17', 1, 5, '262563', true), - (91972, '2024-05-10 23:12:37.125817+00', '0x6091a224ec0e8bae16125603d179d9fce7aad641', 1901, 1901, 1, '2024-03-11', 1, 1, '283030', true), - (74044, '2024-05-10 23:11:44.476043+00', '0x097f71d2abaf370e686fb3f3d773592d9b0031ed', 15289, 15289, 1, '2024-03-19', 16, 32, '1069', true), - (77152, '2024-05-10 23:11:53.179685+00', '0x1c172bad049283ab4f763c61fc04f2d3eaf261c5', 3867, 3867, 1, '2024-04-08', 2, 10, '281495', true), - (79122, '2024-05-10 23:11:58.860307+00', '0x0880cc27a345b5400fb5942f58f4e573e64f2f50', 3785, 3785, 1, '2024-02-21', 2, 5, '13797', true), - (76429, '2024-05-10 23:11:51.211209+00', '0x28aba2dfcf42eadfee60cebfa650ac7184652424', 1173, 1173, 1, '2024-04-20', 1, 0, '274563', true), - (74735, '2024-05-10 23:11:46.571098+00', '0x08379e7d313a0781612c9624741b38a263f499f6', 1878, 1878, 1, '2024-05-07', 1, 5, '10822', true), - (74753, '2024-05-10 23:11:46.597965+00', '0x1964923a14701b45f2e36ff39fb19f40749eb011', 1878, 1878, 1, '2024-05-07', 1, 5, '350911', true), - (75122, '2024-05-10 23:11:47.672314+00', '0x35a9a4fede2f889e3e2d8529722a233b7a6afea6', 1364, 1364, 1, '2024-05-05', 1, 2, '436436', true), - (75203, '2024-05-10 23:11:47.898714+00', '0x0a593918bbb4ebd75c2261cf77c46c1381ee9102', 1589, 1589, 1, '2024-05-05', 1, 3, '232017', true), - (74868, '2024-05-10 23:11:47.052946+00', '0x88ed3861d35e33dc8da7789da0b9efcf2299bb1c', 4296, 4296, 1, '2024-01-14', 2, 6, '19627', true), - (77189, '2024-05-10 23:11:53.316834+00', '0xdbd8c21abbaa205c0e87465f9d4695137727741c', 2571, 2571, 1, '2024-04-12', 1, 4, '340599', true), - (73829, '2024-05-10 23:11:43.067356+00', '0x0260d1d864e9a8864ae0d0e42245729a1b232ae6', 24830, 24830, 1, '2024-02-05', 25, 45, '263664', true), - (74738, '2024-05-10 23:11:46.586061+00', '0x3d7863e87afd6cc4bb584c3d07f5deeaa6d26802', 1267, 1267, 1, '2024-05-07', 1, 2, '5303', true), - (74458, '2024-05-10 23:11:45.651566+00', '0x094f1608960a3cb06346cfd55b10b3cec4f72c78', 1005, 1005, 1, '2024-05-08', 1, 1, '6546', true), - (75014, '2024-05-10 23:11:47.409783+00', '0xa39b6ef93b7edfb5edd0f49ae24a1df946e7674f', 20312, 20312, 1, '2024-02-06', 19, 68, '214841', true), - (74608, '2024-05-10 23:11:46.040967+00', '0xa312a2a835bdcda893020ce23871470ffd26b990', 28585, 28585, 1, '2024-02-15', 30, 100, '269694', true), - (78663, '2024-05-10 23:11:57.586525+00', '0x40ff52e1848660327f16ed96a307259ec1d757eb', 5116, 5116, 1, '2024-02-16', 3, 9, '746', true), - (77149, '2024-05-10 23:11:53.174198+00', '0x1c4420dea13bb5e6c2dd3c14fd9e507bedd44ee9', 2260, 2260, 1, '2024-04-12', 1, 3, '4805', true), - (76412, '2024-05-10 23:11:51.194864+00', '0x009ae2d1a7240cfc89095fab06ed24f1641d9169', 4285, 4285, 1, '2024-02-08', 2, 7, '12574', true), - (78060, '2024-05-10 23:11:55.918318+00', '0x3d92b8dfd192354a36720bc57941bb006fc9ad3b', 8047, 8047, 1, '2024-02-17', 6, 16, '247959', true), - (77316, '2024-05-10 23:11:53.701848+00', '0x21c6553a199a9c794aa77ae8a8d80751dfcdc0d1', 6088, 6088, 1, '2024-01-26', 4, 8, '1137', true), - (76624, '2024-05-10 23:11:51.713415+00', '0x83d6ad420b89589cb7d7d95148d87eb29a03e80e', 1525, 1525, 1, '2024-04-18', 1, 1, '420930', true), - (74253, '2024-05-10 23:11:45.097573+00', '0x453a437a3a8825f2bf5b41b5090956e3a73dd670', 13710, 13710, 1, '2024-04-07', 16, 23, '398824', true), - (73830, '2024-05-10 23:11:43.075245+00', '0xdcb1ccf8db4305ddbf132ebb1103ed770d2fc359', 28857, 28857, 1, '2024-04-16', 43, 79, '381283', true), - (76776, '2024-05-10 23:11:52.144401+00', '0x9dfaa44b42750fdae3c1c8689934b00148dc0680', 4480, 4480, 1, '2024-04-15', 4, 8, '483033', true), - (74127, '2024-05-10 23:11:44.751636+00', '0xcffbda2841ef95df3e977982ecc55429b8d82eb5', 5179, 5179, 1, '2024-05-06', 8, 13, '7910', true), - (77134, '2024-05-10 23:11:53.158411+00', '0x2120c9a63f1d1d09b73eac514fcea779ed1e5d39', 4114, 4114, 1, '2024-02-19', 3, 1, '1194', true), - (81082, '2024-05-10 23:12:04.727672+00', '0xf3236c9d0b623cc261009484db5cfed2079a007f', 1996, 1996, 1, '2023-08-14', 1, 0, '4724', true), - (81339, '2024-05-10 23:12:05.693101+00', '0x6d9ffaede2c6cd9bb48bece230ad589e0e0d981c', 2621, 2621, 1, '2023-06-21', 1, 1, '13596', true), - (75433, '2024-05-10 23:11:48.407349+00', '0xc1b83388b7e095617a4ef4ddb38db92ec2df03aa', 11089, 11089, 1, '2024-03-06', 10, 22, '251769', true), - (79853, '2024-05-10 23:12:01.320862+00', '0x68b44ea0b78aff90e328406768bedcd387000d31', 14181, 14181, 1, '2024-01-25', 12, 28, '16148', true), - (91017, '2024-05-10 23:12:34.419475+00', '0x1b35fcb58f5e1e2a42ff8e66ddf5646966abf08c', 2669, 2669, 1, '2024-03-11', 2, 0, '8677', true), - (90885, '2024-05-10 23:12:34.038506+00', '0xae5a04c25531949edc6fc3e650efec82c1ba773a', 3077, 3077, 1, '2024-04-02', 2, 4, '387008', true), - (91473, '2024-05-10 23:12:35.757824+00', '0xdead927a72afcb56d643f4caf395074c7a2612eb', 3094, 3094, 1, '2024-04-01', 1, 5, '17793', true), - (90493, '2024-05-10 23:12:32.948638+00', '0x86958a1219ab83c92779285efeb0d9dc186e24c0', 34107, 34107, 1, '2024-01-09', 34, 128, '19840', true), - (75748, '2024-05-10 23:11:49.2321+00', '0x0865c2ee7b5efb44595b0340744f7b180d3993fa', 2134, 2134, 1, '2024-04-28', 2, 2, '208573', true), - (79413, '2024-05-10 23:11:59.815706+00', '0x9f382e671d76de9e0085983b5fc90e6a9b414573', 2053, 2053, 1, '2024-02-13', 1, 1, '20969', true), - (76078, '2024-05-10 23:11:50.134628+00', '0xaa7fab01446dc9c985e0624c8c3046ac3ef5285a', 7651, 7651, 1, '2024-04-14', 8, 18, '409032', true), - (74056, '2024-05-10 23:11:44.480945+00', '0xabff4e288c3a4bd1d622ac7d6e199e25fb0c561f', 11092, 11092, 1, '2024-02-12', 9, 26, '15789', true), - (75672, '2024-05-10 23:11:49.016844+00', '0x13a45e1199776a0960b375f11a03d505cffdcd43', 5992, 5992, 1, '2024-04-18', 6, 15, '444025', true), - (76004, '2024-05-10 23:11:49.886425+00', '0xad66810a7358ad499c611d50108d0e0a8733e913', 13239, 13239, 1, '2024-03-29', 14, 35, '415248', true), - (73831, '2024-05-10 23:11:43.071724+00', '0x414531e74c58b4a5c5c998b18fbe819a70d78f30', 27663, 27663, 1, '2024-03-22', 34, 36, '218814', true), - (74279, '2024-05-10 23:11:45.204838+00', '0xb408a9ee6332477b143c8cfe6c2c8899849a2edf', 26698, 26698, 1, '2024-04-13', 38, 59, '350625', true), - (76605, '2024-05-10 23:11:51.692088+00', '0x244306053c673b93bc9885fdacfc352032725c87', 3269, 3269, 1, '2024-04-08', 2, 6, '247898', true), - (75675, '2024-05-10 23:11:49.018391+00', '0x18b7511938fbe2ee08adf3d4a24edb00a5c9b783', 7374, 7374, 1, '2023-07-18', 4, 8, '129', true), - (75991, '2024-05-10 23:11:49.872358+00', '0x59ed4b96db0cf824b10e31eb477e174c08c6bdd5', 2539, 2539, 1, '2024-04-24', 2, 4, '381093', true), - (74715, '2024-05-10 23:11:46.564258+00', '0x38cb027d65aaf2d3f401ff9bd0599afe86f1b627', 1476, 1476, 1, '2024-05-07', 1, 3, '1551', true), - (95821, '2024-05-14 06:00:31.436838+00', '0x1115e7bed26542bf247a7f800a9f48d530c3f955', 1044, 1044, 1, '2024-05-13', 1, 4, '8439', true), - (78974, '2024-05-10 23:11:58.487199+00', '0x8a1e3425aa53aaa5f1174bd08dbc99c7e9baa5c8', 1997, 1997, 1, '2024-02-24', 1, 1, '2653', true), - (76515, '2024-05-10 23:11:51.452007+00', '0xc340930ed26153c690350a0c1765773a016f8bfb', 2411, 2411, 1, '2024-04-19', 1, 4, '13283', true), - (74617, '2024-05-10 23:11:46.273207+00', '0x7b994e111cd89c9391be815fa6fcd6ef2abfd053', 790, 790, 1, '2024-05-08', 1, 0, '3872', true), - (76740, '2024-05-10 23:11:52.039427+00', '0x7f99acc18a490163a6184d89fe2a2fc80b8fe2ba', 1210, 1210, 1, '2024-04-17', 1, 0, '284279', true), - (78436, '2024-05-10 23:11:57.021227+00', '0x32bea430631db4e416900db332f5431d265a954a', 2884, 2884, 1, '2024-03-08', 2, 1, '3347', true), - (76641, '2024-05-10 23:11:51.793188+00', '0x12cba59f5a74db81a12ff63c349bd82cbf6007c2', 13715, 13715, 1, '2023-05-28', 9, 13, '5925', true), - (73993, '2024-05-10 23:11:44.26933+00', '0x95d394f35705033008ccdaf0bce3d07e4be090f4', 69013, 69013, 1, '2024-02-04', 86, 138, '269636', true), - (73841, '2024-05-10 23:11:43.093595+00', '0x8a958db686c100436610b7042d2c8eed343fac48', 261864, 261864, 1, '2023-08-29', 341, 737, '18910', true), - (76932, '2024-05-10 23:11:52.521196+00', '0x8f9deac37fa8a378da09ed89a889dae8e39ac509', 4635, 4635, 1, '2024-02-16', 3, 5, '302642', true), - (75834, '2024-05-10 23:11:49.395456+00', '0x58c5b881fb2794d04f0dc0ec65f94a119cd43aa0', 7350, 7350, 1, '2024-02-06', 5, 15, '13465', true), - (76823, '2024-05-10 23:11:52.203786+00', '0x7fdca0a469ea8b50b92322afc0215b67d56a5e9a', 12050, 12050, 1, '2024-01-31', 10, 20, '115', true), - (76531, '2024-05-10 23:11:51.528449+00', '0xed21735dc192dc4eeafd71b4dc023bc53fe4df15', 65359, 65359, 1, '2023-08-16', 64, 95, '16098', true), - (76569, '2024-05-10 23:11:51.57275+00', '0x0160fe82ea10457f16a1dca34e305be770869d98', 3116, 3116, 1, '2024-04-08', 2, 5, '218957', true), - (75470, '2024-05-10 23:11:48.514414+00', '0x854e84eb6857e8cfb68c7ae1cb1368260a4fc581', 4828, 4828, 1, '2024-04-05', 4, 8, '279394', true), - (94376, '2024-05-12 06:00:32.763511+00', '0x78e5110039a7a72e817598273f29661fb856fe6d', 749, 279, 1, '2024-05-12', 1, 1, '416087', true), - (89464, '2024-05-10 23:12:29.877736+00', '0xe5d2f68665a8f8d21b6188d1e455f4e14db6a469', 0, 0, 1, '2024-02-05', 1, 0, '272531', false), - (79860, '2024-05-10 23:12:01.328905+00', '0x295dc4c0dd4ef28ec429fd78f91e12cf67bca787', 0, 0, 1, '2024-02-05', 1, 5, '237409', false), - (81541, '2024-05-10 23:12:06.218427+00', '0x100c099196c129966e0aac4d653bb85f836b2119', 0, 0, 1, '2024-05-07', 6, 30, '500796', false), - (97046, '2024-05-16 06:00:35.321215+00', '0x0f596ae13f0bfc6bda2282880fc6a994a9ee1c64', 0, 0, 1, '2024-05-15', 1, 5, '365817', false), - (78155, '2024-05-10 23:11:56.168829+00', '0xabf1f6a7cf0071c7af4a3c9b4dcc1f0601413c99', 0, 0, 1, '2024-03-28', 2, 3, '402434', false), - (76559, '2024-05-10 23:11:51.558644+00', '0x6d15dffbcb274e423c51c197777eb43665018533', 10241, 10241, 1, '2024-04-14', 11, 46, '238853', true), - (81276, '2024-05-10 23:12:05.364767+00', '0x6a46d7a8a5d34aeb166bbbdeb496ff1c14e445ce', 3131, 3131, 1, '2023-07-08', 1, 2, '1321', true), - (73779, '2024-05-10 23:11:42.787776+00', '0x4303ddc9943d862f2b205af468a4a786c5137e76', 42559, 42559, 1, '2023-07-07', 37, 62, '133', true), - (80345, '2024-05-10 23:12:02.744348+00', '0xda22919e01e249ba4c96dba46bee29e4981835fc', 1774, 1774, 1, '2023-12-21', 1, 0, '3854', true), - (76145, '2024-05-10 23:11:50.494259+00', '0xf641e2800a94b49b8b428353ea71aae85865dece', 11682, 11682, 1, '2023-10-24', 8, 19, '189896', true), - (74200, '2024-05-10 23:11:44.882759+00', '0xad5c39984149aa60663bbac47676f84192c04ca8', 20423, 20423, 1, '2023-06-25', 15, 23, '1655', true), - (79281, '2024-05-10 23:11:59.43442+00', '0xfda746f4c3f9f5a02b3e63ed6d0ebbc002d1f788', 6981, 6981, 1, '2023-07-05', 4, 4, '4894', true), - (79761, '2024-05-10 23:12:00.908745+00', '0x2055149768d71910aa4125ccbb9fdc46edeb2436', 17474, 17474, 1, '2023-05-13', 12, 20, '8004', true), - (81053, '2024-05-10 23:12:04.609344+00', '0x219fc230dbe627dbeccf49b9584022fff678dd05', 5320, 5320, 1, '2023-04-21', 3, 0, '5006', true), - (79991, '2024-05-10 23:12:01.809022+00', '0x26e3a9c84fdb9b7fe33dfd5e8d273d016e4e4fb6', 12405, 12405, 1, '2023-05-02', 8, 7, '6351', true), - (78887, '2024-05-10 23:11:58.211617+00', '0x7e07064e5a921a57eb29c22f179b20513e8a3485', 7229, 7229, 1, '2023-09-10', 4, 9, '2736', true), - (78729, '2024-05-10 23:11:57.803236+00', '0xfaab77343690ea38e9eb4a39950395406e1a1d7c', 3296, 3296, 1, '2024-02-11', 2, 2, '4334', true), - (79555, '2024-05-10 23:12:00.260618+00', '0x8bf2ffc89c70efbe245aa81cc597c7e359925d61', 1625, 1625, 1, '2024-02-10', 1, 0, '674', true), - (79671, '2024-05-10 23:12:00.638708+00', '0xee5e44139d5e16fbf0fe63d5c9a67a95d445afb5', 2076, 2076, 1, '2024-02-08', 1, 1, '263556', true), - (80235, '2024-05-10 23:12:02.497762+00', '0xb968b8fc624281de9aa41f0e9e1ac9a7443c4a97', 2213, 2213, 1, '2024-01-04', 1, 1, '8208', true), - (80513, '2024-05-10 23:12:03.234411+00', '0xa69530e88096c6221042394f9fcd5d9e419cde54', 1846, 1846, 1, '2023-11-18', 1, 0, '10990', true), - (77281, '2024-05-10 23:11:53.547429+00', '0xbedcce028f470d29a3140c4173321286cb88b5e7', 26650, 26650, 1, '2023-04-28', 20, 37, '5604', true), - (78234, '2024-05-10 23:11:56.439281+00', '0x1a4b0923b0f150b5fa8cdfb2138d0d78b1ec85fc', 3936, 3936, 1, '2024-03-10', 2, 7, '5625', true), - (78902, '2024-05-10 23:11:58.227371+00', '0xca063b7eac9940109ab0b230470fa103b8090892', 1552, 1552, 1, '2024-02-28', 1, 0, '14035', true), - (79408, '2024-05-10 23:11:59.809329+00', '0xa372b5d50c3b647900b68be61e9eefce8b85d540', 4237, 4237, 1, '2024-02-13', 2, 7, '235153', true), - (79971, '2024-05-10 23:12:01.712328+00', '0xefca263734100602bd85d300d6b32b7ccec188b1', 3978, 3978, 1, '2024-01-30', 2, 5, '240969', true), - (75319, '2024-05-10 23:11:48.145322+00', '0x71e923131cf34b1b83d2ce3e06456982f347b642', 0, 0, 1, '2024-02-25', 5, 2, '327351', false), - (75726, '2024-05-10 23:11:49.134422+00', '0xe6ba45a8af3c4f307f96ba29146835566547a388', 3415, 3415, 1, '2024-04-01', 3, 0, '5462', true), - (80190, '2024-05-10 23:12:02.375294+00', '0xdd044684cfa651c491b844ae0e8646ad7c56205b', 4705, 4705, 1, '2023-06-12', 2, 4, '12163', true), - (79463, '2024-05-10 23:11:59.956905+00', '0x3c2c6fc98afb9d7d8f3d384d4ecda2769f29ac66', 2058, 2058, 1, '2024-02-12', 1, 1, '15835', true), - (79429, '2024-05-10 23:11:59.823267+00', '0x9600e2ee6377dadad7299b120026661c336a5e6d', 4319, 4319, 1, '2024-02-11', 3, 2, '2514', true), - (97069, '2024-05-16 06:00:35.375333+00', '0xe8d5f8f74d25291ea0b8c07667897c19745d111b', 366, 366, 1, '2024-05-15', 1, 1, '292310', true), - (97089, '2024-05-16 06:00:35.574025+00', '0x91bf3c7bf154b49aa4858ae0d17e39a6d9ec72d6', 655, 655, 1, '2024-05-15', 1, 5, '365925', true), - (83024, '2024-05-10 23:12:10.678412+00', '0x72b5a3fa0fd93487411084a43bf36fa4bfeeb928', 0, 0, 1, '2024-05-08', 3, 15, '322937', false), - (83078, '2024-05-10 23:12:10.825123+00', '0x3733c6e1da1faeff2b94ba055dffb2f1313c253b', 0, 0, 1, '2024-05-08', 2, 10, '423944', false), - (84918, '2024-05-10 23:12:16.693601+00', '0x239242cf675591e3cfc3bc818dc1d476bb538c2e', 0, 0, 1, '2024-05-06', 2, 10, '282725', false), - (81870, '2024-05-10 23:12:07.156479+00', '0x3f56a18c2c7e49f7569393cb705fdd7537209c00', 0, 0, 1, '2024-05-10', 5, 25, '386014', false), - (81459, '2024-05-10 23:12:06.057499+00', '0x559350639f6d09b3d6399cdd1ac1daf0cf428d48', 0, 0, 1, '2024-05-07', 9, 45, '394213', false), - (81913, '2024-05-10 23:12:07.469881+00', '0xf038ff660d990a1db0fd7c80eb6687f6d63bcd8e', 0, 0, 1, '2024-05-05', 7, 8, '501182', false), - (81678, '2024-05-10 23:12:06.637236+00', '0x0d8638ac3d38bfd0c9fa2bf2885d7ac7c9feab2a', 0, 0, 1, '2024-05-04', 8, 28, '504319', false), - (81695, '2024-05-10 23:12:06.672724+00', '0x98267d307ac89f24e62de9827dcfc214fa88427c', 0, 0, 1, '2024-05-08', 8, 35, '498400', false), - (81825, '2024-05-10 23:12:06.993866+00', '0xf592ecaff58a64dd8604888e707a1df059721e5d', 0, 0, 1, '2024-05-07', 6, 30, '379932', false), - (81674, '2024-05-10 23:12:06.654431+00', '0x52d298b8d16374f5cdfa58b0edbc45e83fd68756', 0, 0, 1, '2024-05-05', 20, 67, '418249', false), - (73924, '2024-05-10 23:11:43.54243+00', '0x9a70d89db9a7ae5c04d2bea3049d136098e32e22', 41563, 41563, 1, '2024-04-10', 62, 285, '244479', true), - (76415, '2024-05-10 23:11:51.199688+00', '0xf56e55e35d2cca5a34f5ba568454974424aea0f4', 14951, 14951, 1, '2024-02-18', 14, 20, '192490', true), - (80787, '2024-05-10 23:12:03.956343+00', '0x0d8005dc289094030b9c5f0d942e0ff6372f590f', 1932, 1932, 1, '2023-09-29', 1, 0, '14236', true), - (78779, '2024-05-10 23:11:57.922844+00', '0x1439b4d5a72343b68f12398c649df99d76b2af53', 2345, 2345, 1, '2024-03-04', 1, 2, '236715', true), - (77680, '2024-05-10 23:11:54.689642+00', '0x26f35e0f8f3030907044ac0a43e72c1a17284137', 16349, 16349, 1, '2024-02-03', 15, 21, '1460', true), - (78566, '2024-05-10 23:11:57.311935+00', '0x8e2fd8df3fa9454e390887a86919bb7b86cc1141', 1887, 1887, 1, '2024-03-13', 1, 1, '15255', true), - (81668, '2024-05-10 23:12:06.646293+00', '0x0d506cea2e073e3fcb1692d8afa6592149019da7', 0, 0, 1, '2024-05-10', 1, 5, '469840', false), - (74086, '2024-05-10 23:11:44.611905+00', '0x69116c07f69ae31d6fba77b43f9fe6844cdc466e', 67632, 67632, 1, '2024-03-13', 95, 189, '313886', true), - (97405, '2024-05-16 06:00:37.869039+00', '0x3f098c5f5e0d5b2606eed243844d1392835c1411', 655, 655, 1, '2024-05-15', 1, 5, '262566', true), - (81960, '2024-05-10 23:12:07.600153+00', '0x119d7d618fd4f18232f22431021e5535da62d917', 0, 0, 1, '2024-05-05', 4, 20, '419719', false), - (82048, '2024-05-10 23:12:07.900915+00', '0x72398167e2c65261083226591a13e72fee4791b4', 0, 0, 1, '2024-05-05', 15, 73, '500238', false), - (82037, '2024-05-10 23:12:07.767064+00', '0xcb166bc7748dd28730fbab086dc06a6d21f8fbc8', 0, 0, 1, '2024-05-07', 5, 25, '404927', false), - (82378, '2024-05-10 23:12:08.714213+00', '0xff9ca790b91659402205f11567b8e3fbd5a3fb8b', 0, 0, 1, '2024-05-05', 17, 76, '380528', false), - (82070, '2024-05-10 23:12:07.927543+00', '0x75e4daa70bb3c0a52f4db6d7e92d348240bb20d0', 0, 0, 1, '2024-05-05', 6, 30, '492423', false), - (78970, '2024-05-10 23:11:58.476447+00', '0x499250ce0fc3a5e36119c42f6394b405cbe0d416', 0, 0, 1, '2024-02-22', 4, 2, '366853', false), - (81829, '2024-05-10 23:12:06.985349+00', '0xbcb1663e7cb26cc39f95b0f38cc069cc5eb3b932', 0, 0, 1, '2024-05-07', 4, 20, '434019', false), - (81955, '2024-05-10 23:12:07.592192+00', '0x394e68dd0a477c92642b226d69688281e34ec679', 0, 0, 1, '2024-05-06', 6, 30, '506817', false), - (87851, '2024-05-10 23:12:25.275993+00', '0xe936e7ab13cb8bec56e0099c098589a07815b7b1', 0, 0, 1, '2024-05-05', 2, 7, '453716', false), - (82490, '2024-05-10 23:12:09.094261+00', '0x4c521c3839b3de4332646cafa7f85a6abd614d04', 0, 0, 1, '2024-05-05', 2, 10, '451903', false), - (86472, '2024-05-10 23:12:21.5923+00', '0x71ef15017bef51bcd9b4d67c386d30253209096b', 0, 0, 1, '2024-05-06', 1, 5, '480276', false), - (86493, '2024-05-10 23:12:21.680993+00', '0x27e7e7576e650a68ba32714fbcb6569581de0fdf', 0, 0, 1, '2024-05-06', 1, 5, '457630', false), - (87941, '2024-05-10 23:12:25.524883+00', '0x2ed2c23f4026cb022034aeeeb48a813043151056', 0, 0, 1, '2024-05-05', 1, 5, '421384', false), - (81867, '2024-05-10 23:12:07.151512+00', '0xb9d5e8903f54f6a56ad2a0454e07aafbbffbf535', 0, 0, 1, '2024-05-06', 6, 30, '378416', false), - (82272, '2024-05-10 23:12:08.433421+00', '0xa4d8478a6e88b61db87daaba8cd528f32cfb5b60', 0, 0, 1, '2024-05-07', 24, 89, '419208', false), - (81894, '2024-05-10 23:12:07.168714+00', '0x25011716acbbd3519a5970ca88a81b343e08904c', 0, 0, 1, '2024-05-07', 9, 34, '489714', false), - (81800, '2024-05-10 23:12:06.981008+00', '0x14d396ba2e45c249f9f244bf7d1b0bbbd7c66e11', 0, 0, 1, '2024-05-09', 9, 45, '401049', false), - (82623, '2024-05-10 23:12:09.458851+00', '0xb3a55cd09240eabdb57baf524f24ed73ecaf75e5', 0, 0, 1, '2024-05-09', 1, 5, '420212', false), - (81651, '2024-05-10 23:12:06.623069+00', '0x88bdf8a221594c8377e969030e26bf3c7d9803d2', 0, 0, 1, '2024-05-07', 7, 35, '438916', false), - (81857, '2024-05-10 23:12:07.144177+00', '0x390abd1ed7abb408638b28bafabaccf3172cf775', 0, 0, 1, '2024-05-08', 5, 25, '336403', false), - (81693, '2024-05-10 23:12:06.671025+00', '0x28d865c9b8387f997ebba042780754257b8b2132', 0, 0, 1, '2024-05-08', 11, 31, '247081', false), - (81579, '2024-05-10 23:12:06.384184+00', '0x9960b96dd6c7ca465b5bb96c3222373ed390bf6a', 0, 0, 1, '2024-05-05', 10, 50, '417203', false), - (81749, '2024-05-10 23:12:06.861244+00', '0xe9d458e64a469a18fd94c053e5a603afeb376d1a', 0, 0, 1, '2024-05-09', 7, 35, '508761', false), - (95918, '2024-05-14 06:00:32.082468+00', '0x270735e7afdc9ef0ee9f3186990fd118e253dcc1', 3650, 3650, 1, '2024-05-14', 12, 46, '245579', true), - (82185, '2024-05-10 23:12:08.188751+00', '0xae12698b39c5b6ab301b5fb6d4bffc9ae093ceae', 0, 0, 1, '2024-05-05', 7, 30, '291550', false), - (75120, '2024-05-10 23:11:47.670883+00', '0x09641015fb8b08388a7367b946e634d37dddffaa', 2335, 2335, 1, '2024-05-05', 2, 7, '385387', true), - (75214, '2024-05-10 23:11:47.914568+00', '0x59c6104e9b280a4b5d50103d300cdabb8640c3a9', 1167, 1167, 1, '2024-05-04', 1, 1, '15351', true), - (73772, '2024-05-10 23:11:42.658681+00', '0x3585ca22df80d70f6d1cc0867d8387c360181349', 31583, 31583, 1, '2023-10-12', 28, 39, '6751', true), - (78193, '2024-05-10 23:11:56.297349+00', '0x2d66a6a43c83b179d68afc4f0d93c72b689438a6', 2812, 2812, 1, '2024-02-23', 2, 0, '293719', true), - (77945, '2024-05-10 23:11:55.658536+00', '0x8ecc7752208ac688772715eec22152af3df939c1', 1361, 1361, 1, '2024-04-01', 1, 0, '351070', true), - (78822, '2024-05-10 23:11:58.043058+00', '0xb7ee95f928954669554f7fcb70e1dfc2ec313c99', 1534, 1534, 1, '2024-03-03', 1, 0, '369441', true), - (78848, '2024-05-10 23:11:58.083525+00', '0xf7cad584a4d56959b5ee6b66d28bb1feac29c68d', 1534, 1534, 1, '2024-03-03', 1, 0, '2883', true), - (79389, '2024-05-10 23:11:59.702507+00', '0xb78196b3e667841047d1bb1365ab8fb3d46ab1a8', 2048, 2048, 1, '2024-02-14', 1, 1, '247524', true), - (88618, '2024-05-10 23:12:27.23116+00', '0x95aa6cf80aa61c3433215c7b8330c065ed29ce97', 15617, 15617, 1, '2023-07-21', 11, 15, '6805', true), - (74169, '2024-05-10 23:11:44.885814+00', '0x3164623c29c8d60c7d84b7c3544c596c02167e72', 5274, 5274, 1, '2024-04-18', 5, 13, '461236', true), - (74049, '2024-05-10 23:11:44.484777+00', '0x27bbe645730ad333a35837f4bfb2b28fee3ce753', 13405, 13405, 1, '2024-03-07', 13, 20, '13314', true), - (74026, '2024-05-10 23:11:44.445578+00', '0xdde09e93ecf5f9bc71a2423f61133dbdb8a25113', 7375, 7375, 1, '2024-04-14', 8, 9, '271878', true), - (73775, '2024-05-10 23:11:42.743141+00', '0x3702205145fac0fb99a9b8bc61e33486c126f155', 25804, 25804, 1, '2024-03-29', 32, 87, '243719', true), - (74314, '2024-05-10 23:11:45.33057+00', '0x3ee75b599c076193b81885ca1838e560d268aad1', 10297, 10297, 1, '2023-05-25', 6, 13, '6591', true), - (79959, '2024-05-10 23:12:01.696949+00', '0x4fafa767c9cb71394875c139d43aee7799748908', 2103, 2103, 1, '2024-02-02', 1, 1, '2798', true), - (76209, '2024-05-10 23:11:50.65838+00', '0x504c6d044810d750f810349c6af2a17dabc393be', 1146, 1146, 1, '2024-04-22', 1, 0, '335922', true), - (74490, '2024-05-10 23:11:45.757056+00', '0xb4ed1a39491c83219764152e4dc68944d5547947', 7862, 1307, 1, '2024-05-08', 14, 65, '301385', true), - (84715, '2024-05-10 23:12:16.015549+00', '0x1261968987c5cfa710cdcddddfbeab264cbd4e47', 0, 0, 1, '2024-05-07', 1, 1, '316344', false), - (87500, '2024-05-10 23:12:24.385236+00', '0x59e7afd1c4246f28bdf2323016098b9be03d032b', 0, 0, 1, '2024-05-05', 1, 2, '20362', false), - (73783, '2024-05-10 23:11:42.830522+00', '0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453', 35157, 35137, 1, '2024-02-07', 38, 111, '240247', true), - (88960, '2024-05-10 23:12:28.218154+00', '0x6ba69f60f3ba8191adce6a031ac83e59f05d1637', 0, 0, 1, '2024-04-04', 1, 1, '319345', false), - (82900, '2024-05-10 23:12:10.322453+00', '0xaecef32d4df9c19de2d9cd202b65bac3f8dacdf4', 0, 0, 1, '2024-05-07', 6, 21, '416877', false), - (84535, '2024-05-10 23:12:15.393088+00', '0xee7f82c536ac366ba90bfd46d6e9f1aa955a34c0', 0, 0, 1, '2024-05-07', 1, 2, '420362', false), - (74031, '2024-05-10 23:11:44.456534+00', '0x049569adb8a1e8a9349e9f1111c7b7993a4612eb', 24924, 24924, 1, '2023-11-01', 21, 58, '4044', true), - (75877, '2024-05-10 23:11:49.51237+00', '0x28b4de9c45af6cb1a5a46c19909108f2bb74a2be', 11306, 11306, 1, '2024-02-09', 9, 30, '1198', true), - (74787, '2024-05-10 23:11:46.838049+00', '0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa', 19225, 19225, 1, '2024-04-15', 26, 44, '403020', true), - (76631, '2024-05-10 23:11:51.779964+00', '0xf34196597df209a04fc92b97071dcaabbc63f0e8', 9081, 9081, 1, '2023-08-16', 6, 2, '6804', true), - (85198, '2024-05-10 23:12:17.615054+00', '0x2e2d0045ffd0ebfed105d9d5e8d76552410ce41d', 0, 0, 1, '2024-05-07', 2, 5, '404910', false), - (77341, '2024-05-10 23:11:53.713337+00', '0x31f21bf48b95117fd32cc32ff65f88d5633796ed', 4049, 4049, 1, '2024-02-13', 2, 6, '261900', true), - (77716, '2024-05-10 23:11:54.7972+00', '0x4cca3f44208bee3c363868471956af0c1e2fff05', 1329, 1329, 1, '2024-04-05', 1, 0, '389059', true), - (73894, '2024-05-10 23:11:43.363206+00', '0x543504622a0b392911621c2a874e3d8f687cdf67', 8472, 8472, 1, '2024-05-08', 16, 48, '420229', true), - (77920, '2024-05-10 23:11:55.496563+00', '0x99dc0e0e23ed468d3fe6dac0f71d67c1059b3920', 20336, 20336, 1, '2024-02-03', 19, 61, '229042', true), - (74292, '2024-05-10 23:11:45.233948+00', '0xc1033ebdbf17e1a350d18196035c26090eaac708', 19458, 19458, 1, '2024-04-15', 26, 74, '352172', true), - (76153, '2024-05-10 23:11:50.506173+00', '0x7e2f9dd040cf7b41a1af9e4a24a0edb04093dda1', 3443, 3443, 1, '2024-04-21', 3, 6, '377557', true), - (76629, '2024-05-10 23:11:51.775315+00', '0xb796f2847b022c91bf80cdab05c3f0c0c948963c', 2290, 2290, 1, '2024-04-18', 2, 1, '13803', true), - (75638, '2024-05-10 23:11:48.90516+00', '0xcaf3f5aa5bf120407f9156cbd54c78bd440bfbc3', 1581, 1581, 1, '2024-04-29', 1, 2, '296520', true), - (75714, '2024-05-10 23:11:49.112393+00', '0xcc2860b3e735f4a65fbbc4dd402f8eab79525642', 1336, 1336, 1, '2024-04-28', 1, 1, '394357', true), - (74817, '2024-05-10 23:11:46.9498+00', '0x366ddda42f9c965c765fa6d8e98d84f224e81f46', 26176, 26176, 1, '2024-04-07', 34, 170, '7452', true), - (77128, '2024-05-10 23:11:53.156329+00', '0xd9f2d8da9c8ff285080fe0df6285f3551bf1397b', 2260, 2260, 1, '2024-04-12', 1, 3, '198522', true), - (76609, '2024-05-10 23:11:51.700319+00', '0x0ce98350b9dea81fe0b47dbc4787a1e9f8f1d7ff', 6573, 6573, 1, '2024-02-06', 4, 15, '6373', true), - (76157, '2024-05-10 23:11:50.509227+00', '0xe588a2b38f24c72e30535885d645ceba44480d1b', 1758, 1758, 1, '2024-04-22', 1, 2, '283222', true), - (76597, '2024-05-10 23:11:51.679017+00', '0xc43e98042c74d1785280ad792ab4d97d56aca07e', 2867, 2867, 1, '2024-04-18', 2, 5, '400821', true), - (81565, '2024-05-10 23:12:06.329072+00', '0x6d3fe453d256f92946bd0b2e35f3f67eb82e4041', 0, 0, 1, '2024-05-07', 4, 13, '320599', false), - (81633, '2024-05-10 23:12:06.532172+00', '0x334d6609bebda38b838a0aaa0aacdd2bf0c7a0d1', 0, 0, 1, '2024-05-05', 4, 16, '293002', false), - (76919, '2024-05-10 23:11:52.446518+00', '0x02ac33835070d0c90bef87c273514e67aea36ef8', 26055, 26055, 1, '2023-05-28', 20, 24, '5620', true), - (81701, '2024-05-10 23:12:06.736484+00', '0x22b681aacdae8725a49109bf9fd34692a37efa51', 8967, 6947, 1, '2024-05-04', 14, 51, '439718', true), - (79694, '2024-05-10 23:12:00.662765+00', '0xb3f9db09cd32cad33b1559f3d6e1a9435fb46834', 0, 0, 1, '2024-02-08', 1, 0, '4833', false), - (75810, '2024-05-10 23:11:49.376766+00', '0x50763add868fd7361178342fc055eaa2b95f6846', 25460, 25460, 1, '2024-02-18', 27, 27, '10123', true), - (75145, '2024-05-10 23:11:47.697448+00', '0xd6393a635a3b227020748821594a00c0da4f9019', 1364, 1364, 1, '2024-05-05', 1, 2, '323011', true), - (75761, '2024-05-10 23:11:49.259286+00', '0xa86882277e69fbf0a51805cdc8b0a3a113079e63', 1638, 1638, 1, '2024-04-27', 1, 2, '1301', true), - (75767, '2024-05-10 23:11:49.268453+00', '0xacd3c8ff7c564d4a24ad8cdeb828445a75b21697', 1638, 1638, 1, '2024-04-27', 1, 2, '417346', true), - (79176, '2024-05-10 23:11:58.982641+00', '0xaed58605cf7d6a9396f7c0539d51df6763808208', 3616, 3616, 1, '2024-02-19', 1, 5, '2859', true), - (73946, '2024-05-10 23:11:44.111358+00', '0xc1cbfd0f49450878c074e3935554002201db3235', 24086, 24086, 1, '2024-02-04', 24, 45, '18262', true), - (74598, '2024-05-10 23:11:46.030419+00', '0xd1ffda9c225ddee34f0837bf4d4a441bdd54c473', 790, 790, 1, '2024-05-08', 1, 0, '211250', true), - (77828, '2024-05-10 23:11:55.202176+00', '0xdb15cb61483bdf64989a1c8dba84f3428bcada80', 1712, 1712, 1, '2024-04-03', 1, 1, '21039', true), - (77081, '2024-05-10 23:11:53.021334+00', '0xefd6777e2fd6a65a245156bdb81d0139fbba3cd8', 1596, 1596, 1, '2024-04-13', 1, 1, '369999', true), - (74907, '2024-05-10 23:11:47.159524+00', '0x212a9315016e47e6a3a25e959c1d8d0c2ec3c8f3', 4387, 4387, 1, '2024-04-12', 4, 5, '453709', true), - (77615, '2024-05-10 23:11:54.560792+00', '0x892ff98a46e5bd141e2d12618f4b2fe6284debac', 16690, 16690, 1, '2023-06-03', 12, 1, '5016', true), - (79944, '2024-05-10 23:12:01.684095+00', '0xaf090d3e78530b3c9a4ed035bbe09978b560d7ee', 1653, 1653, 1, '2024-02-02', 1, 0, '13536', true), - (78872, '2024-05-10 23:11:58.194723+00', '0xdf463ca6dd18422fd41d183f1b1bbf133b8e0884', 3146, 3146, 1, '2024-02-29', 1, 4, '301375', true), - (77663, '2024-05-10 23:11:54.670474+00', '0xddf7103b5aba7c64f0fe22cf6c668eacaab39ea5', 1320, 1320, 1, '2024-04-06', 1, 0, '13191', true), - (75483, '2024-05-10 23:11:48.527571+00', '0xc90f44cbc3a8eeb198c564245eb2b853090039f3', 4917, 4917, 1, '2024-04-02', 3, 15, '401859', true), - (76061, '2024-05-10 23:11:50.114226+00', '0x42e32f13df7250784824a9826c30d724346381af', 6473, 6473, 1, '2024-04-14', 6, 21, '438774', true), - (77209, '2024-05-10 23:11:53.338729+00', '0x4f96e16c10a0bcb004d5b9f5e6198d27dc74c711', 5027, 5027, 1, '2024-03-19', 4, 5, '395346', true), - (79063, '2024-05-10 23:11:58.715876+00', '0x9ff820a0ba1e7b87c6656e6dd50f967cc684b15c', 12688, 12688, 1, '2023-09-05', 9, 7, '15799', true), - (78188, '2024-05-10 23:11:56.301273+00', '0x79ef469a9c2ebfa8aa326fa4f80bc8d0e361e09c', 5158, 5158, 1, '2024-02-26', 4, 2, '324985', true), - (75671, '2024-05-10 23:11:49.010683+00', '0xecee5497b9dbb82e1804e3224f67d00d8d891c69', 3791, 3791, 1, '2024-03-29', 3, 3, '249258', true), - (77524, '2024-05-10 23:11:54.306324+00', '0x720d3a3aa7c6bec98be27a64b9f4f42eb79badc4', 4424, 4424, 1, '2024-03-04', 3, 5, '191775', true), - (79269, '2024-05-10 23:11:59.430679+00', '0x5a11d298cb270ea25b87de44f7ee781b5f0b0475', 2457, 2457, 1, '2024-02-16', 1, 2, '8749', true), - (87668, '2024-05-10 23:12:24.792001+00', '0x7dadf796a1496e02c170f977fe18cbb6d6ec2f25', 0, 0, 1, '2024-05-05', 1, 1, '507418', false), - (75371, '2024-05-10 23:11:48.262563+00', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 7969, 7969, 1, '2024-03-30', 7, 24, '318473', true), - (80852, '2024-05-10 23:12:04.088357+00', '0x516cafd745ec780d20f61c0d71fe258ea765222d', 2487, 2487, 1, '2023-09-14', 1, 1, '3558', true), - (81264, '2024-05-10 23:12:05.349735+00', '0x10d6d2e343281d388291a3e02f3293aaeda67178', 2593, 2593, 1, '2023-07-11', 1, 1, '1246', true), - (77523, '2024-05-10 23:11:54.305424+00', '0xb749a586080436e616f097f193ba9cb6a25e7ea6', 2012, 2012, 1, '2024-04-07', 1, 2, '10103', true), - (77461, '2024-05-10 23:11:54.059551+00', '0x55b554efaddb6a229a3785cc535779e54be5308c', 12079, 12079, 1, '2024-01-05', 10, 4, '13387', true), - (76658, '2024-05-10 23:11:51.810995+00', '0xbaba775a0400a5e442335ceaa4820edb1ded8f73', 9025, 9025, 1, '2024-02-01', 7, 12, '196957', true), - (79274, '2024-05-10 23:11:59.431676+00', '0xcdcdc174901b12e87cc82471a2a2bd6181c89392', 9201, 9201, 1, '2023-10-24', 6, 11, '4823', true), - (76087, '2024-05-10 23:11:50.14615+00', '0xe372cf77187e27b15805803cf331f6b7330f223b', 5224, 5224, 1, '2023-12-27', 3, 6, '12021', true), - (76510, '2024-05-10 23:11:51.432612+00', '0x44d9ec4cbd88556b706be3079e3762a2e5a3315f', 29104, 29104, 1, '2023-12-27', 28, 42, '205754', true), - (79089, '2024-05-10 23:11:58.745966+00', '0xa42fc5acff39ee880218724038e18c984fa78253', 7233, 7233, 1, '2023-05-28', 4, 5, '11205', true), - (81424, '2024-05-10 23:12:05.942992+00', '0xb26af90041b13a3b795c45dc2f2b7e6b6ac6b593', 2101, 2101, 1, '2023-05-11', 1, 0, '2134', true), - (78721, '2024-05-10 23:11:57.791002+00', '0x88adfc5eba1195d163e8d5c90fddee4b0d436af4', 5780, 5780, 1, '2023-05-03', 3, 3, '5126', true), - (73878, '2024-05-10 23:11:43.333465+00', '0x565f036a2f5a9c4d23194bf1439298bbc06e2af0', 23824, 23824, 1, '2024-04-01', 30, 45, '422559', true), - (80975, '2024-05-10 23:12:04.458795+00', '0x0aa34eb615ab330b64060ff9fa994e72a7a95b59', 9326, 9326, 1, '2023-06-02', 5, 15, '239', true), - (76037, '2024-05-10 23:11:49.924344+00', '0x6689b9d1642bb413c74c35eeba13165f755f26fe', 8933, 8933, 1, '2023-06-12', 5, 11, '2455', true), - (78964, '2024-05-10 23:11:58.468892+00', '0x206b0526f4866e7580780015cbacbb4a8dbb8c80', 1992, 1992, 1, '2024-02-25', 1, 1, '10496', true), - (78181, '2024-05-10 23:11:56.277827+00', '0x28a69640810fcdcf6adb7119edd64eed4612fa49', 8286, 8286, 1, '2023-11-17', 5, 15, '3206', true), - (85010, '2024-05-10 23:12:17.004727+00', '0x91c509830ff641216f8a1b7a638dab7b41b33e2e', 0, 0, 1, '2024-05-07', 2, 10, '500603', false), - (76958, '2024-05-10 23:11:52.544899+00', '0x1aac4cbff120e1ac659a0ff2645ad63ac096bf3a', 3644, 3644, 1, '2024-04-09', 3, 4, '246221', true), - (77057, '2024-05-10 23:11:52.933486+00', '0x54a80e0417008db88036f4fb2c4646264717f7a6', 1254, 1254, 1, '2024-04-13', 1, 0, '3112', true), - (77155, '2024-05-10 23:11:53.179073+00', '0xd0e8060e52d8c23984f22ac899d18fc53aa8bcbd', 1264, 1264, 1, '2024-04-12', 1, 0, '306792', true), - (77769, '2024-05-10 23:11:55.026916+00', '0x1a9a4932f36b3641f5f63e98f77f8a1f28d85dad', 3538, 3538, 1, '2024-02-05', 2, 3, '262892', true), - (81587, '2024-05-10 23:12:06.39506+00', '0x2b2d91d275bfcff4c17105d10c8c1cff7303119c', 6466, 6466, 1, '2024-05-07', 10, 50, '379777', true), - (92795, '2024-05-10 23:12:39.366864+00', '0x2e15430ebbc70a4d32bcd8d9f1861c68a68888f6', 0, 0, 1, '2024-02-06', 1, 1, '278516', false), - (92816, '2024-05-10 23:12:39.466373+00', '0x973ce57f39dc086f976f83f2b2291af5590ec848', 0, 0, 1, '2024-02-06', 1, 2, '275300', false), - (92851, '2024-05-10 23:12:39.506814+00', '0x9008e2a8c9f6e4fe77ccf98b58652176e4451ec0', 0, 0, 1, '2024-02-06', 1, 0, '288909', false), - (92871, '2024-05-10 23:12:39.611123+00', '0x05d89702ad4b1c8b816e658ec40b148342c614d4', 0, 0, 1, '2024-02-06', 1, 1, '237270', false), - (74303, '2024-05-10 23:11:45.222263+00', '0xeea0471cfcaed2f83117a2660b3d21738d478990', 52580, 52580, 1, '2024-02-04', 62, 101, '270714', true), - (76065, '2024-05-10 23:11:50.109069+00', '0x1438fe2670272d30cdc0ce1ef657c82b8dbf271f', 6908, 6908, 1, '2024-02-24', 5, 13, '276695', true), - (77201, '2024-05-10 23:11:53.330948+00', '0x1779b8777b7c411428ccdfadc1ceae18f3ab4187', 1940, 1940, 1, '2024-04-12', 1, 2, '251143', true), - (78003, '2024-05-10 23:11:55.788855+00', '0x5b93ff82faaf241c15997ea3975419dddd8362c5', 64078, 64078, 1, '2023-10-11', 65, 229, '206', true), - (77500, '2024-05-10 23:11:54.120953+00', '0xda3c325ab45b30aeb476b026fe6a777443ca04f3', 2962, 2962, 1, '2024-04-08', 1, 5, '5046', true), - (77557, '2024-05-10 23:11:54.411431+00', '0x323596422e7d65a73c6396bce5b1809e178e1f8e', 1311, 1311, 1, '2024-04-07', 1, 0, '5047', true), - (77880, '2024-05-10 23:11:55.390012+00', '0x9b7c18a71a98acd2f1271e2d1fe63750a70bc52b', 2751, 2751, 1, '2024-04-02', 1, 4, '15974', true), - (74592, '2024-05-10 23:11:46.025198+00', '0xde0cbd5df89bb67ab804db21e9b931bad4200392', 27632, 27632, 1, '2024-03-25', 34, 89, '1436', true), - (78716, '2024-05-10 23:11:57.710749+00', '0x333983eb213d132cf4f71751dd38802d0362e3fa', 4589, 4589, 1, '2024-02-20', 3, 5, '292880', true), - (74327, '2024-05-10 23:11:45.350328+00', '0x8284fdb345236d8285fecd91855c16ca22a1033f', 35360, 35360, 1, '2024-03-31', 48, 79, '387472', true), - (73828, '2024-05-10 23:11:43.070958+00', '0xb642b7b23c84ddc446dc364b1f714cee6bfd0908', 19174, 16952, 1, '2024-04-30', 33, 56, '375536', true), - (86704, '2024-05-10 23:12:22.202496+00', '0x7f4aca24a93b89859660b104e08ab3943569577a', 0, 0, 1, '2024-05-06', 3, 1, '354320', false), - (88541, '2024-05-10 23:12:27.081216+00', '0x84897786256eb494263ea38469c401243d0abe03', 0, 0, 1, '2024-05-02', 1, 5, '505093', false), - (82722, '2024-05-10 23:12:09.778024+00', '0xb2a48b453d83bbadf3f3f39b62b601ea33c13f35', 0, 0, 1, '2024-05-05', 8, 36, '501820', false), - (88108, '2024-05-10 23:12:25.945932+00', '0xaa8c41d4b0c66709cf6f1487623e14e347545dbe', 0, 0, 1, '2024-05-05', 3, 9, '236317', false), - (83449, '2024-05-10 23:12:12.162747+00', '0x31330d2f5d714c04f6b0f6ed4d5fe0cad405f6e4', 0, 0, 1, '2024-05-05', 4, 20, '406815', false), - (85886, '2024-05-10 23:12:19.606067+00', '0x78f06e9d837688443a97afd0f7507c29aae03655', 0, 0, 1, '2024-05-05', 5, 22, '393047', false), - (83021, '2024-05-10 23:12:10.678846+00', '0x993a37dd64d8836014c8cc1a8b49a98157a61668', 0, 0, 1, '2024-05-05', 11, 45, '500239', false), - (87525, '2024-05-10 23:12:24.422236+00', '0xb4bb3e9ef680eceb61fd811fb2d974e56709657a', 0, 0, 1, '2024-05-05', 1, 5, '406381', false), - (88203, '2024-05-10 23:12:26.208951+00', '0x42c94ed7c35acb9296b02a356eb0e270837de9f8', 0, 0, 1, '2024-05-05', 1, 1, '398260', false), - (77593, '2024-05-10 23:11:54.444393+00', '0x62f6ca6594049a5510c1eed5efe5bd667ee61013', 1669, 1669, 1, '2024-04-07', 1, 1, '238243', true), - (76910, '2024-05-10 23:11:52.436441+00', '0xe4784e4c0af675b48d7c2b2dafed8a27686d3682', 6967, 6967, 1, '2024-04-06', 7, 6, '410492', true), - (77746, '2024-05-10 23:11:54.995787+00', '0x868612a4e2ef875f69987c07b1e8134dac6b2c7f', 1691, 1691, 1, '2024-04-05', 1, 1, '240586', true), - (78047, '2024-05-10 23:11:55.907444+00', '0xb149a58ca42459184c9e3a06df1e260a3cf32a72', 1751, 1751, 1, '2024-03-30', 1, 1, '402534', true), - (78107, '2024-05-10 23:11:56.024877+00', '0x8a08b17ab7f547ec3082f2c57b121893edb0a49c', 1383, 1383, 1, '2024-03-29', 1, 0, '234743', true), - (73955, '2024-05-10 23:11:44.146912+00', '0x08e0a3e752d1338c0f02b986b9504f1009a962ca', 10573, 10573, 1, '2024-03-14', 9, 40, '296207', true), - (74743, '2024-05-10 23:11:46.58845+00', '0xdfe8beee223412f316baf2968b17527d6eba29f1', 28518, 28518, 1, '2023-05-04', 22, 28, '431', true), - (74288, '2024-05-10 23:11:45.231417+00', '0x86aa399a62b6d89f4d6306c82656be29cb2e728a', 20441, 20441, 1, '2023-12-13', 18, 15, '7378', true), - (74482, '2024-05-10 23:11:45.746741+00', '0xa0be5a9b02b7b7290f89e4e2a01faf46ef00baf5', 14765, 4765, 1, '2024-03-20', 15, 48, '288204', true), - (76662, '2024-05-10 23:11:51.814324+00', '0x3cc1a943b27c2af7c6dcf3be0137f66c2f22e712', 27766, 27766, 1, '2023-12-15', 25, 107, '5431', true), - (74024, '2024-05-10 23:11:44.441239+00', '0xb875badbd67c7d5fa2c845ddce8fe112fe383309', 3049, 3049, 1, '2024-04-11', 2, 5, '369904', true), - (82483, '2024-05-10 23:12:09.081803+00', '0x2b69be397864dc6651f50c69ebdb5ce4a19eaa21', 1703, 1703, 1, '2024-05-09', 1, 5, '406536', true), - (89040, '2024-05-10 23:12:28.472228+00', '0xc9706e271241d24dcb1b41119b4096b8116c662a', 8304, 8304, 1, '2024-02-23', 7, 6, '1184', true), - (81282, '2024-05-10 23:12:05.369946+00', '0x9eab9d856a3a667dc4cd10001d59c679c64756e7', 5941, 5941, 1, '2023-06-27', 3, 5, '373', true), - (91244, '2024-05-10 23:12:35.062668+00', '0x80ffe32c46d21203bbca11f2c1e4ae842c760793', 0, 0, 1, '2024-04-07', 1, 4, '385878', false), - (91262, '2024-05-10 23:12:35.076533+00', '0xce5edb4a2a6d44e366819505e8981c1fa833ee99', 0, 0, 1, '2024-04-06', 1, 0, '456135', false), - (91305, '2024-05-10 23:12:35.182652+00', '0x01f8ce3658953dcdfcf9989db3668425a2dd6eeb', 0, 0, 1, '2024-04-06', 1, 4, '371580', false), - (91328, '2024-05-10 23:12:35.213231+00', '0x1b6907828b602a92c5596e125f4c46c3465a44ca', 0, 0, 1, '2024-04-06', 1, 2, '327927', false), - (90775, '2024-05-10 23:12:33.751412+00', '0x9e53cb0731fde971e431d01ec9061dbe6b0da81e', 0, 0, 1, '2024-04-01', 33, 32, '371788', false), - (83017, '2024-05-10 23:12:10.665657+00', '0x5c08719e78400c0fd4cb403327e50747074ec023', 0, 0, 1, '2024-05-08', 4, 15, '510387', false), - (82966, '2024-05-10 23:12:10.474327+00', '0x6cd8c403de510c05a124e9b73cc2e284bac133db', 0, 0, 1, '2024-05-08', 5, 25, '265281', false), - (84150, '2024-05-10 23:12:14.217854+00', '0x0569ee1c2362e13c66a7b7246e18b387f80663fa', 0, 0, 1, '2024-05-07', 3, 6, '500242', false), - (87052, '2024-05-10 23:12:23.174336+00', '0xb78a0cf956250521f730478cd0330ebc108e367c', 0, 0, 1, '2024-05-05', 5, 25, '466106', false), - (86543, '2024-05-10 23:12:21.791317+00', '0xe7f2d54b2fe055b87c8d262e1eaa4305315ee166', 0, 0, 1, '2024-05-06', 1, 5, '456556', false), - (81510, '2024-05-10 23:12:06.176298+00', '0x2cf185748541410b336863c960d6024955f384da', 8678, 0, 1, '2024-05-07', 15, 71, '384424', true), - (89014, '2024-05-10 23:12:28.446972+00', '0x742b97dc68bcc3475feb734c2df2c76f25664532', 9060, 9060, 1, '2024-02-09', 7, 16, '189733', true), - (89415, '2024-05-10 23:12:29.655799+00', '0xd0c3218303591c7ea68560509be2ef7b9e6d2191', 1632, 1632, 1, '2024-02-08', 1, 0, '722', true), - (88285, '2024-05-10 23:12:26.436824+00', '0x4a7b17fbec1ecc14a00b351f9fb40b0c957e776b', 2022, 2022, 1, '2024-05-05', 1, 5, '3046', true), - (88034, '2024-05-10 23:12:25.800838+00', '0xb328d306c4bc5e55423df6c7185522c540765871', 1364, 1364, 1, '2024-05-05', 1, 2, '228904', true), - (88645, '2024-05-10 23:12:27.345921+00', '0xf1708bccf4ce044699ea2ecafc2ff0c5139bdbc3', 19355, 19355, 1, '2024-02-07', 18, 60, '5851', true), - (89002, '2024-05-10 23:12:28.348909+00', '0xdbc2dc13707e93e9c6453b3ad92bdb3cc9541599', 1722, 1722, 1, '2024-04-02', 1, 1, '392444', true), - (88549, '2024-05-10 23:12:27.083244+00', '0x909957dcc1b114fe262f4779e6aed4d034d96b0f', 1407, 1407, 1, '2024-05-04', 1, 2, '429877', true), - (88661, '2024-05-10 23:12:27.356468+00', '0x738f268aa2d339787ccc403d2b8ce3ae3bcad09e', 2606, 2606, 1, '2024-04-22', 1, 5, '119', true), - (91692, '2024-05-10 23:12:36.401642+00', '0x8b518133f9a68883b4078d33083a36b9728a9ced', 3193, 3193, 1, '2024-03-26', 1, 5, '15633', true), - (89477, '2024-05-10 23:12:29.980902+00', '0x3eaef0fcf432cffd12c5b8e2c328d2856fa49ef9', 3845, 3845, 1, '2024-01-21', 1, 5, '1706', true), - (88801, '2024-05-10 23:12:27.701475+00', '0x60576db4ac5176d7dd76e7f33a65f936c74e21c7', 2377, 2377, 1, '2024-04-14', 2, 1, '410818', true), - (88851, '2024-05-10 23:12:27.818145+00', '0x91fff25a1f477dd7aa66be8b3531a656790cdfed', 1254, 1254, 1, '2024-04-13', 1, 0, '297980', true), - (89682, '2024-05-10 23:12:30.58484+00', '0x0e467a0288a439ba2678eb7d3b0b64b01e2bbbfc', 1929, 1929, 1, '2023-10-01', 1, 0, '2210', true), - (84412, '2024-05-10 23:12:15.029667+00', '0xb64d2510e57fa69dfcc9fd45d1c42044127c9284', 0, 0, 1, '2024-05-07', 2, 7, '422650', false), - (86975, '2024-05-10 23:12:22.822335+00', '0x4bfb6a85c1db4a556e6fe04231f3c053570c6b05', 0, 0, 1, '2024-05-06', 1, 1, '515814', false), - (82790, '2024-05-10 23:12:09.930769+00', '0x0f54fc0703872fca0d72eec61ed5cee26e0d1423', 0, 0, 1, '2024-05-05', 25, 89, '323094', false), - (84453, '2024-05-10 23:12:15.21435+00', '0x580cd6a1fa43aff093214a7eef4d7b717d947a43', 0, 0, 1, '2024-05-07', 1, 4, '340653', false), - (85984, '2024-05-10 23:12:19.872121+00', '0x22ea4731864645fa33be4af06bc0cd6bc942adc6', 0, 0, 1, '2024-05-06', 2, 7, '507797', false), - (84838, '2024-05-10 23:12:16.35188+00', '0x577a72f341252a8704647be6f0b9d34e78f1b750', 0, 0, 1, '2024-05-05', 3, 15, '500876', false), - (86456, '2024-05-10 23:12:21.576937+00', '0xd5a8f4df9163c0a76301bbfc0152b35b70e46c5e', 0, 0, 1, '2024-05-06', 1, 5, '426559', false), - (83413, '2024-05-10 23:12:12.027292+00', '0xc734e7a063fb4c0d5fe27d95b7d031f8e2f6379e', 0, 0, 1, '2024-05-05', 4, 20, '435513', false), - (83033, '2024-05-10 23:12:10.688974+00', '0x9ed8cbe45d12f1bb8e1a43e24574490f894cc42e', 0, 0, 1, '2024-05-05', 7, 35, '499252', false), - (85693, '2024-05-10 23:12:19.097704+00', '0x54922ccfe5b1e5f66f670fedd51d43cc843d569b', 0, 0, 1, '2024-05-07', 1, 2, '239704', false), - (88812, '2024-05-10 23:12:27.707767+00', '0x0055354f80275a5fc29d43feed8ce64701579cad', 6917, 6917, 1, '2024-03-29', 6, 15, '24178', true), - (84972, '2024-05-10 23:12:16.908641+00', '0x6b269da0be64e15f65138a311615857b00bb9a4e', 0, 0, 1, '2024-05-07', 1, 5, '455883', false), - (84241, '2024-05-10 23:12:14.403819+00', '0x76fbdc28e90553d9f979140c6f7fc4565ebbecf3', 3996, 1596, 1, '2024-05-06', 5, 19, '245024', true), - (89017, '2024-05-10 23:12:28.447487+00', '0x61eaef4876d6531378726f8b3300dbf440d97f69', 1732, 1732, 1, '2024-04-01', 1, 1, '192267', true), - (88518, '2024-05-10 23:12:26.969989+00', '0x4b8e385ee27545cd5e90ccb8c67a232143559708', 2086, 2086, 1, '2024-05-04', 1, 5, '213559', true), - (89022, '2024-05-10 23:12:28.463343+00', '0xb398447e51c621ed7f87c322bf1caa5f27e48feb', 6676, 6676, 1, '2023-05-22', 3, 9, '2111', true), - (85884, '2024-05-10 23:12:19.603897+00', '0xf63b3ce2d038f11ca4fc5e11265b7b4417a16adc', 1953, 1953, 1, '2024-05-06', 1, 5, '187825', true), - (89843, '2024-05-10 23:12:31.014424+00', '0xb03f5438f9a243de5c3b830b7841ec315034cd5f', 3734, 3734, 1, '2023-05-23', 2, 0, '7097', true), - (83428, '2024-05-10 23:12:12.044314+00', '0xd1642fcc093202f30e64d28eb8de8d0714958f8f', 5524, 5524, 1, '2024-05-07', 8, 40, '245124', true), - (88820, '2024-05-10 23:12:27.784108+00', '0x9387b5a08d050427f74cc9949d811eb6eaee1090', 1955, 1955, 1, '2024-04-11', 1, 2, '3608', true), - (89071, '2024-05-10 23:12:28.587554+00', '0xb71b50ed3cd27588888ab40062d11be71f19088e', 1430, 1430, 1, '2024-03-22', 1, 0, '265108', true), - (88484, '2024-05-10 23:12:26.949088+00', '0x7f35303825129989c8b20cf99bafa5e8563e05e6', 2086, 2086, 1, '2024-05-04', 1, 5, '328124', true), - (74495, '2024-05-10 23:11:45.759622+00', '0x15caab4b9adbafb0050a8d2fa5de68cd6aebb6ee', 3930, 3930, 1, '2024-05-02', 5, 5, '17892', true), - (88826, '2024-05-10 23:12:27.792317+00', '0x846ada7377d586ec7a55599deee5fdd716138348', 3886, 3886, 1, '2024-03-24', 2, 8, '364883', true), - (91452, '2024-05-10 23:12:35.669294+00', '0x6e9fd384cb13ff073cd3b2ae0d40b5b010ede04e', 3094, 3094, 1, '2024-04-01', 2, 4, '262292', true), - (92517, '2024-05-10 23:12:38.550247+00', '0x9134fc7112b478e97ee6f0e6a7bf81ecafef19ed', 3538, 3538, 1, '2024-02-05', 2, 3, '9702', true), - (91695, '2024-05-10 23:12:36.399502+00', '0x380336041fed6d3de0c0a1f5079668760cd64779', 1787, 1787, 1, '2024-03-26', 1, 1, '12990', true), - (82857, '2024-05-10 23:12:10.168516+00', '0x78a325fab6734b61a5f347adaa9ec9e79ff70204', 3132, 3132, 1, '2024-05-04', 3, 12, '208481', true), - (89078, '2024-05-10 23:12:28.595955+00', '0xd91c8fe4ce51e400cee8a4ad49b774e7f2668200', 1851, 1851, 1, '2024-03-18', 1, 1, '7258', true), - (90131, '2024-05-10 23:12:32.03081+00', '0x7e8608f5893a6a57602a014ab190f7af8069d1e1', 0, 0, 1, '2024-04-16', 2, 2, '405607', false), - (91020, '2024-05-10 23:12:34.4349+00', '0x4cfd681d4d4652e4ee083bb638fdb49fe818a6cb', 0, 0, 1, '2024-04-13', 1, 1, '252159', false), - (90660, '2024-05-10 23:12:33.462262+00', '0x0d08ec62b556d3dec321a6097ab43c8488f9dfaf', 0, 0, 1, '2024-04-12', 4, 0, '477577', false), - (81654, '2024-05-10 23:12:06.626713+00', '0xd7e84d87e75a2a95554b67c5a79c7b90911a95e4', 0, 0, 1, '2024-05-08', 11, 14, '506165', false), - (84639, '2024-05-10 23:12:15.772074+00', '0xda46594a54f0400615772bf17bb63075c5331b94', 0, 0, 1, '2024-05-07', 1, 5, '420539', false), - (82426, '2024-05-10 23:12:08.840035+00', '0xda93e8f0eb79aca4bfae719ab3345960780d9ddc', 0, 0, 1, '2024-05-08', 6, 29, '420311', false), - (85950, '2024-05-10 23:12:19.846121+00', '0xf2becfc1a465ba07df7f6def03ba3f6a86a67b4c', 0, 0, 1, '2024-05-05', 4, 20, '499881', false), - (89206, '2024-05-10 23:12:28.900198+00', '0xba9f77bb2efdf3f4ee377f46d20926c6a82ba4c3', 0, 0, 1, '2024-02-07', 4, 3, '2678', false), - (83160, '2024-05-10 23:12:11.080488+00', '0x34ad6b081979c44ecf4402edbbe5c969b95e5b60', 0, 0, 1, '2024-05-07', 2, 10, '406046', false), - (86142, '2024-05-10 23:12:20.51942+00', '0x4a4d0964edb10863aa0a57746df31f8c4458e8c0', 0, 0, 1, '2024-05-06', 1, 5, '397290', false), - (83366, '2024-05-10 23:12:11.773778+00', '0xf0fe272b03a177301b3af721e451cdfe70ffd7e2', 0, 0, 1, '2024-05-07', 4, 15, '511743', false), - (83315, '2024-05-10 23:12:11.661702+00', '0x408c32e3f0f2cdd897408bac374985884ec6c21b', 0, 0, 1, '2024-05-08', 4, 16, '510521', false), - (73787, '2024-05-10 23:11:42.888766+00', '0xde6ab026bb29136523ec81c0673738c166ecc8f5', 15394, 15394, 1, '2024-04-09', 18, 67, '5197', true), - (90136, '2024-05-10 23:12:32.029476+00', '0x6e45310b69908a7490ebdbb66601462c8da6e46a', 3180, 3180, 1, '2024-05-07', 4, 12, '278653', true), - (91567, '2024-05-10 23:12:36.024165+00', '0x9235e63508e8d27e0cc858d059c752f8de4733c2', 3252, 3252, 1, '2024-03-22', 2, 4, '236171', true), - (89152, '2024-05-10 23:12:28.75627+00', '0xceed9585854f12f81a0103861b83b995a64ad915', 7346, 7346, 1, '2023-09-27', 4, 11, '4167', true), - (89815, '2024-05-10 23:12:30.887347+00', '0x141edb16c70307cf2f0f04af2dda75423a0e1bea', 2013, 2013, 1, '2023-08-01', 1, 0, '548', true), - (90503, '2024-05-10 23:12:32.960285+00', '0xd3c45a5b9aea1cd78c7a2527012bc4acec9c8050', 8821, 8821, 1, '2024-03-11', 7, 28, '12871', true), - (92613, '2024-05-10 23:12:38.864802+00', '0x5ae019f7ee28612b058381f4fea213cc90ee88a4', 0, 0, 1, '2024-02-07', 1, 5, '212156', false), - (92592, '2024-05-10 23:12:38.78848+00', '0x4a533b740190160c09ecb5caa5fc83a44f34b44b', 0, 0, 1, '2024-02-07', 2, 5, '279288', false), - (92641, '2024-05-10 23:12:38.959326+00', '0x5ee5b07ba735e7ce7ce29079651259232c104eb1', 0, 0, 1, '2024-02-06', 1, 3, '260891', false), - (92659, '2024-05-10 23:12:38.985823+00', '0x807be4dc1f6308d962cc13d7a0b834aeaeb0b8a6', 0, 0, 1, '2024-02-06', 1, 5, '265594', false), - (92678, '2024-05-10 23:12:39.08354+00', '0x9bc4fce57605bcd9ffcf5a4e21c0daca23f556b6', 0, 0, 1, '2024-02-06', 1, 1, '251415', false), - (92695, '2024-05-10 23:12:39.113029+00', '0x3dccaa5fd08c599d95eff1bc4de3a2f6e8203232', 0, 0, 1, '2024-02-06', 1, 0, '267185', false), - (91256, '2024-05-10 23:12:35.053853+00', '0xbc7601297d818ca5355f861f4588d5948b2c59d8', 3340, 3340, 1, '2024-02-05', 2, 2, '240499', true), - (89341, '2024-05-10 23:12:29.416456+00', '0xeb54d707252ee9e26e6a4073680bf71154ce7ab5', 15087, 15087, 1, '2023-09-12', 11, 15, '3441', true), - (79697, '2024-05-10 23:12:00.665657+00', '0x60ec4fd8069513f738f3a0f41b9e00c294e74bf3', 77976, 77976, 1, '2023-05-23', 75, 67, '12144', true), - (91538, '2024-05-10 23:12:35.921877+00', '0x730e580e5ab43b5ecae7dc0f8e6926366d82d46b', 1368, 1368, 1, '2024-03-31', 1, 0, '424937', true), - (90030, '2024-05-10 23:12:31.674649+00', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 24060, 24060, 1, '2024-03-18', 28, 42, '253410', true), - (92213, '2024-05-10 23:12:37.764787+00', '0x7fdd26b919b651054f475e2c995720808b4cb6d7', 2781, 2781, 1, '2024-02-27', 1, 3, '16085', true), - (89004, '2024-05-10 23:12:28.346587+00', '0x7049871039097e61b1ae827e77abb1c9a0b14061', 11813, 11813, 1, '2024-03-30', 12, 37, '401266', true), - (90481, '2024-05-10 23:12:32.941799+00', '0x921fc6cf9334a6248d6b9f460aa32c5914778f82', 2886, 2886, 1, '2024-04-30', 2, 9, '6122', true), - (93243, '2024-05-10 23:12:40.565982+00', '0x77a3463bf15ce17af5722c2d948a85ce58987152', 0, 0, 1, '2024-02-06', 1, 5, '244062', false), - (90475, '2024-05-10 23:12:32.933129+00', '0x342a3002fe7b0424a1559f8ef0f0c29788cecdb2', 0, 0, 1, '2024-03-25', 4, 17, '407836', false), - (89894, '2024-05-10 23:12:31.135401+00', '0x512b55b00d744fc2edb8474f223a7498c3e5a7ce', 67727, 67727, 1, '2024-03-04', 92, 111, '262450', true), - (90290, '2024-05-10 23:12:32.424925+00', '0x354d4d759c49094f60d537bfd7177c05b70c20cc', 9900, 9900, 1, '2023-07-13', 6, 11, '6906', true), - (92288, '2024-05-10 23:12:37.975121+00', '0xbaa7ad8c875d67e93261bea6f7bd3a2fd2b1c864', 2013, 2013, 1, '2024-02-21', 1, 1, '2091', true), - (90213, '2024-05-10 23:12:32.265365+00', '0x0bebe2165de412e7925ab8352e36f3b0493dd3b9', 9566, 9566, 1, '2023-12-25', 7, 11, '194233', true), - (93090, '2024-05-10 23:12:40.171762+00', '0xe3b9c4b3d23fce4fc32ae90b3b728f996e3dc076', 0, 0, 1, '2024-02-06', 1, 0, '252673', false), - (93718, '2024-05-10 23:12:41.971762+00', '0x5047d41b57a38c43c2bd04fe0ea83fbdcfc8ffca', 3563, 3563, 1, '2023-11-08', 2, 1, '552', true), - (89877, '2024-05-10 23:12:31.117611+00', '0xda469a6c78d12996895721fceba62e510b38faf3', 27076, 27076, 1, '2024-05-03', 54, 172, '243818', true), - (90739, '2024-05-10 23:12:33.611115+00', '0x368f593244f04c599b3328a23493680b23818fa6', 1736, 1736, 1, '2024-04-23', 1, 2, '1054', true), - (89139, '2024-05-10 23:12:28.736514+00', '0x1d862756d01cbc60dfb0ecaabbca454c1002c6c7', 3026, 3026, 1, '2024-03-12', 2, 2, '325644', true), - (90996, '2024-05-10 23:12:34.412576+00', '0x2439ee8e567c2ade0b481cad403ff1f3ae65a73a', 1254, 1254, 1, '2024-04-13', 1, 0, '319612', true), - (88815, '2024-05-10 23:12:27.709849+00', '0xbda96bf910fd8b3731ce567a78ad3eb439efe54c', 2803, 2803, 1, '2024-04-15', 1, 5, '414383', true), - (90642, '2024-05-10 23:12:33.364314+00', '0xb72dc1e80a501256ed235a32a815b78fddfbf811', 1359, 1359, 1, '2024-04-27', 1, 1, '244597', true), - (88546, '2024-05-10 23:12:27.074854+00', '0xf6f92a1e3eee58e3717cf3c074185c9101e86b47', 26608, 26608, 1, '2024-03-20', 32, 44, '335788', true), - (90623, '2024-05-10 23:12:33.350168+00', '0x1e66a3d0a6a327b1f29e8acf3a3d9e1e4e088683', 9674, 9674, 1, '2024-04-20', 12, 15, '3726', true), - (91499, '2024-05-10 23:12:35.795308+00', '0xbeec75a2025b34767cb60f0bea5c4c8be489ba6d', 4988, 4988, 1, '2024-03-17', 3, 12, '378', true), - (93853, '2024-05-10 23:12:42.480013+00', '0xd12b78df063fc4bc7bb12cf1f060b55a15dd759d', 2104, 2104, 1, '2023-05-08', 1, 0, '2236', true), - (88924, '2024-05-10 23:12:28.07196+00', '0xb387175b8b9ec0534407cafc2919e17ad89260ce', 2880, 2880, 1, '2024-04-04', 2, 3, '355271', true), - (89046, '2024-05-10 23:12:28.483966+00', '0x73954a7081ae0be4a0b1d3bdea98666ea8aa0ba8', 1376, 1376, 1, '2024-03-30', 1, 0, '4324', true), - (89364, '2024-05-10 23:12:29.537762+00', '0x8760e565273b47195f76a22455ce0b68a11af5b5', 1625, 1625, 1, '2024-02-10', 1, 0, '246784', true), - (89502, '2024-05-10 23:12:30.008889+00', '0x6837047f46da1d5d9a79846b25810b92adf456f6', 6491, 6491, 1, '2023-11-20', 4, 6, '189312', true), - (89896, '2024-05-10 23:12:31.138813+00', '0xc60a0a0e8bbc32dac2e03030989ad6bee45a874d', 2117, 2117, 1, '2023-04-24', 1, 0, '56', true), - (90363, '2024-05-10 23:12:32.655196+00', '0x88d9b709ddd27dd1dd1c761352e52a1c96bc78e7', 1167, 1167, 1, '2024-05-04', 1, 1, '193158', true), - (93131, '2024-05-10 23:12:40.289742+00', '0x15f6cd177aa8fe97e7d00edb3beed4bea0cd96e3', 0, 0, 1, '2024-02-06', 1, 5, '269862', false), - (92411, '2024-05-10 23:12:38.281817+00', '0xea990ae72939b8751cb680919c6b64a05b8e1451', 3360, 3360, 1, '2024-02-02', 2, 2, '13642', true), - (89111, '2024-05-10 23:12:28.707239+00', '0x1d671d1b191323a38490972d58354971e5c1cd2a', 20879, 20879, 1, '2023-08-15', 16, 24, '4134', true), - (89860, '2024-05-10 23:12:31.030489+00', '0xae66ecab11d3678ec09bb1a2c560cb609bae50a4', 2042, 2042, 1, '2023-07-07', 1, 0, '8988', true), - (92202, '2024-05-10 23:12:37.752894+00', '0xc7a0d765c3af6e2710ba05a56c5e2ca190c2e11e', 3617, 3617, 1, '2023-12-19', 2, 2, '3895', true), - (91665, '2024-05-10 23:12:36.372678+00', '0x216222ec646e764da7995ed3c02848568072cb58', 1404, 1404, 1, '2024-03-26', 1, 0, '198116', true), - (91701, '2024-05-10 23:12:36.410307+00', '0x6047f8052d8fcf8e38be56692360e47c646915ba', 1404, 1404, 1, '2024-03-26', 1, 0, '395470', true), - (89557, '2024-05-10 23:12:30.24942+00', '0xeb95ff72eab9e8d8fdb545fe15587accf410b42e', 4749, 4749, 1, '2023-11-23', 3, 1, '5543', true), - (89637, '2024-05-10 23:12:30.461368+00', '0x6be2676dddaeb63d4dab83e341d3abaef752a1a4', 3718, 3718, 1, '2023-09-20', 2, 1, '16066', true), - (91410, '2024-05-10 23:12:35.535939+00', '0x0ee25bd99736d898130edb98d343312f6688a50a', 24094, 24094, 1, '2023-12-17', 22, 25, '191554', true), - (92530, '2024-05-10 23:12:38.636526+00', '0x51545dee0671b910b8f12de6760a83f781922030', 3702, 3702, 1, '2024-02-09', 1, 5, '2240', true), - (91056, '2024-05-10 23:12:34.566844+00', '0x01cd67cfc920761785d24e697b60587cc89e85c3', 1274, 1274, 1, '2024-04-11', 1, 0, '205891', true), - (91075, '2024-05-10 23:12:34.5842+00', '0xc7f2be6f8890d98277c848c8904ec2a4879dfc25', 1622, 1622, 1, '2024-04-11', 1, 1, '238087', true), - (75404, '2024-05-10 23:11:48.37115+00', '0xa30aebe21c244293811659661714147975d50d74', 0, 0, 1, '2024-03-28', 9, 8, '402840', false), - (73986, '2024-05-10 23:11:44.267031+00', '0xdf24fa7d7d0b869e05016495f23dc89eecd0a878', 0, 0, 1, '2024-05-05', 8, 40, '514319', false), - (94524, '2024-05-12 06:00:33.836704+00', '0xe8cd832a067869379f3175197e8fa9ce04a82d70', 0, 0, 1, '2024-05-11', 1, 5, '362396', false), - (94559, '2024-05-12 06:00:34.165666+00', '0x746a1972a8be480de8d59ad7c451e16e16b40089', 0, 0, 1, '2024-05-11', 1, 4, '420255', false), - (82148, '2024-05-10 23:12:08.143692+00', '0xe2a96c1f5bbebf0c0a1fc9890bc359104c9054e1', 0, 0, 1, '2024-05-05', 9, 41, '381369', false), - (88797, '2024-05-10 23:12:27.694946+00', '0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426', 146910, 146910, 1, '2023-07-14', 165, 311, '14537', true), - (92025, '2024-05-10 23:12:37.260556+00', '0x3bd4c721c1b547ea42f728b5a19eb6233803963e', 4135, 4135, 1, '2024-01-08', 2, 5, '946', true), - (91409, '2024-05-10 23:12:35.536324+00', '0x906b4568d82b194ca9190f7bb0473f094c89f29f', 0, 0, 1, '2024-04-03', 1, 0, '232231', false), - (93339, '2024-05-10 23:12:40.849641+00', '0xe24be815d490264a641951d39e8bb0742116df7b', 3743, 3743, 1, '2024-02-04', 1, 5, '249841', true), - (93611, '2024-05-10 23:12:41.670433+00', '0x89e22e1912d840bb61e315f0dd6c7610801dfe58', 3171, 3171, 1, '2023-12-21', 1, 3, '21417', true), - (93350, '2024-05-10 23:12:40.860913+00', '0x3333942da1395f5f93d2f5532cd18e92b24db5e5', 0, 0, 1, '2024-02-04', 1, 1, '240733', false), - (87438, '2024-05-10 23:12:24.264617+00', '0xd24df79bd6588a9f16205a4976ee1a7c0faccebb', 0, 0, 1, '2024-05-05', 1, 4, '386015', false), - (73803, '2024-05-10 23:11:42.932282+00', '0x688f1d8b0c59e9716d3512a0cbf32cda837544dc', 30807, 30257, 1, '2024-03-15', 37, 83, '355566', true), - (76219, '2024-05-10 23:11:50.666685+00', '0x5fa05c69dc06cad49fb77e9b356c9f0bfa3ebd00', 0, 0, 1, '2024-04-22', 1, 4, '16064', false), - (73855, '2024-05-10 23:11:43.132768+00', '0xfb12ae037c51fa0026ab54678c0111c77ce4057c', 20520, 20520, 1, '2024-03-01', 21, 61, '10971', true), - (74296, '2024-05-10 23:11:45.241085+00', '0x68abc0679a9ddaf7569255ca71993ab759f4e8e1', 16186, 16186, 1, '2024-03-28', 18, 40, '324876', true), - (74646, '2024-05-10 23:11:46.320008+00', '0x39fb5d6b4410824deb0c88b26747b2f3b7733701', 0, 0, 1, '2024-05-07', 1, 0, '505892', false), - (73799, '2024-05-10 23:11:42.932364+00', '0x7b753919b953b1021a33f55671716dc13c1eae08', 8168, 8168, 1, '2024-02-19', 6, 19, '633', true), - (74023, '2024-05-10 23:11:44.435909+00', '0xabb485fdc925dc375b5d095a30fcae7f136fd007', 3825, 3825, 1, '2024-03-05', 2, 6, '1317', true), - (73778, '2024-05-10 23:11:42.785148+00', '0xd8fe942c2bd17c3b73892eee55934308e9463e62', 12880, 12880, 1, '2024-04-13', 15, 51, '397691', true), - (73857, '2024-05-10 23:11:43.134118+00', '0x76d018a493e9795d6a6331b0bb6472977319638b', 13655, 13655, 1, '2024-02-09', 12, 24, '296737', true), - (73813, '2024-05-10 23:11:42.955448+00', '0xfcdd256267ade068babfb94f526a47aadf143a55', 11625, 11625, 1, '2023-10-16', 8, 16, '521', true), - (73833, '2024-05-10 23:11:43.069621+00', '0x4fe4f54474fd3b1196bf865ae59021bf8b6eb1c9', 4336, 4336, 1, '2023-08-01', 2, 3, '9710', true), - (93470, '2024-05-10 23:12:41.206158+00', '0x87690be28b65f13394741c2c2be5a6bdb0505039', 5253, 5253, 1, '2024-01-09', 3, 7, '19858', true), - (93815, '2024-05-10 23:12:42.29121+00', '0x952580d41f10db41d97fcd6b1984bc2538eefc2c', 3106, 3106, 1, '2023-07-22', 1, 2, '2163', true), - (93502, '2024-05-10 23:12:41.325956+00', '0xd26b76e50f6510cdd4bf45d59279705f36946d23', 3079, 3079, 1, '2024-01-10', 1, 3, '3747', true), - (93532, '2024-05-10 23:12:41.368898+00', '0x035ebd096afa6b98372494c7f08f3402324117d3', 2203, 2203, 1, '2024-01-07', 1, 1, '13094', true), - (91827, '2024-05-10 23:12:36.760235+00', '0x7a55aae410ff412f39b023e9b5e2e5dbc9a58f68', 22676, 22676, 1, '2023-05-16', 16, 56, '621', true), - (76553, '2024-05-10 23:11:51.554403+00', '0xe06ce2ca5418f0763e9091f5bb348707a1b65bde', 16307, 15297, 1, '2023-10-30', 13, 7, '190968', true), - (74536, '2024-05-10 23:11:45.886673+00', '0x668ee345328e3fefc99bc1c3745cc2ae345e32bc', 2404, 2404, 1, '2024-05-08', 3, 7, '5305', true), - (73824, '2024-05-10 23:11:43.056391+00', '0xe6922d3ca96e64b48ed9bfecc5b961de8c58be54', 16813, 16813, 1, '2024-01-20', 15, 22, '210744', true), - (73791, '2024-05-10 23:11:42.830424+00', '0x624516c0b381e643962ee9a1ce0f6eda022e6fb3', 33819, 33819, 1, '2024-04-04', 46, 183, '405348', true), - (73975, '2024-05-10 23:11:44.242446+00', '0x38b6b4387ff2776678e2b42f5eb2af4a452177d7', 1599, 1599, 1, '2024-05-10', 1, 5, '81', true), - (76014, '2024-05-10 23:11:49.902249+00', '0x4a42c5633bd9ff0dbf95a5987d3270e1f20b1553', 2266, 2266, 1, '2024-04-19', 2, 1, '278838', true), - (75941, '2024-05-10 23:11:49.657557+00', '0xc324429ac3f275d02cb4134114b55c0682dfc027', 2239, 2239, 1, '2024-04-25', 1, 4, '239294', true), - (75880, '2024-05-10 23:11:49.523387+00', '0xf8875523cbd4226369cc7022f208f2609adc1d0e', 2874, 2874, 1, '2024-03-09', 2, 1, '14330', true), - (74003, '2024-05-10 23:11:44.288962+00', '0xd35d60b1746caec2289c892eac7351d66d63455b', 15274, 15274, 1, '2023-10-25', 11, 37, '18325', true), - (74847, '2024-05-10 23:11:46.974641+00', '0x8379bd16381620914d8fa3d535f6ca9ef23ece53', 20751, 20751, 1, '2023-08-29', 16, 27, '9135', true), - (76409, '2024-05-10 23:11:51.18527+00', '0xb70399fc376c1b3cf3493556d2f14942323ef44f', 4887, 4887, 1, '2024-02-04', 3, 6, '230147', true), - (75447, '2024-05-10 23:11:48.419415+00', '0x5063bb431cb9f2745cc03680d931588add964bcb', 2199, 2199, 1, '2024-05-02', 1, 5, '362884', true), - (75582, '2024-05-10 23:11:48.786086+00', '0x199554ccb0c7e11a8c5275a41f3e61a92c235846', 4199, 4199, 1, '2024-04-20', 4, 7, '409573', true), - (76068, '2024-05-10 23:11:50.119179+00', '0x5561974f0d35d8c355241a5568894df7b691bb28', 1996, 1996, 1, '2024-04-24', 1, 3, '306', true), - (76583, '2024-05-10 23:11:51.662595+00', '0xd2bc5cb641ae6f7a880c3dd5aee0450b5210be23', 1525, 1525, 1, '2024-04-18', 1, 1, '234321', true), - (76245, '2024-05-10 23:11:50.80965+00', '0xd5ae5b9c02413cf22cd49d009c4344f71776f4a8', 3066, 3066, 1, '2024-04-16', 3, 0, '380730', true), - (75895, '2024-05-10 23:11:49.609473+00', '0x45f9a2351486dcf2f8b0f73541b93c4de6d4920e', 2600, 2600, 1, '2024-04-01', 2, 1, '343266', true), - (76845, '2024-05-10 23:11:52.301289+00', '0xc682131e3b82d2ba073f33f0889c36e52b4ba402', 3466, 3466, 1, '2024-03-19', 2, 5, '1642', true), - (76480, '2024-05-10 23:11:51.410324+00', '0xe05149b1f3fc90b1832106233616abf1eed1a127', 3508, 3508, 1, '2024-03-16', 2, 5, '20633', true), - (75643, '2024-05-10 23:11:48.900109+00', '0x0f23189b256939996dec01766f6b2e581afb5bb3', 3215, 3215, 1, '2024-04-29', 3, 8, '4513', true), - (74064, '2024-05-10 23:11:44.501413+00', '0xf58d4bcf9bf4d30334dfed66d5d4db63147979b1', 1149, 1149, 1, '2024-05-09', 1, 2, '335383', true), - (75471, '2024-05-10 23:11:48.512443+00', '0x6acdf2954ceeecdf9e938cab389c942cad6fbd66', 1518, 1518, 1, '2024-05-01', 1, 2, '4463', true), - (76504, '2024-05-10 23:11:51.438191+00', '0x70ece45cdc64a768f936ccb8ac851578251363e3', 9186, 9186, 1, '2024-01-31', 7, 15, '114', true), - (75815, '2024-05-10 23:11:49.382435+00', '0x76963ee4c482fa4f9e125ea3c9cc2ea81fe8e8c6', 1638, 1638, 1, '2024-04-27', 1, 2, '2600', true), - (75370, '2024-05-10 23:11:48.265824+00', '0xd76ff76ac8019c99237bde08d7c39dab5481bed2', 3521, 3521, 1, '2024-04-19', 2, 10, '20384', true), - (75228, '2024-05-10 23:11:47.928277+00', '0xec8b6b6ee8dc5c6631747bdc6b1400aff08829fd', 3231, 3231, 1, '2024-05-05', 3, 15, '9856', true), - (75757, '2024-05-10 23:11:49.257281+00', '0x33f858b3a2ef0b1d725e841e4993d396fef94ecf', 3349, 3349, 1, '2024-04-16', 2, 8, '253764', true), - (76801, '2024-05-10 23:11:52.172219+00', '0x90a27636185791da13e786a4a9dafcf2e2490f2e', 1874, 1874, 1, '2024-04-16', 1, 2, '225851', true), - (77355, '2024-05-10 23:11:53.812295+00', '0xdec7778a7e416b0f4988bb1faff70ce9fad6c233', 1646, 1646, 1, '2024-04-09', 1, 1, '10548', true), - (77321, '2024-05-10 23:11:53.71348+00', '0xbe67de0c3f7650b958aabdfff3bbd8d55d5c2ccd', 2920, 2920, 1, '2024-04-10', 1, 5, '4790', true), - (77271, '2024-05-10 23:11:53.538186+00', '0xa1e4f7dc1983fefe37e2175524ebad87f1c78c3c', 6524, 6524, 1, '2024-03-28', 6, 6, '238069', true), - (76072, '2024-05-10 23:11:50.125564+00', '0x58c7f158b78e896c94c0c9787c8703612e6c496f', 4608, 4608, 1, '2024-02-07', 3, 4, '249332', true), - (79546, '2024-05-10 23:12:00.24872+00', '0x2666f0c8fb58d182f2dd79475dca4a07b3724607', 4447, 4447, 1, '2023-12-22', 2, 6, '9280', true), - (76552, '2024-05-10 23:11:51.538077+00', '0x51e6f5560c7ac0ab63fa4e0f77375172d6775ab5', 8097, 8097, 1, '2023-08-17', 5, 5, '5948', true), - (76124, '2024-05-10 23:11:50.343324+00', '0xd25ad8d836bf95e2876e34d6e46635a90c38bb86', 12143, 12143, 1, '2023-06-16', 8, 7, '13437', true), - (76669, '2024-05-10 23:11:51.823581+00', '0x04333a1788a47068b9102d2d35695c312a0b312f', 6938, 6938, 1, '2023-09-04', 4, 6, '12938', true), - (75398, '2024-05-10 23:11:48.295071+00', '0xa656beba855e80383e4502549ada7adf2e99d441', 7559, 7559, 1, '2024-04-07', 7, 23, '390829', true), - (76376, '2024-05-10 23:11:51.088298+00', '0xcd3173b09c603f273b33508cbb90f2f1da47cea7', 3318, 3318, 1, '2024-02-08', 2, 2, '19777', true), - (74780, '2024-05-10 23:11:46.827609+00', '0xaee1a84fc6ac84b4dcbf41afad46c73682c739c2', 5391, 5391, 1, '2024-02-13', 3, 11, '896', true), - (78744, '2024-05-10 23:11:57.81741+00', '0x9eddfe3a95aa77e4f6509927de67bb1eaae3b382', 0, 0, 1, '2024-03-06', 1, 5, '14123', false), - (74699, '2024-05-10 23:11:46.468738+00', '0xd8266b8f1eb535459f3e79730058cb0daadcabbf', 826, 826, 1, '2024-05-07', 1, 0, '191774', true), - (76178, '2024-05-10 23:11:50.525854+00', '0x18fc3c60a80ba26a076cf633c239df0e2e80a797', 9435, 9435, 1, '2024-02-19', 7, 29, '20270', true), - (76963, '2024-05-10 23:11:52.552288+00', '0x18190f18098fa97f36e398a26be613cb2c1c2eb0', 17729, 17729, 1, '2023-08-19', 13, 24, '3609', true), - (75679, '2024-05-10 23:11:49.025056+00', '0x571877b13259b95221da35fb4ee29685375fd96a', 6050, 6050, 1, '2024-04-14', 6, 11, '216282', true), - (76361, '2024-05-10 23:11:51.067595+00', '0x140a2ce1f458b2fb07950dce32e367ce26685b54', 1493, 1493, 1, '2024-04-20', 1, 1, '272682', true), - (74730, '2024-05-10 23:11:46.580231+00', '0xc322e8ec33e9b0a34c7cd185c616087d9842ad50', 5650, 5650, 1, '2024-02-09', 4, 5, '809', true), - (79630, '2024-05-10 23:12:00.527502+00', '0x808a2adbd0a3fc679e3f7cd18d4f579bfcaaec9c', 3711, 3711, 1, '2024-02-08', 1, 5, '30', true), - (74018, '2024-05-10 23:11:44.432816+00', '0x4960b5248ea4416d6f1574344825afd6f5228487', 5206, 5206, 1, '2023-11-17', 3, 4, '18506', true), - (76599, '2024-05-10 23:11:51.689523+00', '0xf9e545f86d545d4515426f90ed34dda1289a53dd', 10645, 10645, 1, '2023-04-27', 6, 16, '73', true), - (79317, '2024-05-10 23:11:59.556795+00', '0x4b1de248cfa395a24f32a4f60da42ea511a098b4', 3273, 3273, 1, '2024-02-14', 2, 2, '204456', true), - (73868, '2024-05-10 23:11:43.162908+00', '0xb32044d6911effab4f19a143a9cecd886403003e', 4411, 4411, 1, '2024-05-07', 6, 25, '276109', true), - (74881, '2024-05-10 23:11:47.068182+00', '0x1da6a4cf0a189fff6c3bfc383941a898baa2c503', 1093, 1093, 1, '2024-05-06', 1, 1, '368013', true), - (76765, '2024-05-10 23:11:52.068677+00', '0xa1aafb06268f3396c4683e3f635a4aff0e040e46', 2752, 2752, 1, '2024-04-17', 1, 5, '15696', true), - (74028, '2024-05-10 23:11:44.445987+00', '0xeea5e23c7a42bfbf2c5bf0228e82f2f2dddc9fd3', 5943, 5943, 1, '2024-04-16', 6, 11, '265749', true), - (75422, '2024-05-10 23:11:48.396056+00', '0x4b09a379d88450bce02dba991dfcff787d7b7ba6', 1483, 1483, 1, '2024-05-02', 1, 2, '366795', true), - (75825, '2024-05-10 23:11:49.389259+00', '0x1012270925a4f629b2f6e006a2416d855c6a2444', 11335, 11335, 1, '2024-02-19', 10, 13, '193958', true), - (75875, '2024-05-10 23:11:49.518775+00', '0x9315753ef081dfb2db63bd51e1c48c83dd2680b0', 1664, 1664, 1, '2024-04-26', 1, 2, '241000', true), - (74928, '2024-05-10 23:11:47.186225+00', '0x45db9d3457c2cb05c4bfc7334a33cee6e19d508f', 24628, 24628, 1, '2023-11-16', 21, 63, '2802', true), - (76648, '2024-05-10 23:11:51.799707+00', '0x96a77560146501eaeb5e6d5b7d8dd1ed23defa23', 20084, 20084, 1, '2023-05-11', 14, 34, '557', true), - (76969, '2024-05-10 23:11:52.55609+00', '0x8a95d5f9ac0eebd5880199ea8fcd0fae845bbbf2', 12383, 12383, 1, '2023-05-06', 8, 7, '451', true), - (74933, '2024-05-10 23:11:47.186449+00', '0xdade5cb63f0e01c5b1de355d526f4376aebbf0a5', 8127, 8127, 1, '2024-04-21', 9, 33, '4316', true), - (75054, '2024-05-10 23:11:47.526364+00', '0x568b9bfff4a3a7c7351db84ec2f4ad4ca147a1d0', 3231, 3231, 1, '2024-05-05', 3, 15, '4065', true), - (76871, '2024-05-10 23:11:52.327539+00', '0xb82764654369ace610fea04e2fe9f1942ff53ae0', 2778, 2778, 1, '2024-04-16', 1, 5, '369619', true), - (75261, '2024-05-10 23:11:48.024304+00', '0xf49cc2079fa1280fbb535ac8f5ab31f12541e660', 2684, 2684, 1, '2024-04-06', 2, 2, '312790', true), - (75583, '2024-05-10 23:11:48.77891+00', '0x653d6d7da3c856fd5ddec464a4b11d7831899cd1', 13643, 13643, 1, '2024-02-06', 12, 20, '298916', true), - (74916, '2024-05-10 23:11:47.173982+00', '0x37a6156e4a6e8b60b2415af040546cf5e91699bd', 2983, 2983, 1, '2024-04-29', 3, 5, '19793', true), - (76155, '2024-05-10 23:11:50.507152+00', '0x285d3a530035fc5260b411f1a908dcac7bd34f80', 7728, 7728, 1, '2023-11-09', 5, 7, '625', true), - (74207, '2024-05-10 23:11:44.958316+00', '0x3994537274f3ff3eefc413e0d669b05d6446d46b', 4551, 4551, 1, '2024-05-08', 7, 23, '761', true), - (75985, '2024-05-10 23:11:49.812392+00', '0x32ec773ed7b5a54d1f0ac77944caf76ed30e6b86', 6235, 6235, 1, '2024-04-05', 5, 20, '211124', true), - (76733, '2024-05-10 23:11:52.03052+00', '0xd3d70afe29beced2eb2ac1e407a2007150e2312e', 22937, 22937, 1, '2023-05-27', 17, 26, '2042', true), - (76141, '2024-05-10 23:11:50.488906+00', '0x7fc53dfff734d7cb9f533154344e4d569a34f8e8', 1132, 1132, 1, '2024-04-23', 1, 0, '309819', true), - (79062, '2024-05-10 23:11:58.713652+00', '0x3bf0f2caac44d853be372cb0286b00ddbad98767', 1578, 1578, 1, '2024-02-22', 1, 0, '790', true), - (79005, '2024-05-10 23:11:58.520667+00', '0x5a60f7b95a8b120d8733b5720fda5f83554c0afd', 3677, 3677, 1, '2024-02-12', 2, 4, '195659', true), - (75830, '2024-05-10 23:11:49.394496+00', '0x7e799c969ea204a8b5f4d938407d9dc64dcc09e5', 6523, 6523, 1, '2024-02-27', 5, 8, '193699', true), - (77038, '2024-05-10 23:11:52.894861+00', '0xee0c0d565b483aaa02581841d071986e7dc00c82', 3501, 3501, 1, '2024-04-02', 3, 1, '227242', true), - (81734, '2024-05-10 23:12:06.772267+00', '0xe9a6cbd76db187757920854204dfed326cfb6d9d', 0, 0, 1, '2024-05-07', 12, 60, '426685', false), - (76902, '2024-05-10 23:11:52.427189+00', '0xae10415dcbcc2a7f13e9b302bb8585fdb60a66c9', 2416, 2416, 1, '2024-04-12', 2, 1, '421681', true), - (76396, '2024-05-10 23:11:51.181496+00', '0x5fc0d98edcc48a0d3b4d974c6af607a4b9f5e054', 2312, 2312, 1, '2024-04-17', 2, 1, '420612', true), - (76777, '2024-05-10 23:11:52.146286+00', '0x605e05bf092ebd18e06d1b0f699df5b9dd85d452', 5507, 5507, 1, '2023-08-04', 2, 8, '193', true), - (74883, '2024-05-10 23:11:47.065541+00', '0x29f562912d7ac4d8a9dc382873102167fd60d7e0', 2906, 2906, 1, '2024-05-05', 3, 10, '381086', true), - (74898, '2024-05-10 23:11:47.086741+00', '0x6d34927441c4a238a84f9f54a47d67cc3d55f575', 10327, 10327, 1, '2023-08-03', 6, 19, '6731', true), - (74643, '2024-05-10 23:11:46.316296+00', '0xec93285cadbafaea1df58af2e46c201fe4bfb9df', 8714, 8714, 1, '2024-04-05', 9, 12, '269385', true), - (75881, '2024-05-10 23:11:49.522368+00', '0x658884c6be7a46cc14229c7646a57c9e049f4a6a', 3072, 3072, 1, '2024-04-10', 2, 5, '403517', true), - (76656, '2024-05-10 23:11:51.808567+00', '0xcca549e788df73fdc69de96f057ae153dfce7420', 3735, 3735, 1, '2024-02-05', 2, 4, '247946', true), - (76889, '2024-05-10 23:11:52.412134+00', '0x0598594388e184b4a24bfae62f29cf2267f1b536', 2735, 2735, 1, '2024-04-03', 2, 2, '420014', true), - (74863, '2024-05-10 23:11:47.051193+00', '0x94edf2efbc71123fadd9d8ae4ec471419be43376', 3626, 3626, 1, '2024-04-01', 3, 2, '370822', true), - (75550, '2024-05-10 23:11:48.748575+00', '0x365c231a37e1de128e62cf173923a7fbae785860', 5155, 5155, 1, '2024-02-02', 3, 8, '252500', true), - (75811, '2024-05-10 23:11:49.374169+00', '0xee22b2cad0598df173099581ddec2c8b393152c3', 3883, 3883, 1, '2024-04-26', 4, 7, '466688', true), - (74027, '2024-05-10 23:11:44.446995+00', '0x19deaa4a250f87215e125a0eb93ad71138f3ed9b', 5310, 5310, 1, '2024-04-20', 5, 16, '374660', true), - (75568, '2024-05-10 23:11:48.767831+00', '0x5c7aa6c9ca8219a9887a9e16ab9a5bc283a928ff', 4525, 4525, 1, '2024-03-05', 3, 6, '10148', true), - (75722, '2024-05-10 23:11:49.139119+00', '0xbe40dcadb6bf4de1c7810eca3504e5f3bea9cf35', 4276, 4276, 1, '2024-02-09', 2, 7, '6473', true), - (75142, '2024-05-10 23:11:47.700459+00', '0x14af1e216f51704f5bbec7a30b37a9fb65f794c3', 3316, 3316, 1, '2024-04-24', 2, 10, '339174', true), - (76229, '2024-05-10 23:11:50.678153+00', '0x056d8e22759a9ae9359a21749c6d7d6c12d97177', 1146, 1146, 1, '2024-04-22', 1, 0, '21191', true), - (73880, '2024-05-10 23:11:43.341146+00', '0x657c1f8421ae93e88fb3171f019779e87b0263ca', 8872, 8872, 1, '2024-04-16', 9, 45, '10095', true), - (77136, '2024-05-10 23:11:53.165438+00', '0xb6712e0e348b0b7ec1cda3d72264d82db9b361ab', 2875, 2875, 1, '2024-04-12', 1, 5, '235170', true), - (75477, '2024-05-10 23:11:48.519729+00', '0x14fc0be8e90ab768226cccf952506ce00bde5029', 1768, 1768, 1, '2024-05-01', 1, 3, '12949', true), - (73927, '2024-05-10 23:11:43.543912+00', '0x8962b4ebe444f2fa4ef74e631a084726ad9bdc3d', 4163, 4163, 1, '2024-05-08', 6, 23, '394597', true), - (74307, '2024-05-10 23:11:45.251493+00', '0xaacd601c5377ddf3f1f41eb1758ba0d2fa2b39bd', 48709, 48709, 1, '2023-04-28', 42, 45, '11835', true), - (74308, '2024-05-10 23:11:45.229882+00', '0xe4848bab98fc72bea42977d957abeda4c2fce35f', 12304, 12304, 1, '2024-04-03', 13, 41, '328068', true), - (74321, '2024-05-10 23:11:45.344705+00', '0x632e7e4716394db3da527f4f0d979e3d60e5f9a7', 8646, 8646, 1, '2023-07-24', 5, 10, '39', true), - (74192, '2024-05-10 23:11:44.920086+00', '0x892e7d0d45171c97f2f1c73815c1cebef3d1f812', 12411, 12411, 1, '2024-03-11', 12, 19, '8885', true), - (74527, '2024-05-10 23:11:45.873197+00', '0x79c2d72552df1c5d551b812eca906a90ce9d840a', 5468, 5468, 1, '2024-04-13', 5, 12, '215322', true), - (73957, '2024-05-10 23:11:44.151771+00', '0xf5709071a0ae5c03d03e90ca9da5b82956354cbc', 4217, 4217, 1, '2024-03-02', 3, 3, '191326', true), - (76560, '2024-05-10 23:11:51.561866+00', '0xca39063539e71e572f1d2762ebaa61c8dd6d07bc', 4930, 4930, 1, '2023-06-20', 2, 5, '643', true), - (76917, '2024-05-10 23:11:52.443908+00', '0x7c9728736f4299e43545c7df677026d0b3d909fe', 3353, 3353, 1, '2023-12-29', 2, 1, '13846', true), - (77790, '2024-05-10 23:11:55.041059+00', '0x2bef4d96a329fd30d87faf6970ea8d697d9cc788', 15711, 15711, 1, '2023-05-28', 11, 5, '10703', true), - (74893, '2024-05-10 23:11:47.084847+00', '0xedd3783e8c7c52b80cfbd026a63c207edc9cbee7', 39484, 39484, 1, '2023-06-02', 33, 60, '4564', true), - (77364, '2024-05-10 23:11:53.824093+00', '0x7b9c8936a989b72613069386ce66b678ec44b6b6', 1646, 1646, 1, '2024-04-09', 1, 1, '296594', true), - (74271, '2024-05-10 23:11:45.19913+00', '0x33965b61b2f76dc0cd158d3ac67ddcf481e22704', 1005, 1005, 1, '2024-05-08', 1, 1, '8760', true), - (75931, '2024-05-10 23:11:49.641765+00', '0x150f498a6b5a926f2c01b557033d321e24833e1c', 17203, 17203, 1, '2023-06-18', 12, 21, '872', true), - (77565, '2024-05-10 23:11:54.423684+00', '0xfedeb3992cb5a8beb62d6503996825962a863e00', 1311, 1311, 1, '2024-04-07', 1, 0, '417178', true), - (77890, '2024-05-10 23:11:55.391338+00', '0xd5fb864acfd6bb2f72939f122e89ff7f475924f5', 4825, 4825, 1, '2023-10-05', 3, 0, '6116', true), - (77139, '2024-05-10 23:11:53.167443+00', '0x5090c4fead5be112b643bc75d61bf42339675448', 3784, 3784, 1, '2024-04-11', 2, 10, '1504', true), - (74411, '2024-05-10 23:11:45.520678+00', '0xe7925d190aea9279400cd9a005e33ceb9389cc2b', 14322, 14322, 1, '2024-02-06', 12, 47, '24', true), - (79045, '2024-05-10 23:11:58.62409+00', '0xfe819920199392cdd911acdaed84b38f30e27562', 5247, 5247, 1, '2024-02-15', 3, 10, '8447', true), - (77603, '2024-05-10 23:11:54.550407+00', '0x6c1f31a8721c82341a1d7bc00ff6103693bfa32d', 15690, 15690, 1, '2023-12-17', 13, 16, '17761', true), - (79028, '2024-05-10 23:11:58.610349+00', '0xa5d224b43eab837aa2ee9c6ed727f1613f301a5e', 4992, 4992, 1, '2023-12-22', 3, 4, '4282', true), - (76315, '2024-05-10 23:11:50.948162+00', '0x95f45afde79613c10634d82e94b2a0da5bd2d0c6', 4964, 4964, 1, '2024-04-16', 5, 5, '410523', true), - (74174, '2024-05-10 23:11:44.888417+00', '0x589ffbbda0eacd5a9c2ba208b379c886b2630503', 15256, 15256, 1, '2023-12-13', 12, 32, '9581', true), - (76557, '2024-05-10 23:11:51.560789+00', '0x50c206cbd44fe4f8ffd316094a5ea02e5f105ee8', 3646, 3646, 1, '2024-03-05', 2, 5, '350527', true), - (74262, '2024-05-10 23:11:45.098137+00', '0xa19b4fd4383a6b80e26578a604c36d60d1007e41', 2194, 2194, 1, '2024-05-04', 2, 5, '266845', true), - (76446, '2024-05-10 23:11:51.30886+00', '0x0cf68416279c2a9bcdd0fa6cc4e0347ac3d55d7d', 3114, 3114, 1, '2024-04-19', 2, 7, '16405', true), - (79055, '2024-05-10 23:11:58.631821+00', '0x423240bab9457f4ae3a69de5d6ad10f07dca1623', 2414, 2414, 1, '2024-02-23', 1, 2, '233242', true), - (79272, '2024-05-10 23:11:59.432869+00', '0xa62649da86cce4b2e350fa314d7f226a083cab46', 7811, 7811, 1, '2024-01-09', 5, 16, '1114', true), - (79382, '2024-05-10 23:11:59.697746+00', '0x5dd1b4c6132c175944c226fc89a8739b8bd9904e', 12301, 12301, 1, '2024-01-09', 10, 13, '6437', true), - (74258, '2024-05-10 23:11:45.084442+00', '0x9798a181e731ee9d3abffc5ae15c93ca3d95a8e3', 9248, 9248, 1, '2024-01-19', 7, 12, '7247', true), - (77089, '2024-05-10 23:11:53.034099+00', '0xbf46d2161045251cb97d0b41929bc1d36044e1a0', 13754, 13754, 1, '2024-03-30', 15, 28, '269321', true), - (77842, '2024-05-10 23:11:55.213381+00', '0x650d32dcfd3d33edb4f0ec5eb0169269d52eef64', 4546, 4546, 1, '2024-04-02', 4, 3, '436414', true), - (74042, '2024-05-10 23:11:44.477968+00', '0x2943e07ca68febc79533d321f5d427136995ecb6', 14769, 14769, 1, '2024-02-19', 14, 13, '223778', true), - (74276, '2024-05-10 23:11:45.200857+00', '0x01a719a37c75f63968c0e597318914fb3210608f', 34639, 34639, 1, '2024-01-31', 37, 70, '12036', true), - (75905, '2024-05-10 23:11:49.618585+00', '0x4a0833202f399e27d8e6af4388ac36af07f043d8', 1401, 1401, 1, '2024-04-25', 1, 1, '13707', true), - (76657, '2024-05-10 23:11:51.807707+00', '0x8fc5d6afe572fefc4ec153587b63ce543f6fa2ea', 7556, 7556, 1, '2023-06-02', 3, 15, '3', true), - (74108, '2024-05-10 23:11:44.66111+00', '0xd277938edcb283c080a22c1832fe1de40898735f', 17429, 17429, 1, '2024-04-08', 21, 71, '368021', true), - (74196, '2024-05-10 23:11:44.909204+00', '0xdbee1cfa10d706ef868dd2dff97246cb6d73b530', 38342, 38342, 1, '2023-08-30', 34, 51, '18723', true), - (77154, '2024-05-10 23:11:53.180309+00', '0x8fb041cedf8ea3a1dd5821a96c6c4b5ceb48a6b6', 2241, 2241, 1, '2024-04-13', 1, 3, '298896', true), - (76914, '2024-05-10 23:11:52.43791+00', '0x6aa884da2797c14e9f61c31700b8702860f69377', 1891, 1891, 1, '2024-04-15', 1, 2, '3632', true), - (76689, '2024-05-10 23:11:51.909691+00', '0xa9ce598b9286acecf2e495d663faa611256910f1', 5804, 5804, 1, '2024-04-11', 6, 2, '210871', true), - (76036, '2024-05-10 23:11:49.922898+00', '0x70a9c537c1cae986a84df0f9bace1feba0ed8e14', 0, 0, 1, '2024-04-24', 1, 2, '413940', false), - (76425, '2024-05-10 23:11:51.207571+00', '0x6b431ce59bf4e10778903c8769ad398f2f7e35e0', 0, 0, 1, '2024-04-20', 1, 0, '341838', false), - (77006, '2024-05-10 23:11:52.655883+00', '0xbbba14a63a97d30d4b1e2fd221ee97bb068fad40', 0, 0, 1, '2024-04-14', 1, 4, '2020', false), - (76618, '2024-05-10 23:11:51.702161+00', '0xf94c8a915acae6b2272fbbf78c26f860da188e1e', 0, 0, 1, '2024-04-18', 1, 5, '349607', false), - (75585, '2024-05-10 23:11:48.789361+00', '0x99a754897d0b0ff5ef187ea6388265bc0d4f5c20', 3138, 3138, 1, '2024-04-07', 2, 5, '409817', true), - (74186, '2024-05-10 23:11:44.901058+00', '0xab14023979a34b4abb17abd099a1de1dc452011a', 6433, 6433, 1, '2024-04-01', 6, 7, '1265', true), - (74446, '2024-05-10 23:11:45.631287+00', '0x5e6e3d8ca04c2117e4700adc69a4fad627e8fe7b', 3223, 3223, 1, '2024-03-24', 2, 4, '196648', true), - (79554, '2024-05-10 23:12:00.259565+00', '0xfbea1b97406c6945d07f50f588e54144ea8b684f', 4453, 4453, 1, '2024-02-10', 3, 3, '254128', true), - (77403, '2024-05-10 23:11:53.863426+00', '0x6a850e6693c41dc33eac2a7a1a9bafa6f0f71a85', 10689, 10689, 1, '2024-03-17', 10, 23, '307820', true), - (75227, '2024-05-10 23:11:47.929221+00', '0x10c163364fe153cadf6532a5b34481eefb99d96d', 8621, 8621, 1, '2024-03-28', 8, 20, '201043', true), - (74930, '2024-05-10 23:11:47.176046+00', '0xe1e8590b110a5ec1c44247f026269b2e66aa7b47', 11617, 11617, 1, '2024-04-02', 12, 37, '4760', true), - (74039, '2024-05-10 23:11:44.470465+00', '0xcd7e89f8adc80aaada5899312a1132209650ed0e', 9958, 9958, 1, '2024-04-27', 14, 16, '15844', true), - (75946, '2024-05-10 23:11:49.766526+00', '0x6fbb0b11292a3c7fc82f8b922b63a5fd28e510c5', 2504, 2504, 1, '2024-04-25', 1, 5, '345272', true), - (75446, '2024-05-10 23:11:48.418511+00', '0x22ad1afc35cee2a8838dbc3b7cd20b3fa6ab3e11', 3514, 3514, 1, '2024-05-02', 4, 8, '256931', true), - (74030, '2024-05-10 23:11:44.446539+00', '0xa9c4512042dfe48e8cdf653999a91519c85296e0', 4948, 4948, 1, '2024-05-07', 7, 31, '240835', true), - (76666, '2024-05-10 23:11:51.819092+00', '0x0551eb17f2ac1db089eaa6690ef37ad1fe835b19', 2895, 2895, 1, '2024-04-17', 2, 5, '266418', true), - (77064, '2024-05-10 23:11:52.935555+00', '0xd3ac6140221f383357b6eef7ca199ea346819460', 4540, 4540, 1, '2023-12-29', 3, 1, '195790', true), - (76893, '2024-05-10 23:11:52.419545+00', '0x2f21f94e1e57543f4663b722b6b1bed97c576bd4', 2803, 2803, 1, '2024-04-15', 1, 5, '15211', true), - (75627, '2024-05-10 23:11:48.894277+00', '0x4a6737da9668d09ace702c3ff5e0da33a84d28f7', 7353, 7353, 1, '2024-03-31', 6, 26, '8587', true), - (75387, '2024-05-10 23:11:48.284054+00', '0x9904ceddba825a18bdf7e1984a886d23394ccbcc', 4659, 4659, 1, '2024-04-23', 4, 17, '382890', true), - (75358, '2024-05-10 23:11:48.256625+00', '0xa3bfe0bd34332dc4ef586e34fb853720d778ade6', 1200, 1200, 1, '2024-05-03', 1, 1, '9618', true), - (75310, '2024-05-10 23:11:48.145923+00', '0x98eea5a13ac5110fd7d37244465a10b07b280cb7', 2634, 2634, 1, '2024-04-28', 2, 6, '412843', true), - (74094, '2024-05-10 23:11:44.611522+00', '0xcfbf34d385ea2d5eb947063b67ea226dcda3dc38', 13850, 13850, 1, '2024-04-05', 15, 64, '210648', true), - (73956, '2024-05-10 23:11:44.152842+00', '0xf43b2be4aa887f426f05f78604b364af667c608d', 20218, 20218, 1, '2024-02-14', 20, 31, '7464', true), - (75299, '2024-05-10 23:11:48.053262+00', '0x250d11dbeccf2bdb5748d9b0ff06140b4edac2a2', 20296, 20296, 1, '2024-01-31', 19, 50, '193826', true), - (77280, '2024-05-10 23:11:53.546928+00', '0x573bc03f18f41b200b949a973d67b453a7ef11a4', 1955, 1955, 1, '2024-04-11', 1, 2, '6823', true), - (74861, '2024-05-10 23:11:47.047918+00', '0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3', 3001, 3001, 1, '2024-05-07', 3, 15, '270684', true), - (75063, '2024-05-10 23:11:47.540005+00', '0xff9b563140952fb7e3e5552f1a5068b637f0de0a', 2335, 2335, 1, '2024-05-05', 2, 7, '5623', true), - (74941, '2024-05-10 23:11:47.19518+00', '0x226a1dc08c24e217ddbbdf4298d41af4b4d47ca6', 6396, 6396, 1, '2024-04-02', 6, 7, '409997', true), - (74915, '2024-05-10 23:11:47.172193+00', '0x905893f53d0fa232fc00eabd5cdb5ac5d57ab18c', 0, 0, 1, '2024-05-06', 1, 1, '244822', false), - (76071, '2024-05-10 23:11:50.122922+00', '0x1083e32f8938d35abb64afa2a7cda4c7a2b0ba57', 0, 0, 1, '2024-04-24', 1, 5, '358544', false), - (81703, '2024-05-10 23:12:06.739405+00', '0x3586a80248cda17476b8f5b7ab11f5193bf0cd7d', 0, 0, 1, '2024-05-05', 16, 39, '501056', false), - (76406, '2024-05-10 23:11:51.190795+00', '0xa31b33373c20944a9865ac665a897b41ada59a9c', 0, 0, 1, '2024-04-20', 1, 0, '420958', false), - (74870, '2024-05-10 23:11:47.058898+00', '0xb0b4c7e6331d58829b9957f755130e6316ba8729', 0, 0, 1, '2024-05-06', 8, 37, '456831', false), - (75580, '2024-05-10 23:11:48.784577+00', '0xbdf82513b977e1bd329d20dac10dbd1a9d86fd4c', 7605, 7605, 1, '2024-04-18', 8, 26, '301144', true), - (77857, '2024-05-10 23:11:55.365922+00', '0x10ac0e67d5022a16153fbb4b2d813e15ce442eee', 2915, 2915, 1, '2024-04-02', 2, 3, '243906', true), - (75543, '2024-05-10 23:11:48.662673+00', '0xd84b5bfdf3b352a4814704e7205bcb866ebb3e17', 11592, 11592, 1, '2024-04-07', 13, 19, '287145', true), - (74596, '2024-05-10 23:11:46.023026+00', '0xe9d387b9ed1327e59589da2b82fb491817703bc1', 12973, 12973, 1, '2024-03-06', 12, 34, '326920', true), - (74472, '2024-05-10 23:11:45.727111+00', '0x426bb07783eedbea60adaad4e99f0540afbfebbd', 0, 0, 1, '2024-05-08', 1, 1, '13873', false), - (74484, '2024-05-10 23:11:45.749541+00', '0x4fbb601d44d9f6368130bf2cc7148eb7c271088f', 0, 0, 1, '2024-05-08', 2, 0, '419754', false), - (75874, '2024-05-10 23:11:49.517418+00', '0x907ed289f363dbdb2ab1230dfbd2f77a05cda82d', 0, 0, 1, '2024-04-09', 13, 55, '467314', false), - (77112, '2024-05-10 23:11:53.053629+00', '0xe1b0345423886840c0b004454b8a125990464446', 0, 0, 1, '2024-03-27', 3, 2, '352422', false), - (74974, '2024-05-10 23:11:47.299582+00', '0x5b23c893ab99fa6d9ff3532d10a9019cae06383e', 5530, 5530, 1, '2024-04-09', 5, 10, '11004', true), - (74669, '2024-05-10 23:11:46.443052+00', '0x0f320368104adc3cb64b2a7be83bf0a549e12b03', 3754, 3754, 1, '2024-04-12', 3, 6, '3702', true), - (74843, '2024-05-10 23:11:46.942976+00', '0x4e3c897b14dabf7396f102965a70de40e1aac299', 9424, 9424, 1, '2024-04-07', 10, 16, '411007', true), - (74036, '2024-05-10 23:11:44.458219+00', '0xab3627317c43d394eb171170f818153b976d28a3', 9123, 9123, 1, '2024-03-13', 8, 18, '12400', true), - (74896, '2024-05-10 23:11:47.084842+00', '0x91f626b833cf1da926174f30c8dc8962747f5ad8', 6646, 6646, 1, '2024-03-30', 6, 10, '390219', true), - (77471, '2024-05-10 23:11:54.076915+00', '0x5a654583d41b84c30b569a9b8029d54fffd76769', 15532, 15532, 1, '2023-05-28', 10, 30, '333', true), - (75610, '2024-05-10 23:11:48.88015+00', '0xbcfca495966a3132ec76d1b0cf8ffe1d4ad95e0a', 3060, 3060, 1, '2024-04-29', 2, 10, '337018', true), - (74986, '2024-05-10 23:11:47.315468+00', '0x91137bf8d5e95ce028235f38dbd7274a50d0f258', 8058, 8058, 1, '2024-03-02', 6, 22, '9218', true), - (78254, '2024-05-10 23:11:56.458814+00', '0x53d2c7765bf77e8e2c41a9461fdc1c0f37d09894', 1411, 1411, 1, '2024-03-25', 1, 0, '3893', true), - (75474, '2024-05-10 23:11:48.512854+00', '0xcf472a57a79d4bba49755091e6a4c3acf8a43ff0', 25446, 25446, 1, '2024-02-08', 26, 44, '196950', true), - (78125, '2024-05-10 23:11:56.054908+00', '0xc8686783ffc680006e7f6e1da123e7ce32273146', 8658, 8658, 1, '2024-02-08', 7, 7, '307736', true), - (78334, '2024-05-10 23:11:56.727676+00', '0x6e1b330095496e6cabc703853357ca03202e9758', 1812, 1812, 1, '2024-03-23', 1, 1, '3237', true), - (74345, '2024-05-10 23:11:45.367057+00', '0xbd7dbab9aeb52d6c8d0e80fcebde3af4cc86204a', 7240, 7240, 1, '2024-03-10', 6, 10, '1079', true), - (78818, '2024-05-10 23:11:57.968215+00', '0x99b9bb23d300dda4a1dc9eb8d2333704b235c165', 1524, 1524, 1, '2024-03-05', 1, 0, '8744', true), - (75720, '2024-05-10 23:11:49.137066+00', '0x4c77de78970bdda2ff9100210d21ff8562efcd0e', 9374, 9374, 1, '2024-04-07', 10, 14, '422557', true), - (78658, '2024-05-10 23:11:57.580998+00', '0x37f8514c4503ad66cab4d469de521dfe14f8d939', 1901, 1901, 1, '2024-03-11', 1, 1, '347833', true), - (75463, '2024-05-10 23:11:48.503352+00', '0xfa922ce609fed47950e3f48662c9651d42ada194', 11859, 11859, 1, '2023-09-05', 8, 13, '4923', true), - (78869, '2024-05-10 23:11:58.188708+00', '0xd4bf6958538f26266ef2a32db47d296323734b5a', 2957, 2957, 1, '2024-02-29', 2, 1, '230238', true), - (78253, '2024-05-10 23:11:56.457912+00', '0x7ad252facf5f1115b22ea0a4d63e8770573d78a2', 13527, 13527, 1, '2023-04-30', 9, 5, '5774', true), - (75396, '2024-05-10 23:11:48.295151+00', '0x32dc25454b4b2797a504f4e14f5151471498d36e', 7408, 7408, 1, '2024-04-03', 7, 14, '434822', true), - (75042, '2024-05-10 23:11:47.440766+00', '0x9fc3b33884e1d056a8ca979833d686abd267f9f8', 8494, 8494, 1, '2023-11-29', 6, 5, '8080', true), - (75222, '2024-05-10 23:11:47.918108+00', '0x19c5bf5fbf17d8c47d8795a194c03e4061e36761', 15393, 15393, 1, '2024-02-07', 13, 60, '3860', true), - (75533, '2024-05-10 23:11:48.608235+00', '0xf1ebd55ecdf7fed994885ae66a92c27f8d363bdf', 4175, 4175, 1, '2024-02-13', 3, 1, '211301', true), - (76257, '2024-05-10 23:11:50.821023+00', '0x0d6434e16a906ec5cfadd6b73d25d6c033b3587d', 2358, 2358, 1, '2024-04-21', 2, 2, '277952', true), - (75647, '2024-05-10 23:11:48.978123+00', '0x88ced047bf75de5d03f3fa4ff0d7224e4eb455b2', 7142, 7142, 1, '2024-04-01', 7, 5, '429258', true), - (77262, '2024-05-10 23:11:53.528276+00', '0x867b36beb955bf27018a952a376cff13bbaf4da1', 2591, 2591, 1, '2024-04-11', 1, 4, '283418', true), - (76433, '2024-05-10 23:11:51.291877+00', '0xdcfc1df3e82a669354fae73a2a10f3c0c7c0e156', 4725, 4725, 1, '2024-04-06', 4, 7, '329556', true), - (76586, '2024-05-10 23:11:51.667834+00', '0x470a20d2d07ed062c21c9f67bfc20750611610b5', 3007, 3007, 1, '2024-04-18', 2, 6, '18184', true), - (78341, '2024-05-10 23:11:56.740711+00', '0x83420c847d19423bc96a2df0f9813214a56c6000', 9301, 9301, 1, '2023-08-25', 6, 6, '3636', true), - (77548, '2024-05-10 23:11:54.337557+00', '0xefbabdee59968641dc6e892e30c470c2b40157cd', 3308, 3308, 1, '2024-03-18', 2, 4, '5011', true), - (78495, '2024-05-10 23:11:57.15863+00', '0x5f47e54006b79f179e20de7cd7692136688b5e96', 1466, 1466, 1, '2024-03-16', 1, 0, '212111', true), - (77050, '2024-05-10 23:11:52.92013+00', '0xe19753f803790d5a524d1fd710d8a6d821a8bb55', 5447, 5447, 1, '2024-03-10', 4, 8, '296687', true), - (79158, '2024-05-10 23:11:58.966177+00', '0x15a62f8aa28d45f726453c5fdfdce242135efb76', 7217, 7217, 1, '2023-07-02', 4, 6, '1580', true), - (76894, '2024-05-10 23:11:52.423263+00', '0x49c4688912b50fb7b775fba7fe668e785b006049', 8504, 8504, 1, '2024-02-18', 7, 8, '11360', true), - (76991, '2024-05-10 23:11:52.643572+00', '0x839784644c8c3c005d5bb17735968fc06f93abde', 8941, 8941, 1, '2024-02-03', 7, 11, '267965', true), - (78138, '2024-05-10 23:11:56.141711+00', '0xd19bf5f0b785c6f1f6228c72a8a31c9f383a49c4', 25323, 25323, 1, '2024-01-28', 25, 53, '1024', true), - (76508, '2024-05-10 23:11:51.445973+00', '0x1db6ad3344f1ae0a495b28b031b80cddd99f2fd0', 3616, 3616, 1, '2024-01-25', 2, 3, '7325', true), - (78885, '2024-05-10 23:11:58.210164+00', '0x34db35639eafe2712ae1f69dfa298b06a5c25053', 6489, 6489, 1, '2023-06-01', 3, 8, '2745', true), - (76319, '2024-05-10 23:11:50.964574+00', '0x224e69025a2f705c8f31efb6694398f8fd09ac5c', 6006, 6006, 1, '2024-03-01', 5, 1, '361635', true), - (75996, '2024-05-10 23:11:49.88119+00', '0xcfbfc924e3eecf119230f79c6545c2cbd4da6b0a', 25154, 25154, 1, '2023-10-05', 21, 34, '20565', true), - (77414, '2024-05-10 23:11:53.942279+00', '0x31938f42358b993b815cce8e533004eed2146bb6', 4979, 4979, 1, '2024-04-09', 4, 12, '8939', true), - (75346, '2024-05-10 23:11:48.179774+00', '0x4a825d95ee45db286ae3694b7bc7f7090c9f8bf3', 1685, 1685, 1, '2024-05-03', 1, 3, '319054', true), - (78617, '2024-05-10 23:11:57.47014+00', '0x9c26583abdad7a5551fc1e85097a161b76e16450', 3912, 3912, 1, '2024-02-07', 2, 5, '282526', true), - (76137, '2024-05-10 23:11:50.35611+00', '0xbafb15bf152365bd344639b6ede5dec09d5ba64e', 2742, 2742, 1, '2024-04-22', 2, 5, '3492', true), - (75519, '2024-05-10 23:11:48.620684+00', '0x3566d823b7196fd56a834530b7f0a11d8de7bdf9', 2242, 2242, 1, '2024-04-20', 2, 1, '412298', true), - (76470, '2024-05-10 23:11:51.336802+00', '0xb3a5cb6b38bc62d398ea15a5e63174aa6691e8be', 2119, 2119, 1, '2024-04-19', 1, 3, '389671', true), - (74246, '2024-05-10 23:11:45.08856+00', '0x878a39c06e3494f03e1531b5bfce942afd50d585', 2053, 2053, 1, '2024-05-09', 3, 3, '423457', true), - (81638, '2024-05-10 23:12:06.53127+00', '0x6a57426029ae946688451d332b0cb084f81131be', 0, 0, 1, '2024-05-08', 9, 45, '432062', false), - (78787, '2024-05-10 23:11:57.933957+00', '0x19ce57b670121e73e43be6c2fea5c254bb4c8760', 10029, 10029, 1, '2023-06-05', 6, 10, '617', true), - (80266, '2024-05-10 23:12:02.534558+00', '0x74667801993b457b8ccf19d03bbbaa52b7fff43b', 8088, 8088, 1, '2023-12-29', 5, 18, '1134', true), - (73931, '2024-05-10 23:11:43.548774+00', '0xea79aace874e1203d4ff08f4cc7f713acc608236', 16409, 16409, 1, '2024-02-18', 15, 53, '13077', true), - (76458, '2024-05-10 23:11:51.319095+00', '0xb57b74a81d2e550128932e8c3978f58ca03205b6', 9819, 9819, 1, '2024-04-03', 10, 22, '268878', true), - (75153, '2024-05-10 23:11:47.776704+00', '0x5f8b9b4541ecef965424f1db923806aad626add2', 8586, 8586, 1, '2023-08-20', 5, 11, '4877', true), - (77737, '2024-05-10 23:11:54.820476+00', '0x538527f3602acad78596f17b422fcf5613af1409', 13276, 13276, 1, '2023-04-25', 8, 23, '473', true), - (75289, '2024-05-10 23:11:48.052548+00', '0x361aba78ae91ddcbf72b7618c88427834dde5f09', 2086, 2086, 1, '2024-05-04', 1, 5, '366753', true), - (75995, '2024-05-10 23:11:49.881666+00', '0x714b831eb02fe854283219b2b9f1c6951f46dcb9', 2271, 2271, 1, '2024-04-24', 2, 2, '10976', true), - (80952, '2024-05-10 23:12:04.359612+00', '0x7ccc961d071e4e892c559076242df9b27da11785', 4100, 4100, 1, '2023-07-29', 2, 2, '688', true), - (76880, '2024-05-10 23:11:52.408102+00', '0xa70d92ee1001c6cab121b8a27926339b1f6d2131', 2507, 2507, 1, '2024-04-15', 1, 4, '460565', true), - (79543, '2024-05-10 23:12:00.246403+00', '0xae0768e5ee2d5f140802f998c7293e2ff00297b2', 6488, 6488, 1, '2024-01-06', 4, 10, '13563', true), - (76116, '2024-05-10 23:11:50.335087+00', '0xe7e3884efd3955789c4baec29c081bb61ded8015', 2266, 2266, 1, '2024-04-19', 2, 1, '437357', true), - (78172, '2024-05-10 23:11:56.196517+00', '0x675d882d6cdcdd8b2eaea95f21fbfc6916af89f8', 3966, 3966, 1, '2024-03-12', 3, 2, '376177', true), - (75762, '2024-05-10 23:11:49.260556+00', '0xc35bc219db73ab6b9578f48152dfb86ac0585c35', 6595, 6595, 1, '2024-04-04', 6, 13, '412192', true), - (75318, '2024-05-10 23:11:48.136111+00', '0x56fd33c56d184d72558df85b8b4a186a0280b56a', 3037, 3037, 1, '2024-04-17', 2, 6, '385126', true), - (79684, '2024-05-10 23:12:00.650514+00', '0x827d2f5ecd0b2674e80d8aa4786fa3600af60b74', 3297, 3297, 1, '2024-01-09', 2, 1, '4285', true), - (76536, '2024-05-10 23:11:51.540897+00', '0xa2746b2a56f9886925c03af1d1e10b8b3dfbbe29', 9199, 9199, 1, '2023-12-19', 6, 20, '11244', true), - (76804, '2024-05-10 23:11:52.182012+00', '0x2a23c62ef82930c4b4fa1a6bb1ac497776e66285', 1874, 1874, 1, '2024-04-16', 1, 2, '409379', true), - (76979, '2024-05-10 23:11:52.626005+00', '0x465fb065adf0fd25811bf867b5068583c8fc4e64', 8723, 8723, 1, '2024-04-14', 10, 7, '407760', true), - (75415, '2024-05-10 23:11:48.381116+00', '0x2d536cb13f360b2747cc235d55ea6c32f66f05a3', 12056, 12056, 1, '2024-03-31', 13, 17, '419404', true), - (78919, '2024-05-10 23:11:58.322764+00', '0x4f764a08c66251e13bdd85b4bb0652b739736328', 1986, 1986, 1, '2024-02-26', 1, 1, '6111', true), - (78187, '2024-05-10 23:11:56.298522+00', '0xfe1b8c1fd718a2ab2fae2450dc0f2bff6db4a365', 1787, 1787, 1, '2024-03-26', 1, 1, '8490', true), - (75394, '2024-05-10 23:11:48.292074+00', '0xee0b53ac9578cbc6e0cee0ac6e18cfb7118b5cb3', 5012, 5012, 1, '2024-04-10', 4, 13, '7479', true), - (74559, '2024-05-10 23:11:45.971058+00', '0x8f6aa7ffb79614b4ede730381f16360875fb9313', 0, 0, 1, '2024-05-08', 2, 0, '19526', false), - (74078, '2024-05-10 23:11:44.596965+00', '0xec365c9793013d5a0d2aeb6f0fff0f4f574cd336', 0, 0, 1, '2024-05-01', 7, 18, '386033', false), - (74338, '2024-05-10 23:11:45.364756+00', '0xf4069295d9e8f8161ab4db80cabb4d103e67bdad', 0, 0, 1, '2024-02-09', 11, 4, '284453', false), - (75348, '2024-05-10 23:11:48.183173+00', '0x9143aa81feddda4e7528863ae062908c3add016b', 27506, 27506, 1, '2024-02-06', 28, 84, '196378', true), - (74752, '2024-05-10 23:11:46.597616+00', '0x09b2f0988b6d24336b348c84c2764d2b4f85142f', 23532, 23532, 1, '2024-03-21', 27, 95, '347050', true), - (78043, '2024-05-10 23:11:55.900484+00', '0xc672f0fa5ebdc8bc4877f53f232a98e87fcd6416', 4107, 4107, 1, '2024-03-29', 2, 10, '326147', true), - (74666, '2024-05-10 23:11:46.436536+00', '0xb8adebd5b5dbc0a70ce89f89b58ce034ccc49105', 0, 0, 1, '2024-05-07', 2, 1, '467347', false), - (79289, '2024-05-10 23:11:59.445625+00', '0x0d74d273a4d2971e7cb8e7acb25ccfe149e37465', 6758, 6758, 1, '2024-02-04', 5, 6, '4375', true), - (79348, '2024-05-10 23:11:59.660674+00', '0xb6c9c98a7de6250e880b0cde1cec78fc6bd07092', 3265, 3265, 1, '2024-02-15', 1, 4, '4826', true), - (75601, '2024-05-10 23:11:48.86659+00', '0x7f49f36d42d7652f78bc91fd84ed2fb6efc8bf03', 4572, 4572, 1, '2024-04-10', 3, 14, '320215', true), - (77775, '2024-05-10 23:11:55.03235+00', '0x6ca011aae6d551a3efa533c40c24a810321c0384', 5815, 5815, 1, '2023-09-11', 3, 6, '323', true), - (75522, '2024-05-10 23:11:48.618064+00', '0x67e20ab529cc1dd8d389fadf8cee13042b9fed54', 990, 990, 1, '2024-05-01', 1, 0, '226915', true), - (77860, '2024-05-10 23:11:55.369122+00', '0x1a72451e54ea87d2552d2d75217001721bef3a10', 17574, 17574, 1, '2023-09-01', 13, 24, '1652', true), - (76596, '2024-05-10 23:11:51.682394+00', '0x8cf84e6069fa1bdfb6db0be667e762de2984c817', 2867, 2867, 1, '2024-04-18', 2, 5, '12299', true), - (75419, '2024-05-10 23:11:48.379498+00', '0xfa6b3df826636eb76e23c1ee38180db3b8f60a86', 49272, 49272, 1, '2023-07-31', 45, 65, '6162', true), - (75855, '2024-05-10 23:11:49.499926+00', '0x308112d06027cd838627b94ddfc16ea6b4d90004', 8922, 8922, 1, '2023-09-21', 6, 3, '15549', true), - (76451, '2024-05-10 23:11:51.306117+00', '0x1b5f4b3cbff53245ae516b5475be336622dd5dc4', 14181, 14181, 1, '2023-11-27', 11, 18, '16877', true), - (79261, '2024-05-10 23:11:59.419551+00', '0x575c8a992ec082f3650432de77c1cbbccf568200', 7113, 7113, 1, '2023-08-21', 4, 7, '9055', true), - (77312, '2024-05-10 23:11:53.703874+00', '0x75c88d2149e00a36dddb997faf674ec9b57aeb73', 1634, 1634, 1, '2024-04-10', 1, 1, '234568', true), - (80657, '2024-05-10 23:12:03.550455+00', '0x58d205f9d265399f5e68b783162d9508c0469bdf', 21974, 21974, 1, '2023-04-28', 16, 18, '1355', true), - (77502, '2024-05-10 23:11:54.279787+00', '0x0d1de3147e182a6ccd101d98ca76dce540f31657', 1657, 1657, 1, '2024-04-08', 1, 1, '343630', true), - (77753, '2024-05-10 23:11:55.009163+00', '0x3fd625084daf4b6dfef1bd8469253783c62942d2', 1701, 1701, 1, '2024-04-04', 1, 1, '242171', true), - (77766, '2024-05-10 23:11:55.024056+00', '0x8c8e5aa1fb134544a5de0134a95195fe8939b6da', 2389, 2389, 1, '2024-04-04', 1, 3, '278203', true), - (77952, '2024-05-10 23:11:55.664696+00', '0x9033b283f07e9ab12285f12d4001332bbfe06dc1', 2087, 2087, 1, '2024-04-01', 1, 2, '8726', true), - (73863, '2024-05-10 23:11:43.152071+00', '0x2b2894d4d1e0233fdda02246371b9e37bb18e10d', 65186, 65186, 1, '2024-02-02', 79, 341, '5034', true), - (80113, '2024-05-10 23:12:02.122007+00', '0x716e317accde42304050cc5753e0207cdcc57528', 2621, 2621, 1, '2024-01-15', 1, 2, '893', true), - (77784, '2024-05-10 23:11:55.040184+00', '0x5371d2e73edf765752121426b842063fbd84f713', 6584, 6584, 1, '2024-03-23', 6, 4, '234658', true), - (78077, '2024-05-10 23:11:55.92952+00', '0x333d0ebc54707c0a9d92cac749b3094c28a0e111', 7529, 7529, 1, '2023-11-01', 4, 15, '528', true), - (75450, '2024-05-10 23:11:48.488938+00', '0xaa0dd4544fb4ac8c706011bfa8f16638fb6409f3', 25952, 25952, 1, '2023-12-16', 24, 30, '2364', true), - (78565, '2024-05-10 23:11:57.317957+00', '0xf34f1c938d08817118e4405da510bea8cd72c67e', 5416, 5416, 1, '2024-02-20', 4, 4, '222540', true), - (79754, '2024-05-10 23:12:00.820832+00', '0xc5f59709974262c4afacc5386287820bdbc7eb3a', 2509, 2509, 1, '2024-02-07', 1, 2, '242021', true), - (80992, '2024-05-10 23:12:04.474441+00', '0xea3246957e3548fadf56301af6e020fa288af8ba', 3551, 3551, 1, '2023-08-21', 2, 0, '4166', true), - (78745, '2024-05-10 23:11:57.814412+00', '0xe3185fd2e5010271a0e866be070addc073713734', 1519, 1519, 1, '2024-03-06', 1, 0, '19327', true), - (80473, '2024-05-10 23:12:03.094963+00', '0xea310c966d3ff5e09c65487f1763b21361eb71ef', 3919, 3919, 1, '2023-12-01', 2, 3, '2441', true), - (78581, '2024-05-10 23:11:57.433275+00', '0x794cec5ee2659859050d29d858cf46191649e1fa', 3179, 3179, 1, '2023-12-19', 2, 0, '66', true), - (79379, '2024-05-10 23:11:59.6981+00', '0xfaa38054dca989a74fc8894f0a11a3223b613e96', 2048, 2048, 1, '2024-02-14', 1, 1, '189905', true), - (80426, '2024-05-10 23:12:02.972849+00', '0xcb52187359e709ef501e7c207f2dffc360f7feab', 5664, 5664, 1, '2023-08-03', 3, 4, '16863', true), - (80170, '2024-05-10 23:12:02.253118+00', '0x268884fd17c3f13c85053648a9f95dcb0bb8af2e', 1720, 1720, 1, '2024-01-11', 1, 0, '20196', true), - (77284, '2024-05-10 23:11:53.550346+00', '0x26ef03a20aaeda8aafcee4e146dc6b328195947c', 8125, 8125, 1, '2024-01-02', 6, 5, '9667', true), - (77833, '2024-05-10 23:11:55.203309+00', '0xee8e952926d7a2413f1f563bc9595bcf45af57ee', 4402, 4402, 1, '2024-02-15', 3, 3, '18883', true), - (77121, '2024-05-10 23:11:53.145598+00', '0x4ca791f11e53323d2907257d6dcab9ea888b65aa', 17559, 17559, 1, '2023-08-24', 13, 20, '1797', true), - (79313, '2024-05-10 23:11:59.551211+00', '0x47d25240311c444e4534a968c9f0f82d262ae0b4', 18435, 18435, 1, '2023-06-27', 13, 29, '4085', true), - (77752, '2024-05-10 23:11:55.004913+00', '0x96df10a852b1528f6b7972ccd83b755f71210b5c', 10851, 10851, 1, '2024-03-01', 10, 8, '9318', true), - (77216, '2024-05-10 23:11:53.411812+00', '0x3eefaa9d6e2ab7972c1001d41c82bb4881389257', 3381, 3381, 1, '2023-12-23', 2, 1, '9391', true), - (77425, '2024-05-10 23:11:53.96164+00', '0xd7b7a3ab29b3282dc76419bd57776e0e90de8a41', 4095, 4095, 1, '2024-02-08', 2, 6, '2755', true), - (78415, '2024-05-10 23:11:56.921137+00', '0x2cb8636240693b445ac98f2091b58a898e35e60b', 6553, 6553, 1, '2024-01-25', 4, 13, '8971', true), - (77681, '2024-05-10 23:11:54.685354+00', '0x5d85e0403f815ce6b88fa7653ee84e46e5f59b95', 3521, 3521, 1, '2024-04-01', 3, 1, '281676', true), - (77988, '2024-05-10 23:11:55.763698+00', '0xf16bf1c992e8ff1011d87f7d48a55746f0966bca', 2782, 2782, 1, '2024-03-31', 1, 4, '14982', true), - (78220, '2024-05-10 23:11:56.355207+00', '0x9cb707b9a2de651d8a6960d59ccb6b11e7431c06', 1787, 1787, 1, '2024-03-26', 1, 1, '316526', true), - (77710, '2024-05-10 23:11:54.78707+00', '0xe288a00df4b697606078876788e4d64633cd2e01', 1329, 1329, 1, '2024-04-05', 1, 0, '14209', true), - (77190, '2024-05-10 23:11:53.319528+00', '0x2ab0475881fe1ae4ce17d484507d96e3240e0260', 3642, 3642, 1, '2024-04-05', 3, 3, '196290', true), - (77740, '2024-05-10 23:11:54.808435+00', '0x0b81418147df37155d643b5cb65ba6c8cb7aba76', 1691, 1691, 1, '2024-04-05', 1, 1, '4423', true), - (78054, '2024-05-10 23:11:55.912735+00', '0xcca768585e1fa2871ddfb789ffa95c6288162fc7', 7225, 7225, 1, '2024-01-03', 5, 7, '305', true), - (77413, '2024-05-10 23:11:53.953495+00', '0xe06383ece7b8bbb6c3f65a95fc2b6450e9077a6c', 3548, 3548, 1, '2024-03-13', 2, 5, '283144', true), - (77912, '2024-05-10 23:11:55.490258+00', '0x71c199c366625329064df3d08191cdc0e85ac2ea', 10122, 10122, 1, '2024-02-06', 8, 19, '2866', true), - (77756, '2024-05-10 23:11:55.008709+00', '0xb9447ca592c68d56ee481d5d12adf11db1008a72', 5453, 5453, 1, '2023-10-28', 3, 5, '3966', true), - (78279, '2024-05-10 23:11:56.581984+00', '0xa7c3b6c27e782e18b01c1a1a577548add6d9bec9', 1424, 1424, 1, '2024-03-23', 1, 0, '367850', true), - (78173, '2024-05-10 23:11:56.189327+00', '0x7e0512f8089886003798cdeb60c898b145634bd3', 13329, 13329, 1, '2023-06-01', 9, 5, '6968', true), - (78728, '2024-05-10 23:11:57.797616+00', '0xf7c0d5e897666ce6590a749ff1bd9edaf7eab2a5', 31851, 31851, 1, '2024-01-05', 31, 116, '195091', true), - (77135, '2024-05-10 23:11:53.16435+00', '0x7769d00c491293d5491108311a69c9496eb14caf', 6546, 6546, 1, '2024-02-18', 5, 6, '271094', true), - (77175, '2024-05-10 23:11:53.301307+00', '0x7e37c3a9349227b60503ddb1574a76d10c6bc48e', 13861, 13861, 1, '2023-05-05', 9, 13, '616', true), - (78725, '2024-05-10 23:11:57.798633+00', '0xeaa68d85e2c0ea3bb0a7028c45ae04943fb14819', 5475, 5475, 1, '2024-01-26', 3, 10, '12256', true), - (80226, '2024-05-10 23:12:02.481886+00', '0x36de990133d36d7e3df9a820aa3ede5a2320de71', 8517, 8517, 1, '2023-12-03', 6, 6, '2282', true), - (80921, '2024-05-10 23:12:04.324938+00', '0xc7ab003d4cd336b467664fc904d8cc64cb201c18', 8071, 8071, 1, '2023-06-08', 5, 1, '585', true), - (80415, '2024-05-10 23:12:02.956139+00', '0x182a414a433b0129ea639c2d24d21d4cf6a6c0ae', 1802, 1802, 1, '2023-12-09', 1, 0, '10597', true), - (78477, '2024-05-10 23:11:57.134993+00', '0x1575c75c115928e040336dd7d96ad77c29c90600', 1858, 1858, 1, '2024-03-17', 1, 1, '236971', true), - (76636, '2024-05-10 23:11:51.786379+00', '0x28679a1a632125fbbf7a68d850e50623194a709e', 12735, 12735, 1, '2024-01-07', 10, 25, '4525', true), - (78610, '2024-05-10 23:11:57.467079+00', '0x7a2a69a8ecc121cd6af9968d486bc30bf9da5438', 3026, 3026, 1, '2024-03-12', 2, 2, '266490', true), - (78828, '2024-05-10 23:11:58.052981+00', '0x8695afa559b1ef3cef0cbc511e8bda4d5f91aad0', 1957, 1957, 1, '2024-03-02', 1, 1, '2820', true), - (80431, '2024-05-10 23:12:02.982985+00', '0x795050decc0322567c4f0098209d4edc5a69b9d0', 14477, 14477, 1, '2023-08-28', 10, 23, '4378', true), - (80341, '2024-05-10 23:12:02.73639+00', '0xec4061eff0032aecc4b3d1187166bd3ae06bf056', 4090, 4090, 1, '2023-08-02', 2, 2, '1629', true), - (81061, '2024-05-10 23:12:04.702643+00', '0xee324c588cef1bf1c1360883e4318834af66366d', 6763, 6763, 1, '2023-04-23', 4, 0, '5708', true), - (77904, '2024-05-10 23:11:55.477182+00', '0x01a29134723ef72a968838cb1df498bc4f910bec', 12732, 12732, 1, '2023-12-18', 10, 14, '5713', true), - (77785, '2024-05-10 23:11:55.041514+00', '0x6c8e2c5235c9eed70f7009ba7686310379e96cda', 7972, 7972, 1, '2024-02-06', 6, 11, '248151', true), - (79811, '2024-05-10 23:12:01.030042+00', '0x82e939ce51a5510b183ac0b5922127613c3709ec', 1639, 1639, 1, '2024-02-06', 1, 0, '6636', true), - (77130, '2024-05-10 23:11:53.156881+00', '0xed727248627fda303a1794f5da747215b6314330', 34468, 34468, 1, '2023-05-30', 28, 44, '5181', true), - (78211, '2024-05-10 23:11:56.343677+00', '0xa903c06bf35286f6d1cdad25396748353979a44c', 3941, 3941, 1, '2023-09-25', 2, 2, '803', true), - (80955, '2024-05-10 23:12:04.358231+00', '0xc3902d565bbcb20e6e947b9657df3b0a56875585', 4005, 4005, 1, '2023-09-03', 1, 4, '6878', true), - (81139, '2024-05-10 23:12:04.867625+00', '0xc3048079040c993818021e955b62102094cd4d03', 4733, 4733, 1, '2023-05-31', 2, 4, '1236', true), - (80355, '2024-05-10 23:12:02.747316+00', '0x540c5f1c2a550047423a81deb20467fcab11b116', 5527, 5527, 1, '2023-06-07', 3, 2, '443', true), - (74009, '2024-05-10 23:11:44.297408+00', '0x003276c5c24cdaff1d804170ab5cbb914f51f78a', 5709, 5709, 1, '2024-03-28', 5, 6, '6852', true), - (75901, '2024-05-10 23:11:49.614262+00', '0x70d04384b5c3a466ec4d8cfb8213efc31c6a9d15', 42946, 42946, 1, '2023-05-09', 36, 71, '369', true), - (74237, '2024-05-10 23:11:45.078907+00', '0x198109b0d2c786a230d18b622d3b7a1946131e09', 30464, 30464, 1, '2024-01-10', 30, 78, '18570', true), - (80109, '2024-05-10 23:12:02.123779+00', '0x8aaef3c365f90318d15944587d1d3d842e16565a', 3265, 3265, 1, '2024-01-15', 2, 1, '221519', true), - (75497, '2024-05-10 23:11:48.600024+00', '0xb31faa5c1d581c70f4b6ed095c944936cbd2a357', 47158, 47158, 1, '2023-05-31', 41, 61, '13089', true), - (78348, '2024-05-10 23:11:56.749295+00', '0x55a5705453ee82c742274154136fce8149597058', 5702, 5702, 1, '2024-01-19', 4, 3, '5254', true), - (79892, '2024-05-10 23:12:01.360727+00', '0xf417ace7b13c0ef4fcb5548390a450a4b75d3eb3', 5080, 5080, 1, '2023-12-19', 2, 9, '680', true), - (81024, '2024-05-10 23:12:04.588493+00', '0x82d746d7d53515b22ad058937ee4d139ba09ff07', 3556, 3556, 1, '2023-08-19', 2, 0, '9700', true), - (77561, '2024-05-10 23:11:54.419202+00', '0xdac8fc039f633969116d412522b3338e3f1eba44', 3459, 3459, 1, '2024-04-04', 3, 1, '353052', true), - (78000, '2024-05-10 23:11:55.783594+00', '0x035032655b5b3784d359b56eb82c803bd971c582', 1741, 1741, 1, '2024-03-31', 1, 1, '11574', true), - (78437, '2024-05-10 23:11:57.019652+00', '0x78b2de47fe499e0a6f7a67dbf965b8ec765d2d9d', 1843, 1843, 1, '2024-03-19', 1, 1, '243300', true), - (78419, '2024-05-10 23:11:56.935152+00', '0xc912e55e813753f91f96054eacf4e342a6061f1a', 3195, 3195, 1, '2024-03-13', 2, 3, '639', true), - (79139, '2024-05-10 23:11:58.871032+00', '0x103ac82daf13da683f6251dc0c5008198fb2a402', 1582, 1582, 1, '2024-02-21', 1, 0, '18384', true), - (79255, '2024-05-10 23:11:59.410071+00', '0xb48e8da63c2afc5633702b7acf4bde830c1de48b', 2033, 2033, 1, '2024-02-17', 1, 1, '5062', true), - (78245, '2024-05-10 23:11:56.450055+00', '0xaa1b01270a5bf5b981bf07a28c9def8d39625997', 12681, 12681, 1, '2023-09-15', 9, 9, '2586', true), - (74328, '2024-05-10 23:11:45.341221+00', '0x5a492d1e15f2ae4b418e424ba9a1d112d6e9706a', 32213, 32213, 1, '2023-04-25', 25, 61, '457', true), - (80471, '2024-05-10 23:12:03.098747+00', '0xea32f2de0faf3a6926a9762a48a1fb27a4c95541', 1819, 1819, 1, '2023-12-01', 1, 0, '13323', true), - (79552, '2024-05-10 23:12:00.258228+00', '0xb432ca713b50c72049493edfde314abefd23bed9', 3694, 3694, 1, '2024-02-10', 1, 5, '228184', true), - (75780, '2024-05-10 23:11:49.272341+00', '0x547a2e8d97dc99be21e509fa93c4fa5dd76b8ed0', 11682, 11682, 1, '2024-01-01', 9, 18, '13121', true), - (80629, '2024-05-10 23:12:03.518497+00', '0xff51cc1519c7a61144d3ff6f883122f150752445', 5054, 5054, 1, '2023-07-31', 3, 0, '312', true), - (79785, '2024-05-10 23:12:00.935915+00', '0xfb53efa900f1b8b3b5822cc9eb9aa64bd63a8629', 1639, 1639, 1, '2024-02-06', 1, 0, '196380', true), - (79839, '2024-05-10 23:12:01.052411+00', '0x19d8da2674e8a025154153297ea3ab918debf96d', 2935, 2935, 1, '2024-02-05', 1, 3, '234616', true), - (77169, '2024-05-10 23:11:53.295964+00', '0xf1cdbdaf9849959de3b6ede5012a52aa4aef2db7', 4520, 4520, 1, '2024-04-08', 4, 5, '4205', true), - (79653, '2024-05-10 23:12:00.550796+00', '0x10f5d45854e038071485ac9e402308cf80d2d2fe', 4179, 4179, 1, '2023-11-22', 2, 4, '207', true), - (80116, '2024-05-10 23:12:02.128413+00', '0x16d47b5d3eb6f0dccf067aac3bba8129fa0bc147', 6631, 6631, 1, '2023-08-06', 4, 2, '1315', true), - (78085, '2024-05-10 23:11:56.008704+00', '0xcfdb2bb393b0d6523359a808cd66723efca52e6a', 4555, 4555, 1, '2024-03-17', 3, 8, '2904', true), - (81413, '2024-05-10 23:12:05.928496+00', '0x8c14eceddf6690ac34850383de2c88a9a6215488', 2101, 2101, 1, '2023-05-11', 1, 0, '776', true), - (81379, '2024-05-10 23:12:05.821973+00', '0xe638cb3fa853622b2824cbdab3c27b06e8049651', 2077, 2077, 1, '2023-06-04', 1, 0, '1062', true), - (80612, '2024-05-10 23:12:03.49681+00', '0x5bb3e1774923b75ecb804e2559149bbd2a39a414', 3574, 3574, 1, '2023-11-05', 2, 1, '6087', true), - (77967, '2024-05-10 23:11:55.679794+00', '0xabbd7605a2141e29f946c6a3bcb7a205ec9ae26e', 10564, 10564, 1, '2024-01-07', 8, 16, '210731', true), - (77569, '2024-05-10 23:11:54.428681+00', '0xb462b7d285c34c8ca0d91edfa51bc147dcbf9526', 2344, 2344, 1, '2024-04-07', 2, 0, '434408', true), - (77631, '2024-05-10 23:11:54.576049+00', '0xf54f4815f62ccc360963329789d62d3497a121ae', 2539, 2539, 1, '2024-04-05', 2, 1, '10685', true), - (77398, '2024-05-10 23:11:53.863777+00', '0xacb02d3663ca27e9c85d7598964269e41c8b9885', 14487, 14487, 1, '2024-02-15', 13, 32, '252741', true), - (74965, '2024-05-10 23:11:47.289827+00', '0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df', 32202, 32202, 1, '2024-03-13', 39, 52, '360601', true), - (78252, '2024-05-10 23:11:56.457333+00', '0x172d0e144af134d8c77012f2468a2928781b35c8', 1417, 1417, 1, '2024-03-24', 1, 0, '210850', true), - (77556, '2024-05-10 23:11:54.405616+00', '0xa5855f4f40a409ffde3a171eb616926aec5d7b9c', 3229, 3229, 1, '2024-03-10', 2, 3, '12888', true), - (77711, '2024-05-10 23:11:54.787628+00', '0x4836a8c7a9a45165383c482818dd34645b7fd9a0', 3273, 3273, 1, '2024-03-06', 2, 3, '23091', true), - (78896, '2024-05-10 23:11:58.218976+00', '0x735854c506cceb0b95c949d1acb705b31136d487', 2381, 2381, 1, '2024-02-28', 1, 2, '14782', true), - (79253, '2024-05-10 23:11:59.408239+00', '0x6434c6d6761767c68f6c46f6eadde4f9388e2643', 2033, 2033, 1, '2024-02-17', 1, 1, '272344', true), - (78808, '2024-05-10 23:11:57.955757+00', '0xdc41ef1a9472afa2dbdc181de54ff7379bcefb31', 3265, 3265, 1, '2024-02-15', 2, 2, '212', true), - (77405, '2024-05-10 23:11:53.935122+00', '0xda37f741428d346c1383328b67890952d2843538', 0, 0, 1, '2024-03-30', 3, 2, '248077', false), - (79551, '2024-05-10 23:12:00.2565+00', '0x0e6cc53526ca63a7a5d164c28e6cb9cf07620be6', 1625, 1625, 1, '2024-02-10', 1, 0, '1610', true), - (79826, '2024-05-10 23:12:01.045468+00', '0x67a2ea72b7e82f5387a87565580da70656e9ac18', 1639, 1639, 1, '2024-02-06', 1, 0, '238655', true), - (78111, '2024-05-10 23:11:56.043348+00', '0x522b9c4dbbcc2a70946da16126c565e2dad40d19', 1769, 1769, 1, '2024-03-28', 1, 1, '339869', true), - (79628, '2024-05-10 23:12:00.518081+00', '0xf9a3bb070c1f9b3186a547ded991bed04a289c5b', 2498, 2498, 1, '2024-02-09', 1, 2, '4995', true), - (78712, '2024-05-10 23:11:57.714968+00', '0x4c9ed69bdd33bf3dad8b5b54c0812dff54fd032a', 1920, 1920, 1, '2024-03-08', 1, 1, '910', true), - (74038, '2024-05-10 23:11:44.470076+00', '0x38b2bac6431604dffec17a1e6adc649a9ea0efba', 40342, 40342, 1, '2023-12-22', 41, 91, '9933', true), - (74642, '2024-05-10 23:11:46.318034+00', '0xf98b7e44efe4c60264564554b885ab884d0dd904', 15582, 15582, 1, '2024-02-06', 14, 30, '226690', true), - (76450, '2024-05-10 23:11:51.306117+00', '0xd5b472ffaf39476f83b8975667169ab6f9216dcd', 42960, 42960, 1, '2023-05-22', 36, 101, '1606', true), - (77999, '2024-05-10 23:11:55.782877+00', '0xd7b77b0a69308392ef13db63a412df391146d434', 1368, 1368, 1, '2024-03-31', 1, 0, '209586', true), - (80514, '2024-05-10 23:12:03.235472+00', '0x69220592ac4b00784d3c0af497e261b4cd722aaf', 1838, 1838, 1, '2023-11-22', 1, 0, '18908', true), - (79375, '2024-05-10 23:11:59.694438+00', '0xda70761a63d5d0dde3bde3b179126127cccb44b3', 2469, 2469, 1, '2024-02-14', 1, 2, '2606', true), - (79410, '2024-05-10 23:11:59.813669+00', '0x2eacbb89d9844759bdca7ea293536ca4a328474b', 2469, 2469, 1, '2024-02-14', 1, 2, '242015', true), - (79183, '2024-05-10 23:11:58.995753+00', '0x5ac6709c90dbdaa33caf8aa81b6d21cd42592c1d', 3869, 3869, 1, '2024-02-12', 2, 5, '2443', true), - (79544, '2024-05-10 23:12:00.233926+00', '0xfd37f4625ca5816157d55a5b3f7dd8dd5f8a0c2f', 2903, 2903, 1, '2024-02-10', 1, 3, '10178', true), - (79580, '2024-05-10 23:12:00.379107+00', '0xc6cb690be10c3df004883565498075e67c344e01', 2072, 2072, 1, '2024-02-09', 1, 1, '3073', true), - (78650, '2024-05-10 23:11:57.578693+00', '0x9b776f682c03ca462cee8607a2ad7471df015e13', 3284, 3284, 1, '2023-11-22', 2, 0, '5170', true), - (77616, '2024-05-10 23:11:54.547641+00', '0x0ed1f91769d6add12f3aca1229f96eea198ac0ed', 4324, 4324, 1, '2024-01-10', 2, 6, '303', true), - (78614, '2024-05-10 23:11:57.470278+00', '0x80cef8f224deb7cbbfbb6b1afb6d89652e933d0f', 1494, 1494, 1, '2024-03-11', 1, 0, '3797', true), - (79918, '2024-05-10 23:12:01.568002+00', '0x855ce48527c31304a0c94f04070ac124f815c389', 2094, 2094, 1, '2024-02-04', 1, 1, '268326', true), - (75560, '2024-05-10 23:11:48.760574+00', '0x8bc140bc0bad95229c71f8db308a9f04289694f5', 19739, 19739, 1, '2024-02-03', 19, 21, '269164', true), - (80310, '2024-05-10 23:12:02.64673+00', '0xdd25f5d57e1ac3c7988543293f6babeba3df96d3', 2248, 2248, 1, '2023-12-24', 1, 1, '11040', true), - (79344, '2024-05-10 23:11:59.655445+00', '0x0fc5df1a76dac8a19d11d2ddcc5bbe4b79bba910', 2877, 2877, 1, '2024-02-14', 2, 0, '308247', true), - (80874, '2024-05-10 23:12:04.192507+00', '0xe1eedbd1e08478707c794e7e8b1ee623f5fa6d64', 1957, 1957, 1, '2023-09-12', 1, 0, '8332', true), - (77221, '2024-05-10 23:11:53.415365+00', '0x98397a068d413d3c92a506f98c5f25d33a9dac14', 16036, 16036, 1, '2023-10-26', 12, 31, '1668', true), - (80595, '2024-05-10 23:12:03.40554+00', '0xa58b4a80de82b889ff40e487c58208a429c77f88', 16313, 16313, 1, '2023-07-23', 12, 3, '14364', true), - (80292, '2024-05-10 23:12:02.628581+00', '0x5a927ac639636e534b678e81768ca19e2c6280b7', 16865, 16865, 1, '2023-04-28', 11, 31, '194', true), - (79518, '2024-05-10 23:12:00.148523+00', '0x84e1056ed1b76fb03b43e924ef98833dba394b2b', 6324, 6324, 1, '2023-12-24', 4, 7, '10857', true), - (77772, '2024-05-10 23:11:55.01649+00', '0x6aac6a4c94eda16f47d66f71ab50709d431cc18c', 1701, 1701, 1, '2024-04-04', 1, 1, '408681', true), - (78339, '2024-05-10 23:11:56.737352+00', '0x8db916fadb1c973d610346f0a1a8e4c81acf0390', 2908, 2908, 1, '2024-03-22', 1, 4, '3751', true), - (79794, '2024-05-10 23:12:00.946036+00', '0x14b85b1c40056312fde55e1fa1827a92f12b966a', 0, 0, 1, '2023-06-01', 5, 3, '3584', false), - (76222, '2024-05-10 23:11:50.669598+00', '0x0964256674e42d61f0ff84097e28f65311786ccb', 12566, 12566, 1, '2023-08-09', 8, 23, '6806', true), - (78317, '2024-05-10 23:11:56.625558+00', '0xf143db60a0b1cbb8076b786eb6635b93f18db744', 5863, 5863, 1, '2024-02-13', 4, 8, '7341', true), - (76752, '2024-05-10 23:11:52.05134+00', '0x05ff7cc8b490b38898744037f951f3247673c2ed', 148887, 148887, 1, '2023-04-25', 160, 262, '3115', true), - (74075, '2024-05-10 23:11:44.593759+00', '0x0a61e9065219a1b84a9fa1b67482c485c39c51de', 30235, 30235, 1, '2023-08-05', 25, 36, '10694', true), - (78791, '2024-05-10 23:11:57.939719+00', '0xc971c4e2c7c2eac9a8358f6b9c3b923a93009f8f', 3283, 3283, 1, '2024-03-05', 2, 3, '355110', true), - (78656, '2024-05-10 23:11:57.580848+00', '0xaf21b968bb8aeac1c9d02ae972bf7f73b2256f68', 2883, 2883, 1, '2024-02-13', 2, 0, '245636', true), - (81126, '2024-05-10 23:12:04.852701+00', '0x3e6c23cdaa52b1b6621dbb30c367d16ace21f760', 2558, 2558, 1, '2023-08-03', 1, 1, '1048', true), - (79836, '2024-05-10 23:12:01.048476+00', '0xebdb4f871fff3add1afee782077b9359a8ce8060', 1639, 1639, 1, '2024-02-06', 1, 0, '2982', true), - (81087, '2024-05-10 23:12:04.726176+00', '0xb5dec9f249c9f485e65be7427ffd4799471e9ae8', 8012, 8012, 1, '2023-07-31', 5, 3, '2631', true), - (80100, '2024-05-10 23:12:02.114398+00', '0x140a8219678c254332f12b2d16442b6512ddea9e', 3872, 3872, 1, '2024-01-17', 1, 5, '6741', true), - (77808, '2024-05-10 23:11:55.181716+00', '0x75a323846a730d292d0f5eb152cdd0692dea5fc8', 3994, 3994, 1, '2024-04-03', 2, 10, '3928', true), - (77907, '2024-05-10 23:11:55.483395+00', '0x93205bff8d090578e14fba9b97bd1505ec030670', 4736, 4736, 1, '2024-03-13', 3, 9, '20286', true), - (82561, '2024-05-10 23:12:09.31312+00', '0x27ed00c709de12cb89c69460b32243f89542b3fb', 0, 0, 1, '2024-05-07', 5, 13, '395831', false), - (78431, '2024-05-10 23:11:57.019191+00', '0x7c621d5954a4ac21a0fd741ab6f302398f29d644', 11153, 11153, 1, '2024-02-21', 9, 35, '10810', true), - (78333, '2024-05-10 23:11:56.728749+00', '0x7dd7b12bbd948a52a319a3bfe51bacf7a5af7f75', 3206, 3206, 1, '2024-03-12', 2, 3, '356297', true), - (80093, '2024-05-10 23:12:02.100399+00', '0x380604e85e772f51014636aa72b107f163609dde', 4529, 4529, 1, '2023-10-23', 2, 5, '12335', true), - (79792, '2024-05-10 23:12:00.938822+00', '0x3339726b077b08ca88ca2262108beba4e7236882', 6868, 6868, 1, '2024-02-06', 5, 8, '4294', true), - (79287, '2024-05-10 23:11:59.446702+00', '0x50f17063acdb1924866fbe8e31e72a32a5209d73', 2863, 2863, 1, '2024-02-16', 1, 3, '195577', true), - (78545, '2024-05-10 23:11:57.295518+00', '0x61da82d341141dbafc8b536eedb23e7d83496c7c', 18822, 18822, 1, '2023-07-03', 14, 6, '4434', true), - (78600, '2024-05-10 23:11:57.456774+00', '0x2ae5f36c77a736f76d61f3eec06f12caf2963fd6', 7849, 7849, 1, '2024-02-13', 6, 11, '1864', true), - (79719, '2024-05-10 23:12:00.788369+00', '0x60dbf50076206f60bcc2edf9295f5734561b8d77', 12092, 12092, 1, '2023-10-30', 9, 6, '18580', true), - (80740, '2024-05-10 23:12:03.798522+00', '0x9e1e2bc60e0fdc756704d18346d511bba7543e9a', 8028, 8028, 1, '2023-09-27', 5, 7, '3850', true), - (81391, '2024-05-10 23:12:05.830711+00', '0xb6f6dce6000ca88cc936b450cedb16a5c15f157f', 2084, 2084, 1, '2023-05-28', 1, 0, '576', true), - (73773, '2024-05-10 23:11:42.67335+00', '0xc4ba0252a3b0dd1a80e329258e44cc2dae26abce', 30621, 30621, 1, '2023-04-30', 24, 26, '1890', true), - (78353, '2024-05-10 23:11:56.74692+00', '0xc0f84935d631095fdff65ceec1fd88c96b444c4c', 10782, 10782, 1, '2024-03-04', 10, 9, '318996', true), - (80042, '2024-05-10 23:12:01.959438+00', '0x43b3a88e27fa33c59567ef3dd52f002c78f49233', 1694, 1694, 1, '2024-01-20', 1, 0, '212348', true), - (80354, '2024-05-10 23:12:02.753161+00', '0xf6591c74c46762d94765a6ad27368ceaf5cea475', 2264, 2264, 1, '2023-12-19', 1, 1, '754', true), - (78497, '2024-05-10 23:11:57.162574+00', '0xda46696c9de358a9f17f5d8ad5bea9ac12eef348', 9054, 9054, 1, '2023-05-15', 5, 11, '359', true), - (78753, '2024-05-10 23:11:57.823819+00', '0xdfeddc98ae6edcb5f63178a8589f41b6477f6c42', 3928, 3928, 1, '2024-02-25', 3, 0, '10215', true), - (73792, '2024-05-10 23:11:42.907999+00', '0x5dd5eafe84357a8bd7a1ac69f425e11ab1e59bb8', 0, 0, 1, '2024-03-08', 16, 8, '267836', false), - (95727, '2024-05-14 06:00:30.632416+00', '0x8685df864b62f057d4fb5e51c6f2578f8c4d4e7a', 0, 0, 1, '2024-05-14', 2, 8, '384087', false), - (80516, '2024-05-10 23:12:03.238191+00', '0x4946ad657acd9735a5c7b47e46056dea852481dc', 3572, 3572, 1, '2023-08-12', 2, 0, '1972', true), - (79819, '2024-05-10 23:12:01.039277+00', '0x6fa6602734fd61a08512bc2179b19b982e731ed5', 1639, 1639, 1, '2024-02-06', 1, 0, '251927', true), - (80707, '2024-05-10 23:12:03.698228+00', '0xdc40cbf86727093c52582405703e5b97d5c64b66', 5514, 5514, 1, '2023-08-02', 2, 8, '50', true), - (79632, '2024-05-10 23:12:00.527086+00', '0x543c433afbf9e8bb5c621b61fa30f8b88cca85a3', 3946, 3946, 1, '2024-02-03', 2, 5, '9052', true), - (81125, '2024-05-10 23:12:04.857304+00', '0xc8aeb4c273583befce25cbc2a6d4a5c33e67d308', 3844, 3844, 1, '2023-08-02', 2, 1, '11770', true), - (74002, '2024-05-10 23:11:44.29372+00', '0x3d56999afb0c676d9750dffa6c5b5dc0cee7f1af', 0, 0, 1, '2024-05-05', 33, 98, '427905', false), - (81662, '2024-05-10 23:12:06.641642+00', '0x780b8d7a3299b4aa67a42f498a37abc2efb0ed95', 0, 0, 1, '2024-05-09', 8, 40, '472258', false), - (81784, '2024-05-10 23:12:06.895757+00', '0xa01572d421415a83ba5e10b8d0c61ce5916c8677', 0, 0, 1, '2024-05-07', 21, 104, '516187', false), - (81977, '2024-05-10 23:12:07.621192+00', '0x5151cb6aa222c128e5969d2b4f4cbae9f472f4be', 0, 0, 1, '2024-05-07', 11, 25, '505632', false), - (81938, '2024-05-10 23:12:07.504136+00', '0x9ed3a8db7e0b9f13dc76b47fac7ef946b6ca42b2', 0, 0, 1, '2024-05-06', 9, 26, '491462', false), - (97385, '2024-05-16 06:00:37.841992+00', '0xe0c9df5675c49f08cb04919b3e59c75a487224de', 0, 0, 1, '2024-05-15', 2, 10, '462601', false), - (78780, '2024-05-10 23:11:57.927897+00', '0x0df5ba52e8c055950aaaf5fcfe829020e898ee60', 7372, 7372, 1, '2023-06-21', 4, 7, '716', true), - (78398, '2024-05-10 23:11:56.907935+00', '0xf159dc86d3989f76e3ee343bb30e672bc081bb88', 10524, 10524, 1, '2023-07-29', 7, 4, '5745', true), - (80940, '2024-05-10 23:12:04.343376+00', '0x3b60e31cfc48a9074cd5bebb26c9eaa77650a43f', 10280, 10280, 1, '2023-04-28', 6, 11, '472', true), - (79741, '2024-05-10 23:12:00.793602+00', '0x8441fa93a8f2e372aba8a9f94f9dd78e9fb7ea36', 3623, 3623, 1, '2024-01-24', 2, 3, '2329', true), - (79996, '2024-05-10 23:12:01.821662+00', '0x0674ab75cbf5f3165fe70be116bed13df134664a', 4236, 4236, 1, '2024-01-22', 3, 0, '11155', true), - (80219, '2024-05-10 23:12:02.405553+00', '0x38e27a59d3cffb945ac8d41b7c398618354c08f6', 3335, 3335, 1, '2023-11-07', 2, 0, '732', true), - (81971, '2024-05-10 23:12:07.615005+00', '0x2499bdf18e33eb830bcf0d1c1e47b7e0cca07071', 1257, 1257, 1, '2024-05-10', 1, 3, '17354', true), - (73805, '2024-05-10 23:11:42.933773+00', '0xee1faa200bad42781e4bfeb4b7765f771f0f0342', 0, 0, 1, '2024-05-06', 48, 151, '393268', false), - (73858, '2024-05-10 23:11:43.135438+00', '0x4ac9884e0ffe5902858ca679c5ebbf4b913c1a52', 0, 0, 1, '2024-05-10', 6, 30, '377585', false), - (79030, '2024-05-10 23:11:58.609931+00', '0x39b65f3083ba5b6ae565dedfa030f9b16253a86f', 0, 0, 1, '2024-02-06', 8, 5, '284448', false), - (93902, '2024-05-11 06:00:25.251917+00', '0xeb4160ef1e672f1ed1e45bc3a48eb49594001e5e', 0, 0, 1, '2024-05-10', 10, 30, '399532', false), - (96407, '2024-05-15 06:00:32.643605+00', '0xb4bc1d15982c0e3f3f091b20b321d8549e96d8a6', 0, 0, 1, '2024-05-15', 2, 7, '456639', false), - (94013, '2024-05-11 06:00:26.067804+00', '0xd92d9109a3e9d856693ef5023a7f566272d2e8fd', 0, 0, 1, '2024-05-11', 22, 79, '480609', false), - (80562, '2024-05-10 23:12:03.374664+00', '0x7ecdf3fd56d3b9f512fa70a68734ce871e36be96', 7275, 7275, 1, '2023-09-01', 4, 9, '18989', true), - (79407, '2024-05-10 23:11:59.809337+00', '0xb3c64c744f0a1d518f5df65a5d3d04d6b49273a3', 8596, 8596, 1, '2023-07-17', 5, 9, '14299', true), - (80134, '2024-05-10 23:12:02.218238+00', '0x557441dc91a0563b8ef8dbdc8a626d2bc765f373', 2182, 2182, 1, '2024-01-13', 1, 1, '17265', true), - (80550, '2024-05-10 23:12:03.279195+00', '0x3c9d92a145b17b7df69d22eff292499b2849ee83', 1848, 1848, 1, '2023-11-17', 1, 0, '3306', true), - (74193, '2024-05-10 23:11:44.919505+00', '0x10676738db9601c5af144a17c3a48c8ebda7e353', 40896, 40896, 1, '2023-05-09', 34, 59, '11528', true), - (81374, '2024-05-10 23:12:05.816251+00', '0xb5031a7f86b962dec21218e6ea55c586d878d260', 2645, 2645, 1, '2023-06-03', 1, 1, '864', true), - (81677, '2024-05-10 23:12:06.660522+00', '0x1c5218d97afa1bba5cebe9d858c835f70a3ab022', 0, 0, 1, '2024-05-08', 8, 40, '410486', false), - (85858, '2024-05-10 23:12:19.582716+00', '0x78e1dd5ba3f8c5be9fb11bdf472c4ecd549ef38c', 0, 0, 1, '2024-05-06', 3, 8, '509125', false), - (94826, '2024-05-12 06:00:35.701143+00', '0x8dd6637e8bcb82649c155841f1495e8cbf228997', 0, 0, 1, '2024-05-11', 3, 15, '491042', false), - (94990, '2024-05-13 06:00:31.335367+00', '0x1efcf02c05d7866ad2691d41b3a283e7da3b9c2d', 0, 0, 1, '2024-05-12', 7, 17, '482024', false), - (95667, '2024-05-13 06:00:37.018217+00', '0x0172425c9c7927ba5bfffce42d418afc556296e2', 0, 0, 1, '2024-05-12', 1, 1, '12970', false), - (81593, '2024-05-10 23:12:06.39533+00', '0x151f540f1ac3e8060c8c377d37e30797d5b9eea4', 0, 0, 1, '2024-05-06', 12, 55, '380293', false), - (95472, '2024-05-13 06:00:35.681064+00', '0x6a3f306e30634ee84aee31b84da82bac8a93adc2', 0, 0, 1, '2024-05-12', 1, 5, '502951', false), - (81987, '2024-05-10 23:12:07.633412+00', '0xad7c4cf0b8687203c216aef128edbbadefb645b7', 0, 0, 1, '2024-05-07', 11, 28, '505650', false), - (94113, '2024-05-11 06:00:26.693919+00', '0xdadf337ab872f7533aac91322301eee33a0c1fec', 0, 0, 1, '2024-05-11', 21, 96, '444930', false), - (86751, '2024-05-10 23:12:22.30521+00', '0x3d16c42714b8b2e473752816a2c178132e091ac3', 0, 0, 1, '2024-05-06', 19, 91, '405994', false), - (97493, '2024-05-16 06:00:38.497246+00', '0x11d199eda53173a9055c3da86f45cb78e6106440', 0, 0, 1, '2024-05-15', 2, 0, '483078', false), - (79623, '2024-05-10 23:12:00.515991+00', '0x0f9b1b68f848cb65f532bc12825357201726d3d2', 23994, 23994, 1, '2023-06-05', 18, 31, '3647', true), - (80230, '2024-05-10 23:12:02.487305+00', '0xcf26fe037743f56dab8f9ca509e9fb7f59071bf1', 5171, 5171, 1, '2024-01-03', 3, 6, '192702', true), - (80936, '2024-05-10 23:12:04.3406+00', '0xeb2b6802332c2a86be4479b1993ba05afd91d300', 5396, 5396, 1, '2023-09-04', 3, 3, '4623', true), - (75267, '2024-05-10 23:11:48.027696+00', '0x3402aca642ddb9c322872dd84a3d4e2f1c17eff2', 161188, 161188, 1, '2023-05-14', 178, 158, '10351', true), - (83717, '2024-05-10 23:12:13.030283+00', '0xef6ed906193f25023df03e8e32591ee119418b19', 5797, 5797, 1, '2024-03-28', 4, 18, '376944', true), - (84801, '2024-05-10 23:12:16.301105+00', '0xb5e2e5f376c61f40485bbc11d5dc56609c2c0db3', 826, 826, 1, '2024-05-07', 1, 0, '384546', true), - (87165, '2024-05-10 23:12:23.427167+00', '0xef42cf85be6adf3081ada73af87e27996046fe63', 1589, 1589, 1, '2024-05-05', 1, 3, '523', true), - (89651, '2024-05-10 23:12:30.488933+00', '0x3dedb545e9b89f63fa71ab75497735d802c9d26f', 7870, 7870, 1, '2023-06-08', 4, 11, '1970', true), - (89200, '2024-05-10 23:12:28.896561+00', '0xde80f39233e19bc358499457b7e78af9b2fdb37b', 3568, 3568, 1, '2024-02-01', 2, 3, '10430', true), - (89348, '2024-05-10 23:12:29.515738+00', '0x73ccca7296dfedb88bfd68ceda833d8d79abb35f', 3686, 3686, 1, '2024-02-11', 1, 5, '227886', true), - (89565, '2024-05-10 23:12:30.260006+00', '0x7ce0448b0fafab6cace981fffa967cf380a2cc33', 3175, 3175, 1, '2023-12-20', 2, 0, '10096', true), - (89635, '2024-05-10 23:12:30.470288+00', '0x17a059b6b0c8af433032d554b0392995155452e6', 3383, 3383, 1, '2023-10-23', 2, 0, '60', true), - (89162, '2024-05-10 23:12:28.85504+00', '0x4ebee6ba2771c19adf9af348985bcf06d3270d42', 5136, 5136, 1, '2023-10-02', 3, 2, '4275', true), - (89378, '2024-05-10 23:12:29.546316+00', '0xa55112af5e427bd44d4542627180bb493b338a9b', 5495, 5495, 1, '2024-02-07', 4, 3, '234141', true), - (88861, '2024-05-10 23:12:27.829721+00', '0xc09d3402515676b81a2f768c365146ea3faa5605', 3061, 3061, 1, '2024-02-16', 2, 1, '1087', true), - (89151, '2024-05-10 23:12:28.754326+00', '0xfee22e2ce7808ba88e5dbee52388e6f4a2eb0f42', 9790, 9790, 1, '2024-02-12', 8, 14, '261625', true), - (89319, '2024-05-10 23:12:29.399311+00', '0x2f60d2bb84eb8df6951f7215ef035ef052ba2725', 1617, 1617, 1, '2024-02-12', 1, 0, '880', true), - (89138, '2024-05-10 23:12:28.735513+00', '0xce4eb76664210426e900c20d4a3741a6b0f64855', 3384, 3384, 1, '2024-03-12', 1, 5, '1325', true), - (91737, '2024-05-10 23:12:36.492587+00', '0x2e4851911aec9674f54616d92e856d8f8b725490', 0, 0, 1, '2024-03-23', 1, 5, '237435', false), - (84895, '2024-05-10 23:12:16.663062+00', '0x824f7d1d35d1528e33a94ad39b53b484b541fc6b', 0, 0, 1, '2024-05-06', 2, 10, '453511', false), - (88150, '2024-05-10 23:12:26.06737+00', '0x93d7c80eee39bfe8655078077c72780f1c992bac', 0, 0, 1, '2024-05-05', 3, 15, '408634', false), - (77039, '2024-05-10 23:11:52.88396+00', '0xd206bad487e3d6a6d94de601396275065def594c', 0, 0, 1, '2024-04-14', 1, 0, '479001', false), - (76528, '2024-05-10 23:11:51.460138+00', '0x9740f094f02ccf0e7389e9232b470b068befab4c', 0, 0, 1, '2024-04-19', 1, 5, '443160', false), - (76381, '2024-05-10 23:11:51.161381+00', '0x8a6ca0f498ee45b5bcc2e60eaa68f92f93bedfaf', 0, 0, 1, '2024-04-20', 1, 0, '256500', false), - (74745, '2024-05-10 23:11:46.590743+00', '0x624260517cd02339cc41525f05fb7520ab11fc2a', 0, 0, 1, '2024-05-05', 3, 4, '431749', false), - (87503, '2024-05-10 23:12:24.397633+00', '0x58f1eb47c0885606e708564c52f4eeed54d24f02', 2640, 2640, 1, '2024-05-05', 2, 10, '488178', true), - (87981, '2024-05-10 23:12:25.648381+00', '0x5f57c686bdbc03242c8fa723b80f0a6cdea79546', 5048, 5048, 1, '2023-08-02', 2, 6, '6227', true), - (87935, '2024-05-10 23:12:25.518246+00', '0x6c9e4f9e8ca34743c3926131dff919bd9d934c9e', 3914, 3914, 1, '2024-05-05', 5, 13, '9587', true), - (85864, '2024-05-10 23:12:19.590231+00', '0x26c13e29874ef2032b8a4ae54e11a6964730ace9', 1535, 1535, 1, '2024-05-06', 1, 3, '4661', true), - (84058, '2024-05-10 23:12:13.951003+00', '0xcdce6ad76143a42c14ebdac67c199af57cebc565', 7383, 7383, 1, '2024-05-05', 11, 50, '378285', true), - (94794, '2024-05-12 06:00:35.509111+00', '0x3bf1977b94ffa9e3c41f17a65269c5084d4ae168', 0, 0, 1, '2024-05-11', 4, 18, '516335', false), - (94092, '2024-05-11 06:00:26.655768+00', '0xeee39fff8f8826368cbf1258807f3f7d65251396', 0, 0, 1, '2024-05-11', 20, 90, '432646', false), - (82602, '2024-05-10 23:12:09.433455+00', '0x35acaeb4fb2238fcb24fd348214df589bf57ba85', 0, 0, 1, '2024-05-05', 14, 39, '448944', false), - (97964, '2024-05-17 06:00:47.072571+00', '0x67f5c0eacdfd13c681626090bee69b6670b2862d', 0, 0, 1, '2024-05-16', 1, 0, '293480', false), - (97976, '2024-05-17 06:00:47.084305+00', '0x4fb59db20f72512c4f9f6b18cc9e042f235a42d7', 0, 0, 1, '2024-05-17', 1, 0, '537539', false), - (94373, '2024-05-12 06:00:32.680728+00', '0x3e37142870e7cf988e550db5711e82adf0a0d2c9', 0, 0, 1, '2024-05-12', 4, 20, '497375', false), - (98012, '2024-05-17 06:00:47.350632+00', '0x97bd3a4798e43a83e63c68ee535cf42746654141', 0, 0, 1, '2024-05-16', 1, 3, '216319', false), - (81997, '2024-05-10 23:12:07.642849+00', '0x6fc811ed9ff0acb511fabf294d157f5416790d46', 0, 0, 1, '2024-05-09', 9, 45, '511068', false), - (97999, '2024-05-17 06:00:47.201848+00', '0x68d07775d9c0978753edc76f2dc32c4a8cb2c7db', 0, 0, 1, '2024-05-16', 1, 0, '522484', false), - (98026, '2024-05-17 06:00:47.363235+00', '0x3d34994752689c5bc0c930c14fbe67ccc0b52ede', 0, 0, 1, '2024-05-16', 1, 3, '502349', false), - (81679, '2024-05-10 23:12:06.661722+00', '0x58105b7f6a09735a27b9564863a33ca47f4d2387', 0, 0, 1, '2024-05-08', 6, 30, '518831', false), - (87644, '2024-05-10 23:12:24.772744+00', '0x9eb4190a8a7cfcbd854ac86c0a7fe5c9351cfc20', 0, 0, 1, '2024-05-05', 1, 3, '501245', false), - (81903, '2024-05-10 23:12:07.464761+00', '0x2b07789f279e8e5cd64413417a247f8a782331a6', 0, 0, 1, '2024-05-09', 7, 35, '434268', false), - (88792, '2024-05-10 23:12:27.694476+00', '0xdd45b8f345768db3342d17d267fb18e76fae1e32', 0, 0, 1, '2024-04-14', 1, 5, '474393', false), - (88816, '2024-05-10 23:12:27.717066+00', '0xe59038e8345c2b801ae7d5ffe7c320ff6030f6e2', 0, 0, 1, '2024-04-17', 1, 5, '380155', false), - (78161, '2024-05-10 23:11:56.155558+00', '0x719e5abf94279c7b18d791683e75d7ea2c3f5c28', 0, 0, 1, '2024-03-26', 2, 3, '390713', false), - (77545, '2024-05-10 23:11:54.328742+00', '0xf3361be287cf7163f0cbe56b507bedc9c0a8e0ae', 0, 0, 1, '2024-04-08', 1, 1, '380256', false), - (77559, '2024-05-10 23:11:54.416607+00', '0x96f2dca78b6717836ccd34498efb9167197e8459', 0, 0, 1, '2024-04-07', 1, 0, '437710', false), - (88513, '2024-05-10 23:12:26.978232+00', '0xf723d05f10e8503feaba5cfbb9a5513eb8ecbfd6', 4197, 4197, 1, '2024-01-27', 2, 6, '260', true), - (88039, '2024-05-10 23:12:25.807186+00', '0x2bdf0f36acccb0847ec29adf0fe1b5bbedde642c', 3462, 3462, 1, '2024-05-05', 5, 1, '343483', true), - (82117, '2024-05-10 23:12:08.056329+00', '0xfc25f559c61ff89c6d2daf0b9171c87146a92695', 0, 0, 1, '2024-05-09', 1, 5, '505870', false), - (77583, '2024-05-10 23:11:54.441263+00', '0xef7f2e81ea14538858d962df34eb1bfda83da395', 0, 0, 1, '2024-04-07', 1, 0, '240866', false), - (73981, '2024-05-10 23:11:44.257626+00', '0x9acbbeb6fcf7af4ff79bc55c1336e7ce67c5bd08', 0, 0, 1, '2024-05-05', 23, 49, '503095', false), - (74282, '2024-05-10 23:11:45.217551+00', '0x9ca10fe0ccc43d8464e91938e56411e6ecfb8e2d', 0, 0, 1, '2024-05-04', 17, 21, '407128', false), - (97059, '2024-05-16 06:00:35.350199+00', '0xd72957348cd60a9ccf8d729e1a0e90cf24ae6e7d', 0, 0, 1, '2024-05-15', 1, 3, '452645', false), - (73850, '2024-05-10 23:11:43.121201+00', '0xf67e097e33ea39963545b5347270058b30929b48', 0, 0, 1, '2024-05-06', 52, 250, '401275', false), - (81707, '2024-05-10 23:12:06.740738+00', '0xaed98608ccdf79238aed02c21390caed483c87d1', 0, 0, 1, '2024-05-05', 9, 38, '461302', false), - (97491, '2024-05-16 06:00:38.490599+00', '0x1b606a51eb1cfbd7cb64d8c0159f989dd275bf3c', 0, 0, 1, '2024-05-15', 1, 5, '463747', false), - (81460, '2024-05-10 23:12:06.05696+00', '0x97b22e65432b5879706e27b9a83fe4cf0a10c1f2', 0, 0, 1, '2024-05-06', 6, 30, '514153', false), - (89899, '2024-05-10 23:12:31.143587+00', '0xada4a7743b889d35e6154019ca136f4657be28bf', 0, 0, 1, '2024-05-08', 5, 3, '491018', false), - (81489, '2024-05-10 23:12:06.091897+00', '0x2fd93c0ea69017431884ea150cf082bcb865e165', 0, 0, 1, '2024-05-06', 15, 70, '402461', false), - (89067, '2024-05-10 23:12:28.58146+00', '0x34ed10ce017342c1d0401ee6b59a187634b7993d', 0, 0, 1, '2024-03-03', 2, 0, '369629', false), - (89285, '2024-05-10 23:12:29.227351+00', '0xa60138df756ffb107c4d910f36b60ad1b4de2198', 0, 0, 1, '2024-02-22', 1, 2, '191351', false), - (97154, '2024-05-16 06:00:36.100782+00', '0x3e41b539eb3c8c16e6c1093e91198ee071451f09', 0, 0, 1, '2024-05-16', 1, 5, '394052', false), - (97243, '2024-05-16 06:00:36.717853+00', '0xb1a04a78258f523ede97916d016e4e1ff2dc4a53', 0, 0, 1, '2024-05-15', 1, 5, '518800', false), - (81612, '2024-05-10 23:12:06.493764+00', '0x6aecf5c79c3d5cd028e2fd9c616ac5d2ac81f01d', 0, 0, 1, '2024-05-08', 5, 24, '324790', false), - (81962, '2024-05-10 23:12:07.602466+00', '0x626aef5c0d4dd0eee86818240f59ffe47f4165e2', 0, 0, 1, '2024-05-07', 10, 50, '409670', false), - (81964, '2024-05-10 23:12:07.609196+00', '0x4ba277699f2ec1a0dfcb65f01abe65803ab3d4d0', 0, 0, 1, '2024-05-05', 7, 35, '506167', false), - (82135, '2024-05-10 23:12:08.072771+00', '0x74ae9c2a2cd699302a90156a17658a180e378ac4', 0, 0, 1, '2024-05-06', 4, 7, '461146', false), - (81564, '2024-05-10 23:12:06.349961+00', '0x6c97baaa579ec30ddb31912b82cf4363581965b3', 0, 0, 1, '2024-05-05', 11, 35, '416495', false), - (94132, '2024-05-11 06:00:26.813646+00', '0x9b93bf00dd9476851a564154e9b81dfe3406c669', 0, 0, 1, '2024-05-11', 17, 78, '443183', false), - (81481, '2024-05-10 23:12:06.081614+00', '0xe3b4cc230ee89ed895e3f07c5518ea027dff7a5b', 0, 0, 1, '2024-04-08', 3, 6, '449641', false), - (81468, '2024-05-10 23:12:06.071059+00', '0x247107e924b45b1aae1411f1b2f04deb934e2062', 0, 0, 1, '2024-05-09', 2, 5, '453970', false), - (79668, '2024-05-10 23:12:00.631645+00', '0x44db0002349036164dd46a04327201eb7698a53e', 0, 0, 1, '2024-02-08', 1, 1, '238527', false), - (82010, '2024-05-10 23:12:07.727287+00', '0xae5d0cee466d0327b3d6593fdc1572095b8b0de9', 0, 0, 1, '2024-05-06', 16, 77, '401099', false), - (81659, '2024-05-10 23:12:06.635468+00', '0x3533980938df81199e8cb46e108ba6d680314b63', 0, 0, 1, '2024-05-07', 5, 25, '394933', false), - (82009, '2024-05-10 23:12:07.728087+00', '0x13f3769c58472977f418b7da1c6433fcf7844fd6', 0, 0, 1, '2024-05-10', 3, 13, '401121', false), - (81847, '2024-05-10 23:12:07.022346+00', '0x3f853e2c93daac0fdb23b2d0464533ab7467e7bb', 0, 0, 1, '2024-05-07', 7, 35, '469005', false), - (81684, '2024-05-10 23:12:06.66208+00', '0xa5848e5fb54a17ee03d7e2cf6c3b84cb95d1efb3', 0, 0, 1, '2024-05-05', 7, 32, '486199', false), - (82021, '2024-05-10 23:12:07.74901+00', '0x5f067f00e2d16200ddd1512be029e54e2c8600ea', 0, 0, 1, '2024-05-09', 5, 24, '508315', false), - (82090, '2024-05-10 23:12:07.947036+00', '0xc13847bad1d8032e241c1d59fa00e4fa1a0ee87c', 0, 0, 1, '2024-05-08', 3, 15, '402134', false), - (84299, '2024-05-10 23:12:14.619762+00', '0xc26df7194f6b8077676643104412271e6e4daea7', 0, 0, 1, '2024-05-07', 2, 3, '478716', false), - (97455, '2024-05-16 06:00:38.190328+00', '0xf1a15477c766981c9169be9b911a34d33f311f83', 0, 0, 1, '2024-05-16', 2, 2, '457167', false), - (79124, '2024-05-10 23:11:58.864716+00', '0xeb550a32822812b114383adb6ea5455963f31e5f', 0, 0, 1, '2024-02-20', 2, 1, '360187', false), - (96526, '2024-05-15 06:00:33.837805+00', '0xc3fa7f32a27dc4e0ab2cdf95d74d6cd4e0a27bd6', 0, 0, 1, '2024-05-14', 1, 5, '375900', false), - (95424, '2024-05-13 06:00:35.371659+00', '0xf140740cdedddcf81333f8946b68561eb5757e7c', 0, 0, 1, '2024-05-12', 4, 14, '489263', false), - (81462, '2024-05-10 23:12:06.055722+00', '0xf830e85397264cf6134f69605fb1df09ed9d1ebd', 0, 0, 1, '2024-05-05', 55, 97, '504754', false), - (85170, '2024-05-10 23:12:17.489728+00', '0x7393380b2de024bd52bd154a80e199fc5a48948d', 0, 0, 1, '2024-05-07', 2, 5, '458862', false), - (96916, '2024-05-15 06:00:36.756731+00', '0x8eb88458d30529b79eeee8c3ecfe0cb3ea42e736', 0, 0, 1, '2024-05-14', 1, 4, '248564', false), - (93037, '2024-05-10 23:12:40.041568+00', '0xe9bd1d46f6a6453a9a4d16b99eecd88d733a3bf8', 0, 0, 1, '2024-02-06', 1, 1, '250824', false), - (89959, '2024-05-10 23:12:31.453097+00', '0xc84c580cd75e0c4e1291f074bcb4499c6c3e784c', 0, 0, 1, '2024-05-10', 1, 0, '6903', false), - (96498, '2024-05-15 06:00:33.563726+00', '0xa3f6679520c137d993739f20457abbace6a01617', 0, 0, 1, '2024-05-14', 2, 0, '193548', false), - (78343, '2024-05-10 23:11:56.732996+00', '0x186e8bb0ad80f8f303416d83863684d158071cdd', 0, 0, 1, '2024-03-21', 1, 0, '281052', false), - (76015, '2024-05-10 23:11:49.904216+00', '0xa1ce40d373815cd18013601184991da2daa05e8d', 0, 0, 1, '2024-04-24', 2, 2, '426526', false), - (76123, '2024-05-10 23:11:50.338964+00', '0xa2c5c29fb3a579ed46aa05aef138d093a5ffd855', 0, 0, 1, '2024-04-23', 1, 5, '429174', false), - (76818, '2024-05-10 23:11:52.198233+00', '0xbf1b61cb577b9370371a551c4f3def0526193718', 0, 0, 1, '2024-04-16', 1, 1, '402021', false), - (76207, '2024-05-10 23:11:50.656389+00', '0xb3792cc9d596a717e8f7234e49a2222ecd011edd', 0, 0, 1, '2024-04-22', 1, 1, '392187', false), - (76833, '2024-05-10 23:11:52.289169+00', '0x308c3601525200a9e2173b467f82c22e20e949f4', 0, 0, 1, '2024-04-16', 1, 1, '484393', false), - (77282, '2024-05-10 23:11:53.548767+00', '0x1cb1acfc2da19e35602a695d4005192c1a5c4361', 0, 0, 1, '2024-04-11', 1, 1, '415471', false), - (75469, '2024-05-10 23:11:48.514566+00', '0x2ff496c136b581d2231f9edd93ac3429acf3628e', 0, 0, 1, '2024-04-07', 29, 53, '440557', false), - (76332, '2024-05-10 23:11:50.980405+00', '0x58a599f71f4ee4d22fdb546aa3a50e55b94e8e99', 0, 0, 1, '2024-04-19', 2, 1, '485965', false), - (78079, '2024-05-10 23:11:55.932227+00', '0x1351d2cf237dc34eeec11f0e3740f0245f61a54e', 0, 0, 1, '2024-03-30', 1, 0, '319117', false), - (75640, '2024-05-10 23:11:48.911638+00', '0x17f12c150dd561f9932f42485be40711e1afd4b5', 0, 0, 1, '2024-04-19', 4, 18, '473895', false), - (78802, '2024-05-10 23:11:57.951229+00', '0x0c8b7cb28169a5d9914a8e6925eca0de3d0814da', 0, 0, 1, '2024-02-10', 3, 4, '196248', false), - (88525, '2024-05-10 23:12:26.987423+00', '0x01bdd23448f53594bcb8163055155194177c0fe2', 2629, 2629, 1, '2024-03-30', 2, 1, '19463', true), - (82980, '2024-05-10 23:12:10.489442+00', '0x4a39ae58b605102913ac19b7c071da75b55b2674', 1795, 1795, 1, '2024-05-08', 1, 5, '349722', true), - (87054, '2024-05-10 23:12:23.168622+00', '0x2117bf88b4cb0186eaa87500a045fc998290e42a', 1953, 1953, 1, '2024-05-06', 1, 5, '21431', true), - (87195, '2024-05-10 23:12:23.532943+00', '0xf8a025b42b07db05638fe596cce339707ec3cc71', 2022, 2022, 1, '2024-05-05', 1, 5, '9507', true), - (89054, '2024-05-10 23:12:28.495641+00', '0x98ca6baf2eb6715f00c8f7453da8c81757311dd4', 1760, 1760, 1, '2024-03-29', 1, 1, '250455', true), - (88105, '2024-05-10 23:12:25.947039+00', '0xcd879d4bc804ade51f73b5fd16b5005487c4fdc2', 4724, 4724, 1, '2024-02-28', 3, 7, '247238', true), - (76664, '2024-05-10 23:11:51.814629+00', '0xc8e6379c2c61cfde1d65ac28c65656f50e61cd19', 0, 0, 1, '2024-04-17', 1, 0, '199782', false), - (75390, '2024-05-10 23:11:48.281572+00', '0xc2c9aa77ff0ced181aa454c6e68b6b72dd9d2dce', 0, 0, 1, '2024-05-03', 2, 5, '487576', false), - (75279, '2024-05-10 23:11:48.039131+00', '0x64c90f8a492cdf2e1126b0bc1a82d40edd20497e', 0, 0, 1, '2024-04-10', 10, 27, '5847', false), - (81566, '2024-05-10 23:12:06.359163+00', '0x99f1059302e6f7b9cbe0fefa3563a20cc3dcf860', 0, 0, 1, '2024-05-06', 10, 48, '513392', false), - (74324, '2024-05-10 23:11:45.348138+00', '0x6afe80730912d2b38fa5e35f72e44c2fc50f0b6b', 0, 0, 1, '2024-05-05', 56, 252, '499563', false), - (76031, '2024-05-10 23:11:49.915778+00', '0x2fe65c45b5b9b54164427884f014af85acd09a22', 0, 0, 1, '2024-02-14', 6, 4, '317470', false), - (79186, '2024-05-10 23:11:58.998624+00', '0x73ca335719ee9caa510beb94414e766947752ba2', 0, 0, 1, '2024-02-19', 1, 0, '264496', false), - (82707, '2024-05-10 23:12:09.749967+00', '0x57301eb05d2aec733c239fd21d79764682e30b2c', 0, 0, 1, '2024-05-07', 11, 55, '417059', false), - (82895, '2024-05-10 23:12:10.307925+00', '0x3984b1e312dacbdb64fcbb39434945af81d0de46', 0, 0, 1, '2024-05-08', 9, 37, '423068', false), - (77881, '2024-05-10 23:11:55.390587+00', '0x93f3697bd5489c3ca6791fcea6606c153dc5f4d1', 0, 0, 1, '2023-10-02', 3, 6, '16692', false), - (77242, '2024-05-10 23:11:53.443364+00', '0x63edf1f0451db5e365ccf9ee068a5bb52fc14be4', 0, 0, 1, '2024-04-11', 1, 1, '395384', false), - (77187, '2024-05-10 23:11:53.317793+00', '0x49c08159de1ae3a8b2d5cc7baa9a23ba9e96910c', 0, 0, 1, '2024-04-10', 4, 4, '252217', false), - (77600, '2024-05-10 23:11:54.543345+00', '0x787db9b5e3ef08d24c1ccc0943935e93fe9efe0a', 0, 0, 1, '2024-04-06', 1, 0, '386676', false), - (77861, '2024-05-10 23:11:55.365434+00', '0xb900b2059e7ea4136b42815f429302e1b7001a80', 0, 0, 1, '2024-04-02', 1, 0, '423741', false), - (77839, '2024-05-10 23:11:55.208243+00', '0x384973ce79c352ad766f56672babec85e897f234', 0, 0, 1, '2024-02-08', 2, 3, '218807', false), - (75878, '2024-05-10 23:11:49.524728+00', '0xc3b067848bd828a3b164932a8a04015c2b161f98', 0, 0, 1, '2024-04-26', 4, 20, '451791', false), - (79681, '2024-05-10 23:12:00.647751+00', '0xf7b7dd2cc91cdc39799e8aa9bada6bb6c99bbe5f', 0, 0, 1, '2024-02-03', 2, 2, '244720', false), - (79964, '2024-05-10 23:12:01.707655+00', '0xc98120ba89692bfdc3de97a8a7b8bac71bbddd6b', 0, 0, 1, '2024-02-01', 1, 0, '248459', false), - (78705, '2024-05-10 23:11:57.705235+00', '0xda822d50f0d49c91147b27ed59f75b9ee627f4a7', 0, 0, 1, '2024-03-03', 4, 13, '227605', false), - (77228, '2024-05-10 23:11:53.429763+00', '0x68862aa32db3ee03312d32a3f7f2724a296e9b0f', 0, 0, 1, '2023-10-28', 5, 5, '16426', false), - (80442, '2024-05-10 23:12:02.992673+00', '0xef9e56012a4f1cfade136f878672d08b6429b71e', 0, 0, 1, '2023-12-04', 1, 0, '7108', false), - (79570, '2024-05-10 23:12:00.276072+00', '0x742a48de135660349b89a77121741e171e4fa26b', 0, 0, 1, '2024-02-04', 4, 5, '226009', false), - (79978, '2024-05-10 23:12:01.723711+00', '0x05dd71b9b95f5002a85fb5187e87234ac1073329', 0, 0, 1, '2024-01-21', 5, 12, '210693', false), - (81266, '2024-05-10 23:12:05.355741+00', '0xf7356eac86640c188eb5116b593e089f3e1f2131', 0, 0, 1, '2023-07-03', 2, 10, '15195', false), - (80201, '2024-05-10 23:12:02.390083+00', '0x94643cacf35d6f478ba36e7c38bffe9eb6e531fc', 0, 0, 1, '2023-11-24', 11, 13, '14859', false), - (81150, '2024-05-10 23:12:04.876988+00', '0x5d9356cbc88d1b8cb1073d489daf1c7e3001bc0f', 0, 0, 1, '2023-08-03', 1, 1, '17143', false), - (81210, '2024-05-10 23:12:05.231295+00', '0x18d2cd29c1a738911c80421f4464cee39af20f03', 0, 0, 1, '2023-07-28', 2, 1, '3066', false), - (81471, '2024-05-10 23:12:06.052895+00', '0x46011ab45660180f0a23b75c00e60b43d88ba299', 0, 0, 1, '2024-05-05', 5, 21, '443238', false), - (77584, '2024-05-10 23:11:54.441651+00', '0x01ec46eaa73e6c2ab9bd83078884f6e0638158ee', 0, 0, 1, '2024-04-07', 3, 0, '451923', false), - (81546, '2024-05-10 23:12:06.221941+00', '0x05325fc71d0fd9d42cb3e3a223bac6b0cf53ff9c', 0, 0, 1, '2024-05-06', 6, 30, '433035', false), - (77649, '2024-05-10 23:11:54.595098+00', '0xc11c78f8909d64d0264a8581ab2df1bff26a0730', 0, 0, 1, '2024-02-05', 4, 4, '270886', false), - (79932, '2024-05-10 23:12:01.593663+00', '0x338050301df259ab1aee79026e6e1bff7b10c899', 0, 0, 1, '2024-02-04', 5, 5, '236389', false), - (77252, '2024-05-10 23:11:53.452306+00', '0xdc6d368ede51c658f7c04dc2c93f80c049cb826e', 0, 0, 1, '2024-04-11', 1, 1, '469302', false), - (77290, '2024-05-10 23:11:53.557686+00', '0x3d29c1482c224c0fe4b058a3d930a9264dd0a22e', 0, 0, 1, '2024-04-10', 1, 1, '389066', false), - (77389, '2024-05-10 23:11:53.84495+00', '0x5b936a94459e1a0d7f3d26e0a739efff11851a5d', 0, 0, 1, '2024-04-09', 1, 1, '400712', false), - (77883, '2024-05-10 23:11:55.394114+00', '0xe85691f53fe10a7f79200aa571c27bb4bf6cf0ec', 0, 0, 1, '2024-04-02', 1, 2, '418373', false), - (96212, '2024-05-14 06:00:34.159563+00', '0xa63d200635f8a2853e8c43b506910b5663200255', 0, 0, 1, '2024-05-13', 2, 10, '474329', false), - (96460, '2024-05-15 06:00:33.132351+00', '0xaa652f5b342e598fd9f06d6c78983cca1dd8c742', 0, 0, 1, '2024-05-14', 1, 0, '489689', false), - (96477, '2024-05-15 06:00:33.526506+00', '0xc1b442d72b4a082f358c68f3722fa8b98e29e016', 0, 0, 1, '2024-05-14', 1, 1, '214825', false), - (77850, '2024-05-10 23:11:55.353923+00', '0xcf9b4c108cd0dacfe77d6b25d0e4d643debb1daf', 0, 0, 1, '2024-04-03', 3, 6, '430205', false), - (77464, '2024-05-10 23:11:54.072071+00', '0xdb14e2a225a5b341985d5d4dc2a8c7df70b508fd', 0, 0, 1, '2024-04-08', 1, 2, '211254', false), - (77926, '2024-05-10 23:11:55.50367+00', '0xcea2f4e6c5400aaa515d27fa3fe8a5132a3c016b', 0, 0, 1, '2024-04-02', 1, 0, '430358', false), - (78105, '2024-05-10 23:11:56.037988+00', '0x628d4c61d81ac4f286b1778a063ed2f8810bc367', 0, 0, 1, '2024-03-29', 2, 0, '216585', false), - (77940, '2024-05-10 23:11:55.648964+00', '0x44407d543e0de530a222d2643392162cb1ebe69f', 0, 0, 1, '2024-04-01', 1, 0, '436550', false), - (81493, '2024-05-10 23:12:06.09145+00', '0xdb8538d46da031a07e3ee1bf2b2878b491db57a9', 0, 0, 1, '2024-05-06', 7, 35, '501732', false), - (96457, '2024-05-15 06:00:33.123457+00', '0x17d355ed607835092af602676a01ffabef00467f', 0, 0, 1, '2024-05-14', 1, 5, '411286', false), - (89592, '2024-05-10 23:12:30.364724+00', '0xb97a251df2672b0e252b28a96857a8ace9929ccc', 1848, 1848, 1, '2023-11-17', 1, 0, '11984', true), - (89840, '2024-05-10 23:12:31.012142+00', '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20', 2590, 2590, 1, '2023-07-13', 1, 1, '315', true), - (89891, '2024-05-10 23:12:31.133925+00', '0x6e786fcfcb98da9df87ab0b7a2d64067c90daba9', 1599, 1599, 1, '2024-05-10', 1, 5, '10914', true), - (88732, '2024-05-10 23:12:27.561167+00', '0xc6d14b4c2db572b018560618e68c6b216582c5a6', 3917, 3917, 1, '2024-03-28', 3, 4, '193423', true), - (85028, '2024-05-10 23:12:17.029157+00', '0xa7c89995b915d7416ae3adfbc60f5aa9fd995e87', 3075, 3075, 1, '2024-05-06', 4, 7, '442334', true), - (81966, '2024-05-10 23:12:07.614924+00', '0xea2653aae908ac94d7529487f4b11dcf3f7b25c6', 0, 0, 1, '2024-05-05', 8, 31, '316433', false), - (77617, '2024-05-10 23:11:54.55917+00', '0x38a89b2c38df86de1dcadec1642b6d27c4610508', 0, 0, 1, '2024-04-06', 1, 0, '447958', false), - (77662, '2024-05-10 23:11:54.670958+00', '0xe19bacafd2b0e2e81031ce925e5475be51c635eb', 0, 0, 1, '2024-04-06', 1, 0, '454065', false), - (75411, '2024-05-10 23:11:48.386868+00', '0xe7ef0b91e78f670b51c39da983849df2585c5a34', 0, 0, 1, '2024-04-05', 15, 14, '403399', false), - (78222, '2024-05-10 23:11:56.3539+00', '0xa8f0048a0d1a04663ca5010d0beac5bcaeea0eef', 0, 0, 1, '2024-03-27', 1, 3, '20333', false), - (78250, '2024-05-10 23:11:56.455067+00', '0xef9638169f5987059c2f8e195a34ba82bf482122', 0, 0, 1, '2024-03-25', 1, 0, '15813', false), - (78014, '2024-05-10 23:11:55.801082+00', '0x1cdd2f7329c6c17426bac386e5aab1f76d8919ef', 0, 0, 1, '2024-03-31', 1, 1, '425925', false), - (77570, '2024-05-10 23:11:54.428666+00', '0x21ab4c9d010dbf3bff3ab6afb55c1db11191c892', 0, 0, 1, '2024-04-05', 2, 5, '376665', false), - (78323, '2024-05-10 23:11:56.63523+00', '0xedb40e5fb53587c2b5dde4d9c62f4e5309b82622', 0, 0, 1, '2024-02-23', 2, 2, '242658', false), - (96665, '2024-05-15 06:00:34.988394+00', '0xe5765e2329d23a731feaf920ff02993b1da9f2a7', 0, 0, 1, '2024-05-14', 1, 5, '392018', false), - (96922, '2024-05-15 06:00:36.763098+00', '0xe540302d3b59c5fefeb9967eec7201eccd5327cb', 0, 0, 1, '2024-05-14', 1, 5, '472949', false), - (80081, '2024-05-10 23:12:02.087534+00', '0x1e34a0daeedd3aaaee515c92791e860591b04f0c', 0, 0, 1, '2023-05-06', 23, 4, '12687', false), - (78332, '2024-05-10 23:11:56.727375+00', '0xf08f12498e115cd7bd5c848656c125985e711d56', 0, 0, 1, '2024-03-22', 3, 3, '379520', false), - (77231, '2024-05-10 23:11:53.431625+00', '0xd3ed81842534e5492ec31a3c1f55972f9c756c52', 0, 0, 1, '2024-03-26', 2, 2, '406608', false), - (78219, '2024-05-10 23:11:56.355379+00', '0xf1338c4afc97322b71dd9b0708847ba988d8d8f0', 0, 0, 1, '2024-03-25', 2, 10, '392470', false), - (78618, '2024-05-10 23:11:57.452673+00', '0xe3f952fc4e698c1d0c89ac754b903f101a9b0a14', 0, 0, 1, '2024-03-11', 3, 0, '221323', false), - (78624, '2024-05-10 23:11:57.539397+00', '0x8b7ebeb60d73d91e4ba7f07a31efc35272a43946', 0, 0, 1, '2024-03-11', 1, 0, '319353', false), - (78715, '2024-05-10 23:11:57.715456+00', '0xe86146c379fbb481f85ef63aa3d851c1c98af2dc', 0, 0, 1, '2024-03-07', 1, 0, '279628', false), - (94195, '2024-05-12 06:00:30.86057+00', '0xd3c2ea6a8556fced7ac10f3c38bdbc6fdd18b386', 0, 0, 1, '2024-05-11', 12, 31, '529921', false), - (78042, '2024-05-10 23:11:55.89886+00', '0x7ad6810d7b502db492da18c8aac930b38f6448b8', 0, 0, 1, '2024-02-11', 3, 2, '309527', false), - (78773, '2024-05-10 23:11:57.915277+00', '0xc5bbcc8e8881180ea5a5b3f8fa195e1bfc3e9537', 0, 0, 1, '2024-03-05', 1, 0, '252186', false), - (73933, '2024-05-10 23:11:43.548373+00', '0x6884fa21b4c3715613ff1f27c684faf0fa0c7501', 0, 0, 1, '2024-05-10', 5, 22, '456502', false), - (97101, '2024-05-16 06:00:35.699874+00', '0x8f7005ca634b73dc20f5be3f7ad5df05ceee84cf', 0, 0, 1, '2024-05-15', 1, 0, '411721', false), - (97191, '2024-05-16 06:00:36.373263+00', '0x25343402f9c75a96f42d6222b2960d539cde7817', 0, 0, 1, '2024-05-15', 1, 5, '429157', false), - (97507, '2024-05-16 06:00:38.621981+00', '0x9d886a3fbcad4c57487eac5667b402c6104d191c', 0, 0, 1, '2024-05-15', 1, 5, '195838', false), - (82519, '2024-05-10 23:12:09.192828+00', '0x037f1c446ce82382a9491ede5b125c6dac160550', 0, 0, 1, '2024-05-07', 8, 38, '453791', false), - (81716, '2024-05-10 23:12:06.755711+00', '0x05e8537df4f8185b23c557ac2f355e1f60c53da8', 0, 0, 1, '2024-05-06', 16, 56, '346678', false), - (94706, '2024-05-12 06:00:35.063512+00', '0x8bc303246b92b797cbd83e8527677402db2b2609', 0, 0, 1, '2024-05-11', 2, 8, '454366', false), - (94318, '2024-05-12 06:00:32.324246+00', '0xc59b9d4cdffd642a8e94a17b609eb9c561dbe133', 0, 0, 1, '2024-05-11', 1, 1, '15865', false), - (78049, '2024-05-10 23:11:55.904932+00', '0x84f0d6809ce23c5751285c9319c13858a8c914c5', 0, 0, 1, '2024-03-30', 1, 5, '370315', false), - (78013, '2024-05-10 23:11:55.798992+00', '0x9fcbcf7ba93ca69c2e5c0e5ee730cf53de134dfa', 0, 0, 1, '2024-02-20', 3, 2, '274033', false), - (77223, '2024-05-10 23:11:53.425039+00', '0x606b91a19fd4d1e950f817706436bb898e2d4c55', 0, 0, 1, '2024-03-26', 3, 9, '352037', false), - (80322, '2024-05-10 23:12:02.717715+00', '0x7ec53b8ab315eb9d8b2ca7a3544e443552decf4b', 0, 0, 1, '2023-07-12', 181, 162, '15631', false), - (96471, '2024-05-15 06:00:33.384341+00', '0x1112c0a27ba6aadfae7394bc1cc27be3f89b97ec', 0, 0, 1, '2024-05-14', 1, 3, '294443', false), - (78255, '2024-05-10 23:11:56.454787+00', '0x2a46173d85680d307bbb600044e0856878490cef', 0, 0, 1, '2024-03-24', 2, 3, '192128', false), - (79907, '2024-05-10 23:12:01.566228+00', '0x69c905a98afdb904626f796e3e7f9a863c92e86f', 0, 0, 1, '2024-02-03', 1, 1, '212488', false), - (80911, '2024-05-10 23:12:04.310718+00', '0x2a937a6acd819631bfc79553ae7ccc5ca05e23ac', 0, 0, 1, '2023-08-02', 10, 8, '2536', false), - (78962, '2024-05-10 23:11:58.468117+00', '0xc471e427fba14c04ae22fdb6c4e85fee8c181190', 0, 0, 1, '2024-02-19', 2, 1, '343193', false), - (79947, '2024-05-10 23:12:01.68913+00', '0x8f7a294bbf1a856480cb7bf46001b1c370130a1b', 0, 0, 1, '2024-02-03', 1, 0, '236331', false), - (79100, '2024-05-10 23:11:58.75555+00', '0xfe1aa5275dda4b333b1fb0ccbd7a5f14edc4a5de', 0, 0, 1, '2024-02-15', 8, 3, '4406', false), - (80592, '2024-05-10 23:12:03.405826+00', '0x3bbded7132c61a703f9138a10fd177f0796b6696', 0, 0, 1, '2023-11-05', 2, 4, '188416', false), - (77876, '2024-05-10 23:11:55.384787+00', '0xa5c646eaeac145f2070f99ea6f7e88ed60c5180e', 0, 0, 1, '2024-02-07', 7, 3, '226548', false), - (79806, '2024-05-10 23:12:01.024363+00', '0x71caece9d2f4244ce5780c7bd42e423b56c2a180', 0, 0, 1, '2024-02-06', 2, 2, '269334', false), - (79872, '2024-05-10 23:12:01.339804+00', '0x7a2377c82a514cc6e33ac6ab12b2e16aa7446280', 0, 0, 1, '2024-02-05', 1, 0, '291095', false), - (81257, '2024-05-10 23:12:05.282781+00', '0xde4cdef683d19b117df94ecaec76caeb13cfc144', 0, 0, 1, '2023-07-28', 1, 1, '1555', false), - (80972, '2024-05-10 23:12:04.455613+00', '0xfe78bda0241fc22b064b1f918ac1c1bc2cffed45', 0, 0, 1, '2023-08-29', 1, 0, '17983', false), - (96503, '2024-05-15 06:00:33.572224+00', '0x3a452ed8d74b80a0fab6c9c5a4e623401a1024a2', 0, 0, 1, '2024-05-14', 1, 0, '440352', false), - (96524, '2024-05-15 06:00:33.842067+00', '0x3073a37d3e5c068df4197f67412807445e2abcda', 0, 0, 1, '2024-05-15', 1, 0, '482298', false), - (84247, '2024-05-10 23:12:14.476656+00', '0xf6910d47fbb1f5518d60c721d4189936ecd5a1b6', 2803, 2803, 1, '2024-04-15', 2, 4, '3993', true), - (89135, '2024-05-10 23:12:28.732776+00', '0xb683a2056526162c4771d363204af41ea8c1ec52', 3334, 3334, 1, '2024-03-16', 1, 5, '2987', true), - (89329, '2024-05-10 23:12:29.407875+00', '0x5b0d89d609780a7890de1a300ba1184edf58929d', 2469, 2469, 1, '2024-02-14', 1, 2, '213125', true), - (96668, '2024-05-15 06:00:34.990088+00', '0xd7676302815ec79031e737bc7c6db3bea245ad4f', 0, 0, 1, '2024-05-14', 1, 1, '531686', false), - (96895, '2024-05-15 06:00:36.578879+00', '0x305af8de540461d3854128297d4b5aca8d0420c9', 0, 0, 1, '2024-05-15', 1, 0, '445783', false), - (96908, '2024-05-15 06:00:36.747504+00', '0xc754ec769ffc01dd5452c0d763d5b49568415140', 0, 0, 1, '2024-05-14', 1, 0, '262448', false), - (80425, '2024-05-10 23:12:02.969992+00', '0xbd629ccb15d8f7dea107a1006b0bc5316d666150', 0, 0, 1, '2023-10-15', 16, 18, '783', false), - (80827, '2024-05-10 23:12:04.050173+00', '0x3fdd45957421fa9b58d2686cadaa7d25fcc7c4c4', 0, 0, 1, '2023-09-22', 1, 3, '40', false), - (80571, '2024-05-10 23:12:03.386516+00', '0x6cb4890d712c91020df2e62fb7bb869ce6ca3e8a', 0, 0, 1, '2023-11-09', 1, 4, '191311', false), - (80594, '2024-05-10 23:12:03.405066+00', '0x9300cf111fe80ccbb09fa1bce08d985603a3e3d6', 0, 0, 1, '2023-11-14', 1, 0, '188544', false), - (77944, '2024-05-10 23:11:55.65529+00', '0x6f829c5fad24e306be21d80137b6c2a23fcdc53d', 0, 0, 1, '2024-04-01', 1, 1, '303950', false), - (81434, '2024-05-10 23:12:05.953591+00', '0x4884eb76842f734e0de54d79ad45266072eb68e2', 0, 0, 1, '2023-05-23', 1, 0, '11231', false), - (78112, '2024-05-10 23:11:56.045282+00', '0x9938b6b6a6c005e752c0366be98fa5ca346052d8', 0, 0, 1, '2024-03-28', 1, 0, '398667', false), - (79108, '2024-05-10 23:11:58.846398+00', '0x1c17ff957de70e8a8a257cb1632cf5258dcf0b54', 0, 0, 1, '2024-02-16', 3, 0, '343817', false), - (81405, '2024-05-10 23:12:05.919473+00', '0x10d2e3d5d76154c985ed15241bc885e284c88829', 0, 0, 1, '2023-04-29', 4, 1, '11817', false), - (79109, '2024-05-10 23:11:58.847752+00', '0xef6a9164652ad2580c16d61b78bade3ca5e3df24', 0, 0, 1, '2024-02-14', 2, 2, '274096', false), - (79567, '2024-05-10 23:12:00.271833+00', '0x2f70684fc63efd20734a226c3347d751e84014cb', 0, 0, 1, '2024-02-10', 1, 1, '16804', false), - (79599, '2024-05-10 23:12:00.402872+00', '0xe80354f49644e7f59152177b26ac93b8f658f3dd', 0, 0, 1, '2024-02-09', 1, 4, '184', false), - (79807, '2024-05-10 23:12:01.02305+00', '0xc4d36bbdff27f0eb757339336add38d5842b8226', 0, 0, 1, '2024-02-06', 1, 0, '307303', false), - (95096, '2024-05-13 06:00:32.144681+00', '0x8c15b4e4c1fe2f979242ba9387e77c91f92a11ad', 0, 0, 1, '2024-05-12', 3, 15, '381542', false), - (81602, '2024-05-10 23:12:06.48728+00', '0x9ec9f8b7c52d415a33eff8c1ce404c76d320ab19', 0, 0, 1, '2024-05-10', 1, 5, '506700', false), - (78856, '2024-05-10 23:11:58.089431+00', '0x753025a228fd20e17134325f9e10e78eced835df', 0, 0, 1, '2024-03-03', 1, 2, '376582', false), - (78315, '2024-05-10 23:11:56.61698+00', '0x41fd6111b3a62cf126b57aacc620eac7c7ba3c5c', 0, 0, 1, '2023-11-24', 12, 11, '191469', false), - (80646, '2024-05-10 23:12:03.534766+00', '0xf4b4fb691c637f70bed44c81455cf4bdbc236e78', 0, 0, 1, '2023-11-06', 1, 0, '16772', false), - (80680, '2024-05-10 23:12:03.676653+00', '0xe2eb4e5418e8d1f90b474318b83034a15fae409f', 0, 0, 1, '2023-10-26', 1, 2, '2924', false), - (80984, '2024-05-10 23:12:04.465899+00', '0xd3074a836277b0edd45c4c8693afacd97ef76646', 0, 0, 1, '2023-08-28', 1, 2, '19040', false), - (81737, '2024-05-10 23:12:06.779651+00', '0x607b517548696509e50467d84ec84f62f59165d9', 0, 0, 1, '2024-05-10', 1, 5, '379517', false), - (81560, '2024-05-10 23:12:06.329454+00', '0x4ab8274ae039282ac532ea9ce9cd406fd5b562e1', 0, 0, 1, '2024-05-05', 6, 11, '511632', false), - (78815, '2024-05-10 23:11:57.966714+00', '0x9897d2d8b4ba8fdff077c511fe0ed0e946e91f1a', 0, 0, 1, '2024-03-04', 3, 10, '376261', false), - (83819, '2024-05-10 23:12:13.306476+00', '0x4d0ce8dfecd6a0a81af979dae92688e3c0079246', 0, 0, 1, '2024-05-05', 10, 41, '428653', false), - (73928, '2024-05-10 23:11:43.543059+00', '0xe1205d84779e02fcf03d4cdd1dc459ec498f5432', 0, 0, 1, '2024-05-10', 7, 30, '379625', false), - (95000, '2024-05-13 06:00:31.476647+00', '0x9d0df2ee5fd8fa8b711cc341131c7c1e26508faa', 0, 0, 1, '2024-05-12', 4, 20, '462213', false), - (81498, '2024-05-10 23:12:06.101373+00', '0x7e3bdc31996a54a5e7dce686ee32961e6bcde552', 0, 0, 1, '2024-05-08', 8, 39, '379637', false), - (81578, '2024-05-10 23:12:06.372553+00', '0xf0aa82cc6993a9c9faa0e85e2c2e825384730cbe', 0, 0, 1, '2024-05-07', 33, 156, '508994', false), - (81729, '2024-05-10 23:12:06.767587+00', '0xdb94a516465b1ddae57a5150c0771377d637b225', 0, 0, 1, '2024-05-09', 5, 21, '193345', false), - (81724, '2024-05-10 23:12:06.757208+00', '0x8d3b2ce368f5af7c43d3ea26ef65afc2446161b0', 0, 0, 1, '2024-05-07', 4, 7, '511123', false), - (81102, '2024-05-10 23:12:04.742232+00', '0x0584d422aef1b751b52be71023a4427be4559755', 0, 0, 1, '2023-08-07', 2, 0, '958', false), - (81812, '2024-05-10 23:12:06.994299+00', '0xbcfec3e7c5bdc063f106fbe663c2c57e57f3c710', 0, 0, 1, '2024-05-07', 2, 10, '508896', false), - (81687, '2024-05-10 23:12:06.649182+00', '0xde7e2aa8b8b17963472b1dafafc94592ed5b386b', 0, 0, 1, '2024-05-07', 8, 40, '401805', false), - (77909, '2024-05-10 23:11:55.487577+00', '0x14d9c5035a3f62b63d32edaec6de6bd7134a2ac7', 0, 0, 1, '2024-04-02', 1, 0, '9680', false), - (77957, '2024-05-10 23:11:55.669439+00', '0x6456c11151f4ada09dadb1ebc729d3ef5f38ad41', 0, 0, 1, '2024-04-01', 1, 2, '308807', false), - (78178, '2024-05-10 23:11:56.206429+00', '0x6327052ceba0824517cefd515ae70c41f401887e', 0, 0, 1, '2024-03-27', 1, 2, '349543', false), - (78283, '2024-05-10 23:11:56.582987+00', '0x40596edc2e449ef48cdefc5a787f653f768369bd', 0, 0, 1, '2024-03-24', 1, 0, '210707', false), - (79446, '2024-05-10 23:11:59.945895+00', '0x52574297ff7dadf3bdfb3e5e3bec5c08331f0424', 0, 0, 1, '2024-02-12', 1, 2, '226041', false), - (81093, '2024-05-10 23:12:04.732556+00', '0xb0cc7d23aa7f7a93fb08ef72d655b7b20cf02d08', 0, 0, 1, '2023-08-10', 1, 0, '12503', false), - (78759, '2024-05-10 23:11:57.823448+00', '0x35b9571ef5eaa24ec626acddde3b02b595a5eb0b', 0, 0, 1, '2024-03-03', 2, 2, '238213', false), - (79532, '2024-05-10 23:12:00.166645+00', '0xc07a4c908790741f570867699f09a9368623bf75', 0, 0, 1, '2024-02-11', 1, 2, '271533', false), - (79573, '2024-05-10 23:12:00.272232+00', '0xfb15339d187a76af62698f73d700e1f8536f03bd', 0, 0, 1, '2024-02-10', 1, 0, '7345', false), - (96945, '2024-05-16 06:00:34.48564+00', '0x74e26bfc9dd2230d4062548374e74d4530e6c910', 0, 0, 1, '2024-05-15', 1, 3, '449362', false), - (81531, '2024-05-10 23:12:06.206685+00', '0x2fa3afeec07dddeb20b799e61a13b09eee1ea065', 0, 0, 1, '2024-05-05', 84, 214, '503238', false), - (79714, '2024-05-10 23:12:00.772067+00', '0x1dc41c09aa72992284e76032499882a7cbd79890', 0, 0, 1, '2024-02-08', 1, 1, '792', false), - (81950, '2024-05-10 23:12:07.593197+00', '0xa622464a9dc624523a175bd5cf6d44175538334d', 0, 0, 1, '2024-05-07', 9, 38, '394424', false), - (96693, '2024-05-15 06:00:35.137093+00', '0x6c7651ba2705d445f02c9cecdefd20a18d34c022', 0, 0, 1, '2024-05-14', 2, 10, '507700', false), - (79774, '2024-05-10 23:12:00.923205+00', '0x7dcb39fe010a205f16ee3249f04b24d74c4f44f1', 0, 0, 1, '2024-02-06', 1, 1, '3240', false), - (83186, '2024-05-10 23:12:11.116638+00', '0x4fc3ffa547fbdf86251d0320d214d386cc22f283', 0, 0, 1, '2024-05-08', 2, 6, '519646', false), - (89180, '2024-05-10 23:12:28.872157+00', '0xe9dadd9ded105d67e6cb7aadc48be0c2d45df652', 2957, 2957, 1, '2024-02-29', 2, 1, '253127', true), - (89258, '2024-05-10 23:12:29.196361+00', '0x4e1cfa8c6e0d4a681cdb362027c61e650d2aaac0', 3578, 3578, 1, '2024-02-23', 1, 5, '281236', true), - (89016, '2024-05-10 23:12:28.453918+00', '0x86452386e423ea60953931121d8833db0ce09974', 1361, 1361, 1, '2024-04-01', 1, 0, '412230', true), - (89634, '2024-05-10 23:12:30.469863+00', '0x58fa3ca223412cb53937ce0ba32d329adb46447c', 1918, 1918, 1, '2023-10-08', 1, 0, '8079', true), - (89509, '2024-05-10 23:12:30.014481+00', '0x978f664433abf02b7460f5ed138f8eb46dac2547', 4359, 4359, 1, '2023-07-23', 2, 3, '3882', true), - (78191, '2024-05-10 23:11:56.306023+00', '0x4cbc2e1c86c5ea7c5ea742a4e77696e4852840b5', 0, 0, 1, '2024-01-20', 2, 0, '1731', false), - (80099, '2024-05-10 23:12:02.109503+00', '0x1a883a2392fc538ca3c9ce8adcb14f48e1d14a9d', 0, 0, 1, '2024-01-15', 1, 1, '196259', false), - (81669, '2024-05-10 23:12:06.63064+00', '0xee55583ce4f64791b30451156f1141fcea0aae04', 0, 0, 1, '2024-05-07', 2, 5, '336895', false), - (81186, '2024-05-10 23:12:04.967191+00', '0x21eaf5f0e90d06a1700a8952860d2b170381ecce', 0, 0, 1, '2023-08-01', 1, 2, '16941', false), - (81760, '2024-05-10 23:12:06.879371+00', '0x44b8322066db3c35ca1a250473fe1961ce2eb081', 0, 0, 1, '2024-05-08', 3, 15, '500725', false), - (81618, '2024-05-10 23:12:06.507596+00', '0x393ef23ca0e21e53b8262100814312f539332675', 0, 0, 1, '2024-05-10', 2, 10, '409294', false), - (81763, '2024-05-10 23:12:06.877327+00', '0x370de685ee9d74aa5ab4e93eb0c04df40d587ae2', 0, 0, 1, '2024-05-08', 4, 20, '479507', false), - (81835, '2024-05-10 23:12:07.019135+00', '0x4ab4e45f5094d378828b3bae7e6f890dc26158eb', 0, 0, 1, '2024-05-10', 1, 5, '446852', false), - (81717, '2024-05-10 23:12:06.751809+00', '0x9e364732b783715384af684d146b7cc5b682b107', 0, 0, 1, '2024-05-05', 6, 8, '512692', false), - (81791, '2024-05-10 23:12:06.90909+00', '0x9cab05482982875ef365c7030a294a16c9d01f8d', 0, 0, 1, '2024-05-07', 3, 15, '385793', false), - (81544, '2024-05-10 23:12:06.222218+00', '0x7ce17fd885235346e55fedf7d819095f1240819e', 0, 0, 1, '2024-05-06', 5, 25, '417275', false), - (81502, '2024-05-10 23:12:06.180516+00', '0xd8df1ae502940bd31413a8d10965f09ac81d1206', 0, 0, 1, '2024-05-05', 7, 26, '376144', false), - (81727, '2024-05-10 23:12:06.768716+00', '0x4b064e08923fd1ea0dc534212d63d0582a82f9ea', 0, 0, 1, '2024-05-06', 7, 33, '500425', false), - (81417, '2024-05-10 23:12:05.929936+00', '0x42069af35aed1dc3b6f803ba3c336ebe0e96f098', 0, 0, 1, '2023-04-29', 3, 6, '8611', false), - (77891, '2024-05-10 23:11:55.462542+00', '0x8214143cf60d19856806c91ecbca957739c91004', 0, 0, 1, '2024-04-02', 2, 0, '383863', false), - (77989, '2024-05-10 23:11:55.767488+00', '0xec9df21e35582a6f368a82b4b1cd37431f1653b0', 0, 0, 1, '2024-03-31', 1, 0, '9243', false), - (96677, '2024-05-15 06:00:35.019468+00', '0xdb218b0290c843de153ccf03951f1c29573749f7', 0, 0, 1, '2024-05-14', 1, 5, '463472', false), - (80025, '2024-05-10 23:12:01.848891+00', '0x9e9fbeb970383a43d6fba10af4bc0a96e567f83a', 0, 0, 1, '2024-01-28', 10, 4, '13786', false), - (74130, '2024-05-10 23:11:44.760221+00', '0x19f265aebc2def35832202279e10942d34c2ba8a', 0, 0, 1, '2024-05-04', 4, 20, '488949', false), - (79399, '2024-05-10 23:11:59.800677+00', '0x6586a7dd1f4fda4755a7a821549e492e3e766bb3', 0, 0, 1, '2024-02-14', 1, 0, '19430', false), - (78098, '2024-05-10 23:11:56.012106+00', '0x16fac093fa96be33a7757241a45b5a86354fb4ad', 0, 0, 1, '2024-03-24', 2, 7, '374880', false), - (79557, '2024-05-10 23:12:00.259472+00', '0x679fa2b7f80bc50b0dfc0f7c9ead299b4db0d728', 0, 0, 1, '2024-02-10', 1, 0, '301633', false), - (79608, '2024-05-10 23:12:00.414503+00', '0x8a194ceef3154d5ee3616f97f347f8681edd6189', 0, 0, 1, '2024-02-09', 1, 1, '244993', false), - (81548, '2024-05-10 23:12:06.226101+00', '0x228313f87fb8a51de733058b5c502fdd9bc05865', 0, 0, 1, '2024-05-05', 22, 110, '503286', false), - (74252, '2024-05-10 23:11:45.097114+00', '0xd4c124fffb12d33207e76ec2b5eee7978a50fb44', 0, 0, 1, '2024-02-09', 24, 46, '249385', false), - (78613, '2024-05-10 23:11:57.465932+00', '0x891b6c7ecbc314b5934ddd8b5ad76d098642761b', 0, 0, 1, '2024-03-11', 1, 0, '376977', false), - (79648, '2024-05-10 23:12:00.54607+00', '0x314fd946d8c911dfe5fa97011bf31cfceb71d78a', 0, 0, 1, '2024-02-09', 1, 0, '304200', false), - (78649, '2024-05-10 23:11:57.577864+00', '0x40cdfb49852253422e934faee86a739bdb01c828', 0, 0, 1, '2024-03-11', 2, 2, '383108', false), - (78430, '2024-05-10 23:11:57.017265+00', '0xaa629c0d2e8ce957e4db992130faf2a010c3921b', 0, 0, 1, '2024-01-22', 5, 4, '227030', false), - (81619, '2024-05-10 23:12:06.519009+00', '0x7a33c4025faeb011e6c0e338e455f0594f2bbbdb', 0, 0, 1, '2024-05-05', 27, 134, '497255', false), - (82418, '2024-05-10 23:12:08.82975+00', '0xdf197a1d465d01224d83921839f8a7dc6a106212', 0, 0, 1, '2024-05-08', 8, 40, '478670', false), - (93951, '2024-05-11 06:00:25.602259+00', '0x8b31156fb5569a3f4f4367a8056dededbe10fc2b', 0, 0, 1, '2024-05-11', 51, 195, '466326', false), - (81926, '2024-05-10 23:12:07.493895+00', '0x72ce7d9c016b72c125832a34d87eacdaf4044395', 0, 0, 1, '2024-05-08', 10, 28, '509391', false), - (78932, '2024-05-10 23:11:58.328433+00', '0x4efeb781b50ebcac590bc26f7484b56eff7eefa2', 0, 0, 1, '2024-02-26', 1, 0, '366633', false), - (78948, '2024-05-10 23:11:58.350781+00', '0x6e71ea384655db9914afb7eee3e9f80b62a51587', 0, 0, 1, '2024-02-25', 1, 0, '1982', false), - (79832, '2024-05-10 23:12:01.045189+00', '0x20cf382866869968735c77627902ea74c7de8268', 0, 0, 1, '2024-02-05', 1, 1, '214039', false), - (79924, '2024-05-10 23:12:01.572705+00', '0xdc27d9c0376110495b33fbe0713b0284a5b40b59', 0, 0, 1, '2024-02-04', 1, 5, '267628', false), - (81661, '2024-05-10 23:12:06.637913+00', '0x621d4548ce76e747dccb653b5fed784e33b0531b', 0, 0, 1, '2024-05-10', 1, 5, '509703', false), - (80154, '2024-05-10 23:12:02.237298+00', '0xe5640b09eaad75a49782de1a50ecee1a0f803f8c', 0, 0, 1, '2023-09-24', 15, 8, '11049', false), - (80370, '2024-05-10 23:12:02.847732+00', '0x0c950942054dd414f964155145da68ab208f73e0', 0, 0, 1, '2023-12-15', 1, 3, '8899', false), - (78731, '2024-05-10 23:11:57.803747+00', '0x9e1d939faa0ec4f2327f5cd0c9663c0aebf9b5c7', 0, 0, 1, '2023-12-03', 3, 8, '4440', false), - (81065, '2024-05-10 23:12:04.703901+00', '0x41725b4996de108d9c3146ff83c7ee4e2633c60f', 0, 0, 1, '2023-08-08', 1, 1, '4040', false), - (81818, '2024-05-10 23:12:06.999082+00', '0xf2a9364590d9402fa9003fc7f1895b38aee57078', 0, 0, 1, '2024-05-07', 3, 15, '508955', false), - (81767, '2024-05-10 23:12:06.885943+00', '0x304d493028c592829a05222b65671d1944c8e56b', 0, 0, 1, '2024-05-07', 10, 50, '417704', false), - (81504, '2024-05-10 23:12:06.179892+00', '0xa44080bbdc8be2dcb43873db457d02a3207f896d', 0, 0, 1, '2024-05-04', 20, 72, '501012', false), - (81467, '2024-05-10 23:12:06.059752+00', '0xb55b3556cc937633f0e78637c2bd424f5c5da2e7', 0, 0, 1, '2024-05-06', 6, 30, '393527', false), - (81757, '2024-05-10 23:12:06.876368+00', '0x29e51338196ca590ee1f713e891834f5ebedacfe', 0, 0, 1, '2024-05-06', 8, 21, '328948', false), - (75491, '2024-05-10 23:11:48.533112+00', '0x18df3818e91e7704b77493187bb4a3466aafd5dd', 0, 0, 1, '2024-02-18', 9, 22, '255299', false), - (88587, '2024-05-10 23:12:27.203092+00', '0x3fe465902811769e3e8738cd162632e85dcbaa86', 19169, 19169, 1, '2024-02-01', 18, 33, '21348', true), - (79553, '2024-05-10 23:12:00.260926+00', '0xba00d84ddbc8cae67c5800a52496e47a8cafcd27', 10450, 10450, 1, '2024-02-02', 8, 25, '244529', true), - (88348, '2024-05-10 23:12:26.577481+00', '0xaac60c858895befaf42378467bc9f3bd69c5efae', 6181, 6181, 1, '2024-02-09', 4, 11, '301340', true), - (84885, '2024-05-10 23:12:16.575876+00', '0x229c6967ad9e600db2ac26cbab6462889561aac8', 4645, 4645, 1, '2024-03-28', 3, 11, '4413', true), - (85391, '2024-05-10 23:12:18.116919+00', '0xc391ef2402c50e44d75245838e17f17e5cb2a3ae', 2335, 2335, 1, '2024-05-05', 2, 7, '300064', true), - (88532, '2024-05-10 23:12:27.064322+00', '0x647eb74a5135a0f24beee3c2d8432adcbb32c2a8', 2086, 2086, 1, '2024-05-04', 1, 5, '261305', true), - (81577, '2024-05-10 23:12:06.373643+00', '0x979c437e623accc5b07690c306424b187c63656c', 0, 0, 1, '2024-05-07', 3, 13, '491574', false), - (81607, '2024-05-10 23:12:06.495255+00', '0x48d22ec1033e26433969885e5b2adc82b683491f', 0, 0, 1, '2024-05-06', 9, 42, '492181', false), - (74318, '2024-05-10 23:11:45.335776+00', '0xd984b81f72fb0c8a061d6a4019c6c5201ad9ceec', 0, 0, 1, '2024-05-06', 3, 15, '17360', false), - (97091, '2024-05-16 06:00:35.576597+00', '0x65c4abeacf97978349612022c56498502f997f69', 0, 0, 1, '2024-05-15', 1, 1, '416580', false), - (81574, '2024-05-10 23:12:06.363497+00', '0x66cfb602562d4ccf08f808b4385d1f985baff6c5', 0, 0, 1, '2024-05-06', 7, 35, '418569', false), - (81821, '2024-05-10 23:12:07.001034+00', '0x9999aaa8f2b377d59c52bfa90224ac381c0778ce', 0, 0, 1, '2024-05-07', 6, 26, '422681', false), - (81702, '2024-05-10 23:12:06.73813+00', '0x5d03782725982a743e7afba4a464751d68e127a1', 0, 0, 1, '2024-05-10', 4, 15, '399723', false), - (78037, '2024-05-10 23:11:55.886837+00', '0x259b9c4cfeadaef8a5b842710a777364988415b3', 0, 0, 1, '2024-03-30', 1, 0, '210869', false), - (79505, '2024-05-10 23:12:00.130511+00', '0xb4bb21f96a5f8ba3feb0dde8495a4e312dcc356d', 0, 0, 1, '2024-02-11', 1, 1, '19653', false), - (81623, '2024-05-10 23:12:06.5178+00', '0xe30305600eb3533f630f1d92098c00f38ac5f50d', 0, 0, 1, '2024-05-10', 2, 7, '504518', false), - (81754, '2024-05-10 23:12:06.869103+00', '0x09b4685d00804107f764444fbef0485df13191ab', 0, 0, 1, '2024-05-09', 5, 5, '413828', false), - (81533, '2024-05-10 23:12:06.212307+00', '0x848308502d4fac065b35f8dc97c177f3cd6205db', 0, 0, 1, '2024-05-05', 4, 13, '501321', false), - (81828, '2024-05-10 23:12:07.003508+00', '0x01462d480e3f7a41a10a71096ae8e7ab1f8b51f4', 0, 0, 1, '2024-05-05', 6, 25, '454238', false), - (81732, '2024-05-10 23:12:06.764031+00', '0xac692ae73667afbb6b9565f2ab408800765709f2', 0, 0, 1, '2024-05-10', 1, 5, '411948', false), - (81965, '2024-05-10 23:12:07.610681+00', '0xbdcad273576120cc1268876a61d134c06f4a99fd', 0, 0, 1, '2024-05-10', 1, 5, '397256', false), - (81874, '2024-05-10 23:12:07.162732+00', '0x09de259ba39c8c99a6852c4cd0fd5d231cbb9396', 0, 0, 1, '2024-05-05', 13, 48, '500141', false), - (78463, '2024-05-10 23:11:57.054229+00', '0x56fda56dd6bd84783b509cdea6560c57041f0523', 0, 0, 1, '2024-02-08', 5, 0, '315099', false), - (78750, '2024-05-10 23:11:57.825002+00', '0x3224ce9ae2e049b98fa34fc1112ddde73c3c821d', 0, 0, 1, '2024-03-05', 1, 0, '379379', false), - (78067, '2024-05-10 23:11:55.926462+00', '0x90873acc11d3e0e3ebca98efd477bf7a79eabc41', 0, 0, 1, '2024-03-01', 3, 4, '377590', false), - (84974, '2024-05-10 23:12:16.907233+00', '0x340ec0b1d3b8a432a4d59778100be6ae52cdc920', 0, 0, 1, '2024-05-07', 1, 3, '393353', false), - (80005, '2024-05-10 23:12:01.805804+00', '0xf738dcafc6363c52a12f6ca4555ce0635b151e4e', 0, 0, 1, '2024-01-27', 1, 1, '218874', false), - (80914, '2024-05-10 23:12:04.308547+00', '0x8f73b59e2bf46fd615ae76599affe388b6989242', 0, 0, 1, '2023-09-05', 1, 1, '5216', false), - (78072, '2024-05-10 23:11:55.932577+00', '0x684106aa2d599b3723555e6f1551e81033907989', 0, 0, 1, '2024-03-29', 1, 5, '248470', false), - (78086, '2024-05-10 23:11:56.012499+00', '0x2f4044be0302c73f511619c223e6fd3e32d09a11', 0, 0, 1, '2024-03-28', 1, 0, '412959', false), - (78207, '2024-05-10 23:11:56.33455+00', '0x4cb72456e82aedd8b1ef0f08d03cc6bff96c6291', 0, 0, 1, '2024-03-26', 1, 0, '405158', false), - (78844, '2024-05-10 23:11:58.076281+00', '0x7d6436dcea657ad0265f03f1818e77d021ffaf15', 0, 0, 1, '2024-03-02', 1, 4, '378156', false), - (78396, '2024-05-10 23:11:56.898184+00', '0xb481eb4b8ba16ca88488de279d76332afca6a0e4', 0, 0, 1, '2024-02-24', 2, 1, '295695', false), - (78792, '2024-05-10 23:11:57.93259+00', '0x568dc476b4af661248caea5f43ba861aee1a03fe', 0, 0, 1, '2024-02-19', 5, 3, '266744', false), - (78820, '2024-05-10 23:11:58.040451+00', '0xd24a2f1feae9d9af52fd7e0f85f20190e85a1fc1', 0, 0, 1, '2024-02-17', 4, 3, '300172', false), - (79286, '2024-05-10 23:11:59.422929+00', '0x93c0a0393277af267270fe2acf4a3b5473db3c0f', 0, 0, 1, '2024-02-17', 2, 10, '251720', false), - (78165, '2024-05-10 23:11:56.184198+00', '0xa20f44799c0370c885052bf2ff0fa6d55f40fabf', 0, 0, 1, '2024-02-13', 6, 7, '212300', false), - (80624, '2024-05-10 23:12:03.503561+00', '0x14a0c203826ab076bbd0f386baa3421e3ca4836a', 0, 0, 1, '2023-11-04', 1, 1, '191818', false), - (79650, '2024-05-10 23:12:00.546491+00', '0xbdd144423794914afc4ad10c35af1848b9ce288e', 0, 0, 1, '2024-02-09', 1, 3, '233321', false), - (79886, '2024-05-10 23:12:01.354436+00', '0x5d9603e36dc07d475451da8084fc75f7235f6b0e', 0, 0, 1, '2024-02-04', 2, 3, '4858', false), - (81358, '2024-05-10 23:12:05.800211+00', '0xb1066863cfe18d1fb20bb64487eb2f06aef4ae49', 0, 0, 1, '2023-06-01', 1, 0, '9985', false), - (81615, '2024-05-10 23:12:06.49958+00', '0xcd4378878d9d5c6b834cf0e6baafee5567a09e0e', 0, 0, 1, '2024-05-08', 8, 40, '406317', false), - (81783, '2024-05-10 23:12:06.891509+00', '0x1ce3208f6905bcdc6504d8852237a45288d98968', 0, 0, 1, '2024-05-10', 1, 5, '436459', false), - (81826, '2024-05-10 23:12:07.007561+00', '0x0310a5ab072dbb865a28bc08ca5513db6e034b5c', 0, 0, 1, '2024-05-10', 1, 5, '469865', false), - (78056, '2024-05-10 23:11:55.902426+00', '0xab7f88c97287208b6c73e0aaadcd3a556fe84ace', 0, 0, 1, '2024-02-05', 8, 6, '214740', false), - (78363, '2024-05-10 23:11:56.768073+00', '0xd1a89d68b963b8dbaa6eb143a60baefbaede6b60', 0, 0, 1, '2024-03-15', 4, 10, '372639', false), - (78373, '2024-05-10 23:11:56.773823+00', '0xc8fbaa47882b86b8f4c58ccf1c47002ead7d9668', 0, 0, 1, '2024-03-20', 3, 1, '396457', false), - (81610, '2024-05-10 23:12:06.498864+00', '0x726f2b88c0e642614d40e1a0c372ea8e5b82ded1', 0, 0, 1, '2024-05-05', 14, 48, '501173', false), - (80525, '2024-05-10 23:12:03.245941+00', '0xe9eba220d1b041f839704ba748a0e1c74f5d9c75', 0, 0, 1, '2023-11-15', 2, 2, '7415', false), - (94553, '2024-05-12 06:00:34.158725+00', '0xda8bfdeb2ca0d8c9d02920dab32b0c000eb058ff', 0, 0, 1, '2024-05-11', 3, 14, '433963', false), - (87479, '2024-05-10 23:12:24.368759+00', '0xb68a6a83cfca2e7fde2aa5749b85e753f55d58cd', 4095, 4095, 1, '2024-04-03', 3, 7, '5516', true), - (89384, '2024-05-10 23:12:29.620711+00', '0x2ac7ef06bf76b4d027274e683445393f386c05d5', 6498, 6498, 1, '2024-01-05', 4, 10, '190552', true), - (89596, '2024-05-10 23:12:30.366101+00', '0x99fba19112f221d0b44c9c22241f5e6b2db715f6', 1879, 1879, 1, '2023-10-31', 1, 0, '714', true), - (89626, '2024-05-10 23:12:30.458141+00', '0x79d31bfca5fda7a4f15b36763d2e44c99d811a6c', 2407, 2407, 1, '2023-10-24', 1, 1, '3621', true), - (90216, '2024-05-10 23:12:32.269288+00', '0x5ef86da9ed0fc7b54d0cd96b767f2891373718a5', 859, 859, 1, '2024-05-06', 1, 0, '4383', true), - (81598, '2024-05-10 23:12:06.401387+00', '0x7e19f07a79f7efa7c4793289bf750cab8f5d8231', 0, 0, 1, '2024-05-05', 9, 45, '401736', false), - (81751, '2024-05-10 23:12:06.86643+00', '0x20705fa27af22dfc29bb6702089c085464a04a36', 0, 0, 1, '2024-05-05', 32, 157, '501144', false), - (79216, '2024-05-10 23:11:59.172806+00', '0x12e702d5e68c2f15e7ae1010333caa45198d03f6', 0, 0, 1, '2024-02-18', 1, 3, '309284', false), - (84611, '2024-05-10 23:12:15.746587+00', '0xf60cb14fccdfdf28a727e5d8e539f774a5eae7e6', 0, 0, 1, '2024-05-06', 6, 25, '492039', false), - (87869, '2024-05-10 23:12:25.295276+00', '0x1c8eebfbe00cb04c54a55c77f6abcfc512414480', 0, 0, 1, '2024-05-05', 1, 5, '501019', false), - (88469, '2024-05-10 23:12:26.859764+00', '0xbd75a7e6d75113004873108c96d9a585c099ae80', 0, 0, 1, '2024-05-04', 2, 5, '367251', false), - (86675, '2024-05-10 23:12:22.105441+00', '0x49a176d46c6b87292008ab9eb6f033e791552b73', 0, 0, 1, '2024-02-07', 2, 5, '295814', false), - (87916, '2024-05-10 23:12:25.421921+00', '0x4bf758f2729371cf88597038ab808c9ba59a3c5a', 0, 0, 1, '2024-05-05', 1, 5, '508993', false), - (81614, '2024-05-10 23:12:06.49958+00', '0x486bf7f9bd543671b5114f623ce6ee16d6494800', 0, 0, 1, '2024-05-10', 2, 10, '390510', false), - (81620, '2024-05-10 23:12:06.51488+00', '0xa2413e34a41cfb9cfced9b7396fa987e9a343ad6', 0, 0, 1, '2024-05-05', 17, 83, '492276', false), - (84809, '2024-05-10 23:12:16.324307+00', '0x18be89bad07b022093f04343aebd4c42856e9aa2', 0, 0, 1, '2024-05-06', 2, 10, '509805', false), - (85160, '2024-05-10 23:12:17.475115+00', '0x2e307ceab1b4c5f4cac508e3b13c3dbfe86a3c81', 0, 0, 1, '2024-04-21', 3, 5, '278452', false), - (88704, '2024-05-10 23:12:27.466529+00', '0x6e672528f7abc31bcec8bcf16c31aba3abebdad3', 0, 0, 1, '2024-04-21', 1, 1, '475086', false), - (87153, '2024-05-10 23:12:23.41355+00', '0x16714d178e545af41e8161422606e5e87d322aae', 0, 0, 1, '2024-05-05', 1, 5, '412041', false), - (88266, '2024-05-10 23:12:26.353206+00', '0xf2c940e24bf38d2de618f3f4efba1030ebb91026', 0, 0, 1, '2024-05-05', 25, 28, '499948', false), - (85254, '2024-05-10 23:12:17.743463+00', '0x0fb4772a2e06dc905afd79bd94a10b950c692d8e', 0, 0, 1, '2024-05-05', 2, 9, '409058', false), - (88154, '2024-05-10 23:12:26.068725+00', '0x82985c604c4259b99ba47c7994ef20609f5b3c0d', 0, 0, 1, '2024-05-05', 1, 1, '301437', false), - (81624, '2024-05-10 23:12:06.520051+00', '0x531a223de47eee3d2520f0a5a664b38d1bf94b81', 0, 0, 1, '2024-05-09', 5, 25, '387362', false), - (81569, '2024-05-10 23:12:06.351104+00', '0xc47f93efd8dd3c4f04a96fabf8d1e926c6fee9b2', 0, 0, 1, '2024-05-06', 7, 35, '509267', false), - (81525, '2024-05-10 23:12:06.194625+00', '0xc69b5b3dfe0f9175c2b77084c3189bfa1c842396', 0, 0, 1, '2024-05-07', 63, 311, '448399', false), - (83050, '2024-05-10 23:12:10.790211+00', '0x8ee00383bf6fc0a60c5f0bc8ba9366a22e65a3d9', 0, 0, 1, '2024-05-05', 5, 25, '291140', false), - (78775, '2024-05-10 23:11:57.919001+00', '0x1db4af513424731b8114a713604295fafb0882af', 0, 0, 1, '2024-03-05', 1, 0, '254836', false), - (78846, '2024-05-10 23:11:58.072208+00', '0x4a321d9ad33d7a48d6900229372e878f0ed74dc7', 0, 0, 1, '2024-03-03', 1, 1, '4903', false), - (78943, '2024-05-10 23:11:58.344962+00', '0x0a215cf3859bbeecb5531273adce8c30c2bc95a7', 0, 0, 1, '2024-02-17', 3, 7, '245617', false), - (79403, '2024-05-10 23:11:59.804777+00', '0x661722ddfb0e38b5394832812cfd9ef0388c904e', 0, 0, 1, '2024-02-13', 1, 0, '304519', false), - (79569, '2024-05-10 23:12:00.263681+00', '0x7adbbea375f5e6ecaf28631bed702c4422f10d03', 0, 0, 1, '2024-02-10', 1, 1, '860', false), - (79601, '2024-05-10 23:12:00.407627+00', '0x9079be3072c0ce9eb2e33249bb976af4a9e068ac', 0, 0, 1, '2024-02-09', 2, 2, '272324', false), - (78395, '2024-05-10 23:11:56.883816+00', '0x5dc5a7a7f39471a21b977cdfbe796b039ae3df56', 0, 0, 1, '2024-02-08', 3, 7, '247547', false), - (81640, '2024-05-10 23:12:06.526128+00', '0x728363a435deed20cf739e5cca44459c77e68d01', 0, 0, 1, '2024-05-05', 27, 73, '500690', false), - (81613, '2024-05-10 23:12:06.5103+00', '0x40b852d82bbbade81ba04ef155b9fe02ac479cde', 0, 0, 1, '2024-05-05', 12, 53, '501667', false), - (79908, '2024-05-10 23:12:01.556379+00', '0xa9aeea5a7680441d0e273149b09c1937684259ff', 0, 0, 1, '2024-02-04', 1, 1, '272994', false), - (81770, '2024-05-10 23:12:06.885919+00', '0x46a19b9a383dd0670fa111fadb981e98fe618009', 0, 0, 1, '2024-05-10', 1, 5, '375330', false), - (80980, '2024-05-10 23:12:04.463238+00', '0xf323a62963515da65256ba797c2dfbd727841211', 0, 0, 1, '2023-08-24', 1, 0, '3745', false), - (81630, '2024-05-10 23:12:06.519608+00', '0xc676e793bd595f2d14ef1d26b790f9f6041b64a6', 0, 0, 1, '2024-05-05', 11, 53, '406129', false), - (81473, '2024-05-10 23:12:06.075284+00', '0xc06e7a080e89d771d993134913c27c327c35b188', 0, 0, 1, '2024-05-06', 10, 50, '498410', false), - (81650, '2024-05-10 23:12:06.622514+00', '0xd64f601a869c7089af944f30f9d96275834bc96d', 0, 0, 1, '2024-05-10', 2, 10, '510037', false), - (81604, '2024-05-10 23:12:06.489322+00', '0x3a722183008048deefd8e1b2d248bf26f627be88', 0, 0, 1, '2024-05-05', 6, 24, '379723', false), - (81756, '2024-05-10 23:12:06.877089+00', '0x326fa3b417c3fc66529e67b15d07973023eb957e', 0, 0, 1, '2024-05-09', 4, 13, '421613', false), - (80371, '2024-05-10 23:12:02.844881+00', '0xb789adbb6143038c5048fbf4f410c7e69c6fced6', 0, 0, 1, '2023-12-13', 1, 3, '2694', false), - (76732, '2024-05-10 23:11:52.025074+00', '0x137331ed7e7c9ffffb24f738c6d0fb52bedd97f9', 0, 0, 1, '2024-02-05', 15, 24, '256394', false), - (81681, '2024-05-10 23:12:06.653886+00', '0x12a50357cb97b7712a4d49ba64391c92e8f9cadb', 0, 0, 1, '2024-05-10', 1, 5, '498291', false), - (81839, '2024-05-10 23:12:07.013936+00', '0x977c2f1a47fae6cf55d10c88397d56b90929da6c', 0, 0, 1, '2024-05-10', 1, 5, '409083', false), - (81762, '2024-05-10 23:12:06.88108+00', '0x217f336c393d1fdfc8c9ebd317a87a313c8385a5', 0, 0, 1, '2024-05-06', 7, 0, '441816', false), - (81553, '2024-05-10 23:12:06.335922+00', '0xbb2c69953cc7010caa58f381a8eabdca6f861886', 0, 0, 1, '2024-05-06', 6, 20, '350598', false), - (81663, '2024-05-10 23:12:06.631896+00', '0xe7f1b42ec3abe63c5a911187e3fd6609dc467b03', 0, 0, 1, '2024-04-04', 12, 18, '226234', false), - (81824, '2024-05-10 23:12:06.99349+00', '0xdb5d7166afeceae378d1393f6e4adb822fbb9530', 0, 0, 1, '2024-05-06', 4, 20, '339677', false), - (81680, '2024-05-10 23:12:06.661393+00', '0x27786775fb295c160be26fe27e6ce8c5c95a31f0', 0, 0, 1, '2024-05-07', 8, 39, '394889', false), - (81809, '2024-05-10 23:12:06.979993+00', '0xe0215f79e1d1097e20cc06c776fcc0ef4f164239', 0, 0, 1, '2024-04-22', 10, 50, '428043', false), - (85795, '2024-05-10 23:12:19.432+00', '0x08f38b09777486bac18df882f2b9e9a181e36bc2', 3673, 3673, 1, '2024-05-06', 5, 10, '9789', true), - (89098, '2024-05-10 23:12:28.615564+00', '0xe62d071ea99a63798fec7222c483c53e87f2a32e', 3193, 3193, 1, '2024-03-26', 1, 5, '2458', true), - (89521, '2024-05-10 23:12:30.111414+00', '0xfb4eecef04f1d45ead80a7a471d60b38b14eaa9a', 2203, 2203, 1, '2024-01-07', 1, 1, '18685', true), - (78035, '2024-05-10 23:11:55.886728+00', '0x0b9b76c6cdcb5614f5002d8fd5b50d7b71b5c7f1', 0, 0, 1, '2024-03-30', 1, 1, '392077', false), - (78066, '2024-05-10 23:11:55.90708+00', '0xc8140898c69c396a946a878b49b856b6d0be38c2', 0, 0, 1, '2024-03-29', 1, 1, '247542', false), - (75518, '2024-05-10 23:11:48.614612+00', '0xae1a641d4c0270b7a85959d6f6495a721deb1be7', 0, 0, 1, '2024-03-29', 5, 8, '14336', false), - (78347, '2024-05-10 23:11:56.745331+00', '0x262456d9a98537f4706324666b28bfa4e9d23446', 0, 0, 1, '2024-03-22', 2, 2, '375395', false), - (78594, '2024-05-10 23:11:57.442501+00', '0xde49ad8f3ac69dc29610e28418adc947ae13f0ed', 0, 0, 1, '2024-03-12', 1, 0, '269723', false), - (78870, '2024-05-10 23:11:58.190572+00', '0x57e191878efdeefd9ccca823c487b36b09719e94', 0, 0, 1, '2024-02-29', 1, 1, '1231', false), - (78006, '2024-05-10 23:11:55.775099+00', '0xa89042850d95dedf6b7268d4911206ee8dd98196', 0, 0, 1, '2024-02-14', 4, 2, '271269', false), - (81505, '2024-05-10 23:12:06.178673+00', '0x9367cf8cbf3c172d7c2471edbbf0f3699bbdb9a1', 0, 0, 1, '2024-05-06', 10, 50, '307726', false), - (81549, '2024-05-10 23:12:06.313987+00', '0x6e2a0f8b1f2897e6af8176ad44992cf4c8db7d7b', 0, 0, 1, '2024-05-06', 16, 72, '406030', false), - (81666, '2024-05-10 23:12:06.64722+00', '0x5abac09f134287d42ecbad62fdab72dc9147173f', 0, 0, 1, '2024-05-07', 14, 55, '481574', false), - (81753, '2024-05-10 23:12:06.869328+00', '0xdf9705571338a78f1fb8d55623621007e5a4515e', 0, 0, 1, '2024-05-10', 1, 5, '473210', false), - (81772, '2024-05-10 23:12:06.886357+00', '0x8544bfa437f1a0971367d968f717b6a93e781f3e', 0, 0, 1, '2024-05-10', 1, 5, '383031', false), - (84582, '2024-05-10 23:12:15.614913+00', '0xc73ee6e9bef9ebfad3146c0616087b139247402c', 0, 0, 1, '2024-05-06', 2, 10, '500500', false), - (81801, '2024-05-10 23:12:06.981166+00', '0xb8e6130f4daa11bbe270fb85f3f5bbe6146dc9ad', 0, 0, 1, '2024-05-06', 6, 20, '514406', false), - (81647, '2024-05-10 23:12:06.54088+00', '0x27a5cac14e0a3c03f1a6b9e8d465e42a53360011', 0, 0, 1, '2024-05-08', 5, 20, '267300', false), - (81694, '2024-05-10 23:12:06.671102+00', '0xd049307685b7b3a6aa2e6c34fb0ad0128ac1bc45', 0, 0, 1, '2024-05-09', 7, 30, '377636', false), - (81667, '2024-05-10 23:12:06.64675+00', '0x613bd065a624495292ee2c025b6729dbce89c989', 0, 0, 1, '2024-05-06', 10, 50, '501935', false), - (81780, '2024-05-10 23:12:06.893704+00', '0x3e6d8b4a3c796dd9e36e6a94c168043e03c8fe7e', 0, 0, 1, '2024-05-08', 4, 20, '505230', false), - (81486, '2024-05-10 23:12:06.087341+00', '0xcc279aef34e147d7cb2133057fac58597d2ae46c', 0, 0, 1, '2024-05-07', 12, 44, '501070', false), - (81641, '2024-05-10 23:12:06.537908+00', '0x9cb29d9547a70f71a61295a334200a8f4026dce5', 0, 0, 1, '2024-05-06', 8, 9, '459252', false), - (81792, '2024-05-10 23:12:06.908204+00', '0xddf8a6b32b77991de393f1fc94071c82cc901f62', 0, 0, 1, '2024-05-06', 11, 55, '500429', false), - (81817, '2024-05-10 23:12:06.999573+00', '0x2e09ef7918e64ddabeb45e4dc81cb10c6554246c', 0, 0, 1, '2024-05-06', 3, 15, '311486', false), - (81834, '2024-05-10 23:12:07.020364+00', '0xe787889dcb7d1f3bc1dbdf4bacdf555e2c509f92', 0, 0, 1, '2024-05-07', 2, 10, '458734', false), - (79799, '2024-05-10 23:12:00.950425+00', '0x99b42e75b525f143947e5c1a31fcc0032b8c452e', 0, 0, 1, '2024-02-07', 1, 0, '296698', false), - (79818, '2024-05-10 23:12:01.035096+00', '0xea9839f68c5146f7c09d1b525aaf639f9af733a7', 0, 0, 1, '2024-02-06', 1, 0, '290562', false), - (79968, '2024-05-10 23:12:01.709369+00', '0x85f094eb375d99f9034c55add766aea7d68935fa', 0, 0, 1, '2024-02-02', 1, 2, '2067', false), - (81453, '2024-05-10 23:12:06.047637+00', '0x3506e5f79754e8aad83152b8e6189b6c5508aad4', 0, 0, 1, '2024-05-08', 4, 19, '408583', false), - (79920, '2024-05-10 23:12:01.580676+00', '0xb6d197b72756395a4a8f8d48a54750d5b8ea51ee', 0, 0, 1, '2023-11-09', 3, 4, '14391', false), - (80963, '2024-05-10 23:12:04.444049+00', '0x571f7567b4b6440af78b043e657c9d5013be250d', 0, 0, 1, '2023-08-28', 1, 0, '12254', false), - (81919, '2024-05-10 23:12:07.486669+00', '0x6dae791370047d3c2b393c222c07c4bd10365305', 0, 0, 1, '2024-05-10', 1, 5, '406977', false), - (81796, '2024-05-10 23:12:06.915366+00', '0x0b9b97321687aff3a9852b84120bca08e0ba088b', 0, 0, 1, '2024-05-06', 11, 55, '500749', false), - (81592, '2024-05-10 23:12:06.372245+00', '0x438b839cbb80f087407c451651d08153530b2b1a', 0, 0, 1, '2024-05-07', 2, 7, '422124', false), - (81608, '2024-05-10 23:12:06.496297+00', '0x9cd0f0f33ba942b20d04326e4541e2480617e2a5', 0, 0, 1, '2024-05-06', 6, 27, '429365', false), - (81949, '2024-05-10 23:12:07.592866+00', '0x5318943a11d19c9ce6d17deca05ee2acead650ac', 0, 0, 1, '2024-05-05', 7, 35, '506311', false), - (81830, '2024-05-10 23:12:07.012084+00', '0x4eda9a49176d0a121aaa7e7e92355466e69a385f', 0, 0, 1, '2024-05-07', 9, 44, '474187', false), - (81648, '2024-05-10 23:12:06.54401+00', '0x4b304bd0133127f2f76b4c7e04b619cdb1c3fa5c', 0, 0, 1, '2024-05-05', 4, 11, '389318', false), - (81768, '2024-05-10 23:12:06.881886+00', '0x20ef214ea30d5aad1877e07cfdb6d9784b377dcd', 0, 0, 1, '2024-05-06', 3, 4, '477866', false), - (81538, '2024-05-10 23:12:06.2155+00', '0xf63c9c8f8de7a2ad1f6efe0d572ac6ae5e485ba6', 0, 0, 1, '2024-05-07', 7, 18, '503182', false), - (81925, '2024-05-10 23:12:07.494052+00', '0x99567e06b166c61153afca62bce095db5ffe64eb', 0, 0, 1, '2024-05-05', 5, 17, '442638', false), - (81371, '2024-05-10 23:12:05.8149+00', '0x98bdb26c77ea0259caf5700e653e485c288c7a2b', 0, 0, 1, '2023-06-01', 17, 1, '13473', false), - (81631, '2024-05-10 23:12:06.52635+00', '0x184134a8b8d3072a9a55f0e28a06ac42cce991b2', 0, 0, 1, '2024-05-10', 4, 20, '432665', false), - (81689, '2024-05-10 23:12:06.670793+00', '0xdec4a093c7a49bf901763380dbb6b6ce2ab7ba72', 0, 0, 1, '2024-05-06', 4, 20, '448755', false), - (81883, '2024-05-10 23:12:07.168428+00', '0x8e1504e0998625277901f8a57c9e27323f1c1d52', 0, 0, 1, '2024-05-06', 5, 25, '434363', false), - (79691, '2024-05-10 23:12:00.657057+00', '0x34a124b036c3963b15948b8e8be0dfae05e914ae', 0, 0, 1, '2024-02-06', 3, 3, '236370', false), - (79373, '2024-05-10 23:11:59.690911+00', '0xf180f7c066c9af638b73ceef139d5adde0d4265f', 0, 0, 1, '2024-02-14', 1, 0, '253056', false), - (79713, '2024-05-10 23:12:00.77022+00', '0x6025beb3b7012fd932b005a4dda7a0b786fda0db', 0, 0, 1, '2024-02-08', 1, 1, '261368', false), - (79677, '2024-05-10 23:12:00.644135+00', '0x4a0f12a33719a6444405261845a897f33243c750', 0, 0, 1, '2024-02-05', 2, 3, '273294', false), - (79878, '2024-05-10 23:12:01.347759+00', '0x82e0c33334c997b7e33bb6a1a8659cf3b2f3b854', 0, 0, 1, '2024-02-05', 1, 4, '270461', false), - (79895, '2024-05-10 23:12:01.546732+00', '0xa44f500bdd82e2e783ef292e2bce6ab5124a6394', 0, 0, 1, '2024-02-04', 1, 0, '15305', false), - (80231, '2024-05-10 23:12:02.488347+00', '0x400420095c6f26272b24b95e4bdd9d6bd51f4ea9', 0, 0, 1, '2024-01-04', 1, 2, '11050', false), - (80306, '2024-05-10 23:12:02.645424+00', '0xb2dde7601a83cf17d14fa8ad15b27b60656579c0', 0, 0, 1, '2023-12-25', 1, 2, '19591', false), - (81759, '2024-05-10 23:12:06.879025+00', '0x3cac018d69f54e4f0361a0e84354ffee51549f67', 0, 0, 1, '2024-05-06', 8, 40, '376167', false), - (83453, '2024-05-10 23:12:12.170084+00', '0x19a23d463b4be0945c05ba4e5aa869adcaa55b08', 6478, 6478, 1, '2024-02-18', 5, 5, '240275', true), - (89229, '2024-05-10 23:12:29.042138+00', '0x6da0a1784de1abdde1734ba37eca3d560bf044c0', 10834, 10834, 1, '2023-05-25', 7, 3, '4905', true), - (89479, '2024-05-10 23:12:29.984162+00', '0xfec0ad833fb7d20a83e373279f37c88159bad99e', 4288, 4288, 1, '2024-01-15', 2, 6, '4152', true), - (81854, '2024-05-10 23:12:07.135952+00', '0xf17fbe2dcb26ffdd621ae04719a4d10b19913edd', 0, 0, 1, '2024-05-06', 8, 31, '246627', false), - (81617, '2024-05-10 23:12:06.513918+00', '0x94e75da64c4a0c3f210555d19b803fcfe85e33ef', 0, 0, 1, '2024-05-05', 6, 27, '445305', false), - (81691, '2024-05-10 23:12:06.672355+00', '0xb32d8449bff230f2288235459281608583a92ffa', 0, 0, 1, '2024-05-10', 4, 20, '519938', false), - (81595, '2024-05-10 23:12:06.392522+00', '0x9d78fa616913a1dfc7221490be71182e861b5e13', 0, 0, 1, '2024-05-06', 7, 35, '500856', false), - (81706, '2024-05-10 23:12:06.74577+00', '0x6bb9b3efabc8f3cf41eb7f5ec4a8720092fbf819', 0, 0, 1, '2024-05-05', 73, 330, '419991', false), - (81845, '2024-05-10 23:12:07.024983+00', '0x814df9e79b27e23143207f47fa09e30260464ec1', 0, 0, 1, '2024-05-10', 7, 31, '456085', false), - (81747, '2024-05-10 23:12:06.777201+00', '0x4b5e6c70c7704c72c1b0dcef515e5e0e97ceeab7', 0, 0, 1, '2024-05-07', 10, 50, '463189', false), - (81591, '2024-05-10 23:12:06.373684+00', '0xea2c411eb3b78a85845352eb807b575ef1346513', 0, 0, 1, '2024-05-08', 9, 45, '303194', false), - (97041, '2024-05-16 06:00:35.209857+00', '0xcd2359b236bc2948deb8eb7134f345153eb69dd7', 0, 0, 1, '2024-05-15', 2, 8, '372581', false), - (83414, '2024-05-10 23:12:12.024827+00', '0x0445d4537e01838734167752cab5faa9d07d26ac', 0, 0, 1, '2024-05-04', 5, 21, '416775', false), - (97458, '2024-05-16 06:00:38.193877+00', '0xed813f2d20e058c53fcf3e65716ce65e9ccc68b2', 0, 0, 1, '2024-05-15', 2, 10, '378588', false), - (81649, '2024-05-10 23:12:06.619417+00', '0xbe15e484bdccc1fb219447c2128193e5851b59b7', 0, 0, 1, '2024-05-10', 3, 15, '380532', false), - (81808, '2024-05-10 23:12:06.987884+00', '0xc9d4f53620ff23b8ee99f53df9e9a21cb5d53c27', 0, 0, 1, '2024-05-05', 12, 60, '449776', false), - (81831, '2024-05-10 23:12:07.014015+00', '0x2fd62bc390f0ed7a18da63a4eaa179c2e681f8e1', 0, 0, 1, '2024-05-09', 2, 10, '380596', false), - (81709, '2024-05-10 23:12:06.747531+00', '0x579280eb39ea75d964052719d5c2b784c19f3e01', 0, 0, 1, '2024-05-05', 7, 35, '430593', false), - (81991, '2024-05-10 23:12:07.633611+00', '0x8469d3708a788cb24818ab196160b52ebffc8d4d', 0, 0, 1, '2024-05-09', 2, 9, '501080', false), - (81876, '2024-05-10 23:12:07.162618+00', '0xb9c8a397e38d5218272dea8ef5ff59e2aecc76c2', 0, 0, 1, '2024-02-06', 6, 25, '293005', false), - (81974, '2024-05-10 23:12:07.620289+00', '0x88327695b662e539e83e1733b1b81092261d8f19', 0, 0, 1, '2024-05-07', 6, 30, '406727', false), - (81738, '2024-05-10 23:12:06.779917+00', '0xc2b8d0e853a2b0b8401f93fce9f80c67c089907c', 0, 0, 1, '2024-05-07', 3, 15, '504638', false), - (81890, '2024-05-10 23:12:07.148635+00', '0xd542c059c9f5dda36e52198880b98e2afcca4eaf', 0, 0, 1, '2024-05-06', 11, 46, '448267', false), - (81905, '2024-05-10 23:12:07.4754+00', '0x6b74b18716b97216c296fa174905fd46b6dbe244', 0, 0, 1, '2024-05-05', 7, 35, '376576', false), - (81766, '2024-05-10 23:12:06.875785+00', '0x726a040c245264632e2a0cabc0882fb6334889fd', 0, 0, 1, '2024-05-08', 8, 37, '497760', false), - (81465, '2024-05-10 23:12:06.05976+00', '0x5884a543ae9ce695bf620d64e1a817470a27d59a', 0, 0, 1, '2024-05-10', 2, 10, '452746', false), - (81951, '2024-05-10 23:12:07.594011+00', '0xf2e11f72f83feaa573e0805266c023b052b32461', 0, 0, 1, '2024-05-07', 9, 45, '480504', false), - (84088, '2024-05-10 23:12:13.977272+00', '0x100baf288ee043b941f7508ee0da3914d71f9d4d', 0, 0, 1, '2024-05-07', 2, 2, '323298', false), - (84679, '2024-05-10 23:12:15.885815+00', '0x2cba857b37ae7111285aff6b2b05ce517dec3446', 0, 0, 1, '2024-05-07', 2, 10, '287771', false), - (88138, '2024-05-10 23:12:26.056821+00', '0x37d4c29cb18a47d039495d0ab949c0b4cbc5ce13', 0, 0, 1, '2024-05-05', 2, 2, '327431', false), - (85758, '2024-05-10 23:12:19.251809+00', '0x6ba6a2506d8dadba3c545d7cd147edc4ecab4d7c', 0, 0, 1, '2024-05-05', 6, 20, '503301', false), - (87236, '2024-05-10 23:12:23.665444+00', '0x30515e60b426ce67adf106fa95c172b23566eb6d', 0, 0, 1, '2024-05-05', 1, 5, '452605', false), - (79884, '2024-05-10 23:12:01.353829+00', '0xe76808e2238735b936b9dc78d5bb9e87727e5467', 0, 0, 1, '2024-01-22', 2, 1, '189784', false), - (82041, '2024-05-10 23:12:07.774313+00', '0x72fabaccadc774c88cf14944fb544ffb4c56e53f', 0, 0, 1, '2024-05-06', 2, 9, '500202', false), - (80034, '2024-05-10 23:12:01.946796+00', '0x4b2ed0d7757dc8ef0ce65b0454f53866471849f8', 0, 0, 1, '2024-01-16', 3, 9, '214013', false), - (80597, '2024-05-10 23:12:03.411812+00', '0x660ba471aeef6dd8054f9e012e0b32d026a96d73', 0, 0, 1, '2023-11-08', 1, 0, '5097', false), - (79837, '2024-05-10 23:12:01.030136+00', '0x98db764d115badcde1a035df94b8118016c53057', 0, 0, 1, '2023-10-17', 3, 1, '18458', false), - (81056, '2024-05-10 23:12:04.623895+00', '0x2ae9b5d66d83419dbc33696c9f126ff11de75b99', 0, 0, 1, '2023-06-30', 2, 1, '8573', false), - (81356, '2024-05-10 23:12:05.799472+00', '0x8f165204093872eca99887f3295678ebc4058fda', 0, 0, 1, '2023-06-01', 1, 1, '3755', false), - (80817, '2024-05-10 23:12:04.056138+00', '0x371107cc397a1fd11fd5a7ac8421a3e43f886444', 0, 0, 1, '2023-06-13', 15, 6, '9746', false), - (81899, '2024-05-10 23:12:07.463233+00', '0x9683aa73c2da0a2ff49eac372ca2b9e38f1e0b58', 0, 0, 1, '2024-05-06', 5, 25, '506804', false), - (82005, '2024-05-10 23:12:07.733796+00', '0x2db372ed27478c56c499a57089939f83cf4dae98', 0, 0, 1, '2024-05-06', 2, 10, '498476', false), - (97150, '2024-05-16 06:00:36.091195+00', '0x56c4a0de825ae18a29a367478c71994022e4077c', 0, 0, 1, '2024-05-16', 1, 5, '431733', false), - (81513, '2024-05-10 23:12:06.188617+00', '0xf91a0a326decb8b31bcb54f36ec830a8b79dbc6f', 0, 0, 1, '2024-05-07', 18, 85, '452471', false), - (81765, '2024-05-10 23:12:06.87754+00', '0x2a9aa48b4e0327b343185a5358ba45a6e0b1dfe1', 0, 0, 1, '2024-05-08', 5, 22, '465466', false), - (81452, '2024-05-10 23:12:06.039944+00', '0x76360201f363483e543cd1fc8d43f1f08283714e', 0, 0, 1, '2024-05-06', 27, 83, '503150', false), - (81645, '2024-05-10 23:12:06.542375+00', '0xe433ff36c782379254842671423d746ce43f058e', 0, 0, 1, '2024-05-08', 12, 56, '418752', false), - (82166, '2024-05-10 23:12:08.161695+00', '0xe8bb885f62d9c1bd6e5432d3ab44a65bc81f167b', 0, 0, 1, '2024-05-09', 4, 20, '428747', false), - (81764, '2024-05-10 23:12:06.882685+00', '0x7fb9d4474811ef10142de150a61db7f4319bf9b1', 0, 0, 1, '2024-05-05', 8, 40, '439083', false), - (81518, '2024-05-10 23:12:06.196765+00', '0x1238d4dc3521dae1967bbf42337db51f0e7e58a0', 0, 0, 1, '2024-05-07', 8, 33, '379759', false), - (95798, '2024-05-14 06:00:31.291993+00', '0xdb750b1a955fbc1af1fc1bf1b7850f41144a8d96', 0, 0, 1, '2024-05-13', 1, 1, '385784', false), - (73970, '2024-05-10 23:11:44.239215+00', '0xd3432463cf264f4def759ca6f8843d47dd00b2fd', 0, 0, 1, '2024-05-05', 6, 4, '15431', false), - (85251, '2024-05-10 23:12:17.741958+00', '0xb88079585bdf8e36e004af32f3c7475ee376f059', 0, 0, 1, '2024-05-06', 3, 5, '448959', false), - (89952, '2024-05-10 23:12:31.443603+00', '0xca1a6e5fe34293775fe0dd109d74539b567eec34', 0, 0, 1, '2024-01-14', 9, 11, '219069', false), - (81492, '2024-05-10 23:12:06.092616+00', '0xc45af5e67f6f6e830ea789907add9a8a2ca6c40e', 0, 0, 1, '2024-05-08', 8, 38, '416191', false), - (85139, '2024-05-10 23:12:17.452138+00', '0x0b255cd2188dae3787c1447a8dd99fb9611f461f', 1780, 1780, 1, '2024-05-07', 2, 3, '465063', true), - (88789, '2024-05-10 23:12:27.669742+00', '0xcc9b3f50d1befda707ff0b1a808e4e1f1aa15eb4', 3395, 3395, 1, '2024-04-11', 3, 2, '436728', true), - (89066, '2024-05-10 23:12:28.582537+00', '0xd70804463bb2760c3384fc87bbe779e3d91bab3a', 6692, 6692, 1, '2023-06-21', 4, 1, '5758', true), - (75537, '2024-05-10 23:11:48.655062+00', '0xafca747b067c40ae0dda3f170ae971a2cbf4d05c', 15952, 15952, 1, '2024-01-26', 14, 31, '1407', true), - (81901, '2024-05-10 23:12:07.469792+00', '0x914d71a13694347d31e47535f93eb6a18b571c1a', 0, 0, 1, '2024-05-07', 3, 15, '416872', false), - (81916, '2024-05-10 23:12:07.483788+00', '0xabaa9e40bdf7c96f7090b3ee9cbd978904bf05cc', 0, 0, 1, '2024-05-08', 3, 12, '401570', false), - (81922, '2024-05-10 23:12:07.486577+00', '0xafd35b6352528e0cd871951ebf1a257c32612f41', 0, 0, 1, '2024-05-06', 4, 20, '17060', false), - (81923, '2024-05-10 23:12:07.487271+00', '0x7c7b2e4d74419ab7104ba394d58310803ee6a31c', 0, 0, 1, '2024-05-10', 11, 11, '474633', false), - (81929, '2024-05-10 23:12:07.497847+00', '0xb41e96fe689ae23a59339edaffdd9279263e0290', 0, 0, 1, '2024-05-08', 5, 20, '425741', false), - (81908, '2024-05-10 23:12:07.476115+00', '0xc19cdd316b92d06dde741743131b0799bfb57e7b', 0, 0, 1, '2024-05-05', 16, 80, '396031', false), - (81603, '2024-05-10 23:12:06.489895+00', '0x82209111e235613802e6a95f0a4371307408461a', 0, 0, 1, '2024-05-06', 11, 20, '500192', false), - (81479, '2024-05-10 23:12:06.08155+00', '0xa5b9d747f1d7e4e24f59443c1dcd221731455ea4', 0, 0, 1, '2024-05-05', 10, 37, '421100', false), - (81777, '2024-05-10 23:12:06.894953+00', '0x019fe8b2d4e864a64402e71b81d176f4669cf764', 0, 0, 1, '2024-05-05', 14, 58, '288345', false), - (80581, '2024-05-10 23:12:03.395713+00', '0x5881d9bfff787c8655a9b7f3484ae1a6f7a966e8', 0, 0, 1, '2023-07-13', 7, 3, '5321', false), - (82056, '2024-05-10 23:12:07.909914+00', '0xc88135892864309c30ec51734b02ba197c137830', 0, 0, 1, '2024-05-07', 9, 45, '437984', false), - (81616, '2024-05-10 23:12:06.50038+00', '0xf40a1a549bf702b74e70f9e0329db5ccc6839d42', 0, 0, 1, '2024-05-06', 14, 70, '401441', false), - (79846, '2024-05-10 23:12:01.053929+00', '0xd527c56dc2ac6a71f04242548039d07006e9103e', 0, 0, 1, '2024-02-05', 1, 1, '284355', false), - (81945, '2024-05-10 23:12:07.509237+00', '0x2ce843b5300415a98902368ee120735b4ae122df', 0, 0, 1, '2024-05-07', 7, 35, '391632', false), - (81586, '2024-05-10 23:12:06.353639+00', '0x6538bc9183bd6637e67b28ddb049a768e4ad3ab8', 0, 0, 1, '2024-05-06', 23, 115, '418296', false), - (81875, '2024-05-10 23:12:07.163425+00', '0x9e44938f1bfc12f35776571bb2b43368ec366940', 0, 0, 1, '2024-05-05', 34, 137, '380202', false), - (81562, '2024-05-10 23:12:06.334981+00', '0x6a1b2e6549e96602414e5bca8c9d061038bc189c', 0, 0, 1, '2024-05-08', 23, 114, '416654', false), - (81722, '2024-05-10 23:12:06.755151+00', '0xeba06dcd2197f32a581434165b801a9401c395c4', 0, 0, 1, '2024-05-07', 17, 84, '471939', false), - (80563, '2024-05-10 23:12:03.377881+00', '0x6f1490e04121dfaf6f62811325dfc05be19d1039', 0, 0, 1, '2023-11-10', 6, 11, '193959', false), - (81939, '2024-05-10 23:12:07.503772+00', '0xb4137090d4bb939eb95aa4c47137f39d58988897', 0, 0, 1, '2024-05-05', 5, 25, '500371', false), - (81892, '2024-05-10 23:12:07.18097+00', '0x35fd194df96a1df2d325117c917144116d6f09c9', 0, 0, 1, '2024-05-07', 4, 12, '434241', false), - (82167, '2024-05-10 23:12:08.165157+00', '0x080e21af3d887e630b77f07e490bb9eb9ed20f9a', 0, 0, 1, '2024-05-09', 1, 0, '433304', false), - (81878, '2024-05-10 23:12:07.165842+00', '0x4e2bd8f28bb15a92f0229e985314385e23e73f11', 0, 0, 1, '2024-05-07', 6, 30, '502705', false), - (82354, '2024-05-10 23:12:08.681466+00', '0x093a81ba1254fbe6c3548761bae3dd6bd3a8aab4', 0, 0, 1, '2024-05-09', 1, 5, '358032', false), - (82044, '2024-05-10 23:12:07.774312+00', '0xadff8aed47fdcc0ff393cc02d9be646d70c2736f', 0, 0, 1, '2024-05-05', 7, 35, '486310', false), - (81963, '2024-05-10 23:12:07.600826+00', '0xe9dc43ba2c866fd1880b16c819e696e9b49ea656', 0, 0, 1, '2024-05-07', 5, 25, '405992', false), - (81942, '2024-05-10 23:12:07.510404+00', '0x0852a08a28385eb14ce15ce13edcbf2ae0761091', 0, 0, 1, '2024-05-09', 4, 20, '467072', false), - (82042, '2024-05-10 23:12:07.775074+00', '0xfca1d644f0d4dab00660ebcdfc176063185b1587', 0, 0, 1, '2024-05-05', 6, 30, '426079', false), - (81998, '2024-05-10 23:12:07.721157+00', '0x447d556e8718771143fae562aa066a9a7015d606', 0, 0, 1, '2024-05-08', 7, 35, '500193', false), - (81794, '2024-05-10 23:12:06.904711+00', '0x634cb195dbbe098b525e655fbc95dd198b4d3fc8', 0, 0, 1, '2024-05-07', 15, 66, '404660', false), - (97474, '2024-05-16 06:00:38.475453+00', '0x156f8717a5c213cfcce01f7ab224bc983ce2f063', 0, 0, 1, '2024-05-15', 2, 0, '519618', false), - (82110, '2024-05-10 23:12:08.046798+00', '0xf55c54c399a4d3fa4735e8d399f676a39c91ec8a', 0, 0, 1, '2024-05-05', 5, 11, '504968', false), - (81897, '2024-05-10 23:12:07.3784+00', '0xf76b889f98b4fdc5d5b0c2e10d843e6a6fc2bb09', 0, 0, 1, '2024-05-07', 26, 111, '286367', false), - (81697, '2024-05-10 23:12:06.650533+00', '0x586d40e35ea1f08b63a46158eaf12d50e427fec1', 0, 0, 1, '2024-05-07', 10, 45, '506789', false), - (81886, '2024-05-10 23:12:07.171126+00', '0x5509ea871d7aa126c31b5487bfe9eb57645bddd2', 0, 0, 1, '2024-05-08', 5, 22, '417421', false), - (79649, '2024-05-10 23:12:00.545035+00', '0xfbd234f73a3cfa398f36f396ba527c85006c3f9e', 0, 0, 1, '2024-02-07', 2, 1, '273716', false), - (79851, '2024-05-10 23:12:01.317915+00', '0xc2f6d0f6ab3446b8a673f9ff26a382127bc3d26e', 0, 0, 1, '2024-02-04', 2, 2, '270281', false), - (79868, '2024-05-10 23:12:01.337493+00', '0x1670db0afa7b78f3c462ce4a5f463af056e4ecd4', 0, 0, 1, '2024-02-05', 1, 2, '268853', false), - (80144, '2024-05-10 23:12:02.236256+00', '0xc3d0cadc46f29064b494a224c6381ad58dcefc04', 0, 0, 1, '2024-01-13', 1, 2, '18229', false), - (81803, '2024-05-10 23:12:06.981833+00', '0x7737e99c7308a15bbe98be8740cb65a2ad3ecc1d', 0, 0, 1, '2024-05-08', 5, 18, '421429', false), - (82397, '2024-05-10 23:12:08.806557+00', '0x3663d35b69d1a290515e3471b03c4d68ff9584bb', 0, 0, 1, '2024-05-05', 4, 19, '409492', false), - (81626, '2024-05-10 23:12:06.523335+00', '0x92140d2cdf70efbbfdbf246b1f914eda40423a1e', 0, 0, 1, '2024-05-06', 13, 65, '406373', false), - (81558, '2024-05-10 23:12:06.324802+00', '0xaa8925f1b09396edbd44de198269993a7b331963', 0, 0, 1, '2024-05-07', 7, 32, '512340', false), - (81652, '2024-05-10 23:12:06.624328+00', '0xdd7bde3072638c853b65b33314e4f5e857ed9e42', 0, 0, 1, '2024-05-07', 8, 40, '503602', false), - (81849, '2024-05-10 23:12:07.138155+00', '0x5be29e46442492f66c53a565f1c35d354a02aaf7', 0, 0, 1, '2024-05-07', 4, 20, '464182', false), - (81920, '2024-05-10 23:12:07.485742+00', '0x94734e11b78680a35b0a86ba3ce634d334d6d2a7', 0, 0, 1, '2024-03-11', 24, 68, '373566', false), - (81421, '2024-05-10 23:12:05.929029+00', '0x1500cfc7d2819442f1f5d7e2281554472c275075', 0, 0, 1, '2023-05-10', 4, 1, '7706', false), - (81708, '2024-05-10 23:12:06.744661+00', '0x6dae4a241efa12185fa3505a0df359c50ae32735', 0, 0, 1, '2024-05-10', 1, 4, '286895', false), - (82066, '2024-05-10 23:12:07.925981+00', '0xc4cc28fa3243e72e3c4b2d0d4ed832feb5fd47ae', 0, 0, 1, '2024-05-05', 8, 38, '503328', false), - (82106, '2024-05-10 23:12:08.041988+00', '0x119a849400dd8b61c8ab8995cb37af32dbbd2d8b', 0, 0, 1, '2024-05-04', 6, 10, '237763', false), - (88520, '2024-05-10 23:12:26.983948+00', '0xf0c32b605d6065c848c9a1d6f3c11ca7b3752f37', 1407, 1407, 1, '2024-05-04', 1, 2, '1389', true), - (90097, '2024-05-10 23:12:31.837088+00', '0x6c965b656c450259a6d4d95a2e68fb4319eecbc0', 1878, 1878, 1, '2024-05-07', 1, 5, '11778', true), - (87406, '2024-05-10 23:12:24.129736+00', '0x928a8918d31941fb6b7b1f5456964a8bcbcb2435', 2640, 2640, 1, '2024-05-05', 2, 10, '421661', true), - (82310, '2024-05-10 23:12:08.551967+00', '0x490a6d0e6e49dab7c189ca04b9e9c3d4687ed1fe', 0, 0, 1, '2024-05-07', 3, 15, '477931', false), - (82235, '2024-05-10 23:12:08.302862+00', '0x179d9d851498ab247b0078883b8948da7b397b1e', 0, 0, 1, '2024-05-06', 8, 39, '508176', false), - (83813, '2024-05-10 23:12:13.299986+00', '0xd1a5b9caabade7afbd14e8885a8b785bcff50a59', 0, 0, 1, '2024-05-06', 4, 20, '501083', false), - (82785, '2024-05-10 23:12:09.926716+00', '0xa69aee60049f1a83840f48e8e8fd8e760ef31e20', 0, 0, 1, '2024-05-05', 22, 102, '508532', false), - (87234, '2024-05-10 23:12:23.665287+00', '0x5c70940b0f95609e9f82908f778136b46a7f3e22', 0, 0, 1, '2024-05-05', 3, 15, '323021', false), - (81752, '2024-05-10 23:12:06.866729+00', '0xdfc3675c1b76fe2b98b77e1de7ac1a4fe48c4fec', 0, 0, 1, '2024-05-06', 7, 27, '325706', false), - (81995, '2024-05-10 23:12:07.638916+00', '0x3065cc1c9d4ef4ace8d6c74e6e497792214416c9', 0, 0, 1, '2024-05-05', 10, 50, '486262', false), - (81838, '2024-05-10 23:12:07.02023+00', '0x0338d0e211da8565b0ac507c1d83a2bcdc157468', 0, 0, 1, '2024-05-07', 9, 31, '424395', false), - (81881, '2024-05-10 23:12:07.16934+00', '0x738e59cfe2426c3494c4882e0391a33be69d7cf2', 0, 0, 1, '2024-05-07', 17, 48, '501956', false), - (82055, '2024-05-10 23:12:07.902631+00', '0x2bd335bcb96eaa93b41146c888db4989865e07d1', 0, 0, 1, '2024-05-07', 17, 84, '392118', false), - (73953, '2024-05-10 23:11:44.147517+00', '0x4a6d41513783b0023c4de563de751e698e5f962a', 0, 0, 1, '2024-04-02', 34, 22, '417780', false), - (82102, '2024-05-10 23:12:08.036402+00', '0x2f0ed97e3bcf7ca01653fedc1c4a7a39329df62d', 0, 0, 1, '2024-05-05', 8, 40, '421585', false), - (93192, '2024-05-10 23:12:40.446586+00', '0xb22f9bab1010075aefc319a69ee2f66ec8a1cea4', 0, 0, 1, '2024-02-06', 1, 5, '251579', false), - (92714, '2024-05-10 23:12:39.214145+00', '0x14195ac9ee87014a9fb9335fe51a60b82050d2a8', 0, 0, 1, '2024-02-06', 2, 8, '252805', false), - (84033, '2024-05-10 23:12:13.820758+00', '0x70646d5758397222f65fe1f841ad05d96f60d352', 0, 0, 1, '2024-05-06', 4, 17, '500333', false), - (88823, '2024-05-10 23:12:27.794129+00', '0x762b89823df69b711c35b737acb0660456720921', 0, 0, 1, '2024-04-12', 1, 2, '443910', false), - (88886, '2024-05-10 23:12:27.924162+00', '0x848b5746188a884381c9c76bbf6f620155c1f1a3', 0, 0, 1, '2024-04-10', 1, 0, '467610', false), - (85807, '2024-05-10 23:12:19.454532+00', '0x247eb6861e981b136f39e1e2bcfcc22c52216633', 0, 0, 1, '2024-05-05', 10, 18, '509567', false), - (82071, '2024-05-10 23:12:07.92929+00', '0xa8635dcd9d93b3979a05bb0ad09d89da058e9353', 0, 0, 1, '2024-05-07', 9, 37, '489893', false), - (82951, '2024-05-10 23:12:10.445573+00', '0x6ae2f5aa3a2cee8b954581385afe41eed46a7fa9', 0, 0, 1, '2024-05-07', 17, 31, '500124', false), - (82063, '2024-05-10 23:12:07.922017+00', '0x0fb1110da2545ff09df2e39e97f8a09e72a9e038', 0, 0, 1, '2024-05-08', 4, 20, '486824', false), - (85588, '2024-05-10 23:12:18.752104+00', '0x15bf1554b8ce0a83a377b66cd5effbe3762d9166', 0, 0, 1, '2024-05-07', 1, 3, '316454', false), - (87020, '2024-05-10 23:12:23.060829+00', '0x14e9fa47944d0eb2ab041d37d821fd3548f0bf5c', 0, 0, 1, '2024-05-06', 1, 5, '326613', false), - (84287, '2024-05-10 23:12:14.519439+00', '0x8efb20a47595315cd784b1471de6f57507fe6ba6', 0, 0, 1, '2024-05-07', 1, 5, '507868', false), - (87002, '2024-05-10 23:12:23.037004+00', '0xff417743c2a1dc5aa4c460a95c14b868cac07703', 0, 0, 1, '2024-05-06', 2, 6, '411612', false), - (87090, '2024-05-10 23:12:23.264647+00', '0xed5f6e01450f554446a8c63287ed3b6a5e7419e1', 0, 0, 1, '2024-05-05', 1, 5, '506159', false), - (87105, '2024-05-10 23:12:23.297169+00', '0x836eb99ad1bc73bc61d405a0df81bbe168055c27', 0, 0, 1, '2024-05-05', 2, 2, '427462', false), - (88853, '2024-05-10 23:12:27.80637+00', '0x1dcb5d8c40af2aebc484b994f36b7af9a53196f9', 0, 0, 1, '2024-04-09', 3, 3, '468000', false), - (93229, '2024-05-10 23:12:40.553158+00', '0x1b04beb50c40df7e5efdbf91c5d876e94666603d', 0, 0, 1, '2024-02-06', 1, 3, '238219', false), - (93250, '2024-05-10 23:12:40.575278+00', '0x37c9de43d09106deb57e0db5a3eb427388807ab1', 0, 0, 1, '2024-02-06', 1, 0, '239709', false), - (93365, '2024-05-10 23:12:40.948316+00', '0x672c3b982325be86e221fe5d0eb5391ffa9cc8fc', 0, 0, 1, '2024-02-02', 1, 5, '234526', false), - (93393, '2024-05-10 23:12:40.976289+00', '0x1d1b531c856be9cf93ce93d8914597dd8e2564ad', 0, 0, 1, '2024-02-02', 1, 0, '15391', false), - (93557, '2024-05-10 23:12:41.516575+00', '0x4b70b870182f65e43e7413ec33878015eab7e7ff', 0, 0, 1, '2023-12-24', 1, 0, '17515', false), - (84022, '2024-05-10 23:12:13.82022+00', '0x3faec76484ff39fdb6871af6f356134f8c8c83e3', 0, 0, 1, '2024-05-06', 2, 10, '470013', false), - (83205, '2024-05-10 23:12:11.281157+00', '0xecd376b6a1721beec3b322f110813a4f3773e161', 0, 0, 1, '2024-05-05', 5, 20, '419915', false), - (85383, '2024-05-10 23:12:18.034738+00', '0xbcbb0a171beabbff0bd3f96c5abe5c6c5889f766', 0, 0, 1, '2024-05-07', 1, 5, '286447', false), - (88005, '2024-05-10 23:12:25.675389+00', '0xf0e436ed363115c9054eb1ea2225ce679920be7c', 0, 0, 1, '2024-05-05', 1, 5, '417708', false), - (84156, '2024-05-10 23:12:14.228882+00', '0x47a6d7223e375d33d7235c9654d728eb108d78ae', 0, 0, 1, '2024-05-07', 3, 10, '503248', false), - (83430, '2024-05-10 23:12:12.044684+00', '0x986bdcfb464c034b0fba4b114ebf52e247eff23e', 0, 0, 1, '2024-05-05', 8, 38, '402789', false), - (82402, '2024-05-10 23:12:08.815221+00', '0x4dba8dee52ecf647979676c4d34c6752955d77ba', 0, 0, 1, '2024-05-05', 2, 10, '306430', false), - (93596, '2024-05-10 23:12:41.652589+00', '0x0e10c415e2a7d652276a3ded645a33f2c9a4e163', 0, 0, 1, '2023-12-21', 1, 1, '195178', false), - (86921, '2024-05-10 23:12:22.700422+00', '0xcdc38f4c1ebccb80b7885d819365e897e2e4ad61', 0, 0, 1, '2024-05-05', 3, 13, '276637', false), - (93535, '2024-05-10 23:12:41.365882+00', '0xeb40a065854bd90126a4e697aea0976ba51b2ee7', 0, 0, 1, '2023-12-19', 2, 1, '13165', false), - (92850, '2024-05-10 23:12:39.492553+00', '0x1bf405a0eb1edf3a904e679f8ef9d12f369a4441', 0, 0, 1, '2024-02-06', 1, 1, '259845', false), - (92885, '2024-05-10 23:12:39.623187+00', '0x6e6e3ac4aba720ab576d0f16042a16d6d9b78886', 0, 0, 1, '2024-02-06', 1, 5, '216523', false), - (88810, '2024-05-10 23:12:27.709564+00', '0x3e7158b55e68186b044d6960d9a56d99296aa8a1', 0, 0, 1, '2024-04-15', 2, 3, '268303', false), - (81979, '2024-05-10 23:12:07.613905+00', '0xff88c24b0608363bb980cb8a37027b6c234bc3f2', 0, 0, 1, '2024-05-08', 12, 54, '403013', false), - (81900, '2024-05-10 23:12:07.462704+00', '0xc2621775957a51a4c11ae3d9fbdd008cc541a86a', 0, 0, 1, '2024-05-05', 12, 60, '420603', false), - (81501, '2024-05-10 23:12:06.176712+00', '0x6c2017d39eca589beaca9309ce34cfd3ddc29b6e', 0, 0, 1, '2024-05-10', 4, 20, '510906', false), - (81642, '2024-05-10 23:12:06.53715+00', '0x09b0e079f86c7e37f14ea0ac628172f6e58f6541', 0, 0, 1, '2024-05-06', 24, 117, '413804', false), - (81581, '2024-05-10 23:12:06.385337+00', '0x5ede0b50ca07d799b26a4072532180223faadf63', 0, 0, 1, '2024-05-06', 21, 105, '411455', false), - (81755, '2024-05-10 23:12:06.876723+00', '0x6e2d1729982ff017efada3345ad986065003462b', 0, 0, 1, '2024-05-07', 16, 79, '503201', false), - (88605, '2024-05-10 23:12:27.220031+00', '0x9469d51f31e13fcb119bdf155bc20b4c5f69e35b', 1068, 1068, 1, '2024-04-27', 1, 0, '237973', true), - (88929, '2024-05-10 23:12:28.087041+00', '0x9c94aaff71e4a58cd9fb5be2005b8dc952c4c2e3', 3553, 3553, 1, '2024-04-02', 2, 7, '16152', true), - (89146, '2024-05-10 23:12:28.749794+00', '0x7c5ad4bdf3c3fc735c823492d46228a8c0a0f81f', 1894, 1894, 1, '2024-03-12', 1, 1, '346320', true), - (89531, '2024-05-10 23:12:30.119115+00', '0xd4c1f5f3d12373dcd9fd52dea6aba0d8461a3245', 3541, 3541, 1, '2024-01-03', 1, 4, '14127', true), - (89752, '2024-05-10 23:12:30.739685+00', '0xe41f56122d44f63c4492096d54d8be96d600bb06', 1957, 1957, 1, '2023-09-12', 1, 0, '5644', true), - (88359, '2024-05-10 23:12:26.589972+00', '0x915b472dfa70c8fe9d074a8c859089c44252d6b8', 1364, 1364, 1, '2024-05-05', 1, 2, '417416', true), - (81804, '2024-05-10 23:12:06.981094+00', '0x72efdbfaebf390a6f1a12abcd2b3ed52bdee5e6e', 0, 0, 1, '2024-05-10', 5, 25, '343330', false), - (81472, '2024-05-10 23:12:06.075249+00', '0x440fbbc0f3503c4977d4f36169b41df5a8de86f2', 0, 0, 1, '2024-05-09', 8, 40, '501479', false), - (97366, '2024-05-16 06:00:37.623984+00', '0x35a16cbcd2da9052340a708b2d58ff415c51044d', 0, 0, 1, '2024-05-15', 1, 5, '339108', false), - (96015, '2024-05-14 06:00:32.727911+00', '0x16ea7065613b64c7e45debcbd82c1fc03e2f8760', 0, 0, 1, '2024-05-13', 2, 2, '431493', false), - (95817, '2024-05-14 06:00:31.427979+00', '0xa0211ddc1f9aa3dfc041b46a32e63bd8200727a5', 0, 0, 1, '2024-05-13', 1, 3, '372888', false), - (96128, '2024-05-14 06:00:33.412577+00', '0xa0fa3e0df479f58d5207c5c26ee92e5a45e1b7f0', 0, 0, 1, '2024-05-13', 1, 5, '495238', false), - (92787, '2024-05-10 23:12:39.362059+00', '0x364e6f1044de74100dcb353114cb0d363601fb67', 0, 0, 1, '2024-02-06', 3, 0, '265969', false), - (92931, '2024-05-10 23:12:39.75639+00', '0x20dfb65e933a664c1e7d87d4a3672fcd76752575', 0, 0, 1, '2024-02-06', 1, 1, '252485', false), - (92754, '2024-05-10 23:12:39.254928+00', '0xc8abf679e14add9a6d6b6881cbdb4bca748cd2d0', 0, 0, 1, '2024-02-06', 2, 7, '250575', false), - (92963, '2024-05-10 23:12:39.878675+00', '0x9a2d9ccb17d404ab78fc3fac3ba85e42db518213', 0, 0, 1, '2024-02-06', 1, 0, '288418', false), - (93008, '2024-05-10 23:12:39.925253+00', '0x2ebd5817147aca120f8a261b92e3957af93afb9b', 0, 0, 1, '2024-02-06', 1, 5, '214938', false), - (93024, '2024-05-10 23:12:40.030244+00', '0x5ca9a17f6e975b7068b30028cac44bb100ab70ef', 0, 0, 1, '2024-02-06', 2, 0, '305958', false), - (93044, '2024-05-10 23:12:40.051347+00', '0x82c9bae2a869f60bbab7bec71609f9ae9b7127dc', 0, 0, 1, '2024-02-06', 1, 1, '308236', false), - (92945, '2024-05-10 23:12:39.777795+00', '0xbbff757fd0c2506d8c7cab172bdd0990773cc858', 0, 0, 1, '2024-02-06', 3, 5, '245969', false), - (93065, '2024-05-10 23:12:40.144571+00', '0x535a6da7c54d45cf57d240f4d65a6acccee58f6f', 0, 0, 1, '2024-02-06', 2, 6, '246549', false), - (93115, '2024-05-10 23:12:40.278779+00', '0xfa36ba99d1aa753683482f8a6effa8468e8aee67', 0, 0, 1, '2024-02-06', 1, 4, '278282', false), - (93128, '2024-05-10 23:12:40.290335+00', '0xfabd652993c871bd27b850ce3c50a7a5814f275d', 0, 0, 1, '2024-02-06', 1, 1, '269773', false), - (81517, '2024-05-10 23:12:06.196298+00', '0x780d121c7ae6593dc333a75419e8db83a30629e7', 0, 0, 1, '2024-05-06', 13, 65, '406650', false), - (93172, '2024-05-10 23:12:40.43133+00', '0x0ff624126463de908bddfd294ac4a44f397799e0', 0, 0, 1, '2024-02-06', 1, 1, '277067', false), - (93153, '2024-05-10 23:12:40.41229+00', '0xbcdf059b250bf7d38ae958c362b1cef5ac0e67ee', 0, 0, 1, '2024-02-06', 2, 9, '295787', false), - (93247, '2024-05-10 23:12:40.571509+00', '0xb497b5955353614334cda5cfd8ca982c1a93dc55', 0, 0, 1, '2024-02-06', 1, 2, '266736', false), - (93841, '2024-05-10 23:12:42.458134+00', '0xaee2b2414f6ddd7e19697de40d828cbcddabf27f', 0, 0, 1, '2023-07-20', 1, 0, '1035', false), - (93847, '2024-05-10 23:12:42.467245+00', '0xdc0046b52e2e38aee2271b6171ebb65ccd337518', 0, 0, 1, '2023-07-12', 1, 1, '16037', false), - (73818, '2024-05-10 23:11:42.956762+00', '0xf668cc6cde8ae8670d90400c32efd78c8d6e243a', 0, 0, 1, '2024-02-03', 9, 6, '237566', false), - (73912, '2024-05-10 23:11:43.410189+00', '0x863c99aa7b094a29c56bf853dfceba16f7bbee24', 0, 0, 1, '2024-05-10', 1, 2, '506379', false), - (74402, '2024-05-10 23:11:45.50381+00', '0x821dc89c23d059170c92fa1f569d67f0ff1b0885', 0, 0, 1, '2024-05-05', 3, 15, '503240', false), - (75178, '2024-05-10 23:11:47.801519+00', '0x24ba5ea4ab0d0f77f6a970c13e127232e68d84dd', 0, 0, 1, '2024-05-05', 1, 0, '428725', false), - (78989, '2024-05-10 23:11:58.495236+00', '0xa0a8a6445664f7f57bf3f72394edaf3c02d00d2b', 0, 0, 1, '2024-02-24', 1, 2, '211443', false), - (77261, '2024-05-10 23:11:53.523878+00', '0xbafc68e4bd06c3f0f53d0603e2a85fc0ba2549b3', 0, 0, 1, '2023-11-19', 7, 8, '192266', false), - (74672, '2024-05-10 23:11:46.445035+00', '0x712f482cd8e94b71a0aeff984abe2c294dcb2d28', 0, 0, 1, '2024-02-07', 7, 16, '19067', false), - (81827, '2024-05-10 23:12:07.008097+00', '0x4e278471f4f36aa72d9a685c1112c1575e5777d4', 0, 0, 1, '2024-05-07', 11, 39, '287306', false), - (83535, '2024-05-10 23:12:12.323732+00', '0x1d7f24888b1add9299845234f68c7bdd6ee48c84', 0, 0, 1, '2024-05-06', 5, 24, '390104', false), - (92696, '2024-05-10 23:12:39.112767+00', '0xa8717e6d569f2a3f3954f7638bac20fd4f321d7f', 0, 0, 1, '2024-02-06', 1, 3, '255703', false), - (93571, '2024-05-10 23:12:41.524665+00', '0x07b910299e7e74096d7091af11fa5faa68dad888', 0, 0, 1, '2023-12-22', 1, 5, '15640', false), - (76799, '2024-05-10 23:11:52.178521+00', '0x3f5e01ee8439e8c0ba87025960bda715626b79a9', 0, 0, 1, '2024-04-16', 1, 2, '410436', false), - (87217, '2024-05-10 23:12:23.5629+00', '0xbbfc76a762251c1b1c6d7c3a0244b058e6df459a', 0, 0, 1, '2024-05-05', 3, 7, '460806', false), - (76393, '2024-05-10 23:11:51.178234+00', '0x9afda85f83edba82ddbbea6ea3bd2668dc94b12e', 0, 0, 1, '2024-04-09', 6, 11, '466312', false), - (74665, '2024-05-10 23:11:46.437118+00', '0x7ec7b13c6b80071c0ac5d1864fc4ba53db93939f', 0, 0, 1, '2024-05-07', 9, 4, '417284', false), - (74851, '2024-05-10 23:11:46.977326+00', '0x1379d66a070b90cef31c5a38a799654be8a45093', 0, 0, 1, '2024-05-07', 1, 0, '383209', false), - (81463, '2024-05-10 23:12:06.061091+00', '0x547f38f22b9e59ad5c9f353f27f6f38e8f71a56c', 0, 0, 1, '2024-05-05', 10, 17, '453227', false), - (74010, '2024-05-10 23:11:44.300916+00', '0xc3af8efe3c865b8363a79b13b27db530eb5d24af', 0, 0, 1, '2024-03-15', 11, 10, '331263', false), - (78806, '2024-05-10 23:11:57.928002+00', '0x55403d7315668639fe6cb5dcfd0288817171c6f9', 0, 0, 1, '2024-03-05', 1, 0, '255298', false), - (81482, '2024-05-10 23:12:06.081205+00', '0x3c60c84783020454c16aff48ffb247c9340980cd', 0, 0, 1, '2024-05-10', 1, 4, '427550', false), - (79943, '2024-05-10 23:12:01.677526+00', '0x72c2924f387aec3784d815a993af1c02db6ba3e5', 0, 0, 1, '2023-08-31', 2, 0, '8708', false), - (79873, '2024-05-10 23:12:01.341075+00', '0xff8fa9737169903feb053d6320d7088cf6ec861b', 0, 0, 1, '2024-02-04', 1, 2, '4457', false), - (81850, '2024-05-10 23:12:07.137702+00', '0xbdc353cba2eaabe74fc1da7a3df2ab836e63a87e', 0, 0, 1, '2024-05-08', 3, 15, '420055', false), - (89182, '2024-05-10 23:12:28.878105+00', '0x32802f989b4348a51dd0e61d23b78be1a0543469', 4672, 4672, 1, '2024-02-23', 2, 10, '78', true), - (89347, '2024-05-10 23:12:29.513866+00', '0xdd1256d5c133f21be2a7c981fc83c8cb0f66e286', 1625, 1625, 1, '2024-02-10', 1, 0, '5253', true), - (89440, '2024-05-10 23:12:29.854817+00', '0x59ebff2be1e53691e819b953fe215d61135dd05f', 3340, 3340, 1, '2024-02-05', 2, 2, '4549', true), - (85803, '2024-05-10 23:12:19.447715+00', '0xa6e455c07eb079b33596a20306d259754517f859', 1318, 1318, 1, '2024-05-06', 1, 2, '400975', true), - (87617, '2024-05-10 23:12:24.6538+00', '0xf7c4fe80da81377487b702bc13d1f876c14966e7', 0, 0, 1, '2024-05-05', 3, 0, '14563', false), - (83684, '2024-05-10 23:12:12.756822+00', '0x89988bdb28a66f9d6b22fd9eb1442d297addb421', 0, 0, 1, '2024-05-08', 1, 5, '473959', false), - (84440, '2024-05-10 23:12:15.068879+00', '0xe3f3764804a31cfed31557878f47dd20c9c6e4fc', 0, 0, 1, '2024-05-05', 9, 45, '452078', false), - (83381, '2024-05-10 23:12:11.792635+00', '0xb8c7a08071b391855f021542bc035af70249c677', 0, 0, 1, '2024-05-05', 4, 20, '502477', false), - (81496, '2024-05-10 23:12:06.097969+00', '0x1c868a1ada045c915242ea95ee34cbc7797625c8', 0, 0, 1, '2024-05-06', 16, 80, '507856', false), - (81466, '2024-05-10 23:12:06.060668+00', '0x85f489adf3ce25ad81824856e5712791944fe0ac', 0, 0, 1, '2024-05-05', 15, 73, '417936', false), - (81605, '2024-05-10 23:12:06.491259+00', '0x12ffe235341473d2605c632cf395b4998ab21af0', 0, 0, 1, '2024-05-07', 18, 85, '427626', false), - (85556, '2024-05-10 23:12:18.657504+00', '0xf483e2d4da3e190f1cd6fdc42adc87fc29b6e066', 0, 0, 1, '2024-05-05', 3, 15, '400234', false), - (81819, '2024-05-10 23:12:06.998307+00', '0x964c5f6174198a0d8ef9d14dad9fd2f62d352be2', 0, 0, 1, '2024-05-05', 20, 97, '409314', false), - (88070, '2024-05-10 23:12:25.842508+00', '0x05dc9b7bbaad662d5fe4b296a331613a5e25d416', 0, 0, 1, '2024-05-05', 1, 5, '481666', false), - (83320, '2024-05-10 23:12:11.669994+00', '0x7029f8ecadb286a9085c60ab1ff9e3f728254606', 0, 0, 1, '2024-05-05', 2, 10, '401077', false), - (88782, '2024-05-10 23:12:27.6754+00', '0x47671c44c5acd02148f19a0c5a7440ee0b3b7bb3', 0, 0, 1, '2024-04-14', 1, 0, '338409', false), - (90236, '2024-05-10 23:12:32.294994+00', '0x0f393b52e339ad658b8f3f266a15bbad136fb21c', 0, 0, 1, '2024-05-06', 1, 2, '284986', false), - (84151, '2024-05-10 23:12:14.220972+00', '0x42dc0d7f7ad1d1d188273431ef350a87d105b08b', 0, 0, 1, '2024-05-06', 2, 10, '501587', false), - (84212, '2024-05-10 23:12:14.354493+00', '0xc673058a17a25b53eea0c68e2048798cc06901a2', 0, 0, 1, '2024-05-07', 1, 5, '515904', false), - (84925, '2024-05-10 23:12:16.697681+00', '0x50ab3fb7c9e2cfdda224c7d2526d3c8a98a3ce3b', 0, 0, 1, '2024-05-07', 1, 5, '501247', false), - (88714, '2024-05-10 23:12:27.476582+00', '0xce177cf98518996767abb3c79118572816828ba6', 0, 0, 1, '2024-02-09', 12, 18, '286477', false), - (90035, '2024-05-10 23:12:31.680702+00', '0x66016b95a53b198dcee8ecb91b13cdfbcbf0f9d3', 0, 0, 1, '2024-05-08', 1, 1, '363917', false), - (90678, '2024-05-10 23:12:33.484604+00', '0xca543e72e8b2e01fcb82931a0c973ded33bebb4d', 0, 0, 1, '2024-04-25', 1, 5, '19117', false), - (93309, '2024-05-10 23:12:40.818914+00', '0x7251c7c5ce642a9a7c81ff48463948cf13016906', 0, 0, 1, '2024-02-04', 1, 1, '8975', false), - (93330, '2024-05-10 23:12:40.838965+00', '0xdfbd7d042be7c7d0fc16b40d0e160999f16d0078', 0, 0, 1, '2024-02-04', 1, 1, '236479', false), - (93368, '2024-05-10 23:12:40.962245+00', '0xfbeb914c3c9b7a193c92de130a18716097478332', 0, 0, 1, '2024-02-01', 1, 1, '251981', false), - (93434, '2024-05-10 23:12:41.099679+00', '0x1e843e199fa59a5a7faca89ebd8e69ba3c9cef22', 0, 0, 1, '2024-01-30', 1, 2, '236116', false), - (93507, '2024-05-10 23:12:41.342709+00', '0xefbc53e0afdc9f649bc1ab692461df57e70a560f', 0, 0, 1, '2024-01-07', 1, 3, '9833', false), - (93630, '2024-05-10 23:12:41.68988+00', '0x89b7e599630f11fef1a03d5b99500e0c42c617ca', 0, 0, 1, '2023-12-21', 1, 3, '14700', false), - (89964, '2024-05-10 23:12:31.45861+00', '0xa331a2847bc04dc6bd60793c1c76d2324fb5a30b', 0, 0, 1, '2023-11-27', 4, 6, '195942', false), - (93200, '2024-05-10 23:12:40.459409+00', '0x69ab37852d06bb0c20a484b0fab46b1169a4011e', 0, 0, 1, '2024-02-06', 1, 0, '236914', false), - (93213, '2024-05-10 23:12:40.544438+00', '0x104315b15b02ca7f5de90137046ca0754011e70b', 0, 0, 1, '2024-02-06', 1, 2, '235994', false), - (93233, '2024-05-10 23:12:40.561406+00', '0x8152c059df7b9c24f459cf597382b0910a4629bd', 0, 0, 1, '2024-02-06', 1, 1, '237375', false), - (93249, '2024-05-10 23:12:40.576357+00', '0x03d52299bd0075426597983d2d3726ee19b543d3', 0, 0, 1, '2024-02-06', 1, 0, '304520', false), - (93307, '2024-05-10 23:12:40.815763+00', '0x7d71ef04fea841a832d22ac1308cf9dd3ee52ec2', 0, 0, 1, '2024-02-04', 1, 0, '18289', false), - (93285, '2024-05-10 23:12:40.707243+00', '0x6f5ccd3e078ba48291dfb491cce18f348f6f5c00', 0, 0, 1, '2024-01-27', 2, 7, '13737', false), - (93483, '2024-05-10 23:12:41.219903+00', '0x6dda6e7ed0a718a0a88e78adf049f200f102560e', 0, 0, 1, '2024-01-11', 1, 0, '209252', false), - (93581, '2024-05-10 23:12:41.547148+00', '0xa5b643db9766c1804e19dc4c491465e581f7e914', 0, 0, 1, '2023-12-22', 1, 0, '196431', false), - (93634, '2024-05-10 23:12:41.688258+00', '0xf85d965e9fd4607b000110253214f49231f0031a', 0, 0, 1, '2023-12-21', 1, 1, '19324', false), - (75009, '2024-05-10 23:11:47.400464+00', '0x16d2f0195a87f0e525a1a196f8e41b49ba2e4ca9', 0, 0, 1, '2024-05-06', 2, 0, '305724', false), - (85063, '2024-05-10 23:12:17.173475+00', '0xb4e434361cf68c0c8e651664296947158978d8c2', 0, 0, 1, '2024-05-05', 4, 16, '513515', false), - (82670, '2024-05-10 23:12:09.639747+00', '0xfae69f3ba41a4b7bce0f8b993768de6b0f304b2e', 0, 0, 1, '2024-05-06', 5, 25, '439362', false), - (75754, '2024-05-10 23:11:49.254114+00', '0xb12da7c53bca57522d2d6dcc5d4b5397c70f9564', 0, 0, 1, '2024-04-12', 7, 35, '441415', false), - (82083, '2024-05-10 23:12:07.940578+00', '0xeefbadcb92236629a35150703dafe816cfdb077e', 0, 0, 1, '2024-05-07', 8, 38, '429240', false), - (94319, '2024-05-12 06:00:32.329712+00', '0x9308761c202953aec6af5929a5eae841ec0e2f60', 0, 0, 1, '2024-05-11', 1, 3, '410423', false), - (93907, '2024-05-11 06:00:25.272372+00', '0x745a23e330cc9a83a1b27fd92be6399c74ff2be8', 0, 0, 1, '2024-05-11', 1, 0, '402746', false), - (83753, '2024-05-10 23:12:13.136636+00', '0x5f18756cb79d7a6dd8326aeec8add352a62e75ef', 0, 0, 1, '2024-05-08', 6, 30, '500539', false), - (91710, '2024-05-10 23:12:36.480865+00', '0xb13a55d8512aec4bf7b15067d733c4c3c68f2439', 0, 0, 1, '2024-03-23', 1, 2, '4840', false), - (90523, '2024-05-10 23:12:33.077204+00', '0x00bdf8a5e236dd8cbdad9cb1e46a7cff27ef294a', 0, 0, 1, '2024-05-01', 1, 4, '386000', false), - (97502, '2024-05-16 06:00:38.503585+00', '0x97a610830c98cfdcb961c1a7bae4775cbf449e43', 0, 0, 1, '2024-05-15', 1, 5, '486175', false), - (90263, '2024-05-10 23:12:32.388921+00', '0x34cbdba195141f1bfcb4ba184de6c1a2bca18b5c', 0, 0, 1, '2023-11-17', 8, 8, '5124', false), - (92436, '2024-05-10 23:12:38.381528+00', '0xa49caa841768ec5098eaf43d5ff4b5e918a5e5ec', 0, 0, 1, '2024-02-13', 1, 2, '189607', false), - (92271, '2024-05-10 23:12:37.89523+00', '0x3fc4b1240abfec14110f60a38e1f5ee784d85171', 0, 0, 1, '2024-02-22', 1, 0, '243014', false), - (91154, '2024-05-10 23:12:34.793761+00', '0x6854fffa71a4ae49df700d087d377a297c595386', 0, 0, 1, '2024-03-11', 2, 5, '14589', false), - (88633, '2024-05-10 23:12:27.335118+00', '0x9f36a6bb398118bdcd5b1bc3343d8feb6d7d02b9', 2239, 2239, 1, '2024-04-25', 2, 2, '11550', true), - (85613, '2024-05-10 23:12:18.779939+00', '0xe978bdbc3347feb6ed10c9845bbdc298604f80ca', 1878, 1878, 1, '2024-05-07', 1, 5, '539', true), - (85143, '2024-05-10 23:12:17.459158+00', '0x56c09caf7a77d5d254dae3438bb843a1ffd06aa2', 23398, 23398, 1, '2024-03-02', 25, 59, '6622', true), - (82978, '2024-05-10 23:12:10.4677+00', '0x1a1c37c145a1eab58c43f003ebb55c18083b5987', 27663, 27663, 1, '2023-04-28', 21, 35, '1657', true), - (96003, '2024-05-14 06:00:32.715053+00', '0x4e690a55d31a4426eca7d7c95ce651b930dc82bd', 0, 0, 1, '2024-05-13', 1, 5, '464056', false), - (96338, '2024-05-14 06:00:35.041531+00', '0x7f23f1c4be15fa3adabc821de9ef70efa5503f24', 0, 0, 1, '2024-05-13', 1, 3, '401886', false), - (96609, '2024-05-15 06:00:34.6267+00', '0x846056aeb0b20d6858ac36332a3c4fe1e47d1b2f', 0, 0, 1, '2024-05-15', 1, 3, '500998', false), - (91001, '2024-05-10 23:12:34.414771+00', '0x4f668b008d3ab616ca463137e03dffc34c1552ee', 0, 0, 1, '2024-03-09', 3, 0, '347140', false), - (93055, '2024-05-10 23:12:40.059211+00', '0xa6e1a7dd841d7f1afbff86c682a91defbfdab2b7', 0, 0, 1, '2024-02-06', 1, 4, '290228', false), - (81730, '2024-05-10 23:12:06.766038+00', '0x3ea65e7f8ddffe83a2a8a6ee59595d84169cb449', 0, 0, 1, '2024-05-06', 14, 61, '466532', false), - (82262, '2024-05-10 23:12:08.422198+00', '0x4e52fae2b95de22d3c82112a5d5aaedc92b1b5b6', 0, 0, 1, '2024-05-05', 42, 196, '500723', false), - (94081, '2024-05-11 06:00:26.464986+00', '0xafe3d4636ebd0efe39ea646be9188a6a84f5b041', 0, 0, 1, '2024-05-11', 16, 77, '445033', false), - (86685, '2024-05-10 23:12:22.188931+00', '0xc0d8b12f63e032e66693593549f571dec6f21267', 0, 0, 1, '2024-04-30', 6, 6, '461708', false), - (94072, '2024-05-11 06:00:26.441761+00', '0x9bb3170d80822c815e952a3aab5ab6b2a3b9707b', 0, 0, 1, '2024-05-11', 17, 69, '401497', false), - (97509, '2024-05-16 06:00:38.628196+00', '0xbc4ed96cdd7fa0e7ddbc5b2a9633fa52ce2d66de', 0, 0, 1, '2024-05-15', 2, 1, '301354', false), - (91634, '2024-05-10 23:12:36.180725+00', '0x6e7326ea8746f57c1c1d4e5862ca46c835174c68', 0, 0, 1, '2024-03-27', 1, 0, '16520', false), - (93831, '2024-05-10 23:12:42.312455+00', '0x411d209e4874e00dd550de43190224515b28fafe', 0, 0, 1, '2023-08-15', 1, 2, '13755', false), - (92954, '2024-05-10 23:12:39.767171+00', '0xff12da39308dc2cf0b89a2ec4516372d74580d39', 0, 0, 1, '2024-02-06', 1, 1, '275770', false), - (75194, '2024-05-10 23:11:47.827574+00', '0x8f3668aaa99937506811d9e085cc26e51c363b73', 0, 0, 1, '2024-05-05', 1, 0, '510817', false), - (75684, '2024-05-10 23:11:49.02722+00', '0x6a2f6c4c10c8af0f0eee8eea8b7859c2a6000902', 0, 0, 1, '2024-04-20', 2, 3, '474644', false), - (75085, '2024-05-10 23:11:47.56273+00', '0xed448471bb1eb65a911adc18e9f3737f6fafd2e6', 0, 0, 1, '2024-05-05', 5, 23, '500216', false), - (96530, '2024-05-15 06:00:33.873248+00', '0x4fd87fa2a70c2141876c3d9d29ab5ab99e0d6be2', 0, 0, 1, '2024-05-14', 1, 5, '494737', false), - (73890, '2024-05-10 23:11:43.352726+00', '0x7edf9d479c36e0a64d5685db352db564807362ff', 0, 0, 1, '2024-05-05', 26, 60, '504895', false), - (95632, '2024-05-13 06:00:36.799949+00', '0xc091b305b1857d2482aff07f7628596405923e45', 0, 0, 1, '2024-05-12', 2, 10, '377622', false), - (96823, '2024-05-15 06:00:36.095033+00', '0x5efd810e503d118d8d05c4da5e672c86000e635d', 0, 0, 1, '2024-05-14', 1, 5, '383580', false), - (94507, '2024-05-12 06:00:33.820473+00', '0x8beb2864581d181b2497524eab7091d5b4afc213', 0, 0, 1, '2024-05-11', 4, 20, '352268', false), - (96701, '2024-05-15 06:00:35.152705+00', '0xf8b5213381782d5b8e3af20c83eb1d958746dc92', 0, 0, 1, '2024-05-14', 1, 1, '390392', false), - (96720, '2024-05-15 06:00:35.361261+00', '0x5b1038407ecc6daa75c9c893b303bbc813638864', 0, 0, 1, '2024-05-14', 2, 9, '518109', false), - (81449, '2024-05-10 23:12:06.03943+00', '0x22532f0b269ccf35df11fcad29b332e6316554b2', 0, 0, 1, '2024-05-06', 57, 187, '354756', false), - (96893, '2024-05-15 06:00:36.461124+00', '0x704d14cbb6917cabec9a1545ab3474755cf987bb', 0, 0, 1, '2024-05-15', 1, 4, '427830', false), - (96497, '2024-05-15 06:00:33.563105+00', '0xa658cdbd05afb4dcab861ca9a15d3f836bef0056', 0, 0, 1, '2024-05-14', 1, 1, '379948', false), - (96506, '2024-05-15 06:00:33.579143+00', '0xb2d768011c9c599c5e90ce5d252c4164861f2153', 0, 0, 1, '2024-05-14', 1, 1, '414984', false), - (89971, '2024-05-10 23:12:31.540748+00', '0x54c3283577c40eaa637d35106b7c5c6b387c5ab0', 0, 0, 1, '2024-05-04', 7, 7, '189272', false), - (91194, '2024-05-10 23:12:34.917769+00', '0xf1a9b9a5521f69f4b925202ae0300ea72e63b3f0', 0, 0, 1, '2024-04-08', 2, 3, '457843', false), - (95056, '2024-05-13 06:00:31.87915+00', '0x2a4677c01b9665b33e72227d15846eb6d38b2f24', 0, 0, 1, '2024-05-12', 2, 7, '506857', false), - (74048, '2024-05-10 23:11:44.483221+00', '0xc749dc90d596e5febc3f5c191009779ee44e77d7', 0, 0, 1, '2024-05-08', 10, 44, '498114', false), - (92193, '2024-05-10 23:12:37.737978+00', '0xf70fa1b8443c620ca7d43a9d17f4bde8b09031cc', 0, 0, 1, '2023-08-25', 13, 7, '7057', false), - (76467, '2024-05-10 23:11:51.321523+00', '0x6ef90fa7a9d396451b758539e249ecc2f5b8c7a8', 0, 0, 1, '2024-04-16', 2, 4, '429621', false), - (74632, '2024-05-10 23:11:46.29873+00', '0xf83d1913ed56045a9ba28c863be6457f60ac747c', 0, 0, 1, '2024-05-05', 4, 14, '282463', false), - (75187, '2024-05-10 23:11:47.819114+00', '0x523c95b1a42427a222452b5cdfad48a608779996', 0, 0, 1, '2024-04-26', 2, 0, '501210', false), - (76778, '2024-05-10 23:11:52.146499+00', '0xc6bf97b9543361cfb0abb6cecd3e15f6d82f96a8', 0, 0, 1, '2024-02-10', 5, 6, '283364', false), - (75220, '2024-05-10 23:11:47.902848+00', '0xfb841a41154b050334778df8d43c9b97adb848b0', 0, 0, 1, '2024-05-04', 2, 0, '379015', false), - (79060, '2024-05-10 23:11:58.708279+00', '0x469f7fab9343857e0ace8be9a5169ac24b24e396', 0, 0, 1, '2024-02-22', 1, 4, '267340', false), - (80302, '2024-05-10 23:12:02.638903+00', '0x512ff58a791b69f5935990369338683932b469d1', 0, 0, 1, '2023-12-24', 1, 3, '10218', false), - (80943, '2024-05-10 23:12:04.348862+00', '0x64e8b17a8c5c439156584112c66cf5619c4c6d70', 0, 0, 1, '2023-05-31', 3, 1, '10783', false), - (79930, '2024-05-10 23:12:01.589982+00', '0x0a263623d75eaaae19c82a29f00ae97b9ad6e390', 0, 0, 1, '2024-02-04', 1, 1, '270669', false), - (79561, '2024-05-10 23:12:00.266525+00', '0x9bc66deb421faf05041ee69f8db194f6a34bdc37', 0, 0, 1, '2024-02-11', 1, 0, '336852', false), - (79651, '2024-05-10 23:12:00.550278+00', '0x71a07ebb65242d098c0a6992b525501f4981311d', 0, 0, 1, '2024-02-08', 1, 1, '8960', false), - (81710, '2024-05-10 23:12:06.746541+00', '0xad6ea928fdd73a4766fbe6a07098038ba8c37bcf', 0, 0, 1, '2024-04-14', 4, 20, '296887', false), - (96334, '2024-05-14 06:00:34.920326+00', '0xca4268e26bf8e772bd48033c430c972ddfd62830', 0, 0, 1, '2024-05-14', 1, 0, '459160', false), - (96558, '2024-05-15 06:00:34.052593+00', '0xbf994c21310c8369a24fb00e568639a9068fd2ca', 0, 0, 1, '2024-05-14', 1, 5, '508652', false), - (96671, '2024-05-15 06:00:35.00325+00', '0x967bf852e297120ed5e93efd290a8115465137f1', 0, 0, 1, '2024-05-14', 1, 5, '447318', false), - (96909, '2024-05-15 06:00:36.748157+00', '0x16753069dde93cae53f49595855656308d843ccb', 0, 0, 1, '2024-05-14', 2, 0, '251482', false), - (89589, '2024-05-10 23:12:30.360309+00', '0x9e0e9d25a5ed9bc773f91691f0b45599255257b1', 3542, 3542, 1, '2023-11-14', 2, 1, '17838', true), - (89858, '2024-05-10 23:12:31.02827+00', '0xee96703614ea707b0b99ecb55da74c04ff70f2ed', 2044, 2044, 1, '2023-07-05', 1, 0, '5583', true), - (90324, '2024-05-10 23:12:32.537361+00', '0xb152df6b3646d04a3232821778277049ae21bb99', 2539, 2539, 1, '2024-05-05', 2, 9, '191780', true), - (90183, '2024-05-10 23:12:32.15735+00', '0xa251520154ca342f0b1d702bf5a56f78c982405b', 1535, 1535, 1, '2024-05-06', 1, 3, '1136', true), - (88042, '2024-05-10 23:12:25.809345+00', '0x6eefbf0a876442d3b98664efcf3c4b3dab56a13a', 4795, 4795, 1, '2024-05-05', 7, 10, '287750', true), - (89061, '2024-05-10 23:12:28.56685+00', '0x0de290f9717764641b9694c246338a477cff9543', 2497, 2497, 1, '2024-03-27', 1, 3, '2211', true), - (90606, '2024-05-10 23:12:33.244554+00', '0xf005bc919b57dc1a95070a614c0d51a2897d11ff', 2298, 2298, 1, '2024-04-30', 1, 5, '5860', true), - (88585, '2024-05-10 23:12:27.197389+00', '0x6ae5107e26548d58c321f4bf2f77740d53f797fc', 2261, 2261, 1, '2024-04-28', 2, 3, '390685', true), - (88708, '2024-05-10 23:12:27.467655+00', '0x33fc2be5563e3c02a3e127f01bbd71db472aa613', 39238, 39238, 1, '2023-04-23', 32, 61, '4904', true), - (81785, '2024-05-10 23:12:06.900918+00', '0xd102216440d8e438b9658248e5bed044c08f40d5', 0, 0, 1, '2024-05-08', 5, 25, '367367', false), - (80686, '2024-05-10 23:12:03.680896+00', '0xab769309ebceeda984e666ab727b36211ba02a8a', 0, 0, 1, '2023-10-28', 1, 1, '5998', false), - (80708, '2024-05-10 23:12:03.700505+00', '0x9293a7699a30cf64f8593e689ecd1b931753b627', 0, 0, 1, '2023-10-21', 1, 5, '3605', false), - (81846, '2024-05-10 23:12:07.026779+00', '0xeb0157f5f4ac2293561d65fe416dad9550f86705', 0, 0, 1, '2024-05-06', 5, 25, '507940', false), - (82015, '2024-05-10 23:12:07.744024+00', '0x10eb5ebe80d30dbc765ad86ea364f3be03cc07c0', 0, 0, 1, '2024-05-09', 5, 25, '484727', false), - (81609, '2024-05-10 23:12:06.501476+00', '0x5532a9c585f6aa27a6ee3621693b48537e0d571a', 0, 0, 1, '2024-05-05', 12, 57, '405926', false), - (95614, '2024-05-13 06:00:36.720511+00', '0x9181fa939227eeb42029a127685dd39b941408eb', 0, 0, 1, '2024-05-12', 3, 13, '503273', false), - (95583, '2024-05-13 06:00:36.50616+00', '0xd82df8edb6625ed6223e0f52c040d5443a5fbee0', 0, 0, 1, '2024-05-12', 3, 15, '378506', false), - (96351, '2024-05-14 06:00:35.04405+00', '0x0771c7e2a11cbfe3613acb97d79e9ae69416a571', 0, 0, 1, '2024-05-13', 1, 0, '497257', false), - (95014, '2024-05-13 06:00:31.522686+00', '0x85d0f3942356ac597e9b55ecdb5246820e26ec6a', 0, 0, 1, '2024-05-12', 1, 5, '383049', false), - (85013, '2024-05-10 23:12:17.014184+00', '0xe541c967af5f69f509abc21e3dc72e46a58643c8', 0, 0, 1, '2024-05-05', 3, 4, '509953', false), - (85594, '2024-05-10 23:12:18.761364+00', '0x1fba9dff384ce1158ac4a7e4c53b77b585f29d3e', 0, 0, 1, '2024-05-05', 5, 25, '424774', false), - (75047, '2024-05-10 23:11:47.459954+00', '0x1ce3d7ff0cc17c5c4b543b3b2bf433960aded33d', 0, 0, 1, '2024-04-14', 3, 1, '226241', false), - (95115, '2024-05-13 06:00:32.267809+00', '0x31fe304cd9d91eb08ee9f87e21a58794f5e15a0f', 0, 0, 1, '2024-05-13', 5, 19, '288013', false), - (96851, '2024-05-15 06:00:36.246818+00', '0x4b4f0e63f673cb60a0f3acd4a105b72602968fe5', 0, 0, 1, '2024-05-14', 3, 15, '515688', false), - (81458, '2024-05-10 23:12:06.054533+00', '0x192cc797ee37a5d407ae9fa71cdd86101f7bbab1', 0, 0, 1, '2024-05-06', 16, 80, '500619', false), - (89963, '2024-05-10 23:12:31.456309+00', '0xb3aee9e08c333d59406e56959cd63727cb5aae5f', 0, 0, 1, '2024-05-10', 1, 1, '478148', false), - (89945, '2024-05-10 23:12:31.438956+00', '0xe48ac58e79acd9c722fb52e5452c839369b53299', 0, 0, 1, '2024-05-10', 1, 0, '444261', false), - (88530, '2024-05-10 23:12:27.062762+00', '0x0912d9701109f8ee3f948c60d6ad491c351227dd', 0, 0, 1, '2024-05-02', 2, 0, '497851', false), - (88026, '2024-05-10 23:12:25.697999+00', '0xec0279a732c2d621ebb49a8a562596eadc533247', 0, 0, 1, '2024-05-05', 1, 5, '406215', false), - (87928, '2024-05-10 23:12:25.506383+00', '0x8bfd4114d4a266f696ad211f57fdfbacf7b3f513', 0, 0, 1, '2024-05-04', 2, 1, '236958', false), - (84059, '2024-05-10 23:12:13.951083+00', '0x511021afa437a74d73a4ea8f2a6e7864c41f233a', 0, 0, 1, '2024-05-08', 1, 1, '399681', false), - (82177, '2024-05-10 23:12:08.177035+00', '0xd3f7cf810dcc530a07db0a767d71f49d31978b78', 0, 0, 1, '2024-05-05', 11, 43, '500272', false), - (88186, '2024-05-10 23:12:26.184768+00', '0x976f7f5b7d0698128a7eaba472a82da175fff52c', 0, 0, 1, '2024-05-05', 1, 0, '445770', false), - (84131, '2024-05-10 23:12:14.129902+00', '0x6e565b70baf4cc4f865151fa4a07cdff0151ae1e', 0, 0, 1, '2024-05-07', 1, 0, '246082', false), - (86533, '2024-05-10 23:12:21.782167+00', '0xd80d923a92d7f5fe96c184da3ad04955bb099961', 0, 0, 1, '2024-05-06', 1, 5, '292951', false), - (89136, '2024-05-10 23:12:28.731814+00', '0x11142e97271d26febef714a117fea7d279f77378', 0, 0, 1, '2024-03-14', 1, 1, '308101', false), - (82170, '2024-05-10 23:12:08.169761+00', '0xa06321e7a83851d1af810eb3203db8a2d72fd102', 0, 0, 1, '2024-05-08', 3, 8, '345257', false), - (87551, '2024-05-10 23:12:24.519739+00', '0xb0006e914b778e35946a2dc05954785e8d90c2a2', 0, 0, 1, '2024-05-05', 2, 2, '403043', false), - (85367, '2024-05-10 23:12:18.022452+00', '0x6a28d159d8fd5f164da44082851abc23ba8a922f', 0, 0, 1, '2024-05-05', 6, 27, '501220', false), - (84794, '2024-05-10 23:12:16.29104+00', '0x174315412c747991d315d24db8278cfc287396e3', 0, 0, 1, '2024-05-05', 6, 30, '396394', false), - (87787, '2024-05-10 23:12:25.135688+00', '0xf2e91a77746d3197ce4b8d35e086d2174c4ffd9e', 0, 0, 1, '2024-05-05', 1, 1, '348007', false), - (88304, '2024-05-10 23:12:26.45717+00', '0xca9fee553726eda29118cc5a539ee7c8791e3d57', 0, 0, 1, '2024-05-05', 1, 0, '256886', false), - (92896, '2024-05-10 23:12:39.632615+00', '0x139dc8595d3c55bf0cf9a769fb0adb1cbc232cb5', 0, 0, 1, '2024-02-06', 1, 0, '296024', false), - (87818, '2024-05-10 23:12:25.171516+00', '0xb0b4401de63f4d71c715dfb21362ca17588bc6df', 0, 0, 1, '2024-05-05', 3, 15, '499542', false), - (93116, '2024-05-10 23:12:40.273384+00', '0xf0ea9ce6d0464592a938835bc53b6d4e54a4b59d', 0, 0, 1, '2024-02-06', 1, 1, '237221', false), - (96790, '2024-05-15 06:00:35.736264+00', '0xc51f27585be8cedc0b72db7889b3b72bba113f67', 0, 0, 1, '2024-05-14', 1, 5, '365892', false), - (82151, '2024-05-10 23:12:08.14896+00', '0x9969f990668f1a19f2ee467ec096a4efb64a6712', 0, 0, 1, '2024-05-09', 2, 10, '510192', false), - (93134, '2024-05-10 23:12:40.292903+00', '0xe9c1b53b988f791cefe70c9bf57c5866f4e13f56', 0, 0, 1, '2024-02-06', 1, 3, '297667', false), - (93170, '2024-05-10 23:12:40.430356+00', '0xd87ac5b91ca6202d72edbdfa084b24f0f429dc4e', 0, 0, 1, '2024-02-06', 1, 1, '272479', false), - (74058, '2024-05-10 23:11:44.493285+00', '0x7200b71fc2867dc0d20ca436192d63843f7d6c6a', 0, 0, 1, '2024-05-07', 28, 108, '403379', false), - (83357, '2024-05-10 23:12:11.776523+00', '0x2cb5ae51861a4a6e8568b527cafc3891317ac94d', 39633, 39633, 1, '2023-04-25', 32, 102, '169', true), - (91240, '2024-05-10 23:12:35.043977+00', '0x0c9e725902f2eeec063c16d253f38684e3192001', 2982, 2982, 1, '2024-04-07', 1, 5, '268290', true), - (90111, '2024-05-10 23:12:31.84565+00', '0x2bbcac12706b47428664d553af33caf33684ef31', 4006, 4006, 1, '2024-04-20', 3, 12, '838', true), - (88190, '2024-05-10 23:12:26.195543+00', '0x56ebd346d5013a531105aaeeb574b31f003e11dd', 4703, 4703, 1, '2024-04-16', 4, 12, '384868', true), - (88931, '2024-05-10 23:12:28.089441+00', '0x897fed9144674e36e49a73c5d4b714183ff5a70e', 3574, 3574, 1, '2024-03-23', 3, 0, '340986', true), - (88765, '2024-05-10 23:12:27.58978+00', '0x2b1487c4f061879ec8776bc9bec806a744f44b95', 6464, 6464, 1, '2024-03-22', 6, 1, '390438', true), - (89128, '2024-05-10 23:12:28.732444+00', '0x2d240c5d58a8445e99dadf3fd41a492dfeaf7e4c', 2650, 2650, 1, '2024-03-13', 1, 3, '15850', true), - (91754, '2024-05-10 23:12:36.530237+00', '0xe0bb3bfb8750b45fdaf8df7976c296722af370a7', 4336, 4336, 1, '2024-03-17', 2, 10, '341438', true), - (93211, '2024-05-10 23:12:40.533318+00', '0xa639ba847ed56a8f7a461b83f10ea674decd7b73', 0, 0, 1, '2024-02-06', 1, 5, '242813', false), - (93288, '2024-05-10 23:12:40.712295+00', '0x46319a872fba4bf5b4cc3210b054e1a71fd76ef2', 0, 0, 1, '2024-02-06', 1, 1, '254861', false), - (93308, '2024-05-10 23:12:40.814702+00', '0xe994924091a7034ce33fbcdb082836165f5596d4', 0, 0, 1, '2024-02-04', 3, 6, '253504', false), - (93347, '2024-05-10 23:12:40.858948+00', '0xcfc84404bb688117c3970842152e68863d388e83', 0, 0, 1, '2024-02-04', 1, 0, '214665', false), - (93363, '2024-05-10 23:12:40.958492+00', '0x140424f1096a594c6336e0030163e289719a5a74', 0, 0, 1, '2024-02-02', 1, 1, '254221', false), - (93378, '2024-05-10 23:12:40.970131+00', '0x9d1ace163328da30ac26435f44dec6f7652e9c40', 0, 0, 1, '2024-02-02', 1, 1, '252391', false), - (93550, '2024-05-10 23:12:41.509911+00', '0x8330a84d3c16a55302f921c36979b1067418053a', 0, 0, 1, '2023-12-26', 1, 5, '13447', false), - (92933, '2024-05-10 23:12:39.768024+00', '0x1f9ae500d4b91fe4eaada6e2610a8f416235379c', 0, 0, 1, '2024-02-06', 1, 0, '291593', false), - (89950, '2024-05-10 23:12:31.431477+00', '0x35b0c686c6977e765e8eb15a6c5fc76bfef6ab9f', 0, 0, 1, '2024-04-26', 3, 6, '425961', false), - (86435, '2024-05-10 23:12:21.550483+00', '0x62f92b9f94919196cab5a929f14ffd89cabbdc13', 0, 0, 1, '2024-05-06', 1, 5, '358441', false), - (92522, '2024-05-10 23:12:38.634213+00', '0xc4de7ef69ace4019995add47162e42e5737581dc', 0, 0, 1, '2024-02-09', 1, 0, '269206', false), - (87610, '2024-05-10 23:12:24.655632+00', '0xc6a4d581bebc5b1f9588f558f83883115ef4a1c9', 0, 0, 1, '2024-05-05', 1, 2, '404215', false), - (76058, '2024-05-10 23:11:50.111364+00', '0x683f1f19d2b5518c1bbe58be027e6702102f9a42', 0, 0, 1, '2024-04-19', 2, 2, '294188', false), - (90258, '2024-05-10 23:12:32.319602+00', '0x12f8026072fa10a5796deffe7d54b9ea42ff9ccd', 0, 0, 1, '2024-04-10', 4, 10, '310815', false), - (81745, '2024-05-10 23:12:06.785243+00', '0x6be5a4dfb256eaee4938952be5e3481e5853312b', 0, 0, 1, '2024-05-06', 5, 12, '505949', false), - (83749, '2024-05-10 23:12:13.132603+00', '0x6006b05b3e8cc9c73130c2a55f23a2320014721f', 0, 0, 1, '2024-05-07', 4, 10, '337385', false), - (83118, '2024-05-10 23:12:10.967735+00', '0xb97caf52a752022bd25515d1904ceedd7fb21730', 0, 0, 1, '2024-05-08', 2, 10, '463380', false), - (93338, '2024-05-10 23:12:40.851285+00', '0xf378bc06e8a1cc7c26bb27e6f81b84802198f4ac', 0, 0, 1, '2024-02-04', 1, 2, '189113', false), - (92664, '2024-05-10 23:12:39.070567+00', '0xc73d81e9112ea01cc2eec4191e8a53eab974cbc4', 0, 0, 1, '2024-02-06', 1, 2, '242672', false), - (91678, '2024-05-10 23:12:36.385473+00', '0xa7f053d0a4df46577428b84fb3a59e98775ee698', 0, 0, 1, '2024-02-29', 16, 5, '310241', false), - (92640, '2024-05-10 23:12:38.964863+00', '0xc0b4841e4a09c4462570ffecd32b22f48c47fa47', 0, 0, 1, '2024-02-06', 1, 2, '245476', false), - (92684, '2024-05-10 23:12:39.09825+00', '0xf9aea837f19f82d9b359897dac1b8b1f7cfea536', 0, 0, 1, '2024-02-06', 1, 5, '237962', false), - (92779, '2024-05-10 23:12:39.356648+00', '0x0b4313b8cd6843e861c2348a3b4d19a23a412651', 0, 0, 1, '2024-02-06', 1, 2, '291609', false), - (92802, '2024-05-10 23:12:39.373179+00', '0x117e95408ed74042e07d8f80852eed450d67fb58', 0, 0, 1, '2024-02-06', 1, 2, '255940', false), - (92825, '2024-05-10 23:12:39.477695+00', '0x7c42396c00d00935380fb6a55081f998e714997f', 0, 0, 1, '2024-02-06', 1, 2, '252701', false), - (93664, '2024-05-10 23:12:41.841085+00', '0x0d6e94d085a597f316be1833649e05a45103e873', 0, 0, 1, '2023-12-02', 1, 5, '195395', false), - (91210, '2024-05-10 23:12:34.939489+00', '0x4a5b75e346951ffbeb263455510df8fc5811fe79', 0, 0, 1, '2024-04-03', 2, 0, '221508', false), - (93122, '2024-05-10 23:12:40.28487+00', '0xd6d05b3e98f8337a6b8a0128a0d817f35f5e32c1', 0, 0, 1, '2024-02-06', 1, 1, '263037', false), - (92865, '2024-05-10 23:12:39.602909+00', '0x8fd30b959b5c0a19b598cf91f69218a7b3b43e28', 0, 0, 1, '2024-02-06', 2, 5, '277207', false), - (92888, '2024-05-10 23:12:39.624211+00', '0xf29369b21ca2f5f9b8183b93d18b7aaa78966bb1', 0, 0, 1, '2024-02-06', 1, 5, '259292', false), - (91583, '2024-05-10 23:12:36.043801+00', '0x595b1d9965121570374c8588804a17012917c423', 0, 0, 1, '2024-03-30', 1, 0, '322184', false), - (91848, '2024-05-10 23:12:36.785392+00', '0x5cd28d52f36f8fb749d492ca22955c7357c314de', 0, 0, 1, '2024-03-18', 1, 0, '394790', false), - (90923, '2024-05-10 23:12:34.152562+00', '0x0c9a9e3ba3d1243f675ab237fe8fdf438b70a98f', 0, 0, 1, '2024-03-29', 2, 6, '235223', false), - (92976, '2024-05-10 23:12:39.8933+00', '0x163aae5754e098cc3ae328efa1bd9615c0ae16d2', 0, 0, 1, '2024-02-06', 2, 3, '276021', false), - (89068, '2024-05-10 23:12:28.582114+00', '0x518201899e316bf98c957c73e1326b77672fe52b', 5063, 5063, 1, '2024-03-21', 4, 6, '232774', true), - (90843, '2024-05-10 23:12:33.924157+00', '0x089036a0835c6cf82e7fc42e9e95dfe05e110c81', 2697, 2697, 1, '2024-04-19', 1, 5, '211769', true), - (89215, '2024-05-10 23:12:29.036635+00', '0xa3d0233b9433162ea28e633a3adec194fa5a9f90', 3174, 3174, 1, '2024-02-26', 2, 2, '346395', true), - (89430, '2024-05-10 23:12:29.844457+00', '0xb584fdd98496fa7c49e57de700829d1035d4cda8', 2085, 2085, 1, '2024-02-06', 1, 1, '20390', true), - (88762, '2024-05-10 23:12:27.599385+00', '0xe3f3bc22382e0edfdedacb5e4a89a5418432fd07', 3502, 3502, 1, '2024-04-17', 3, 5, '5328', true), - (91862, '2024-05-10 23:12:36.866112+00', '0x5487fbb38af908185f01e43b8b0703ace2317314', 3835, 3835, 1, '2024-03-17', 2, 7, '16795', true), - (89559, '2024-05-10 23:12:30.252179+00', '0x91031dcfdea024b4d51e775486111d2b2a715871', 5303, 5303, 1, '2023-12-16', 2, 10, '2', true), - (92362, '2024-05-10 23:12:38.154712+00', '0xb5f1fed7e87af7544c565ecdc3db40faf43fdc78', 1606, 1606, 1, '2024-02-15', 1, 0, '4271', true), - (91656, '2024-05-10 23:12:36.364496+00', '0x4005470902ba4113d8d92e6ab4413c6142dc7150', 1404, 1404, 1, '2024-03-26', 1, 0, '200375', true), - (73849, '2024-05-10 23:11:43.119472+00', '0xc8dc96a40fe5ec86478598955c6ae6eec43baa46', 0, 0, 1, '2024-05-10', 2, 10, '475607', false), - (93081, '2024-05-10 23:12:40.155813+00', '0xb8410c4b10cb3ec99eca5521bf0189cfd171fe5e', 0, 0, 1, '2024-02-06', 1, 5, '275704', false), - (93095, '2024-05-10 23:12:40.178599+00', '0xe0b536a468496f9e9590f62e3b97f4a085b30283', 0, 0, 1, '2024-02-06', 1, 0, '21014', false), - (93112, '2024-05-10 23:12:40.271443+00', '0x3de65e375d4cba59fa7de01110f579906582f44e', 0, 0, 1, '2024-02-06', 1, 1, '14572', false), - (93125, '2024-05-10 23:12:40.287373+00', '0x11fa210ea51acc460b8da8c1370a08ea31b64a55', 0, 0, 1, '2024-02-06', 1, 1, '287744', false), - (82013, '2024-05-10 23:12:07.741747+00', '0x79722a9a17b3673b820717e5d872b547fc856377', 0, 0, 1, '2024-05-07', 9, 37, '425481', false), - (81627, '2024-05-10 23:12:06.523968+00', '0xe053c8056131ed122307cbe68084d8b5d223b9f2', 0, 0, 1, '2024-05-06', 12, 60, '397488', false), - (90057, '2024-05-10 23:12:31.703391+00', '0xccf06e6d13577acb0cc37f7b21a2da964d06b583', 0, 0, 1, '2024-04-05', 15, 4, '385897', false), - (84997, '2024-05-10 23:12:16.995044+00', '0xb1c0bd57bc3e19f9c9ba2c9bb9efaf45785b2a1e', 0, 0, 1, '2024-05-06', 5, 24, '505894', false), - (78169, '2024-05-10 23:11:56.192591+00', '0x65b1383bcbe0c156aede436e47930dab472a6946', 0, 0, 1, '2024-03-23', 2, 5, '401822', false), - (79465, '2024-05-10 23:11:59.967833+00', '0x2f5dd0571efaaf7f101a36f3626a3eb10de65a3b', 0, 0, 1, '2024-02-13', 1, 0, '341559', false), - (78548, '2024-05-10 23:11:57.299693+00', '0x4bf907a4c97c239061ebb642ae9c305373ae4791', 0, 0, 1, '2024-03-13', 1, 1, '370263', false), - (79574, '2024-05-10 23:12:00.37097+00', '0x46797eab11aae32e2aa4c5058f71b072cde48dfa', 0, 0, 1, '2024-02-10', 1, 0, '8544', false), - (81325, '2024-05-10 23:12:05.674643+00', '0xa5741729c4eefee1c299676786b6d52beca8c66f', 0, 0, 1, '2023-06-16', 1, 1, '5737', false), - (80475, '2024-05-10 23:12:03.112874+00', '0xb40bd6b07635cf752d6e3976c9a1a1f5c8f4b2db', 0, 0, 1, '2023-12-01', 1, 2, '6220', false), - (76017, '2024-05-10 23:11:49.905051+00', '0x00a77c3b3e9a51b8ec42cfe5844d066696eedead', 0, 0, 1, '2024-02-07', 13, 7, '246653', false), - (79760, '2024-05-10 23:12:00.901849+00', '0x48d470ca98e7374bff10d8dc51f25ccf68bd1b57', 0, 0, 1, '2024-02-07', 1, 2, '235360', false), - (79830, '2024-05-10 23:12:01.049199+00', '0xebda75c5e193bbb82377b77e3c62c0b323240307', 0, 0, 1, '2024-02-05', 1, 0, '6135', false), - (79843, '2024-05-10 23:12:01.063112+00', '0x21c94aba9184da7340f78b94a00b4d5f9724a65f', 0, 0, 1, '2024-02-05', 1, 3, '293785', false), - (80015, '2024-05-10 23:12:01.840211+00', '0x96e1877e833a3297326178625028eab7fd57ff71', 0, 0, 1, '2024-01-29', 1, 1, '234812', false), - (78189, '2024-05-10 23:11:56.296647+00', '0x4fa59b01e759b3916bfc3222cac053db3d17997b', 0, 0, 1, '2024-03-17', 2, 1, '395296', false), - (80673, '2024-05-10 23:12:03.651977+00', '0x9f281c5b04c091096ac468a9388f0ee6b0b8b1f5', 0, 0, 1, '2023-10-27', 1, 1, '152', false), - (80687, '2024-05-10 23:12:03.682447+00', '0xa1e2421a68f0208b75acb0014a69e89b1f7492ea', 0, 0, 1, '2023-10-20', 1, 0, '12481', false), - (80735, '2024-05-10 23:12:03.798051+00', '0xe7279b858193df08bffaf10cae8fa5166941a444', 0, 0, 1, '2023-08-07', 4, 3, '2349', false), - (81005, '2024-05-10 23:12:04.467837+00', '0xf23f9c10d1559885dabee67c59c4554e6152697b', 0, 0, 1, '2023-08-31', 1, 0, '19204', false), - (77815, '2024-05-10 23:11:55.189756+00', '0xa79af4e5823e5e7768506dfc1ad9cd088017846e', 0, 0, 1, '2024-04-03', 1, 1, '422998', false), - (77855, '2024-05-10 23:11:55.353748+00', '0x7adb542be9cc526ea1ce172b4d19baddf7eddb32', 0, 0, 1, '2024-04-03', 1, 0, '189797', false), - (77983, '2024-05-10 23:11:55.760087+00', '0x226f13576f8cc36de54c56adc618db4822205e3a', 0, 0, 1, '2024-04-01', 1, 1, '412202', false), - (78032, '2024-05-10 23:11:55.877901+00', '0x9d4e038941104a4f80c8dfc39a4c604a4eabf161', 0, 0, 1, '2024-03-30', 2, 2, '344366', false), - (79674, '2024-05-10 23:12:00.642648+00', '0xf24137b4886a44d93d846337fc7810243d4ec38a', 0, 0, 1, '2024-02-04', 7, 3, '271289', false), - (81551, '2024-05-10 23:12:06.325433+00', '0x089fb18f28046417e99ef2e34f557a7d9cd71b4e', 0, 0, 1, '2024-05-10', 1, 5, '379730', false), - (81570, '2024-05-10 23:12:06.357577+00', '0xb61ef9fd45b2bf1c6be625b91a4e365d2446d0a2', 0, 0, 1, '2024-05-10', 1, 5, '498571', false), - (77980, '2024-05-10 23:11:55.691258+00', '0x002748db885d4ccfe3c7c92143f0805f4ebeec01', 0, 0, 1, '2024-04-01', 1, 0, '238017', false), - (77664, '2024-05-10 23:11:54.654921+00', '0x97944b9adddd9bf0ee3d633163f7150cef82a332', 0, 0, 1, '2024-03-31', 6, 30, '310271', false), - (79447, '2024-05-10 23:11:59.948668+00', '0xe3ca872f83c14853f43193df9bc0092559ea21be', 0, 0, 1, '2024-02-06', 9, 9, '284458', false), - (79885, '2024-05-10 23:12:01.354777+00', '0xc734abc7a7737de1ca7bf81c4dc8612bf1887b54', 0, 0, 1, '2024-02-04', 1, 0, '6705', false), - (81596, '2024-05-10 23:12:06.40049+00', '0x6def9929f9ea6a7b662bce487f830d6ea6635d74', 0, 0, 1, '2024-05-07', 16, 45, '500896', false), - (83350, '2024-05-10 23:12:11.764729+00', '0x3d84f6b1183f93057fed5f7605dfe67a169ea5a9', 0, 0, 1, '2024-05-04', 5, 25, '423039', false), - (88531, '2024-05-10 23:12:27.066385+00', '0xd75fc168677e3947a699daf2dc16b13d85b08194', 0, 0, 1, '2024-05-03', 1, 4, '506366', false), - (88543, '2024-05-10 23:12:27.080921+00', '0x5db00ad0da2a08547961dd9e5a5ca2ba56558f4c', 0, 0, 1, '2024-04-30', 1, 3, '316147', false), - (91591, '2024-05-10 23:12:36.033984+00', '0xb0ccf43ada6cbaa26dcf4907117b496d49f74242', 2472, 2472, 1, '2024-03-29', 2, 0, '4715', true), - (90101, '2024-05-10 23:12:31.841698+00', '0x6c995a4b04b676da6a7f48589cadf341d9b0ebe0', 9629, 9629, 1, '2024-02-22', 7, 35, '363197', true), - (89224, '2024-05-10 23:12:29.053582+00', '0xf5819cc26f0481c9b86294b4c24027518a04bd5b', 3007, 3007, 1, '2024-02-23', 2, 1, '13086', true), - (92219, '2024-05-10 23:12:37.765423+00', '0x12789c79ad0499cd9b93ae56d402c4ce4840b270', 1552, 1552, 1, '2024-02-28', 1, 0, '272717', true), - (89577, '2024-05-10 23:12:30.349041+00', '0xebcaac47e92207cda75dd53c234815279ded5f5c', 2777, 2777, 1, '2023-12-05', 1, 2, '4807', true), - (92132, '2024-05-10 23:12:37.52972+00', '0x089fce8be711cabc806d69b1d0d5aebd52a06455', 4434, 4434, 1, '2023-11-14', 2, 5, '2420', true), - (89856, '2024-05-10 23:12:31.011488+00', '0xaa451dcc2b100d9bc1d6bd0b482b0904f679a3cf', 2639, 2639, 1, '2023-06-07', 1, 1, '3305', true), - (90322, '2024-05-10 23:12:32.537622+00', '0x30fedb223ada290b7fadd9ad650aadab40365062', 2335, 2335, 1, '2024-05-05', 2, 7, '298111', true), - (88642, '2024-05-10 23:12:27.340001+00', '0x0c55e7d45f53b6999732a75917df6eb711e58674', 0, 0, 1, '2024-04-24', 1, 0, '19635', false), - (82459, '2024-05-10 23:12:09.064628+00', '0x2070f355a7b475c719bac8d93da8c28494b61836', 0, 0, 1, '2024-05-06', 4, 17, '501698', false), - (93147, '2024-05-10 23:12:40.304999+00', '0xc074ec7ba655d4ddc7db1fb7a1933c31b2901a95', 0, 0, 1, '2024-02-06', 1, 5, '248920', false), - (93225, '2024-05-10 23:12:40.551416+00', '0x6110197614faa24e37cc79c76e4f0ad6eb27ce0d', 0, 0, 1, '2024-02-06', 1, 4, '261875', false), - (93182, '2024-05-10 23:12:40.439398+00', '0x59179da8cd48d361523650e3af476174f2064202', 0, 0, 1, '2024-02-06', 1, 0, '268120', false), - (79041, '2024-05-10 23:11:58.605893+00', '0x2f786f2e6750886a96d9a1170bcd9b1038fbdd7d', 0, 0, 1, '2024-02-23', 1, 0, '293140', false), - (73790, '2024-05-10 23:11:42.908697+00', '0x41baa8c61f166bbfe4be011436c18d6e8e46fb18', 0, 0, 1, '2024-05-06', 14, 50, '399395', false), - (82007, '2024-05-10 23:12:07.738104+00', '0xee54b4fd7ca2df5ac783d83d6e5f544320f5e218', 0, 0, 1, '2024-05-06', 5, 24, '339616', false), - (83539, '2024-05-10 23:12:12.326644+00', '0x1ca0b80a0613ab3b101302f288926ddb68cb924a', 0, 0, 1, '2024-05-05', 5, 25, '472997', false), - (89055, '2024-05-10 23:12:28.49175+00', '0x50379ddb64b77e990bc4a433c9337618c70d2c2a', 0, 0, 1, '2024-03-28', 1, 0, '295075', false), - (84270, '2024-05-10 23:12:14.502982+00', '0xdcbe021e3af328e1d9394c596b7512f93b9d0718', 0, 0, 1, '2024-05-05', 3, 15, '502168', false), - (81483, '2024-05-10 23:12:06.060111+00', '0x515f1bccb397be6c0a38160808547cf835ce0ae4', 0, 0, 1, '2024-05-07', 6, 22, '514743', false), - (86576, '2024-05-10 23:12:21.830397+00', '0x390ea188e7e19f39371f64720dea831d334833c4', 0, 0, 1, '2024-05-06', 1, 5, '416899', false), - (81571, '2024-05-10 23:12:06.358844+00', '0x35f9e0792da3290d53d0bd6b7671e391a24ef013', 0, 0, 1, '2024-05-07', 10, 34, '507228', false), - (81904, '2024-05-10 23:12:07.472912+00', '0x06bd33b42eda4802f3b39f6d7745117e176258f6', 0, 0, 1, '2024-05-07', 11, 28, '428088', false), - (81915, '2024-05-10 23:12:07.478281+00', '0x91bc5434327986706d60f1a0670a09e66fa81ae6', 0, 0, 1, '2024-05-06', 18, 89, '434304', false), - (86759, '2024-05-10 23:12:22.308353+00', '0x154d0e2c3cf36f1fa9ab698c347f5793fd488114', 0, 0, 1, '2024-05-06', 1, 0, '511070', false), - (86200, '2024-05-10 23:12:20.707363+00', '0xb58bf2d5ffb52c1fad60f6750b639156ab249f53', 0, 0, 1, '2024-05-06', 5, 1, '480461', false), - (82125, '2024-05-10 23:12:08.062761+00', '0x464dd9199826f1e21280bb1a85e8016c5b60c18e', 0, 0, 1, '2024-05-09', 1, 5, '340487', false), - (88236, '2024-05-10 23:12:26.315829+00', '0xd0e330332a3eaed62bb8f3e2cfd34624090dde97', 0, 0, 1, '2024-05-05', 2, 1, '414695', false), - (82393, '2024-05-10 23:12:08.721584+00', '0x043c77780cf3188f07a8c33376b9b624e8da7bee', 0, 0, 1, '2024-05-09', 1, 5, '500869', false), - (82477, '2024-05-10 23:12:09.082871+00', '0x82585ba57bcc3e8fb01a7b4b5279de4b426eb315', 0, 0, 1, '2024-05-09', 1, 4, '468233', false), - (81455, '2024-05-10 23:12:06.041438+00', '0x138811332293f081d24e63d40ab18b4af520378a', 0, 0, 1, '2023-04-27', 1, 0, '10348', false), - (89317, '2024-05-10 23:12:29.396904+00', '0xb8b31cbcee619583045c0b80f76f9610d7d67f6b', 0, 0, 1, '2024-02-04', 2, 0, '263084', false), - (84516, '2024-05-10 23:12:15.374549+00', '0x0b023c4da4065013413220917f651395e1fbf8ef', 0, 0, 1, '2024-05-06', 2, 10, '376591', false), - (82543, '2024-05-10 23:12:09.215702+00', '0xf0546c9156225ac240ed0791e013cdbca72e8074', 0, 0, 1, '2024-05-05', 29, 22, '286406', false), - (83867, '2024-05-10 23:12:13.440885+00', '0x11212242ba29e3544b7fe2bd18ae328914b0ec5e', 0, 0, 1, '2024-05-05', 4, 20, '287674', false), - (88539, '2024-05-10 23:12:27.075703+00', '0x4a25f6bcf11dc1a98f706aedb47c42b9f299c400', 0, 0, 1, '2024-05-02', 1, 3, '295485', false), - (85282, '2024-05-10 23:12:17.773531+00', '0xc1dbfe2532a6538cb33a771647130af2d3fac310', 0, 0, 1, '2024-05-06', 3, 12, '443429', false), - (82120, '2024-05-10 23:12:08.056952+00', '0x2bf30735f3e75937808eece8883cdc3e74107f56', 0, 0, 1, '2024-05-05', 4, 20, '19379', false), - (82377, '2024-05-10 23:12:08.714597+00', '0x3386d300d0258fd222c057dfd3c754cc302f0ba4', 0, 0, 1, '2024-05-08', 4, 20, '504853', false), - (95505, '2024-05-13 06:00:35.945377+00', '0x77ef22b226510905ab962aa765d6ce4160921d57', 0, 0, 1, '2024-05-12', 1, 5, '514197', false), - (81778, '2024-05-10 23:12:06.897077+00', '0x58757de18dd86f34462bb44ca7dca333bf3de533', 0, 0, 1, '2024-05-09', 2, 10, '430645', false), - (96070, '2024-05-14 06:00:33.08707+00', '0x4b81324e971bcbd0036c27ddc405dfef5bf04e36', 0, 0, 1, '2024-05-13', 1, 3, '453164', false), - (82161, '2024-05-10 23:12:08.160759+00', '0x1f863c34ab1521aa12d23e84d592c15f0502133b', 0, 0, 1, '2024-05-07', 9, 32, '366037', false), - (82356, '2024-05-10 23:12:08.687348+00', '0x7da20b8238e4b002d7f5ed27350d4de85999f36c', 0, 0, 1, '2024-05-05', 30, 115, '507758', false), - (84547, '2024-05-10 23:12:15.579877+00', '0xd956fe0b4e5a0f6edf0c91699c5245c961f86371', 0, 0, 1, '2024-05-07', 1, 5, '443863', false), - (88480, '2024-05-10 23:12:26.938246+00', '0x0cad2d0b33ec5206384a7e68876541211ab007a3', 0, 0, 1, '2024-05-04', 2, 10, '263685', false), - (83336, '2024-05-10 23:12:11.675014+00', '0x97b820ae0e998eba0e8156298e7cd0db3ed3f711', 0, 0, 1, '2024-05-07', 3, 15, '481625', false), - (87692, '2024-05-10 23:12:24.889757+00', '0x000009df76cd34aa2133900bff2b488d2c2fa4b3', 0, 0, 1, '2024-05-05', 4, 1, '239772', false), - (82054, '2024-05-10 23:12:07.9125+00', '0xb693724eb0646a1e98adc31316fa81a6a5164349', 0, 0, 1, '2024-05-05', 117, 358, '504343', false), - (87914, '2024-05-10 23:12:25.42264+00', '0xc8d159f9a0d7299ea37aaef081cd3384f86557ad', 0, 0, 1, '2024-05-05', 2, 3, '321145', false), - (87931, '2024-05-10 23:12:25.513028+00', '0xad945c428a6659b25a8f6b362fc99136f802091c', 0, 0, 1, '2024-05-05', 1, 5, '364012', false), - (87955, '2024-05-10 23:12:25.532264+00', '0xf96cb25227cf2d2473cccd4758e35f18273653b3', 0, 0, 1, '2024-05-05', 1, 5, '19301', false), - (83091, '2024-05-10 23:12:10.838761+00', '0xe4be347f426a9f022415234e78aa56a68f017a09', 0, 0, 1, '2024-05-08', 3, 6, '243053', false), - (84954, '2024-05-10 23:12:16.888832+00', '0x3f216864e9b71d17c483fba83b1af3efe02f5d9e', 0, 0, 1, '2024-05-05', 3, 15, '290963', false), - (83734, '2024-05-10 23:12:13.046708+00', '0xaaa056168b01502f72a2add448daa728b5f090f1', 0, 0, 1, '2024-05-08', 1, 2, '390637', false), - (95790, '2024-05-14 06:00:31.28436+00', '0xa6d96ba465dce53dc942e623f3d1dba9602fc5e5', 0, 0, 1, '2024-05-13', 1, 5, '469575', false), - (83663, '2024-05-10 23:12:12.724719+00', '0x126a4ecdb15bd2614a7e083b5c2310387b85b151', 0, 0, 1, '2024-05-07', 3, 15, '519397', false), - (82657, '2024-05-10 23:12:09.618466+00', '0x281756ff1ad5bb1109ea472e5eb282395677fffd', 0, 0, 1, '2024-05-06', 9, 45, '406952', false), - (94365, '2024-05-12 06:00:32.661182+00', '0x86afb7172b488edf870df89d553af0d7ffc5384e', 0, 0, 1, '2024-05-11', 3, 9, '474261', false), - (89998, '2024-05-10 23:12:31.570162+00', '0x5f62ece59fbba2bae1654e9b69bbfa4e4d5b329b', 0, 0, 1, '2024-05-09', 2, 0, '262360', false), - (82294, '2024-05-10 23:12:08.460833+00', '0x55b84a1b5a69cd65c93f417f989182d5d3d5fef2', 0, 0, 1, '2024-05-05', 13, 60, '405849', false), - (96340, '2024-05-14 06:00:35.042575+00', '0x50938e91d6bfaf3cf984e9b7b3b3e6ae99267bc7', 0, 0, 1, '2024-05-13', 1, 5, '381401', false), - (96353, '2024-05-14 06:00:35.054178+00', '0xd21005fba48ee6d81259a1795e394e1acc15a6f9', 0, 0, 1, '2024-05-13', 1, 5, '342037', false), - (94576, '2024-05-12 06:00:34.184727+00', '0x8d6afe9fc66fc5b2c2c2a13a0b1c767c65f183b1', 0, 0, 1, '2024-05-11', 3, 14, '380539', false), - (94638, '2024-05-12 06:00:34.584313+00', '0x300562f5203bcccde5721c500bd97cef6779f5c8', 0, 0, 1, '2024-05-11', 1, 2, '453298', false), - (81750, '2024-05-10 23:12:06.862261+00', '0x58708037f18a8f3b11281c774af628a575b2ea5f', 0, 0, 1, '2024-05-06', 16, 80, '406493', false), - (92947, '2024-05-10 23:12:39.779657+00', '0xe111eebfb53b29db375c19c9c2c163c3db1a4b5a', 0, 0, 1, '2024-02-06', 1, 1, '251058', false), - (92965, '2024-05-10 23:12:39.881962+00', '0xd8c70fa1c7c997e172a124bf808bda3ce15c03e8', 0, 0, 1, '2024-02-06', 1, 3, '254122', false), - (93028, '2024-05-10 23:12:40.02706+00', '0xbf53e29372dab9ba05c42a9400bdbfd0e46d107b', 0, 0, 1, '2024-02-06', 1, 2, '239114', false), - (93088, '2024-05-10 23:12:40.167772+00', '0xaacc748b509e2ee00e60dcba4ebe5d500567719c', 0, 0, 1, '2024-02-06', 1, 1, '254727', false), - (93111, '2024-05-10 23:12:40.2651+00', '0xd572a74eb36f427f2d9dc0207fee18ba1aaf7412', 0, 0, 1, '2024-02-06', 1, 3, '276023', false), - (93127, '2024-05-10 23:12:40.284408+00', '0x992e969b80fc9986a2c201c3ceeae9f6aa02bd52', 0, 0, 1, '2024-02-06', 1, 1, '253110', false), - (85636, '2024-05-10 23:12:18.799637+00', '0x0c5ced2c4bca9df5e9807c15b445f297d04f1da2', 0, 0, 1, '2024-05-04', 4, 20, '477741', false), - (93979, '2024-05-11 06:00:25.73787+00', '0x2c205296f51d2def315c21fd8d9f709fd951aa13', 0, 0, 1, '2024-05-11', 9, 37, '379716', false), - (96331, '2024-05-14 06:00:34.883495+00', '0x8c4d1561afb68fac08a061bd87bdc2d1497619fd', 0, 0, 1, '2024-05-13', 2, 7, '387386', false), - (95868, '2024-05-14 06:00:31.810882+00', '0x6c31ddd0a1db2f19719caa6ccdcc86135ef5b3ba', 0, 0, 1, '2024-05-13', 1, 2, '525788', false), - (84016, '2024-05-10 23:12:13.816396+00', '0xdcd6d315326c77742f3aec25e7270839c9f3fb45', 0, 0, 1, '2024-05-07', 2, 10, '455076', false), - (83056, '2024-05-10 23:12:10.795011+00', '0x4cd2888489bc88f29d2f7c887fd1c376f8a7749d', 0, 0, 1, '2024-05-08', 1, 1, '388500', false), - (85079, '2024-05-10 23:12:17.18597+00', '0xa3a13043206f573ea0aad7cec75b111e000e9d1c', 0, 0, 1, '2024-05-05', 2, 10, '500414', false), - (84765, '2024-05-10 23:12:16.171734+00', '0x53914443b41aa77b3c77d3761a234b5976370b96', 0, 0, 1, '2024-05-07', 6, 30, '441493', false), - (81810, '2024-05-10 23:12:06.994575+00', '0xc531a47d9faeb1e274e1e0534d7694266182a391', 0, 0, 1, '2024-05-08', 9, 42, '507761', false), - (81590, '2024-05-10 23:12:06.396851+00', '0x22471c4946f2f3f34464a92d6444b619a52f9de1', 0, 0, 1, '2024-05-07', 9, 29, '467140', false), - (82192, '2024-05-10 23:12:08.194243+00', '0xed1f20e6db70f8aaee5010cdf435f58bd06768b2', 0, 0, 1, '2024-05-07', 17, 84, '414561', false), - (73810, '2024-05-10 23:11:42.951038+00', '0x455ef173cac633be0019ea5d795f74d7a5aa050f', 0, 0, 1, '2024-05-10', 5, 11, '529495', false), - (75004, '2024-05-10 23:11:47.396417+00', '0x0b88fdabc889ef624ab53a620fa92c1271d5579a', 0, 0, 1, '2024-05-06', 4, 12, '344831', false), - (81937, '2024-05-10 23:12:07.5026+00', '0x3613da05428b2523b78ba608ee01692a0526ab86', 0, 0, 1, '2024-05-05', 6, 12, '379809', false), - (81575, '2024-05-10 23:12:06.370525+00', '0x56d865a719b82a0aae8060e701311b17ebb06378', 0, 0, 1, '2024-05-08', 13, 61, '502325', false), - (82389, '2024-05-10 23:12:08.708694+00', '0x0b7bce9752edea79ece76a8438e0473ecfb94a0e', 0, 0, 1, '2024-05-07', 3, 15, '458887', false), - (81637, '2024-05-10 23:12:06.53355+00', '0x8366864ccd59c240c40543149dfc11542a318002', 0, 0, 1, '2024-05-06', 22, 107, '407705', false), - (82218, '2024-05-10 23:12:08.286475+00', '0x6bb3163d7520efc6d3aae151811831ca6686739f', 0, 0, 1, '2024-05-05', 5, 25, '291929', false), - (84056, '2024-05-10 23:12:13.939026+00', '0x6dc7b04df65747e867437a64958c2282c51beb9e', 0, 0, 1, '2024-05-06', 8, 6, '353613', false), - (84497, '2024-05-10 23:12:15.350297+00', '0xd7845b13a381ad3e8adf02a9a439f16b87ca7d53', 0, 0, 1, '2024-05-07', 1, 5, '508403', false), - (87158, '2024-05-10 23:12:23.418019+00', '0x8b569f047e123361a9b33d95a307e5839ea45254', 0, 0, 1, '2024-05-05', 1, 5, '510185', false), - (92807, '2024-05-10 23:12:39.381184+00', '0x44c0551deb02f75189c7c4075b58212cfb108f2d', 0, 0, 1, '2024-02-06', 2, 0, '291172', false), - (73869, '2024-05-10 23:11:43.165634+00', '0x2b5606fb05188e248373a028ae70a896ed0747a1', 0, 0, 1, '2023-11-27', 18, 75, '192631', false), - (88734, '2024-05-10 23:12:27.570183+00', '0xc7a3f400cdde42cf52f240e46ae83d59f3df1303', 8156, 8156, 1, '2024-04-12', 9, 7, '373854', true), - (89291, '2024-05-10 23:12:29.236626+00', '0xbf0d78ebe5e2c5a8ed9dbe42d539f5e8ea115d61', 3588, 3588, 1, '2024-02-22', 1, 5, '4567', true), - (88921, '2024-05-10 23:12:28.063583+00', '0x8610f2d0e04b9926396a99f464c46fabcde942fc', 23816, 23816, 1, '2023-10-15', 20, 23, '533', true), - (91617, '2024-05-10 23:12:36.156695+00', '0xbef65bf144bdea1667a74f14ad552c751ad4c056', 5144, 5144, 1, '2024-02-03', 3, 8, '8109', true), - (77065, '2024-05-10 23:11:52.936755+00', '0x43b7ea3ebcdd8133be85bee435b06a3a2db6cbcc', 39996, 39996, 1, '2023-06-15', 34, 40, '5840', true), - (92986, '2024-05-10 23:12:39.907083+00', '0x59fb71e42ddce3d9d5e5abe54b86698bc7493987', 0, 0, 1, '2024-02-06', 1, 0, '276759', false), - (93025, '2024-05-10 23:12:40.030246+00', '0x2020d25530cf90f48f176da7cd3d3c1cd282d400', 0, 0, 1, '2024-02-06', 1, 3, '14349', false), - (82136, '2024-05-10 23:12:08.068433+00', '0xa8d41cbf189511e7d274b6fe5bbc8c978fb2c439', 0, 0, 1, '2024-05-04', 7, 35, '399724', false), - (87910, '2024-05-10 23:12:25.414427+00', '0x2ff0fef5a2f4d4f803c15feacfa8c63df4bfbc8d', 0, 0, 1, '2024-05-05', 3, 2, '499468', false), - (87958, '2024-05-10 23:12:25.54066+00', '0x7513484d5f89c91846b0a71e0a9d2d1d71047510', 0, 0, 1, '2024-05-05', 1, 1, '406560', false), - (87994, '2024-05-10 23:12:25.66417+00', '0xbdaac51cf15381b3dc90108c49c8211c1123b5a7', 0, 0, 1, '2024-05-05', 1, 4, '391859', false), - (88128, '2024-05-10 23:12:26.035614+00', '0x4825bdddab18adfcd8b58c113923bfc50749d756', 0, 0, 1, '2024-05-05', 1, 5, '404016', false), - (76491, '2024-05-10 23:11:51.432905+00', '0x8a0c391ed12dfbb23d4a926a7c7353dcfcca8a47', 0, 0, 1, '2024-04-19', 1, 1, '390848', false), - (76506, '2024-05-10 23:11:51.445112+00', '0x7dc22b78583e670001f4b75f21ab7ec19d822b3c', 0, 0, 1, '2024-04-19', 1, 0, '478033', false), - (93046, '2024-05-10 23:12:40.051682+00', '0xedbf72f88e72133b10cddded385d2b0f7b27f588', 0, 0, 1, '2024-02-06', 1, 3, '21473', false), - (92971, '2024-05-10 23:12:39.891741+00', '0x657604627622a5dfa2d4603a69c4b673ba7986cb', 0, 0, 1, '2024-02-06', 2, 3, '270186', false), - (84827, '2024-05-10 23:12:16.349534+00', '0xbc695b44d5cb3c9a9d7a57d9394fffe14e3af95a', 0, 0, 1, '2024-05-07', 1, 5, '500639', false), - (87203, '2024-05-10 23:12:23.548023+00', '0x791e34adbf1114627f70adb178a7cd35e0dc667a', 0, 0, 1, '2024-05-05', 1, 5, '492109', false), - (86945, '2024-05-10 23:12:22.787318+00', '0xa5ad6ea44cf18fd9b0f1de5caeeca624bd49e443', 0, 0, 1, '2024-05-05', 7, 14, '379974', false), - (86485, '2024-05-10 23:12:21.671125+00', '0xaf73240d97351ffd07698464e44c2dd9f9c20770', 0, 0, 1, '2024-05-06', 1, 5, '441807', false), - (81871, '2024-05-10 23:12:07.158777+00', '0x657dfae4cade54b666202ff6955af1d1daf944e9', 0, 0, 1, '2024-05-06', 24, 106, '501832', false), - (82890, '2024-05-10 23:12:10.20403+00', '0x0626b599a9d8513ed5c060191f7870d1c6415d3a', 0, 0, 1, '2024-05-07', 6, 23, '300020', false), - (88072, '2024-05-10 23:12:25.846619+00', '0x1ea6258d92eda439fff00ba30f9abd971b2a27c5', 0, 0, 1, '2024-05-05', 1, 5, '513631', false), - (86617, '2024-05-10 23:12:21.951154+00', '0x518b053f612d2d87a23762cff6160163367924f9', 0, 0, 1, '2024-05-06', 1, 4, '297840', false), - (84661, '2024-05-10 23:12:15.868618+00', '0xb8e584b5dadaec21a6b06101bfe4bcf2022a8715', 0, 0, 1, '2024-05-07', 5, 25, '387528', false), - (82841, '2024-05-10 23:12:10.075652+00', '0x6ccc58c8e1ad8a7a1d56378e83f85e5e26c9ca01', 0, 0, 1, '2024-05-07', 30, 53, '443355', false), - (87688, '2024-05-10 23:12:24.886415+00', '0x1a49138ccb61c50d72a44a299f6c74c690f6c67f', 0, 0, 1, '2024-05-05', 5, 3, '272919', false), - (85273, '2024-05-10 23:12:17.757378+00', '0x6be33ccbb73db2f0ebe945063610dcf861dca80c', 0, 0, 1, '2024-05-07', 1, 5, '509419', false), - (83238, '2024-05-10 23:12:11.318446+00', '0x3311f49937237e24afee88c744b40391d680bd8c', 0, 0, 1, '2024-05-05', 11, 46, '503341', false), - (86298, '2024-05-10 23:12:21.067986+00', '0xc7b4762a650978f4a7140195b175fb6cdc22a3f5', 0, 0, 1, '2024-05-05', 4, 11, '445373', false), - (85965, '2024-05-10 23:12:19.862755+00', '0x0eb636405ec2db0f356e254d372a726932058d79', 0, 0, 1, '2024-05-06', 4, 9, '385605', false), - (87982, '2024-05-10 23:12:25.650178+00', '0x86646054f1d16749b7832d0f111df44cf4a0d33f', 0, 0, 1, '2024-04-12', 5, 11, '417423', false), - (87921, '2024-05-10 23:12:25.43014+00', '0xaf794df9a83e1d0260d8d900f9a2b2e576c06aa9', 0, 0, 1, '2024-05-05', 1, 2, '12920', false), - (88000, '2024-05-10 23:12:25.670722+00', '0xb0f84d687565c42b4ee45b6fce2844a51002d0b7', 0, 0, 1, '2024-05-05', 1, 5, '377481', false), - (88056, '2024-05-10 23:12:25.82782+00', '0x265f5a9b3181ef516d755cb890a24a98e7d641ce', 0, 0, 1, '2024-05-05', 2, 7, '18274', false), - (82306, '2024-05-10 23:12:08.551014+00', '0xb9b273c5d33123eacd920212f464d23684bc93a2', 0, 0, 1, '2024-05-05', 6, 20, '479253', false), - (88354, '2024-05-10 23:12:26.59123+00', '0xbb71cc128f080e82be98c5dd2e7d75e971abb2b9', 0, 0, 1, '2024-05-05', 3, 15, '510131', false), - (87890, '2024-05-10 23:12:25.387731+00', '0xbaa72b6a59d4395e1e610005c1c507c7dc16ca39', 0, 0, 1, '2024-05-04', 5, 22, '418390', false), - (74811, '2024-05-10 23:11:46.936804+00', '0x42ab397b9145eb55e78347088beb42422bba0ab7', 0, 0, 1, '2024-05-04', 11, 49, '502617', false), - (82174, '2024-05-10 23:12:08.167367+00', '0x3af09cf05d346a0945c05ff8baa8ce474e2f044d', 0, 0, 1, '2024-04-30', 13, 52, '478436', false), - (88550, '2024-05-10 23:12:27.08805+00', '0x74e98f9f7180ce6b76d6fb3844edcd6feb7e8089', 0, 0, 1, '2024-05-01', 1, 0, '507669', false), - (88814, '2024-05-10 23:12:27.706451+00', '0x176ca8c7f0d201674f7e2ffa34bd8e4af7e3b880', 0, 0, 1, '2024-04-14', 1, 2, '467773', false), - (88881, '2024-05-10 23:12:27.942436+00', '0x1efadf6083d9aac344d29cb8287c37af16c86e45', 0, 0, 1, '2024-04-10', 1, 0, '192257', false), - (88898, '2024-05-10 23:12:27.960831+00', '0xc2dce531ffa333304ed3e092accbe78aa00f76ee', 0, 0, 1, '2024-04-09', 1, 5, '403202', false), - (83313, '2024-05-10 23:12:11.661176+00', '0xc65ebcf5ce433f7e7dbfdbc98aa948dd5bd381b8', 0, 0, 1, '2024-04-15', 16, 70, '21448', false), - (87112, '2024-05-10 23:12:23.301484+00', '0x846dc81911f51c4b649e9a6b8d2b6d450729e1d9', 0, 0, 1, '2024-05-05', 3, 4, '401089', false), - (85893, '2024-05-10 23:12:19.693009+00', '0x23a60cb5f1e1357c0aa86d21903e3fd659e788d0', 0, 0, 1, '2024-05-05', 8, 40, '413717', false), - (82986, '2024-05-10 23:12:10.504939+00', '0x60f3119a7fb0620f7e0af2adeeca3c9b1f51a61e', 0, 0, 1, '2024-05-06', 10, 46, '427649', false), - (78886, '2024-05-10 23:11:58.210397+00', '0x2bab603a63d1fbd6ff7e67b6e0ef7c8ddb63e8c0', 13567, 13567, 1, '2024-02-06', 12, 17, '1357', true), - (84846, '2024-05-10 23:12:16.527605+00', '0x25ae5bee0404e99014ff66457f5103153f2d5c07', 0, 0, 1, '2024-05-05', 4, 20, '451949', false), - (81721, '2024-05-10 23:12:06.754743+00', '0xb5fde9b1ca10b6daff7c01c870eb0f7b4e035c4b', 0, 0, 1, '2024-05-09', 10, 50, '411014', false), - (88917, '2024-05-10 23:12:28.064412+00', '0x7ba9dfe6ad924b4b3f11b17fe8d2bfb011511c23', 0, 0, 1, '2024-04-06', 1, 0, '234510', false), - (82309, '2024-05-10 23:12:08.561653+00', '0xceff6dc174c6e77ed2402ebb873d2cafe930db00', 0, 0, 1, '2024-05-07', 8, 32, '419625', false), - (84514, '2024-05-10 23:12:15.3684+00', '0x788978359ea6c091ada783f94a50500a6b5e4a25', 0, 0, 1, '2024-05-06', 3, 15, '389395', false), - (82134, '2024-05-10 23:12:08.071394+00', '0x54ca8cdd783ad7ffac044b101002a6823814d481', 0, 0, 1, '2024-05-07', 4, 20, '427164', false), - (84970, '2024-05-10 23:12:16.906368+00', '0xef4ef6d7360550f5bde42c1db2c7653ec405244f', 0, 0, 1, '2024-05-07', 4, 17, '425076', false), - (87762, '2024-05-10 23:12:25.02408+00', '0xc27cdf2032f2ad2db065e38f13cc3cc5534b1c94', 0, 0, 1, '2024-05-05', 1, 3, '505802', false), - (83182, '2024-05-10 23:12:11.111773+00', '0x71d2b53a3a43dd9ccc043a1d40ef1f160f810b2f', 0, 0, 1, '2024-05-05', 8, 25, '413505', false), - (83259, '2024-05-10 23:12:11.525894+00', '0xacf1940b2ed91bf35bc14fe9b3c1e00add4e82df', 0, 0, 1, '2024-05-06', 3, 15, '500789', false), - (96232, '2024-05-14 06:00:34.282013+00', '0x1eb2ba2d275d61f76391a7c23ebdb3c45e245dd8', 0, 0, 1, '2024-05-13', 1, 5, '486624', false), - (83403, '2024-05-10 23:12:12.01619+00', '0x88ade873accde24a5553fe8a5ad13a28ffbf6d7a', 0, 0, 1, '2024-05-05', 10, 12, '311776', false), - (91136, '2024-05-10 23:12:34.779093+00', '0xe2a26a4df24f65e790b108e4f62322333000bbef', 0, 0, 1, '2024-04-10', 1, 0, '472320', false), - (91173, '2024-05-10 23:12:34.82465+00', '0xa7061a5873ec5cf7dbb11b61a15f6fbed789d391', 0, 0, 1, '2024-04-09', 1, 1, '436695', false), - (91234, '2024-05-10 23:12:35.046399+00', '0x021584e57b2219957784951639385027607266e6', 0, 0, 1, '2024-04-07', 1, 3, '371188', false), - (91265, '2024-05-10 23:12:35.077586+00', '0xd002e731b302286009abaafd5e05a9853f5f3002', 0, 0, 1, '2024-04-07', 1, 0, '301258', false), - (83389, '2024-05-10 23:12:11.791559+00', '0x13369c76e7b5c4308a6e6428acdc7b644d5966a2', 0, 0, 1, '2024-05-06', 9, 45, '410922', false), - (82607, '2024-05-10 23:12:09.429059+00', '0xbb718e764ee9dcd619ed75433534554de2d170eb', 0, 0, 1, '2024-05-07', 7, 35, '503247', false), - (88933, '2024-05-10 23:12:28.088122+00', '0x3d23866176207b18f176cbb7019ade2ef9f72d38', 0, 0, 1, '2024-03-28', 3, 1, '212387', false), - (92570, '2024-05-10 23:12:38.760434+00', '0xd34b87e3b1bfc828f2f9639a9bdc9ea218348845', 0, 0, 1, '2024-02-07', 1, 0, '255436', false), - (92932, '2024-05-10 23:12:39.764618+00', '0x78c73d193600218e15ae4abf66b21482455244f9', 0, 0, 1, '2024-02-06', 2, 2, '14448', false), - (95032, '2024-05-13 06:00:31.552273+00', '0xa3b4cc88f6e8f6adebc7aaf20b36a3c7b38eb704', 0, 0, 1, '2024-05-12', 1, 1, '498820', false), - (73782, '2024-05-10 23:11:42.830277+00', '0x06c4309e725d099c4b64442f3fafd6f189c318b9', 0, 0, 1, '2024-05-10', 2, 10, '15157', false), - (95098, '2024-05-13 06:00:32.151258+00', '0x86eb590d35fe7087af7fe33b614659933a2a1d17', 0, 0, 1, '2024-05-12', 2, 3, '351803', false), - (82463, '2024-05-10 23:12:09.070577+00', '0x339021f9095405288bf42f6ed2cacb7c8a7c5867', 0, 0, 1, '2024-05-08', 5, 14, '343680', false), - (85246, '2024-05-10 23:12:17.73127+00', '0xd6aaa4993952e5c6016a5a36829c99cb252f160a', 0, 0, 1, '2024-05-07', 2, 10, '403624', false), - (91990, '2024-05-10 23:12:37.147253+00', '0x7b24ddcf028539941eeeaf747f9b38f37016a715', 0, 0, 1, '2024-03-11', 2, 0, '267518', false), - (95025, '2024-05-13 06:00:31.545209+00', '0x86c4cb2b525fc7c6e245211eeca91a0ad3496d70', 0, 0, 1, '2024-05-12', 1, 0, '490505', false), - (95055, '2024-05-13 06:00:31.878713+00', '0xb6f6ce090c741263158627578e6281d2b9060cbe', 0, 0, 1, '2024-05-12', 1, 2, '410690', false), - (83027, '2024-05-10 23:12:10.684347+00', '0xda73da33c13e140ccc05046308f9369a0b8df2c0', 0, 0, 1, '2024-05-08', 2, 10, '492265', false), - (95596, '2024-05-13 06:00:36.66048+00', '0x45753f300e36fd523794f2ae5e094c82abb70c12', 0, 0, 1, '2024-05-12', 1, 2, '532106', false), - (93017, '2024-05-10 23:12:40.012669+00', '0x9f0f5a13591b8eaacafc1fbe26d27beb79241e9a', 0, 0, 1, '2024-02-06', 1, 0, '296457', false), - (93040, '2024-05-10 23:12:40.041462+00', '0xe8a6b43f5392964217ef9a96093eaf8d4896c886', 0, 0, 1, '2024-02-06', 1, 0, '253977', false), - (93060, '2024-05-10 23:12:40.140987+00', '0x5db92c4a7fdae009ea763b26d74d33da3b1a7ccc', 0, 0, 1, '2024-02-06', 1, 4, '19253', false), - (93106, '2024-05-10 23:12:40.263928+00', '0x126b23cc985bc89cafc2cc94c21da4b3b1ef408a', 0, 0, 1, '2024-02-06', 1, 1, '270219', false), - (89090, '2024-05-10 23:12:28.608105+00', '0x5100ab1ecfe9aa31ebef732375acfca422b82327', 0, 0, 1, '2024-03-10', 6, 0, '379764', false), - (87844, '2024-05-10 23:12:25.250735+00', '0x611827e5ed232cc25f7df66e7d036445eeb9b228', 0, 0, 1, '2024-05-05', 1, 5, '512807', false), - (87942, '2024-05-10 23:12:25.524482+00', '0x52691b5ab413863bac901f63cb7e2ce8ab7cc049', 0, 0, 1, '2024-05-05', 1, 2, '353481', false), - (88620, '2024-05-10 23:12:27.237666+00', '0xbcdd963490164b70e5dbda7dca8d6e96077878b8', 0, 0, 1, '2024-04-21', 4, 9, '404990', false), - (86600, '2024-05-10 23:12:21.934638+00', '0xdafb102c3529583312382850587e1d082f91d168', 0, 0, 1, '2024-05-06', 1, 5, '446876', false), - (85127, '2024-05-10 23:12:17.320908+00', '0xf8b33cb564d3a8d83a147282b4ecbf9c1765907f', 0, 0, 1, '2024-05-06', 2, 10, '405451', false), - (83223, '2024-05-10 23:12:11.277599+00', '0x1cfd58877e1f5ffc601efdb1fb39f52e561981a3', 0, 0, 1, '2024-05-05', 15, 21, '510268', false), - (81509, '2024-05-10 23:12:06.186672+00', '0x4dc8d40a5628dc8d7c126594e1e76669bd32fb3d', 0, 0, 1, '2024-05-05', 19, 24, '446972', false), - (84342, '2024-05-10 23:12:14.878663+00', '0xf64ff6520a410c1cf746285dd3c893d35ac5eef4', 0, 0, 1, '2024-05-06', 4, 20, '422208', false), - (82155, '2024-05-10 23:12:08.15542+00', '0x173b0d66547e2e8ff03e4c92ac1b9af755488490', 0, 0, 1, '2024-05-05', 15, 55, '289659', false), - (88771, '2024-05-10 23:12:27.668208+00', '0xeec38c32ff337a4fe70a51d03648d5f00e044c18', 0, 0, 1, '2024-03-07', 2, 3, '244256', false), - (84549, '2024-05-10 23:12:15.58208+00', '0x8b17962579ccc3a5033ac54f9ebef79880cb4c7e', 0, 0, 1, '2024-05-05', 6, 21, '382749', false), - (89230, '2024-05-10 23:12:29.064813+00', '0x17d70162a85dfde9b48921054b242e452f09a667', 0, 0, 1, '2024-02-27', 1, 2, '310091', false), - (89534, '2024-05-10 23:12:30.121465+00', '0x3c0dc362a2724bc576d66dd1ad150dc107a274f1', 0, 0, 1, '2024-01-09', 1, 2, '192504', false), - (95150, '2024-05-13 06:00:33.613465+00', '0xfc83977f65913e604ebc84c9e0940ba10e6074e6', 0, 0, 1, '2024-05-13', 1, 0, '503094', false), - (90016, '2024-05-10 23:12:31.586807+00', '0xe97cf541ecf916cde6907addad109e4dc973b98f', 0, 0, 1, '2024-05-09', 1, 5, '354090', false), - (82555, '2024-05-10 23:12:09.306295+00', '0xb83a31ee1c70b6735930f82f52994126caa4dbc3', 0, 0, 1, '2024-05-09', 1, 0, '405714', false), - (82574, '2024-05-10 23:12:09.321265+00', '0x45e6f3ab332e2a8e82ab27126dd248c59e613319', 0, 0, 1, '2024-05-07', 3, 8, '419103', false), - (85055, '2024-05-10 23:12:17.153964+00', '0xb0b8ba190c97edaaa3e09332a2501117b143687f', 0, 0, 1, '2024-05-06', 2, 10, '434995', false), - (86614, '2024-05-10 23:12:21.946363+00', '0x24ab3a1c19401d2908189f518b04e1d44dd7eb50', 0, 0, 1, '2024-05-06', 1, 5, '421374', false), - (85105, '2024-05-10 23:12:17.294473+00', '0x139e589e354f58fde0401bf1dc07b77dc5fb3b34', 0, 0, 1, '2024-05-07', 5, 6, '422947', false), - (90170, '2024-05-10 23:12:32.14503+00', '0x135c21b2da426760718e39da954974c4572ae9f6', 6948, 6948, 1, '2023-06-13', 4, 3, '2461', true), - (92421, '2024-05-10 23:12:38.286882+00', '0xad93602657dca36570118f88af69f4706b283476', 4213, 4213, 1, '2024-02-09', 3, 1, '8850', true), - (90375, '2024-05-10 23:12:32.669279+00', '0xe3e8f144942b368328e7084458bc1d3f6a7ee106', 2086, 2086, 1, '2024-05-04', 1, 5, '244803', true), - (91098, '2024-05-10 23:12:34.682597+00', '0xd01d744ae46b1b80ed908479b8e704ebd8a53ad7', 2766, 2766, 1, '2024-04-10', 2, 3, '18865', true), - (90492, '2024-05-10 23:12:32.95269+00', '0x1e341aa44c293d95d13d778492d417d1be4e63d5', 2199, 2199, 1, '2024-05-02', 1, 5, '379', true), - (83650, '2024-05-10 23:12:12.714693+00', '0x039b169dd3f622eafe8f33c669a681f6693a792d', 0, 0, 1, '2024-05-07', 3, 15, '472643', false), - (85381, '2024-05-10 23:12:18.038153+00', '0x12f4d36fb204677ae2451e051bb4b1ed8787e0b9', 0, 0, 1, '2024-05-07', 1, 2, '372611', false), - (83797, '2024-05-10 23:12:13.276081+00', '0xcbb30b0e9eca485b2a1ae46612f2d466e3480d0e', 0, 0, 1, '2024-05-04', 2, 10, '453277', false), - (84154, '2024-05-10 23:12:14.224345+00', '0x6f21aa4e36307c86ec23d9bf6df35990f1881ee7', 0, 0, 1, '2024-05-07', 2, 1, '435599', false), - (82524, '2024-05-10 23:12:09.195528+00', '0x2741c5ba9a49eb3bc7ca6933c73c30393a8b34d8', 0, 0, 1, '2024-05-07', 2, 10, '498500', false), - (84574, '2024-05-10 23:12:15.608921+00', '0xe1f8f232f4b861ffe1d041f33a7c17aaf015c6d1', 0, 0, 1, '2024-05-07', 2, 10, '406744', false), - (83218, '2024-05-10 23:12:11.294457+00', '0x42181c870a11741da94b6b6554a8c92e8349e17c', 0, 0, 1, '2024-05-07', 2, 9, '422091', false), - (88533, '2024-05-10 23:12:27.06125+00', '0xcb7484799fc0beba36340640ce5f2171b7960088', 0, 0, 1, '2024-05-04', 2, 2, '16382', false), - (87885, '2024-05-10 23:12:25.381282+00', '0x33d5fa63725fb6b739c96f7e0a62f4f58808f97f', 0, 0, 1, '2024-05-05', 1, 5, '408838', false), - (85704, '2024-05-10 23:12:19.114322+00', '0x75cf55a1a228e691342521b01a7de4e113fac30d', 0, 0, 1, '2024-05-07', 1, 3, '239745', false), - (84471, '2024-05-10 23:12:15.233994+00', '0xa2627e5469c456b0f35ecae2d0cc772f0839a060', 0, 0, 1, '2024-05-05', 8, 33, '508420', false), - (88875, '2024-05-10 23:12:27.93708+00', '0x037ac478992e23340fbd4114f218943037916300', 0, 0, 1, '2024-04-06', 1, 0, '322872', false), - (87948, '2024-05-10 23:12:25.532882+00', '0x4509deb8ecac34003463c745f5df0e6931a86f3a', 0, 0, 1, '2024-05-05', 1, 5, '267721', false), - (84441, '2024-05-10 23:12:15.070007+00', '0x7db223a235b08629b0ed0ead6bab25b12982c79b', 0, 0, 1, '2024-05-05', 10, 47, '511192', false), - (88932, '2024-05-10 23:12:28.090845+00', '0x5af1dce6867f6d421e0ea3639d1a88ed9622adc7', 0, 0, 1, '2024-04-05', 1, 2, '430019', false), - (86841, '2024-05-10 23:12:22.549372+00', '0x52d238692d4d273aff4054b5d6f7fdd43c6a1714', 0, 0, 1, '2024-05-06', 1, 5, '428639', false), - (82370, '2024-05-10 23:12:08.698431+00', '0x9e44b3c7a7fce663ca20b09db93f66b95d81e8ca', 0, 0, 1, '2024-05-05', 11, 55, '500268', false), - (88249, '2024-05-10 23:12:26.336264+00', '0xed1cf57e559f3e4d4425bd4513c7d0ff82cfe0a7', 0, 0, 1, '2024-05-05', 2, 1, '489641', false), - (85882, '2024-05-10 23:12:19.60731+00', '0x0ccb1abb72002355331c521d4994e360ede35fba', 0, 0, 1, '2024-05-05', 2, 10, '355618', false), - (84938, '2024-05-10 23:12:16.711483+00', '0xda04d0354645060d36c99cf7a7da973179d82979', 0, 0, 1, '2024-05-07', 3, 10, '442324', false), - (86428, '2024-05-10 23:12:21.487127+00', '0xab0ec712b8b7a9b12b659167aa4b91e1041118e4', 0, 0, 1, '2024-05-05', 2, 10, '460681', false), - (87732, '2024-05-10 23:12:24.998692+00', '0x12ac0d5d5397471776ea096c6bbbcd60dd91173b', 0, 0, 1, '2024-04-27', 4, 11, '420056', false), - (85017, '2024-05-10 23:12:17.019721+00', '0xdb0f22e4a912416bea5c870feb8098f50c77903f', 0, 0, 1, '2024-05-07', 1, 5, '488371', false), - (88761, '2024-05-10 23:12:27.585211+00', '0x819cd272404761fcba43304e3e1ed3d84a4f5624', 0, 0, 1, '2024-04-17', 1, 0, '434707', false), - (82224, '2024-05-10 23:12:08.291618+00', '0xf71fab0a159428e9d4d4dc731f914eee487ffeb0', 0, 0, 1, '2024-05-07', 4, 20, '503790', false), - (85751, '2024-05-10 23:12:19.252387+00', '0x08fef71b6762e6870cde65eaba7e9b1ca66827a3', 0, 0, 1, '2024-05-06', 2, 3, '391044', false), - (87032, '2024-05-10 23:12:23.14705+00', '0x2c4e186b3f81942da171bc3180a7303039243046', 0, 0, 1, '2024-05-06', 1, 5, '507844', false), - (82967, '2024-05-10 23:12:10.471829+00', '0x6cb72521dd4f81e7e82a31d5e2b29cdcb5676cac', 0, 0, 1, '2024-05-06', 8, 38, '401276', false), - (88133, '2024-05-10 23:12:26.047629+00', '0xd80f1b1d3e46179869d8ca5081ef173179c03aa3', 0, 0, 1, '2024-05-05', 2, 7, '451906', false), - (86300, '2024-05-10 23:12:21.074524+00', '0x111b1bdb01cf89926d08e95e689553673b14002d', 0, 0, 1, '2024-05-06', 1, 5, '459385', false), - (85511, '2024-05-10 23:12:18.42622+00', '0x0d69365a2b1c548a155a2ed30f22aad60adaec85', 0, 0, 1, '2024-05-07', 3, 2, '291290', false), - (81559, '2024-05-10 23:12:06.325216+00', '0x94f2cefc084b5d4c1fd35597428a0c297570f3f2', 0, 0, 1, '2024-05-06', 48, 225, '506186', false), - (81980, '2024-05-10 23:12:07.619887+00', '0x67751d95e82e48ed03a18c665c0bb60555b45449', 0, 0, 1, '2024-05-05', 21, 97, '503138', false), - (95639, '2024-05-13 06:00:36.973888+00', '0x7253c3e1fdeb778f32602ec92dc2b8a01656c9f0', 0, 0, 1, '2024-05-12', 10, 10, '529197', false), - (92905, '2024-05-10 23:12:39.628143+00', '0x76b74337d93dbcb811fcf2dab4a57db2b7058389', 0, 0, 1, '2024-02-06', 1, 2, '253248', false), - (92923, '2024-05-10 23:12:39.754046+00', '0x964cdbc6746aa167b82e733f30325a0cad19ab99', 0, 0, 1, '2024-02-06', 1, 5, '239611', false), - (93034, '2024-05-10 23:12:40.037033+00', '0xf3d10a534e2429ebdedcd216baae99104ce0e82b', 0, 0, 1, '2024-02-06', 1, 3, '250017', false), - (93058, '2024-05-10 23:12:40.136812+00', '0xde5b1050f18b48d04623a74c28dfdc71c8bd5d46', 0, 0, 1, '2024-02-06', 2, 3, '292354', false), - (81746, '2024-05-10 23:12:06.787574+00', '0xd94961c033529e58a8696dbb351f55225b05b6c5', 0, 0, 1, '2024-05-07', 8, 36, '507437', false), - (93079, '2024-05-10 23:12:40.157648+00', '0x98574343ff67c85a61280339eb546f2bc93615a1', 0, 0, 1, '2024-02-06', 1, 5, '266813', false), - (85183, '2024-05-10 23:12:17.503056+00', '0x5fc562c33c7d56a3a3b9ef67768552a8bb8407cd', 0, 0, 1, '2024-05-07', 1, 1, '508296', false), - (86048, '2024-05-10 23:12:20.216661+00', '0x38902852eceb1421cd632e233f2c1726fe970b43', 0, 0, 1, '2024-05-06', 1, 5, '466946', false), - (83440, '2024-05-10 23:12:12.056342+00', '0xec3c03cced7e07d49cc7ad6826aee0ba604b0849', 0, 0, 1, '2024-05-08', 2, 4, '434051', false), - (84618, '2024-05-10 23:12:15.745837+00', '0x2fc9d31b20a9bb3962d13e0ada509d8caa4ee2f1', 0, 0, 1, '2024-05-05', 22, 75, '414347', false), - (84227, '2024-05-10 23:12:14.384551+00', '0x37a58ca3c08c81a772e395e6ae99127edf4ab467', 0, 0, 1, '2024-05-06', 3, 15, '422449', false), - (93514, '2024-05-10 23:12:41.34658+00', '0x4a3e6e66f8c32bc05a50879f872b1177a1573cdf', 3525, 3525, 1, '2024-01-06', 2, 2, '18975', true), - (91404, '2024-05-10 23:12:35.526289+00', '0x7fb242e221424ed59e20e9cd698431d7be8c4dbd', 9488, 9488, 1, '2024-02-13', 8, 7, '305455', true), - (90118, '2024-05-10 23:12:32.010696+00', '0xbb1c043ceb7745b286987b4cc8359c5b508f0307', 19639, 19639, 1, '2024-01-10', 17, 65, '212556', true), - (92484, '2024-05-10 23:12:38.495752+00', '0xb5307d841abb0cb646b9ccf0c39fee79c0e80a9d', 2067, 2067, 1, '2024-02-10', 1, 1, '191339', true), - (92527, '2024-05-10 23:12:38.64352+00', '0xea4feb8e55a17eed317b2804e1f49040d1b43299', 1628, 1628, 1, '2024-02-09', 1, 0, '196166', true), - (90939, '2024-05-10 23:12:34.169231+00', '0xe1859a4728f188f1166cf28d4f033fa61260cbba', 2752, 2752, 1, '2024-04-17', 1, 5, '19169', true), - (86467, '2024-05-10 23:12:21.587657+00', '0xc3de5546f05b9d858c2f6f695d9c9ebd42e2d024', 0, 0, 1, '2024-05-06', 1, 5, '500264', false), - (82146, '2024-05-10 23:12:08.140058+00', '0x6290c52f1dfc02770398323e7935e1a2e5f1263e', 0, 0, 1, '2024-05-06', 11, 53, '499057', false), - (82969, '2024-05-10 23:12:10.475039+00', '0x814465b484b60fbf50ee7a14142e845d4043bf4d', 0, 0, 1, '2024-05-06', 3, 15, '413826', false), - (84211, '2024-05-10 23:12:14.366963+00', '0x41e8874ac24abd3fb1a1b4b00c964be7f580b360', 0, 0, 1, '2024-05-05', 5, 25, '510066', false), - (83755, '2024-05-10 23:12:13.137085+00', '0xdca4a67d4e7e1bdfe9144018e1b419d92d666b7d', 0, 0, 1, '2024-05-07', 3, 15, '401724', false), - (84603, '2024-05-10 23:12:15.735673+00', '0x300c8a1ebcd65a5191088298f0c876189d0cebf6', 0, 0, 1, '2024-05-06', 7, 30, '503140', false), - (87204, '2024-05-10 23:12:23.546349+00', '0x5bc2cfbd184d1c0180f72d3b5a386a2527eef2c8', 0, 0, 1, '2024-05-05', 2, 5, '455168', false), - (87878, '2024-05-10 23:12:25.370834+00', '0x81566f3b307160d14052a1ce0c5835a563cc39bf', 0, 0, 1, '2024-05-05', 1, 3, '507775', false), - (86764, '2024-05-10 23:12:22.323604+00', '0xef9a6dc967ed5b7fad0462889ce9a1507927db00', 0, 0, 1, '2024-05-06', 1, 5, '397485', false), - (84839, '2024-05-10 23:12:16.350873+00', '0xeff086c66223a846b9038bdf5cbfcee421a89c83', 0, 0, 1, '2024-05-05', 9, 26, '330349', false), - (95290, '2024-05-13 06:00:34.597088+00', '0xd542793342411cb4f68b125532196aa0c2737b24', 0, 0, 1, '2024-05-12', 2, 7, '532839', false), - (88281, '2024-05-10 23:12:26.430725+00', '0x3e65e32affb64e91a107fde405e4da20a6ed3b4d', 0, 0, 1, '2024-05-05', 1, 1, '425318', false), - (88356, '2024-05-10 23:12:26.592092+00', '0x89faa2e1306484d47ec22342fd5b3db6ba8b714d', 0, 0, 1, '2024-05-05', 1, 4, '286600', false), - (82586, '2024-05-10 23:12:09.336101+00', '0xf1011316d76b2ca63d8253b6de0029c91c539c5f', 0, 0, 1, '2024-05-09', 3, 12, '390706', false), - (88662, '2024-05-10 23:12:27.364455+00', '0xe30c3ba6f2575c30878608aafbcb7eae107f7d99', 0, 0, 1, '2024-04-05', 5, 5, '400503', false), - (88906, '2024-05-10 23:12:27.965515+00', '0x7fc1ef595295deb66763097ffa6e7240cdf8573f', 0, 0, 1, '2024-04-09', 1, 4, '375193', false), - (86156, '2024-05-10 23:12:20.531556+00', '0xad0fdedc4db482f965e3f939b7a6d3dfc239dfea', 0, 0, 1, '2024-05-06', 1, 5, '405106', false), - (84931, '2024-05-10 23:12:16.705187+00', '0x73eb871d4163b3671407c1615e89cabe5ac39905', 0, 0, 1, '2024-05-07', 1, 5, '474917', false), - (86342, '2024-05-10 23:12:21.19683+00', '0xac6a9f9befa6482381df57d5ce02ff70b371e982', 0, 0, 1, '2024-05-06', 3, 15, '316794', false), - (84947, '2024-05-10 23:12:16.878255+00', '0x2cf8792d459be380697befa8b7390a387113e3db', 0, 0, 1, '2024-05-07', 1, 4, '438453', false), - (95107, '2024-05-13 06:00:32.170527+00', '0xb7d8553ba549230371c2be18acf416d721d0d5ed', 0, 0, 1, '2024-05-13', 1, 5, '512550', false), - (95519, '2024-05-13 06:00:35.958518+00', '0x69bc8f43dc78967e8af924539d32ecc1e540fa6c', 0, 0, 1, '2024-05-12', 1, 5, '457257', false), - (81715, '2024-05-10 23:12:06.756987+00', '0x9e181fed81b82a7ba2081a1c8c80e61ab974daf1', 0, 0, 1, '2024-05-08', 9, 41, '405964', false), - (87987, '2024-05-10 23:12:25.647344+00', '0xed8bd02dffd1e1f39757d3331effcc514a56f9a9', 0, 0, 1, '2024-05-05', 2, 10, '440299', false), - (86731, '2024-05-10 23:12:22.286688+00', '0x8c9bdb87aa9f9c29501f1d924506e381f2357d40', 0, 0, 1, '2024-05-04', 61, 195, '386737', false), - (88427, '2024-05-10 23:12:26.820744+00', '0x905f046f86cb55703d0436a9c6f00da91d20982f', 0, 0, 1, '2024-05-04', 2, 1, '254790', false), - (87167, '2024-05-10 23:12:23.431317+00', '0x24601188b00c2131ff6f77e2694932a8281e69d7', 0, 0, 1, '2024-05-05', 1, 5, '483652', false), - (87446, '2024-05-10 23:12:24.276378+00', '0x9f50a374c0081668971cb32fd5c0c550e559834a', 0, 0, 1, '2024-05-05', 3, 15, '444424', false), - (88021, '2024-05-10 23:12:25.67645+00', '0x143686e38929bd854e4e8183fd12e112cbd4480a', 0, 0, 1, '2024-05-05', 1, 5, '408943', false), - (83330, '2024-05-10 23:12:11.680357+00', '0x6ed274ff7c1c0c3adedb7436b868552023f65a78', 0, 0, 1, '2024-05-08', 2, 10, '378440', false), - (82833, '2024-05-10 23:12:10.074632+00', '0xb2eb4f13a0b4cb237cdb809353d17ea90ba8a418', 0, 0, 1, '2024-05-05', 15, 64, '284291', false), - (82596, '2024-05-10 23:12:09.424814+00', '0x4241df4db816413767ef946ee834e25056b79961', 0, 0, 1, '2024-05-08', 4, 20, '500586', false), - (83216, '2024-05-10 23:12:11.293622+00', '0x2b4f31c631c1337270801c4a4347cc1e5fbc22ce', 0, 0, 1, '2024-05-06', 9, 45, '475621', false), - (95368, '2024-05-13 06:00:34.955429+00', '0x37e27e7fae8cb18d367a214bd1ba485534a77d67', 0, 0, 1, '2024-05-12', 2, 10, '426915', false), - (83600, '2024-05-10 23:12:12.545455+00', '0x4bd3edaad6ad9b1d8609b375e32ab6ab39cfce5e', 0, 0, 1, '2024-05-08', 1, 5, '517548', false), - (86051, '2024-05-10 23:12:20.227124+00', '0xc8e85d625547f88bdc963abaf7ca00e6508e3609', 0, 0, 1, '2024-05-05', 5, 25, '499591', false), - (87221, '2024-05-10 23:12:23.544054+00', '0xfa8c84c75883f1018db0a9be3630338de6d78d9c', 0, 0, 1, '2024-05-05', 1, 5, '374278', false), - (82425, '2024-05-10 23:12:08.840376+00', '0x815f5835f5f296c3961156fc9e234e7b816f853c', 0, 0, 1, '2024-05-05', 10, 50, '416040', false), - (85291, '2024-05-10 23:12:17.861018+00', '0x195e607869276ec4603e9945fb35c1dff88b77ad', 0, 0, 1, '2024-05-05', 2, 10, '436149', false), - (83037, '2024-05-10 23:12:10.689488+00', '0x0429971248718b21ff4d841abef97f95f45aa830', 0, 0, 1, '2024-05-06', 8, 40, '495796', false), - (81887, '2024-05-10 23:12:07.172305+00', '0xb35d01727d3a99bae3e60081dd2bf01acd8f6234', 0, 0, 1, '2024-05-07', 6, 30, '379705', false), - (88135, '2024-05-10 23:12:26.048923+00', '0x67d326011d3806abd512bfe202a031e4d6766539', 0, 0, 1, '2024-05-05', 2, 1, '506580', false), - (84788, '2024-05-10 23:12:16.192086+00', '0x8e47f230c4240138ea7e7d71b0cc18224b40cd43', 0, 0, 1, '2024-05-07', 2, 10, '330471', false), - (83841, '2024-05-10 23:12:13.326241+00', '0xeb4efda57d88f973b21c8fed72331c360b88b13c', 0, 0, 1, '2024-05-06', 2, 5, '451652', false), - (82485, '2024-05-10 23:12:09.074877+00', '0xbe20fa4a5e041c94ac6b1a691caba8b89ad25885', 0, 0, 1, '2024-05-06', 3, 15, '468888', false), - (84527, '2024-05-10 23:12:15.361369+00', '0xcbcd3e618612611a2ff7c7f984bd07449f8ba2f9', 0, 0, 1, '2024-05-05', 2, 10, '276047', false), - (92757, '2024-05-10 23:12:39.25613+00', '0x3d9456ad6463a77bd77123cb4836e463030bfab4', 1639, 1639, 1, '2024-02-06', 1, 0, '4959', true), - (91887, '2024-05-10 23:12:36.897511+00', '0x5b3cec6a5e219674d4485be572cd3faae338bfc6', 2970, 2970, 1, '2024-03-17', 1, 4, '263574', true), - (92081, '2024-05-10 23:12:37.404256+00', '0xbaca88029d2b4c3e7e06af8e5d7df2e3ac8c46c9', 8689, 8689, 1, '2024-02-20', 7, 13, '364940', true), - (93516, '2024-05-10 23:12:41.351029+00', '0x0634f86d3e8902f69fef5b72c73609b01ea3dad8', 1731, 1731, 1, '2024-01-07', 1, 0, '13267', true), - (91577, '2024-05-10 23:12:36.038606+00', '0x0cb27e883e207905ad2a94f9b6ef0c7a99223c37', 3390, 3390, 1, '2023-12-21', 2, 1, '2139', true), - (86106, '2024-05-10 23:12:20.414558+00', '0xb3b1b418cdf35839712b5b76f3d320dcd52ed766', 0, 0, 1, '2024-05-06', 1, 0, '516356', false), - (83273, '2024-05-10 23:12:11.540487+00', '0xbbe733e93adddf5819e401646ae2890ac15ea96b', 0, 0, 1, '2024-05-05', 5, 10, '500300', false), - (86696, '2024-05-10 23:12:22.197905+00', '0x102dc60a0524481a4ce327756f0a5c5d39a4abdd', 0, 0, 1, '2024-05-06', 1, 0, '265799', false), - (85688, '2024-05-10 23:12:19.094224+00', '0xd6a4a5b42aa9929c341ad5a3a864ff56005043ff', 0, 0, 1, '2024-05-05', 23, 67, '379875', false), - (88749, '2024-05-10 23:12:27.576806+00', '0xa32ac6f43458c40369385e60f704912b33312919', 0, 0, 1, '2024-04-17', 4, 1, '437066', false), - (81872, '2024-05-10 23:12:07.158014+00', '0x8dbe4c061273af56306a1aa6bdf7346f2678600b', 0, 0, 1, '2024-05-05', 21, 103, '292132', false), - (83121, '2024-05-10 23:12:10.971874+00', '0xf6880a80ddff66383a192389a1d93f865a867bcd', 0, 0, 1, '2024-05-05', 5, 18, '500889', false), - (82860, '2024-05-10 23:12:10.17463+00', '0xeed77feac1bcd054d51f968814ff03e31e20528e', 0, 0, 1, '2024-05-05', 8, 38, '508188', false), - (88604, '2024-05-10 23:12:27.216492+00', '0x486292647751e8390ba531a3db9899918a99abb6', 0, 0, 1, '2024-04-27', 1, 1, '270758', false), - (88767, '2024-05-10 23:12:27.604538+00', '0xe3bfdff87a32482ec14617abb4982dd5ab8cacb5', 0, 0, 1, '2024-04-18', 1, 5, '357433', false), - (88653, '2024-05-10 23:12:27.353108+00', '0xe9650ab1e08b2bc749eba05e00651a3ff854071f', 0, 0, 1, '2024-04-17', 3, 0, '13209', false), - (87830, '2024-05-10 23:12:25.250909+00', '0xdb03cfe4a7fda20487ea00a09a5624509b5506ca', 0, 0, 1, '2024-05-05', 1, 3, '494509', false), - (82619, '2024-05-10 23:12:09.454098+00', '0x41caa8a4dcae33174832b8f2d3eb45d1e3b72548', 0, 0, 1, '2024-05-09', 5, 21, '453581', false), - (84103, '2024-05-10 23:12:14.103609+00', '0xab51f2a73aec0bec2b194ed4f89604c83a14ba61', 0, 0, 1, '2024-05-06', 8, 36, '449851', false), - (83977, '2024-05-10 23:12:13.706919+00', '0x0264f2dbbfabb4c8a40aad20327c21e1d2d2f904', 0, 0, 1, '2024-05-05', 3, 15, '474054', false), - (95625, '2024-05-13 06:00:36.726457+00', '0x4aab0f8b02eb5c2a794a618d57ce0d7246e653d4', 0, 0, 1, '2024-05-12', 1, 2, '212645', false), - (88798, '2024-05-10 23:12:27.698946+00', '0xc7b44dff84b313600e5bbd4d1aa9a0c1211fd1a1', 0, 0, 1, '2024-04-17', 1, 5, '289306', false), - (82128, '2024-05-10 23:12:08.065553+00', '0xc7487323e18a9354118767e6c35c53675fc8654f', 0, 0, 1, '2024-05-06', 4, 20, '419626', false), - (84308, '2024-05-10 23:12:14.615143+00', '0x4478094f6f5971070346c2a47d27075f44234a46', 0, 0, 1, '2024-05-06', 14, 37, '503318', false), - (86285, '2024-05-10 23:12:21.056811+00', '0xbb812581c6c485416119b14e8c7be7ffedfaaeff', 0, 0, 1, '2024-05-06', 2, 5, '292146', false), - (83312, '2024-05-10 23:12:11.642147+00', '0xbef0359477316ba34675ecd093ec1dd5ca6bfa8c', 0, 0, 1, '2024-05-08', 1, 5, '468224', false), - (83477, '2024-05-10 23:12:12.192702+00', '0xf6f367055e5200628bfda83e0b4810257482129b', 0, 0, 1, '2024-05-08', 1, 5, '487031', false), - (83834, '2024-05-10 23:12:13.322028+00', '0x68b35451c95578151f9535c43c89514e3bf24512', 0, 0, 1, '2024-05-08', 1, 5, '347246', false), - (83658, '2024-05-10 23:12:12.727375+00', '0x2c3560a3829d1fc74013fda53294469814dde0dc', 0, 0, 1, '2024-05-07', 3, 15, '396484', false), - (82749, '2024-05-10 23:12:09.8819+00', '0xc43b5c843c4c19356aa33d9d3a7d54dec1474f84', 0, 0, 1, '2024-05-05', 16, 79, '503265', false), - (81499, '2024-05-10 23:12:06.174091+00', '0x586efe3290bc652916708e13ff97de294bd493e7', 0, 0, 1, '2024-05-06', 11, 50, '472831', false), - (82618, '2024-05-10 23:12:09.457665+00', '0x2fbec7e3d8f1b4460503bea71412438d5fb0b32a', 0, 0, 1, '2024-05-07', 8, 40, '425948', false), - (89015, '2024-05-10 23:12:28.454394+00', '0x1c2ca85254ee1a6ae3d85b9be010c2bbe8600a45', 0, 0, 1, '2024-04-01', 2, 0, '355159', false), - (84890, '2024-05-10 23:12:16.659557+00', '0xa0b839405dae759a07a61918840fb56aae2ba9f7', 0, 0, 1, '2024-05-05', 5, 19, '316238', false), - (82496, '2024-05-10 23:12:09.166126+00', '0xc86f57341ae122491fcea21ee91434f6a133d061', 0, 0, 1, '2024-05-08', 4, 6, '305058', false), - (94056, '2024-05-11 06:00:26.308245+00', '0x8b7b421bbaa9c00733be6d608c40988e9845a015', 0, 0, 1, '2024-05-11', 18, 89, '440403', false), - (81646, '2024-05-10 23:12:06.540104+00', '0x24264d32256d4de18125ff8cdffa0f4de928250e', 0, 0, 1, '2024-05-08', 8, 10, '289489', false), - (94755, '2024-05-12 06:00:35.359657+00', '0x067bcd4bd99284e338d7020528eb080b0721f1fb', 0, 0, 1, '2024-05-11', 5, 25, '405384', false), - (84478, '2024-05-10 23:12:15.249012+00', '0xf9ef51a03ee91bb0107d2b8726a62083e08a17e8', 0, 0, 1, '2024-05-06', 4, 17, '377855', false), - (89909, '2024-05-10 23:12:31.151246+00', '0x4307b3e7686b97fc28750f6a8739048255cd7096', 0, 0, 1, '2024-05-09', 2, 0, '384457', false), - (90338, '2024-05-10 23:12:32.556762+00', '0x12136347cc3855eba2e7e6e9ed755f31d47b4cd5', 0, 0, 1, '2024-05-04', 2, 3, '236302', false), - (88488, '2024-05-10 23:12:26.951952+00', '0x87e4b99ce07073594adda44338705ba1ab674cbd', 0, 0, 1, '2024-05-04', 1, 1, '498398', false), - (88506, '2024-05-10 23:12:26.969526+00', '0x7fc45725d99313f16a6fec2b2e2d2890b01b49bb', 0, 0, 1, '2024-05-04', 1, 1, '281800', false), - (89937, '2024-05-10 23:12:31.433253+00', '0x08a2ac4c8abf3b29d18a33508d333eab9ec29011', 0, 0, 1, '2024-05-06', 6, 0, '254747', false), - (89169, '2024-05-10 23:12:28.866955+00', '0xf753a515caf621ea9af5213984704ab56f915e08', 0, 0, 1, '2024-03-07', 1, 1, '4933', false), - (86049, '2024-05-10 23:12:20.226594+00', '0x30e128ad331ae21d467ba3e710cb686fddc2efbf', 0, 0, 1, '2024-05-06', 1, 5, '328924', false), - (88583, '2024-05-10 23:12:27.19985+00', '0x36deec2038dbe61944d9f69724cf882a7f6817fb', 0, 0, 1, '2024-04-26', 1, 1, '392370', false), - (89257, '2024-05-10 23:12:29.106224+00', '0xb9581d8311cc3b9e677af6b0c55f1b93b69ad6f6', 0, 0, 1, '2024-02-23', 1, 0, '6908', false), - (89966, '2024-05-10 23:12:31.452428+00', '0x7d71de65bc2d348c76974449f11ff8a0e55af952', 0, 0, 1, '2024-05-10', 1, 0, '383984', false), - (90004, '2024-05-10 23:12:31.576631+00', '0x917386d7db259d6243143255c2ecb114ea190480', 0, 0, 1, '2024-05-09', 1, 5, '513598', false), - (90175, '2024-05-10 23:12:32.138546+00', '0xfab9a3d37999e12252b47468d2ffd4be15936012', 0, 0, 1, '2024-05-07', 1, 0, '18561', false), - (89984, '2024-05-10 23:12:31.557774+00', '0xba8d6600f02cd4abd93ec63eb99463a18ac75004', 0, 0, 1, '2024-05-02', 2, 0, '18782', false), - (82765, '2024-05-10 23:12:09.902766+00', '0xff0cee3cdc0e39759db62c016c6fa5f6ca765680', 0, 0, 1, '2024-05-08', 2, 10, '486256', false), - (92206, '2024-05-10 23:12:37.752661+00', '0xcc64cde5f401404063066a8d63857b2354cb3d9c', 1552, 1552, 1, '2024-02-28', 1, 0, '214298', true), - (93704, '2024-05-10 23:12:41.948196+00', '0x2920a3192613d8c42f21b64873dc0ddfcbf018d4', 2846, 2846, 1, '2023-11-13', 1, 2, '57', true), - (88438, '2024-05-10 23:12:26.836281+00', '0x57fb36261e0bb889354a3ff0c5af2a8719779067', 0, 0, 1, '2024-05-04', 1, 5, '376386', false), - (73881, '2024-05-10 23:11:43.33872+00', '0xd18ab3abd74aedcd7af3808669bfe3b187b378e4', 0, 0, 1, '2024-05-05', 10, 50, '445815', false), - (82863, '2024-05-10 23:12:10.169765+00', '0x77b2776fbf3d03498e5ec847a3d79a2977bf3a94', 0, 0, 1, '2024-05-08', 1, 5, '502369', false), - (82649, '2024-05-10 23:12:09.620231+00', '0x2c7fd0347707222eff8cb633ebc1e18ac8768f9a', 0, 0, 1, '2024-05-07', 4, 20, '406461', false), - (86271, '2024-05-10 23:12:20.865362+00', '0x62f543d2035eea186ee5d9dbdceed5d877268c21', 0, 0, 1, '2024-05-05', 4, 19, '403159', false), - (83444, '2024-05-10 23:12:12.157398+00', '0x281ba139840a7497a6ed40a20ac0a4b0a5d604f0', 0, 0, 1, '2024-05-07', 2, 10, '475410', false), - (83429, '2024-05-10 23:12:12.045919+00', '0x53c2185030b95aa5fedab775e6c117bd3b2f1c44', 0, 0, 1, '2024-05-06', 4, 12, '332730', false), - (95718, '2024-05-14 06:00:30.617443+00', '0x09da34e961716041693384a8cd28c36d789d2620', 0, 0, 1, '2024-05-14', 1, 2, '530565', false), - (83971, '2024-05-10 23:12:13.70065+00', '0xd329d94bed0993478be6dfdc4a324aaccf890e3f', 0, 0, 1, '2024-05-08', 1, 5, '491520', false), - (89733, '2024-05-10 23:12:30.724672+00', '0x1b8c37f2ec2619a22a701063de9accc2378e0a6f', 0, 0, 1, '2023-08-24', 4, 0, '18194', false), - (88568, '2024-05-10 23:12:27.102253+00', '0x91acadda620cb46bb55e55c4bcadf21f1723ad7a', 0, 0, 1, '2024-04-25', 3, 10, '389646', false), - (82667, '2024-05-10 23:12:09.638114+00', '0x31119d09e83d6b13d0af6c31cc72471e4804754c', 0, 0, 1, '2024-05-07', 3, 7, '341200', false), - (88198, '2024-05-10 23:12:26.197132+00', '0xa2129145a94f3920faf3de28b5fe613a7a3d19a8', 0, 0, 1, '2024-05-05', 4, 2, '297645', false), - (88706, '2024-05-10 23:12:27.468318+00', '0x429016ac464f96c649cae2a9547e2c3832a41861', 0, 0, 1, '2024-04-20', 1, 0, '399346', false), - (84996, '2024-05-10 23:12:16.99493+00', '0x54de7bed1ea5fb7f48a82f4983f19c7a01927569', 0, 0, 1, '2024-05-02', 3, 8, '470385', false), - (90444, '2024-05-10 23:12:32.833802+00', '0xcb9c7ac0f635618421e6692f573511f9fa002a15', 0, 0, 1, '2024-05-03', 2, 2, '497782', false), - (87036, '2024-05-10 23:12:23.15571+00', '0x8168e2713fef3d83502b9dcef3f08a827c8b2a9a', 0, 0, 1, '2024-05-05', 1, 5, '471246', false), - (86226, '2024-05-10 23:12:20.73735+00', '0x91470af4fa588bed9b19ad81ef0e830c012b0bf2', 0, 0, 1, '2024-05-06', 2, 10, '445791', false), - (82508, '2024-05-10 23:12:09.178933+00', '0x8988d8e80e4d8709c1b9d910e81760e5d547df9c', 0, 0, 1, '2024-05-06', 9, 33, '320047', false), - (86890, '2024-05-10 23:12:22.664357+00', '0x2e801f7665c92649fa51f646b18c4a6df19ecbcc', 0, 0, 1, '2024-05-06', 9, 44, '439393', false), - (83621, '2024-05-10 23:12:12.566468+00', '0x9c11ab5683786b6fb26bb5077175bab69b65fa84', 0, 0, 1, '2024-05-06', 7, 28, '483140', false), - (82799, '2024-05-10 23:12:10.030887+00', '0x2d2cadf39f7c1856fb15b8cb2d5a39808b2cbd89', 0, 0, 1, '2024-05-05', 3, 15, '402682', false), - (86516, '2024-05-10 23:12:21.703759+00', '0x619649bd2e9f1a8b9a2bf621c86e8e19a4c724fb', 0, 0, 1, '2024-05-06', 1, 5, '468936', false), - (83297, '2024-05-10 23:12:11.639871+00', '0x2abd1e2afc6356fc4ab0840300244816df26d1c2', 0, 0, 1, '2024-05-07', 5, 23, '508478', false), - (95862, '2024-05-14 06:00:31.795586+00', '0xae913bcbb6c21f5643a948cce4904696587608d8', 0, 0, 1, '2024-05-13', 1, 5, '507964', false), - (95885, '2024-05-14 06:00:31.847312+00', '0x70a23504ad29aa709d3aa263fcc8f83735c7507b', 0, 0, 1, '2024-05-13', 1, 1, '528024', false), - (81853, '2024-05-10 23:12:07.13083+00', '0x2885dae94dc45958a3c123e0f2ec9349ede562e0', 0, 0, 1, '2024-05-05', 16, 75, '410948', false), - (87122, '2024-05-10 23:12:23.308926+00', '0xdfa60e79a9f86bc54bf6c8ca9df656fa199ab087', 0, 0, 1, '2024-05-05', 1, 5, '262685', false), - (87244, '2024-05-10 23:12:23.684244+00', '0x9d4afb91930fef1c42ed11841a579e5343aca78e', 0, 0, 1, '2024-05-05', 1, 5, '405166', false), - (88309, '2024-05-10 23:12:26.465172+00', '0x2d801b634331d0b260734b6f1d8064c6101bacc4', 0, 0, 1, '2024-05-05', 1, 3, '8634', false), - (83311, '2024-05-10 23:12:11.661816+00', '0xf42fd970012d4b5d2e5d369cd3a6bd68ccd11ced', 0, 0, 1, '2024-05-05', 4, 20, '500970', false), - (82424, '2024-05-10 23:12:08.836847+00', '0xfb14e6423939c101cb4ca44afe950d84e7c97fa8', 0, 0, 1, '2024-05-05', 12, 33, '502052', false), - (88407, '2024-05-10 23:12:26.741294+00', '0x645f38c7110c83bd3aff6caef471a90e245a7b85', 0, 0, 1, '2024-05-05', 1, 2, '13243', false), - (88955, '2024-05-10 23:12:28.12081+00', '0x01498c62cc94e5552a5c516db43da40ac6e1ae6f', 0, 0, 1, '2024-04-04', 1, 1, '307195', false), - (89116, '2024-05-10 23:12:28.711664+00', '0xc8e86483958bc056f10f7d9fe41b1f6d8c79aede', 0, 0, 1, '2024-03-16', 1, 1, '253193', false), - (89227, '2024-05-10 23:12:29.033789+00', '0xf3c5cde46324867aa0a6d95765e83f829132d1b3', 0, 0, 1, '2024-02-25', 1, 0, '371135', false), - (89279, '2024-05-10 23:12:29.222424+00', '0x67831cf55a76e57164b7cc638012f5b5e2657d28', 0, 0, 1, '2024-02-18', 1, 0, '350560', false), - (83685, '2024-05-10 23:12:12.755543+00', '0xdee934372b7eece41d2cb0ee23a69345c250ed40', 0, 0, 1, '2024-03-31', 3, 2, '425382', false), - (82390, '2024-05-10 23:12:08.717889+00', '0x12de1f068e12f6fa6e1318cee2837a5293ecdf8b', 0, 0, 1, '2024-05-05', 9, 32, '500261', false), - (82329, '2024-05-10 23:12:08.579202+00', '0x2f6993d416b418f98c98c630f250736c996173a2', 0, 0, 1, '2024-05-07', 18, 68, '420117', false), - (81464, '2024-05-10 23:12:06.062509+00', '0xcdfe2249781b9a9f60b53721a4b8bb01ce5812fd', 0, 0, 1, '2024-05-07', 20, 37, '287325', false), - (84446, '2024-05-10 23:12:15.212046+00', '0xb9dd35fa5dcc8382af06e9702e0c555a479a5302', 0, 0, 1, '2024-05-05', 7, 29, '354789', false), - (87808, '2024-05-10 23:12:25.157769+00', '0x48bf08eaf0eecf9ca3e89430c6431f5eb0577e98', 0, 0, 1, '2024-05-05', 3, 8, '508766', false), - (82977, '2024-05-10 23:12:10.490045+00', '0xb92c58ed718ef74c3e1fb25419be34bd08d2a96d', 0, 0, 1, '2024-05-08', 2, 6, '500940', false), - (86566, '2024-05-10 23:12:21.824631+00', '0xf7cb438968e20bca0f62af26d317f500e932d233', 0, 0, 1, '2024-05-05', 2, 10, '415013', false), - (83323, '2024-05-10 23:12:11.671251+00', '0x2c119702a8fbdc94398bffbb319ef11b53fbb49a', 0, 0, 1, '2024-05-05', 4, 20, '344273', false), - (83231, '2024-05-10 23:12:11.310008+00', '0x268bbf5bc82de5124d9161b72be965dae604fe38', 0, 0, 1, '2024-05-08', 2, 0, '446261', false), - (87108, '2024-05-10 23:12:23.293284+00', '0x26e52428bebfee613d6ee0314cd74f05b4aabcf6', 0, 0, 1, '2024-05-05', 1, 5, '482218', false), - (85134, '2024-05-10 23:12:17.320995+00', '0xbec391ccb109e2b60c97b7cccf3771ddef80caa3', 0, 0, 1, '2024-05-07', 1, 1, '375995', false), - (82255, '2024-05-10 23:12:08.412101+00', '0x970a4d449766804f49892018d932bb3d6b1c6e95', 0, 0, 1, '2024-05-07', 13, 49, '337426', false), - (83654, '2024-05-10 23:12:12.722302+00', '0x3a88cf9c05cb64cad550e9f90c360ba748e06b02', 0, 0, 1, '2024-05-07', 3, 15, '503372', false), - (85188, '2024-05-10 23:12:17.508827+00', '0x43c31d27ed189070d50f8b20f8a1c908ec2050bc', 0, 0, 1, '2024-05-07', 1, 3, '343646', false), - (87940, '2024-05-10 23:12:25.522842+00', '0x3879c0f66c160bbc6ab3e16f8a548cd428b7f2b4', 0, 0, 1, '2024-05-05', 2, 10, '504189', false), - (89197, '2024-05-10 23:12:28.89261+00', '0x57338a8b97766e785fbbf5c85c1f56ef7d3ea525', 0, 0, 1, '2024-02-29', 2, 1, '6406', false), - (90356, '2024-05-10 23:12:32.572888+00', '0x91942026918fd219c6b62f739c4dab80dd6673b6', 1808, 1808, 1, '2024-05-05', 1, 4, '318447', true), - (90700, '2024-05-10 23:12:33.510946+00', '0xdb1538d47bc28fe6735f0d6d48afa1f13c63aa40', 1939, 1939, 1, '2024-04-26', 1, 3, '23328', true), - (90753, '2024-05-10 23:12:33.730151+00', '0xdde7b1103d7bb19982ef9c6d9a348a0c0ea7e132', 3009, 3009, 1, '2024-04-22', 2, 7, '9565', true), - (85359, '2024-05-10 23:12:18.014293+00', '0x5a99d1dfabbfaf5f0f1cf5ade3d380c0afe11341', 0, 0, 1, '2024-05-07', 1, 2, '354417', false), - (84191, '2024-05-10 23:12:14.263757+00', '0x4bce80b3fef7702b953652656290cf8ec6019154', 0, 0, 1, '2024-05-07', 1, 5, '249099', false), - (84955, '2024-05-10 23:12:16.887901+00', '0x88f3dc8062151a93cf43972d9b13826e756a8290', 0, 0, 1, '2024-05-05', 3, 9, '500745', false), - (82655, '2024-05-10 23:12:09.628358+00', '0xfcc612bb5f21f9229e25553fb0229624c918e745', 0, 0, 1, '2024-05-07', 7, 22, '427292', false), - (82391, '2024-05-10 23:12:08.721153+00', '0x44e503cdab23b97981231e03eccdeb3f15b00905', 0, 0, 1, '2024-05-07', 8, 35, '501778', false), - (84589, '2024-05-10 23:12:15.619765+00', '0x14fe03ba94f2ec1ebc9a5bf24659da8efff413ef', 0, 0, 1, '2024-05-07', 1, 5, '405140', false), - (86844, '2024-05-10 23:12:22.550446+00', '0xa09f629ff92e971731f12aeb86a98a94c633ca65', 0, 0, 1, '2024-05-06', 10, 46, '371303', false), - (86352, '2024-05-10 23:12:21.204258+00', '0x72fbd8353685ba8e7a32825b04b767cf7647ff32', 0, 0, 1, '2024-05-06', 1, 1, '492266', false), - (85368, '2024-05-10 23:12:18.026629+00', '0xbc8689a07a4fa38cba728af18cc9b057248e4caf', 0, 0, 1, '2024-05-05', 4, 20, '508082', false), - (84502, '2024-05-10 23:12:15.3564+00', '0x64505fb427d46d2babf8588f376b0ec5f7d006b4', 0, 0, 1, '2024-05-05', 14, 70, '498568', false), - (88937, '2024-05-10 23:12:28.093942+00', '0x923dee1d701eb1cac2d122824d1272241a642ffc', 0, 0, 1, '2024-04-05', 3, 13, '340184', false), - (82537, '2024-05-10 23:12:09.206857+00', '0x0482593c3cd4ddb23f834317b6f85a716e1ea8c6', 0, 0, 1, '2024-05-06', 16, 78, '413433', false), - (85844, '2024-05-10 23:12:19.57124+00', '0xa002c4ffc3b3646bfe5cec4d523163b2af120aba', 0, 0, 1, '2024-05-06', 2, 6, '407424', false), - (84919, '2024-05-10 23:12:16.695137+00', '0x159ac29c338c0ce4787d4ace66d44d64060df165', 0, 0, 1, '2024-05-06', 2, 10, '497723', false), - (88508, '2024-05-10 23:12:26.968772+00', '0xd54ecdbaaf57229a1b797bcc0ab1574c9787da28', 0, 0, 1, '2024-05-04', 2, 5, '344368', false), - (83729, '2024-05-10 23:12:13.040913+00', '0x8ee5c408725ccdb8cc8bfc116f3bcbb4a039d567', 0, 0, 1, '2024-05-06', 3, 10, '501188', false), - (86650, '2024-05-10 23:12:22.078788+00', '0xcbb3e0543c9bd83951821f8b5a68575fb4cd2935', 0, 0, 1, '2024-05-06', 1, 5, '364020', false), - (84700, '2024-05-10 23:12:15.99946+00', '0xa9b21fddd49a510b85efb15bacd1db63f381ae39', 0, 0, 1, '2024-05-05', 9, 45, '291515', false), - (82374, '2024-05-10 23:12:08.709391+00', '0xa98ced318a41c1f753f1acaf7324ecc84e229465', 0, 0, 1, '2024-05-06', 6, 28, '248532', false), - (84749, '2024-05-10 23:12:16.156555+00', '0x481657fb14b2217abcd0a6e78763ecaca066728a', 0, 0, 1, '2024-05-05', 2, 10, '458343', false), - (88131, '2024-05-10 23:12:26.042651+00', '0xcaa28a80a3adbff3e5b90aa67942ac3ae58e0d37', 0, 0, 1, '2024-05-05', 1, 2, '292685', false), - (88796, '2024-05-10 23:12:27.693715+00', '0x40306af1b8ca18bae88b0c35c8f0b2d06e62d742', 0, 0, 1, '2024-04-16', 1, 0, '320967', false), - (88879, '2024-05-10 23:12:27.93969+00', '0x882cf5711d1062c3439b52e7cb532e15ccdcae92', 0, 0, 1, '2024-04-07', 1, 5, '368297', false), - (89056, '2024-05-10 23:12:28.496123+00', '0x8ebe8b747cab6d473483aa3889870cf31c05d1c6', 0, 0, 1, '2024-03-29', 1, 4, '5602', false), - (85737, '2024-05-10 23:12:19.136646+00', '0x82bc180ad03f3e7d75da3d0aad28e3b96944e486', 0, 0, 1, '2024-05-07', 2, 10, '510299', false), - (83130, '2024-05-10 23:12:10.976701+00', '0xf0c3b4e7319a16dd4e39c378cfae46ad2211ec47', 0, 0, 1, '2024-05-05', 19, 31, '272772', false), - (87086, '2024-05-10 23:12:23.272486+00', '0x137878d2e1ca1739e3f584bdf43741a739df3e7f', 0, 0, 1, '2024-05-05', 2, 0, '15230', false), - (86262, '2024-05-10 23:12:20.854861+00', '0x4a8b487f55e7c94d481f20a50ac64bb0e91ae8e8', 0, 0, 1, '2024-05-06', 1, 5, '19252', false), - (82876, '2024-05-10 23:12:10.18433+00', '0x6c35574c71390b410755af14ae08f121f0f04f62', 0, 0, 1, '2024-05-05', 7, 32, '508575', false), - (87189, '2024-05-10 23:12:23.529047+00', '0x0b4c44335327475934152a782fc43e15cca97a34', 0, 0, 1, '2024-05-05', 1, 5, '509757', false), - (84283, '2024-05-10 23:12:14.51056+00', '0x5da3f3247931b9b3c41ce5cd3c2027db549cf418', 0, 0, 1, '2024-05-07', 1, 5, '326492', false), - (84961, '2024-05-10 23:12:16.894653+00', '0x4375a2f277069c6ddea80f3092344a7ab0dd1e17', 0, 0, 1, '2024-05-07', 2, 2, '451063', false), - (86540, '2024-05-10 23:12:21.791818+00', '0x084f106c9c60aec584e49aadc1ab67cd5a181cfb', 0, 0, 1, '2024-05-06', 1, 5, '514467', false), - (83367, '2024-05-10 23:12:11.780217+00', '0x1e314087e196e6ca03733bdff80079b1d8e132fc', 0, 0, 1, '2024-05-06', 5, 25, '446821', false), - (85011, '2024-05-10 23:12:17.011135+00', '0xb02daa162019ad753718359c3aacf8120a8ef4a1', 0, 0, 1, '2024-05-07', 1, 5, '343942', false), - (87992, '2024-05-10 23:12:25.660795+00', '0x6c7c0d4b7e3fa423cb6e04245011b967d21ea799', 0, 0, 1, '2024-05-05', 1, 1, '394782', false), - (85086, '2024-05-10 23:12:17.188443+00', '0x1f9ee1a4016ae5e3a8cc3485ab2f7f715598e4dc', 0, 0, 1, '2024-05-05', 17, 82, '500217', false), - (86639, '2024-05-10 23:12:22.068147+00', '0xb631c2ce69c83719d771e61c75f324e497dae34d', 0, 0, 1, '2024-05-06', 1, 5, '503858', false), - (86695, '2024-05-10 23:12:22.195252+00', '0xfee15f602e9206f01880840bca6c4360c7934f34', 0, 0, 1, '2024-05-05', 2, 10, '498509', false), - (83737, '2024-05-10 23:12:13.049793+00', '0xea8b39bf6bb5df64688a39e664cd6c080d4472c5', 0, 0, 1, '2024-05-05', 11, 48, '508213', false), - (85262, '2024-05-10 23:12:17.751965+00', '0x2852c9666d19f422b88ad8e9426f14f018aed8cd', 0, 0, 1, '2024-05-07', 2, 7, '406455', false), - (87162, '2024-05-10 23:12:23.419508+00', '0x771ff39074ad0bceade2eb85e6a56e167ff7474c', 0, 0, 1, '2024-05-05', 1, 5, '404484', false), - (87749, '2024-05-10 23:12:25.011482+00', '0xb5ca0b9730ce5a3414f798efdd2e4c354baa7353', 0, 0, 1, '2024-05-05', 1, 5, '355023', false), - (83108, '2024-05-10 23:12:10.955952+00', '0x2b881a9e071172d871fd4680ba83fa293c519aab', 0, 0, 1, '2024-05-06', 4, 10, '434862', false), - (87135, '2024-05-10 23:12:23.394186+00', '0xe7e7939255b5eac38ac3cdd3a6a06ecb4b93b631', 0, 0, 1, '2024-05-05', 29, 48, '426977', false), - (86046, '2024-05-10 23:12:20.223198+00', '0x6f9bb70e856cd5a1827f2d57952e5cf19d37fb9a', 0, 0, 1, '2024-05-06', 1, 3, '426447', false), - (87382, '2024-05-10 23:12:24.107721+00', '0xe5c68df4cf101705798b75b81295a046110e5262', 0, 0, 1, '2024-05-05', 1, 5, '323337', false), - (86829, '2024-05-10 23:12:22.532427+00', '0xb12d5e9bbd0ac43830b3041575ee5230741b1111', 0, 0, 1, '2024-05-06', 2, 10, '404253', false), - (88478, '2024-05-10 23:12:26.935159+00', '0xe6c55b0af75151960005eabae3fe19528c1b131b', 0, 0, 1, '2024-05-04', 2, 7, '7690', false), - (87550, '2024-05-10 23:12:24.522057+00', '0xa6a1f2381186192422da4f3932ffa1462f72da79', 0, 0, 1, '2024-05-05', 1, 5, '501042', false), - (82603, '2024-05-10 23:12:09.432924+00', '0xd24b56884559f5ad0ae8482987772d8f64cf2905', 0, 0, 1, '2024-05-05', 28, 132, '496340', false), - (87774, '2024-05-10 23:12:25.036656+00', '0x9f2792c09bc7afcf28698d434137af53243f62ae', 0, 0, 1, '2024-05-05', 1, 5, '418469', false), - (90314, '2024-05-10 23:12:32.524682+00', '0x19250b770efd981c855195d0ce674f811f350f42', 11258, 11258, 1, '2024-02-22', 9, 39, '326567', true), - (91659, '2024-05-10 23:12:36.363723+00', '0x8494be207c49071064f04ee29b23233ed4cbdfae', 1787, 1787, 1, '2024-03-26', 1, 1, '389151', true), - (91864, '2024-05-10 23:12:36.876857+00', '0x4adc2c01991f4e69b5b2ab67330933a51ce475ec', 4446, 4446, 1, '2024-03-17', 3, 7, '250874', true), - (85857, '2024-05-10 23:12:19.581637+00', '0xfaf34983dfeeebd0a3003f1c29ca4514c755b86c', 0, 0, 1, '2024-05-04', 6, 22, '426622', false), - (88121, '2024-05-10 23:12:25.961165+00', '0x8912e95bd369c4dba816ff9dcc1e0bf207bda168', 0, 0, 1, '2024-05-05', 1, 5, '513720', false), - (88363, '2024-05-10 23:12:26.600269+00', '0x7baca18b8b632595dddb9e0b4bde13a857be2e43', 0, 0, 1, '2024-05-05', 1, 2, '419853', false), - (88697, '2024-05-10 23:12:27.457832+00', '0x0135f337ab4b35b3006eaec61fe7779f270f5b3b', 0, 0, 1, '2024-04-21', 1, 3, '414210', false), - (88773, '2024-05-10 23:12:27.672132+00', '0x6816d223f6def076918f42c1a637cbbbb8c2ee63', 0, 0, 1, '2024-04-16', 1, 1, '435621', false), - (86889, '2024-05-10 23:12:22.662311+00', '0x0c1d47312bb5212cb8b946ec30660d1fa98ab6cf', 0, 0, 1, '2024-02-06', 2, 5, '283893', false), - (82777, '2024-05-10 23:12:09.919291+00', '0xb3542dd5af419ee2538a9c222dcab6d7f0d79c16', 0, 0, 1, '2024-05-07', 2, 10, '481486', false), - (86386, '2024-05-10 23:12:21.443192+00', '0xc8c569023ddbec73380f3be0b940309e61f1a14b', 0, 0, 1, '2024-05-06', 2, 6, '295057', false), - (94915, '2024-05-12 06:00:36.311959+00', '0xd1c805676244085838262806ffb92b21421e5b8d', 0, 0, 1, '2024-05-11', 1, 5, '455846', false), - (96200, '2024-05-14 06:00:34.145638+00', '0x8e2a735f6b3e654d195ea3d095ec8c127174b2ed', 0, 0, 1, '2024-05-13', 1, 5, '485340', false), - (83302, '2024-05-10 23:12:11.643704+00', '0x150cc078b61e1b885d263be12666cc7069bbe095', 0, 0, 1, '2024-05-08', 1, 5, '378683', false), - (83787, '2024-05-10 23:12:13.173103+00', '0xbe0e969fbd5b9283e874dd6c9b2d9a7fe6cb2cc5', 0, 0, 1, '2024-05-08', 1, 5, '502654', false), - (85713, '2024-05-10 23:12:19.11117+00', '0x2d270fc5370ee30b71d5cc84c35b78b88d28a547', 0, 0, 1, '2024-05-07', 1, 3, '260271', false), - (83906, '2024-05-10 23:12:13.547565+00', '0xb611a1f1eefb2f03bc195893c74110c766b2526c', 0, 0, 1, '2024-05-08', 2, 10, '324864', false), - (85418, '2024-05-10 23:12:18.147102+00', '0xfb64066a7ecd6774c62d9663c1c38d8e90e40b5d', 0, 0, 1, '2024-05-06', 5, 24, '503282', false), - (85337, '2024-05-10 23:12:17.915607+00', '0xc0a495d6eed30d3f1385649de4bdd7cb5c8fa02f', 0, 0, 1, '2024-05-05', 2, 6, '505043', false), - (88926, '2024-05-10 23:12:28.078329+00', '0xeae3406c682d35cda8c3c817f51d17f32a0de8fd', 0, 0, 1, '2024-04-04', 1, 0, '388813', false), - (84325, '2024-05-10 23:12:14.647371+00', '0x9043aa89e4153f73079782d7e30e8de8f18681f0', 0, 0, 1, '2024-05-07', 1, 3, '509861', false), - (88284, '2024-05-10 23:12:26.429475+00', '0x560bff187b3aeb91a05837bc92b69d7def5a54b7', 0, 0, 1, '2024-05-05', 1, 5, '500195', false), - (88317, '2024-05-10 23:12:26.474417+00', '0x1bfae73955dc79636d9ec09c3981c9e6a0366e5d', 0, 0, 1, '2024-05-05', 1, 1, '414350', false), - (84311, '2024-05-10 23:12:14.632691+00', '0xc3412f114f6e9fd49ad91468352d10f599dd9401', 0, 0, 1, '2024-05-07', 6, 8, '377951', false), - (88848, '2024-05-10 23:12:27.817393+00', '0x8d6479421b4d76ee38a947360e8418851e8cc72c', 0, 0, 1, '2024-04-05', 3, 15, '430327', false), - (84717, '2024-05-10 23:12:16.019621+00', '0xdad47666402c760d2fdb18423add41ee11eeb9ff', 0, 0, 1, '2024-05-07', 1, 5, '508269', false), - (84216, '2024-05-10 23:12:14.37298+00', '0x71af439d36551c2b42e1d34089ef26c7f572b271', 0, 0, 1, '2024-05-05', 2, 10, '434553', false), - (82400, '2024-05-10 23:12:08.81551+00', '0x4ff9f2a2d413ed73a28650c58bb3d0fd3d2f0a9f', 0, 0, 1, '2024-05-06', 5, 25, '435809', false), - (82222, '2024-05-10 23:12:08.287355+00', '0x5b4edfbd9f4e731d1c9f43c0f5a0dbe05b88a9bf', 0, 0, 1, '2024-05-06', 8, 40, '455272', false), - (87930, '2024-05-10 23:12:25.511074+00', '0xb0477a50cafe4ce6d3f8f64a81cde4f42963755a', 0, 0, 1, '2024-05-04', 3, 15, '192426', false), - (85779, '2024-05-10 23:12:19.279814+00', '0x6251048d2e393c55a20e973ff5cd9c3cfc40a5d8', 0, 0, 1, '2024-05-06', 2, 10, '420275', false), - (84992, '2024-05-10 23:12:16.985188+00', '0x49caea3785e5fc66085e72b8869c557cd2ac8d2c', 0, 0, 1, '2024-05-07', 2, 7, '406237', false), - (82672, '2024-05-10 23:12:09.643344+00', '0x1fa0d05c78f4a67cf146d3c46f49d05ecab6aff4', 0, 0, 1, '2024-05-07', 4, 20, '463262', false), - (88489, '2024-05-10 23:12:26.948038+00', '0x0e35b828026f010a291c1dc0939427b2963d8d5a', 0, 0, 1, '2024-05-04', 1, 5, '7746', false), - (86597, '2024-05-10 23:12:21.929421+00', '0x2b7ad7446975c8a435859d8d399fe9e422d7f20d', 0, 0, 1, '2024-05-06', 1, 5, '421425', false), - (86933, '2024-05-10 23:12:22.772027+00', '0x804bd9fbfd8a759c5fd8e02bc1af5cf9302cee95', 0, 0, 1, '2024-05-06', 1, 4, '414401', false), - (85862, '2024-05-10 23:12:19.590117+00', '0x5bff7b079a639fc4c14af12ad89b27c04f6fd010', 0, 0, 1, '2024-05-06', 1, 3, '414949', false), - (85860, '2024-05-10 23:12:19.5873+00', '0x6431d287a715ca9d5b26831da1724b32e6d65000', 0, 0, 1, '2024-05-06', 4, 14, '357083', false), - (94104, '2024-05-11 06:00:26.681054+00', '0xf4f59dd66873308f9bf9debd98fd8705c073c107', 0, 0, 1, '2024-05-11', 19, 81, '386459', false), - (86308, '2024-05-10 23:12:21.089223+00', '0xdbfcac9ebe08690cf9e808188bfb55f1ae7adfd6', 0, 0, 1, '2024-05-06', 1, 5, '286046', false), - (89324, '2024-05-10 23:12:29.402979+00', '0x462526226e1e0171c79c0e8cfdd138c01f8184ba', 0, 0, 1, '2024-01-19', 2, 1, '218057', false), - (86020, '2024-05-10 23:12:20.057248+00', '0x8f03306b6b1f93830b3b77a5d0bb0d91caa40765', 0, 0, 1, '2024-04-30', 7, 12, '441339', false), - (88656, '2024-05-10 23:12:27.348018+00', '0xbf966e6d886a1f7910d3bc9777709cc37a400b63', 0, 0, 1, '2024-04-23', 1, 5, '363848', false), - (81540, '2024-05-10 23:12:06.214243+00', '0x161796d461324f30db0d0302ae77f5c5fc72dca3', 0, 0, 1, '2024-05-06', 13, 64, '428262', false), - (85581, '2024-05-10 23:12:18.677728+00', '0x4e9875febf00122ce929b36c6698fcf850512a02', 0, 0, 1, '2024-04-14', 3, 5, '418655', false), - (88884, '2024-05-10 23:12:27.947574+00', '0x0ca782145d3c16d31b20c3e6e46dcb42256df282', 0, 0, 1, '2024-04-08', 1, 5, '308804', false), - (88908, '2024-05-10 23:12:27.962391+00', '0x75dc757da6c46fe5514c210f354b849cad6018b9', 0, 0, 1, '2024-04-07', 1, 0, '283431', false), - (85008, '2024-05-10 23:12:17.00897+00', '0xd5844c4157a8c4f3c113328c5e24d510b4b31be6', 0, 0, 1, '2024-02-06', 13, 36, '287191', false), - (89608, '2024-05-10 23:12:30.383828+00', '0xaa848e2e0074c468b1062d8551123243405b5f74', 0, 0, 1, '2023-11-04', 1, 0, '11373', false), - (89812, '2024-05-10 23:12:30.881786+00', '0x47b48e52627910761b93181f3441251b90382338', 0, 0, 1, '2023-08-07', 1, 0, '14387', false), - (90026, '2024-05-10 23:12:31.667869+00', '0x0e918674b6e34b03fddd5b7f2f61dea4252b3b82', 0, 0, 1, '2024-05-08', 3, 2, '274596', false), - (84294, '2024-05-10 23:12:14.608191+00', '0xf457c84cf8ff995d0fcf3a6e03d37afdb0068ef1', 0, 0, 1, '2024-05-07', 5, 2, '15716', false), - (86632, '2024-05-10 23:12:22.056027+00', '0x0c817004bb0419237dcd87426740a3fc1f9b6f1d', 0, 0, 1, '2024-05-06', 1, 5, '505168', false), - (87443, '2024-05-10 23:12:24.266106+00', '0xab66d8a0efd407420b9da172edb30450b501147b', 0, 0, 1, '2024-05-05', 2, 6, '500912', false), - (92430, '2024-05-10 23:12:38.383193+00', '0x30c28d7f9d5747dedee39eccb9e3376457daa3b1', 0, 0, 1, '2024-01-07', 2, 2, '215598', false), - (90661, '2024-05-10 23:12:33.46316+00', '0xf7eefb82425f1d84f9583de382a583192c2749c3', 1380, 1380, 1, '2024-04-26', 1, 1, '350729', true), - (90706, '2024-05-10 23:12:33.574696+00', '0x40ad478fd10e1eedd07c8d686e5632ebe98735fd', 2949, 2949, 1, '2024-04-15', 2, 5, '554', true), - (91117, '2024-05-10 23:12:34.697009+00', '0x2270a4ca23614ece42905045b1ff2cb2a396c4ff', 1622, 1622, 1, '2024-04-11', 1, 1, '211756', true), - (91464, '2024-05-10 23:12:35.683941+00', '0x326fb0eab3645763bc7cc027864ce89269838575', 3621, 3621, 1, '2024-03-20', 2, 6, '296241', true), - (92301, '2024-05-10 23:12:37.992666+00', '0x1d12c9fec45746823861176ce05bdecda06f2115', 2433, 2433, 1, '2024-02-20', 1, 2, '10254', true), - (91423, '2024-05-10 23:12:35.559698+00', '0x3bc0098ce34adcddb2decb9dab2db237e82b3349', 5908, 5908, 1, '2024-02-16', 4, 9, '333640', true), - (92208, '2024-05-10 23:12:37.760194+00', '0x930e27efcf6dffc01c4026acd38f57465dd9a583', 0, 0, 1, '2024-02-25', 1, 0, '358858', false), - (91209, '2024-05-10 23:12:34.937929+00', '0xdd429fa01379e8ed94fea5cc7e6b858c8ad0bde5', 0, 0, 1, '2024-04-08', 1, 5, '308889', false), - (91190, '2024-05-10 23:12:34.915419+00', '0x56463d50e1d58b2036b0dad19784df57d1aa6e9b', 0, 0, 1, '2024-04-08', 2, 0, '325182', false), - (83007, '2024-05-10 23:12:10.650976+00', '0x3addb670e8f242749779c16e0ecf1c4c99194627', 0, 0, 1, '2024-05-07', 3, 10, '359298', false), - (85877, '2024-05-10 23:12:19.589201+00', '0xe94aa5e19ebf80c95fd1d55702cfd30c6a1e2248', 0, 0, 1, '2024-05-06', 1, 2, '453680', false), - (82513, '2024-05-10 23:12:09.186479+00', '0x03610aff52adb7a27896f637837642c6b890b721', 0, 0, 1, '2024-05-08', 2, 10, '502874', false), - (86655, '2024-05-10 23:12:22.084627+00', '0x9ad01751f515952b2d0508d3e444bc5575b964b7', 0, 0, 1, '2024-05-06', 3, 5, '432964', false), - (74128, '2024-05-10 23:11:44.751718+00', '0x85a1e7dcf004b2c768896751170c06704f4da70c', 0, 0, 1, '2024-05-08', 5, 24, '351715', false), - (83419, '2024-05-10 23:12:12.035561+00', '0x2306b8d53f1a0b85cbc0cf09680f02fe1fe409fd', 0, 0, 1, '2024-05-05', 6, 30, '501896', false), - (86702, '2024-05-10 23:12:22.203384+00', '0xc88dcc00463576921fef35cf30e57590ca865b00', 0, 0, 1, '2024-05-06', 3, 8, '464228', false), - (86745, '2024-05-10 23:12:22.301497+00', '0x3fbd4831f938ade69cfec5305dd5a3f115c60525', 0, 0, 1, '2024-05-06', 1, 5, '508995', false), - (87633, '2024-05-10 23:12:24.757004+00', '0x756f87ec958315bed6e8c50e02361302e0c64868', 0, 0, 1, '2024-05-05', 1, 5, '500224', false), - (82280, '2024-05-10 23:12:08.441545+00', '0xf3ce8b875b29b69c78650b639ffa7f5b5166b0ad', 0, 0, 1, '2024-05-06', 20, 90, '404852', false), - (88665, '2024-05-10 23:12:27.369262+00', '0xa4754f9746bb74dbcf1f811e038af5e11802ede9', 0, 0, 1, '2024-04-22', 2, 3, '422603', false), - (89853, '2024-05-10 23:12:31.019232+00', '0xdbb5b14e31560fea965a1709b71e5c6b8f04fbcf', 0, 0, 1, '2023-04-23', 6, 2, '12308', false), - (87900, '2024-05-10 23:12:25.406456+00', '0x3e3672b23eb22946a31263d2d178bf0fb1f4bbfd', 0, 0, 1, '2024-05-05', 1, 1, '232303', false), - (89939, '2024-05-10 23:12:31.434404+00', '0xa7e6cc1b23dcb615f7abf18cbaa4e0e74a0f1784', 0, 0, 1, '2024-04-26', 6, 2, '376849', false), - (86988, '2024-05-10 23:12:23.018607+00', '0xb6cac3eebe7a88c05cefa1839cec250b6cbe66e8', 0, 0, 1, '2024-05-06', 3, 7, '500694', false), - (82196, '2024-05-10 23:12:08.25999+00', '0x8a87c151436f52e3be7aa293aeec449f3097bb2c', 0, 0, 1, '2024-05-05', 16, 65, '499095', false), - (82315, '2024-05-10 23:12:08.566082+00', '0x5aeff799176f210cce1b19c60198185fce4c2ab4', 0, 0, 1, '2024-05-06', 10, 49, '501169', false), - (90743, '2024-05-10 23:12:33.597009+00', '0x707c85d353f5b17669b99dd996a304c33540b2f3', 0, 0, 1, '2024-04-24', 1, 0, '198149', false), - (83708, '2024-05-10 23:12:13.020619+00', '0x0d95e0df118b20b316b670ef55273d4ffaddf5cd', 0, 0, 1, '2024-05-05', 2, 8, '426609', false), - (90185, '2024-05-10 23:12:32.159745+00', '0x7df4e62ce78d4b32b8d7d4a3b5ef2964579d1c53', 0, 0, 1, '2024-05-01', 2, 4, '450453', false), - (83317, '2024-05-10 23:12:11.666169+00', '0xf28278f34fd7aa09f410658aed36ceb0ba7292ec', 0, 0, 1, '2024-05-07', 2, 5, '423079', false), - (84799, '2024-05-10 23:12:16.299012+00', '0xa5d9ad02d7e28e1c3369e55e898a8ade45d3a9eb', 0, 0, 1, '2024-05-06', 2, 10, '477674', false), - (83667, '2024-05-10 23:12:12.737476+00', '0x39c1a1e28aadbdac05454243048976546061128b', 0, 0, 1, '2024-05-06', 2, 10, '513572', false), - (88077, '2024-05-10 23:12:25.910463+00', '0xde3b8e574d1ad67f1726b42c4f9c2e6f0b098f38', 0, 0, 1, '2024-02-03', 4, 7, '230791', false), - (83349, '2024-05-10 23:12:11.764692+00', '0x4a3dccf7a089ef2b96d822babbb6bdac9964a7b8', 0, 0, 1, '2024-05-06', 4, 20, '428304', false), - (87145, '2024-05-10 23:12:23.40107+00', '0xc5b5c61124d9d628428d3895519497c51567a871', 0, 0, 1, '2024-05-05', 1, 5, '408771', false), - (75019, '2024-05-10 23:11:47.417908+00', '0x80bfb7872d90aa4699ebd1970bb48d2668ff5b51', 0, 0, 1, '2024-05-05', 17, 72, '409435', false), - (86499, '2024-05-10 23:12:21.68799+00', '0x851e2341d4a5eb48b2ab305dd3924ba3a3b3812c', 0, 0, 1, '2024-05-06', 1, 5, '424698', false), - (87264, '2024-05-10 23:12:23.7034+00', '0x726772eb950aa116d57d1ecec008fe1f8417cd0b', 0, 0, 1, '2024-05-05', 1, 5, '509630', false), - (88499, '2024-05-10 23:12:26.960153+00', '0xac379456191ec7a658337c278b13d22b3ee2062e', 0, 0, 1, '2024-05-04', 2, 8, '309609', false), - (88586, '2024-05-10 23:12:27.204055+00', '0x7ec37a15327eb3207038470876714f373809ee63', 0, 0, 1, '2024-04-28', 1, 2, '344698', false), - (88621, '2024-05-10 23:12:27.237851+00', '0xa90f4ad35bfa1de7bc5de1cc91b33b9efb7df6e0', 0, 0, 1, '2024-04-28', 1, 4, '425833', false), - (88639, '2024-05-10 23:12:27.34081+00', '0xe7ef67878eca70726a608eb37156e2d4b72e01ff', 0, 0, 1, '2024-04-26', 1, 5, '275481', false), - (88873, '2024-05-10 23:12:27.93507+00', '0x6ca8721a2e4a1570b13e0ff150e16fc507f2f8ac', 0, 0, 1, '2024-03-04', 2, 2, '336594', false), - (81726, '2024-05-10 23:12:06.76687+00', '0x8d8da1895bb4d12a5605753bfc940528b2570a06', 0, 0, 1, '2024-05-05', 55, 101, '412964', false), - (76643, '2024-05-10 23:11:51.795391+00', '0x33b3b31461f5d3ad9aae54205774fb7db77f1bf3', 0, 0, 1, '2024-04-08', 31, 12, '409432', false), - (88703, '2024-05-10 23:12:27.462099+00', '0x33e8320ef0be660855837620b3215d1f46c02df2', 0, 0, 1, '2024-01-31', 3, 6, '17861', false), - (89958, '2024-05-10 23:12:31.454345+00', '0x64ffe8e8cad80c7403340144be8259bca8113079', 0, 0, 1, '2024-05-09', 5, 4, '350410', false), - (89412, '2024-05-10 23:12:29.656736+00', '0xed3b72613da289c454601dc9a3a24fcc30edc5b7', 0, 0, 1, '2024-02-07', 1, 0, '13823', false), - (89989, '2024-05-10 23:12:31.554887+00', '0x55331793ac232a3c703f905a6a953e98c8afd875', 0, 0, 1, '2024-05-09', 1, 0, '444159', false), - (88669, '2024-05-10 23:12:27.36831+00', '0x3c8c5d2738d364b2a5c0fcc0e2b7329d27b0ae36', 0, 0, 1, '2024-04-20', 2, 9, '462810', false), - (86558, '2024-05-10 23:12:21.798002+00', '0x9bf8a253da9707690d0f107551869a1cb1800e52', 0, 0, 1, '2024-05-06', 1, 5, '482987', false), - (88124, '2024-05-10 23:12:25.962486+00', '0xc955a77ea4b7a7118d1e821c3e0917bd574ded4d', 0, 0, 1, '2024-05-05', 1, 5, '473229', false), - (91417, '2024-05-10 23:12:35.549791+00', '0x8a71ff60cdea561bb55cf3db269c58c338a07445', 3077, 3077, 1, '2024-04-02', 1, 5, '345861', true), - (91869, '2024-05-10 23:12:36.882338+00', '0xe2be887916afb9a33015d7f9316b00b4b205c650', 2240, 2240, 1, '2024-03-17', 1, 2, '11997', true), - (93467, '2024-05-10 23:12:41.211481+00', '0xeec7689e935a0d8c440f9b1d403f0b6305935788', 3918, 3918, 1, '2024-01-10', 2, 4, '19776', true), - (92606, '2024-05-10 23:12:38.799641+00', '0x1d2e44dede73dcf080104ec0839a70da14641762', 4227, 4227, 1, '2023-12-24', 2, 5, '18763', true), - (93859, '2024-05-10 23:12:42.478992+00', '0xcddf6531cd48936fc850e51b95a3d3d966beb43d', 2115, 2115, 1, '2023-04-26', 1, 0, '4027', true), - (81954, '2024-05-10 23:12:07.601838+00', '0x8475ee11ed898fb1d75756688affe3306a1ba814', 0, 0, 1, '2024-05-07', 16, 77, '503496', false), - (84725, '2024-05-10 23:12:16.025744+00', '0x3ba83eb0d77a0bd322cd3fefd6b525d7f7dbb520', 0, 0, 1, '2024-05-07', 1, 5, '501508', false), - (83113, '2024-05-10 23:12:10.943216+00', '0x3420ccb574cfc4fed028e28fd792fe1121dfce98', 0, 0, 1, '2024-05-08', 1, 5, '482942', false), - (85727, '2024-05-10 23:12:19.135632+00', '0x558b067ecb915c9866db1cba46b0609263645ced', 0, 0, 1, '2024-05-06', 1, 0, '340315', false), - (84791, '2024-05-10 23:12:16.290448+00', '0x7b82c850f5acc730f880ccb472c2d5dfe1fe84ec', 0, 0, 1, '2024-05-07', 1, 1, '508697', false), - (88273, '2024-05-10 23:12:26.306602+00', '0x82fdfe419dade531ed849bf92d21da23900622ca', 0, 0, 1, '2024-05-05', 1, 5, '423728', false), - (83520, '2024-05-10 23:12:12.29731+00', '0x3dbf7660a298bfc0f025ea7b1378fc8c796df6be', 0, 0, 1, '2024-05-05', 5, 25, '501244', false), - (85038, '2024-05-10 23:12:17.038743+00', '0x510c65b47b3ec60611e9a66ac746f31d55208827', 0, 0, 1, '2024-05-06', 5, 25, '404349', false), - (83080, '2024-05-10 23:12:10.826107+00', '0x5ab2ec798bf9bd12314fc4e78981fa9db6ee7c1d', 0, 0, 1, '2024-05-08', 2, 10, '489119', false), - (84958, '2024-05-10 23:12:16.873158+00', '0xee2f7afb924c20b2c40f818767b9ed58796a8033', 0, 0, 1, '2024-05-07', 1, 5, '500728', false), - (81851, '2024-05-10 23:12:07.135249+00', '0x12f318f4154f289da3df8785730a119fdafb8b36', 0, 0, 1, '2024-05-06', 14, 66, '501790', false), - (86288, '2024-05-10 23:12:21.063244+00', '0xa08fc2dc0805bd6b6fa6e173559eb674b83701d1', 0, 0, 1, '2024-05-05', 6, 23, '501789', false), - (83745, '2024-05-10 23:12:13.126966+00', '0x2af5e780fb2100a6212ce05d8d06d92397d5adb0', 0, 0, 1, '2024-05-08', 1, 0, '397301', false), - (85835, '2024-05-10 23:12:19.483895+00', '0x046c63da46589d3b8241d1acedba1e5e948bf810', 0, 0, 1, '2024-05-06', 1, 1, '436790', false), - (85576, '2024-05-10 23:12:18.687406+00', '0xbfc7f7c5647976e32b2247b53cbb72074817861b', 0, 0, 1, '2024-05-05', 5, 25, '500738', false), - (82449, '2024-05-10 23:12:09.05518+00', '0xa03801cff73610cd2f9cf7e3a9b827af2ce080a2', 0, 0, 1, '2024-05-09', 2, 10, '434770', false), - (84275, '2024-05-10 23:12:14.507211+00', '0xd7ea5a42b69e7f955c5236841827260d8ad81567', 0, 0, 1, '2024-03-15', 6, 5, '13034', false), - (82610, '2024-05-10 23:12:09.450248+00', '0x417fea8f42c52e7d5c7cb044fef14391ad4d6894', 0, 0, 1, '2024-05-06', 15, 61, '500406', false), - (83569, '2024-05-10 23:12:12.442203+00', '0x794e3af8c4365ca85fb74ba4e94115ef4eda1133', 0, 0, 1, '2024-05-06', 6, 30, '391839', false), - (88547, '2024-05-10 23:12:27.078951+00', '0xf16055e5e0a9f2c07215f8a6931dc1bd1d6ccad8', 0, 0, 1, '2024-04-17', 5, 10, '483586', false), - (81841, '2024-05-10 23:12:07.020773+00', '0x6aa13addb4d628ec5531f0cbe9de605ff76a43aa', 0, 0, 1, '2024-05-07', 11, 43, '505633', false), - (96296, '2024-05-14 06:00:34.743984+00', '0xc0878f48fb5b20d14e3feecbe01edb9335a12218', 0, 0, 1, '2024-05-14', 1, 0, '509457', false), - (88986, '2024-05-10 23:12:28.327686+00', '0x3626d9b3ae91a199262556e37aa30b79865fe03d', 0, 0, 1, '2024-04-03', 1, 0, '434451', false), - (94910, '2024-05-12 06:00:36.296065+00', '0xdec933aa2f5af88dce0fafe59508cae91a5a08b3', 0, 0, 1, '2024-05-11', 1, 0, '438733', false), - (82973, '2024-05-10 23:12:10.484593+00', '0xbe7c2c20438fe46d49dba73a2928deabc261d590', 0, 0, 1, '2024-05-06', 8, 30, '500863', false), - (96040, '2024-05-14 06:00:33.054128+00', '0xed8f86a8e2b28b540b3891630ab8755b86d56d72', 0, 0, 1, '2024-05-13', 1, 5, '374040', false), - (82245, '2024-05-10 23:12:08.311568+00', '0x1d9c5484d1cc1e02f646d1fa4c6821bea55b0c35', 0, 0, 1, '2024-05-07', 7, 35, '489791', false), - (81771, '2024-05-10 23:12:06.889808+00', '0xdc11a7d82aee95cefb66c6c51bc8e8c46cd9e303', 0, 0, 1, '2024-05-06', 6, 30, '291771', false), - (87445, '2024-05-10 23:12:24.276292+00', '0xcdcdb39ab745be836613cbdbdb4e32a5b96f7253', 0, 0, 1, '2024-05-05', 1, 5, '427494', false), - (87782, '2024-05-10 23:12:25.137496+00', '0xdd7860cbd0e81f60764e5ecfe36bf0d880ac517b', 0, 0, 1, '2024-05-04', 3, 15, '502237', false), - (86496, '2024-05-10 23:12:21.682286+00', '0x033d7a7490de0be6a71a5d4012f13a2a37d79c7d', 0, 0, 1, '2024-05-06', 1, 5, '438535', false), - (88452, '2024-05-10 23:12:26.846281+00', '0x5fc8c99efc2536037568392ef02294f5ee9910ac', 0, 0, 1, '2024-05-04', 2, 10, '302515', false), - (86954, '2024-05-10 23:12:22.798158+00', '0x85c0c67690a91419057d831c2b773f2e5e6a6386', 0, 0, 1, '2024-05-06', 2, 7, '401388', false), - (86072, '2024-05-10 23:12:20.249649+00', '0x5608601f11c1cbd1e385587f5e71e5444f2f9a14', 0, 0, 1, '2024-05-05', 162, 334, '508265', false), - (83866, '2024-05-10 23:12:13.437331+00', '0x12311ae0c2b1c9e4c0aba2ff210ebf15f1f5528a', 0, 0, 1, '2024-05-06', 3, 15, '424518', false), - (85522, '2024-05-10 23:12:18.43819+00', '0x91775ca17fdfd55306be30da23dca0de2457722f', 0, 0, 1, '2024-05-04', 5, 14, '379722', false), - (86711, '2024-05-10 23:12:22.207573+00', '0xa85bd2bff15565b9653fdba9aedf355d5352da13', 0, 0, 1, '2024-05-05', 3, 7, '254339', false), - (82158, '2024-05-10 23:12:08.157335+00', '0xa1db410045987129adc35546478b5b0de7fd8926', 0, 0, 1, '2024-05-06', 9, 45, '380784', false), - (85925, '2024-05-10 23:12:19.730043+00', '0xcc6e7d78fb55e1fa8d534a416cb6ab95abbed2a9', 0, 0, 1, '2024-05-05', 2, 10, '501031', false), - (87517, '2024-05-10 23:12:24.41547+00', '0x07ef0d75c2a7a7ebc2ee8d449efd8542abd53a8c', 0, 0, 1, '2024-05-05', 1, 0, '20283', false), - (86078, '2024-05-10 23:12:20.252244+00', '0xe04168a3fc8bbf87dff5bef46985e56eb82ed721', 0, 0, 1, '2024-05-05', 2, 2, '20280', false), - (83293, '2024-05-10 23:12:11.564368+00', '0xa691716231b06743db334abaf2c58a886ad8b20f', 0, 0, 1, '2024-05-05', 6, 28, '447691', false), - (88649, '2024-05-10 23:12:27.350803+00', '0xc799cc1e009ac2beb510a8d685f385ac4d693fed', 0, 0, 1, '2024-04-25', 1, 5, '242027', false), - (88918, '2024-05-10 23:12:28.068141+00', '0x1fe3b49614326c8880f309e236039003849db801', 0, 0, 1, '2024-04-05', 1, 2, '328983', false), - (89029, '2024-05-10 23:12:28.464314+00', '0x889a586bc7e6756c0a1273fbe47425043a73cdab', 0, 0, 1, '2024-03-27', 1, 1, '402730', false), - (89107, '2024-05-10 23:12:28.62198+00', '0x143ba89f42f0db0e2bb7f97dcfcc793049828d7c', 0, 0, 1, '2024-03-23', 1, 0, '403288', false), - (89087, '2024-05-10 23:12:28.60395+00', '0x91d4ebb05d3273bdb74af69c20b826f9e76ae542', 0, 0, 1, '2024-03-17', 2, 0, '188140', false), - (90143, '2024-05-10 23:12:32.039589+00', '0x399345e870f9e377a849ba132d4e669cec194e99', 0, 0, 1, '2024-05-07', 1, 2, '385882', false), - (91220, '2024-05-10 23:12:34.952949+00', '0xe0b5e2ceb8bc6cb0c6a4a35ffc36711306acd5fc', 2791, 2791, 1, '2024-03-17', 2, 1, '364533', true), - (92653, '2024-05-10 23:12:38.97837+00', '0x1f5d295778796a8b9f29600a585ab73d452acb1c', 3727, 3727, 1, '2024-02-06', 1, 5, '4686', true), - (89972, '2024-05-10 23:12:31.540952+00', '0xef83a287ded45962997584174ddb2c68dc215e3b', 0, 0, 1, '2024-05-09', 1, 0, '493126', false), - (90176, '2024-05-10 23:12:32.15253+00', '0x5ed86506ff1244bb3ac0c309d5fc5ae6c0375464', 0, 0, 1, '2024-05-06', 1, 1, '439146', false), - (83059, '2024-05-10 23:12:10.801928+00', '0xf8204e783aecb664694b645e5459582d2e3bc083', 0, 0, 1, '2024-05-05', 3, 8, '512773', false), - (86693, '2024-05-10 23:12:22.194566+00', '0x67909fba1b9b1d5d95eceeb7ef966846178eb72e', 0, 0, 1, '2024-05-06', 1, 5, '478632', false), - (83287, '2024-05-10 23:12:11.553441+00', '0x0f8c2cdf07447885f27e3f094b64dc90af681fbd', 0, 0, 1, '2024-05-05', 7, 29, '428492', false), - (82103, '2024-05-10 23:12:08.040085+00', '0xb5e93fa309141e6ae1bc33ffe17029c8d31f047c', 0, 0, 1, '2024-05-05', 42, 146, '499381', false), - (82234, '2024-05-10 23:12:08.302211+00', '0x7f929b0198d1e918e7b8e1097f4ed530bf8a2bd5', 0, 0, 1, '2024-05-07', 3, 15, '396236', false), - (83095, '2024-05-10 23:12:10.935237+00', '0x9e2e41f9051cf32221730a52ee59449ad4237ef5', 0, 0, 1, '2024-05-07', 3, 7, '290733', false), - (82571, '2024-05-10 23:12:09.319116+00', '0xf894d5c988ac2f019a68d23cc8b47e902c5f7702', 0, 0, 1, '2024-05-08', 14, 25, '417051', false), - (87676, '2024-05-10 23:12:24.797492+00', '0x7e0573c91a9391ec8d4d0eb4dd47e3adffb5c26b', 0, 0, 1, '2024-05-05', 1, 5, '503362', false), - (85419, '2024-05-10 23:12:18.147564+00', '0x722ced42de320c54b0a6617c3fdbfb9686a7adee', 0, 0, 1, '2024-05-07', 3, 12, '471730', false), - (75170, '2024-05-10 23:11:47.805544+00', '0xf9d4f6b83f0d227266c88d987d02031e4bfc4758', 0, 0, 1, '2024-05-05', 1, 0, '16043', false), - (90648, '2024-05-10 23:12:33.373193+00', '0xccc63b317efbd8228c2363fa9872ddec20769866', 0, 0, 1, '2024-04-27', 1, 5, '254238', false), - (88891, '2024-05-10 23:12:27.950751+00', '0xf2308fc3767678dd6581a909ffd2855716115f7b', 0, 0, 1, '2024-04-08', 2, 6, '364702', false), - (91036, '2024-05-10 23:12:34.451799+00', '0xc2ebdeb30f7ec840cec0e4f4272a51c9d7f7128c', 0, 0, 1, '2024-04-13', 1, 5, '473848', false), - (91163, '2024-05-10 23:12:34.813605+00', '0x0f8d3248a3df3a6ffd486f79e5c283e37a75a6b5', 0, 0, 1, '2024-04-09', 1, 0, '267734', false), - (83268, '2024-05-10 23:12:11.532806+00', '0x5297e223f443e0b81c51bfe96c8d44dc11f0a0c1', 0, 0, 1, '2024-05-07', 4, 16, '406632', false), - (89489, '2024-05-10 23:12:29.988304+00', '0xb8c46acc66a02c52353e760384c7dbd921c4adcc', 0, 0, 1, '2024-01-30', 3, 4, '241278', false), - (82554, '2024-05-10 23:12:09.30452+00', '0x6df7c9cc271288d5804b92a77813b20f744bfe60', 0, 0, 1, '2024-05-07', 7, 15, '451767', false), - (85328, '2024-05-10 23:12:17.892964+00', '0x5f48328febd2130658ffabbdb7a98a9019e3c089', 0, 0, 1, '2024-05-04', 9, 34, '379750', false), - (82898, '2024-05-10 23:12:10.316392+00', '0x3dff897a7f229f7d5666de577c3e5cc760851cc6', 0, 0, 1, '2024-05-06', 4, 20, '506783', false), - (75109, '2024-05-10 23:11:47.652512+00', '0xd1b9f5c560b3834bd3d9abf1e0c6edeb5304f27d', 0, 0, 1, '2024-05-05', 5, 25, '424530', false), - (87791, '2024-05-10 23:12:25.145953+00', '0xc3ae2ad8e36096ba3a1ec50dda59951065eaa2ff', 0, 0, 1, '2024-05-05', 2, 7, '507319', false), - (83666, '2024-05-10 23:12:12.737019+00', '0xef18910e8dbb848959b201e43edf76e417e22383', 0, 0, 1, '2024-05-05', 2, 10, '307026', false), - (85103, '2024-05-10 23:12:17.296928+00', '0x59ab471173ab0cbb6f86cadf338c68f94c66c8e2', 0, 0, 1, '2024-05-07', 1, 5, '496285', false), - (88487, '2024-05-10 23:12:26.950546+00', '0x4b8b8601a4b5d280254c3610af2a44fcf5c12a9c', 0, 0, 1, '2024-05-04', 2, 3, '345377', false), - (85797, '2024-05-10 23:12:19.443802+00', '0xe62c3c86a762392c7c453e01087b5a87a89770b2', 0, 0, 1, '2024-05-06', 2, 2, '277635', false), - (86355, '2024-05-10 23:12:21.204753+00', '0xa5d967c3c33a3f66674678f4f21e389e5cd8637b', 0, 0, 1, '2024-05-06', 3, 15, '417522', false), - (83599, '2024-05-10 23:12:12.542443+00', '0x41c6daf9e4af1c2215b6353ed42aaa6e82d42fe5', 0, 0, 1, '2024-05-05', 10, 29, '290681', false), - (96308, '2024-05-14 06:00:34.772261+00', '0xf86a998a96aef149fd83676c6ee01cb01c72b863', 0, 0, 1, '2024-05-13', 1, 1, '521062', false), - (89465, '2024-05-10 23:12:29.887528+00', '0xea61010f627d1555b37eb22073ce6206a3f24f32', 0, 0, 1, '2024-02-05', 1, 0, '226468', false), - (89879, '2024-05-10 23:12:31.12165+00', '0xd8aaa186db7214926cdd4c8ab5ef1d919913402f', 0, 0, 1, '2024-05-10', 1, 0, '521811', false), - (89943, '2024-05-10 23:12:31.437421+00', '0xb62020ef89e5a188d80dbddb658d800b283337c0', 0, 0, 1, '2024-05-10', 1, 2, '341038', false), - (90151, '2024-05-10 23:12:32.04958+00', '0x03b8d3fc3059d7a4c5b060449717b6e3aa08a40c', 0, 0, 1, '2024-05-07', 1, 5, '444865', false), - (90539, '2024-05-10 23:12:33.087801+00', '0x622694e8a7b9d2d3f12d2614f151a500b8de49f9', 0, 0, 1, '2024-03-12', 7, 14, '380622', false), - (90326, '2024-05-10 23:12:32.537949+00', '0x4d6c261d83a63d9038f54d54d2a1e9759d5be56e', 0, 0, 1, '2024-05-05', 3, 2, '211145', false), - (90132, '2024-05-10 23:12:32.022849+00', '0xc1490ace8c1805f98b309971dad72503167a6fa9', 0, 0, 1, '2024-03-29', 8, 9, '196086', false), - (91239, '2024-05-10 23:12:35.045701+00', '0x5bc3911beac22f1903fa8ea1d9126eb014e73cc8', 0, 0, 1, '2024-04-07', 1, 0, '384362', false), - (82429, '2024-05-10 23:12:08.844134+00', '0xbde65bfaec402d8e61490a3f81ae139d7b97760e', 0, 0, 1, '2024-05-05', 6, 30, '310768', false), - (90380, '2024-05-10 23:12:32.671548+00', '0xc678a7af0e40ba1e99390b31dbdb7099c563c935', 0, 0, 1, '2024-04-24', 7, 14, '387368', false), - (86760, '2024-05-10 23:12:22.29251+00', '0x3f819ad2846073a6e60d03ae8cedc1ee132a3717', 0, 0, 1, '2024-05-05', 2, 10, '411137', false), - (83570, '2024-05-10 23:12:12.442638+00', '0x131aae0783d8c07acd7f29904b72bab77203a890', 0, 0, 1, '2024-05-08', 3, 9, '439020', false), - (84267, '2024-05-10 23:12:14.49574+00', '0xaa2e6802ddcd2256c76a365dc02533875230f190', 0, 0, 1, '2024-05-07', 1, 5, '507830', false), - (83770, '2024-05-10 23:12:13.159448+00', '0x581eeeadd14da757ab8ab106eda2b25e9aa7c7d2', 0, 0, 1, '2024-05-07', 2, 10, '459348', false), - (84920, '2024-05-10 23:12:16.697758+00', '0x6eb6e110b902c101f9ebef428fad9a29c89664d8', 0, 0, 1, '2024-05-07', 1, 5, '394049', false), - (84940, '2024-05-10 23:12:16.863686+00', '0x25b4c59b790cabd7f9a1c1bd0f6764e413fdae91', 0, 0, 1, '2024-05-07', 1, 1, '508684', false), - (89890, '2024-05-10 23:12:31.131359+00', '0xab50ce0cc16b3c4b55eb0507a268793f05ac50be', 0, 0, 1, '2024-03-13', 2, 5, '16621', false), - (82346, '2024-05-10 23:12:08.675069+00', '0x04c8bec8a375e33e9a0f8b0050e7c0eb3f2ab887', 0, 0, 1, '2024-04-18', 4, 20, '376559', false), - (87200, '2024-05-10 23:12:23.541439+00', '0x3791b96ae2e3140e36274be6a3b298be09a818cf', 0, 0, 1, '2024-05-05', 5, 14, '329280', false), - (83226, '2024-05-10 23:12:11.304596+00', '0x2cf86245b496e3db44e876a428dc9714604f6041', 0, 0, 1, '2024-05-06', 4, 20, '503566', false), - (84621, '2024-05-10 23:12:15.75509+00', '0xeb13f7de87ce1a73bfe196e109ac03cfba42d62c', 0, 0, 1, '2024-05-07', 2, 9, '515761', false), - (85592, '2024-05-10 23:12:18.755067+00', '0x3a1b998d2ad5abb792c3bae9efaa5010c968e9c8', 0, 0, 1, '2024-05-07', 1, 5, '412011', false), - (85609, '2024-05-10 23:12:18.776197+00', '0x59a63491332d79c1a7087db3738f1683b47e66cf', 0, 0, 1, '2024-05-07', 1, 5, '276658', false), - (87658, '2024-05-10 23:12:24.78616+00', '0x0527d7816ab05e35372c2432a72ccaacdb9fd6c5', 0, 0, 1, '2024-05-05', 1, 2, '511805', false), - (93369, '2024-05-10 23:12:40.961999+00', '0x32a6f3de4d2610ec943b6c20ac3341b30dc18d23', 2535, 2535, 1, '2024-02-02', 1, 2, '4215', true), - (93590, '2024-05-10 23:12:41.557509+00', '0x427a1c6dcaad92f886020a61e0b85be8e1c5ead5', 1762, 1762, 1, '2023-12-26', 1, 0, '16353', true), - (93608, '2024-05-10 23:12:41.666967+00', '0x22e2f326fe5a1d07e1214eb1c08346fd816e8375', 2261, 2261, 1, '2023-12-20', 1, 1, '21291', true), - (85847, '2024-05-10 23:12:19.568691+00', '0xbabd212f4435562569ada6765e274c099ffdaee8', 0, 0, 1, '2024-02-06', 4, 10, '13939', false), - (90483, '2024-05-10 23:12:32.940848+00', '0x2ae7ac4d95e1bfe1172fae1c8efe9097119216cf', 0, 0, 1, '2024-04-23', 2, 5, '270528', false), - (86281, '2024-05-10 23:12:20.869715+00', '0xc18b1664d994ecfa059f3fa433ff1c0c783d335e', 0, 0, 1, '2024-05-06', 1, 0, '489373', false), - (86153, '2024-05-10 23:12:20.525379+00', '0x91e6e15765007fb8538eb5ccc90c2c85d79c5591', 0, 0, 1, '2024-05-06', 3, 15, '430244', false), - (82395, '2024-05-10 23:12:08.808294+00', '0x778e7e074f11583f3b550ac75d8bd30f27d30b80', 0, 0, 1, '2024-05-06', 5, 25, '479248', false), - (82630, '2024-05-10 23:12:09.464633+00', '0x2988ac53f9509350201c55f6009a69f3dfee065b', 0, 0, 1, '2024-05-06', 3, 1, '508790', false), - (84484, '2024-05-10 23:12:15.253971+00', '0x20573df984658e59255fd9f607823a2bc1a3b65b', 0, 0, 1, '2024-05-06', 2, 10, '405729', false), - (89106, '2024-05-10 23:12:28.622729+00', '0xcc9ecc161b29c82269cd92a5dc2d6ad88c7ff30b', 0, 0, 1, '2024-03-17', 1, 0, '276006', false), - (89273, '2024-05-10 23:12:29.214681+00', '0x27a0024981bb6b2029e4192e6e7d5177fa74b809', 0, 0, 1, '2024-02-21', 1, 0, '261987', false), - (89517, '2024-05-10 23:12:30.104464+00', '0xd7892946e755d5acf074895d89a351269844ba89', 0, 0, 1, '2024-01-08', 1, 1, '190031', false), - (89758, '2024-05-10 23:12:30.751602+00', '0x9a68f7d67275e0feffb4a714c2db8ba248f53595', 0, 0, 1, '2023-09-10', 1, 0, '18354', false), - (86946, '2024-05-10 23:12:22.792463+00', '0xd7c323bdeb83d7c177e514d24964f5f5de49cdba', 0, 0, 1, '2024-05-06', 1, 5, '455211', false), - (83157, '2024-05-10 23:12:11.085113+00', '0x50f40e1b8f960657d42bf67f22e47c65ccabc608', 0, 0, 1, '2024-05-05', 10, 50, '474179', false), - (88024, '2024-05-10 23:12:25.694654+00', '0xd1898665a01a91ac10bd2c6cb1899336df34ac33', 0, 0, 1, '2024-05-05', 1, 0, '7096', false), - (84993, '2024-05-10 23:12:16.988691+00', '0xd4199fa1a3f731cdd07876429820f7091425af9d', 0, 0, 1, '2024-05-05', 3, 10, '509205', false), - (90534, '2024-05-10 23:12:33.072488+00', '0x27146cd533760e0867db2647dad531fde92d80ef', 0, 0, 1, '2024-05-01', 1, 0, '300568', false), - (83211, '2024-05-10 23:12:11.289302+00', '0xba46dafa0f75b8a2ebb00f0f5d5ee3f0f29a8a7f', 0, 0, 1, '2024-05-05', 4, 5, '507441', false), - (88340, '2024-05-10 23:12:26.572542+00', '0x4fe621c90112a01634c342514b2975b8411a2c2c', 0, 0, 1, '2024-05-05', 3, 15, '486173', false), - (87589, '2024-05-10 23:12:24.629876+00', '0xe35f4e993fa02345d9e58f6d9c12272273945d3e', 0, 0, 1, '2024-05-04', 2, 6, '384415', false), - (88503, '2024-05-10 23:12:26.966603+00', '0x256a1d5b073da8280f812703b80e2eda66ae242c', 0, 0, 1, '2024-05-04', 1, 0, '189541', false), - (90419, '2024-05-10 23:12:32.791947+00', '0x08ebcadbd7b88e8e7104bdffa6a92a6ed7622d24', 0, 0, 1, '2024-04-22', 3, 1, '490976', false), - (89851, '2024-05-10 23:12:31.0216+00', '0xc30caeab7e8dd28442e1f0812def5cc8a2a67215', 0, 0, 1, '2023-07-11', 1, 2, '8831', false), - (89832, '2024-05-10 23:12:31.004804+00', '0x82ab5c63a074f4e0b3777610ed32d99e24466832', 0, 0, 1, '2023-07-02', 3, 5, '13722', false), - (89925, '2024-05-10 23:12:31.417482+00', '0x18ec5566ad26e2ac609822395d6d9e98a39c90ef', 0, 0, 1, '2024-05-10', 1, 0, '484087', false), - (90397, '2024-05-10 23:12:32.688825+00', '0x12ed17d0061c89362a1fd0ba9aa960d68b97bd79', 0, 0, 1, '2024-05-04', 1, 0, '329263', false), - (90649, '2024-05-10 23:12:33.372139+00', '0xa93f1fcd73939fb93423f5c3765a81f98bef6b04', 0, 0, 1, '2024-04-26', 1, 0, '301394', false), - (90962, '2024-05-10 23:12:34.279697+00', '0xb0f154bd171fe8bc01f8a0a4d004c702164741fb', 0, 0, 1, '2024-04-15', 1, 0, '411326', false), - (88800, '2024-05-10 23:12:27.700827+00', '0x141e74a8b4ca2fb5aecac8827e4e7797f68d8692', 0, 0, 1, '2024-04-04', 18, 16, '402351', false), - (91277, '2024-05-10 23:12:35.091599+00', '0xbc0920c838ae3d76d33c93db260ea8be56413128', 0, 0, 1, '2024-04-06', 1, 0, '260344', false), - (91453, '2024-05-10 23:12:35.669762+00', '0x2eeaa7534aa31545e98319ed72827da53264775f', 0, 0, 1, '2024-04-01', 1, 1, '289390', false), - (88727, '2024-05-10 23:12:27.561565+00', '0x4bffc4a44b793a58564d154e49054576b9cd83a3', 0, 0, 1, '2024-04-18', 3, 3, '430199', false), - (85606, '2024-05-10 23:12:18.771844+00', '0xace434032e8fae43b1f20b9863d0702b1ada0e9f', 0, 0, 1, '2024-05-07', 1, 2, '379719', false), - (82250, '2024-05-10 23:12:08.405942+00', '0x019a112bc96d0fb3e05ffaece9949013b040b6cf', 0, 0, 1, '2024-05-08', 3, 15, '434839', false), - (85790, '2024-05-10 23:12:19.433891+00', '0x060f631a0cba4731a80f5f168cac504b74c056bb', 0, 0, 1, '2024-05-06', 1, 5, '376175', false), - (96203, '2024-05-14 06:00:34.147926+00', '0xf9b7b9e02a7e20b616f104d64c7bfa7bb7609984', 0, 0, 1, '2024-05-13', 1, 5, '429794', false), - (86835, '2024-05-10 23:12:22.541305+00', '0x4e3c8e2c8628f2a2e52e8ed3c91eeaa31a75be97', 0, 0, 1, '2024-05-06', 2, 10, '458798', false), - (84072, '2024-05-10 23:12:13.956983+00', '0xb5d20ebec6f9e4bbf091d490687b354ae3509731', 0, 0, 1, '2024-04-18', 2, 1, '444164', false), - (82965, '2024-05-10 23:12:10.470703+00', '0xf451545f79456234cf05e17c2a9b31b24510da70', 0, 0, 1, '2024-05-08', 6, 30, '394794', false), - (82629, '2024-05-10 23:12:09.45937+00', '0x72430cfc6cbead96b2ef218ce6791a394fb50bbe', 0, 0, 1, '2024-05-05', 3, 11, '515320', false), - (83550, '2024-05-10 23:12:12.414779+00', '0x56efede419a4e71e38ab8b6f42109beb8eb29911', 0, 0, 1, '2024-05-08', 1, 5, '493634', false), - (87022, '2024-05-10 23:12:23.053725+00', '0x1ad189e510a9d2b71f8386f14bdc5824b7470ee5', 0, 0, 1, '2024-05-06', 1, 5, '441526', false), - (84021, '2024-05-10 23:12:13.818687+00', '0x38a49bb53bc5346121fd4ec1ce943ad4d5f1e98e', 0, 0, 1, '2024-05-08', 1, 1, '448562', false), - (83248, '2024-05-10 23:12:11.512799+00', '0x9de296fd3d84f00110332e4380c6873ea975e7b0', 0, 0, 1, '2024-05-06', 3, 15, '434644', false), - (84388, '2024-05-10 23:12:14.933152+00', '0x507bf04fe66ac5baf548096f5e440425b2ddff62', 0, 0, 1, '2024-05-07', 1, 4, '432518', false), - (82997, '2024-05-10 23:12:10.642081+00', '0x4b7abe03b174daabe0add682828ceb401794a7eb', 0, 0, 1, '2024-05-07', 3, 15, '407731', false), - (86452, '2024-05-10 23:12:21.569862+00', '0xf8f2579d61fedffdb9208f75b14dfc4f2ee975dd', 0, 0, 1, '2024-05-05', 3, 8, '500524', false), - (88191, '2024-05-10 23:12:26.196584+00', '0xf474eba8755cca9b51edb1d3c96979e06c655111', 0, 0, 1, '2024-05-05', 1, 2, '514742', false), - (85249, '2024-05-10 23:12:17.735361+00', '0x4465358bfedabdc99f0a20c5d42b4945a79af03a', 0, 0, 1, '2024-05-07', 1, 5, '248509', false), - (84202, '2024-05-10 23:12:14.356025+00', '0x9aecb57447049464eb4a3b7ff5fc54a0f6f24481', 0, 0, 1, '2024-05-06', 3, 15, '492127', false), - (89027, '2024-05-10 23:12:28.466803+00', '0xc17547cac2e3275b95730c3ca385ac47a6698c02', 0, 0, 1, '2024-03-31', 1, 1, '316268', false), - (86615, '2024-05-10 23:12:21.949198+00', '0xdfaa5acd08745b64db62d1bc30ef2cce6ce8cdc4', 0, 0, 1, '2024-05-06', 1, 5, '444517', false), - (87960, '2024-05-10 23:12:25.542946+00', '0xcb0c7356e2a359ad168af298c109aa3aa41cef12', 0, 0, 1, '2024-05-04', 3, 10, '505726', false), - (93277, '2024-05-10 23:12:40.691966+00', '0x15265c9989a97f84c01cdba9da4461ae518083fc', 2085, 2085, 1, '2024-02-06', 1, 1, '10710', true), - (91902, '2024-05-10 23:12:36.906957+00', '0xf1e7dbedd9e06447e2f99b1310c09287b734addc', 4545, 4545, 1, '2023-10-19', 2, 5, '15983', true), - (84569, '2024-05-10 23:12:15.600829+00', '0xb283e349a9f50db67ab5fd9617535781684aca14', 0, 0, 1, '2024-05-06', 2, 6, '510718', false), - (85310, '2024-05-10 23:12:17.877919+00', '0x606f89dd037ad4f9da6a6e4a5d3d318f5298eed2', 0, 0, 1, '2024-05-06', 2, 10, '385222', false), - (85714, '2024-05-10 23:12:19.121854+00', '0x376c34a9c588cb253de0a2a6f7db224441ad323b', 0, 0, 1, '2024-05-06', 2, 10, '463117', false), - (88244, '2024-05-10 23:12:26.325876+00', '0x8f28495185676fdc2666282bb528a71c13fa5da6', 0, 0, 1, '2024-05-05', 1, 1, '428777', false), - (88764, '2024-05-10 23:12:27.602117+00', '0x90c6577fb57edf1921ae3f7f45df7a31e46b9155', 0, 0, 1, '2024-04-18', 1, 0, '276369', false), - (88799, '2024-05-10 23:12:27.698772+00', '0x1e3d70175ab98d4d5ca172e32073ede4705d5f73', 0, 0, 1, '2024-04-15', 1, 2, '467763', false), - (84857, '2024-05-10 23:12:16.547241+00', '0x72e710da972f1d07520fc3c1ed1fd5739d2434d4', 0, 0, 1, '2024-05-05', 2, 10, '448704', false), - (86145, '2024-05-10 23:12:20.517764+00', '0x3146183dadd7eecb6be75960ea3f03809bd66c6b', 0, 0, 1, '2024-05-05', 3, 10, '286375', false), - (81563, '2024-05-10 23:12:06.333915+00', '0xac5b42a82ca11285c408137241f170930b083fa1', 0, 0, 1, '2024-05-08', 9, 39, '304027', false), - (88561, '2024-05-10 23:12:27.100494+00', '0xec7d159eec6eb5d555ce985af99cb939ded2609e', 0, 0, 1, '2024-04-30', 1, 5, '266567', false), - (88584, '2024-05-10 23:12:27.195643+00', '0x83cfbf713e60b0dbb093eff8659284c23c20ff27', 0, 0, 1, '2024-04-28', 1, 1, '333171', false), - (88885, '2024-05-10 23:12:27.923121+00', '0x10d90df273e8ff324c9551b72cdf389b02c205ee', 0, 0, 1, '2024-04-09', 1, 0, '464143', false), - (89573, '2024-05-10 23:12:30.268626+00', '0xe1efd0284b2e12d261466d51f421f2d1e930e121', 0, 0, 1, '2023-12-16', 1, 1, '19766', false), - (85311, '2024-05-10 23:12:17.872148+00', '0x5ab212db49b54f9b2e35bd91a6a343dd27503371', 0, 0, 1, '2024-05-07', 2, 4, '501009', false), - (82934, '2024-05-10 23:12:10.353003+00', '0x0aecfbcd36b15dfb73d9ccaaeac1ebc3f8ace5a0', 0, 0, 1, '2024-05-06', 10, 40, '503541', false), - (83707, '2024-05-10 23:12:13.014277+00', '0x019496ab1663e7e83b9692443f17193e24f7b24c', 0, 0, 1, '2024-05-07', 3, 15, '492249', false), - (88263, '2024-05-10 23:12:26.345391+00', '0xeb2db2eee7eec12b6ce01df96204801c9fb85d2b', 0, 0, 1, '2024-05-05', 1, 5, '491529', false), - (83040, '2024-05-10 23:12:10.697436+00', '0x6612b5e6c4e7d976ec31b55d61b9a673ff8d7bbd', 0, 0, 1, '2024-05-06', 2, 10, '402942', false), - (86340, '2024-05-10 23:12:21.184715+00', '0x6c55545b2d5546853eefd67e0917b99de7b0a52b', 0, 0, 1, '2024-05-06', 2, 0, '498638', false), - (95853, '2024-05-14 06:00:31.684739+00', '0x02e3520ed2305712e5904e8dd6362f6b9b59b1cb', 0, 0, 1, '2024-05-13', 2, 10, '378899', false), - (81902, '2024-05-10 23:12:07.468829+00', '0x1af8ac8bc8315958023665e32a99253020b05309', 0, 0, 1, '2024-05-06', 13, 65, '507495', false), - (83047, '2024-05-10 23:12:10.782228+00', '0x5c0aed74917667f07786947ed677a7e3c808e006', 0, 0, 1, '2024-05-05', 10, 38, '193746', false), - (96178, '2024-05-14 06:00:33.851003+00', '0x826cd087f24a482fb74154d4bcbbc3fccc875f95', 0, 0, 1, '2024-05-13', 1, 5, '486604', false), - (82448, '2024-05-10 23:12:09.051178+00', '0xcadf8999361237362d9bd0f02331c24231e3f86f', 0, 0, 1, '2024-05-06', 5, 25, '453489', false), - (83292, '2024-05-10 23:12:11.559609+00', '0xffb3a07089f7689e1fb57f121cc6a3fe6d8f2598', 0, 0, 1, '2024-05-08', 2, 10, '478188', false), - (92265, '2024-05-10 23:12:37.87288+00', '0x6e635abf79020c8b83975b2a4c4cdc9e714b5b73', 0, 0, 1, '2024-02-24', 1, 0, '277673', false), - (91975, '2024-05-10 23:12:37.132226+00', '0x389014ba96e054c86a22b94b03ce66584841c9e0', 0, 0, 1, '2024-02-20', 2, 7, '14555', false), - (92604, '2024-05-10 23:12:38.788664+00', '0x97298c5fed03ac58a36b9ba66883827a24d19328', 0, 0, 1, '2024-02-07', 1, 0, '15824', false), - (74141, '2024-05-10 23:11:44.779725+00', '0x14098a1ee3b523ace93362d017742db6cecf4e16', 0, 0, 1, '2024-05-09', 4, 20, '511325', false), - (92622, '2024-05-10 23:12:38.951326+00', '0xa9d1a5ba39e3182775d6f68db7467f926bbaec29', 0, 0, 1, '2024-02-07', 1, 0, '278749', false), - (92643, '2024-05-10 23:12:38.965687+00', '0xbbdbc5ea0a605c72d8b20cf544e25fb4b742c8fc', 0, 0, 1, '2024-02-07', 1, 0, '250153', false), - (92055, '2024-05-10 23:12:37.381117+00', '0x789cf302793b3b1c2602fb821a4d01ed9c9019c8', 0, 0, 1, '2024-03-08', 1, 0, '382930', false), - (92383, '2024-05-10 23:12:38.247801+00', '0x644ab62146ac6f7f2bde26909b4d71ea214f45d7', 0, 0, 1, '2024-02-15', 3, 1, '348336', false), - (92575, '2024-05-10 23:12:38.764185+00', '0xca590551c68a1a67d54770efe8d89c0276df956f', 0, 0, 1, '2024-02-07', 1, 0, '241099', false), - (92722, '2024-05-10 23:12:39.211991+00', '0x643c7de32ea74f2493494be5fc57f4aa60f2004d', 0, 0, 1, '2024-02-06', 1, 2, '290221', false), - (92657, '2024-05-10 23:12:38.983029+00', '0xfead248385dde60c556e6865859df2de858c203d', 0, 0, 1, '2024-02-06', 1, 1, '280838', false), - (92700, '2024-05-10 23:12:39.09748+00', '0x2957243e9fef66b5d6f713d2194568183b6f1440', 0, 0, 1, '2024-02-06', 1, 1, '236538', false), - (91743, '2024-05-10 23:12:36.519394+00', '0x39b49acb34d450924559c807e8d7ea5668ff1673', 0, 0, 1, '2024-02-06', 3, 1, '279960', false), - (92715, '2024-05-10 23:12:39.21458+00', '0xeb2e886d6f5c8fe3241fa1abdb2167fa0afdb659', 0, 0, 1, '2024-02-06', 1, 3, '259353', false), - (92671, '2024-05-10 23:12:39.085062+00', '0x5b6202cd286af5f6085a9dcfd75401bfcae43852', 0, 0, 1, '2024-02-06', 2, 0, '288871', false), - (92752, '2024-05-10 23:12:39.254301+00', '0x0498d1065db331f28076816dce498319cf0d115b', 0, 0, 1, '2024-02-06', 1, 5, '282900', false), - (92771, '2024-05-10 23:12:39.34365+00', '0x237263686adeeacdc2532e683eeaa720b65a21a7', 0, 0, 1, '2024-02-06', 1, 1, '268445', false), - (92793, '2024-05-10 23:12:39.36346+00', '0xacdcb42df38bc3c89525a2b9ff39004e8ca8f0b9', 0, 0, 1, '2024-02-06', 1, 0, '252948', false), - (92813, '2024-05-10 23:12:39.463362+00', '0xcf51740b13156b8c16c1728e0abf064bd1d1e088', 0, 0, 1, '2024-02-06', 1, 1, '15639', false), - (74046, '2024-05-10 23:11:44.47181+00', '0x77b0352100ebdb86a45557296e05721e48cc6d01', 0, 0, 1, '2024-05-07', 11, 29, '345541', false), - (74460, '2024-05-10 23:11:45.655952+00', '0xefb823e3b4481f3c5526370c7d9e009040c0028a', 0, 0, 1, '2024-05-06', 8, 24, '385262', false), - (83587, '2024-05-10 23:12:12.456952+00', '0x3948de9202618df3f9e5b84be746af505b523a6d', 0, 0, 1, '2024-05-05', 90, 31, '337368', false), - (95681, '2024-05-13 06:00:37.115892+00', '0x4fd052c17c223fc9817f42093dd1cc5710a2dba1', 0, 0, 1, '2024-05-13', 1, 0, '365232', false), - (94902, '2024-05-12 06:00:36.298605+00', '0x0087500a23e9c1d882dd888244840c50756e2447', 0, 0, 1, '2024-05-11', 1, 0, '375542', false), - (92835, '2024-05-10 23:12:39.486439+00', '0xa2f2624c1592fb3542351d34413ebcea679ed744', 0, 0, 1, '2024-02-06', 1, 1, '268782', false), - (86800, '2024-05-10 23:12:22.431943+00', '0xbd46ec7635ea1c5b3c23d42e123ba0b7053bbcc5', 0, 0, 1, '2024-05-06', 7, 32, '404680', false), - (96317, '2024-05-14 06:00:34.781848+00', '0xf73a1eb20d727705e2fd352beb39db1a67b8d379', 0, 0, 1, '2024-05-13', 1, 0, '491477', false), - (82546, '2024-05-10 23:12:09.296868+00', '0xb107c5c09355d5612c3273c7b5ca46fb84e8fdb5', 0, 0, 1, '2024-05-08', 5, 25, '459244', false), - (92920, '2024-05-10 23:12:39.743444+00', '0x69aa2524a2e36900fa41f705a7ae350bfa3edfb2', 0, 0, 1, '2024-02-06', 1, 5, '229358', false), - (93548, '2024-05-10 23:12:41.506367+00', '0x8685daf001e53c859d5720a66e61dd774353b950', 2252, 2252, 1, '2023-12-23', 1, 1, '193884', true), - (93597, '2024-05-10 23:12:41.651545+00', '0x8a4a50b13fd2cb36feb96c408cb98b4c9f2b8f25', 6409, 6409, 1, '2023-09-01', 4, 1, '7781', true), - (93868, '2024-05-10 23:12:42.49407+00', '0x13489a7f09ea0dfe9fdc41390cfbb57f4b6ff0b3', 2618, 2618, 1, '2023-06-23', 1, 1, '4179', true), - (90341, '2024-05-10 23:12:32.560367+00', '0x53cd119ae0bf1fdde5e778d29e873392fee07cca', 0, 0, 1, '2024-04-26', 3, 4, '189588', false), - (93018, '2024-05-10 23:12:40.009451+00', '0x8b8e5a143e34774f55f189dc944951fafd517e72', 0, 0, 1, '2024-02-06', 1, 1, '299049', false), - (93038, '2024-05-10 23:12:40.04194+00', '0x0a251df99a88a20a93876205fb7f5faf2e85a481', 0, 0, 1, '2024-02-06', 1, 0, '17423', false), - (93057, '2024-05-10 23:12:40.136456+00', '0xcdf21c7a85bfe3c74586bfcfcaeeb57793754415', 0, 0, 1, '2024-02-06', 1, 1, '241030', false), - (90779, '2024-05-10 23:12:33.757637+00', '0xc4104bb94eac7e7bb1998b06f83d0159dfa82e5d', 0, 0, 1, '2024-04-21', 1, 5, '460653', false), - (91748, '2024-05-10 23:12:36.519014+00', '0x609ce22461d09f408bbaeee3d3609da7a3841f89', 0, 0, 1, '2024-03-21', 1, 1, '377642', false), - (91815, '2024-05-10 23:12:36.748511+00', '0x4e5fa8291556059c414ea39fd8dbb57d6b33ae5b', 0, 0, 1, '2024-03-17', 1, 1, '263300', false), - (91885, '2024-05-10 23:12:36.885963+00', '0xee11a59fa705ae0a1d22fecdfa78a61f6a4bf9f3', 0, 0, 1, '2024-03-17', 1, 2, '18819', false), - (92794, '2024-05-10 23:12:39.368538+00', '0xc95156073ad922ce5a705f5e08e53ee2ecb31407', 0, 0, 1, '2024-02-06', 1, 1, '274413', false), - (92814, '2024-05-10 23:12:39.464198+00', '0x46e03381c571fe29b58b11e5d0ca2ae6b6a5ca1e', 0, 0, 1, '2024-02-06', 1, 0, '257574', false), - (92833, '2024-05-10 23:12:39.486034+00', '0x2eb9130badc954bdd50a246f432ea228f16450bd', 0, 0, 1, '2024-02-06', 1, 1, '290317', false), - (92852, '2024-05-10 23:12:39.508909+00', '0x801e408c7928c02a340a143766fbef92576fd720', 0, 0, 1, '2024-02-06', 1, 1, '253852', false), - (92892, '2024-05-10 23:12:39.630208+00', '0x015956dddf8ad52bfa9bbecb6ff6a2b55fe0c8df', 0, 0, 1, '2024-02-06', 1, 2, '298886', false), - (92921, '2024-05-10 23:12:39.740799+00', '0x03cee6d27d8a6c3975f96f50f9e854278ab6cdae', 0, 0, 1, '2024-02-06', 1, 1, '279761', false), - (92935, '2024-05-10 23:12:39.767385+00', '0x3cc56ba84ffbca5c89442d172739c666b3a8fdb4', 0, 0, 1, '2024-02-06', 1, 1, '279194', false), - (92996, '2024-05-10 23:12:39.910093+00', '0xd38f91394179246264c2229786302e57b9307cbd', 0, 0, 1, '2024-02-06', 1, 3, '283399', false), - (93015, '2024-05-10 23:12:40.00861+00', '0x7521f691f3fc5c385c80ab2ed75c6b548ef10f93', 0, 0, 1, '2024-02-06', 1, 5, '301175', false), - (93035, '2024-05-10 23:12:40.039823+00', '0xda01a038bf715bfa4aaa119371a768f3972b5a99', 0, 0, 1, '2024-02-06', 1, 1, '253316', false), - (92977, '2024-05-10 23:12:39.887935+00', '0x4be6638a4547c7fdc978e82c1da97ea19c31ad1a', 0, 0, 1, '2024-02-06', 2, 5, '258489', false), - (93069, '2024-05-10 23:12:40.151831+00', '0x3bc109da04a69322e426fa7a4f6fc369a55cdb52', 0, 0, 1, '2024-02-06', 1, 1, '279211', false), - (91763, '2024-05-10 23:12:36.627267+00', '0xbadf9239aa521c19b633d0ca27ea3ed6728452b8', 0, 0, 1, '2024-03-14', 3, 0, '365384', false), - (91991, '2024-05-10 23:12:37.133801+00', '0x465c63680f2a0b4277d9b4cecc3f3310e531a77f', 0, 0, 1, '2024-03-11', 1, 5, '14943', false), - (93076, '2024-05-10 23:12:40.157179+00', '0x864d9678b5613c4459ecde40fc5f76d292faaab2', 0, 0, 1, '2024-02-06', 1, 0, '252639', false), - (93139, '2024-05-10 23:12:40.283344+00', '0xa086c0487531b45431b2397d24609c6d0e09d089', 0, 0, 1, '2024-02-06', 1, 3, '289427', false), - (74609, '2024-05-10 23:11:46.244863+00', '0xd765a67d91a7d186b372e0bc5e6382296e6b216d', 0, 0, 1, '2024-04-20', 8, 29, '402406', false), - (93157, '2024-05-10 23:12:40.412493+00', '0xd8970c4bdf60557b1f9d88bbc078fef0ab9ac58e', 0, 0, 1, '2024-02-06', 1, 4, '252991', false), - (92041, '2024-05-10 23:12:37.283815+00', '0xbc0a05fa7fbdc5ba44d49223011066236d5ef79d', 0, 0, 1, '2024-02-06', 2, 10, '277792', false), - (93174, '2024-05-10 23:12:40.433097+00', '0xd3bc9161eabf73b1695452ca0e1706f86b196721', 0, 0, 1, '2024-02-06', 1, 4, '272094', false), - (96229, '2024-05-14 06:00:34.274303+00', '0xa7ad936f4613d0f04cbca84776c04d9f64e328bb', 0, 0, 1, '2024-05-13', 2, 10, '378602', false), - (93191, '2024-05-10 23:12:40.44995+00', '0x00779b79bb1ec71ce36340c1128687c61cfb0feb', 0, 0, 1, '2024-02-06', 1, 1, '235097', false), - (79497, '2024-05-10 23:12:00.118102+00', '0xc98b07fb077d0f2759bd8e82e03913b952b348d8', 0, 0, 1, '2024-02-07', 75, 139, '316409', false), - (92639, '2024-05-10 23:12:38.963184+00', '0x0fa6c69f455973600804979f476e321b2ac58ab7', 0, 0, 1, '2024-02-07', 1, 5, '271944', false), - (92697, '2024-05-10 23:12:39.111539+00', '0x5708a3a4d21f40dcdd75ea3cd93ade93daf678b7', 0, 0, 1, '2024-02-06', 1, 1, '290688', false), - (92718, '2024-05-10 23:12:39.214344+00', '0x71b0f3a66b12b47f2cbee6cd6ff4ffbe71a1c5e6', 0, 0, 1, '2024-02-06', 1, 5, '267321', false), - (92735, '2024-05-10 23:12:39.236854+00', '0x6a66593fa2cd128deda27bc6c43ba927ade21dd8', 0, 0, 1, '2024-02-06', 1, 2, '243627', false), - (92750, '2024-05-10 23:12:39.253122+00', '0xb6de2f25d47f7246573ee50737f8962f2d34af76', 0, 0, 1, '2024-02-06', 1, 5, '261664', false), - (92774, '2024-05-10 23:12:39.348944+00', '0x00ba15cf5dc64148f550f6002a472eef08ee0dbd', 0, 0, 1, '2024-02-06', 1, 1, '267448', false), - (92791, '2024-05-10 23:12:39.365914+00', '0x1671241d7d07df64beaf5c5c1261d58261321b6f', 0, 0, 1, '2024-02-06', 1, 1, '294200', false), - (92024, '2024-05-10 23:12:37.260955+00', '0xfe3bc1eb469c70bfb462a9e208826e990bb078c0', 0, 0, 1, '2024-02-10', 18, 21, '256061', false), - (92810, '2024-05-10 23:12:39.386189+00', '0xe455946a95c1f6d03a6f9dbadded915e81539e5d', 0, 0, 1, '2024-02-06', 1, 2, '259794', false), - (92826, '2024-05-10 23:12:39.482161+00', '0x10d69e040469ae4a64954b6634876eecffbf2861', 0, 0, 1, '2024-02-06', 1, 1, '281790', false), - (92521, '2024-05-10 23:12:38.632195+00', '0x9da6b5ad2fc347d4bf0a6e21bc69b7f5987a9153', 0, 0, 1, '2024-02-09', 1, 5, '279037', false), - (92861, '2024-05-10 23:12:39.595094+00', '0xc9e086343a15ff2fb8a6078777fc49f31e3d48bf', 0, 0, 1, '2024-02-06', 1, 0, '294681', false), - (92336, '2024-05-10 23:12:38.132737+00', '0x81ba93b26bce8ca5d649b6607df15e6d45462d8f', 0, 0, 1, '2024-02-18', 1, 3, '9610', false), - (92900, '2024-05-10 23:12:39.635771+00', '0x61eb07291cd96eb55b86e5311904e6f8d06bbb00', 0, 0, 1, '2024-02-06', 1, 1, '252616', false), - (93215, '2024-05-10 23:12:40.542221+00', '0x800f86e125503e8b0d813b3429dff1fe78a67c78', 0, 0, 1, '2024-02-06', 1, 5, '267395', false), - (93234, '2024-05-10 23:12:40.559228+00', '0x460786e28a624c39a98b5382950684169cf7f4c4', 0, 0, 1, '2024-02-06', 1, 1, '288748', false), - (93252, '2024-05-10 23:12:40.665298+00', '0x32ff26818532a09cac1f69b0d3d332177e11ee92', 0, 0, 1, '2024-02-06', 1, 5, '251699', false), - (94110, '2024-05-11 06:00:26.690793+00', '0x74fbafade3e1aedd4d449cacb88a9c6cecd4965f', 0, 0, 1, '2024-05-11', 18, 86, '443393', false), - (84837, '2024-05-10 23:12:16.35655+00', '0x7428e5e5e414c1b0d55eac81fe0f21d11f5b57cc', 0, 0, 1, '2024-05-07', 6, 30, '508236', false), - (83289, '2024-05-10 23:12:11.56007+00', '0x2cadb7fb5fc5eadfb167e8390b7aac15065b9317', 0, 0, 1, '2024-05-07', 9, 36, '411804', false), - (93331, '2024-05-10 23:12:40.838454+00', '0x894c933c4113fa86a84262f12610d4e8266e9194', 0, 0, 1, '2024-02-04', 2, 0, '232687', false), - (73943, '2024-05-10 23:11:43.561715+00', '0xbdf8a2686c675851130350ca4e1cd21e6707a268', 0, 0, 1, '2024-05-06', 39, 118, '504309', false), - (92916, '2024-05-10 23:12:39.747818+00', '0xff86b59f479f2956e33067ed8b8ff0e9ed788172', 0, 0, 1, '2024-02-06', 1, 2, '246010', false), - (92390, '2024-05-10 23:12:38.26188+00', '0xe3293a736d2bbe183f5c0a90cdb0fe0518f8834e', 0, 0, 1, '2024-02-14', 1, 1, '268419', false), - (93643, '2024-05-10 23:12:41.811979+00', '0xe57caba8b8d3bf68ce2f8c8a5b6f297d0f6d1253', 0, 0, 1, '2023-12-11', 2, 1, '202391', false), - (93271, '2024-05-10 23:12:40.696478+00', '0xdc06d8eaa3dc6c68a447849edf0897e469386e67', 0, 0, 1, '2024-02-05', 1, 1, '262504', false), - (92893, '2024-05-10 23:12:39.63132+00', '0x100458d8c8c943a11b84689ea885a97d8ea9fe2c', 0, 0, 1, '2024-02-06', 1, 0, '296257', false), - (92914, '2024-05-10 23:12:39.74248+00', '0x8ded2ab01ea7965cc0bfde74d03fea49cf77ebe9', 0, 0, 1, '2024-02-06', 1, 0, '253076', false), - (92962, '2024-05-10 23:12:39.879031+00', '0x34081c0fb0560787e8dd886a7203fda9ce6459d0', 0, 0, 1, '2024-02-06', 1, 2, '230246', false), - (92944, '2024-05-10 23:12:39.778654+00', '0xebc1336b4ffd5beff67f84176d8ef45f7d7ef1ef', 0, 0, 1, '2024-02-06', 2, 0, '271601', false), - (92981, '2024-05-10 23:12:39.896941+00', '0x3fabbc9cf512a5d57b6130497dd0ac3e005f9615', 0, 0, 1, '2024-02-06', 1, 3, '269584', false), - (93124, '2024-05-10 23:12:40.28475+00', '0x3e213371c23e9767167b2160b9ac807e9161fdb6', 0, 0, 1, '2024-02-06', 1, 4, '269295', false), - (93586, '2024-05-10 23:12:41.55403+00', '0x517750948ad729fc150631ee52dc1219c8492d2e', 0, 0, 1, '2023-12-28', 1, 2, '15677', false), - (93667, '2024-05-10 23:12:41.83607+00', '0x7258b89c7a3937bf9d2b66d0ab3e492cf006b861', 0, 0, 1, '2023-12-08', 1, 2, '199458', false), - (91202, '2024-05-10 23:12:34.930945+00', '0x3b78637e124f302ca73257ea6babc705ac0208dc', 0, 0, 1, '2024-04-08', 1, 0, '401404', false), - (93214, '2024-05-10 23:12:40.543688+00', '0x7c426a5b23541769ceb8f9e3fec6e7bd8ced311a', 0, 0, 1, '2024-02-06', 1, 0, '277891', false), - (90847, '2024-05-10 23:12:33.993987+00', '0xb243cf8523398da020b441b3ae67a0943bbc000b', 0, 0, 1, '2024-04-03', 4, 2, '428966', false), - (93235, '2024-05-10 23:12:40.559397+00', '0xfb7c71bcc5c594b12431f0d06d230ccad2b55d95', 0, 0, 1, '2024-02-06', 1, 5, '278856', false), - (90540, '2024-05-10 23:12:33.091273+00', '0x0040daac32d83c78546ae36da42a496b28ab09e1', 0, 0, 1, '2024-02-04', 4, 5, '2915', false), - (91704, '2024-05-10 23:12:36.41214+00', '0xad987861f38c384272dafb6d952fbf97cdac5e18', 0, 0, 1, '2024-03-24', 1, 5, '377426', false), - (93396, '2024-05-10 23:12:40.946414+00', '0xd07c2579a777ab27aa401b5a6adbaa18266533d3', 0, 0, 1, '2024-02-02', 1, 1, '193974', false), - (91730, '2024-05-10 23:12:36.496097+00', '0x2102202e25c69f14e0e1a2915cfd5b74db30594a', 0, 0, 1, '2024-03-21', 1, 4, '189550', false), - (90890, '2024-05-10 23:12:34.042826+00', '0xe4d24a5636db147d2e112eda1de166462a8ec5f2', 0, 0, 1, '2024-03-21', 6, 10, '378724', false), - (92071, '2024-05-10 23:12:37.394989+00', '0x785c458bc4de86fa2c8e4eeb82ffe03884b23fee', 0, 0, 1, '2024-03-08', 1, 0, '349388', false), - (92092, '2024-05-10 23:12:37.41416+00', '0xa5e0b891d5f7daa83ab1b760e56099bb23f7ab85', 0, 0, 1, '2024-03-08', 1, 0, '267633', false), - (92214, '2024-05-10 23:12:37.766533+00', '0x6a767cc8e91366db9617d10bc53d773739a07f89', 0, 0, 1, '2024-02-25', 2, 0, '370803', false), - (92389, '2024-05-10 23:12:38.247995+00', '0x0a2c44f8ccd4e13817894f266f6753777f3d44a2', 0, 0, 1, '2024-02-15', 1, 5, '332735', false), - (92490, '2024-05-10 23:12:38.512165+00', '0x53d63286426a8051a707d5b7d17e28aaad10a411', 0, 0, 1, '2024-02-10', 1, 1, '278704', false), - (92589, '2024-05-10 23:12:38.781842+00', '0xa858ea02845071dbe09b4b5c3bbea49529beaadb', 0, 0, 1, '2024-02-07', 1, 5, '191448', false), - (92627, '2024-05-10 23:12:38.946521+00', '0xf9d3b41486c175623ba67f8f51125e50328bd011', 0, 0, 1, '2024-02-06', 1, 2, '269497', false), - (95353, '2024-05-13 06:00:34.931782+00', '0x08c0581a39b7e6fa0bee0fdad2aaf9bf2dae03af', 0, 0, 1, '2024-05-12', 1, 0, '488892', false), - (93272, '2024-05-10 23:12:40.697371+00', '0x54319e41affd0211fe22c34c2c7fe3905f87cf75', 0, 0, 1, '2024-02-05', 2, 8, '19364', false), - (95665, '2024-05-13 06:00:37.016046+00', '0x8abdc026a8a00c2a03f1747d8fd8f6f4d440daee', 0, 0, 1, '2024-05-12', 1, 4, '443245', false), - (95685, '2024-05-13 06:00:37.23368+00', '0xf967817b892f82da16ee21fdd0667fcf9cc9caf1', 0, 0, 1, '2024-05-12', 1, 5, '217025', false), - (92656, '2024-05-10 23:12:38.977741+00', '0x07218767dbbc42ddda9193c44f25713e4b4550a4', 0, 0, 1, '2024-02-06', 1, 0, '235677', false), - (92681, '2024-05-10 23:12:39.084501+00', '0x47d2b6d9c730a36e25b412d206ac696b02c60ea7', 0, 0, 1, '2024-02-06', 1, 3, '260498', false), - (92701, '2024-05-10 23:12:39.116803+00', '0x41aabe72f28ba6d01165325231765468f52a4b23', 0, 0, 1, '2024-02-06', 1, 3, '310173', false), - (92716, '2024-05-10 23:12:39.215838+00', '0x4cacedf98b195a41af7e3661fd187145aeebd0a2', 0, 0, 1, '2024-02-06', 1, 5, '278280', false), - (92743, '2024-05-10 23:12:39.235528+00', '0x901e29bd31152f1a7b086fe9ef51311f32bf6b9b', 0, 0, 1, '2024-02-06', 1, 1, '258151', false), - (92767, '2024-05-10 23:12:39.338328+00', '0x1b70aff5a8202a8cae3eb99eb996586557e8cb10', 0, 0, 1, '2024-02-06', 1, 0, '288852', false), - (92785, '2024-05-10 23:12:39.358206+00', '0xe99000b8904c5ebd5c9df55e7ae56dc472ba1c37', 0, 0, 1, '2024-02-06', 1, 5, '242635', false), - (92800, '2024-05-10 23:12:39.375452+00', '0x0f792e55668ad78476d4b563e6eb1228d636a71e', 0, 0, 1, '2024-02-06', 1, 4, '23117', false), - (92821, '2024-05-10 23:12:39.474575+00', '0x7597a500be81d983f51a81651a86403c5ab413ce', 0, 0, 1, '2024-02-06', 1, 1, '277296', false), - (82035, '2024-05-10 23:12:07.762336+00', '0x83bba519b1482bde75aca2fae2a1fb817b3e4c52', 0, 0, 1, '2024-05-07', 11, 30, '505641', false), - (94585, '2024-05-12 06:00:34.190837+00', '0xae2f653ddf1f45608e8e2cde0b7b54f29387dc84', 0, 0, 1, '2024-05-11', 6, 9, '516361', false), - (92839, '2024-05-10 23:12:39.49222+00', '0x975a4bdd7e4a1af03d8c3e88142957a7fc63cd3e', 0, 0, 1, '2024-02-06', 1, 0, '14418', false), - (92901, '2024-05-10 23:12:39.638341+00', '0x1668da8d5401c3741b1bc8b6d4b0dbe29d4421a3', 0, 0, 1, '2024-02-06', 1, 1, '308144', false), - (94508, '2024-05-12 06:00:33.822266+00', '0x3bb72e15b2b7c51f70bfb5114c4e6480f3b143be', 0, 0, 1, '2024-05-11', 2, 4, '468889', false), - (94913, '2024-05-12 06:00:36.303702+00', '0xef530dba0c0bf455838275e0040102e631901057', 0, 0, 1, '2024-05-11', 1, 0, '304032', false), - (92919, '2024-05-10 23:12:39.746667+00', '0xa030785c5ef4502158f34370c56696e2357f0657', 0, 0, 1, '2024-02-06', 1, 1, '257983', false), - (92936, '2024-05-10 23:12:39.767088+00', '0x1d5ca1ebc28411db02b8a28eed57615122c2331b', 0, 0, 1, '2024-02-06', 1, 1, '261028', false), - (92927, '2024-05-10 23:12:39.759052+00', '0xaa7f9ca22dd4072599699fcfe98d3f998be33643', 0, 0, 1, '2024-02-06', 1, 0, '310226', false), - (92946, '2024-05-10 23:12:39.778735+00', '0x6850d96c81355ac02b6069e7bf8fcd1a272e2cd5', 0, 0, 1, '2024-02-06', 1, 1, '276871', false), - (92964, '2024-05-10 23:12:39.881124+00', '0xad6f59149ee5e2362b6fc614e4754e2c42b43f49', 0, 0, 1, '2024-02-06', 1, 1, '302193', false), - (92982, '2024-05-10 23:12:39.901856+00', '0x9e4907b269e9c3721a9ff466e1865229734f15e4', 0, 0, 1, '2024-02-06', 1, 0, '291601', false), - (81515, '2024-05-10 23:12:06.181397+00', '0x16d0521e17a5c59cf835227062b2e42d42235fdf', 0, 0, 1, '2024-05-06', 14, 64, '471610', false), - (95656, '2024-05-13 06:00:36.982499+00', '0x285c54d5fe93a2af4dcc788f878e042a02839946', 0, 0, 1, '2024-05-12', 1, 0, '388485', false), - (92895, '2024-05-10 23:12:39.636061+00', '0xbdb72ebda57b0c955046b848079780c50d0ac663', 0, 0, 1, '2024-02-06', 2, 1, '306936', false), - (93004, '2024-05-10 23:12:39.916397+00', '0xf40933ab7f7e931438d64a6e519022e8503c934c', 0, 0, 1, '2024-02-06', 1, 0, '254038', false), - (93026, '2024-05-10 23:12:40.027638+00', '0x0e5b9027974fc105a1c4653076b61a5330bbe908', 0, 0, 1, '2024-02-06', 1, 1, '295140', false), - (93047, '2024-05-10 23:12:40.052354+00', '0x67dee3dd897912178301183760e47eca09ee71e1', 0, 0, 1, '2024-02-06', 1, 0, '299974', false), - (93107, '2024-05-10 23:12:40.265502+00', '0xab7d8b061721611f6f5826f35c640aba60967e11', 0, 0, 1, '2024-02-06', 1, 0, '270350', false), - (93120, '2024-05-10 23:12:40.285318+00', '0x43b15c7c74f7b5cdee3aaaca0feb868d04f37d46', 0, 0, 1, '2024-02-06', 1, 0, '266088', false), - (93144, '2024-05-10 23:12:40.2976+00', '0x64be6426cb07428d2e3ceb1ffceba6e167345ab4', 0, 0, 1, '2024-02-06', 1, 1, '293049', false), - (93109, '2024-05-10 23:12:40.265724+00', '0x4a4e38de548f3bc69cddb003e5c42c6bca147539', 0, 0, 1, '2024-02-06', 1, 4, '272901', false), - (93129, '2024-05-10 23:12:40.291074+00', '0x844460231bf3feb38969f616f488cd89fc48887d', 0, 0, 1, '2024-02-06', 1, 0, '267699', false), - (73977, '2024-05-10 23:11:44.25526+00', '0xd6c09962e907428112069273d5c0dc861e7b1c57', 0, 0, 1, '2024-03-29', 36, 39, '415745', false), - (95030, '2024-05-13 06:00:31.551248+00', '0x700058d456f31ed9adc7349ccf289aa333c78705', 0, 0, 1, '2024-05-12', 3, 8, '516703', false), - (74093, '2024-05-10 23:11:44.609461+00', '0x44abe66c01eb559a742f7667d3db08fe9570cf08', 0, 0, 1, '2024-05-08', 20, 44, '385104', false), - (93171, '2024-05-10 23:12:40.42828+00', '0x6c7561adf7486742fb13d0a93fe589cb3991c224', 0, 0, 1, '2024-02-06', 1, 3, '249994', false), - (93212, '2024-05-10 23:12:40.535817+00', '0x58aaf02752f72204d246a07a650247055755c3dc', 0, 0, 1, '2024-02-06', 1, 0, '242246', false), - (93232, '2024-05-10 23:12:40.556387+00', '0x0caffcdc2d71e4c51267e867bd8dd90aeed84383', 0, 0, 1, '2024-02-06', 2, 6, '251615', false), - (93320, '2024-05-10 23:12:40.822986+00', '0xfab61bc810051f3c15f1fd1172e25fc634b25555', 0, 0, 1, '2024-02-04', 1, 0, '18167', false), - (93583, '2024-05-10 23:12:41.551898+00', '0xdc8cf1935dc61899370c8d64ef059d332235ec1d', 0, 0, 1, '2023-12-20', 2, 0, '16671', false), - (93549, '2024-05-10 23:12:41.504389+00', '0xcaa30374bd717cca5e4528c26cf5845229160ad4', 0, 0, 1, '2023-12-26', 1, 0, '195805', false), - (93749, '2024-05-10 23:12:42.128639+00', '0x364056980867d1655897299889bca4e7d465b395', 0, 0, 1, '2023-10-04', 1, 2, '14920', false), - (95250, '2024-05-13 06:00:34.269461+00', '0x5d3c4a8c606c3f1dc677e3c98de02a68237e53d0', 0, 0, 1, '2024-05-12', 2, 6, '494499', false), - (92953, '2024-05-10 23:12:39.786618+00', '0x5617f0bb03233fb4862ba82bc83b00a8bb63e2ce', 0, 0, 1, '2024-02-06', 2, 3, '259989', false), - (93005, '2024-05-10 23:12:39.914574+00', '0x8238d87da1e7b0f54c4ab62ed082f63d24320048', 0, 0, 1, '2024-02-06', 1, 1, '277092', false), - (93022, '2024-05-10 23:12:40.027758+00', '0x861d55bc901445902c4e749170fe63d1ef321460', 0, 0, 1, '2024-02-06', 1, 1, '297594', false), - (93042, '2024-05-10 23:12:40.048723+00', '0x163f71d7fd1fa09db8d16c6a2f415977b469d7bc', 0, 0, 1, '2024-02-06', 1, 0, '302154', false), - (93078, '2024-05-10 23:12:40.159918+00', '0xdb1f7bbd4f81dabdf80a85d73ac721d62309b510', 0, 0, 1, '2024-02-06', 1, 5, '16525', false), - (93061, '2024-05-10 23:12:40.141422+00', '0x2bf22b645f54a3cf104da719b62e66aad8b72043', 0, 0, 1, '2024-02-06', 2, 4, '259694', false), - (93123, '2024-05-10 23:12:40.278081+00', '0xb14c8bbf0f589253c2fd05d5e14f57e7fd7a26d1', 0, 0, 1, '2024-02-06', 1, 0, '229704', false), - (93143, '2024-05-10 23:12:40.30173+00', '0x8a4350f2cfe5c8378ad211f03b7b8bd1e5f93166', 0, 0, 1, '2024-02-06', 1, 2, '268202', false), - (83694, '2024-05-10 23:12:13.000863+00', '0x944de1cc15d4916f68bbb018c4ae274141904a56', 0, 0, 1, '2024-05-05', 7, 35, '379673', false), - (82923, '2024-05-10 23:12:10.343623+00', '0x06359a7b0a950c3362e6874478d5bee938c12d14', 0, 0, 1, '2024-05-07', 6, 29, '501085', false), - (93161, '2024-05-10 23:12:40.421614+00', '0x35811637d7da4292a8cc47af2cc6dc0d69c6bc69', 0, 0, 1, '2024-02-06', 2, 3, '296508', false), - (93199, '2024-05-10 23:12:40.456676+00', '0x000009209e16ddf2e0abe52fc2301f0f3c9a7d50', 0, 0, 1, '2024-02-06', 1, 1, '251021', false), - (95652, '2024-05-13 06:00:37.001947+00', '0xeb411d7daa4136831d391559588e31ea5bdfd225', 0, 0, 1, '2024-05-13', 1, 0, '406248', false), - (93694, '2024-05-10 23:12:41.943173+00', '0x896c20da40c2a4df9b7c98b16a8d5a95129161a5', 0, 0, 1, '2023-11-14', 3, 3, '18091', false), - (93414, '2024-05-10 23:12:41.078429+00', '0xa8f30bd1165057f81c7b6629e2501e428f4691f2', 0, 0, 1, '2024-01-17', 10, 0, '215223', false), - (93578, '2024-05-10 23:12:41.540262+00', '0xac4abdff74270d9eae99e31f2dafefbdf78cdfd3', 0, 0, 1, '2023-12-23', 1, 0, '193461', false), - (93595, '2024-05-10 23:12:41.649465+00', '0xf42c2b956bcab51abb6555f5a06ee582e4581c71', 0, 0, 1, '2023-12-21', 1, 1, '16279', false), - (93647, '2024-05-10 23:12:41.819286+00', '0x71df93ae5a9a2ba5064ae90b9690b4fa9c413387', 0, 0, 1, '2023-12-02', 1, 4, '15299', false), - (93678, '2024-05-10 23:12:41.854561+00', '0x2b1733518a3cfa27929b49f5598e979837a519fc', 0, 0, 1, '2023-12-08', 1, 0, '200619', false), - (93223, '2024-05-10 23:12:40.531656+00', '0xc38fb9326c623101d9ff16b5470156b722fa6e8f', 0, 0, 1, '2024-02-06', 2, 2, '251342', false), - (93258, '2024-05-10 23:12:40.67695+00', '0xb91b845bb5ef0e107c97fe2dacac8748f312be6e', 0, 0, 1, '2024-02-06', 1, 5, '301215', false), - (91164, '2024-05-10 23:12:34.796642+00', '0xaa3892f98d5c6388165489d2216178e86828c04b', 0, 0, 1, '2024-04-10', 1, 0, '449651', false), - (91237, '2024-05-10 23:12:35.050698+00', '0xebdd026780184e2fcb3201f4d355d277495ca33d', 0, 0, 1, '2024-04-07', 1, 5, '342656', false), - (91257, '2024-05-10 23:12:35.070302+00', '0xeb2cedc37504e4e5f51a23675367e5e9b7e34129', 0, 0, 1, '2024-04-07', 1, 1, '424988', false), - (91272, '2024-05-10 23:12:35.087631+00', '0x48ab00c037ddf21b43df2e8f2288a793ac9c6e2f', 0, 0, 1, '2024-04-06', 1, 5, '386133', false), - (91204, '2024-05-10 23:12:34.932466+00', '0xdb2135dfde06a81f47c27f70f004aaaa858cb7d6', 0, 0, 1, '2024-04-07', 2, 10, '430484', false), - (91299, '2024-05-10 23:12:35.1703+00', '0x5aaefad7e30e262aff4588f1996c4f921c6fcecf', 0, 0, 1, '2024-04-05', 1, 1, '418517', false), - (93314, '2024-05-10 23:12:40.822506+00', '0xce508db1519e862d6cff44b4865e654b9cc5bf8e', 0, 0, 1, '2024-02-04', 1, 0, '269411', false), - (91535, '2024-05-10 23:12:35.922342+00', '0x68929570ee8a4da4fc7634340d0d92585b2aa313', 0, 0, 1, '2024-03-31', 1, 0, '10173', false), - (91546, '2024-05-10 23:12:35.935821+00', '0x2bdaf977f02001cadeed3479f946cf1d13b09a60', 0, 0, 1, '2024-03-30', 1, 0, '403702', false), - (91604, '2024-05-10 23:12:36.064526+00', '0x4ca2a670bd5505b870b21331a53d9bb4ae6e2084', 0, 0, 1, '2024-03-28', 1, 0, '280661', false), - (91671, '2024-05-10 23:12:36.383124+00', '0xa377855c38b1a5bc6fa513c6bffa29ad2450789e', 0, 0, 1, '2024-03-26', 1, 5, '194882', false), - (90754, '2024-05-10 23:12:33.732518+00', '0x4485bd3e984b77b8d580312ef11b15fa64ba4890', 0, 0, 1, '2024-03-19', 6, 1, '18980', false), - (92033, '2024-05-10 23:12:37.264696+00', '0xeebdbb903c38d8a3996b86457bf470b69756a723', 0, 0, 1, '2024-03-09', 1, 0, '379938', false), - (92054, '2024-05-10 23:12:37.375988+00', '0xb38fd5ef32c3eadfabcc7633ed344e604aef91a9', 0, 0, 1, '2024-03-08', 2, 3, '299598', false), - (92114, '2024-05-10 23:12:37.511849+00', '0x8feafd5e0fcefdd2624906c0f913d563306aae17', 0, 0, 1, '2024-03-04', 1, 1, '262159', false), - (92196, '2024-05-10 23:12:37.743498+00', '0x767a60f295aedd958932088f9cd6a4951d8739b6', 0, 0, 1, '2024-02-28', 1, 0, '192305', false), - (92633, '2024-05-10 23:12:38.956791+00', '0x08f522a8e9d6ddb434171299e8ab6c6aa2a0e935', 0, 0, 1, '2024-02-06', 1, 0, '301491', false), - (95110, '2024-05-13 06:00:32.186451+00', '0x975d2d6f31f45a9d5adab80e240870f004739192', 0, 0, 1, '2024-05-12', 1, 5, '383342', false), - (81454, '2024-05-10 23:12:06.049328+00', '0xf178e9e545e0acfce712228dc952a311b7885198', 0, 0, 1, '2024-05-07', 7, 31, '422678', false), - (92960, '2024-05-10 23:12:39.876279+00', '0x0cde86778379796609a69e39c63140fc26efd82c', 0, 0, 1, '2024-02-04', 3, 5, '259023', false), - (74079, '2024-05-10 23:11:44.578336+00', '0x1fdfbbe7bbb821d01251d484aa86cb799259cb1d', 0, 0, 1, '2024-05-06', 6, 11, '427575', false), - (95130, '2024-05-13 06:00:32.304453+00', '0xf79eda411923c9042dcb4bbfbe485cf224a4f771', 0, 0, 1, '2024-05-12', 3, 15, '396778', false), - (95587, '2024-05-13 06:00:36.645473+00', '0x15b94ec8251590a8d9f907e25efb0f1a313944ca', 0, 0, 1, '2024-05-12', 4, 8, '528401', false), - (95663, '2024-05-13 06:00:37.011981+00', '0x0755a2c4c1808ca14cc2928d0d727b16a1c467bd', 0, 0, 1, '2024-05-13', 5, 2, '527614', false), - (92688, '2024-05-10 23:12:39.102774+00', '0xaaa8450a8fb296b21f4ebe27598b40a750fe3ad5', 0, 0, 1, '2024-02-06', 2, 4, '265774', false), - (92709, '2024-05-10 23:12:39.121395+00', '0x6ee87e8e4028b9f6c82f0e0be03101a94a70da17', 0, 0, 1, '2024-02-06', 1, 0, '236795', false), - (92730, '2024-05-10 23:12:39.23076+00', '0xbb7f4698090eefbdee7b5c31d70ce1860408fcee', 0, 0, 1, '2024-02-06', 1, 1, '305500', false), - (92749, '2024-05-10 23:12:39.249829+00', '0x8312a651d1be0c3eba75a5547b9c052b7433574a', 0, 0, 1, '2024-02-06', 1, 0, '264237', false), - (92766, '2024-05-10 23:12:39.341173+00', '0xf68be8079a90dc6434935a9a312b3ed07a2f3a4c', 0, 0, 1, '2024-02-06', 2, 2, '301342', false), - (92662, '2024-05-10 23:12:38.988887+00', '0xfe541eed0b64e93060eeca1499052635b5b75fd0', 0, 0, 1, '2024-02-06', 2, 2, '304758', false), - (92806, '2024-05-10 23:12:39.38086+00', '0xf980bb10341b80b11e5f774a8e2495f38783b75a', 0, 0, 1, '2024-02-06', 1, 5, '238032', false), - (92831, '2024-05-10 23:12:39.480303+00', '0x323bfe9f384e88111e83f37ed7a854d0cc5f99d7', 0, 0, 1, '2024-02-06', 1, 2, '14542', false), - (92853, '2024-05-10 23:12:39.503781+00', '0xdf10fef16f260490393ef955f6436b3e9b89c96b', 0, 0, 1, '2024-02-06', 1, 1, '262220', false), - (92875, '2024-05-10 23:12:39.612417+00', '0x4fb28d78fe6c4000e1a08019cea4e1142bfc5d61', 0, 0, 1, '2024-02-06', 1, 1, '298770', false), - (92886, '2024-05-10 23:12:39.628525+00', '0x8c5b10de49dc9876273bdb814ee67f753d6efa81', 0, 0, 1, '2024-02-06', 1, 0, '288281', false), - (92674, '2024-05-10 23:12:39.090308+00', '0x1bf2f0ddba5a361d6a95de86ecddfc49515f70cc', 0, 0, 1, '2024-02-06', 4, 1, '272155', false), - (92924, '2024-05-10 23:12:39.755709+00', '0xf6bacfa5bb84429aeddacf6860f69274e3c11832', 0, 0, 1, '2024-02-06', 1, 2, '214470', false), - (92942, '2024-05-10 23:12:39.771483+00', '0x4b5fc8a60998a17345cb4733d4e120b1591560ea', 0, 0, 1, '2024-02-06', 1, 5, '259890', false), - (93612, '2024-05-10 23:12:41.669903+00', '0xa9cb88b77a2f0dc3f6e34f24ae6cea5ac871788b', 0, 0, 1, '2023-06-13', 2, 0, '13751', false), - (93001, '2024-05-10 23:12:39.916397+00', '0x0504e50f5aad7017d509e53974d0d9bb1a89a4cb', 0, 0, 1, '2024-02-06', 2, 3, '244328', false), - (93021, '2024-05-10 23:12:40.010145+00', '0x1c716e311b3c94dd3ff1a5460c1e4838d04f2b9a', 0, 0, 1, '2024-02-06', 1, 1, '275713', false), - (92980, '2024-05-10 23:12:39.897017+00', '0xce9e9a6fc66ad2e705f5b98d02e99387d12761b1', 0, 0, 1, '2024-02-06', 2, 5, '258280', false), - (93059, '2024-05-10 23:12:40.138418+00', '0x5bface33343c354d4f577f4ebe29e20b1c691ba9', 0, 0, 1, '2024-02-06', 1, 0, '252259', false), - (93077, '2024-05-10 23:12:40.158093+00', '0xfb0c6d576dfe70018940b7578ad52224cab2a226', 0, 0, 1, '2024-02-06', 1, 2, '264838', false), - (93096, '2024-05-10 23:12:40.176251+00', '0x7054c451207f7a84d3ca17827da68985f2c0e7f1', 0, 0, 1, '2024-02-06', 1, 2, '280674', false), - (93117, '2024-05-10 23:12:40.278591+00', '0xfbf29b8976bdef1a1e17b19a9a23dd41c68fb650', 0, 0, 1, '2024-02-06', 1, 0, '254364', false), - (92992, '2024-05-10 23:12:39.908829+00', '0xd943ccc1a3e4cbcebe18311acf8dae8236f024c0', 0, 0, 1, '2024-02-06', 1, 2, '262284', false), - (92972, '2024-05-10 23:12:39.888652+00', '0xf008de03a1a6647b53c9ec0c71376da5bca687c9', 0, 0, 1, '2024-02-06', 2, 2, '253020', false), - (93012, '2024-05-10 23:12:39.997174+00', '0x836de8a9324501a03e1c0600222b7decd1afd15e', 0, 0, 1, '2024-02-06', 1, 1, '272195', false), - (93031, '2024-05-10 23:12:40.036402+00', '0xda3930fff973016aa0406638faa42e77bfd25f0f', 0, 0, 1, '2024-02-06', 1, 0, '278705', false), - (93048, '2024-05-10 23:12:40.054571+00', '0xccee868b4cd2decf0ba0bcb1d679b346d1b9e23a', 0, 0, 1, '2024-02-06', 1, 2, '290540', false), - (93062, '2024-05-10 23:12:40.144641+00', '0x25357bf21b9542a696178577d3e78083b92a6ea4', 0, 0, 1, '2024-02-06', 1, 0, '240500', false), - (93085, '2024-05-10 23:12:40.158591+00', '0x5d367e19406f4ede875017c267cecbca0bac782c', 0, 0, 1, '2024-02-06', 2, 0, '267390', false), - (93103, '2024-05-10 23:12:40.185287+00', '0x6f9fba04733ff91de596dc5fb64034ee9c2ef7f2', 0, 0, 1, '2024-02-06', 1, 0, '263883', false), - (93159, '2024-05-10 23:12:40.420194+00', '0x7c11cb9b39fc876c46f03b4084b6e5688ccca993', 0, 0, 1, '2024-02-06', 1, 0, '236186', false), - (93142, '2024-05-10 23:12:40.283723+00', '0xe773147d27d42a34419075c5508d4b289c2971bd', 0, 0, 1, '2024-02-06', 2, 0, '270636', false), - (93190, '2024-05-10 23:12:40.449437+00', '0xcc6f98aa9ea6a5c08bb97ac2e0df27e9310a8ecf', 0, 0, 1, '2024-02-06', 1, 0, '278670', false), - (81898, '2024-05-10 23:12:07.455193+00', '0xca0e67f908aadf090549839017f4c185ed9e3a17', 0, 0, 1, '2024-05-05', 33, 54, '503439', false), - (95508, '2024-05-13 06:00:35.93452+00', '0x6e9b2b3c7b8da76ef2809c5fc942ba298f48f4a9', 0, 0, 1, '2024-05-12', 1, 5, '517002', false), - (95645, '2024-05-13 06:00:36.993576+00', '0x15b88b3879a875669c0ec87637b655c901d188c4', 0, 0, 1, '2024-05-12', 1, 2, '361432', false), - (95679, '2024-05-13 06:00:37.106667+00', '0x8ee0cb32aa491f7963f784b872c19abbca4f327e', 0, 0, 1, '2024-05-13', 1, 3, '533607', false), - (93209, '2024-05-10 23:12:40.538101+00', '0x0cad1295a11243edfabc2b16f09409cb883d4eb8', 0, 0, 1, '2024-02-06', 2, 6, '253359', false), - (93231, '2024-05-10 23:12:40.553886+00', '0x39e94a7cc47398f667552f6fed8f24507eeda818', 0, 0, 1, '2024-02-06', 1, 2, '254995', false), - (93278, '2024-05-10 23:12:40.703077+00', '0xb5fc54be89ad1dd2e56c685f80cdaa77ffca4f60', 0, 0, 1, '2024-02-06', 1, 4, '261861', false), - (93181, '2024-05-10 23:12:40.44085+00', '0x3b04f5fc1a7fe1deeeea8881a8dfb79dd25c617b', 0, 0, 1, '2024-02-06', 1, 0, '298970', false), - (91866, '2024-05-10 23:12:36.875764+00', '0x5183e0203858aa3e3bc3a7d9cb41875a4c0a6216', 0, 0, 1, '2024-02-04', 3, 2, '191892', false), - (93656, '2024-05-10 23:12:41.831584+00', '0x7c45fb10a18f834a47cc3f470e97140a399b6af8', 0, 0, 1, '2023-11-15', 2, 0, '21612', false), - (93519, '2024-05-10 23:12:41.353783+00', '0x1fde40a4046eda0ca0539dd6c77abf8933b94260', 0, 0, 1, '2024-01-08', 1, 0, '7935', false), - (93553, '2024-05-10 23:12:41.512803+00', '0x98488c8a8005e8cae743d571d2a0f87db288ea99', 0, 0, 1, '2023-12-23', 1, 0, '22533', false), - (93593, '2024-05-10 23:12:41.559643+00', '0x140ceb9fe3cfeb79788ad9f2c76be0d4c8e22ad1', 0, 0, 1, '2023-12-28', 1, 1, '196917', false), - (93624, '2024-05-10 23:12:41.684984+00', '0x120112677618f6e6286454de485c02ddd830d970', 0, 0, 1, '2023-12-21', 1, 0, '17986', false), - (93638, '2024-05-10 23:12:41.699206+00', '0x48227dae207ea7d684d677de201d63cacfc4a567', 0, 0, 1, '2023-12-20', 1, 3, '14346', false), - (91380, '2024-05-10 23:12:35.478772+00', '0x31e3d4e6b7962e363ec0c0aa0c859358c7879157', 0, 0, 1, '2023-09-19', 5, 8, '11769', false), - (93743, '2024-05-10 23:12:42.117332+00', '0x7dd44cd59d0320a8a2a0a6f521bfe767108dd2e3', 0, 0, 1, '2023-09-26', 3, 1, '11289', false), - (91973, '2024-05-10 23:12:37.129671+00', '0xdd4b0803d8cea3095b8d4dfc0c753a1fdee945b1', 0, 0, 1, '2024-03-13', 1, 0, '16601', false), - (92056, '2024-05-10 23:12:37.379299+00', '0x33f1b76dfed61372bc29de2612d85be54ec795e8', 0, 0, 1, '2024-03-08', 1, 0, '378359', false), - (93836, '2024-05-10 23:12:42.318502+00', '0xcc7842f66fa9a8ab6920854ec3db9517aad9bbce', 0, 0, 1, '2023-06-13', 3, 2, '9862', false), - (92168, '2024-05-10 23:12:37.633476+00', '0xba3c811f60004e8d2338a3cfbe45a3537eaea098', 0, 0, 1, '2024-03-01', 1, 0, '201968', false), - (92457, '2024-05-10 23:12:38.410743+00', '0x3e4ebcf6bce774f89aba83fc03593d083cb2daa4', 0, 0, 1, '2024-02-13', 1, 0, '236423', false), - (92106, '2024-05-10 23:12:37.493628+00', '0xd090b8168fa3355626504bf61230109c0c7b41c2', 0, 0, 1, '2024-02-08', 4, 5, '322949', false), - (92670, '2024-05-10 23:12:39.081315+00', '0x182900d3b723064c496c2738e0a3d3f15e685356', 0, 0, 1, '2024-02-06', 1, 4, '255277', false), - (92693, '2024-05-10 23:12:39.101968+00', '0xece4d400df7a76797b6e88fc8e0bea8896903377', 0, 0, 1, '2024-02-06', 1, 1, '242117', false), - (92713, '2024-05-10 23:12:39.21427+00', '0x49b2ee0e961b64b185ff0c9c0f9f70eaa8df9366', 0, 0, 1, '2024-02-06', 1, 1, '264200', false), - (92737, '2024-05-10 23:12:39.237332+00', '0x889474e058dd25e42b4c8e0c4e39c59625485c61', 0, 0, 1, '2024-02-06', 1, 1, '264197', false), - (73884, '2024-05-10 23:11:43.344815+00', '0xbbe5938b974035b923782b1bbcec44018ed2584a', 0, 0, 1, '2024-05-07', 27, 53, '398388', false), - (92585, '2024-05-10 23:12:38.774286+00', '0xdc35a5792db09b8c8571f1a3c718dd60b16ae690', 0, 0, 1, '2024-02-07', 1, 1, '277560', false), - (92625, '2024-05-10 23:12:38.949095+00', '0x6f98983f93bc84159cd4f1cc3a44768c6ff257f7', 0, 0, 1, '2024-02-07', 1, 1, '246060', false), - (92680, '2024-05-10 23:12:39.076511+00', '0xc9584f7a2e35d069e8b02d3c8f3cb235da21b0c9', 0, 0, 1, '2024-02-06', 1, 1, '254721', false), - (92694, '2024-05-10 23:12:39.112076+00', '0x9cab2ba88f244b1cb1c67138b9ef79f921fcd262', 0, 0, 1, '2024-02-06', 1, 1, '254967', false), - (92712, '2024-05-10 23:12:39.209996+00', '0x6870b862cf18dea220aa1756af27140f119af919', 0, 0, 1, '2024-02-06', 1, 4, '250883', false), - (93546, '2024-05-10 23:12:41.501106+00', '0x241cab326be5314c264417ef1b229ca84e7d0c81', 0, 0, 1, '2023-12-29', 1, 1, '20380', false), - (95657, '2024-05-13 06:00:37.005321+00', '0x740000514cfacf639d174206ef3fb16c3df751b1', 0, 0, 1, '2024-05-12', 1, 0, '474476', false), - (89927, '2024-05-10 23:12:31.418282+00', '0x3540d804e6124757a49b805e944b48d14cb78b74', 0, 0, 1, '2024-05-01', 9, 11, '238825', false), - (93582, '2024-05-10 23:12:41.550932+00', '0xdccf29fa0f10922f6284441193b0192d361101d4', 0, 0, 1, '2023-12-25', 1, 0, '194092', false), - (93620, '2024-05-10 23:12:41.676374+00', '0xa9811f9f6b8bca7f9f91f850a98310e63fbb7326', 0, 0, 1, '2023-12-20', 1, 1, '13746', false), - (92732, '2024-05-10 23:12:39.233251+00', '0xb71ae16816cc31ed5cfaee5216f297681fb52257', 0, 0, 1, '2024-02-06', 1, 0, '252079', false), - (92753, '2024-05-10 23:12:39.255204+00', '0x92f71207bb94d0d69d8bcf9d31755112a734be0a', 0, 0, 1, '2024-02-06', 1, 0, '253576', false), - (92772, '2024-05-10 23:12:39.345513+00', '0x0f01506e404cf76140a1ce092442834e6294327d', 0, 0, 1, '2024-02-06', 1, 5, '237762', false), - (92789, '2024-05-10 23:12:39.365235+00', '0x5db9e26d5035c124a9b7dddd545fd60c23cf26d0', 0, 0, 1, '2024-02-06', 1, 2, '240467', false), - (92829, '2024-05-10 23:12:39.480818+00', '0x1aff38fe8e706d682dda746cce9e6470fd864d3c', 0, 0, 1, '2024-02-06', 2, 1, '14562', false), - (92021, '2024-05-10 23:12:37.257207+00', '0x150bfd1952b4622e12c79ce80f84694a167e1921', 0, 0, 1, '2024-02-06', 4, 2, '290452', false), - (92866, '2024-05-10 23:12:39.604955+00', '0x9516e80ba79b97d5085ea4553df9e35022b1a656', 0, 0, 1, '2024-02-06', 1, 0, '14393', false), - (92903, '2024-05-10 23:12:39.63502+00', '0x8cf985712f92ff1e901c86c194b21e43a4ddc639', 0, 0, 1, '2024-02-06', 1, 0, '306362', false), - (92949, '2024-05-10 23:12:39.764516+00', '0x3f672edc467eb0062d3c3923abe1a599e53795f6', 0, 0, 1, '2024-02-06', 1, 0, '297943', false), - (93082, '2024-05-10 23:12:40.161063+00', '0x5b83211edba7ccf101b42ef33c1cb9283a0621dd', 0, 0, 1, '2024-02-06', 1, 1, '251398', false), - (93064, '2024-05-10 23:12:40.147877+00', '0x2fedc3e20230c228c922e561197c5ea81dd8003b', 0, 0, 1, '2024-02-06', 2, 2, '299283', false), - (93126, '2024-05-10 23:12:40.283034+00', '0x6179d6cd67c265e7f7cddc6ea354e133e37def32', 0, 0, 1, '2024-02-06', 1, 1, '266753', false), - (90654, '2024-05-10 23:12:33.377383+00', '0xca82a1eb5267547f3328f475eb555ff375d2f97e', 0, 0, 1, '2024-04-08', 7, 4, '462522', false), - (90784, '2024-05-10 23:12:33.760421+00', '0x70400e1b9cf40151e5c76df8b7c95c87001f51fb', 0, 0, 1, '2024-04-21', 1, 2, '321106', false), - (91808, '2024-05-10 23:12:36.74027+00', '0x8347c3f0ae9205d2450406617d457f6f96e51138', 0, 0, 1, '2024-03-18', 1, 2, '308110', false), - (91825, '2024-05-10 23:12:36.759374+00', '0x120c258d1ea4b69371e36dc7cdf61b9ea2f14802', 0, 0, 1, '2024-03-17', 2, 2, '389695', false), - (92583, '2024-05-10 23:12:38.777926+00', '0x30b8eab7d560840a78bcb22e58b1a47b82aecf99', 0, 0, 1, '2023-12-20', 3, 6, '193438', false), - (92609, '2024-05-10 23:12:38.802237+00', '0x7b55b0b671f2952b092bebc75dfcfb9b86cdd032', 0, 0, 1, '2024-02-07', 1, 5, '239388', false), - (92624, '2024-05-10 23:12:38.94923+00', '0xc9f3e89d4336ee2eb8003ab156127e28e442e9e6', 0, 0, 1, '2024-02-07', 1, 3, '235166', false), - (92646, '2024-05-10 23:12:38.969339+00', '0x2267e2be3d601c5b84abd5cf949467a1e7371658', 0, 0, 1, '2024-02-07', 1, 1, '295501', false), - (94923, '2024-05-12 06:00:36.321809+00', '0x55b3da48bc1550ba4e14a3deb172153caa528fe2', 0, 0, 1, '2024-05-11', 1, 1, '523023', false), - (83060, '2024-05-10 23:12:10.799559+00', '0x868025b6f9b42f88159d5ba30eebd12a0f0c2903', 0, 0, 1, '2024-05-06', 3, 15, '441301', false), - (88712, '2024-05-10 23:12:27.474885+00', '0xaeb2707eda1e201cb13aa80b915bc3979d7e33a0', 0, 0, 1, '2024-04-20', 1, 1, '437188', false), - (81601, '2024-05-10 23:12:06.485526+00', '0x4659b162c2ce0bac0d1c20cfdd7760c3b8d48840', 0, 0, 1, '2024-05-07', 11, 54, '429583', false), - (86403, '2024-05-10 23:12:21.461694+00', '0xc4eb8a0d685fe075cee46d7e9f4fb401dfea31ae', 0, 0, 1, '2024-05-05', 39, 91, '393161', false), - (74370, '2024-05-10 23:11:45.472501+00', '0x37d90dd82b571a6fd5a60e12e8b2b32a64950453', 0, 0, 1, '2024-05-05', 4, 15, '384337', false), - (93140, '2024-05-10 23:12:40.300327+00', '0x3d9fefe6135a532565fe39e7dcc91d7407ff3615', 0, 0, 1, '2024-02-06', 1, 3, '14869', false), - (93156, '2024-05-10 23:12:40.415146+00', '0x9fddd2024553edd19a43964b6e37d369f70089c3', 0, 0, 1, '2024-02-06', 1, 3, '293662', false), - (93176, '2024-05-10 23:12:40.436207+00', '0xaf5b4c3daefe8f77331cc4fc0691eed9c45dd865', 0, 0, 1, '2024-02-06', 1, 1, '240284', false), - (87126, '2024-05-10 23:12:23.31382+00', '0x88505738b01b1e7344ab08f27ab0a9f0bbc486ce', 0, 0, 1, '2024-05-05', 2, 10, '465860', false), - (93216, '2024-05-10 23:12:40.542657+00', '0x6052943193f5cac28ad4239e4aecb7cc5a4346b0', 0, 0, 1, '2024-02-06', 1, 0, '273173', false), - (93259, '2024-05-10 23:12:40.679099+00', '0x6b9abf2871c287261da5b12611498e8d534a7d9f', 0, 0, 1, '2024-02-06', 1, 0, '309357', false), - (90090, '2024-05-10 23:12:31.8279+00', '0x68375427c29995b277ad343aa89be591926c6088', 0, 0, 1, '2024-04-25', 7, 17, '20300', false), - (95003, '2024-05-13 06:00:31.485906+00', '0x96ac4a8925288b224972a007ca91c99b46a02d1d', 0, 0, 1, '2024-05-12', 1, 0, '3103', false), - (74085, '2024-05-10 23:11:44.612254+00', '0xa923e6ed4c775d4180db2f1532a5d5bdbb091c1d', 0, 0, 1, '2024-05-05', 5, 14, '404623', false), - (95254, '2024-05-13 06:00:34.262247+00', '0x0793d13be76c2d261904c5d027c4a8c7a5052553', 0, 0, 1, '2024-05-12', 1, 2, '516421', false), - (81625, '2024-05-10 23:12:06.515964+00', '0x459680ee096a52090209e25305fe8290923d6ad2', 0, 0, 1, '2024-05-05', 4, 18, '511688', false), - (89938, '2024-05-10 23:12:31.434442+00', '0x8666f346df38c7e38430690397935259a3b782a2', 0, 0, 1, '2024-05-10', 2, 10, '233638', false), - (93275, '2024-05-10 23:12:40.699835+00', '0x0247471fa198dd9b829b299de2414f568034adf1', 0, 0, 1, '2024-02-06', 1, 5, '240881', false), - (73902, '2024-05-10 23:11:43.396222+00', '0xf6aa995c351c96c199697a0c98c482eeaf82cada', 0, 0, 1, '2024-05-10', 10, 5, '415750', false), - (73954, '2024-05-10 23:11:44.149099+00', '0xa93883c125a4f26001720457253448116c60ff67', 0, 0, 1, '2024-05-05', 23, 58, '385297', false), - (82779, '2024-05-10 23:12:09.918823+00', '0x6ed98629baade9397a050bf3465ee161551cb5a3', 0, 0, 1, '2024-05-06', 22, 52, '411828', false), - (84844, '2024-05-10 23:12:16.5276+00', '0x82bb5dcdd8f90bcddab407b3f8b7c411abd50e0b', 0, 0, 1, '2024-05-04', 6, 30, '449096', false), - (81655, '2024-05-10 23:12:06.628068+00', '0x19b4c89628ba0e2600d551ca9ab180b280389c3e', 0, 0, 1, '2024-05-06', 25, 125, '400377', false), - (93636, '2024-05-10 23:12:41.698793+00', '0xfe08945f392cf1873f2c5b1bd7c7401e452153a8', 0, 0, 1, '2023-12-20', 1, 0, '187880', false), - (93705, '2024-05-10 23:12:41.952506+00', '0xb2e30a6f950225f2b089798480f1e5b97a3d4df1', 0, 0, 1, '2023-11-09', 1, 0, '16253', false), - (93773, '2024-05-10 23:12:42.158805+00', '0x080b62ceaedd748329222e3bb823bf75cfafaa89', 0, 0, 1, '2023-09-23', 1, 0, '16815', false), - (93501, '2024-05-10 23:12:41.335009+00', '0xf67825d3bde95a0bbb1a063e06d51b79e7061c05', 0, 0, 1, '2023-10-17', 3, 2, '15791', false), - (93651, '2024-05-10 23:12:41.825772+00', '0x62cc4edfe738701297f06ce979de18229b69b49a', 0, 0, 1, '2023-08-05', 2, 3, '16857', false), - (92770, '2024-05-10 23:12:39.344887+00', '0xe8ab0b64f32a7b5d0e7d76c35f16fab916144863', 0, 0, 1, '2024-02-06', 1, 3, '235114', false), - (92818, '2024-05-10 23:12:39.467263+00', '0xde8b9d5bde9a0493cc58b20ebc00b627e45d3151', 0, 0, 1, '2024-02-06', 1, 0, '251837', false), - (92834, '2024-05-10 23:12:39.486209+00', '0x09facac21784a59a76a0f44ba650214191d8873a', 0, 0, 1, '2024-02-06', 2, 2, '270484', false), - (92856, '2024-05-10 23:12:39.510206+00', '0x359842cd28b2cb58ee2f35a6abaf188367763eda', 0, 0, 1, '2024-02-06', 1, 0, '246089', false), - (92902, '2024-05-10 23:12:39.636598+00', '0x41ad6401f95b1e4b7785f51118eb24ef23da71d9', 0, 0, 1, '2024-02-06', 1, 5, '278936', false), - (93075, '2024-05-10 23:12:40.156777+00', '0xe60ee66bd4db2e6da0f0c76275cb318add31fbf1', 0, 0, 1, '2024-02-06', 1, 1, '279567', false), - (93119, '2024-05-10 23:12:40.283803+00', '0x54d2017eef805237b807d654192b7e1d86f2a3c4', 0, 0, 1, '2024-02-06', 1, 0, '293842', false), - (93138, '2024-05-10 23:12:40.298533+00', '0x55926750aef2ba76655c1b6428cc79b435ece352', 0, 0, 1, '2024-02-06', 1, 1, '249930', false), - (93185, '2024-05-10 23:12:40.436969+00', '0x194c417d48c4471c94ba789718f9de306d2df331', 0, 0, 1, '2024-02-06', 1, 5, '270254', false), - (93206, '2024-05-10 23:12:40.528939+00', '0x57124a06c5bfd2f0abd67e0ff4906d5f84c22f0b', 0, 0, 1, '2024-02-06', 1, 5, '251960', false), - (93245, '2024-05-10 23:12:40.572419+00', '0xc6cdebd26384f703fffee48be23478690a6a0464', 0, 0, 1, '2024-02-06', 1, 0, '277116', false), - (93227, '2024-05-10 23:12:40.554936+00', '0x02892867cd0dc07d4ddf193c23e25d4228aa002e', 0, 0, 1, '2024-02-06', 3, 12, '271906', false), - (93283, '2024-05-10 23:12:40.706698+00', '0x042273183818ff50cae2cd5883ab2c7ffd421b8b', 0, 0, 1, '2024-02-06', 2, 6, '277454', false), - (93302, '2024-05-10 23:12:40.805286+00', '0xaa9cf70d0cc373a8f846eae946213af87f5f2353', 0, 0, 1, '2024-02-05', 1, 0, '264517', false), - (95061, '2024-05-13 06:00:31.883754+00', '0xf9e37a804db126ff2b3fb52f3b42ad7a3aaa4452', 0, 0, 1, '2024-05-12', 2, 10, '485382', false), - (81933, '2024-05-10 23:12:07.501524+00', '0x8091651d8562e720c588639f858457aeb454f613', 0, 0, 1, '2024-03-17', 15, 49, '286957', false), - (93355, '2024-05-10 23:12:40.946154+00', '0xe6da7d05061724486edcb59732e595a7bb979e77', 0, 0, 1, '2024-02-02', 1, 5, '230640', false), - (74366, '2024-05-10 23:11:45.464546+00', '0x3fe462b175fafa954ae387b6c9f8cf4699682e09', 0, 0, 1, '2024-04-30', 6, 25, '392267', false), - (75746, '2024-05-10 23:11:49.238472+00', '0x68cc611de0eae804bcfcdccb4b267ebfe77359b4', 0, 0, 1, '2024-02-06', 8, 4, '253133', false), - (93680, '2024-05-10 23:12:41.848083+00', '0xce0b64da1b353545dc7427dbb4ce03838ea8677e', 0, 0, 1, '2023-12-02', 1, 5, '196433', false), - (93729, '2024-05-10 23:12:41.984316+00', '0x984886312107a9ae23b8290d6c1d519a737283a2', 0, 0, 1, '2023-11-07', 1, 1, '15371', false), - (92939, '2024-05-10 23:12:39.749306+00', '0x625bb93a5a4d0873738a0de27d6405360fde2554', 0, 0, 1, '2024-02-06', 1, 1, '245588', false), - (92968, '2024-05-10 23:12:39.883347+00', '0x13133448af4f67cd8c4a47d7971d9d856447eb07', 0, 0, 1, '2024-02-06', 1, 0, '293455', false), - (92987, '2024-05-10 23:12:39.904691+00', '0xc5de52d75b001394aba6e83ef40cf4c95a2312d4', 0, 0, 1, '2024-02-06', 2, 1, '261598', false), - (93014, '2024-05-10 23:12:40.002373+00', '0xb37a44eaeb3f9d3e6a9d6a7dc6309cc9b8d144bb', 0, 0, 1, '2024-02-06', 1, 1, '237218', false), - (93039, '2024-05-10 23:12:40.040799+00', '0xd039f670f057d14f143ecb92fac3a533b5e54f2f', 0, 0, 1, '2024-02-06', 1, 0, '255609', false), - (81773, '2024-05-10 23:12:06.89197+00', '0xc3980d579177e1c1ea30e87da4a2438fafae4653', 0, 0, 1, '2024-05-08', 20, 99, '498108', false), - (93149, '2024-05-10 23:12:40.305424+00', '0x6d279bec4d0a56357c24d2db5f8ce4240e59a1f3', 0, 0, 1, '2024-02-06', 1, 4, '269973', false), - (93183, '2024-05-10 23:12:40.442158+00', '0xb19c90c15f124775011a3fb20be1168d30a02d46', 0, 0, 1, '2024-02-06', 1, 5, '267588', false), - (93202, '2024-05-10 23:12:40.527046+00', '0xaa6f3d9e5ce9d1451bd73a21a7983d27a96c1fcd', 0, 0, 1, '2024-02-06', 1, 1, '254268', false), - (93246, '2024-05-10 23:12:40.566633+00', '0x1e808728a9ee1027809d2e4cb276d452cee74bd4', 0, 0, 1, '2024-02-06', 1, 2, '261985', false), - (92884, '2024-05-10 23:12:39.614362+00', '0xabc8274f1ce8e5c68cc032472805d583c6adb4c5', 0, 0, 1, '2024-02-06', 2, 5, '262831', false), - (92454, '2024-05-10 23:12:38.402572+00', '0xb07feb3904c23b45b684de3c075fbee20542834b', 0, 0, 1, '2024-02-13', 1, 0, '305749', false), - (73897, '2024-05-10 23:11:43.367783+00', '0xe016b4c48dc2f3d6f8656e25cc439cb271b0acfc', 0, 0, 1, '2024-05-06', 12, 51, '442155', false), - (95636, '2024-05-13 06:00:36.975718+00', '0x970c7e8e0e366e817264aa2aa3634622d4eeaddb', 0, 0, 1, '2024-05-12', 1, 2, '362924', false), - (92619, '2024-05-10 23:12:38.944685+00', '0xcedf2ed657e3310de414e76585e6eab089761fff', 0, 0, 1, '2024-02-06', 2, 5, '250595', false), - (92649, '2024-05-10 23:12:38.977562+00', '0x81c7711e789ac3e16b6a338199cf71b429cdb697', 0, 0, 1, '2024-02-07', 1, 1, '289765', false), - (92667, '2024-05-10 23:12:39.077124+00', '0xf4bda00b258d40436ef9cbefeb57d54789fed084', 0, 0, 1, '2024-02-06', 1, 1, '256797', false), - (92679, '2024-05-10 23:12:39.092656+00', '0x9763771312dfed5bd8f14c224626be2af6c4102a', 0, 0, 1, '2024-02-06', 1, 4, '195418', false), - (91742, '2024-05-10 23:12:36.519648+00', '0x59103865aec6ff37dd2af8002fd8a53a26bf64f7', 0, 0, 1, '2024-03-24', 1, 1, '402316', false), - (92690, '2024-05-10 23:12:39.106113+00', '0xea190fd3b642e24ec290050c548e222f407ee28d', 0, 0, 1, '2024-02-06', 1, 0, '272241', false), - (92729, '2024-05-10 23:12:39.229576+00', '0x38e12ba7d646b402a2f966c6f8f74bdae648b3d3', 0, 0, 1, '2024-02-06', 1, 0, '296942', false), - (91816, '2024-05-10 23:12:36.749849+00', '0xee2f934aafd6cc1bbb4063b21ab69e4b33531b07', 0, 0, 1, '2024-03-17', 1, 2, '326227', false), - (74336, '2024-05-10 23:11:45.355727+00', '0x3743716d3162a129ae4dcc7bcb49c2b8314d9ef9', 0, 0, 1, '2024-05-01', 12, 5, '504150', false), - (93895, '2024-05-11 06:00:25.231177+00', '0x8edce2d4d2a7892f93017eeb43e9742460547ec0', 0, 0, 1, '2024-05-11', 1, 0, '192845', false), - (93957, '2024-05-11 06:00:25.693423+00', '0x4023b23f3219bd24197f465d9f2b842bb892dd9f', 0, 0, 1, '2024-05-11', 1, 0, '224329', false), - (92894, '2024-05-10 23:12:39.634944+00', '0xbc943f7a2d8a397edbb29cc0615699c38d30c9b0', 0, 0, 1, '2024-02-06', 1, 0, '298153', false), - (90594, '2024-05-10 23:12:33.23476+00', '0x27767e627098dcc312cb041d1fb7922877243658', 0, 0, 1, '2024-04-30', 1, 5, '17076', false), - (92915, '2024-05-10 23:12:39.742574+00', '0x16034ea10d6b5e6ab9ef966e3eb7d1fc90b923e8', 0, 0, 1, '2024-02-06', 1, 0, '295698', false), - (84807, '2024-05-10 23:12:16.319697+00', '0xed3a4d7fad1cea09a8c619d6bb3fe3b34c316fce', 0, 0, 1, '2024-05-07', 2, 10, '417892', false), - (86321, '2024-05-10 23:12:21.098526+00', '0xec01c8093342c3c38a5415d97f0d02dd6b1c494e', 0, 0, 1, '2024-05-06', 2, 10, '499712', false), - (91329, '2024-05-10 23:12:35.216601+00', '0x1936b4edf08c011362417c2a2b9cb30e473ad7f3', 0, 0, 1, '2024-04-05', 1, 0, '276181', false), - (90635, '2024-05-10 23:12:33.359956+00', '0x380ff90d682856787d4cc6edabe9308731bb036b', 0, 0, 1, '2024-04-28', 1, 5, '407092', false), - (94391, '2024-05-12 06:00:32.798552+00', '0xdb679f847ef7a71ce90a97419e622f328b71f7d5', 0, 0, 1, '2024-05-12', 1, 5, '397308', false), - (94436, '2024-05-12 06:00:33.109515+00', '0x44db501a30d09c73ffff3ab8b9834d2b477a94ad', 0, 0, 1, '2024-05-12', 1, 5, '392638', false), - (94506, '2024-05-12 06:00:33.81671+00', '0x32a38f97c8c65fea977eb3ac4cd3effcdcfa9bcc', 0, 0, 1, '2024-05-11', 1, 5, '378661', false), - (93893, '2024-05-11 06:00:25.206859+00', '0xf1996154c34e3dc77b26437a102231785e9ad7fe', 0, 0, 1, '2024-05-11', 1, 0, '285089', false), - (91847, '2024-05-10 23:12:36.775579+00', '0x751e85e5bb1df1d345a23d65defd5b8b0ef57b37', 0, 0, 1, '2024-03-17', 1, 5, '290958', false), - (89923, '2024-05-10 23:12:31.41425+00', '0x51e432df264c3315bb0d1aa70d265cdf0792c679', 0, 0, 1, '2024-05-06', 6, 2, '348751', false), - (91861, '2024-05-10 23:12:36.874657+00', '0x9a608d9f416518b5f11acf3dc5594c90d6998e2c', 0, 0, 1, '2024-03-17', 1, 0, '19175', false), - (91875, '2024-05-10 23:12:36.888884+00', '0x700e2cdeb777be3886ba58bd9aae619c53693844', 0, 0, 1, '2024-03-17', 1, 3, '374159', false), - (90609, '2024-05-10 23:12:33.32636+00', '0xd10324ae1d56f87b6f1ae3b9e758fd17501c7237', 0, 0, 1, '2024-04-28', 1, 0, '328460', false), - (94635, '2024-05-12 06:00:34.477104+00', '0x197389dafc68769a782eba063879bc786ce27928', 0, 0, 1, '2024-05-11', 1, 5, '472369', false), - (81676, '2024-05-10 23:12:06.657523+00', '0xc8fbc5004df18365f35cd56ff148b660224fc381', 0, 0, 1, '2024-05-05', 57, 168, '401872', false), - (93937, '2024-05-11 06:00:25.413783+00', '0xedaefbb56775b7aaffe4391f6c268b69b7d4995a', 0, 0, 1, '2024-05-11', 1, 2, '404373', false), - (87218, '2024-05-10 23:12:23.56285+00', '0x98d5a312d54e546cf530256e385480dde97646a7', 0, 0, 1, '2024-05-05', 1, 5, '497746', false), - (87378, '2024-05-10 23:12:24.012271+00', '0xe95ae04c78c20073009985055470e2e420ad79b3', 0, 0, 1, '2024-05-05', 1, 4, '501946', false), - (87442, '2024-05-10 23:12:24.262505+00', '0x62e9d424e4c583ef585b3e69e713716eb7cdcb81', 0, 0, 1, '2024-05-05', 1, 5, '476773', false), - (87523, '2024-05-10 23:12:24.419578+00', '0xc21a5ee89d306353e065a6dd5779470de395dbac', 0, 0, 1, '2024-05-05', 1, 3, '195221', false), - (88601, '2024-05-10 23:12:27.219504+00', '0x2e52ec36463819d79f74ec0311fa65ba7a5138ef', 0, 0, 1, '2024-04-18', 6, 1, '359505', false), - (89038, '2024-05-10 23:12:28.47852+00', '0xeac369f0502a5fbde7e3580001040be795386692', 0, 0, 1, '2024-03-28', 1, 0, '273045', false), - (89248, '2024-05-10 23:12:29.093186+00', '0x8f09cab21e32219618ce302fc60abb9f4dfbb86d', 0, 0, 1, '2024-02-18', 2, 2, '262775', false), - (89920, '2024-05-10 23:12:31.410145+00', '0x130cc6c031a0c4d5d71037555c88503b20a33695', 0, 0, 1, '2024-05-10', 1, 5, '8425', false), - (83450, '2024-05-10 23:12:12.166805+00', '0x1e6495cbc14e87bdd6c641a077db93a84122865e', 0, 0, 1, '2024-05-07', 8, 2, '385271', false), - (93113, '2024-05-10 23:12:40.275564+00', '0x2f29d2321c61d47d87ade1d434f2d6c9274b3de8', 0, 0, 1, '2024-02-06', 1, 0, '303773', false), - (89545, '2024-05-10 23:12:30.234795+00', '0x64298a72f4e3e23387efc409fc424a3f17356fc4', 0, 0, 1, '2023-12-30', 3, 1, '3188', false), - (82637, '2024-05-10 23:12:09.456898+00', '0xc4b064c6cb95e8b5a74bf3b5a4e35544a4339c28', 0, 0, 1, '2024-05-07', 5, 23, '474091', false), - (83661, '2024-05-10 23:12:12.730337+00', '0xd644646307c0fcaaec41c642ac6b3cd642a4289f', 0, 0, 1, '2024-05-07', 2, 10, '477435', false), - (86212, '2024-05-10 23:12:20.7097+00', '0x538474a858d9228e023834fe552fe1c7088c56df', 0, 0, 1, '2024-05-05', 5, 24, '433866', false), - (83438, '2024-05-10 23:12:12.052723+00', '0x9070d8705a65618b302891b320ecdc6ecf0285bb', 0, 0, 1, '2024-05-05', 4, 15, '374192', false), - (83220, '2024-05-10 23:12:11.297851+00', '0xda3a5abb10c31a3ad3403eba2db99fb9f0610f26', 0, 0, 1, '2024-05-08', 1, 5, '489702', false), - (84557, '2024-05-10 23:12:15.591538+00', '0x6ab57cfe408e567f394e61c5ef70c8e1eedbf210', 0, 0, 1, '2024-05-07', 1, 4, '413488', false), - (83521, '2024-05-10 23:12:12.310876+00', '0xed6e5b9c3ceceebd77a58b31dccb6a93fe1d91d1', 0, 0, 1, '2024-05-08', 1, 2, '317562', false), - (83740, '2024-05-10 23:12:13.051439+00', '0x139adc399b42dcd6b4c727705c1ecce2955137b9', 0, 0, 1, '2024-05-08', 1, 1, '504368', false), - (84492, '2024-05-10 23:12:15.340361+00', '0x4bf92605548f9cf02e0345a7857cab1116ffe091', 0, 0, 1, '2024-05-05', 18, 77, '433251', false), - (83117, '2024-05-10 23:12:10.967189+00', '0xed12b0b2d9ba09e48481f67f85a4a1af6c8b8e88', 0, 0, 1, '2024-05-06', 4, 20, '501914', false), - (83868, '2024-05-10 23:12:13.437917+00', '0x8437df1f56c7a144adefb71653f871bc43a63f7f', 0, 0, 1, '2024-05-07', 3, 8, '427017', false), - (83025, '2024-05-10 23:12:10.681997+00', '0x623efe96560c13f0fdc2472402483b8c4fda26ab', 0, 0, 1, '2024-05-07', 2, 9, '372198', false), - (84262, '2024-05-10 23:12:14.488139+00', '0x120e355cccf2fbd06d8f3cc9edbb2f19c256d2f6', 0, 0, 1, '2024-05-07', 1, 5, '450187', false), - (94693, '2024-05-12 06:00:34.904136+00', '0xb85f028dba30dadf8a60341b6b22f59648f3a3ad', 0, 0, 1, '2024-05-11', 2, 10, '458106', false), - (91312, '2024-05-10 23:12:35.186783+00', '0x59e915d482b20aa57c07bd682046eaef745621a1', 0, 0, 1, '2024-04-06', 1, 0, '419890', false), - (90173, '2024-05-10 23:12:32.140756+00', '0x29185eb8cfd22aa719529217bfbade61677e0ad2', 0, 0, 1, '2024-02-08', 7, 8, '15207', false), - (84284, '2024-05-10 23:12:14.506061+00', '0x9fc47955c1ab36baa295483d99e4606f0e2f63b3', 0, 0, 1, '2024-05-07', 1, 5, '488704', false), - (84634, '2024-05-10 23:12:15.763637+00', '0x5002fbcc63dbd15809c75bd0f909f79149a32307', 0, 0, 1, '2024-05-07', 1, 5, '497182', false), - (84831, '2024-05-10 23:12:16.351822+00', '0xe717cca45aa886420645abe2e3fbf54b376a4e3c', 0, 0, 1, '2024-05-07', 2, 10, '471528', false), - (84852, '2024-05-10 23:12:16.536855+00', '0x84f686b64455fceb07973ef6e844d119c7dcb661', 0, 0, 1, '2024-05-07', 1, 5, '518925', false), - (85532, '2024-05-10 23:12:18.446386+00', '0xed7d93da437ad37955a316d61b05b0242e2af4fd', 0, 0, 1, '2024-05-07', 3, 15, '410852', false), - (82413, '2024-05-10 23:12:08.82859+00', '0x626c6f633acc7174430f250b258d9bd72084189c', 0, 0, 1, '2024-05-05', 2, 10, '451696', false), - (86545, '2024-05-10 23:12:21.798378+00', '0xf24ad3113f41ca1aa4dfe92dba6b947b958e41a3', 0, 0, 1, '2024-05-04', 3, 9, '476061', false), - (83961, '2024-05-10 23:12:13.692089+00', '0x8e19969e14cb17bc4fe528073cb3b1683cd74740', 0, 0, 1, '2024-05-07', 2, 8, '442770', false), - (84646, '2024-05-10 23:12:15.853488+00', '0xfa8511e6d42c9b244a6a6b0e6cbc8bf6f52d54fc', 0, 0, 1, '2024-05-07', 5, 25, '509165', false), - (83418, '2024-05-10 23:12:12.034186+00', '0xd1204cf23774aaf09b0e0e16f451e0841dfd510e', 0, 0, 1, '2024-05-06', 3, 15, '420233', false), - (85591, '2024-05-10 23:12:18.756556+00', '0xdace67093ce21b2459f2c03d3f524bf706218b66', 0, 0, 1, '2024-05-06', 2, 10, '506122', false), - (85881, '2024-05-10 23:12:19.600868+00', '0xcc459846ff7587a972caeff28315c8d20390c4bd', 0, 0, 1, '2024-05-06', 1, 5, '498981', false), - (74109, '2024-05-10 23:11:44.66101+00', '0x635de30486d44277080b5c823656f3116c0ceefd', 0, 0, 1, '2024-04-18', 15, 60, '394930', false), - (73845, '2024-05-10 23:11:43.111537+00', '0xce0c16fb9df862074ba49ca2de11738b3ebeab60', 0, 0, 1, '2024-05-10', 6, 30, '486368', false), - (81611, '2024-05-10 23:12:06.488663+00', '0xb632ef220a6ade029d79f794f466ca2ef315ab24', 0, 0, 1, '2024-05-05', 25, 120, '497221', false), - (94522, '2024-05-12 06:00:33.829404+00', '0xa8ccf1f24a99a24acff7a577d2913998685190ca', 0, 0, 1, '2024-05-11', 5, 25, '378676', false), - (83538, '2024-05-10 23:12:12.32715+00', '0xbf3dc3b7e4859792ac333fc4b3350ce4553e0fd2', 0, 0, 1, '2024-05-06', 2, 10, '325596', false), - (86529, '2024-05-10 23:12:21.715093+00', '0x82091104e783a476f2a0ef8eeab61dc83cb8cd70', 0, 0, 1, '2024-05-06', 1, 5, '354550', false), - (84387, '2024-05-10 23:12:14.930745+00', '0x9593d27a94238403e347a290d95c4f4afedf6170', 0, 0, 1, '2024-05-01', 2, 0, '407922', false), - (86534, '2024-05-10 23:12:21.782117+00', '0x3b05801639f442e8b1fb94e3ea9b2a36f3a45e81', 0, 0, 1, '2024-05-05', 2, 8, '439505', false), - (94173, '2024-05-12 06:00:30.801857+00', '0xb650bd70b7c9af8229bceaaf1b1a8e357441c1bf', 0, 0, 1, '2024-05-12', 1, 0, '466548', false), - (94214, '2024-05-12 06:00:31.445016+00', '0xdbfdc6883a66d2f0e2b16a2f235feee486407416', 0, 0, 1, '2024-05-11', 2, 1, '471523', false), - (85100, '2024-05-10 23:12:17.292162+00', '0x1c89d7d1721770fd404bc9d7702696a2951c9a46', 0, 0, 1, '2024-05-07', 3, 9, '399796', false), - (76252, '2024-05-10 23:11:50.805973+00', '0x83132e8f93920b2dee5c4297513c6b0ec09279de', 0, 0, 1, '2024-04-21', 1, 0, '459830', false), - (82521, '2024-05-10 23:12:09.195285+00', '0x9ac6b46ab9fc388ee8c09e9d5a892ae6d2e7a1a5', 0, 0, 1, '2024-05-06', 8, 40, '401675', false), - (83579, '2024-05-10 23:12:12.452052+00', '0x85214a191345cd1baa815ef33141330e9ec443ab', 0, 0, 1, '2024-05-05', 2, 10, '498222', false), - (85030, '2024-05-10 23:12:17.003342+00', '0x25c846675b7755d5622f1bb198799c81e7366dc7', 0, 0, 1, '2024-05-05', 3, 15, '501701', false), - (83898, '2024-05-10 23:12:13.537118+00', '0x19b74048752bfb0f99c76adb89007d0dd2373839', 0, 0, 1, '2024-05-06', 5, 25, '458191', false), - (80844, '2024-05-10 23:12:04.081084+00', '0x5bb96c35a68cba037d0f261c67477416db137f03', 0, 0, 1, '2023-09-12', 1, 0, '11987', false), - (81273, '2024-05-10 23:12:05.362019+00', '0x38b5ac88cda8d22423f98f54c1fa48d79e27e15f', 0, 0, 1, '2023-07-09', 1, 0, '10383', false), - (80517, '2024-05-10 23:12:03.238268+00', '0xcc36145d65c0335249e4abe93a60130bd0e07f49', 0, 0, 1, '2023-08-08', 20, 22, '14141', false), - (77402, '2024-05-10 23:11:53.861689+00', '0xa96cbc4c3651b25aebf9ec28d478781bc366bac7', 0, 0, 1, '2024-04-05', 3, 0, '248681', false), - (77626, '2024-05-10 23:11:54.571251+00', '0x9f9addcb035b8ba1a19289333d5c35d623461a42', 0, 0, 1, '2024-04-05', 3, 9, '299027', false), - (78068, '2024-05-10 23:11:55.922972+00', '0x2423e325bf785096516d88355a5e3854f9d59d1a', 0, 0, 1, '2024-03-30', 3, 4, '235257', false), - (77601, '2024-05-10 23:11:54.546046+00', '0xd8dd5bc18f18fec325ebfe3b04cd86b7fb2a421b', 0, 0, 1, '2024-04-06', 1, 1, '408162', false), - (79262, '2024-05-10 23:11:59.419085+00', '0xf249cdde7020193d2c836a81b58dd2c1993005fb', 0, 0, 1, '2024-02-17', 1, 0, '300200', false), - (81427, '2024-05-10 23:12:05.944084+00', '0xef2abe8d4307fc8afaa6c13aca7a359a706d6bee', 0, 0, 1, '2023-05-13', 2, 0, '1117', false), - (82118, '2024-05-10 23:12:08.055376+00', '0x925ca48fb8bdd4970cbaa0956dd3aeb70ebe6d95', 0, 0, 1, '2024-05-09', 2, 6, '500898', false), - (82677, '2024-05-10 23:12:09.649249+00', '0xea9f26b48dd40575bec5e9c43bc39d29c57647ab', 0, 0, 1, '2024-05-07', 2, 7, '517962', false), - (82453, '2024-05-10 23:12:09.057519+00', '0xb6202bf46f93d747f1ce8d74352a9d3b8e2730a2', 0, 0, 1, '2024-05-09', 1, 3, '512424', false), - (85003, '2024-05-10 23:12:17.002142+00', '0x2a0d77adb85c46260cc1ebea2e70573ef518a252', 0, 0, 1, '2024-05-07', 2, 10, '404567', false), - (84474, '2024-05-10 23:12:15.2457+00', '0x0a1a262f7329136f9ae2ec3cedd577662b24bafa', 0, 0, 1, '2024-05-05', 3, 9, '512591', false), - (86058, '2024-05-10 23:12:20.236069+00', '0x499e16bad7f457740bfed28ac1d43c14335bb5d0', 0, 0, 1, '2024-05-05', 11, 55, '500420', false), - (88144, '2024-05-10 23:12:26.057885+00', '0x9098d27cbeec78f07859f685a260b8734f505810', 0, 0, 1, '2024-05-05', 2, 10, '506823', false), - (86629, '2024-05-10 23:12:21.959196+00', '0x5fb57edaeb1ab8c2338add35de64e78ccf118e0b', 0, 0, 1, '2024-05-06', 1, 5, '438755', false), - (86686, '2024-05-10 23:12:22.188023+00', '0x62824184b80d546ed740c5708dafbe5c25274f88', 0, 0, 1, '2024-05-06', 1, 5, '434670', false), - (84669, '2024-05-10 23:12:15.870584+00', '0xc06fdc18b618eb9713b806a8d67d9c3deae98229', 0, 0, 1, '2024-05-06', 3, 7, '516812', false), - (82505, '2024-05-10 23:12:09.178489+00', '0xa045e5f735e7996a9da3dbd4318e5e1ee87cc115', 0, 0, 1, '2024-05-07', 4, 5, '376166', false), - (94670, '2024-05-12 06:00:34.757688+00', '0x806c8486aded0a44534cfd6e6603ce22720c42a4', 0, 0, 1, '2024-05-11', 4, 20, '377222', false), - (82127, '2024-05-10 23:12:08.063077+00', '0x366d1f4c783fdb8f49128bb32d676a523d9dc14a', 0, 0, 1, '2024-05-08', 4, 15, '449707', false), - (84193, '2024-05-10 23:12:14.340176+00', '0x4f892b8ef1dd11d3c98abc37cbab63b2e3793e13', 0, 0, 1, '2024-05-06', 7, 13, '502049', false), - (92475, '2024-05-10 23:12:38.493087+00', '0x6aa3cab7e7afb3a4c17a7a66ba8b83a8b8870515', 0, 0, 1, '2024-02-06', 2, 1, '295427', false), - (92731, '2024-05-10 23:12:39.228876+00', '0xdb90edc1373a7168c596bf86b662d361cec1a148', 0, 0, 1, '2024-02-06', 2, 3, '288199', false), - (90303, '2024-05-10 23:12:32.440121+00', '0x42eabe5e25cc092eae837961be75bd5dfe182969', 0, 0, 1, '2024-05-05', 1, 5, '490133', false), - (90096, '2024-05-10 23:12:31.836358+00', '0x04a5e8c4a44780d115adda776b04bcf1c4f3254e', 0, 0, 1, '2024-02-02', 12, 42, '14193', false), - (91296, '2024-05-10 23:12:35.176622+00', '0xd05de9ed8f8403af4d84679f1593114e1213d790', 0, 0, 1, '2024-03-27', 6, 0, '411265', false), - (82091, '2024-05-10 23:12:07.948538+00', '0x40facd6644c83c3fb0e459648c2f35b930b06d1c', 0, 0, 1, '2024-05-06', 12, 59, '491718', false), - (91560, '2024-05-10 23:12:35.946759+00', '0x6e2a497a065674ab8b129fd7ddb301c6243c6362', 0, 0, 1, '2023-12-21', 2, 1, '18154', false), - (88237, '2024-05-10 23:12:26.319132+00', '0x82f5b0bd0036cc68915c806294bad95b104ab71c', 0, 0, 1, '2024-05-05', 2, 8, '314162', false), - (84339, '2024-05-10 23:12:14.666134+00', '0xca037dda138744da53e316be856d3315a0f5f6b1', 0, 0, 1, '2024-05-07', 1, 2, '507678', false), - (84020, '2024-05-10 23:12:13.819559+00', '0x3986eda6156397779b764b0780b3a282849d8ea8', 0, 0, 1, '2024-05-07', 2, 10, '462121', false), - (88349, '2024-05-10 23:12:26.582499+00', '0xb0e8163cda1e1023164ded678dfd434b9257b8b9', 0, 0, 1, '2024-05-05', 1, 5, '423518', false), - (83487, '2024-05-10 23:12:12.207897+00', '0xd23858b29b806c5329c4c4523f36d5fbb81042b6', 0, 0, 1, '2024-05-07', 4, 19, '519350', false), - (85602, '2024-05-10 23:12:18.768447+00', '0x6628f3161b306cf3e74ead4766a32120e8a2f79e', 0, 0, 1, '2024-05-07', 1, 3, '393810', false), - (87680, '2024-05-10 23:12:24.87828+00', '0xad19c70c395cf904f9769e4d0b9eb6d952dc94fa', 0, 0, 1, '2024-05-05', 3, 15, '492179', false), - (82861, '2024-05-10 23:12:10.171522+00', '0xbbcbb9efdfc3609db5057dc2084e1f6f5388bcb1', 0, 0, 1, '2024-05-05', 5, 25, '500839', false), - (84030, '2024-05-10 23:12:13.831448+00', '0x305a09a68c0f305cb85a05093ae395fc2002735f', 0, 0, 1, '2024-05-07', 4, 20, '512000', false), - (87871, '2024-05-10 23:12:25.297741+00', '0xdc4ae40db1ef9fe896315d85664597e7a1f63c06', 0, 0, 1, '2024-05-05', 1, 5, '500110', false), - (94128, '2024-05-11 06:00:26.800192+00', '0x35aa5eb4ae80932819b8628fdf2d9ce7da76345e', 0, 0, 1, '2024-05-11', 18, 83, '432454', false), - (75005, '2024-05-10 23:11:47.403201+00', '0x3821bcf2bfa58ddd89493f102da7ee2b8e9052a2', 0, 0, 1, '2024-05-06', 45, 166, '500262', false), - (83356, '2024-05-10 23:12:11.776282+00', '0xd352d37feb6c7bfe5cce88bf8ee14167c5895dc0', 0, 0, 1, '2024-05-08', 5, 25, '405697', false), - (94118, '2024-05-11 06:00:26.781732+00', '0xa189076d99058c6e05b933faf86a735d582948e2', 0, 0, 1, '2024-05-11', 18, 83, '433331', false), - (83930, '2024-05-10 23:12:13.569448+00', '0xc73601486eaab127b05a878559c5bed2c7f3e125', 0, 0, 1, '2024-05-05', 4, 17, '508924', false), - (82921, '2024-05-10 23:12:10.344458+00', '0x91237e6347ce3d8484d4f869821057db19555caa', 0, 0, 1, '2024-05-05', 13, 61, '407524', false), - (87952, '2024-05-10 23:12:25.532359+00', '0x38a97255e2d06d81a67fbb3d7cb98e85df93f15a', 0, 0, 1, '2024-05-05', 1, 5, '481256', false), - (84004, '2024-05-10 23:12:13.795595+00', '0x1ec083891fe274d243a38664ffd24a78483163b0', 0, 0, 1, '2024-05-07', 4, 19, '506657', false), - (86840, '2024-05-10 23:12:22.545886+00', '0x708fc7bc7c6db0a0e4a960394ad24498685b6908', 0, 0, 1, '2024-05-06', 10, 3, '489933', false), - (84943, '2024-05-10 23:12:16.87481+00', '0xc6a26a71156c65357e4971816258b93f5fd387dc', 0, 0, 1, '2024-05-06', 2, 8, '486079', false), - (83914, '2024-05-10 23:12:13.552517+00', '0x30fc654b4809a1cb1380225f66bce3a35c62a39b', 0, 0, 1, '2024-05-07', 2, 10, '503580', false), - (86893, '2024-05-10 23:12:22.662516+00', '0x3ea9ef13ae8a6700ea3abfdb6c86f00944a76a08', 0, 0, 1, '2024-05-06', 1, 3, '315010', false), - (87984, '2024-05-10 23:12:25.652024+00', '0x7a7235e946b83213739950de0a71cac7651b0c36', 0, 0, 1, '2024-05-05', 1, 5, '16176', false), - (87277, '2024-05-10 23:12:23.709359+00', '0x4fb20bc374658feb1fddec6c6de78c6dae8e042c', 0, 0, 1, '2024-05-05', 1, 5, '443794', false), - (86787, '2024-05-10 23:12:22.413596+00', '0x01ef38d0e8f41463fbb685d078c197236a0e52e9', 0, 0, 1, '2024-05-05', 2, 10, '451675', false), - (87450, '2024-05-10 23:12:24.278052+00', '0xe2431fa4822dca8655f5f6fa0ac06a01234d9e8a', 0, 0, 1, '2024-05-05', 1, 5, '403251', false), - (85833, '2024-05-10 23:12:19.478212+00', '0x54d07de68808476d7b00a23fed829e58967e5310', 0, 0, 1, '2024-05-05', 2, 10, '420496', false), - (87470, '2024-05-10 23:12:24.301191+00', '0x7295997ceff17d184e7a8cc2f9422165a4070112', 0, 0, 1, '2024-05-05', 1, 5, '405239', false), - (91804, '2024-05-10 23:12:36.735391+00', '0x27853c1d975b11a0424b297615b30c434559c22b', 0, 0, 1, '2024-03-18', 2, 8, '377947', false), - (83237, '2024-05-10 23:12:11.317184+00', '0x3ce0c57ee36cec0b4eeeb5eafbe9251c59a629df', 0, 0, 1, '2024-05-06', 6, 29, '503190', false), - (82821, '2024-05-10 23:12:10.06116+00', '0xb3c22b56dbf97c2c39cdc09c71ccf1c6cf4ca041', 0, 0, 1, '2024-05-05', 4, 19, '500879', false), - (94899, '2024-05-12 06:00:36.289438+00', '0xbfbd69e77976530d33841690a94b16d8aaf0b033', 0, 0, 1, '2024-05-11', 1, 5, '12547', false), - (94925, '2024-05-12 06:00:36.32085+00', '0x49d0e4b32061d302a628fc542d3a32844f8f3349', 0, 0, 1, '2024-05-11', 1, 2, '476235', false), - (88582, '2024-05-10 23:12:27.200473+00', '0x24a0e4ee348f33252e83fe1e824499381dd21aa9', 0, 0, 1, '2024-02-01', 32, 80, '5064', false), - (86384, '2024-05-10 23:12:21.441071+00', '0x6654c50e74e79ecc27132810502ff6524de1b381', 0, 0, 1, '2024-05-06', 1, 5, '403074', false), - (87528, '2024-05-10 23:12:24.490961+00', '0x06820f9584291334d38ff09c832b560c16263a60', 0, 0, 1, '2024-05-05', 1, 5, '505708', false), - (88793, '2024-05-10 23:12:27.695027+00', '0xdf8b030dc43d83df7c6ccfff8ec04a2a9322cb98', 0, 0, 1, '2024-04-14', 1, 2, '384528', false), - (89957, '2024-05-10 23:12:31.435495+00', '0xcfb13a6e985a52e227fc3ecc854dd83d83ea8cba', 0, 0, 1, '2024-05-10', 1, 0, '343915', false), - (89233, '2024-05-10 23:12:29.053722+00', '0x9d62f5bbb3b3d138a7acc666108cfbbd67dbda2a', 0, 0, 1, '2024-02-23', 1, 1, '4475', false), - (84526, '2024-05-10 23:12:15.361445+00', '0xa53214e8ba22a272265b755eb41e6f37af2c6c8e', 0, 0, 1, '2024-05-06', 7, 6, '510679', false), - (90205, '2024-05-10 23:12:32.173225+00', '0x94eb7315d95a8e5fb0981c64c06e2aa6bb1e7fb6', 0, 0, 1, '2024-05-06', 1, 1, '495248', false), - (90426, '2024-05-10 23:12:32.816528+00', '0xad8f8d9a0738ef1103e7e05f7f5a61c05b51345c', 0, 0, 1, '2024-05-03', 1, 5, '507897', false), - (90413, '2024-05-10 23:12:32.793875+00', '0xa6bee3f99ee2b70672a34a983af0bbf79c028cd9', 0, 0, 1, '2024-05-03', 2, 7, '387207', false), - (90248, '2024-05-10 23:12:32.299692+00', '0xc9ddb5e37165827bbbff15b582e232c06862c4e8', 0, 0, 1, '2024-03-17', 6, 14, '12312', false), - (90019, '2024-05-10 23:12:31.659595+00', '0xa40361b0a09f6936182ad0d29ec827bb66bbf8bc', 0, 0, 1, '2024-04-13', 6, 4, '333133', false), - (86698, '2024-05-10 23:12:22.20071+00', '0xf52e582dffaeca1cb40f73a6b21f7d90ce2ddf02', 0, 0, 1, '2024-05-06', 1, 5, '290315', false), - (87211, '2024-05-10 23:12:23.544491+00', '0xe47612d0a1e0cefffc8a63e820dbe576f83563db', 0, 0, 1, '2024-05-05', 1, 5, '396838', false), - (84353, '2024-05-10 23:12:14.893326+00', '0x6f94533e3c24798697fe47770667cdebb8b98d7b', 0, 0, 1, '2024-05-07', 3, 5, '345389', false), - (85185, '2024-05-10 23:12:17.503367+00', '0xab05f165c08a79d48a450d977f468e86bd3de0a0', 0, 0, 1, '2024-05-05', 7, 32, '502365', false), - (88538, '2024-05-10 23:12:27.076651+00', '0x33d8b6ba1ff7665ca84d002b15eec8f73c0b0ea6', 0, 0, 1, '2024-05-04', 1, 1, '474233', false), - (88786, '2024-05-10 23:12:27.689098+00', '0x09b0f27549dcaf5d31355628f1f0ea6e1c0c4dae', 0, 0, 1, '2024-04-15', 1, 3, '472523', false), - (94205, '2024-05-12 06:00:31.318792+00', '0xa8cf77cdeb2cfa73e545f73ff62ce900614d00b3', 0, 0, 1, '2024-05-11', 1, 1, '343037', false), - (88866, '2024-05-10 23:12:27.924657+00', '0x8b6be0435a9c364332abe7f3eb0043098b32fca0', 0, 0, 1, '2024-04-10', 1, 3, '421702', false), - (92035, '2024-05-10 23:12:37.269472+00', '0xb201563c400ec5c55eca9add0c484b212f31f463', 0, 0, 1, '2024-03-09', 1, 1, '376453', false), - (90951, '2024-05-10 23:12:34.270374+00', '0x0aadaa54b39cb6762184ea2c57b3cf03ceba6d64', 0, 0, 1, '2024-04-15', 1, 2, '196327', false), - (92095, '2024-05-10 23:12:37.41322+00', '0x895b7f7af1c10d1ff0cdcef8dd10dd165ea10a28', 0, 0, 1, '2024-03-08', 1, 0, '361011', false), - (92111, '2024-05-10 23:12:37.508776+00', '0xa92e8d7667faf4527476d12e042399607b974637', 0, 0, 1, '2024-03-06', 1, 0, '201595', false), - (91524, '2024-05-10 23:12:35.910019+00', '0xca13bfcf1b435ce9208f8e87fc55ae1310b13a9f', 0, 0, 1, '2024-03-31', 1, 0, '429691', false), - (91547, '2024-05-10 23:12:35.928826+00', '0xfe4eedcfdeeab4f26a5319c952f81c3cd2dd4859', 0, 0, 1, '2024-03-31', 1, 2, '243712', false), - (90527, '2024-05-10 23:12:33.077164+00', '0xed4a59031e82296ed0ce0e3e1bf0020a5570150d', 0, 0, 1, '2024-05-01', 1, 0, '235023', false), - (90543, '2024-05-10 23:12:33.097779+00', '0xd0cf40da82ecb3b2b2588cd90d3382b8b865256d', 0, 0, 1, '2024-05-01', 1, 1, '449320', false), - (89567, '2024-05-10 23:12:30.258989+00', '0x72e1638bd8cd371bfb04cf665b749a0e4ae38324', 0, 0, 1, '2023-12-11', 1, 0, '5729', false), - (91867, '2024-05-10 23:12:36.874224+00', '0x42bc42766e797183e12112c835779a289cd1a1fd', 0, 0, 1, '2023-11-22', 2, 4, '19434', false), - (94229, '2024-05-12 06:00:31.480206+00', '0x141380089504d8a2c9534ae1a533b2b6f46d083d', 0, 0, 1, '2024-05-11', 1, 0, '355836', false), - (91936, '2024-05-10 23:12:36.997241+00', '0x07deef8ad7d095b45de4a2b39ca7d9f8aa7d4022', 0, 0, 1, '2024-03-14', 1, 0, '19200', false), - (92663, '2024-05-10 23:12:39.070221+00', '0x859d778bfb034d82ed9d6e1366da5bcf5870b416', 0, 0, 1, '2024-02-06', 1, 1, '248731', false), - (90476, '2024-05-10 23:12:32.937491+00', '0x0717604b3b44b661408e187cb11f3dc313480621', 0, 0, 1, '2024-02-17', 11, 8, '355337', false), - (92464, '2024-05-10 23:12:38.401607+00', '0x43a527914b38fd027f1da638c27dd4a6d609aa9e', 0, 0, 1, '2024-02-13', 1, 1, '227340', false), - (92702, '2024-05-10 23:12:39.118799+00', '0xf6ee42e650e28eced96d97dd1f953118fbed5633', 0, 0, 1, '2024-02-06', 1, 3, '252122', false), - (92723, '2024-05-10 23:12:39.217012+00', '0xeab6e4c1b896b1af80e66e36b9e5b1d752ac8d01', 0, 0, 1, '2024-02-06', 1, 0, '251477', false), - (92758, '2024-05-10 23:12:39.253066+00', '0xa0542d91b0e7461a8de0ecf7dc14ba099c3be173', 0, 0, 1, '2024-02-06', 1, 1, '283401', false), - (92777, '2024-05-10 23:12:39.351328+00', '0xab1ab409cd23880c4999fa5f4f24925540a58926', 0, 0, 1, '2024-02-06', 1, 0, '303954', false), - (92686, '2024-05-10 23:12:39.091163+00', '0xa5f48a86c6ec93750fbf3a4105d0fbf6aa5a1cdd', 0, 0, 1, '2024-02-06', 3, 0, '264678', false), - (90633, '2024-05-10 23:12:33.356407+00', '0x36c7b7f5a4896684fad6fc71e08746952a369405', 0, 0, 1, '2023-12-24', 3, 3, '187922', false), - (88852, '2024-05-10 23:12:27.804455+00', '0xa1f6e10205bd31c4d8ea4f2c036cd8d7a732385f', 0, 0, 1, '2024-04-11', 1, 0, '350227', false), - (88715, '2024-05-10 23:12:27.474488+00', '0xf1c1c9970ce969d679372341cf6a08d743c35ae4', 0, 0, 1, '2024-04-05', 2, 3, '390761', false), - (88950, '2024-05-10 23:12:28.116444+00', '0xbbf0c5f9e1c8385fba7894a54bed4a9363d28b8b', 0, 0, 1, '2024-04-04', 1, 0, '412686', false), - (89922, '2024-05-10 23:12:31.412031+00', '0x4939d67eeb427312c86d9f889bd7d90cbd1ca266', 0, 0, 1, '2024-05-10', 2, 0, '333813', false), - (89933, '2024-05-10 23:12:31.427628+00', '0x48555a6c6c88cbe69d36a44ca6095b731f453597', 0, 0, 1, '2024-05-06', 7, 0, '191751', false), - (90270, '2024-05-10 23:12:32.406456+00', '0x6cd2bbb806b308c9c9792bbb6d803fe8d0eede75', 0, 0, 1, '2024-05-05', 1, 0, '484619', false), - (90027, '2024-05-10 23:12:31.671189+00', '0x8425ccd02cc69ff71fc288e2a8ed56c81b6080c5', 0, 0, 1, '2024-05-01', 2, 4, '405599', false), - (90630, '2024-05-10 23:12:33.355057+00', '0x7574620276de65d76a5ef8609a0f6c37480e8b8e', 0, 0, 1, '2024-04-27', 1, 1, '385357', false), - (91270, '2024-05-10 23:12:35.055131+00', '0x94b3709c3744fe3741d5a4ab242952e7e77bebce', 0, 0, 1, '2024-04-07', 1, 5, '441099', false), - (91290, '2024-05-10 23:12:35.169861+00', '0x1a4850eb7e1b7cb28a4f42d44c26ef2b64333d13', 0, 0, 1, '2024-04-06', 1, 0, '325735', false), - (91325, '2024-05-10 23:12:35.210899+00', '0x9628be77fb3dcd890fd93a5d039092fca855d3cc', 0, 0, 1, '2024-04-05', 1, 0, '431754', false), - (91427, '2024-05-10 23:12:35.566275+00', '0xc5d2d45605e22bd7946128af919284a8bc8d8e34', 0, 0, 1, '2024-04-03', 1, 1, '438301', false), - (91446, '2024-05-10 23:12:35.662692+00', '0x6281ca9e8e4a5bf41575afb5bca68f4c75b27a2f', 0, 0, 1, '2024-04-02', 1, 1, '420890', false), - (91537, '2024-05-10 23:12:35.922806+00', '0xadfb2776eb40e5218784386aa576ca9e08450127', 0, 0, 1, '2024-03-31', 1, 0, '241474', false), - (91551, '2024-05-10 23:12:35.941351+00', '0xcd0b67a61e5e8f4616c19e421e929813b6d947df', 0, 0, 1, '2024-03-31', 1, 0, '7633', false), - (91587, '2024-05-10 23:12:36.050037+00', '0x52f34571e24c68524426d339faf1001ed3a3dbd5', 0, 0, 1, '2024-03-28', 1, 1, '410952', false), - (90217, '2024-05-10 23:12:32.270759+00', '0x5d7f5ca8e26c44e009ff378f9608c6e332b0239f', 0, 0, 1, '2024-04-22', 3, 10, '352294', false), - (92040, '2024-05-10 23:12:37.281421+00', '0x3a913c373169883d778f14195cbe827cc5ac2da5', 0, 0, 1, '2024-03-08', 1, 0, '368377', false), - (83111, '2024-05-10 23:12:10.961261+00', '0x48a8250b961b880755d37b1ddd1d0d59ddae80ec', 0, 0, 1, '2024-05-05', 21, 105, '481476', false), - (94322, '2024-05-12 06:00:32.397273+00', '0x46354bcf55f96101342cfc9d7c829688475e32c2', 0, 0, 1, '2024-05-11', 1, 5, '399296', false), - (94333, '2024-05-12 06:00:32.43129+00', '0x41550ec61cc1d607b776379aea1d4b9d18b1bade', 0, 0, 1, '2024-05-11', 1, 0, '252943', false), - (89060, '2024-05-10 23:12:28.496043+00', '0x0544dd5edbc9ee8a565accb57a0d75a7fa8fe9fe', 0, 0, 1, '2024-01-22', 12, 7, '227326', false), - (91724, '2024-05-10 23:12:36.496749+00', '0xd683c0c013e1382143b364d7fb7b64c3097087af', 0, 0, 1, '2024-03-24', 1, 0, '332904', false), - (89123, '2024-05-10 23:12:28.726116+00', '0x524ce8d03ebdaa4877fcf6451f79b23cdada314e', 0, 0, 1, '2024-03-15', 1, 2, '386044', false), - (91824, '2024-05-10 23:12:36.758802+00', '0xe679d21696f2d833e1d92cf44f88a78e796756a3', 0, 0, 1, '2023-06-12', 2, 0, '11831', false), - (89264, '2024-05-10 23:12:29.209642+00', '0x83266a9d89bf57897e9f66253d415028b1751c00', 0, 0, 1, '2024-02-11', 3, 1, '334490', false), - (92494, '2024-05-10 23:12:38.513598+00', '0xbf7c0a640d21d6c81022a083047ddc0ad52cbf1e', 0, 0, 1, '2024-02-10', 2, 0, '294433', false), - (91841, '2024-05-10 23:12:36.777314+00', '0x2042c5e7fb1123fe38fa1f37d341decb78b970e6', 0, 0, 1, '2024-03-17', 1, 0, '276824', false), - (92611, '2024-05-10 23:12:38.800502+00', '0x7f730efd6bf10c3a6aec489665ad4dde978c9175', 0, 0, 1, '2024-02-06', 3, 1, '14560', false), - (90470, '2024-05-10 23:12:32.930819+00', '0x81d6ad16457a01f6e69224392d962bf959187daa', 0, 0, 1, '2024-05-02', 1, 5, '472951', false), - (90859, '2024-05-10 23:12:34.013088+00', '0xe32058676c3a5f192e07fb14955508b9cc4349a3', 0, 0, 1, '2024-04-17', 2, 6, '536', false), - (90807, '2024-05-10 23:12:33.894354+00', '0xbdcc47f2689591975d0e02c208e8fbae607c451d', 0, 0, 1, '2024-04-17', 2, 0, '461133', false), - (92819, '2024-05-10 23:12:39.473583+00', '0xccf5f5c388c546f25580e47e3365286f0bc5d65d', 0, 0, 1, '2024-02-06', 1, 1, '306038', false), - (90521, '2024-05-10 23:12:33.070175+00', '0xe14ca0632c5430abddd40ba077da5fba8821a950', 0, 0, 1, '2024-05-01', 1, 5, '333517', false), - (89726, '2024-05-10 23:12:30.717594+00', '0x830ba1078a698c0e318bdff86d1c6a2ffa7c3b0e', 0, 0, 1, '2023-09-10', 1, 1, '16736', false), - (91229, '2024-05-10 23:12:34.958612+00', '0xc194765f438294595eb4a620ca6d403f7c7e64c7', 0, 0, 1, '2024-04-08', 1, 5, '383338', false), - (91260, '2024-05-10 23:12:35.076998+00', '0x8e055a7ccdce910c256a36585f5f929d2c889a1a', 0, 0, 1, '2024-04-07', 1, 0, '383525', false), - (91896, '2024-05-10 23:12:36.899891+00', '0x73389e81773bcfa5cc22fe09de7a296c96063811', 0, 0, 1, '2024-03-17', 1, 0, '385994', false), - (92859, '2024-05-10 23:12:39.517738+00', '0x9a7aec9fee56e448a52277afe3e8237f89522f3b', 0, 0, 1, '2024-02-06', 1, 1, '19361', false), - (90608, '2024-05-10 23:12:33.24814+00', '0xd15ad24623fecef20832c58c162740756790c615', 0, 0, 1, '2024-04-15', 7, 2, '433375', false), - (90967, '2024-05-10 23:12:34.284058+00', '0x5a1f80a41430f23954cb3e34b4b92a2121cf0e71', 0, 0, 1, '2024-04-15', 1, 0, '462761', false), - (90640, '2024-05-10 23:12:33.36472+00', '0x9dab43bc15bd29cfe3030ca1b7edb3eeb9f3b6c1', 0, 0, 1, '2024-04-27', 1, 5, '16920', false), - (89935, '2024-05-10 23:12:31.429287+00', '0x04df8c1cba27019eb0e7ad6dc9927d02b7c52478', 0, 0, 1, '2024-05-10', 1, 1, '246817', false), - (91041, '2024-05-10 23:12:34.540647+00', '0x9d4cae1f31c887d7e24df5154e047de2cb6ad1a1', 0, 0, 1, '2024-04-12', 1, 2, '472309', false), - (92579, '2024-05-10 23:12:38.772217+00', '0x2e1275c801e9ce2e998ab13207978c58086d2b0c', 0, 0, 1, '2024-02-07', 2, 0, '291810', false), - (91639, '2024-05-10 23:12:36.182299+00', '0xb0e6e532643be421f9aabb750b2573b28440a069', 0, 0, 1, '2024-03-27', 1, 0, '10198', false), - (89997, '2024-05-10 23:12:31.564684+00', '0xa3cbe2f0f98f124c8bcee4133631bed416669bd7', 0, 0, 1, '2024-04-23', 5, 2, '335153', false), - (92645, '2024-05-10 23:12:38.971518+00', '0xae61c013669b332b418e6ed1d6879e42f526a8e1', 0, 0, 1, '2024-02-07', 1, 0, '264257', false), - (92687, '2024-05-10 23:12:39.090735+00', '0x760206bea1605394eecc2488952ca09e10ac3bc1', 0, 0, 1, '2024-02-06', 1, 1, '266331', false), - (90031, '2024-05-10 23:12:31.67047+00', '0x1c670dc214de4819730e7305703ec8c986b8c7fc', 0, 0, 1, '2024-05-08', 2, 2, '317083', false), - (92708, '2024-05-10 23:12:39.124206+00', '0x9fa426645bd71d466468f4e6dfc0e14b0a21a7d3', 0, 0, 1, '2024-02-06', 1, 3, '255425', false), - (92728, '2024-05-10 23:12:39.229136+00', '0x87a8eaf122d8ca8d5612ae522a0460bceae09989', 0, 0, 1, '2024-02-06', 1, 5, '270945', false), - (92780, '2024-05-10 23:12:39.356852+00', '0xa73f34a5e654dc8e786756003ff84ddb200ccc9f', 0, 0, 1, '2024-02-06', 1, 0, '266810', false), - (92887, '2024-05-10 23:12:39.62577+00', '0xb06437c630b57598a6c177513f2f4ab04b95744b', 0, 0, 1, '2024-02-06', 1, 5, '14978', false), - (92906, '2024-05-10 23:12:39.644254+00', '0xead8d125308cbe40abaec967366f9d41301253e0', 0, 0, 1, '2024-02-06', 1, 0, '277024', false), - (93016, '2024-05-10 23:12:40.00882+00', '0x43a75d87479df215bf316a8903c93d449d19f5d7', 0, 0, 1, '2024-02-06', 1, 5, '243056', false), - (93056, '2024-05-10 23:12:40.057836+00', '0x596540ca66b5b2bbbf9fa35d67fbf336754eb780', 0, 0, 1, '2024-02-06', 1, 0, '17519', false), - (88911, '2024-05-10 23:12:27.969894+00', '0xd611f785a6f78e2f648a6de44c24cec19f47265d', 0, 0, 1, '2024-04-06', 1, 5, '322266', false), - (88944, '2024-05-10 23:12:28.104952+00', '0x1df6e2636e29f50e29f4fb1ff7a9b1899108b0c5', 0, 0, 1, '2024-04-04', 1, 3, '2816', false), - (88987, '2024-05-10 23:12:28.333166+00', '0x60db49be7bb79683d6515a2bad2640634cd08030', 0, 0, 1, '2024-03-29', 2, 1, '340357', false), - (91611, '2024-05-10 23:12:36.073249+00', '0x1f59f78a84c03f61b3d3c29ba3cd7137909e6257', 0, 0, 1, '2024-02-28', 4, 2, '374506', false), - (91640, '2024-05-10 23:12:36.172069+00', '0x1a3fcac25b69015f4110fddc689d11a8b3133975', 0, 0, 1, '2024-03-28', 1, 1, '402852', false), - (90586, '2024-05-10 23:12:33.226397+00', '0x90866dd1e733af642d56938dc6998670d8cbf183', 0, 0, 1, '2024-04-20', 3, 1, '425865', false), - (90734, '2024-05-10 23:12:33.604887+00', '0x6b1c85ab6d78ac11b72d810910b762605e458217', 0, 0, 1, '2024-04-19', 3, 7, '325282', false), - (90832, '2024-05-10 23:12:33.916202+00', '0xb62c0fd71d304074923e035a85f03fbe42d617a5', 0, 0, 1, '2024-04-19', 1, 1, '242051', false), - (89322, '2024-05-10 23:12:29.392104+00', '0x1ba289312956e4925dd70a756a0e9c379576c21e', 0, 0, 1, '2024-02-09', 2, 0, '299132', false), - (89424, '2024-05-10 23:12:29.83973+00', '0xa49dcfd59f39dfada7eb11f60f173187b5401a06', 0, 0, 1, '2024-02-06', 1, 1, '297798', false), - (94895, '2024-05-12 06:00:36.289473+00', '0x976cf1186189d3b318742a98707f06a0a98c1d69', 0, 0, 1, '2024-05-11', 2, 1, '526835', false), - (90110, '2024-05-10 23:12:31.850712+00', '0xb9c967aa41292ff7afe2adcd0ee04d302a88e8dd', 0, 0, 1, '2024-05-08', 2, 2, '301979', false), - (94597, '2024-05-12 06:00:34.438985+00', '0xdda65088ab4a68a8eae61d480d1d73a3cfbc5f9c', 0, 0, 1, '2024-05-11', 3, 15, '378518', false), - (86633, '2024-05-10 23:12:22.059634+00', '0x1464728dc12e635e15c250981c047eb888e44dd6', 0, 0, 1, '2024-05-06', 4, 3, '380504', false), - (91977, '2024-05-10 23:12:37.136982+00', '0x8511be971f2e767a3232dbea4183f345b65b0ef2', 0, 0, 1, '2024-03-12', 1, 4, '310570', false), - (92270, '2024-05-10 23:12:37.895155+00', '0x3c0afeb79614097f45d699c7a5458ecf722cbc1a', 0, 0, 1, '2024-02-23', 1, 0, '307429', false), - (92347, '2024-05-10 23:12:38.148576+00', '0x8aff4b03df234b1c95f4798e6b382eb3fa63a85a', 0, 0, 1, '2024-02-19', 1, 2, '350870', false), - (92012, '2024-05-10 23:12:37.24732+00', '0x999ecf55bf3b5dc0f1b76359b0456ccdedce4522', 0, 0, 1, '2024-03-09', 1, 5, '316372', false), - (90161, '2024-05-10 23:12:32.061624+00', '0x4662b891269e2196e67cca73e4b7812dd91c7ae3', 0, 0, 1, '2024-01-13', 9, 34, '217510', false), - (91253, '2024-05-10 23:12:35.067564+00', '0x06471448ecabe745ee64b0d55246662f99b1626b', 0, 0, 1, '2024-04-07', 1, 0, '200695', false), - (89161, '2024-05-10 23:12:28.85347+00', '0xa3268edfd84415472d9c30ecdeba487f865ee063', 0, 0, 1, '2023-07-28', 49, 128, '14815', false), - (92047, '2024-05-10 23:12:37.362726+00', '0xbe3c2967098cb72ba828a52540a120c2cd1c5248', 0, 0, 1, '2024-03-08', 1, 0, '227554', false), - (90535, '2024-05-10 23:12:33.087197+00', '0x679744463c49670803c73f6698c79a1851640484', 0, 0, 1, '2024-04-06', 7, 31, '386794', false), - (90137, '2024-05-10 23:12:32.031687+00', '0x3d4038ec487c25af364fd6dfd0177e427a15db58', 0, 0, 1, '2024-05-07', 2, 3, '328381', false), - (90228, '2024-05-10 23:12:32.285064+00', '0xfeb1842d193aa4ba2c9ff850f78cbf7af99dff23', 0, 0, 1, '2024-05-06', 1, 0, '432711', false), - (91814, '2024-05-10 23:12:36.748185+00', '0xd7ed9764dabadaa5a89ebb855a3acc6e33b9265e', 0, 0, 1, '2024-03-18', 1, 1, '324380', false), - (90293, '2024-05-10 23:12:32.420677+00', '0x4c47ab777f1f64d1f3d6efbf1cc7ab5a5224af4a', 0, 0, 1, '2024-05-05', 2, 1, '23074', false), - (91238, '2024-05-10 23:12:35.049767+00', '0xd508c555c8349ae273c1da1fad738e9b66950d4b', 0, 0, 1, '2024-04-06', 2, 9, '15620', false), - (90445, '2024-05-10 23:12:32.834535+00', '0xdc7e36f806012252c7a88e7c8f00802be46453df', 0, 0, 1, '2024-05-02', 1, 0, '401215', false), - (91361, '2024-05-10 23:12:35.33174+00', '0x1f35e74d2bb0a43fe79ca376ead63da7c926e455', 0, 0, 1, '2024-04-04', 1, 3, '189232', false), - (92286, '2024-05-10 23:12:37.982696+00', '0xf1f53980c49824098b78ca4c3eabd4e85b536b82', 0, 0, 1, '2024-02-18', 4, 1, '220173', false), - (92067, '2024-05-10 23:12:37.392894+00', '0x83f56dcec278bf08b56ec2753ca05c886f82c22d', 0, 0, 1, '2024-03-08', 1, 0, '379923', false), - (91830, '2024-05-10 23:12:36.763522+00', '0x4f478cbeb659e30bd33e63b7880a2c50fc13c4a3', 0, 0, 1, '2024-02-06', 3, 3, '308343', false), - (92178, '2024-05-10 23:12:37.642677+00', '0x71d0106d6e85029434515dfec2fe86f3d10bea7c', 0, 0, 1, '2024-02-17', 4, 0, '258806', false), - (92525, '2024-05-10 23:12:38.639523+00', '0x548d284fa71b6fbfa89b914672b20a4b64112d33', 0, 0, 1, '2024-02-09', 1, 0, '251760', false), - (92862, '2024-05-10 23:12:39.59698+00', '0x98a1956f39c5f34018a49305ee2e2b152743bd7f', 0, 0, 1, '2024-02-06', 4, 1, '266955', false), - (92668, '2024-05-10 23:12:39.078703+00', '0x435c45cd8fd9a02692df7bff253cc5604497503e', 0, 0, 1, '2024-02-06', 1, 0, '266392', false), - (77755, '2024-05-10 23:11:55.011677+00', '0x7aeee42683e7cb6202eee0b6480c48616cf9fac9', 0, 0, 1, '2024-04-04', 7, 8, '446308', false), - (76663, '2024-05-10 23:11:51.814155+00', '0x6c167ae3f9247ccfbe9b9bf3c1b014612ca680a5', 0, 0, 1, '2024-04-09', 3, 9, '211653', false), - (92721, '2024-05-10 23:12:39.217543+00', '0x06a9b6eb42ea22b1fe8f88d6d8c204ff97aa8fba', 0, 0, 1, '2024-02-06', 1, 0, '265160', false), - (92781, '2024-05-10 23:12:39.357503+00', '0xbaabc5d42a3cccae1aa34306a28861d55593c78b', 0, 0, 1, '2024-02-06', 2, 2, '243282', false), - (93580, '2024-05-10 23:12:41.542257+00', '0x89637e840429edd9902209efc1f3a58350de0e13', 0, 0, 1, '2023-12-24', 2, 6, '191538', false), - (93169, '2024-05-10 23:12:40.429913+00', '0x92ae60fdfcc6b119f0bdd1095d6526b9ad971b18', 0, 0, 1, '2024-02-06', 1, 0, '278690', false), - (92740, '2024-05-10 23:12:39.239462+00', '0x4fbc1c49b4966f57a4a8dae47cdd32c8ad57301d', 0, 0, 1, '2024-02-06', 1, 1, '282175', false), - (92762, '2024-05-10 23:12:39.33122+00', '0x9787791a60f2edc75711f7ca174d3c63e5cfa685', 0, 0, 1, '2024-02-06', 1, 1, '270451', false), - (92799, '2024-05-10 23:12:39.375367+00', '0xc856f9e28eaf155889e06ea44e8221b472fe9abc', 0, 0, 1, '2024-02-06', 1, 0, '267569', false), - (92824, '2024-05-10 23:12:39.47531+00', '0x5810cc09c92e5c98238a18ef1f7feeaab6d088b6', 0, 0, 1, '2024-02-06', 1, 5, '297562', false), - (92845, '2024-05-10 23:12:39.498198+00', '0x25f5b2be313f6cab7a8de72a3cce247bc077fc12', 0, 0, 1, '2024-02-06', 1, 0, '276029', false), - (92878, '2024-05-10 23:12:39.619067+00', '0xdbe78dec8de11aa9b12c05996bdd1f6d0db39e3f', 0, 0, 1, '2024-02-06', 1, 0, '16981', false), - (88887, '2024-05-10 23:12:27.94983+00', '0x2276ad51328af70aeb0c42487f8a8ce7617d0017', 0, 0, 1, '2024-04-09', 1, 5, '294478', false), - (88870, '2024-05-10 23:12:27.930665+00', '0xf2a539fd5d19a7450da182240e005de16b169b75', 0, 0, 1, '2024-03-25', 2, 1, '338763', false), - (89320, '2024-05-10 23:12:29.402447+00', '0x2806926727d4f93bf6491bcfdd5308c17d752c63', 0, 0, 1, '2024-02-14', 1, 1, '337526', false), - (89436, '2024-05-10 23:12:29.857191+00', '0x5c78ddef65d55a4db1f8063f7ba8c52167429693', 0, 0, 1, '2024-02-05', 1, 3, '271163', false), - (89453, '2024-05-10 23:12:29.874612+00', '0xe28f1895b2c820b3b7b23c95b234dd99f17e815d', 0, 0, 1, '2024-02-05', 1, 2, '6099', false), - (90844, '2024-05-10 23:12:33.923263+00', '0xae61d2b1f2c4ff647618ee0295ca3a6771a08184', 0, 0, 1, '2024-04-19', 1, 0, '294581', false), - (89630, '2024-05-10 23:12:30.465895+00', '0xe34d5df6425d5a9fdff463a91eeeb4172d672c76', 0, 0, 1, '2023-10-17', 2, 1, '189297', false), - (89845, '2024-05-10 23:12:31.016666+00', '0xdb8803703d4d2abf4328011b551a27adc0cc5dde', 0, 0, 1, '2023-06-06', 2, 0, '5484', false), - (74177, '2024-05-10 23:11:44.894255+00', '0x99003cfcad31e3b95be0f7e8e783b63533a916a3', 0, 0, 1, '2024-05-06', 6, 27, '388644', false), - (92675, '2024-05-10 23:12:39.091891+00', '0xb240dbae79aef8001e547c265097141ff82cfd7e', 0, 0, 1, '2024-02-06', 2, 0, '259559', false), - (94511, '2024-05-12 06:00:33.822687+00', '0x35be0cc858adc4393fb95edb7b9e14ebdc2cfc0f', 0, 0, 1, '2024-05-11', 3, 10, '383451', false), - (92666, '2024-05-10 23:12:39.074242+00', '0x16895f6b12b94044fc2590c790ed2afbf4f6289d', 0, 0, 1, '2024-02-06', 2, 1, '300434', false), - (90012, '2024-05-10 23:12:31.585255+00', '0x9ee55c96b1c8b5a0fe503101545852d4aa239ca1', 0, 0, 1, '2024-05-09', 1, 0, '347779', false), - (92689, '2024-05-10 23:12:39.103011+00', '0x0b6983834f515ce8e989586355704ccf76cc4821', 0, 0, 1, '2024-02-06', 1, 0, '251070', false), - (74147, '2024-05-10 23:11:44.784261+00', '0x620f3dee003a6dc5635d590588f95e027db7fb37', 0, 0, 1, '2024-03-22', 2, 1, '19599', false), - (91224, '2024-05-10 23:12:34.95065+00', '0xef13b0272700ca22c57e055f0d2ad40d6c78155e', 0, 0, 1, '2024-04-08', 1, 2, '192983', false), - (90186, '2024-05-10 23:12:32.156562+00', '0x495e4f8c59f9b2df760f77c42f27ea514697bf73', 0, 0, 1, '2024-05-06', 1, 5, '398028', false), - (91968, '2024-05-10 23:12:37.126138+00', '0x580e6f8c4adf7c597acadac3edcf9e1f04da810a', 0, 0, 1, '2024-03-12', 1, 3, '351539', false), - (91313, '2024-05-10 23:12:35.198709+00', '0x694f19e114e9d9cfa7b5173dd26b52b9524fc6e4', 0, 0, 1, '2024-03-12', 2, 2, '330996', false), - (92552, '2024-05-10 23:12:38.668124+00', '0x41689e81a059c6615e3b538c40f5e5493969dce7', 0, 0, 1, '2024-02-08', 1, 0, '322983', false), - (90311, '2024-05-10 23:12:32.51785+00', '0x8a140098bdbf48f6c7e2ed9fa41221408fb61d48', 0, 0, 1, '2024-05-05', 2, 5, '515330', false), - (92705, '2024-05-10 23:12:39.122167+00', '0x6ba6105176ef8861138b12aba61cdc16f0277f4b', 0, 0, 1, '2024-02-06', 1, 5, '276511', false), - (90274, '2024-05-10 23:12:32.410326+00', '0x99af5a5bcb390fc3d6b7b5e876a2e4b45d003254', 0, 0, 1, '2024-02-13', 9, 27, '340819', false), - (90412, '2024-05-10 23:12:32.793985+00', '0x161526454b5fd61a99bdfc4cf05fd4b2cddeaa68', 0, 0, 1, '2024-05-03', 1, 0, '374557', false), - (91350, '2024-05-10 23:12:35.325059+00', '0xdee376bcafe22896c2fe01740925a2366a30eecf', 0, 0, 1, '2024-04-03', 1, 0, '211004', false), - (91826, '2024-05-10 23:12:36.759584+00', '0x86f51034a0f1f6f7a5c18a0025d0667239ebc4dc', 0, 0, 1, '2024-03-18', 1, 5, '352435', false), - (92623, '2024-05-10 23:12:38.951562+00', '0x8850b50a08001cc05766632bcb71c67b676b965e', 0, 0, 1, '2024-02-06', 1, 0, '241817', false), - (91881, '2024-05-10 23:12:36.865579+00', '0x65dcd9068fcc7da2e9d4c05257ddbfb9d3d755bd', 0, 0, 1, '2024-03-17', 1, 0, '316119', false), - (91581, '2024-05-10 23:12:36.037757+00', '0x3e882b64b26a9351e7312e40649a43947b38091f', 0, 0, 1, '2024-02-26', 12, 27, '372365', false), - (91440, '2024-05-10 23:12:35.654371+00', '0xeb7c5dfeb10ca00e08a580844a47559b9d15d4ac', 0, 0, 1, '2024-03-03', 2, 0, '356294', false), - (91840, '2024-05-10 23:12:36.775027+00', '0xf318b635dc8a0fc5a2e263b944abfaafec17d36a', 0, 0, 1, '2024-02-06', 4, 8, '253069', false), - (92586, '2024-05-10 23:12:38.777088+00', '0x388a10ddac18cdd49d5016e3e15daa3e4199107e', 0, 0, 1, '2024-02-07', 2, 0, '268300', false), - (91718, '2024-05-10 23:12:36.489786+00', '0x627731584e3b1f0d731bee6b5acd090372cba5a1', 0, 0, 1, '2024-03-22', 1, 1, '282703', false), - (92650, '2024-05-10 23:12:38.979027+00', '0x0e386c1d4e310713758a885d8f5d7d15868c1215', 0, 0, 1, '2024-02-07', 1, 0, '17428', false), - (92725, '2024-05-10 23:12:39.225872+00', '0x4850eae55a6ef549955826b8a86e756c2fbbef77', 0, 0, 1, '2024-02-06', 1, 5, '262618', false), - (92742, '2024-05-10 23:12:39.241889+00', '0xb6c8b64919be79863b052448f42050de4aa0a0b1', 0, 0, 1, '2024-02-06', 1, 5, '266133', false), - (92760, '2024-05-10 23:12:39.260509+00', '0x5646f836f8d58cc056b5488f64dce9e8743ee1d1', 0, 0, 1, '2024-02-06', 1, 5, '252586', false), - (89926, '2024-05-10 23:12:31.417391+00', '0x5b8b87331e484afb35138da956aa30be26c1f22f', 0, 0, 1, '2024-05-01', 22, 1, '342962', false), - (74418, '2024-05-10 23:11:45.600176+00', '0xfc91be49bc90d263470f9d83feff46349165ae8e', 0, 0, 1, '2024-05-08', 7, 1, '194114', false), - (74320, '2024-05-10 23:11:45.345522+00', '0xe431119b2248c43f48b09e93e931b90d7fb2eed0', 0, 0, 1, '2024-05-07', 12, 22, '368568', false), - (94448, '2024-05-12 06:00:33.268797+00', '0x3ccaa1130a799ac3170d8b61685a69936e862ffa', 0, 0, 1, '2024-05-11', 4, 18, '506056', false), - (94151, '2024-05-11 06:00:27.177078+00', '0x2e2f379919a0b352bdabb3c25e86fc60af81e9db', 0, 0, 1, '2024-05-11', 1, 1, '518204', false), - (92867, '2024-05-10 23:12:39.604401+00', '0x0eeca95c58919b1b96bb1cde61a99f9d7571def6', 0, 0, 1, '2024-02-06', 1, 5, '17001', false), - (92889, '2024-05-10 23:12:39.624651+00', '0x70ca07279dd9d26b5768ef92b55e652fc9e9e7a7', 0, 0, 1, '2024-02-06', 1, 3, '14173', false), - (92911, '2024-05-10 23:12:39.740329+00', '0x1f64d02ed888b376173a4f4c531c62dca85c6394', 0, 0, 1, '2024-02-06', 1, 0, '273623', false), - (92952, '2024-05-10 23:12:39.786312+00', '0x9046c3016db9c64a97b5e4df5a680a9bd56af1ae', 0, 0, 1, '2024-02-06', 1, 5, '249309', false), - (92169, '2024-05-10 23:12:37.634872+00', '0xdfcad51ffe0e1786a46dde716931b89074d8fe67', 0, 0, 1, '2024-02-21', 2, 0, '237157', false), - (92808, '2024-05-10 23:12:39.38391+00', '0xb927ea4693cbe9d2d2a8418072efccf387bfaded', 0, 0, 1, '2024-02-06', 1, 0, '256874', false), - (92827, '2024-05-10 23:12:39.481264+00', '0x67af8e149a02c34b8c3b00926eaebe4d28159d5e', 0, 0, 1, '2024-02-06', 1, 2, '255561', false), - (73896, '2024-05-10 23:11:43.367027+00', '0x377efb92e4d0418585ed9a6d81c90cd987581625', 0, 0, 1, '2024-05-09', 4, 20, '389830', false), - (92849, '2024-05-10 23:12:39.502366+00', '0x7cdaa69b7c18bbd62e7a1dbcc6017c2c8e7dc11a', 0, 0, 1, '2024-02-06', 1, 1, '269342', false), - (90468, '2024-05-10 23:12:32.928716+00', '0xae5985ec1dbe9e4b51424dfca30c031396faa175', 0, 0, 1, '2024-05-02', 1, 1, '269778', false), - (90616, '2024-05-10 23:12:33.337352+00', '0x85857d4d408af5acd08ce33c68fc93ccce396201', 0, 0, 1, '2024-04-28', 1, 0, '344562', false), - (90650, '2024-05-10 23:12:33.374796+00', '0x64ab7581a68036ccfe0e8fb800d3da79f4660e9a', 0, 0, 1, '2024-04-27', 1, 5, '317341', false), - (92870, '2024-05-10 23:12:39.609188+00', '0xab99da4232c2d78d7a5b4a6946827f3fb8ac3f39', 0, 0, 1, '2024-02-06', 1, 1, '19380', false), - (92883, '2024-05-10 23:12:39.625077+00', '0xb34247a2ff891caec36375d0e58f95f8d9bf38d6', 0, 0, 1, '2024-02-06', 1, 2, '276385', false), - (91200, '2024-05-10 23:12:34.921802+00', '0xea7498973aa783875b719415b664c2eec54c8926', 0, 0, 1, '2024-02-06', 2, 8, '17771', false), - (90679, '2024-05-10 23:12:33.485599+00', '0x042bf7d845b34e4a3286d3e36ca90ff692f8f558', 0, 0, 1, '2024-03-15', 3, 15, '13699', false), - (91274, '2024-05-10 23:12:35.086063+00', '0x229af9b664aa02b108c2fae74718a174f1595b71', 0, 0, 1, '2024-04-07', 1, 0, '376755', false), - (91292, '2024-05-10 23:12:35.17408+00', '0x369712da60e11a3e05cead9cdc10ecb6fac4d2f6', 0, 0, 1, '2024-04-05', 1, 4, '255822', false), - (89260, '2024-05-10 23:12:29.199684+00', '0x538133dfb879083eb576c3941fbce4661a562b31', 0, 0, 1, '2024-02-22', 2, 0, '344732', false), - (91935, '2024-05-10 23:12:37.001817+00', '0xd4938ab7c2157331a2237040c26a683bf783181b', 0, 0, 1, '2024-03-16', 1, 1, '251936', false), - (91955, '2024-05-10 23:12:37.104282+00', '0x1dbf8d3a34725a31774de9119d54c1094edee3f9', 0, 0, 1, '2024-03-12', 1, 3, '259026', false), - (91318, '2024-05-10 23:12:35.204588+00', '0xee2c2018ea41b7bf2f95e4cc4ccd65d98f6945e0', 0, 0, 1, '2024-03-12', 2, 6, '325156', false), - (91971, '2024-05-10 23:12:37.129166+00', '0x5eb3e6c1819d188db2462f5a9b4561dbfddac5c1', 0, 0, 1, '2024-03-12', 1, 5, '363784', false), - (89931, '2024-05-10 23:12:31.427299+00', '0x38873c13509d36077a4638183f4a9a72f8a66b91', 0, 0, 1, '2024-05-10', 3, 8, '474660', false), - (88579, '2024-05-10 23:12:27.195559+00', '0xaa466103793319fc3d6c7420d77e6e7cf586c877', 0, 0, 1, '2024-04-13', 56, 25, '480030', false), - (75159, '2024-05-10 23:11:47.785051+00', '0x7774a3e918ebbe88c8d46a8fad0af506d00ad54b', 0, 0, 1, '2024-05-05', 1, 0, '501841', false), - (74979, '2024-05-10 23:11:47.307588+00', '0x41a6c32d4ad0437bf4820b755e31393654603f6b', 0, 0, 1, '2024-05-06', 2, 0, '248529', false), - (78998, '2024-05-10 23:11:58.479923+00', '0x5e4b41f603fa53ccd2da5431839fb4464cd659cd', 0, 0, 1, '2024-02-10', 2, 1, '207998', false), - (92636, '2024-05-10 23:12:38.956701+00', '0xbbf61308d129ee97578dce421a60f49354f0f4dd', 0, 0, 1, '2024-02-04', 4, 7, '247027', false), - (92419, '2024-05-10 23:12:38.283783+00', '0x5cac4a6ff0c0c90053f0204e8caf1b707bc307e6', 0, 0, 1, '2024-02-13', 1, 1, '13848', false), - (92220, '2024-05-10 23:12:37.771739+00', '0xdf24bf4366f053ae1bb4d1a1200051e590d3b328', 0, 0, 1, '2024-02-27', 1, 3, '3328', false), - (94315, '2024-05-12 06:00:32.310158+00', '0xf0275319ee22de4f3cd9b283694b497bc77a50cc', 0, 0, 1, '2024-05-11', 1, 0, '523302', false), - (92848, '2024-05-10 23:12:39.503265+00', '0x8895dbce59e2fb341561e313ca16eb6cce41cf5c', 0, 0, 1, '2024-02-06', 1, 0, '254871', false), - (92467, '2024-05-10 23:12:38.421229+00', '0x2e6ba5de691d92a36c880d8c101ceb07bafbe6a4', 0, 0, 1, '2024-02-11', 1, 5, '338246', false), - (94560, '2024-05-12 06:00:34.169094+00', '0x82ec98f7c7c6237346fe6f3a9e41d36fbb93ceab', 0, 0, 1, '2024-05-11', 3, 15, '385723', false), - (90051, '2024-05-10 23:12:31.696449+00', '0xc0007d6dcd1e5d8517409a4c61f278c6798807c8', 0, 0, 1, '2024-02-21', 50, 34, '271891', false), - (89643, '2024-05-10 23:12:30.479291+00', '0x463470955c61a54210b5ddcc20847cc325a2ff38', 0, 0, 1, '2023-10-13', 1, 1, '21114', false), - (92581, '2024-05-10 23:12:38.773262+00', '0x55fac0c661bae80e2c4e40f2edba1f83160adf2a', 0, 0, 1, '2024-02-07', 1, 3, '269484', false), - (90781, '2024-05-10 23:12:33.759491+00', '0xbcc72b0aad31a4bb7ca351178cd649eeb8bfc418', 0, 0, 1, '2024-04-01', 28, 20, '434951', false), - (89932, '2024-05-10 23:12:31.427023+00', '0xc10e17d377bf94215dc0783b04ae7dfec07cff48', 0, 0, 1, '2024-05-10', 1, 0, '503916', false), - (89967, '2024-05-10 23:12:31.460841+00', '0xd342e5c1648f6906a754b1ca970908668c3ba45b', 0, 0, 1, '2024-05-10', 1, 5, '379895', false), - (91529, '2024-05-10 23:12:35.90662+00', '0x582ca15836d5542d22b23102af5a4d02f5eb0bf4', 0, 0, 1, '2024-03-31', 1, 0, '380840', false), - (89999, '2024-05-10 23:12:31.571695+00', '0x1205e0742e4c9f7f8f14313841be15ab967ad48c', 0, 0, 1, '2024-05-07', 3, 15, '516943', false), - (90165, '2024-05-10 23:12:32.139025+00', '0x9209b4eb58c504b61ad96f71b8d20ab099bf8f91', 0, 0, 1, '2024-05-07', 1, 2, '515885', false), - (94827, '2024-05-12 06:00:35.70498+00', '0x76c4a8bf6edd019632b54d335c57095c284d168c', 0, 0, 1, '2024-05-11', 4, 18, '387325', false), - (94527, '2024-05-12 06:00:33.830022+00', '0x5020b38e1b9c7cf26490f1287f7251189bf804bc', 0, 0, 1, '2024-05-11', 3, 15, '378405', false), - (90343, '2024-05-10 23:12:32.560237+00', '0xa7fe4b31258fda80f1777012dabca549cb30117c', 0, 0, 1, '2024-05-05', 1, 5, '486646', false), - (90044, '2024-05-10 23:12:31.686452+00', '0xbe5db9e33a2309898d44d9f7a6ee9229eb4d5415', 0, 0, 1, '2024-05-01', 2, 7, '440413', false), - (90840, '2024-05-10 23:12:33.926196+00', '0xad299c255506232c640828da764e408f890f85e5', 0, 0, 1, '2024-04-19', 1, 1, '441911', false), - (92672, '2024-05-10 23:12:39.075686+00', '0x789fdf1b59958f877686ab409eeec601a47ba96d', 0, 0, 1, '2024-02-06', 1, 1, '278675', false), - (91562, '2024-05-10 23:12:35.951007+00', '0x61b0602dcf6ff9c748bc0288e5020ec789d4cb54', 0, 0, 1, '2024-03-31', 1, 1, '334748', false), - (90913, '2024-05-10 23:12:34.142716+00', '0x1012511e4ca7ea402e300a3b77db7e19e3035d7d', 0, 0, 1, '2024-04-16', 3, 10, '465730', false), - (90968, '2024-05-10 23:12:34.280567+00', '0xd0cd56b2342336ee9ef2592a677be4409bcbe038', 0, 0, 1, '2024-04-15', 1, 2, '419135', false), - (91027, '2024-05-10 23:12:34.444959+00', '0xbb2d154ccb7f720d786b63ff03cd188b881e809c', 0, 0, 1, '2024-04-13', 1, 3, '16462', false), - (92692, '2024-05-10 23:12:39.102355+00', '0xa6b8dab8ef5aea25ea89583558da2dd718a8aae3', 0, 0, 1, '2024-02-06', 1, 0, '265351', false), - (91126, '2024-05-10 23:12:34.707668+00', '0x6b38662f976216268865affb38b844b958a7379e', 0, 0, 1, '2024-04-11', 1, 0, '423759', false), - (91211, '2024-05-10 23:12:34.936779+00', '0x15e1619021084ec72ace12815953d54da2b2074e', 0, 0, 1, '2024-04-08', 1, 1, '429900', false), - (92755, '2024-05-10 23:12:39.255061+00', '0x858b1d657b7e21c2d023d3e1b25795dc4963d1f8', 0, 0, 1, '2024-02-04', 3, 4, '244566', false), - (91853, '2024-05-10 23:12:36.861187+00', '0x5c23ed6da75a583b579459e744f05a65cb51d8fd', 0, 0, 1, '2024-03-17', 1, 0, '258848', false), - (92769, '2024-05-10 23:12:39.344905+00', '0xfacaae2aa7506105e9926505deee9c62361af92e', 0, 0, 1, '2024-02-06', 1, 0, '253223', false), - (74967, '2024-05-10 23:11:47.295434+00', '0xed28106ae893c9d2c0470082713aaac05c4dda2c', 0, 0, 1, '2024-05-05', 6, 30, '323975', false), - (73827, '2024-05-10 23:11:43.067499+00', '0xbae0647f4750aa53e9fcafc67fde8d47da063770', 0, 0, 1, '2024-05-06', 29, 110, '423873', false), - (91837, '2024-05-10 23:12:36.771236+00', '0x9602e14add18adef7fa319203f0c7126065d13f5', 0, 0, 1, '2024-02-06', 2, 6, '266326', false), - (92790, '2024-05-10 23:12:39.361967+00', '0x64ce45bae22ee05c8c8c0077363c492bb0448172', 0, 0, 1, '2024-02-06', 1, 0, '270073', false), - (92869, '2024-05-10 23:12:39.605936+00', '0x1b6b5a66c38f1a64ba5a7a646a8f2da6d3d5f1de', 0, 0, 1, '2024-02-06', 1, 2, '253031', false), - (92891, '2024-05-10 23:12:39.627982+00', '0xbc9a201cf79ccded23f888cc8375c6ab6e0fa9ef', 0, 0, 1, '2024-02-06', 1, 2, '14914', false), - (92830, '2024-05-10 23:12:39.481739+00', '0x57695440be82ce3053493e01362f9202f8b9e2b0', 0, 0, 1, '2024-02-06', 2, 9, '244334', false), - (92925, '2024-05-10 23:12:39.754497+00', '0xeaed347bb78bc731c13c6ba4c134f4d84ce24e4a', 0, 0, 1, '2024-02-06', 1, 0, '294718', false), - (92940, '2024-05-10 23:12:39.772418+00', '0xede0c4c760413481aee9d4e016f216a5f682b252', 0, 0, 1, '2024-02-06', 1, 0, '303217', false), - (92434, '2024-05-10 23:12:38.388002+00', '0x0161d1cc10116bb2a073a0c293d5e4f1a97a00b6', 0, 0, 1, '2023-06-12', 2, 1, '804', false), - (92957, '2024-05-10 23:12:39.795607+00', '0xee6cbc6e1843484acf219649e5e5ce56730565ba', 0, 0, 1, '2024-02-06', 1, 0, '251199', false), - (92975, '2024-05-10 23:12:39.895043+00', '0xca30cc6e914d473f79534104beb7ef181d8da846', 0, 0, 1, '2024-02-06', 1, 3, '239913', false), - (93013, '2024-05-10 23:12:39.998554+00', '0x3ccea8215e95444af38dd0ae0203f5d3802170b2', 0, 0, 1, '2024-02-06', 1, 1, '276435', false), - (92733, '2024-05-10 23:12:39.233984+00', '0x9057e7dfc7f00be66e368afde533d0d923e15f48', 0, 0, 1, '2024-02-06', 2, 5, '267828', false), - (93073, '2024-05-10 23:12:40.156538+00', '0xa987839e550553fa2030e53748f6a715a0d1642a', 0, 0, 1, '2024-02-06', 1, 3, '252063', false), - (93091, '2024-05-10 23:12:40.174249+00', '0x2c586635b636d1bd69a169466a2d67a95575bb94', 0, 0, 1, '2024-02-06', 1, 1, '295964', false), - (89930, '2024-05-10 23:12:31.422388+00', '0x1157e6cccb2d942cb0c7ae135fd2e9fc0c6c8195', 0, 0, 1, '2024-05-10', 1, 3, '9804', false), - (89961, '2024-05-10 23:12:31.457005+00', '0xb3384dfd46fefdf209d2c896d3e06e584b304c2e', 0, 0, 1, '2024-05-10', 1, 1, '198860', false), - (89983, '2024-05-10 23:12:31.559191+00', '0x6bb324f91bdebebe922b83f8dd65f69a99b1e68e', 0, 0, 1, '2024-05-09', 1, 2, '302319', false), - (92719, '2024-05-10 23:12:39.216684+00', '0xd571895ecb9267a6f6c2986de8ef1027b21da864', 0, 0, 1, '2024-02-06', 3, 6, '269255', false), - (92258, '2024-05-10 23:12:37.881132+00', '0x9fc43848fafa3b4aeb386434d008552f1c06f9cb', 0, 0, 1, '2024-02-23', 1, 0, '245129', false), - (93130, '2024-05-10 23:12:40.271121+00', '0x024813b4972428003c725ea756348dcd79b826e6', 0, 0, 1, '2024-02-06', 2, 3, '14600', false), - (93177, '2024-05-10 23:12:40.436749+00', '0x947f9c852c14ae2edfb7e3495f35a6d63282fc72', 0, 0, 1, '2024-02-06', 1, 5, '291248', false), - (90627, '2024-05-10 23:12:33.354363+00', '0x39cc170a6c6052647a592b8f75b9a66bba0ea1a6', 0, 0, 1, '2024-04-27', 1, 5, '407659', false), - (92540, '2024-05-10 23:12:38.652863+00', '0xc3b52d51b493b5da4d51627929f4fc38fd51eaba', 0, 0, 1, '2024-02-08', 1, 3, '14622', false), - (89191, '2024-05-10 23:12:28.887896+00', '0xf02ff9828480d93b79cf5018efd1419cef4a2780', 0, 0, 1, '2024-01-02', 6, 0, '210831', false), - (92590, '2024-05-10 23:12:38.786123+00', '0x6f4f16c724b05599945d69569bca4a7d4674ca6c', 0, 0, 1, '2024-02-07', 1, 1, '250546', false), - (93707, '2024-05-10 23:12:41.956824+00', '0x1435cde114ddc888ea8411ba9878282672e432f5', 0, 0, 1, '2023-11-10', 2, 1, '193982', false), - (92648, '2024-05-10 23:12:38.974142+00', '0x8934289ab2dc5c934350a39d874bbb0eaa340019', 0, 0, 1, '2024-02-07', 1, 0, '276566', false), - (92665, '2024-05-10 23:12:39.072374+00', '0xbcda7f2885bea673583ad45138ee1db3c1c7dc8a', 0, 0, 1, '2024-02-06', 1, 0, '259912', false), - (90976, '2024-05-10 23:12:34.29421+00', '0x2563931a8008535897396f330c4979f3b116be90', 0, 0, 1, '2024-04-15', 1, 1, '17218', false), - (92699, '2024-05-10 23:12:39.115386+00', '0x7e3b4b2c6b78c88b08fd0d93b2e40cdc53cd5617', 0, 0, 1, '2024-02-06', 1, 1, '206491', false), - (91019, '2024-05-10 23:12:34.433296+00', '0xfc66451db0d18ebe8c4d50b7470c5b3ec602962d', 0, 0, 1, '2024-04-13', 1, 0, '225665', false), - (92741, '2024-05-10 23:12:39.24008+00', '0x798111bb6ac7ca09d20dd108bf8abad37c6683a5', 0, 0, 1, '2024-02-06', 1, 2, '268734', false), - (90932, '2024-05-10 23:12:34.153914+00', '0x30dcca068f593cbffb5affe8a89f35ae49614972', 0, 0, 1, '2024-01-12', 11, 9, '13792', false), - (92784, '2024-05-10 23:12:39.35554+00', '0xdefae50ad2b9921a01e53d3fd9fc5ad3a2a6cb04', 0, 0, 1, '2024-02-06', 1, 0, '290781', false), - (92805, '2024-05-10 23:12:39.379738+00', '0xd10cf7e23b4ee25a00a17f0e60ba633552461474', 0, 0, 1, '2024-02-06', 1, 2, '248841', false), - (92823, '2024-05-10 23:12:39.477837+00', '0x88ab2a073a5b90839347161ebd4396d9e23cebfb', 0, 0, 1, '2024-02-06', 1, 3, '244305', false), - (92840, '2024-05-10 23:12:39.494939+00', '0x0bbd3d2db9b6dc258e2f421b43160625d08c8114', 0, 0, 1, '2024-02-06', 1, 3, '290941', false), - (92855, '2024-05-10 23:12:39.513102+00', '0x4a4c78a57e407e35ffd9ac947cb567e38ded46b4', 0, 0, 1, '2024-02-06', 1, 2, '259447', false), - (92872, '2024-05-10 23:12:39.612781+00', '0xf49fad3dd582a2d1648269092292233ccd58d56b', 0, 0, 1, '2024-02-06', 1, 0, '13998', false), - (91505, '2024-05-10 23:12:35.797906+00', '0xe7eddaa6bd37849a8a39cd963b1da137032c9146', 0, 0, 1, '2024-04-01', 1, 0, '211160', false), - (91641, '2024-05-10 23:12:36.186781+00', '0x51dd1223f2668e3cf5317907ef2a0115a3d67972', 0, 0, 1, '2024-03-28', 1, 0, '409724', false), - (93218, '2024-05-10 23:12:40.543939+00', '0x9565db1306ce736c8f309d987934050f8f043381', 0, 0, 1, '2024-02-06', 1, 5, '236494', false), - (91829, '2024-05-10 23:12:36.763224+00', '0xa36033d329426e4af70cff4cd177979690c432fa', 0, 0, 1, '2024-03-17', 1, 1, '19332', false), - (91917, '2024-05-10 23:12:36.989328+00', '0xb87f0856a16033ef36298a5f2f8d0649c0802fd4', 0, 0, 1, '2024-03-16', 1, 2, '285604', false), - (91984, '2024-05-10 23:12:37.143607+00', '0x0c3dfae6e284fa1bde86ae8214acdff4765ae570', 0, 0, 1, '2024-03-11', 1, 1, '275697', false), - (92890, '2024-05-10 23:12:39.625081+00', '0xd597f4f55721fe317490905dd3f7b61091a6768d', 0, 0, 1, '2024-02-06', 1, 1, '234861', false), - (92907, '2024-05-10 23:12:39.645466+00', '0xf6eca0fc9fa885e125e8c708b3be2296f029c78e', 0, 0, 1, '2024-02-06', 1, 1, '282473', false), - (92928, '2024-05-10 23:12:39.755456+00', '0x98aca77579258b505e5a86ac036cc6e2253d6a26', 0, 0, 1, '2024-02-06', 1, 2, '270555', false), - (92979, '2024-05-10 23:12:39.898463+00', '0x138b9a6ad87cb98ca9052a7e4e387472124ca781', 0, 0, 1, '2024-02-06', 2, 4, '266812', false), - (93381, '2024-05-10 23:12:40.973055+00', '0xcabc1a1ed5c93f06e1e72d3758022ab1053259b4', 0, 0, 1, '2024-02-01', 3, 3, '219189', false), - (93236, '2024-05-10 23:12:40.563734+00', '0xbe7ded7e6d4ce89cc68ee8fc579c7a28b60e182d', 0, 0, 1, '2024-02-06', 1, 0, '251949', false), - (93197, '2024-05-10 23:12:40.454481+00', '0x3e6204771c4760257b092dcbdd8a4c1ef6bfac36', 0, 0, 1, '2024-02-06', 2, 5, '251441', false), - (94500, '2024-05-12 06:00:33.80927+00', '0xfd9b40ddd68585542869f705ac35a6e7c91fd4a0', 0, 0, 1, '2024-05-11', 4, 0, '491553', false), - (93254, '2024-05-10 23:12:40.671734+00', '0xe75918343cf6b74adf0beca7bedcfffc67ba4458', 0, 0, 1, '2024-02-06', 1, 5, '244039', false), - (93313, '2024-05-10 23:12:40.821466+00', '0x6e89216b6d5c8fbed5cdb21b7838b801b9a9ca52', 0, 0, 1, '2024-02-03', 1, 2, '8296', false), - (93359, '2024-05-10 23:12:40.95009+00', '0xe6d99344dcf0ed398462f463d171ee28dc05e1b1', 0, 0, 1, '2024-02-02', 1, 0, '5360', false), - (93623, '2024-05-10 23:12:41.683928+00', '0x3a43e3abdce877ea7db72f5ba8cdc8520e830e4e', 0, 0, 1, '2023-12-21', 1, 2, '194370', false), - (93690, '2024-05-10 23:12:41.866127+00', '0x13cd903edaccb3af2408779ec58ca6294ebbdebf', 0, 0, 1, '2023-12-08', 1, 0, '198995', false), - (89941, '2024-05-10 23:12:31.428866+00', '0x37845247d0e2817fdd5bf9896761274681f320eb', 0, 0, 1, '2024-05-10', 1, 5, '253854', false), - (93045, '2024-05-10 23:12:40.051839+00', '0x5f22a11a9027d82c0fee731df067641738ecabb6', 0, 0, 1, '2024-02-06', 2, 9, '255076', false), - (91599, '2024-05-10 23:12:36.062929+00', '0xe908c2d5613d24d49e376f19715c795db8e04f81', 0, 0, 1, '2024-03-27', 2, 0, '196526', false), - (91643, '2024-05-10 23:12:36.188966+00', '0x7187ac6205cdcb978ee029dc658b97435977ff95', 0, 0, 1, '2024-03-27', 1, 0, '16504', false), - (90122, '2024-05-10 23:12:32.020546+00', '0x715cefa260f40e9cc3a4447ad020a9bba0ae9a52', 0, 0, 1, '2024-05-07', 2, 1, '199472', false), - (92555, '2024-05-10 23:12:38.670647+00', '0xd35e9c9e947db6820d4b198987b52aa13fe5d49e', 0, 0, 1, '2024-02-08', 1, 0, '321392', false), - (90209, '2024-05-10 23:12:32.182442+00', '0x1f9a703dc158ebbfff31aca9cf1a50844d46f354', 0, 0, 1, '2024-05-06', 1, 5, '436542', false), - (92601, '2024-05-10 23:12:38.783738+00', '0xb3727bda528870d20ceda89e6ba903ce9ed1da1d', 0, 0, 1, '2024-02-07', 1, 5, '305610', false), - (90646, '2024-05-10 23:12:33.369283+00', '0xb4e876a98c1655aef3e2a368bd7b22b24a9792cb', 0, 0, 1, '2024-04-10', 14, 7, '23824', false), - (92345, '2024-05-10 23:12:38.144492+00', '0x79bdda65c706cbda69c0ad4c8da1d3e91724f48d', 0, 0, 1, '2023-12-20', 3, 3, '23087', false), - (90438, '2024-05-10 23:12:32.828184+00', '0xb65277f81378438109f6606e174c033d27b1dc33', 0, 0, 1, '2024-05-03', 1, 0, '511550', false), - (92764, '2024-05-10 23:12:39.337189+00', '0x54677b8743048fcd56e6d472cbb6945ddd5c639e', 0, 0, 1, '2024-02-06', 1, 0, '19249', false), - (91892, '2024-05-10 23:12:36.89147+00', '0x09e2d1187cb076649af1652eed9b68035dd601d4', 0, 0, 1, '2024-03-17', 1, 2, '344996', false), - (90473, '2024-05-10 23:12:32.935097+00', '0x83de53dec1ba4c9a3d3d9ed723c55dd2f9356c06', 0, 0, 1, '2024-05-01', 1, 2, '466842', false), - (91284, '2024-05-10 23:12:35.15822+00', '0x7af44c5b5a56bb20face8a15429fa4b475a0f452', 0, 0, 1, '2024-04-06', 1, 1, '427252', false), - (92857, '2024-05-10 23:12:39.516583+00', '0x995088830ea572c64781547a4bb74d746ee3f631', 0, 0, 1, '2024-02-06', 1, 2, '289460', false), - (92881, '2024-05-10 23:12:39.615468+00', '0x89b4f3698a3998ce367358388d2d64d72eb351f1', 0, 0, 1, '2024-02-06', 1, 5, '289441', false), - (92745, '2024-05-10 23:12:39.246841+00', '0xca677b6f4213b53c7bc4303799441268b1b1d8ab', 0, 0, 1, '2024-02-06', 2, 5, '262043', false), - (93080, '2024-05-10 23:12:40.159046+00', '0x2b2d0c0621dbfa33371f3fe7bc45683b97840928', 0, 0, 1, '2024-02-06', 2, 5, '300680', false), - (93175, '2024-05-10 23:12:40.433853+00', '0xde4805cd27dbbefe1aec5acf7682dc02d136cce4', 0, 0, 1, '2024-02-06', 1, 5, '267974', false), - (91518, '2024-05-10 23:12:35.81104+00', '0x777188647d19a3d4002476ebfba4a3b576af7aac', 0, 0, 1, '2024-04-01', 1, 0, '230317', false), - (93114, '2024-05-10 23:12:40.274875+00', '0x520be8f2fd27226499716d18ec70812b28582d66', 0, 0, 1, '2024-02-06', 2, 0, '278085', false), - (92937, '2024-05-10 23:12:39.761428+00', '0x183c4659f696f7165180aa982fc61d1d5cd5e49c', 0, 0, 1, '2024-02-06', 5, 1, '278817', false), - (91534, '2024-05-10 23:12:35.921165+00', '0xf7937f825a2aecdcb962925f12b64943d0b2496a', 0, 0, 1, '2024-03-30', 2, 2, '214617', false), - (92435, '2024-05-10 23:12:38.388687+00', '0x1a4cb32562a729c846f032953add04c34e70b534', 0, 0, 1, '2024-02-13', 1, 3, '239793', false), - (92993, '2024-05-10 23:12:39.895839+00', '0xb42b0b1d0f3946b96ed9c741f7ef71dae767541b', 0, 0, 1, '2024-02-06', 1, 2, '286753', false), - (93135, '2024-05-10 23:12:40.292799+00', '0xc910a89343308fa46a09345b04fef179d609fc34', 0, 0, 1, '2024-02-06', 1, 3, '267845', false), - (93196, '2024-05-10 23:12:40.453916+00', '0x990189a4e4d6bf1165efc2aa9b4334ffbbde384b', 0, 0, 1, '2024-02-06', 1, 2, '304170', false), - (93217, '2024-05-10 23:12:40.5426+00', '0x9cc7fea5b565a8d5e946d594ac7ff3a90bd34db4', 0, 0, 1, '2024-02-06', 1, 1, '277007', false), - (93242, '2024-05-10 23:12:40.568863+00', '0x09987bb8a46c7d71171c0a68e221a31b46818b8e', 0, 0, 1, '2024-02-06', 1, 4, '252422', false), - (93009, '2024-05-10 23:12:39.991462+00', '0x621431bc7f7ae2910cba00a0e9baa687f9e2783d', 0, 0, 1, '2024-02-05', 2, 0, '291070', false), - (93281, '2024-05-10 23:12:40.704673+00', '0x3e10afc4b347dfcfef62dc16c1f34b87b66f8632', 0, 0, 1, '2024-02-06', 1, 5, '300408', false), - (93391, '2024-05-10 23:12:40.971667+00', '0xec2c09e20f325bd8609e584902ecf5399fba31de', 0, 0, 1, '2024-02-02', 1, 5, '236359', false), - (91714, '2024-05-10 23:12:36.479004+00', '0x20f2c7a1c518807ad5b0e9160d885b845a607c35', 0, 0, 1, '2024-01-26', 38, 67, '234209', false), - (90870, '2024-05-10 23:12:34.023071+00', '0xd2e4236425e64c5bff090defb14d1cfe93e2c016', 0, 0, 1, '2024-04-17', 1, 0, '436687', false), - (91424, '2024-05-10 23:12:35.560437+00', '0x03bb17f8776881b185c4ee03eba372ba2b1320fd', 0, 0, 1, '2024-02-06', 2, 6, '243975', false), - (90087, '2024-05-10 23:12:31.825872+00', '0xb9c18a66a45ee459ecffb7feb44b32665230d677', 0, 0, 1, '2024-03-25', 5, 3, '401790', false), - (90519, '2024-05-10 23:12:33.06474+00', '0x4e16c6d4ab2648b18f921ecf5ee2a8c2eba78f31', 0, 0, 1, '2023-12-23', 3, 0, '192420', false), - (91437, '2024-05-10 23:12:35.655295+00', '0xf6ee7b0f6a574d9d48cfcaa2b6f1972696b185fa', 0, 0, 1, '2023-09-07', 2, 0, '5685', false), - (90991, '2024-05-10 23:12:34.400767+00', '0x126902db5abf36f809ffe14b6f1b8065b53a4f42', 0, 0, 1, '2024-04-14', 2, 1, '261686', false), - (91064, '2024-05-10 23:12:34.57385+00', '0x505d688a38b8cb9190b4f671d98a37a784e92c1f', 0, 0, 1, '2024-04-11', 1, 0, '476273', false), - (89944, '2024-05-10 23:12:31.440383+00', '0xa39e07467b1f349530a3aa3d5b6ff0a89ddf8e23', 0, 0, 1, '2023-12-19', 3, 7, '15139', false), - (91918, '2024-05-10 23:12:36.986901+00', '0xdcaa3ba2bfde048f2fef2354a37786dd4d836a40', 0, 0, 1, '2024-03-16', 1, 5, '14948', false), - (91974, '2024-05-10 23:12:37.131616+00', '0x25a25e1c48d64abeceb705a69c1673384dd3cedf', 0, 0, 1, '2024-03-12', 1, 1, '245899', false), - (92049, '2024-05-10 23:12:37.369821+00', '0x9869fdc1f1893967847f5177faf242e3a90361f6', 0, 0, 1, '2024-03-08', 1, 4, '252884', false), - (92240, '2024-05-10 23:12:37.860821+00', '0x4f61e6812577d658e629460e000c7ab2e85e0cd6', 0, 0, 1, '2024-02-24', 1, 1, '370976', false), - (90399, '2024-05-10 23:12:32.689185+00', '0xe8d0492bdca82bb0b4104e04affb709536c85e87', 0, 0, 1, '2024-04-17', 8, 12, '471508', false), - (90332, '2024-05-10 23:12:32.55021+00', '0xb10073db0f792f37d56b4eebf80480dbd957b872', 0, 0, 1, '2024-04-11', 3, 15, '441314', false), - (91138, '2024-05-10 23:12:34.785653+00', '0xe5f4674e2a7a0e3ec4074545be7bd8237e927d26', 0, 0, 1, '2024-04-10', 1, 1, '300322', false), - (91192, '2024-05-10 23:12:34.918612+00', '0x86479bf2509d72a1cb21d15f411e23735bae4381', 0, 0, 1, '2024-04-08', 1, 1, '402380', false), - (92584, '2024-05-10 23:12:38.778157+00', '0x0ef7a9948357c432f86b727b207e3a09f0248c9b', 0, 0, 1, '2024-02-07', 1, 0, '16896', false), - (92626, '2024-05-10 23:12:38.942613+00', '0x91cb655d9b80022116c01dcbf5abca3f1bd056db', 0, 0, 1, '2024-02-07', 1, 0, '274027', false), - (92704, '2024-05-10 23:12:39.120237+00', '0x7db956d70be8be8ba3ba77e032067ed4ea622ab4', 0, 0, 1, '2024-02-06', 1, 0, '300065', false), - (92747, '2024-05-10 23:12:39.251191+00', '0x2c38c4241ccc33ae16043f21559479f2d836abbf', 0, 0, 1, '2024-02-06', 1, 1, '290868', false), - (92786, '2024-05-10 23:12:39.34316+00', '0xd3d415cbf39ecb1c071b6b66cc15aaf269852b10', 0, 0, 1, '2024-02-06', 1, 0, '1274', false), - (94822, '2024-05-12 06:00:35.697702+00', '0x9aa13b25b27ddc2623dd02616541bf8c528e8bef', 0, 0, 1, '2024-05-11', 1, 5, '507341', false), - (74425, '2024-05-10 23:11:45.610365+00', '0xa41a9630b65e4ea1216211ef99c5b2b1db069c85', 0, 0, 1, '2024-03-11', 10, 5, '188421', false), - (93915, '2024-05-11 06:00:25.316925+00', '0x283349c3d6ca4c67f92ef8e086db75a5e3b30b4a', 0, 0, 1, '2024-05-11', 1, 0, '527616', false), - (90529, '2024-05-10 23:12:33.076466+00', '0xeb0b24f85675204b8f33cf022ef2664f0df5a519', 0, 0, 1, '2024-02-06', 3, 6, '235900', false), - (90305, '2024-05-10 23:12:32.440028+00', '0xa49f720bf331a5e701f452321d997a01336ed315', 0, 0, 1, '2024-05-05', 1, 1, '515990', false), - (92380, '2024-05-10 23:12:38.244961+00', '0xb1620c0547744dedd30f40a863c09d1964532f8c', 0, 0, 1, '2024-02-15', 1, 0, '267764', false), - (93370, '2024-05-10 23:12:40.962826+00', '0x220cd3059dbe7e56979bdf50ffa3d48ae00f9d4a', 0, 0, 1, '2024-02-02', 2, 3, '248011', false), - (92401, '2024-05-10 23:12:38.269875+00', '0xe8bbe391340e0a3bf1ac13166c41266b65598ce9', 0, 0, 1, '2024-02-14', 1, 0, '191267', false), - (90618, '2024-05-10 23:12:33.337262+00', '0x9096c8f6a748e068e7a7895f6ef01c793327b8e9', 0, 0, 1, '2024-04-27', 1, 5, '253956', false), - (90665, '2024-05-10 23:12:33.461776+00', '0xefcd769a7936bd18fc8ebf98e79484cff4a8d7d9', 0, 0, 1, '2024-04-26', 1, 5, '407933', false), - (90884, '2024-05-10 23:12:34.03497+00', '0x6e0b0e19c7a26024d3c34ccd9d02019c029df244', 0, 0, 1, '2024-04-17', 1, 0, '327808', false), - (92574, '2024-05-10 23:12:38.758201+00', '0x44eaa35bf5e0bdcdd3d9acb9679c2f08aed5cd2a', 0, 0, 1, '2024-02-07', 1, 0, '315449', false), - (91108, '2024-05-10 23:12:34.690476+00', '0x5ae0103817f40fbe24778658e73aeb85055f8807', 0, 0, 1, '2024-04-11', 1, 1, '276322', false), - (91307, '2024-05-10 23:12:35.191268+00', '0x9a604173def05868d20a8e150c322598d5d92c4e', 0, 0, 1, '2024-04-05', 1, 2, '385245', false), - (92618, '2024-05-10 23:12:38.943882+00', '0x8aa282d80cbba3f36a8fea665bcf9d23a7284656', 0, 0, 1, '2024-02-06', 1, 5, '253424', false), - (92631, '2024-05-10 23:12:38.960256+00', '0x376b8f6a3c30e44c071e6e4630e8d46fbc0fd039', 0, 0, 1, '2024-02-07', 1, 0, '274982', false), - (92654, '2024-05-10 23:12:38.974885+00', '0xd315faa27d29f7eed5f14d9a313a667f3dd7d87e', 0, 0, 1, '2024-02-06', 1, 1, '301286', false), - (91241, '2024-05-10 23:12:35.0564+00', '0x41fcc1e9d01185d37c59294945b18715f2a8ab42', 0, 0, 1, '2024-03-31', 2, 0, '266090', false), - (91638, '2024-05-10 23:12:36.18296+00', '0xf013b1a74931703d42a39576554b1b1577e0c75c', 0, 0, 1, '2024-03-27', 1, 0, '19409', false), - (92724, '2024-05-10 23:12:39.224728+00', '0xac703e0f9b4cf7dbd3f8dbf8218893d1b78c8716', 0, 0, 1, '2024-02-06', 1, 2, '290392', false), - (92738, '2024-05-10 23:12:39.240494+00', '0x69558c911f63fcc3342d43c4cc93245f58eef269', 0, 0, 1, '2024-02-06', 1, 5, '268160', false), - (91705, '2024-05-10 23:12:36.475282+00', '0x7bcdffc9adf07f9b69bd34b8fa7c3f94c8dc3b6c', 0, 0, 1, '2024-03-24', 1, 1, '196238', false), - (91760, '2024-05-10 23:12:36.620967+00', '0xd4c8a26c83411c78110cc54c810fe12d11f33704', 0, 0, 1, '2024-03-21', 1, 2, '231733', false), - (92773, '2024-05-10 23:12:39.34713+00', '0xf4127de780eec854c56c91c5064591db724d57f2', 0, 0, 1, '2024-02-06', 1, 0, '239554', false), - (93011, '2024-05-10 23:12:39.997675+00', '0x9aff83ee7b8c253f92b1ca0cc53bba27837c4714', 0, 0, 1, '2024-02-06', 1, 1, '293564', false), - (92797, '2024-05-10 23:12:39.370587+00', '0xff9cc883893ad608420df30ab48a651b998ad5f8', 0, 0, 1, '2024-02-06', 1, 3, '257459', false), - (90581, '2024-05-10 23:12:33.218556+00', '0x6af6d6b3fba247129c32544b53106ab3bb772902', 0, 0, 1, '2024-03-16', 4, 19, '6946', false), - (93932, '2024-05-11 06:00:25.373118+00', '0x14174a3f8868b4b6ab023853e2ff5903ea0fd015', 0, 0, 1, '2024-05-11', 2, 4, '49', false), - (92815, '2024-05-10 23:12:39.466538+00', '0xa02549cd0b2ed268dab4b1d8e98bb6f4a076262b', 0, 0, 1, '2024-02-06', 1, 2, '249361', false), - (90472, '2024-05-10 23:12:32.926524+00', '0x545425f9686b56078da3bfac5f9f25bb287b1291', 0, 0, 1, '2024-03-12', 2, 10, '15469', false), - (91722, '2024-05-10 23:12:36.497569+00', '0x0b30f09abc1a325b04ee47b259f42b70d0fcf0d4', 0, 0, 1, '2024-03-04', 2, 2, '256330', false), - (93051, '2024-05-10 23:12:40.055696+00', '0x061ca8633f1effb0d07d0311474adf1175e4b3af', 0, 0, 1, '2024-02-06', 1, 1, '291494', false), - (92828, '2024-05-10 23:12:39.482746+00', '0x05e6e03f55b16e4e6ed2502acb3dd2b919dab43b', 0, 0, 1, '2024-02-06', 3, 1, '280344', false), - (92846, '2024-05-10 23:12:39.501937+00', '0x24abfa8844bb07d4d256e26ae46acb99a3708f9d', 0, 0, 1, '2024-02-06', 1, 0, '295419', false), - (93092, '2024-05-10 23:12:40.174575+00', '0xd57f95254a2f11812129f3ccac8d25b9f25e0ac9', 0, 0, 1, '2024-02-06', 1, 0, '307580', false), - (93108, '2024-05-10 23:12:40.267148+00', '0x555449d6e2ec6c72735a8c8341e1e039552407f0', 0, 0, 1, '2024-02-06', 1, 1, '298162', false), - (93141, '2024-05-10 23:12:40.299559+00', '0x7a812962ae05a6f60aa2654570f32ec158bdd237', 0, 0, 1, '2024-02-06', 1, 0, '249945', false), - (93180, '2024-05-10 23:12:40.439876+00', '0xb6dd92fd48cf708ce1aa6d70332e9163a0686e3d', 0, 0, 1, '2024-02-06', 1, 1, '251894', false), - (92941, '2024-05-10 23:12:39.75996+00', '0x5f3989a8d9b016fbb4efb39bb6cb47c45b82b0e1', 0, 0, 1, '2024-02-06', 1, 5, '235404', false), - (92956, '2024-05-10 23:12:39.789859+00', '0x2b49a18d6c0e7c88dc9e8900c89cec55bf585c07', 0, 0, 1, '2024-02-06', 1, 1, '253217', false), - (91855, '2024-05-10 23:12:36.867409+00', '0x8f5511f9c204dee881167c0da490fa9018251d2d', 0, 0, 1, '2024-02-06', 4, 0, '296884', false), - (92990, '2024-05-10 23:12:39.908256+00', '0x36f341b88d969fd56e8383a99dd13aae96d9b66b', 0, 0, 1, '2024-02-06', 1, 4, '252541', false), - (93201, '2024-05-10 23:12:40.45911+00', '0xa8500c256da4890cb3461820810c0e233a4b4d2e', 0, 0, 1, '2024-02-06', 1, 1, '278743', false), - (86670, '2024-05-10 23:12:22.10046+00', '0x10e0eef65afde81e4452f249b57373beb4aaa1cf', 0, 0, 1, '2024-05-05', 3, 13, '277944', false), - (93219, '2024-05-10 23:12:40.547236+00', '0xc64e217d28672923ac2c4d6aa34f3ff96977c340', 0, 0, 1, '2024-02-06', 1, 1, '241277', false), - (93237, '2024-05-10 23:12:40.564737+00', '0x194e81338facc445cc36690925eb1e11a687dc50', 0, 0, 1, '2024-02-06', 1, 2, '250970', false), - (93329, '2024-05-10 23:12:40.840105+00', '0x1021cefcc7288b19af3bf38d277590ceb6b5904c', 0, 0, 1, '2024-02-04', 1, 3, '247662', false), - (93386, '2024-05-10 23:12:40.977234+00', '0x8587b002643cd4e58e5b2fc97c7e7f8e65c21763', 0, 0, 1, '2024-02-02', 1, 5, '217630', false), - (90365, '2024-05-10 23:12:32.655269+00', '0x8934d55bbc1577348510c6d999f8cb44b7fa5e66', 0, 0, 1, '2024-01-20', 6, 13, '212117', false), - (93591, '2024-05-10 23:12:41.558813+00', '0xdadee9295243b9c456107434f35fa07c39f9024c', 0, 0, 1, '2023-12-22', 1, 1, '190044', false), - (82869, '2024-05-10 23:12:10.182136+00', '0xff60415ac262d665519f4e529cde6c92760b310c', 0, 0, 1, '2024-05-04', 7, 35, '396276', false), - (93052, '2024-05-10 23:12:40.055996+00', '0x6c9449a3b7bd604e12e9407460643f1dfbd9fff7', 0, 0, 1, '2024-02-06', 1, 0, '254141', false), - (93036, '2024-05-10 23:12:40.041781+00', '0xb383fea9dd0cb74fe467a920249ca8675e5e4bb2', 0, 0, 1, '2024-02-06', 2, 1, '293235', false), - (93067, '2024-05-10 23:12:40.150989+00', '0x32acde73f7d84cbde9c78b722a717c5bd11ea47b', 0, 0, 1, '2024-02-06', 1, 0, '248758', false), - (93101, '2024-05-10 23:12:40.183521+00', '0x7f102a66a4829868bfa883ee98bc4b3e37bb16ba', 0, 0, 1, '2024-02-06', 1, 5, '268831', false), - (93121, '2024-05-10 23:12:40.280495+00', '0x2d1fc47c4d6abb030014f68fad23249257f73ed0', 0, 0, 1, '2024-02-06', 1, 1, '18990', false), - (93146, '2024-05-10 23:12:40.30271+00', '0x9827e110ca6a8a4dc32e3bc371947f877f5f1c08', 0, 0, 1, '2024-02-06', 1, 5, '251537', false), - (92620, '2024-05-10 23:12:38.946966+00', '0xda896b4f6fa4e39b771971328ef485e427b30168', 0, 0, 1, '2024-02-07', 1, 0, '276088', false), - (90514, '2024-05-10 23:12:33.062651+00', '0xb1607e8fcead1e10317bda673691cbb274d653f4', 0, 0, 1, '2024-05-01', 2, 7, '237145', false), - (90664, '2024-05-10 23:12:33.462623+00', '0x74d6f2d61671f8ddaaa4d6c1f584d84ab8765599', 0, 0, 1, '2024-04-26', 1, 5, '380122', false), - (92632, '2024-05-10 23:12:38.960738+00', '0x864e798a47c97ef1513b79c2f5b5af9427130390', 0, 0, 1, '2024-02-06', 1, 0, '272900', false), - (92647, '2024-05-10 23:12:38.973292+00', '0x035dd5668d8a718af300a93ca72ac5fd63a4e5bb', 0, 0, 1, '2024-02-06', 1, 0, '267969', false), - (92669, '2024-05-10 23:12:39.074784+00', '0x25c8e67261fc3ee0549296767ae48fbe01850c38', 0, 0, 1, '2024-02-06', 1, 5, '14438', false), - (90854, '2024-05-10 23:12:34.005057+00', '0x3d88a50757c7a424a82bf2e387a0cd94266e2a82', 0, 0, 1, '2024-04-18', 1, 5, '347536', false), - (90625, '2024-05-10 23:12:33.348034+00', '0x328c194f700cf621798f2d0c85b541f97fb8400a', 0, 0, 1, '2024-04-12', 2, 0, '476553', false), - (91047, '2024-05-10 23:12:34.548135+00', '0x35353e0ddd63fb8911a2136c80772c6f4cabe7bf', 0, 0, 1, '2024-04-11', 2, 2, '226551', false), - (90796, '2024-05-10 23:12:33.774509+00', '0xc52ae131ecc3a8110b784a4e412080fc80cfcb16', 0, 0, 1, '2024-04-09', 2, 0, '467592', false), - (91271, '2024-05-10 23:12:35.08588+00', '0x52986b1cf87e95e280253d367587b4c5ef3e3b0f', 0, 0, 1, '2024-04-07', 1, 2, '363707', false), - (90658, '2024-05-10 23:12:33.383631+00', '0x1b08663761705a4e5f56bc9fb8ad7ab9537902b0', 0, 0, 1, '2024-04-26', 1, 5, '254145', false), - (91294, '2024-05-10 23:12:35.178898+00', '0xeae326eabc4ba98c196c9a8efec46278f2818332', 0, 0, 1, '2024-04-06', 1, 0, '189852', false), - (91330, '2024-05-10 23:12:35.217487+00', '0x55ba9c90c37e3206570ac9dc872c0f053d155f77', 0, 0, 1, '2024-04-05', 1, 2, '328348', false), - (91397, '2024-05-10 23:12:35.516245+00', '0x9882954d15f500ea7a63a33479cbe0132b584eb0', 0, 0, 1, '2024-04-03', 1, 1, '315355', false), - (92698, '2024-05-10 23:12:39.101433+00', '0x81b6c6684795dfc86415a31a0e9c19a53ea5b270', 0, 0, 1, '2024-02-06', 1, 5, '19080', false), - (90825, '2024-05-10 23:12:33.91193+00', '0xa420f0cf45f674bf8b5aff244acf6aa4d8b8fa8a', 0, 0, 1, '2024-04-02', 4, 0, '340275', false), - (92739, '2024-05-10 23:12:39.235284+00', '0x8ae6efe1dba2417d51b6c69904fc100f6c8cb5a5', 0, 0, 1, '2024-02-06', 1, 3, '295981', false), - (90167, '2024-05-10 23:12:32.137858+00', '0x7a631b4a6b1d0a6b1e433d92690d7c8aba4f23b4', 0, 0, 1, '2024-03-31', 15, 10, '431594', false), - (90395, '2024-05-10 23:12:32.685316+00', '0xfcbaacad53def4df17fd8eb1e1b10291ca09b85e', 0, 0, 1, '2024-05-04', 2, 3, '349939', false), - (91623, '2024-05-10 23:12:36.168229+00', '0x5de82531a549397abb13eab55ad5602788a0d21c', 0, 0, 1, '2024-03-27', 1, 0, '16224', false), - (92717, '2024-05-10 23:12:39.214415+00', '0x51e149807bb595d9813c4f3fb3c47062d15a55ba', 0, 0, 1, '2024-02-06', 2, 1, '262859', false), - (91923, '2024-05-10 23:12:36.993846+00', '0x69ce8d79dfa9d025000e589af0331fec12048111', 0, 0, 1, '2024-03-14', 1, 0, '375022', false), - (92776, '2024-05-10 23:12:39.3515+00', '0x52ba6f18caf0c95f2475cc15e15a0b2a7c33d449', 0, 0, 1, '2024-02-06', 1, 0, '277788', false), - (83411, '2024-05-10 23:12:12.026624+00', '0x78aa73f7ed88e7f86ec82c8df31afed6c9f10a2d', 0, 0, 1, '2024-05-05', 15, 69, '421782', false), - (91854, '2024-05-10 23:12:36.863913+00', '0xbeadc48b319aa4349fa29afa5e9e88f44470349c', 0, 0, 1, '2024-02-17', 4, 6, '265182', false), - (92438, '2024-05-10 23:12:38.392282+00', '0x4b44f85d6bb71482995105962fd073742c94107e', 0, 0, 1, '2024-02-12', 2, 1, '285524', false), - (93173, '2024-05-10 23:12:40.42817+00', '0x45a70d5a68cd055a47a83456758849cc774132c1', 0, 0, 1, '2024-02-06', 1, 3, '229568', false), - (93193, '2024-05-10 23:12:40.449515+00', '0xf763bd12218821b12bce1a169ffb9e0010dc9fb2', 0, 0, 1, '2024-02-06', 1, 2, '263520', false), - (92812, '2024-05-10 23:12:39.462692+00', '0x9d68e88aaf9ee8b9d18335e8b29b0b45decfe34d', 0, 0, 1, '2024-02-06', 2, 5, '251838', false), - (92864, '2024-05-10 23:12:39.601771+00', '0xcbd06622e798c000d9f5f606ff2794d52eacf078', 0, 0, 1, '2024-02-06', 1, 2, '252398', false), - (93210, '2024-05-10 23:12:40.536865+00', '0x2db2e3a064402a4e73efb0da5ed43d93e8ead982', 0, 0, 1, '2024-02-06', 1, 0, '300719', false), - (92918, '2024-05-10 23:12:39.750296+00', '0x671b55da86e55845b3ea6698ed97eb5875c63646', 0, 0, 1, '2024-02-06', 1, 1, '249991', false), - (92938, '2024-05-10 23:12:39.766573+00', '0x03a069e2b11e4094a068498bd06c9cd94a61ada7', 0, 0, 1, '2024-02-06', 1, 0, '288526', false), - (92899, '2024-05-10 23:12:39.638779+00', '0x2e75917bf9cff93a4d9aa4f0bb00ffb52bb78cee', 0, 0, 1, '2024-02-06', 3, 1, '273766', false), - (93003, '2024-05-10 23:12:39.915843+00', '0x05a660191ea9b2940139e5ad090a972706db2d5c', 0, 0, 1, '2024-02-06', 1, 0, '288740', false), - (92838, '2024-05-10 23:12:39.493173+00', '0x56b8a0f575424a4e10da4b8d9dd7d70b8848db3d', 0, 0, 1, '2024-02-06', 2, 0, '254160', false), - (93020, '2024-05-10 23:12:40.016714+00', '0x1622cc01ac7ae0307c87f47bed1f75b42126daab', 0, 0, 1, '2024-02-06', 1, 1, '297906', false), - (93503, '2024-05-10 23:12:41.336074+00', '0xf9c1b47e7b37fb243252b958e23cbc7608ef996f', 0, 0, 1, '2023-12-27', 2, 0, '208878', false), - (93567, '2024-05-10 23:12:41.533935+00', '0x03276f24921df2a96330b8d107a9c289e6c669da', 0, 0, 1, '2023-12-26', 1, 4, '16455', false), - (93354, '2024-05-10 23:12:40.945787+00', '0xd03ee5f22c5d46f502fbc42d39354d46540627b0', 0, 0, 1, '2024-02-02', 1, 0, '250098', false), - (93585, '2024-05-10 23:12:41.55213+00', '0xfbf0736eb2ac1c4bb0193ae54c53e182b18037fc', 0, 0, 1, '2023-12-22', 1, 2, '16545', false), - (92331, '2024-05-10 23:12:38.125634+00', '0x83bbe9cfcc205bb8e53cba0b51d6db9386ce58b5', 0, 0, 1, '2023-12-20', 3, 3, '27381', false), - (94781, '2024-05-12 06:00:35.387628+00', '0xbb9eff0d2ec65e266b8186ee79cf6ea1e287081e', 0, 0, 1, '2024-05-11', 1, 5, '451930', false), - (93619, '2024-05-10 23:12:41.680468+00', '0xe8560fa7b864d69a4d5a81e58116088773ff8767', 0, 0, 1, '2023-12-21', 1, 0, '9967', false), - (94640, '2024-05-12 06:00:34.588123+00', '0x3d29aeec3a2f2cf08025dcaf4e6bad24d8602d5f', 0, 0, 1, '2024-05-11', 2, 10, '400160', false), - (94571, '2024-05-12 06:00:34.179049+00', '0x5e3820a0c4cc382c2f1ed6ba5f83ed740c905cbe', 0, 0, 1, '2024-05-11', 5, 23, '462778', false), - (93427, '2024-05-10 23:12:41.091579+00', '0xf8ce3248ea5917bb13011d516d2f3c0e0774af8c', 0, 0, 1, '2024-01-23', 1, 3, '18481', false), - (93721, '2024-05-10 23:12:41.975642+00', '0x78d262ee17922bfb29476e25df20eec17e252902', 0, 0, 1, '2023-11-19', 1, 0, '193247', false), - (90723, '2024-05-10 23:12:33.585591+00', '0x625307de45bd25ad6bf6cc7391a308fc84067cf7', 0, 0, 1, '2024-04-23', 2, 6, '13763', false), - (91054, '2024-05-10 23:12:34.565554+00', '0x96dcb51be273b408e8d728447c4d581c9d46be0d', 0, 0, 1, '2024-04-12', 1, 0, '204434', false), - (91076, '2024-05-10 23:12:34.583968+00', '0xa0fdf306384b3a2e61c1bba4cd98ba0bed9d960b', 0, 0, 1, '2024-04-12', 1, 5, '367412', false), - (91206, '2024-05-10 23:12:34.934539+00', '0x4c06f18d3427cc90165d98d01de04c7e5732c1cd', 0, 0, 1, '2024-04-09', 1, 0, '407618', false), - (91267, '2024-05-10 23:12:35.082198+00', '0xf4cc8a6a89cefdbdb515eab3ac7d76c7f32bd61b', 0, 0, 1, '2024-04-07', 1, 0, '300846', false), - (93346, '2024-05-10 23:12:40.858024+00', '0xe487b66f878fa3d8e4a681db522127a92022aa2b', 0, 0, 1, '2024-02-04', 1, 0, '18281', false), - (93357, '2024-05-10 23:12:40.951468+00', '0x873ec853a4545ddc1d8568988b72782798b22db2', 0, 0, 1, '2024-02-02', 1, 1, '258564', false), - (93451, '2024-05-10 23:12:41.194441+00', '0x59659e3270e7e143f8f1bba1af3d237d8c9f9354', 0, 0, 1, '2024-01-22', 3, 1, '7561', false), - (93542, '2024-05-10 23:12:41.373955+00', '0xd60df7f960c20dc06acd9a3844349242071d4d57', 0, 0, 1, '2024-01-10', 1, 3, '192254', false), - (77921, '2024-05-10 23:11:55.485162+00', '0x10a381cfdd62c21c4ab1f91bee2ac3faf6ddf2fc', 0, 0, 1, '2024-03-31', 48, 99, '402867', false), - (93635, '2024-05-10 23:12:41.693764+00', '0x3db103d67b5c555926b933a68faa963e08cab829', 0, 0, 1, '2023-12-20', 1, 0, '199631', false), - (92635, '2024-05-10 23:12:38.959411+00', '0x76e9a895466855167431d89620dca893ef3eb076', 0, 0, 1, '2024-02-07', 1, 0, '272286', false), - (92673, '2024-05-10 23:12:39.089124+00', '0x47f31127628bf5257897d86b080c7ca2d3ff0e61', 0, 0, 1, '2024-02-06', 1, 2, '275555', false), - (90381, '2024-05-10 23:12:32.677308+00', '0xd609871aca0e3e41fbe69dc2dbac66b0b0b5c3fc', 0, 0, 1, '2024-04-24', 4, 5, '481772', false), - (93660, '2024-05-10 23:12:41.837029+00', '0xc4f14b238bcd25822b4639ff94b1b2025aca5e08', 0, 0, 1, '2023-11-18', 2, 0, '194004', false), - (91642, '2024-05-10 23:12:36.187536+00', '0xa928add4ac06eaf404c64234ca3640296e9ffc5b', 0, 0, 1, '2024-03-28', 1, 0, '390579', false), - (91860, '2024-05-10 23:12:36.872651+00', '0xa10d058252ddc859c67558a36932eace1e9d4cdd', 0, 0, 1, '2024-03-17', 1, 2, '348501', false), - (91876, '2024-05-10 23:12:36.887116+00', '0x661c54a9da5c289f60c1a19ad95049dce2169e6b', 0, 0, 1, '2024-03-17', 1, 2, '267385', false), - (92711, '2024-05-10 23:12:39.125837+00', '0xddb1f99b69a49b7e3b25bfb7bf95b1d070f35358', 0, 0, 1, '2024-02-06', 1, 5, '257876', false), - (91909, '2024-05-10 23:12:36.981081+00', '0xfd4520753366d35e5dc2f76d52dc58a5261ed263', 0, 0, 1, '2024-03-16', 1, 0, '21051', false), - (91832, '2024-05-10 23:12:36.768422+00', '0xd57ba6ea927a041d2cd59d7cb751c13b15a3f94b', 0, 0, 1, '2024-03-17', 1, 0, '260692', false), - (91645, '2024-05-10 23:12:36.190728+00', '0x7f2049f69eabc4bd865fe8edf21cb8019cc7ec8f', 0, 0, 1, '2024-03-28', 1, 0, '238439', false), - (91856, '2024-05-10 23:12:36.863667+00', '0x7de937b260515f2985748e2c6ee9c20a747badc4', 0, 0, 1, '2024-03-17', 1, 4, '236061', false), - (91945, '2024-05-10 23:12:37.01849+00', '0x7d8c68f50c8797b4bd69579fc19952f223ef50c0', 0, 0, 1, '2024-03-11', 2, 1, '361843', false), - (92155, '2024-05-10 23:12:37.620835+00', '0x23f99be94bc125a0a5d259502a04476ca338a3ce', 0, 0, 1, '2024-02-29', 2, 0, '346203', false), - (91768, '2024-05-10 23:12:36.624592+00', '0x489d69939b4aca357f630055e351a81f1fbb7fb6', 0, 0, 1, '2024-02-24', 2, 10, '296422', false), - (91964, '2024-05-10 23:12:37.117994+00', '0x409bd82cf7071daa870540495cfa21ae49e69f00', 0, 0, 1, '2024-03-12', 1, 0, '191791', false), - (92727, '2024-05-10 23:12:39.229758+00', '0x00a56fda2b3fec55e1e532da3f5a1e775551943a', 0, 0, 1, '2024-02-06', 1, 0, '244852', false), - (92746, '2024-05-10 23:12:39.240824+00', '0x68dbfb911bd63934df57ad615804711ec2bbdafe', 0, 0, 1, '2024-02-06', 1, 3, '264688', false), - (91960, '2024-05-10 23:12:37.115965+00', '0x3c9b4a00e162a62e97a8610455490966a4eaacf5', 0, 0, 1, '2024-03-12', 1, 5, '311327', false), - (93584, '2024-05-10 23:12:41.552057+00', '0x7eaec254f78613d9d57e1fdb8d9964ea36e7523d', 0, 0, 1, '2023-12-21', 1, 0, '191301', false), - (92691, '2024-05-10 23:12:39.108348+00', '0x882d233522ee77024f24782e7ca9a249fdb5371e', 0, 0, 1, '2024-02-06', 2, 5, '291591', false), - (92778, '2024-05-10 23:12:39.35504+00', '0x7ce276ae41430214cae9cf1ed363c8750ec3ff37', 0, 0, 1, '2024-02-06', 1, 2, '258315', false), - (92798, '2024-05-10 23:12:39.373674+00', '0xe5d04269e38dd6aaba32ca0a8970fb31185c64a7', 0, 0, 1, '2024-02-06', 1, 5, '232798', false), - (92817, '2024-05-10 23:12:39.471148+00', '0x47b553a095040e6b5b03f4fe059308db12530545', 0, 0, 1, '2024-02-06', 1, 1, '289686', false), - (92837, '2024-05-10 23:12:39.490859+00', '0x4aa1f613e40272266dc1c376518a8a17a5fffc5f', 0, 0, 1, '2024-02-06', 1, 2, '269719', false), - (94830, '2024-05-12 06:00:35.702293+00', '0x919520e44dfdf6f906e272f010115d385d8b35f9', 0, 0, 1, '2024-05-11', 2, 8, '479823', false), - (92034, '2024-05-10 23:12:37.267511+00', '0xfc8b28dad42a6b2a51e33f770baf332ebe9866e6', 0, 0, 1, '2024-03-09', 1, 5, '380015', false), - (92854, '2024-05-10 23:12:39.512016+00', '0x0db5cbe2e1ad7b566297382c0649415c6dad09a0', 0, 0, 1, '2024-02-06', 1, 3, '279243', false), - (92879, '2024-05-10 23:12:39.61348+00', '0x4bbf9ece2ed6451abe9ea495a917b1f3cdc2d173', 0, 0, 1, '2024-02-06', 1, 1, '305841', false), - (93650, '2024-05-10 23:12:41.824283+00', '0x89d2bf03c96d40c9af3a3359a93922fef697b1d0', 0, 0, 1, '2023-11-30', 2, 0, '18394', false), - (92912, '2024-05-10 23:12:39.744022+00', '0xef94d7a7606aeda08477eb87b6ef0e3d19d68d9b', 0, 0, 1, '2024-02-06', 1, 0, '282155', false), - (92929, '2024-05-10 23:12:39.756989+00', '0x7c1f76c4c99220da4183b9e896533a38eb7ab247', 0, 0, 1, '2024-02-06', 1, 0, '292529', false), - (92943, '2024-05-10 23:12:39.773551+00', '0xb525911150a9a30f78b963564e10ada994690d5a', 0, 0, 1, '2024-02-06', 1, 2, '252365', false), - (92961, '2024-05-10 23:12:39.877854+00', '0xf4563b31e74a4c02485e765c8cce909d6835388b', 0, 0, 1, '2024-02-06', 1, 0, '260331', false), - (94907, '2024-05-12 06:00:36.305027+00', '0x87b7086009fca5c905f0df66b62aff15af7ddff0', 0, 0, 1, '2024-05-11', 1, 1, '406116', false), - (90056, '2024-05-10 23:12:31.690184+00', '0x6904bfb4522e10038fc675552176b866027be939', 0, 0, 1, '2024-04-26', 16, 23, '501199', false), - (92547, '2024-05-10 23:12:38.660754+00', '0x41584626231439363ee9ee274b0d0c245c0f08dd', 0, 0, 1, '2024-02-08', 1, 0, '258745', false), - (92572, '2024-05-10 23:12:38.764801+00', '0x03ba5b7394b1b1ba49a2c58ea63b08babe58ae2f', 0, 0, 1, '2024-02-07', 1, 0, '315394', false), - (92642, '2024-05-10 23:12:38.968357+00', '0x67d98757ccbdb90dfa78e695e761b48f1e3f01e4', 0, 0, 1, '2024-02-06', 1, 1, '255496', false), - (92661, '2024-05-10 23:12:38.986459+00', '0x1f2dad880e69c21b0ae17a6c33865e747aa7361e', 0, 0, 1, '2024-02-06', 1, 1, '259617', false), - (92677, '2024-05-10 23:12:39.089533+00', '0x096040399da28f20ec5d9dab083b0641f89a603b', 0, 0, 1, '2024-02-06', 1, 5, '276983', false), - (92763, '2024-05-10 23:12:39.336705+00', '0xcf588e1b8ecd960c015cb19f0a5a3a81e3dd1f92', 0, 0, 1, '2024-02-06', 1, 0, '257058', false), - (91287, '2024-05-10 23:12:35.166413+00', '0xae6b19b637fdcb9c5c05238e5279754c39de76a9', 0, 0, 1, '2024-02-06', 4, 2, '272977', false), - (92804, '2024-05-10 23:12:39.374173+00', '0x3172baa7ee9f32e09014f89e3e090c8d5fb15e62', 0, 0, 1, '2024-02-06', 1, 0, '290555', false), - (92876, '2024-05-10 23:12:39.617634+00', '0x39111516af86eda9174cefd3057257668ec41dae', 0, 0, 1, '2024-02-06', 1, 3, '275436', false), - (92822, '2024-05-10 23:12:39.477378+00', '0xcda25edcee831746c3198525242ff8978c936715', 0, 0, 1, '2024-02-06', 2, 0, '15103', false), - (92898, '2024-05-10 23:12:39.634201+00', '0x047961933e59b5dabaf3f66ef95ed05e49b4594c', 0, 0, 1, '2024-02-06', 1, 0, '279593', false), - (93027, '2024-05-10 23:12:40.033019+00', '0xbaa0aef48f131a9e68fd3d8d9cc1fa7f8e8d52a4', 0, 0, 1, '2024-02-06', 1, 1, '252073', false), - (93070, '2024-05-10 23:12:40.153057+00', '0x015f5453b1bd84c6955560e90a453dc9f634370e', 0, 0, 1, '2024-02-06', 1, 5, '276636', false), - (93105, '2024-05-10 23:12:40.264022+00', '0xea383de9bb78ac39830c66857dfe76abecbf85b6', 0, 0, 1, '2024-02-06', 1, 1, '237832', false), - (93118, '2024-05-10 23:12:40.284047+00', '0xa06970f029684d8810d6b0b2e74bff5849506fee', 0, 0, 1, '2024-02-06', 1, 1, '252998', false), - (93133, '2024-05-10 23:12:40.293088+00', '0xe6d377858d46b9b02260294335c8568a3ee85606', 0, 0, 1, '2024-02-06', 1, 1, '278418', false), - (93150, '2024-05-10 23:12:40.30589+00', '0x4d2f3a0ab4b478f27d3d788f5ebd3813908b7fb4', 0, 0, 1, '2024-02-06', 1, 0, '299445', false), - (93353, '2024-05-10 23:12:40.94261+00', '0x234f204445ed2eafd4ace5f14b8decf3435d221e', 0, 0, 1, '2024-02-02', 1, 1, '197526', false), - (93505, '2024-05-10 23:12:41.337796+00', '0x37e1118e1f4e1b1223fe9495c10ed3505950eba9', 0, 0, 1, '2024-01-03', 2, 0, '213574', false), - (93521, '2024-05-10 23:12:41.357328+00', '0xd892a5aa9ded7d9dce8355e86dc2b8d9dd788b73', 0, 0, 1, '2024-01-04', 1, 3, '212186', false), - (90881, '2024-05-10 23:12:34.032326+00', '0xc006850bf52d262ffca508d2a7479c6e2119b898', 0, 0, 1, '2023-12-22', 2, 2, '6701', false), - (93698, '2024-05-10 23:12:41.949673+00', '0x98de8db421c0822393dc9197dca5aba7efae0814', 0, 0, 1, '2023-10-20', 5, 6, '189567', false), - (91478, '2024-05-10 23:12:35.763576+00', '0xc49402372fb38f88c101a5b7dcfcd75c86c156e0', 0, 0, 1, '2024-04-01', 1, 0, '422928', false), - (91531, '2024-05-10 23:12:35.918348+00', '0x74c86ea3deb1b1ffe22a337eb61011039cf691e7', 0, 0, 1, '2024-03-31', 1, 1, '335251', false), - (87936, '2024-05-10 23:12:25.509058+00', '0x93c71908a4af260cd080533e2947b0fd5a7cc5dc', 0, 0, 1, '2024-05-05', 3, 15, '366072', false), - (83405, '2024-05-10 23:12:12.019961+00', '0xee6c53033af7d07c828df88d58ffc04ec924b780', 0, 0, 1, '2024-05-08', 4, 20, '484567', false), - (89034, '2024-05-10 23:12:28.47073+00', '0x7a09083c848a3637aff552093ec6cc3d9f0254dd', 0, 0, 1, '2024-02-17', 18, 4, '343603', false), - (89975, '2024-05-10 23:12:31.542622+00', '0xce3b6dac0e6e6c749d7492ba57ca94abdc26cc7a', 0, 0, 1, '2024-05-09', 1, 0, '277479', false), - (88436, '2024-05-10 23:12:26.831053+00', '0x2d4a3baeaff63ba6c620c29fd779f4968bf93806', 0, 0, 1, '2024-05-04', 3, 12, '415001', false), - (83575, '2024-05-10 23:12:12.448471+00', '0x9fd5f6ac3e7f278d727d4cd20bbdcaa6321027eb', 0, 0, 1, '2024-05-08', 1, 1, '358833', false), - (92820, '2024-05-10 23:12:39.475287+00', '0x3119ad3fbfd5f645117ba718e55f6cc9eefc363f', 0, 0, 1, '2024-02-06', 1, 2, '224338', false), - (93089, '2024-05-10 23:12:40.169494+00', '0xeb00735c6ba45f656a7b3d145eea4d373ff4fdeb', 0, 0, 1, '2024-02-06', 1, 1, '261255', false), - (93110, '2024-05-10 23:12:40.266891+00', '0x0768403991b3994ea32960942f396e1740918045', 0, 0, 1, '2024-02-06', 1, 1, '279803', false), - (93145, '2024-05-10 23:12:40.305415+00', '0xdfd9ece04dba2b28ead6a3c85c7474306f0b2ff9', 0, 0, 1, '2024-02-06', 1, 3, '17853', false), - (91558, '2024-05-10 23:12:35.934262+00', '0xc38ee99b7a3a9df97601be32de37afef7d4b18bf', 0, 0, 1, '2024-03-31', 1, 3, '232187', false), - (91636, '2024-05-10 23:12:36.178014+00', '0x67cb3c3795d44684501bfd37b1940ceb925029c9', 0, 0, 1, '2024-03-27', 1, 0, '16490', false), - (91703, '2024-05-10 23:12:36.412929+00', '0x6aa33d1f92f2b64db7be6d8190390091dc69c8ff', 0, 0, 1, '2024-03-25', 1, 0, '230296', false), - (91820, '2024-05-10 23:12:36.746983+00', '0x54cd3d4f63b263b5cdc8cadfee0f81539a6d1507', 0, 0, 1, '2024-03-17', 1, 5, '323044', false), - (91851, '2024-05-10 23:12:36.774261+00', '0x0fd5c22898443ef1913a45e94c5920dd78dc80f2', 0, 0, 1, '2024-03-18', 1, 1, '253752', false), - (91993, '2024-05-10 23:12:37.148793+00', '0x79ca223f6d58910a6ca96fd55156f9771c635af5', 0, 0, 1, '2024-03-11', 1, 1, '326081', false), - (92051, '2024-05-10 23:12:37.376845+00', '0x175a8f0f6c09400b610e623b4fea30574f1270a4', 0, 0, 1, '2024-03-08', 1, 1, '256158', false), - (91682, '2024-05-10 23:12:36.391598+00', '0x8064d8e5bcf0e9986cc0febb25601a0c2a8524a4', 0, 0, 1, '2024-03-08', 2, 10, '263697', false), - (92087, '2024-05-10 23:12:37.415293+00', '0x096e08bbdb3bb08ea7fe27c4e1e9012ab600940c', 0, 0, 1, '2024-03-08', 1, 0, '257812', false), - (81583, '2024-05-10 23:12:06.355172+00', '0xad920cd7046c3e3c5b562bbf61c60d7a0b5d85cf', 0, 0, 1, '2024-05-05', 5, 6, '17879', false), - (75559, '2024-05-10 23:11:48.753166+00', '0xda0ce6613e37bf848047607d7604664f5d554aba', 0, 0, 1, '2024-04-29', 3, 15, '444984', false), - (73872, '2024-05-10 23:11:43.325486+00', '0xb09eebbcc5941f0cbe13c396f3faca602e879d5c', 0, 0, 1, '2024-05-10', 1, 0, '195092', false), - (75296, '2024-05-10 23:11:48.061325+00', '0x934f5fb4fae01bae3fc26d155a21b037821e7e72', 0, 0, 1, '2024-02-17', 6, 1, '265845', false), - (73976, '2024-05-10 23:11:44.25339+00', '0xb16a22920b379079d5da9bb5157bc05f4f86aef2', 0, 0, 1, '2024-05-10', 1, 0, '418667', false), - (74647, '2024-05-10 23:11:46.327275+00', '0x1cad695af5639c5657bff199b875352adf682dbc', 0, 0, 1, '2024-05-07', 1, 1, '294370', false), - (75482, '2024-05-10 23:11:48.525132+00', '0xde6ac348a0cfd7497109b06577ccf21710e8ad89', 0, 0, 1, '2024-03-05', 5, 21, '378717', false), - (74298, '2024-05-10 23:11:45.242835+00', '0x02aa609e634f85ca81250d3f08bffa7c339042f8', 0, 0, 1, '2024-05-05', 5, 25, '500986', false), - (74970, '2024-05-10 23:11:47.296802+00', '0x6ac9f938a2eb887eac48eec4708c86ec13dd6ae5', 0, 0, 1, '2024-05-04', 24, 75, '501566', false), - (75924, '2024-05-10 23:11:49.642533+00', '0x2b84280c76877b341b9f8f627cb56cf7f38bb0b4', 0, 0, 1, '2024-04-25', 1, 0, '501000', false), - (75244, '2024-05-10 23:11:47.944466+00', '0xa949eba085bd6b07e8ce5073accfd5732d576122', 0, 0, 1, '2024-05-04', 1, 1, '308625', false), - (75385, '2024-05-10 23:11:48.278393+00', '0x62e71520deb1aaa28097569f5e823b9156d4a481', 0, 0, 1, '2024-05-03', 1, 5, '380545', false), - (76817, '2024-05-10 23:11:52.198733+00', '0xd5b82f1efef871c931128faaa4484d4861d1cdd9', 0, 0, 1, '2024-02-06', 4, 3, '8202', false), - (75215, '2024-05-10 23:11:47.916187+00', '0xa46468b3d736e42184577660b0c1a50d4f03e599', 0, 0, 1, '2024-05-04', 1, 1, '428335', false), - (75237, '2024-05-10 23:11:47.936256+00', '0x7f3503f01e140fc011283e6f05fb168108504649', 0, 0, 1, '2024-05-04', 1, 1, '269005', false), - (75274, '2024-05-10 23:11:48.035813+00', '0xab0ef57700d3061ba0f2d3d2323e99eaaa642b5b', 0, 0, 1, '2024-05-04', 1, 0, '288860', false), - (75305, '2024-05-10 23:11:48.138302+00', '0x4348b57916e6674bc2c9efd3ab84cede61e1dd46', 0, 0, 1, '2024-05-03', 1, 0, '461624', false), - (77077, '2024-05-10 23:11:53.016419+00', '0xe9042a56565fed328bc5634c834569b753d42f12', 0, 0, 1, '2024-04-13', 1, 1, '448588', false), - (77090, '2024-05-10 23:11:53.031541+00', '0x7e09428efcb471ba304b0723679502c01161f50e', 0, 0, 1, '2024-04-13', 1, 2, '10407', false), - (77127, '2024-05-10 23:11:53.15007+00', '0x235f32bb3920bf99e9fa813a37fcebadaf9cdf39', 0, 0, 1, '2024-04-12', 1, 0, '313406', false), - (77191, '2024-05-10 23:11:53.318628+00', '0x1847a58d11903ecd73ee8bf71ad801d7ed82ca97', 0, 0, 1, '2024-04-12', 1, 0, '317501', false), - (77207, '2024-05-10 23:11:53.336836+00', '0xd3396c0d621ab4fed82bdff0659bdd96b6de5f0f', 0, 0, 1, '2024-04-12', 1, 5, '406596', false), - (77147, '2024-05-10 23:11:53.167547+00', '0x4b6a9533036fb63675f957db3d01cbe741390d5c', 0, 0, 1, '2024-04-10', 2, 7, '245169', false), - (77344, '2024-05-10 23:11:53.737694+00', '0x1e51333dd2f7ae432d9adede23d4ecb5088bded7', 0, 0, 1, '2024-04-10', 1, 5, '437474', false), - (77642, '2024-05-10 23:11:54.584078+00', '0x32205e5b982902978413a4c9f2cf53db2512c0ee', 0, 0, 1, '2024-04-06', 1, 0, '448837', false), - (77442, '2024-05-10 23:11:53.974372+00', '0x7cef3a76e5c873432fce51da0ae5b2167e13ffa6', 0, 0, 1, '2024-04-08', 1, 0, '360600', false), - (77558, '2024-05-10 23:11:54.412934+00', '0x097041aa57e3462351c2ee7c90cc43c3eed8cce1', 0, 0, 1, '2024-04-07', 1, 0, '441885', false), - (77487, '2024-05-10 23:11:54.099055+00', '0x86e332c6d8597be0d2ab4a032ef4aa86ac86e973', 0, 0, 1, '2024-04-08', 1, 0, '426125', false), - (73985, '2024-05-10 23:11:44.264489+00', '0x8ce0d487b65fa9013bfd2770f920268945dc66c6', 0, 0, 1, '2024-05-09', 2, 8, '463830', false), - (77795, '2024-05-10 23:11:55.089247+00', '0x73deb2cf82f241922294e50944d2d3830c5ca650', 0, 0, 1, '2024-04-04', 1, 2, '418299', false), - (77848, '2024-05-10 23:11:55.354552+00', '0x753f8dab2ce1e6ec33e2967bcdd4974f60025319', 0, 0, 1, '2024-04-03', 1, 0, '241201', false), - (77619, '2024-05-10 23:11:54.565858+00', '0x037354e9ca2c1f3ede8b4cec712eed9834c2abc3', 0, 0, 1, '2024-04-06', 1, 0, '14839', false), - (77651, '2024-05-10 23:11:54.656122+00', '0x0ae242bd36d7fcbfaa1b7c980b3cdfeb55df6238', 0, 0, 1, '2024-04-06', 1, 5, '414724', false), - (77758, '2024-05-10 23:11:55.008242+00', '0x711df55d3663c04b2cbced323ce4ece2cbab92b9', 0, 0, 1, '2024-04-04', 1, 0, '350101', false), - (77729, '2024-05-10 23:11:54.809326+00', '0x2bc8f53fd6b59bf0e62df7d2ac92cfe5b4dbad62', 0, 0, 1, '2024-04-05', 1, 1, '391784', false), - (77962, '2024-05-10 23:11:55.674557+00', '0x7a67dc10ddefe4bfcd4d40b974405c7edda407db', 0, 0, 1, '2024-04-01', 1, 0, '403112', false), - (78452, '2024-05-10 23:11:57.044922+00', '0x820094b7942f39a635609c6268f7311e4c661d71', 0, 0, 1, '2024-03-18', 1, 1, '277366', false), - (78532, '2024-05-10 23:11:57.273509+00', '0x7bc300b2f50435476f3c7972007f6f60bed960f0', 0, 0, 1, '2024-03-15', 1, 0, '379165', false), - (79333, '2024-05-10 23:11:59.570484+00', '0xc8fbe3bbadcd1829e153f1837fc5f7c53f280686', 0, 0, 1, '2024-02-15', 1, 2, '263477', false), - (79416, '2024-05-10 23:11:59.814111+00', '0x3dbf55729abcf55f3b4f7cebfe88b7d59be3f23f', 0, 0, 1, '2024-02-13', 1, 2, '221216', false), - (80101, '2024-05-10 23:12:02.11178+00', '0x6de0368f14aefd0ae1323a70ef47cdf2afad6421', 0, 0, 1, '2023-11-21', 2, 5, '193349', false), - (78771, '2024-05-10 23:11:57.910922+00', '0x85ad32efe960939ff817f4f9169e99c6bd2f3ad7', 0, 0, 1, '2024-03-05', 1, 0, '251488', false), - (75256, '2024-05-10 23:11:48.017079+00', '0xa63475fbb41a3f179f8d72deb0161648ec1d2d95', 0, 0, 1, '2024-05-04', 2, 2, '456585', false), - (73929, '2024-05-10 23:11:43.552747+00', '0xff6a36523e212d5e5f7ea993c95b518a641c759f', 0, 0, 1, '2024-05-10', 3, 4, '511624', false), - (78799, '2024-05-10 23:11:57.947955+00', '0x18f3bad24415c16802d24f9a980637075d7d3226', 0, 0, 1, '2024-03-05', 1, 0, '240923', false), - (78794, '2024-05-10 23:11:57.944648+00', '0x97d0e6c2917eed185ae2ccd31968c8082aa98db4', 0, 0, 1, '2024-03-05', 1, 1, '260979', false), - (78108, '2024-05-10 23:11:56.042391+00', '0x7f5be0c65e05d5567c0ec8e8f84d2310e784fb5e', 0, 0, 1, '2024-02-21', 3, 4, '210586', false), - (79377, '2024-05-10 23:11:59.696988+00', '0x703fbd74399f71103604e3c7ea9f54cbb43f718a', 0, 0, 1, '2024-02-14', 1, 0, '197174', false), - (79449, '2024-05-10 23:11:59.950857+00', '0xbc94a75e8f89af94af553a41432c44700f0d381e', 0, 0, 1, '2024-02-12', 1, 0, '310103', false), - (79572, '2024-05-10 23:12:00.265124+00', '0xd82b943a93b2896cf5c7965d3ec25a30202b378c', 0, 0, 1, '2024-02-08', 2, 0, '314941', false), - (82301, '2024-05-10 23:12:08.546448+00', '0x77a606d967b9628855b87705d4df805bcb7c176f', 0, 0, 1, '2024-05-09', 2, 5, '507446', false), - (81956, '2024-05-10 23:12:07.593704+00', '0xa08d5ea7bbbd0a199023f8fe5621a062f3e574e1', 0, 0, 1, '2024-05-05', 7, 33, '500244', false), - (79789, '2024-05-10 23:12:00.939205+00', '0xe2bf39e89497e217f80ac97cc76e9c229569ff21', 0, 0, 1, '2024-02-06', 1, 0, '285357', false), - (84883, '2024-05-10 23:12:16.574233+00', '0xe0ae2bc3929008730dc9ec4d13d2096b686adb50', 0, 0, 1, '2024-05-05', 5, 25, '326700', false), - (82470, '2024-05-10 23:12:09.075657+00', '0x41bf8cb72efe8bf1f1643308b91e04f534d02130', 0, 0, 1, '2024-05-09', 1, 5, '431504', false), - (87465, '2024-05-10 23:12:24.296643+00', '0xc1fc90b93c150a7bb81960b97ee4bbd8d2205f29', 0, 0, 1, '2024-05-05', 1, 2, '503968', false), - (83858, '2024-05-10 23:12:13.429277+00', '0x6c182f8f3549f06255bcb513229cd1a3d54f2a67', 0, 0, 1, '2024-05-06', 3, 15, '428762', false), - (82207, '2024-05-10 23:12:08.266384+00', '0x749a7426d66ba18faa9a90380a1e5d0e751ac293', 0, 0, 1, '2024-05-09', 1, 5, '500965', false), - (82754, '2024-05-10 23:12:09.890775+00', '0xfa42e05719c2b1e432c5121954d1ff8eb0a78876', 0, 0, 1, '2024-05-09', 1, 5, '505260', false), - (84979, '2024-05-10 23:12:16.906368+00', '0xc653e8962f7daa73a9d0b950e44acf265b4fe243', 0, 0, 1, '2024-05-07', 5, 24, '505556', false), - (81639, '2024-05-10 23:12:06.53513+00', '0x5776ffc905664ca08bb99799050a4ce94af3ab7a', 0, 0, 1, '2024-05-06', 2, 10, '417693', false), - (76196, '2024-05-10 23:11:50.643377+00', '0x39a371e7c38ce31640470ac53e24093d2fd25e56', 0, 0, 1, '2024-04-22', 1, 1, '496239', false), - (84331, '2024-05-10 23:12:14.658758+00', '0x46e6f27fe7fe5bec6cbfaec747d499935c06a9b3', 0, 0, 1, '2024-05-07', 3, 12, '505013', false), - (83683, '2024-05-10 23:12:12.75476+00', '0xb3873616623f16874f0c4757c2e0647cae8a0451', 0, 0, 1, '2024-05-06', 3, 15, '418760', false), - (83848, '2024-05-10 23:12:13.414031+00', '0xb449ee589d1245b931aa594771c6389e443ab345', 0, 0, 1, '2024-05-08', 3, 4, '506831', false), - (82237, '2024-05-10 23:12:08.293726+00', '0x61f4c96e28ee8ce0713bef4b96e7af7a5aa8c585', 0, 0, 1, '2024-05-09', 1, 5, '418982', false), - (91390, '2024-05-10 23:12:35.495683+00', '0x79880f40088871ab65d52d2a3ddb559559e5c48b', 0, 0, 1, '2024-04-03', 2, 5, '203724', false), - (82321, '2024-05-10 23:12:08.573391+00', '0x3f7748c691b75ff79e89c3bfcc9ed197732ab8b2', 0, 0, 1, '2024-05-08', 2, 10, '448356', false), - (82469, '2024-05-10 23:12:09.072777+00', '0x8821e674083aabf5521aca8b9b29fd0cec0234a5', 0, 0, 1, '2024-05-09', 1, 5, '380376', false), - (88283, '2024-05-10 23:12:26.429986+00', '0x934c80e3a3e9136ee3558950385b66ac5e7d9bf7', 0, 0, 1, '2024-05-05', 7, 5, '349228', false), - (83133, '2024-05-10 23:12:10.983498+00', '0x126651f6bf646a5378a33fe20badc72add81ccc0', 0, 0, 1, '2024-05-08', 1, 4, '404741', false), - (82387, '2024-05-10 23:12:08.719566+00', '0x360c0b179ecbf516593582e47142b5251bf5f10e', 0, 0, 1, '2024-05-09', 1, 5, '492321', false), - (83081, '2024-05-10 23:12:10.827747+00', '0x2f9f68831269999e95240e6dbe79e69a198a8ad3', 0, 0, 1, '2024-05-06', 3, 4, '381536', false), - (82659, '2024-05-10 23:12:09.626232+00', '0xe6d7194f927a01c1682d5f10aef0e7162c0c5834', 0, 0, 1, '2024-05-09', 51, 6, '353115', false), - (82982, '2024-05-10 23:12:10.493718+00', '0x31fe2426b5e49a79945c244f284dc2745297073b', 0, 0, 1, '2024-05-08', 1, 5, '285798', false), - (86583, '2024-05-10 23:12:21.913735+00', '0x3c18dbf0acc0d81d97b05fd8c5ad5107c4d5cd7f', 0, 0, 1, '2024-05-06', 1, 5, '506991', false), - (87149, '2024-05-10 23:12:23.409249+00', '0x60b571151983ad63d93b1f4e1064039e0c5019f9', 0, 0, 1, '2024-05-05', 1, 5, '514643', false), - (87861, '2024-05-10 23:12:25.286854+00', '0x91c5e8e9f6d6de4cd6d3b9e9176a8b13e31569f8', 0, 0, 1, '2024-05-05', 2, 3, '19314', false), - (91603, '2024-05-10 23:12:36.065859+00', '0x4cb75146e98562c9d79b31649c6c739e4dcb7cd5', 0, 0, 1, '2024-03-20', 2, 4, '187956', false), - (86896, '2024-05-10 23:12:22.667688+00', '0xe0ea9d276f9a2daca74240a2f3df15baee8e5e6a', 0, 0, 1, '2024-05-05', 3, 10, '500766', false), - (89426, '2024-05-10 23:12:29.838367+00', '0x656e08efe4fb1433781ffdca8411458ffd8575c1', 0, 0, 1, '2024-02-06', 2, 0, '284440', false), - (82678, '2024-05-10 23:12:09.650905+00', '0x04f344269a9e349f9b9c123570bb78ed28a73e61', 0, 0, 1, '2024-05-09', 2, 10, '407704', false), - (82004, '2024-05-10 23:12:07.732548+00', '0x9c3b0af746881466f4a22aa8930d97fda68c7a1d', 0, 0, 1, '2024-05-05', 13, 60, '377769', false), - (79225, '2024-05-10 23:11:59.199317+00', '0xb3aa925835c7047a165bab827e8d83484937e0c5', 0, 0, 1, '2024-02-17', 1, 3, '248018', false), - (88465, '2024-05-10 23:12:26.85995+00', '0x9119fc1b9b2fc556eab7ec9b8e7032f1556bc7cf', 0, 0, 1, '2024-05-04', 1, 3, '505955', false), - (88497, '2024-05-10 23:12:26.961687+00', '0x7edbd4c8c51b8ebe359f0993ed4c01d41b24f142', 0, 0, 1, '2024-05-04', 1, 1, '201756', false), - (88778, '2024-05-10 23:12:27.681641+00', '0x3a9f6078b016e4bba717471f1329304743c2d286', 0, 0, 1, '2024-04-14', 1, 0, '463186', false), - (92748, '2024-05-10 23:12:39.249788+00', '0xaafcc8a1d72861e2aa257e2f0b1de41410bf5f96', 0, 0, 1, '2024-02-06', 2, 6, '266036', false), - (88836, '2024-05-10 23:12:27.805595+00', '0x7f2c7a2dcd6ca1125a5565d686a4b0108585732b', 0, 0, 1, '2024-04-10', 2, 3, '264508', false), - (88808, '2024-05-10 23:12:27.710492+00', '0x2744f7e9a65c870355770751ece07923bf2f7254', 0, 0, 1, '2024-04-16', 1, 2, '482202', false), - (78984, '2024-05-10 23:11:58.485344+00', '0x3d95d4a6dbae0cd0643a82b13a13b08921d6adf7', 0, 0, 1, '2024-02-25', 1, 1, '16715', false), - (75846, '2024-05-10 23:11:49.490936+00', '0x557c60995797fa7b47be105227a2e46148d85750', 0, 0, 1, '2024-04-26', 1, 0, '259276', false), - (76750, '2024-05-10 23:11:52.034339+00', '0x6654810e60e9182feb1ca4fdd9b68f38a7d132fd', 0, 0, 1, '2024-04-17', 1, 3, '413365', false), - (77225, '2024-05-10 23:11:53.424878+00', '0x1ada9ca30a31d5dd3e14c7f0974a77b92c953f41', 0, 0, 1, '2024-04-07', 3, 1, '439657', false), - (88936, '2024-05-10 23:12:28.095893+00', '0x3dbe365ad85a82bbc27570799fe1612e6a55de1f', 0, 0, 1, '2024-04-04', 2, 0, '421962', false), - (88997, '2024-05-10 23:12:28.344274+00', '0x0fe680c0d6dc5aa483771763cdfb6d1b69f175a8', 0, 0, 1, '2024-04-02', 2, 0, '410432', false), - (92966, '2024-05-10 23:12:39.877455+00', '0xecfbaf3893ca954b15b5d8eb22e4217fe7b2dddf', 0, 0, 1, '2024-02-06', 3, 0, '253361', false), - (92059, '2024-05-10 23:12:37.387434+00', '0x512729eb12dfebbfa67b6d23dc44605bb1dfd5a7', 0, 0, 1, '2024-03-08', 1, 0, '259349', false), - (93019, '2024-05-10 23:12:40.014351+00', '0x8527481777656f9faec9ca0087dc8ac25d33e308', 0, 0, 1, '2024-02-06', 1, 0, '299469', false), - (89916, '2024-05-10 23:12:31.158456+00', '0x2c67cf7474e968952becc0833b46983ac392dd97', 0, 0, 1, '2024-05-10', 1, 5, '361731', false), - (89986, '2024-05-10 23:12:31.558686+00', '0x2215c7737c7d4222d8859fd2fca6db45487d45f9', 0, 0, 1, '2024-05-09', 1, 5, '343010', false), - (82724, '2024-05-10 23:12:09.77856+00', '0xf6f628ac3dc2ee47fadd791b72f805ff81afb8de', 0, 0, 1, '2024-05-07', 9, 40, '501722', false), - (82101, '2024-05-10 23:12:08.033018+00', '0xa00cbc3f7f054103531e7d6d703990c78fba2149', 0, 0, 1, '2024-05-05', 7, 27, '436819', false), - (91548, '2024-05-10 23:12:35.931225+00', '0x9f4e281202d019a8ab8a444713c9571a62474da4', 0, 0, 1, '2024-03-04', 20, 63, '10981', false), - (91715, '2024-05-10 23:12:36.486845+00', '0xa51fab99348b58082154a96fd2a7d92600a0e930', 0, 0, 1, '2024-02-28', 3, 2, '336765', false), - (90243, '2024-05-10 23:12:32.29732+00', '0xa31110b7ade3c61f067f2614f7da6d65a58ae744', 0, 0, 1, '2024-05-04', 2, 10, '260903', false), - (90459, '2024-05-10 23:12:32.848441+00', '0xca4768de9504cf8a0efa103122a8b26e921e91d6', 0, 0, 1, '2024-05-03', 1, 0, '374800', false), - (90524, '2024-05-10 23:12:33.079743+00', '0x0cba4451837a60dddde3823b46be746fb9842d64', 0, 0, 1, '2024-05-01', 2, 6, '437870', false), - (93184, '2024-05-10 23:12:40.444876+00', '0xc4e1c6f8065ac9f387fe31b945e842b4c1c41135', 0, 0, 1, '2024-02-06', 2, 1, '272490', false), - (74347, '2024-05-10 23:11:45.371157+00', '0xf80743045934d7d12cfe6b1275c20aeaca8b17cc', 0, 0, 1, '2024-05-08', 1, 5, '415817', false), - (93203, '2024-05-10 23:12:40.527355+00', '0x1f070514de1ff807223e8f21255da9f5ed7c0ecf', 0, 0, 1, '2024-02-06', 1, 5, '251597', false), - (90836, '2024-05-10 23:12:33.92267+00', '0x2405404d434c42056802ebcabdfa1d6991c7d17f', 0, 0, 1, '2024-04-20', 1, 1, '410577', false), - (90878, '2024-05-10 23:12:34.027517+00', '0xfb074aba249f6a75eda10996c3efa6d66465b8b3', 0, 0, 1, '2024-04-18', 1, 1, '381048', false), - (76119, '2024-05-10 23:11:50.333618+00', '0xee70df3fe3877bcbc7de592a5557b89ce46d7be9', 0, 0, 1, '2024-04-10', 18, 25, '464849', false), - (91151, '2024-05-10 23:12:34.798645+00', '0xa68f7f5c135c1aec5da50e1dd1d7213a7dbcddf4', 0, 0, 1, '2024-04-09', 1, 1, '464865', false), - (91528, '2024-05-10 23:12:35.912827+00', '0x3f134398b2758777694bb13ceb24b28f1700a9e3', 0, 0, 1, '2024-03-31', 1, 0, '376874', false), - (92726, '2024-05-10 23:12:39.227454+00', '0xe598632f5cf61cf530079fec4939622ec8595842', 0, 0, 1, '2024-02-06', 4, 7, '294615', false), - (91579, '2024-05-10 23:12:36.037907+00', '0x8d106c747cd21272d4c9ff0af8d53a9c9aca25d2', 0, 0, 1, '2024-03-30', 1, 2, '329016', false), - (91631, '2024-05-10 23:12:36.175385+00', '0xbb65c84f03c80dbcc3e98f91fd12a4b743d90d14', 0, 0, 1, '2024-03-27', 1, 0, '19369', false), - (79844, '2024-05-10 23:12:01.061457+00', '0xcb0ec9837e7b0121ecd3b0704397e1d31dba4f0c', 0, 0, 1, '2024-02-06', 1, 1, '235691', false), - (93265, '2024-05-10 23:12:40.677707+00', '0xebd1b80a73a4d748d467de2ab4a17ba460a810d1', 0, 0, 1, '2024-02-06', 1, 5, '241019', false), - (74728, '2024-05-10 23:11:46.580759+00', '0xa84ca2f5f7786d97c36d83e4ca2d119da7b3180b', 0, 0, 1, '2024-02-25', 2, 2, '13009', false), - (83099, '2024-05-10 23:12:10.942249+00', '0xee6e7a53209400c6c0046c000f36640fb1cfc99a', 0, 0, 1, '2024-05-06', 7, 35, '473996', false), - (73814, '2024-05-10 23:11:42.957592+00', '0x92b964b8b4b640e7fd3b51f5fb300aa036acf047', 0, 0, 1, '2024-04-18', 2, 1, '210045', false), - (74373, '2024-05-10 23:11:45.463414+00', '0x70f0f0e6d7c656bfc0bb3cbfe3c82f123c9b7512', 0, 0, 1, '2024-04-03', 10, 17, '281068', false), - (76276, '2024-05-10 23:11:50.837482+00', '0x098c02d4323d10592693f073897c7a782d97ab56', 0, 0, 1, '2024-04-21', 1, 1, '307672', false), - (76311, '2024-05-10 23:11:50.959571+00', '0xa2afadbe1126f01cf2c6479eec3a0610607f1ba2', 0, 0, 1, '2024-04-20', 2, 5, '494705', false), - (74223, '2024-05-10 23:11:45.055083+00', '0x50fcb3a0a338b9347e7464c5b58215a52912868e', 0, 0, 1, '2024-05-08', 3, 10, '344062', false), - (73966, '2024-05-10 23:11:44.172046+00', '0x7d31a2549142897873ded712ceae466278bdb732', 0, 0, 1, '2024-05-06', 2, 10, '500783', false), - (74557, '2024-05-10 23:11:45.900981+00', '0x2d58788dbc9518c5926e9854e0f02cb433aecd00', 0, 0, 1, '2024-05-07', 5, 19, '419947', false), - (75162, '2024-05-10 23:11:47.790076+00', '0xe34541eb9447f0655a7e55b66493434b94fe3ba9', 0, 0, 1, '2024-05-05', 3, 12, '458718', false), - (73895, '2024-05-10 23:11:43.366727+00', '0xd37da56aa876c9e54895cf12db990cec3efae525', 0, 0, 1, '2024-05-08', 6, 21, '387707', false), - (76545, '2024-05-10 23:11:51.548761+00', '0x5bbddf0b6bc7ec065a55d8fa0fcdf9582dc10835', 0, 0, 1, '2024-04-18', 1, 5, '280263', false), - (73988, '2024-05-10 23:11:44.252107+00', '0x9788f40684f65bdeb78a96e4ead9e8fa8e370e67', 0, 0, 1, '2024-05-08', 9, 30, '351708', false), - (74015, '2024-05-10 23:11:44.321641+00', '0xcf3b35077e9e8a64654b2c0b67cdef5ce2ae34f0', 0, 0, 1, '2024-03-21', 29, 81, '334811', false), - (74553, '2024-05-10 23:11:45.90191+00', '0x09562785cc075e98abf723650ed8140bd2ef9bd9', 0, 0, 1, '2024-05-05', 12, 54, '291829', false), - (90206, '2024-05-10 23:12:32.177067+00', '0xbf88e9e0f0bd3e0f1a76d02a573512e63b26299c', 0, 0, 1, '2024-02-03', 16, 6, '216939', false), - (73786, '2024-05-10 23:11:42.848113+00', '0x4c6bbe1710314bcddf019cdd713d7b126264ec03', 0, 0, 1, '2024-05-06', 4, 7, '380703', false), - (73937, '2024-05-10 23:11:43.555564+00', '0x5baf07c13df692185c02ea08e19a82fa066b75d9', 0, 0, 1, '2024-04-27', 13, 61, '396686', false), - (82563, '2024-05-10 23:12:09.314909+00', '0x295b0e2e9f44fd1667e30aa8e39f8505438b5b32', 0, 0, 1, '2024-05-07', 13, 65, '486193', false), - (78849, '2024-05-10 23:11:58.083622+00', '0x2612b77e5ee1b5feeddd5ec08731749bc2217f54', 0, 0, 1, '2024-03-01', 1, 0, '245862', false), - (78459, '2024-05-10 23:11:57.027535+00', '0x72d710abfa9ee10d53d9fad5c6e9eac35d3c09c7', 0, 0, 1, '2024-02-08', 2, 1, '18356', false), - (77525, '2024-05-10 23:11:54.310785+00', '0xe86174ea7e5f8065708e8b50c62780a938011389', 0, 0, 1, '2024-02-07', 14, 32, '241076', false), - (77646, '2024-05-10 23:11:54.587052+00', '0x00387e098254cd3673faaa82a5c2de297112529e', 0, 0, 1, '2024-04-06', 4, 15, '414095', false), - (77942, '2024-05-10 23:11:55.653786+00', '0x196ab3e637219ea9d2efdec0523006af0c1fc8f1', 0, 0, 1, '2024-04-01', 1, 0, '306971', false), - (81758, '2024-05-10 23:12:06.875399+00', '0x5a28111bc23fe740590e456f1103b7a34aaa414c', 0, 0, 1, '2024-05-10', 1, 2, '432868', false), - (81622, '2024-05-10 23:12:06.521902+00', '0x7210de104487649c5c3b3e1b873355a0bfe69fb7', 0, 0, 1, '2024-05-06', 5, 25, '247653', false), - (78772, '2024-05-10 23:11:57.912744+00', '0xe2030a7528f06f3f8d5b82f9852ff4f74455c01e', 0, 0, 1, '2024-03-05', 1, 0, '236042', false), - (76171, '2024-05-10 23:11:50.515915+00', '0xe6918d49a7f215a437bad94ec29043e339bf574c', 0, 0, 1, '2024-02-19', 7, 3, '359360', false), - (83339, '2024-05-10 23:12:11.68575+00', '0xea1fff8d0c99a2b9405196c9a8edc56417072f4c', 0, 0, 1, '2024-05-05', 6, 30, '305150', false), - (81477, '2024-05-10 23:12:06.078877+00', '0xdf1fb42a6e6f6c69ccac180704046f42dd8fdd19', 0, 0, 1, '2024-05-05', 11, 53, '469305', false), - (81990, '2024-05-10 23:12:07.632565+00', '0x950b5bc192e2ae4626ee4f8b048e602a6617d8ba', 0, 0, 1, '2024-05-05', 14, 48, '479163', false), - (82108, '2024-05-10 23:12:08.045833+00', '0x2ced66da942577e4557ca831da25bb4b7781d736', 0, 0, 1, '2024-04-20', 5, 25, '410702', false), - (81952, '2024-05-10 23:12:07.592775+00', '0x47a7f4a461ef9b6b1646343afaa1ccbf646d4c45', 0, 0, 1, '2024-05-06', 12, 56, '503239', false), - (83744, '2024-05-10 23:12:13.124523+00', '0xa72b08366c9f06787a3293bf292a2322314d04e2', 0, 0, 1, '2024-05-06', 2, 10, '379695', false), - (88505, '2024-05-10 23:12:26.966038+00', '0x328af60b92610ab3089a5a30a547a06b77ebcb51', 0, 0, 1, '2024-05-04', 1, 4, '238562', false), - (77726, '2024-05-10 23:11:54.804478+00', '0x008ed56e56944280c9abaa90ccf9217f37117819', 0, 0, 1, '2024-04-05', 1, 2, '439303', false), - (85109, '2024-05-10 23:12:17.296628+00', '0x24b725082d34e45c9c5affa42d2cbd8a2f9209c4', 0, 0, 1, '2024-05-07', 3, 6, '411315', false), - (73781, '2024-05-10 23:11:42.812887+00', '0x81ddca7cd2f7d924dd095d6ae3b1d814d1059164', 0, 0, 1, '2024-04-03', 8, 21, '383485', false), - (86717, '2024-05-10 23:12:22.210506+00', '0xe41f0007266d29051ae8049b15441e35784bda9c', 0, 0, 1, '2024-05-06', 1, 3, '515780', false), - (82193, '2024-05-10 23:12:08.192785+00', '0x8a09b32439ee7debc7cd5003f81f9228a2b0e95c', 0, 0, 1, '2024-05-07', 6, 30, '433444', false), - (95662, '2024-05-13 06:00:37.011247+00', '0x5c0a2caf54e529a3ab9df5918f17350c5bdc706a', 0, 0, 1, '2024-05-13', 1, 0, '450842', false), - (86567, '2024-05-10 23:12:21.823897+00', '0x7f605b3ee0b27c93b477edfc103de66a881187f8', 0, 0, 1, '2024-05-06', 1, 5, '378821', false), - (84282, '2024-05-10 23:12:14.506593+00', '0x35db06ebd58baedb1d50e80b916935c5eb9ebc3c', 0, 0, 1, '2024-05-07', 2, 0, '389428', false), - (74610, '2024-05-10 23:11:46.24554+00', '0x082b60b981a64619f5576992d1e087be2eaa0897', 0, 0, 1, '2024-05-06', 26, 94, '435108', false), - (82717, '2024-05-10 23:12:09.767351+00', '0x08dcb9bc0cc5bda35b1810ba5d3e51333e3fa6ef', 0, 0, 1, '2024-05-09', 1, 5, '445740', false), - (86175, '2024-05-10 23:12:20.548492+00', '0xffe6a480cd7093194cddaad3860c9f93a6127bdf', 0, 0, 1, '2024-05-05', 5, 25, '453989', false), - (87159, '2024-05-10 23:12:23.419059+00', '0xed7ff12a6e100f3eab8fa91c13013b70376c3812', 0, 0, 1, '2024-05-04', 2, 10, '502810', false), - (89259, '2024-05-10 23:12:29.199406+00', '0x8b6512b87644cb68a94c7bcaaf4d62331be6cc47', 0, 0, 1, '2024-02-08', 4, 2, '320453', false), - (83506, '2024-05-10 23:12:12.293713+00', '0xab2787ce8b79cb8a94fbbf712e03cc5a5078bc41', 0, 0, 1, '2024-05-05', 5, 19, '428666', false), - (90014, '2024-05-10 23:12:31.570966+00', '0xb9f4e40d7d6816a02a4499cfd0c9456221674169', 0, 0, 1, '2024-05-09', 2, 5, '514702', false), - (84914, '2024-05-10 23:12:16.691527+00', '0x1f7316bc6788a8c095100a70111f6b20a58be3fa', 0, 0, 1, '2024-05-04', 9, 45, '500170', false), - (92858, '2024-05-10 23:12:39.515331+00', '0x618cf7d23fc0eb858815cb7c90f4370f1acf8650', 0, 0, 1, '2024-02-06', 1, 2, '260187', false), - (92877, '2024-05-10 23:12:39.615786+00', '0x4944ba6d3ff9e7e20c9615efe23a71a1e3bd0a21', 0, 0, 1, '2024-02-06', 1, 1, '254646', false), - (93068, '2024-05-10 23:12:40.150493+00', '0xad21b59f622751c03b3a7490b0ceada3b9e199a5', 0, 0, 1, '2024-02-06', 1, 1, '251452', false), - (93328, '2024-05-10 23:12:40.839656+00', '0x1b77c678da81527cff8af74657c75140244202dd', 0, 0, 1, '2024-02-04', 1, 1, '198397', false), - (92637, '2024-05-10 23:12:38.959649+00', '0xfc4f3809e02b02b204f859d38d7acab737169eb4', 0, 0, 1, '2024-02-07', 1, 0, '247689', false), - (84776, '2024-05-10 23:12:16.180013+00', '0x9cc25d9a0b430883794af454f027beaf8c366de6', 0, 0, 1, '2024-05-07', 1, 5, '496895', false), - (74161, '2024-05-10 23:11:44.808007+00', '0x004fe340d0d71c244b629cc4a5399d915f4f7fef', 0, 0, 1, '2024-05-03', 9, 27, '323599', false), - (92594, '2024-05-10 23:12:38.789201+00', '0xefaf9e493ae648045b8b0205230b307a9a5b42bd', 0, 0, 1, '2024-02-07', 1, 2, '277143', false), - (92874, '2024-05-10 23:12:39.616096+00', '0x74d10bfc2a3dbd5803bcce047f3f9aa3070ad557', 0, 0, 1, '2024-02-06', 1, 0, '277477', false), - (88842, '2024-05-10 23:12:27.808933+00', '0xffe5722ece6404d5811061bb6643c8e659df0416', 0, 0, 1, '2024-04-12', 1, 1, '435000', false), - (92020, '2024-05-10 23:12:37.257269+00', '0xaa2bde330a0ba6e1a7d5f954b6bedae64ce5f7f4', 0, 0, 1, '2024-03-09', 1, 4, '269476', false), - (92524, '2024-05-10 23:12:38.638222+00', '0x66dc472b5befadc076688618fc22159be31fc946', 0, 0, 1, '2024-02-09', 1, 1, '276036', false), - (81728, '2024-05-10 23:12:06.766293+00', '0x9e3b73ce4b8d51364233906b8e78f92eabcc8a8d', 0, 0, 1, '2024-05-09', 2, 10, '425100', false), - (91821, '2024-05-10 23:12:36.755548+00', '0xe265575036df0ea693b68ce6eafec2e0cd22907a', 0, 0, 1, '2024-03-17', 1, 1, '23459', false), - (91838, '2024-05-10 23:12:36.772081+00', '0xd4ef5f0c4ab9e703f83e5e123c77b4f6ce649ce4', 0, 0, 1, '2024-03-17', 1, 5, '313584', false), - (91878, '2024-05-10 23:12:36.888522+00', '0x82a37593514485dc2a0add90b858db01902849a8', 0, 0, 1, '2024-03-17', 1, 4, '13696', false), - (85233, '2024-05-10 23:12:17.62995+00', '0x28b8fbcebdc3114dd7ce20eb0642015ea3a21718', 0, 0, 1, '2024-05-07', 1, 5, '15485', false), - (90651, '2024-05-10 23:12:33.373448+00', '0xc1e5e3c0f3d6cb3aafd5b34c4ba93d235bbd5fd6', 0, 0, 1, '2024-04-27', 1, 0, '458442', false), - (73848, '2024-05-10 23:11:43.115912+00', '0x97f1290f14cf27bc53fd9905a389a14ac0993b84', 0, 0, 1, '2024-04-06', 9, 27, '374151', false), - (73875, '2024-05-10 23:11:43.329747+00', '0x399d98b1a8609a8c2fc617a5ff2594652addf749', 0, 0, 1, '2024-05-08', 2, 7, '211568', false), - (84688, '2024-05-10 23:12:15.893218+00', '0x9282ec150adbc39d555699052916bd29ac8f2f09', 0, 0, 1, '2024-05-05', 11, 19, '316060', false), - (76903, '2024-05-10 23:11:52.431454+00', '0x4e5225095100032a3217f403b1fc7fadf9185112', 0, 0, 1, '2024-04-12', 2, 10, '381740', false), - (79075, '2024-05-10 23:11:58.721581+00', '0xe61955fc5533c71fcee52de61bd60af21d60e7c7', 0, 0, 1, '2024-02-07', 2, 0, '239298', false), - (77501, '2024-05-10 23:11:54.125169+00', '0xe7879a2d05dba966fcca34ee9c3f99eee7edefd1', 0, 0, 1, '2024-04-08', 1, 1, '10712', false), - (74542, '2024-05-10 23:11:45.864335+00', '0xc8a8e770e766a61e6e027695421e1db191b9df18', 0, 0, 1, '2024-05-05', 2, 10, '417274', false), - (75858, '2024-05-10 23:11:49.506543+00', '0xfaa806320ca25e7621690152fc83b4257aa197ff', 0, 0, 1, '2024-04-26', 1, 0, '382051', false), - (75357, '2024-05-10 23:11:48.251034+00', '0xa7625e30eb5356a0b777e9617b55a92dddff2975', 0, 0, 1, '2024-04-20', 2, 3, '322356', false), - (75393, '2024-05-10 23:11:48.290479+00', '0xaae9fd3fe55f77aebf0a94acde40c2a388e400b8', 0, 0, 1, '2024-04-07', 6, 7, '278549', false), - (95513, '2024-05-13 06:00:35.952904+00', '0x607e26467533ae3ed1065f1f3a58ff647fdb43be', 0, 0, 1, '2024-05-12', 1, 5, '352904', false), - (81961, '2024-05-10 23:12:07.602274+00', '0x37aaf0f9c648f93e6f584cc87cb1788a0bf3f33e', 0, 0, 1, '2024-05-06', 21, 67, '505603', false), - (93672, '2024-05-10 23:12:41.849295+00', '0x45475d7f1d18938ca5ff232216e9179d7826aadb', 0, 0, 1, '2023-12-02', 1, 5, '195406', false), - (75779, '2024-05-10 23:11:49.274393+00', '0x711ac685d32ef2c694298e453e9595389eb4b567', 0, 0, 1, '2024-04-27', 1, 5, '385627', false), - (75824, '2024-05-10 23:11:49.39007+00', '0x1b1f6a57e04d3c19ed15f77ed8217199f4e5cc9a', 0, 0, 1, '2024-04-27', 1, 5, '445334', false), - (73987, '2024-05-10 23:11:44.263918+00', '0x2c602f1f156982f996645fa257fe019d45397c83', 0, 0, 1, '2024-05-04', 17, 82, '500205', false), - (76797, '2024-05-10 23:11:52.172714+00', '0x43fc0e5a3ed641c96740402abb119f35490c2a92', 0, 0, 1, '2024-04-16', 1, 1, '423249', false), - (77564, '2024-05-10 23:11:54.417894+00', '0x6074291de36a037e452aff5d0ef334648a3fd7a2', 0, 0, 1, '2024-04-07', 1, 1, '435505', false), - (77164, '2024-05-10 23:11:53.288028+00', '0x08a6c5774ee60fc737b91f9de1274acdb638b337', 0, 0, 1, '2024-04-12', 1, 5, '244745', false), - (78004, '2024-05-10 23:11:55.786808+00', '0x5f99cf9e3e4ed9014b4319bdf3182073d59c2ab3', 0, 0, 1, '2024-04-01', 1, 1, '420446', false), - (77813, '2024-05-10 23:11:55.186078+00', '0x85dc60ff628fc7df75403d32aebaa560d5c65b1e', 0, 0, 1, '2024-04-04', 1, 2, '438260', false), - (78154, '2024-05-10 23:11:56.168942+00', '0xf1a06ebabb728773f48ee48be7049bb441faef84', 0, 0, 1, '2024-03-28', 1, 0, '358745', false), - (79032, '2024-05-10 23:11:58.613304+00', '0x70694fc9f8fa162a5c44da98a9b6f729d4c72c6b', 0, 0, 1, '2024-02-22', 1, 0, '348321', false), - (79071, '2024-05-10 23:11:58.725402+00', '0x8d3ff4cf6ac8053b99bc90bb03023732b65740c5', 0, 0, 1, '2024-02-11', 9, 4, '335704', false), - (75125, '2024-05-10 23:11:47.675621+00', '0x88eb76fe6a0c439394cab8956cdfc7f84922f73b', 0, 0, 1, '2024-04-19', 7, 15, '432080', false), - (74960, '2024-05-10 23:11:47.286188+00', '0xf3ba5b880f3c4bc5c55cf069cc2ecd7c81e94a05', 0, 0, 1, '2024-05-06', 1, 5, '441890', false), - (74857, '2024-05-10 23:11:47.041597+00', '0xec34695380092aea268d2765c16053cb5a1e2652', 0, 0, 1, '2024-05-07', 6, 30, '290288', false), - (78034, '2024-05-10 23:11:55.883133+00', '0xde89bac8b4d9ce31d678303bc0fcd14f09b1f5ee', 0, 0, 1, '2024-03-30', 1, 0, '312074', false), - (86505, '2024-05-10 23:12:21.68889+00', '0xab8e844225038a1e5a195e3926b1b6d8b881ac83', 0, 0, 1, '2024-05-06', 2, 10, '506034', false), - (93050, '2024-05-10 23:12:40.05592+00', '0x81e0c8f299a1a8bb076501f581d76fb715235546', 0, 0, 1, '2024-02-06', 2, 1, '288119', false), - (77696, '2024-05-10 23:11:54.701583+00', '0xeb1ef6c1103494a39b6df52738ddc93fcb10740c', 0, 0, 1, '2024-03-15', 4, 0, '364377', false), - (74289, '2024-05-10 23:11:45.229801+00', '0x7d2e4d645c0acc5a6bf596b612cab351864f4090', 0, 0, 1, '2024-05-08', 1, 2, '477861', false), - (77161, '2024-05-10 23:11:53.186011+00', '0xaa06f32f1a934b2a843922443c12bce904ce39cd', 0, 0, 1, '2024-04-06', 2, 2, '346800', false), - (77648, '2024-05-10 23:11:54.593153+00', '0x2f3a259799f32ded9a06f58f11def8f960478c72', 0, 0, 1, '2024-04-06', 1, 0, '445189', false), - (78021, '2024-05-10 23:11:55.798437+00', '0x0351daf1c529980895d57be8b2c641be979b468b', 0, 0, 1, '2024-03-31', 1, 2, '14410', false), - (76385, '2024-05-10 23:11:51.16304+00', '0xb334e7197cf33cf2bdbb5555ae10188072bec620', 0, 0, 1, '2024-04-19', 2, 0, '433651', false), - (78881, '2024-05-10 23:11:58.203382+00', '0x8bf824d7e8a2dbbe6f47bd09721a8a3fdce09d63', 0, 0, 1, '2024-02-29', 1, 2, '319441', false), - (78612, '2024-05-10 23:11:57.453981+00', '0xf343c1cd170ede73ae86e04db24d37043969e218', 0, 0, 1, '2024-03-11', 1, 0, '310782', false), - (79936, '2024-05-10 23:12:01.66793+00', '0xf451a2e70421283838f253da1784ba9f3c51aa90', 0, 0, 1, '2024-02-03', 1, 1, '244500', false), - (76897, '2024-05-10 23:11:52.425285+00', '0xf7746948e695a4a53cd2e53d278e81e6108554d6', 0, 0, 1, '2024-02-19', 6, 20, '226762', false), - (76414, '2024-05-10 23:11:51.195423+00', '0x90fd357446ee067b7a69a8c042e5648554d5d063', 0, 0, 1, '2024-03-28', 12, 40, '386134', false), - (78123, '2024-05-10 23:11:56.056437+00', '0x2a0609a88b2e2a4b4bec22a67e816814722a1a84', 0, 0, 1, '2024-02-24', 6, 6, '336902', false), - (79096, '2024-05-10 23:11:58.750787+00', '0x35f33c28a8cfab51c23e2147f8cd4bce065f7f70', 0, 0, 1, '2024-02-21', 1, 1, '210675', false), - (79477, '2024-05-10 23:11:59.976565+00', '0x48c290b4e0273c57a30d9ce41cf4ff27fcf79317', 0, 0, 1, '2024-02-12', 1, 1, '232819', false), - (78225, '2024-05-10 23:11:56.332094+00', '0x0f57dd84c5b55f29f012c7c6c34c444e78806ed9', 0, 0, 1, '2024-02-07', 8, 16, '7193', false), - (76924, '2024-05-10 23:11:52.510733+00', '0xd0f0c47cb07bed3f5a7f7f28b0b63e1a814874c1', 0, 0, 1, '2024-04-05', 9, 1, '424796', false), - (75459, '2024-05-10 23:11:48.506497+00', '0xf7533ea276a478b7c90441da06ccf8706f52923d', 0, 0, 1, '2024-05-01', 1, 3, '509198', false), - (76607, '2024-05-10 23:11:51.698098+00', '0x03356d3c695162ba452951074089dcf14d6ec0af', 0, 0, 1, '2024-04-08', 2, 2, '274908', false), - (76680, '2024-05-10 23:11:51.896994+00', '0xfbdff2a13930b6035dcb4541bce99f857f64ff76', 0, 0, 1, '2024-04-17', 1, 0, '358519', false), - (77115, '2024-05-10 23:11:53.064511+00', '0xfd3ce021cad80cac4a8c1aab9d8095863d63ba96', 0, 0, 1, '2024-04-13', 1, 1, '475010', false), - (75699, '2024-05-10 23:11:49.108187+00', '0xfb0b1d35f0aad12d4462b9e62a1aeed8856aab6a', 0, 0, 1, '2024-03-31', 17, 10, '403990', false), - (85322, '2024-05-10 23:12:17.897885+00', '0x556de82288d24298a8baff2c3a98270653691b3e', 0, 0, 1, '2024-05-07', 1, 3, '408885', false), - (83895, '2024-05-10 23:12:13.538713+00', '0x5e4e74d10a79f3f2519d71bb1ffb276443df27c1', 0, 0, 1, '2024-05-06', 2, 7, '504836', false), - (85905, '2024-05-10 23:12:19.708841+00', '0x085b88ef607cc3978b91f9317591f9f2aef5992e', 0, 0, 1, '2024-05-05', 2, 10, '407281', false), - (82874, '2024-05-10 23:12:10.18768+00', '0x05d5fcd106e8503b48b7a414d686a031c8a0be01', 0, 0, 1, '2024-05-05', 24, 66, '507969', false), - (85889, '2024-05-10 23:12:19.685995+00', '0x39c02d9498f43d089338e104ae031de0becc5955', 0, 0, 1, '2024-05-06', 1, 2, '245532', false), - (83751, '2024-05-10 23:12:13.124127+00', '0x04dce21801cd4c4e02ce0a75af80cd7e5b783df4', 0, 0, 1, '2024-05-06', 11, 41, '505951', false), - (84790, '2024-05-10 23:12:16.278747+00', '0xe0ab69f7fa64e9cf526872963d7f2bd6f91268d4', 0, 0, 1, '2024-05-05', 3, 14, '408178', false), - (92880, '2024-05-10 23:12:39.619485+00', '0xcb7b3e6998ee23f038836d846350e26e7b82c4e0', 0, 0, 1, '2024-02-06', 2, 2, '262007', false), - (75329, '2024-05-10 23:11:48.161483+00', '0xc863dfee737c803c93af4b6b27029294f6a56eb5', 0, 0, 1, '2024-03-21', 2, 3, '13801', false), - (75249, '2024-05-10 23:11:47.942774+00', '0x4719ab31d9506b71e79cc9ea3441fc4ba20615d7', 0, 0, 1, '2024-05-04', 1, 1, '364854', false), - (86585, '2024-05-10 23:12:21.919096+00', '0x658f32c5387be127e4281590f49c2a924176fb87', 0, 0, 1, '2024-05-06', 4, 6, '385239', false); - - --- --- Data for Name: tips_activity_log; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO "public"."tips_activity_log" ("id", "created_at", "sender", "receiver", "amount", "post_hash") VALUES - (1, '2024-05-16 21:57:14.352148+00', '5197', '403020', 1, NULL), - (2, '2024-05-16 21:59:36.74001+00', '5197', '403020', 1, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d'), - (3, '2024-05-16 22:11:41.070442+00', '5197', '403020', 1, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d'), - (4, '2024-05-16 22:11:48.473867+00', '5197', '403020', 10000, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d'), - (5, '2024-05-16 22:56:12.156325+00', '403020', '453989', 1000, '0x7ab9eca1fa4c44f4b600d1cb5b7afd8ce1ce00ee'), - (6, '2024-05-16 22:56:16.032177+00', '403020', '453989', 1000, '0x7ab9eca1fa4c44f4b600d1cb5b7afd8ce1ce00ee'), - (7, '2024-05-16 22:57:12.674222+00', '403020', '453989', 1000, '0x195d990f36eaf371f7b4a37accc90186e949c921'), - (8, '2024-05-16 22:58:24.820974+00', '403020', '288204', 1000, '0xe022e20175f029311e288a6cf7bb3fa27d4fea0e'), - (9, '2024-05-16 22:58:26.154439+00', '403020', '288204', 1000, '0xe022e20175f029311e288a6cf7bb3fa27d4fea0e'), - (10, '2024-05-16 22:58:27.533753+00', '403020', '288204', 1000, '0xe022e20175f029311e288a6cf7bb3fa27d4fea0e'), - (11, '2024-05-16 22:58:38.389155+00', '403020', '387246', 1000, '0xbedd3559287ff761cbb9791ddb9ce0dd7e168297'), - (12, '2024-05-16 22:58:39.540192+00', '403020', '387246', 1000, '0xbedd3559287ff761cbb9791ddb9ce0dd7e168297'), - (13, '2024-05-16 23:01:44.232237+00', '403020', '368021', 1000, '0x869b7f54e3cc36f6368daaf6f2fbb3fcceb391db'), - (14, '2024-05-16 23:02:08.199683+00', '403020', '368021', 1000, '0x869b7f54e3cc36f6368daaf6f2fbb3fcceb391db'), - (15, '2024-05-16 23:03:01.49602+00', '403020', '398824', 1000, '0x9a4027822904472f43a9ef82fbba993072377fdd'), - (16, '2024-05-16 23:03:02.476005+00', '403020', '398824', 1000, '0x9a4027822904472f43a9ef82fbba993072377fdd'), - (17, '2024-05-16 23:03:14.56974+00', '403020', '288204', 1000, '0xf802044d44c7d19d81b088257eda9a482e45f6ea'), - (18, '2024-05-16 23:07:13.141943+00', '403020', '398824', 1000, '0x071d058e51c9eb68cdbb942140349116eb9342bb'), - (19, '2024-05-16 23:07:19.785012+00', '403020', '387246', 1000, '0xc0ea45409ed9ae362623340abbdb7d8d0c31a387'), - (20, '2024-05-16 23:07:40.505006+00', '403020', '288204', 1000, '0x284b1124ec8ae050bb879c9b59ab416e6cea51ca'), - (21, '2024-05-16 23:07:59.848383+00', '403020', '394930', 1000, '0xedcf3445d179c7b7e573ba177f6ffd3c5140a0a3'), - (22, '2024-05-16 23:08:01.685008+00', '403020', '394930', 100, '0xedcf3445d179c7b7e573ba177f6ffd3c5140a0a3'), - (23, '2024-05-16 23:08:03.092194+00', '403020', '394930', 100, '0xedcf3445d179c7b7e573ba177f6ffd3c5140a0a3'), - (24, '2024-05-16 23:52:33.352945+00', '206', '375536', 1000, '0x1cc2c4769aabc8e03d5e985454865c57a6fae3ae'), - (25, '2024-05-16 23:54:10.149585+00', '415037', '0xffe6a480cd7093194cddaad3860c9f93a6127bdf', 0, '0x7ab9eca1fa4c44f4b600d1cb5b7afd8ce1ce00ee'), - (26, '2024-05-16 23:54:11.562595+00', '415037', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 0, '0x56be9129952556448c0120ae8a381784669b228a'), - (27, '2024-05-16 23:54:14.326242+00', '415037', '0xc678a7af0e40ba1e99390b31dbdb7099c563c935', 0, '0x79649109f4c9897f305556d68f4d98277e1216c4'), - (28, '2024-05-16 23:54:14.721916+00', '415037', '0xffe6a480cd7093194cddaad3860c9f93a6127bdf', 0, '0x195d990f36eaf371f7b4a37accc90186e949c921'), - (29, '2024-05-16 23:54:31.912313+00', '206', '288204', 1000, '0xe022e20175f029311e288a6cf7bb3fa27d4fea0e'), - (30, '2024-05-16 23:54:36.716832+00', '206', '269636', 100, '0x2105b8ff5bbeb764ebfd17860c1073b9a2b575d1'), - (31, '2024-05-16 23:54:48.933903+00', '415037', '0xffe6a480cd7093194cddaad3860c9f93a6127bdf', 0, '0xc53dd214bb105fb9a2ee0f5f0fe38c6eecfdceba'), - (32, '2024-05-16 23:54:48.957666+00', '415037', '0x921fc6cf9334a6248d6b9f460aa32c5914778f82', 0, '0x2a484919762db901b79a0e7aad10a82ae7113623'), - (33, '2024-05-16 23:54:49.065919+00', '415037', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 0, '0x56be9129952556448c0120ae8a381784669b228a'), - (34, '2024-05-16 23:54:49.067133+00', '415037', '0x921fc6cf9334a6248d6b9f460aa32c5914778f82', 0, '0x2a484919762db901b79a0e7aad10a82ae7113623'), - (35, '2024-05-16 23:54:49.096083+00', '415037', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 0, '0x56be9129952556448c0120ae8a381784669b228a'), - (36, '2024-05-16 23:54:49.225122+00', '415037', '0xffe6a480cd7093194cddaad3860c9f93a6127bdf', 0, '0xc53dd214bb105fb9a2ee0f5f0fe38c6eecfdceba'), - (37, '2024-05-16 23:54:49.263518+00', '415037', '0x921fc6cf9334a6248d6b9f460aa32c5914778f82', 0, '0x2a484919762db901b79a0e7aad10a82ae7113623'), - (38, '2024-05-16 23:54:53.402564+00', '415037', '0x68abc0679a9ddaf7569255ca71993ab759f4e8e1', 0, '0xad5cb0c853274e7894865e01db177cdddceb3541'), - (39, '2024-05-16 23:54:54.314715+00', '415037', '0x68abc0679a9ddaf7569255ca71993ab759f4e8e1', 0, '0xad5cb0c853274e7894865e01db177cdddceb3541'), - (40, '2024-05-16 23:54:55.72226+00', '415037', '0x68375427c29995b277ad343aa89be591926c6088', 0, '0x57f2e94061bcabdce8e99aecb841e80f94719785'), - (41, '2024-05-16 23:54:59.30665+00', '415037', '0x81ddca7cd2f7d924dd095d6ae3b1d814d1059164', 0, '0xca560ec1da612134e7481735626f98f89d8f8d49'), - (42, '2024-05-16 23:55:01.74767+00', '415037', '0xf6f92a1e3eee58e3717cf3c074185c9101e86b47', 0, '0xff7ebb29bcf77aa27f609c6a7ffb0760a08873b3'), - (43, '2024-05-16 23:55:03.273187+00', '415037', '0x68375427c29995b277ad343aa89be591926c6088', 0, '0xe0bfac9871d1f119f387b8e9fadc725ce214249b'), - (44, '2024-05-16 23:55:21.439466+00', '415037', '0x70ece45cdc64a768f936ccb8ac851578251363e3', 0, '0x87006b7b487cf5fb8d4561553ddddede81b8d1c1'), - (45, '2024-05-16 23:55:22.696257+00', '415037', '0x3fe465902811769e3e8738cd162632e85dcbaa86,0xf85e13c32734ea54ec31be5c9b3e6ed0ae40cbad', 0, '0x9b42247742615c1b1aa97826fe4fb790069c8a27'), - (46, '2024-05-16 23:55:51.481335+00', '415037', '0x0b023c4da4065013413220917f651395e1fbf8ef', 0, '0xcd7a735a2554330bea84189e432858e8f8be78eb'), - (47, '2024-05-16 23:55:51.961516+00', '415037', '0x2cf185748541410b336863c960d6024955f384da', 0, '0x38918eef90485834077b168808c359906a32f8a0'), - (48, '2024-05-16 23:55:55.099118+00', '206', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 10, '0x56bf40e18bf35df36aac5176b4d23e885984288b'), - (49, '2024-05-16 23:55:56.315404+00', '206', '253410', 1000, '0x56bf40e18bf35df36aac5176b4d23e885984288b'), - (50, '2024-05-16 23:56:02.085618+00', '206', '0xb642b7b23c84ddc446dc364b1f714cee6bfd0908', 10, '0x3dc9a0d28190442cba4ab7dcf95767e242249663'), - (51, '2024-05-16 23:56:03.427142+00', '206', '375536', 1000, '0x3dc9a0d28190442cba4ab7dcf95767e242249663'), - (52, '2024-05-16 23:56:05.098702+00', '206', '0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa', 10, '0x1512f716680b5f82c7fa0b0fbffb1527405ee010'), - (53, '2024-05-16 23:56:06.389952+00', '206', '403020', 1000, '0x1512f716680b5f82c7fa0b0fbffb1527405ee010'), - (54, '2024-05-16 23:56:09.856933+00', '206', '403020', 1000, '0x1512f716680b5f82c7fa0b0fbffb1527405ee010'), - (55, '2024-05-17 00:06:53.470358+00', '253410', '236302', 1000, '0x979a3e904d5df6e2a5355e41cafc91dfcf75441d'), - (56, '2024-05-17 00:07:08.623965+00', '253410', '355566', 1000, '0x46c7d4e83e22f6da458dcc055e612b66708007e3'), - (57, '2024-05-17 00:07:13.902154+00', '253410', '507381', 1000, '0x2a55a4b1ca680db1a967c825df2bf6e08d71faa8'), - (58, '2024-05-17 00:07:24.451893+00', '253410', '387472', 1000, '0xb06e6ddc17d641aac5c028fe0282dfc19ab45111'), - (59, '2024-05-17 00:10:53.661392+00', '326415', '0xc4f67dea55e19155774dd2c9611738677a687d9a', 0, '0x1fd9652a6b1331a562df38c26b79b60004daffd4'), - (60, '2024-05-17 00:36:16.084354+00', '239823', '0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa', 0, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d'), - (61, '2024-05-17 00:36:17.311631+00', '239823', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 0, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (62, '2024-05-17 00:53:06.292181+00', '439718', '420229', 100, '0xcaa78d9708e2fe54c02c6eb819d907abf3c2debd'), - (63, '2024-05-17 01:40:18.818015+00', '240247', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 10, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (64, '2024-05-17 01:51:34.913749+00', '291942', '17356', 1000, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (65, '2024-05-17 01:52:07.500413+00', '291942', '403020', 1000, '0x1512f716680b5f82c7fa0b0fbffb1527405ee010'), - (66, '2024-05-17 01:52:29.190562+00', '291942', '403020', 1000, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d'), - (67, '2024-05-17 01:52:51.697943+00', '291942', '1606', 1000, '0xe8bb93915b57c52073012aad0829b8fdd6253acd'), - (68, '2024-05-17 01:52:57.503695+00', '291942', '262450', 1000, '0xef6929276536013b8eaf5460b26128de9933bf65'), - (69, '2024-05-17 01:53:02.94314+00', '1436', '318473', 1000, '0x295d1f3ec5b7ee21155304390b19a414377d9da3'), - (70, '2024-05-17 01:53:08.75094+00', '291942', '1436', 1000, '0x9c8f7936ec999d4bad9cd1d43ca5928e0ea4c941'), - (72, '2024-05-17 01:53:40.275237+00', '1436', '5197', 1000, '0x4ab3a26052e1778ffc3f4229ce08396e5ac8a535'), - (74, '2024-05-17 01:53:55.410601+00', '1436', '20300', 1000, '0xb873948db7d4f760aeb286dbb7412a794def78e2'), - (77, '2024-05-17 01:54:13.133195+00', '1436', '387368', 1000, '0x79649109f4c9897f305556d68f4d98277e1216c4'), - (78, '2024-05-17 01:54:14.882878+00', '1436', '387368', 1000, '0x79649109f4c9897f305556d68f4d98277e1216c4'), - (79, '2024-05-17 01:54:23.646488+00', '1436', '20300', 1000, '0x57f2e94061bcabdce8e99aecb841e80f94719785'), - (81, '2024-05-17 01:54:26.18215+00', '1436', '20300', 1000, '0x57f2e94061bcabdce8e99aecb841e80f94719785'), - (82, '2024-05-17 01:54:35.005059+00', '291942', '350625', 1000, '0x2f86914c7d95619ca0257bc29f28e7ed29ba3c9e'), - (84, '2024-05-17 01:54:49.363557+00', '1436', '20300', 8796, '0xe0bfac9871d1f119f387b8e9fadc725ce214249b'), - (85, '2024-05-17 01:55:05.333835+00', '291942', '190045', 1000, '0x01b8cda3f1366a384925703286b5f394185578f5'), - (71, '2024-05-17 01:53:25.067629+00', '291942', '5818', 1000, '0x9a16ef277998944fa372ec42e34dea161a617065'), - (73, '2024-05-17 01:53:48.345517+00', '291942', '243906', 1000, '0x1d831c9e2b34e478a41cf909f23598aebcf9c253'), - (75, '2024-05-17 01:53:55.703114+00', '291942', '405348', 1000, '0xbd96480d26c9a361fd1b87d48a799863f5486ee8'), - (76, '2024-05-17 01:54:06.935644+00', '291942', '269636', 1000, '0x2105b8ff5bbeb764ebfd17860c1073b9a2b575d1'), - (80, '2024-05-17 01:54:23.797906+00', '291942', '350625', 1000, '0xf6109604267563b2cc5659d6db23a3bc653af8e8'), - (83, '2024-05-17 01:54:38.88245+00', '291942', '350625', 1000, '0x0bc1ed7dbd5f52d6c5b5bf15080981d58b4c215b'), - (86, '2024-05-17 01:55:50.771909+00', '291942', '18910', 1000, '0x818c38831cd1d3257d377bcc600a00a36f92bda6'), - (87, '2024-05-17 01:55:58.342433+00', '291942', '12590', 1000, '0xff5493b60ea7baef6ebd68e0fa6480c68921d5f4'), - (88, '2024-05-17 02:03:59.81559+00', '439718', '253410', 100, '0xc36942b746661e5a8727cc72d412f3eb1760458c'), - (89, '2024-05-17 02:21:10.899937+00', '291942', '17507', 1000, '0x7a00c6632b05572389da7ba3ef5c815bc8d08d80'), - (90, '2024-05-17 02:24:05.535215+00', '17507', '291942', 80, '0x98a5948cbc6647ecf32a7e79533ac1320528f137'), - (91, '2024-05-17 02:24:12.90655+00', '10123', '0x688f1d8b0c59e9716d3512a0cbf32cda837544dc,0x0d3c16f2d152373539610da87d231f4d78f73a35', 10, '0xd837ea615dfc4443ebeee9e678202bf035cb1c81'), - (92, '2024-05-17 02:24:25.34393+00', '10123', '355566', 100, '0xd837ea615dfc4443ebeee9e678202bf035cb1c81'), - (93, '2024-05-17 02:24:32.275508+00', '17507', '17356', 100, '0xed3c770655d5066a019c54f89f5c63e921403772'), - (94, '2024-05-17 02:25:49.929934+00', '10123', '384424', 1000, '0x85a96af993457b6e0823dd0aba16b0bd966168c7'), - (95, '2024-05-17 02:30:37.30271+00', '17356', '17507', 1000, '0x7a00c6632b05572389da7ba3ef5c815bc8d08d80'), - (96, '2024-05-17 02:30:40.847195+00', '17356', '291942', 1000, '0x98a5948cbc6647ecf32a7e79533ac1320528f137'), - (97, '2024-05-17 02:33:45.339357+00', '17356', '276695', 1000, '0x36753eb97ac0eed9e9ac317d3348e4a91d03e2bf'), - (98, '2024-05-17 02:38:29.784689+00', '375536', '403020', 2222, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d'), - (99, '2024-05-17 02:40:00.109048+00', '375536', '14537', 2222, '0x23a50a0490d5334b4e521253c532962137820752'), - (100, '2024-05-17 02:40:13.861515+00', '375536', '253410', 2222, '0xc36942b746661e5a8727cc72d412f3eb1760458c'), - (101, '2024-05-17 02:43:23.755298+00', '375536', '403020', 3333, '0xe4c3c70226c657356482325d8eb2dc972ef5a44f'), - (102, '2024-05-17 03:05:26.510089+00', '291942', '17507', 1000, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (103, '2024-05-17 03:06:15.079087+00', '291942', '17507', 10000, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (104, '2024-05-17 03:06:19.304136+00', '291942', '17356', 10000, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (105, '2024-05-17 03:06:42.133982+00', '291942', '378285', 10000, '0x76da0f6dec792164a8f37f031f36f1a424a04697'), - (106, '2024-05-17 03:06:46.999195+00', '291942', '240247', 10000, '0xc007d6ef37880b30d9954b806205c01ff6f97b48'), - (107, '2024-05-17 03:07:14.559991+00', '291942', '301385', 10000, '0x3f78995e9051197b8556ddca4e04ebbbfb4a17e4'), - (108, '2024-05-17 03:15:57.75513+00', '17356', '291942', 1000, '0x9281fca40e2aab7d6ed841632f103ae19715a137'), - (109, '2024-05-17 03:18:18.138882+00', '17356', '378285', 1000, '0x001d75ad8932bd7ce5e5da5e5882ad0281b48f0e'), - (110, '2024-05-17 03:18:47.659887+00', '17356', '301385', 1000, '0x3f78995e9051197b8556ddca4e04ebbbfb4a17e4'), - (111, '2024-05-17 03:19:05.978658+00', '17356', '240247', 66, '0xc007d6ef37880b30d9954b806205c01ff6f97b48'), - (112, '2024-05-17 03:22:45.18869+00', '378285', '423457', 1000, '0x7e973f1112730a5b06d932cce68a7872b8190a88'), - (113, '2024-05-17 03:22:49.37819+00', '378285', '291942', 1000, '0x98a5948cbc6647ecf32a7e79533ac1320528f137'), - (114, '2024-05-17 03:23:04.707797+00', '378285', '301385', 1000, '0x3f78995e9051197b8556ddca4e04ebbbfb4a17e4'), - (115, '2024-05-17 03:23:14.776212+00', '378285', '17356', 1000, '0x6b9d8d18318ad1f171ecbdb9de27102f3e0c8f15'), - (116, '2024-05-17 03:23:26.588948+00', '378285', '17507', 1000, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (117, '2024-05-17 03:24:59.345436+00', '378285', '355566', 1000, '0xb36ae6a499f36a706fa2c357db2ca2d40e9ee8a4'), - (118, '2024-05-17 03:37:32.65164+00', '372581', '291942', 0, '0x9281fca40e2aab7d6ed841632f103ae19715a137'), - (119, '2024-05-17 03:37:39.541413+00', '372581', '291942', 0, '0x9281fca40e2aab7d6ed841632f103ae19715a137'), - (120, '2024-05-17 03:39:08.85793+00', '10123', '423457', 1000, '0x7e973f1112730a5b06d932cce68a7872b8190a88'), - (121, '2024-05-17 03:39:31.923389+00', '10123', '384424', 1000, '0xc965ed92e19ac7e74e196825eace32adcad289bd'), - (122, '2024-05-17 03:39:49.65226+00', '10123', '240247', 1000, '0x10b4b721f62ac3d6b742ef1cef49b2b40c0bc02a'), - (123, '2024-05-17 03:39:55.916327+00', '10123', '384424', 1000, '0x85a96af993457b6e0823dd0aba16b0bd966168c7'), - (124, '2024-05-17 03:49:21.831787+00', '291942', '420229', 1000, '0xcaa78d9708e2fe54c02c6eb819d907abf3c2debd'), - (125, '2024-05-17 03:49:33.09756+00', '291942', '270714', 1000, '0x4ffed5d5bf645da0e3420cc87dae2f5dd5a2c886'), - (126, '2024-05-17 03:49:43.967001+00', '291942', '270714', 1000, '0x4ffed5d5bf645da0e3420cc87dae2f5dd5a2c886'), - (127, '2024-05-17 03:50:02.531089+00', '291942', '2802', 1000, '0x7fa93f1a292de33a33161d14e1f0f3a35167acbc'), - (128, '2024-05-17 03:51:23.233517+00', '291942', '375536', 92, '0xf76f4393d3881a700606f320d984f712a27fa3af'), - (129, '2024-05-17 03:57:47.59446+00', '241141', '0x688f1d8b0c59e9716d3512a0cbf32cda837544dc,0x0d3c16f2d152373539610da87d231f4d78f73a35', 0, '0xd837ea615dfc4443ebeee9e678202bf035cb1c81'), - (130, '2024-05-17 03:58:11.86073+00', '241141', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 0, '0xc36942b746661e5a8727cc72d412f3eb1760458c'), - (131, '2024-05-17 04:20:07.585558+00', '341438', '17507', 1000, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (132, '2024-05-17 04:20:39.522631+00', '341438', '318473', 1000, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (133, '2024-05-17 04:21:21.790025+00', '341438', '291942', 1000, '0x827c801cc449e791228e71ca207796bc75a52f24'), - (134, '2024-05-17 04:21:23.386076+00', '341438', '291942', 1000, '0x827c801cc449e791228e71ca207796bc75a52f24'), - (135, '2024-05-17 04:21:55.714127+00', '341438', '291942', 319, '0x827c801cc449e791228e71ca207796bc75a52f24'), - (136, '2024-05-17 05:00:30.067911+00', '14537', '318473', 100, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (137, '2024-05-17 05:00:32.375814+00', '14537', '318473', 1000, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (138, '2024-05-17 06:05:38.994548+00', '516732', '0x6d15dffbcb274e423c51c197777eb43665018533', 0, '0xa8feb3c93382b33a93e546c4c2bec3c3f40058bc'), - (139, '2024-05-17 06:05:40.75627+00', '516732', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 0, '0x295d1f3ec5b7ee21155304390b19a414377d9da3'), - (140, '2024-05-17 06:05:44.561735+00', '516732', '0xde0cbd5df89bb67ab804db21e9b931bad4200392,0xfed59f5760e4cb16cd37d129c54a0d2557d167d3', 0, '0x9c8f7936ec999d4bad9cd1d43ca5928e0ea4c941'), - (141, '2024-05-17 06:05:48.942832+00', '516732', '0x95d394f35705033008ccdaf0bce3d07e4be090f4,0x3495b719e33e18d2264425380397fa5425c1e975,0x089315793c7f31083a00899d1503b38079dedad3,0x0c135f1aad9137510af0b4e6272c64b062418f7f,0xbbf915e4e11131e82d05ae2ebe4e45aa3d649145', 0, '0x703292ee0725b83fac4171151827d7d6943b9b22'), - (142, '2024-05-17 06:33:47.57884+00', '17507', '17356', 200, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (143, '2024-05-17 06:33:54.48383+00', '17507', '378285', 200, '0x76da0f6dec792164a8f37f031f36f1a424a04697'), - (144, '2024-05-17 06:34:01.25588+00', '17507', '301385', 200, '0x3f78995e9051197b8556ddca4e04ebbbfb4a17e4'), - (145, '2024-05-17 06:34:18.662254+00', '17507', '291942', 200, '0x827c801cc449e791228e71ca207796bc75a52f24'), - (146, '2024-05-17 06:34:35.741725+00', '17507', '420229', 200, '0xcaa78d9708e2fe54c02c6eb819d907abf3c2debd'), - (147, '2024-05-17 06:45:51.727492+00', '288204', '403020', 10000, '0x5464f72b7c1d48fb3e4f9814e8fde4b136035cad'), - (148, '2024-05-17 06:57:46.860361+00', '291942', '387246', 1000, '0x22dd23fd03c4dcb9d2bf4364944c8da88a375d54'), - (149, '2024-05-17 07:38:39.562571+00', '301385', '291942', 1111, '0xfd313fc5841b0f6e9c894dc3ab6d9fdb0890d8c5'), - (150, '2024-05-17 07:42:07.612+00', '301385', '291942', 1111, '0x9281fca40e2aab7d6ed841632f103ae19715a137'), - (151, '2024-05-17 07:42:17.173591+00', '301385', '17507', 1111, '0x7a00c6632b05572389da7ba3ef5c815bc8d08d80'), - (152, '2024-05-17 07:42:29.62763+00', '301385', '17356', 1111, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (153, '2024-05-17 07:43:50.24355+00', '301385', '291942', 1000, '0x7eb263bebf4baaf157d7120022aa8c1eec5e39db'), - (154, '2024-05-17 07:45:46.897751+00', '301385', '17356', 1111, '0x0e9724568dc48a03f52cfe776779c00e79c1d5c5'), - (155, '2024-05-17 07:58:48.916407+00', '291942', '326920', 1000, '0x4f3cef5116fe268e606cf6922bb1a9472fe94ca5'), - (156, '2024-05-17 08:12:57.865075+00', '245024', '360601', 100, '0x3413aa531c0c33137ec4eb6992ff8ba39c19b530'), - (157, '2024-05-17 08:12:59.414021+00', '245024', '360601', 100, '0x3413aa531c0c33137ec4eb6992ff8ba39c19b530'), - (158, '2024-05-17 08:14:27.945484+00', '245024', '381283', 100, '0x575efbecc7adf747902d527035599417a88d24c3'), - (159, '2024-05-17 08:14:29.427885+00', '245024', '381283', 100, '0x575efbecc7adf747902d527035599417a88d24c3'), - (160, '2024-05-17 08:15:06.78515+00', '245024', '375536', 100, '0x00dc8e8d21c04b0356b80d75d3a8f2c8651464ac'), - (161, '2024-05-17 08:15:08.515244+00', '245024', '375536', 100, '0x00dc8e8d21c04b0356b80d75d3a8f2c8651464ac'), - (162, '2024-05-17 08:15:11.691913+00', '245024', '375536', 100, '0x00dc8e8d21c04b0356b80d75d3a8f2c8651464ac'), - (163, '2024-05-17 08:15:42.741947+00', '245024', '318473', 100, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (164, '2024-05-17 08:16:00.184133+00', '245024', '318473', 100, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (165, '2024-05-17 08:27:38.072271+00', '17356', '291942', 1000, '0xd48d01e06c7bee142444b920a32edda31a7a8a34'), - (166, '2024-05-17 09:30:12.628709+00', '428043', '17356', 0, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (167, '2024-05-17 10:34:14.884536+00', '402545', '403020', 0, '0x2e4d89f1541bd1cb2058480ec8c877daaf0c8ba0'), - (168, '2024-05-17 10:34:24.483889+00', '402545', '403020', 0, '0x2e4d89f1541bd1cb2058480ec8c877daaf0c8ba0'), - (169, '2024-05-17 10:34:36.261047+00', '402545', '0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa', 0, '0x2e4d89f1541bd1cb2058480ec8c877daaf0c8ba0'), - (170, '2024-05-17 10:46:33.61974+00', '402545', '403020', 0, '0x2e4d89f1541bd1cb2058480ec8c877daaf0c8ba0'), - (171, '2024-05-17 11:24:37.333143+00', '439718', '1198', 100, '0x73b2b585a881e6241a78adc8a2269ef01c1a9982'), - (172, '2024-05-17 11:24:45.483499+00', '439718', '403020', 100, '0x2e4d89f1541bd1cb2058480ec8c877daaf0c8ba0'), - (173, '2024-05-17 11:25:13.304441+00', '439718', '0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5,0xe15c7575b6efa56ec9355e36fba650cdc92738b5', 10, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (174, '2024-05-17 11:25:15.555737+00', '439718', '0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5,0xe15c7575b6efa56ec9355e36fba650cdc92738b5', 10, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (175, '2024-05-17 11:30:22.910818+00', '416087', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 10, '0x56be9129952556448c0120ae8a381784669b228a'), - (176, '2024-05-17 11:31:15.243912+00', '416087', '253410', 100, '0x56be9129952556448c0120ae8a381784669b228a'), - (177, '2024-05-17 11:36:01.916729+00', '416087', '0xa312a2a835bdcda893020ce23871470ffd26b990', 10, '0xb6d3761a2f45a56870aa2da53f98a5e43d12dfce'), - (178, '2024-05-17 11:55:28.483514+00', '245024', '4760', 1000, '0xdc2fef42741cda55f527b1a0b873115ed79c1523'), - (179, '2024-05-17 12:19:03.240731+00', '190045', '169', 100, '0x65768d5c6f1c74a44eb35f5c496ac94a09b8a0ba'), - (180, '2024-05-17 12:19:34.593856+00', '416087', '0xa92317295bc7cb5eceba6956d2bad89a3bc8e1df', 10, '0xfe03746af3f38071d985dcc2e71435ecb0b07766'), - (181, '2024-05-17 12:19:37.479513+00', '416087', '360601', 100, '0xfe03746af3f38071d985dcc2e71435ecb0b07766'), - (182, '2024-05-17 12:19:53.594643+00', '190045', '0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453,0xf95972d846684eb401083e8bc1a5554a3d4ed888', 10, '0xc007d6ef37880b30d9954b806205c01ff6f97b48'), - (183, '2024-05-17 12:20:11.064871+00', '190045', '0x7b753919b953b1021a33f55671716dc13c1eae08', 10, '0x63f3da2c62e86814049b601ff2dd8b644dc66294'), - (184, '2024-05-17 12:20:15.162896+00', '190045', '0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453,0xf95972d846684eb401083e8bc1a5554a3d4ed888', 10, '0xbeb3067aa761b98a0bf38547ff6fe87dcd12566d'), - (185, '2024-05-17 12:47:23.215057+00', '416087', '0xe9d387b9ed1327e59589da2b82fb491817703bc1', 10, '0x4f3cef5116fe268e606cf6922bb1a9472fe94ca5'), - (186, '2024-05-17 12:47:26.728378+00', '416087', '326920', 100, '0x4f3cef5116fe268e606cf6922bb1a9472fe94ca5'), - (187, '2024-05-17 12:49:17.126225+00', '416087', '335788', 100, '0xa4c854908bef968e8f1b7e2c5a08d501e080ccd1'), - (188, '2024-05-17 12:49:18.491172+00', '416087', '0xf6f92a1e3eee58e3717cf3c074185c9101e86b47', 10, '0xa4c854908bef968e8f1b7e2c5a08d501e080ccd1'), - (189, '2024-05-17 12:59:00.806533+00', '416087', '0x2b2d91d275bfcff4c17105d10c8c1cff7303119c', 10, '0x76390cd1a1731909b04fc725f9819679128e2c13'), - (190, '2024-05-17 12:59:15.006643+00', '416087', '0xe7e3884efd3955789c4baec29c081bb61ded8015,0x88c1d401bf50a7556ba0575ff62958161d231cf4', 10, '0xaaec8b1ebec23e1bfa7b51b96fd95e705220208e'), - (191, '2024-05-17 13:00:29.245261+00', '190968', '0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5,0xe15c7575b6efa56ec9355e36fba650cdc92738b5', 10, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (192, '2024-05-17 13:00:31.728936+00', '190968', '17507', 1000, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (193, '2024-05-17 13:25:53.687403+00', '240247', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 10, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (194, '2024-05-17 13:25:54.690225+00', '240247', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 10, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (195, '2024-05-17 14:36:50.312964+00', '375536', '3827', 2222, '0x7c9a7fb814b092457052a6e80be36a9133bb20aa'), - (196, '2024-05-17 14:47:27.089117+00', '384424', '248389', 1000, '0x823d832772fc11e3b0b0871da88f1d16e4d738e5'), - (197, '2024-05-17 14:47:29.10433+00', '384424', '351803', 1000, '0x86cc722e310091bb502e042003bdd6f6c7358e89'), - (198, '2024-05-17 14:47:30.830733+00', '384424', '351803', 1000, '0x75b6da4c7e142694b174786f34fb849a3b0c71fc'), - (199, '2024-05-17 14:47:32.310305+00', '384424', '3726', 1000, '0x99a05e164f70a8f8e8233ccf304d692e6f7ecf4c'), - (200, '2024-05-17 14:47:35.405148+00', '384424', '243818', 1000, '0x2be9bbc43b51c234676a0836983afc18844f9e79'), - (201, '2024-05-17 14:47:37.032827+00', '384424', '243818', 1000, '0x634c57e608d38ecb62bc7155c8637c2a06a1d1e6'), - (202, '2024-05-17 14:47:41.205658+00', '384424', '243818', 1000, '0xde07d7e742840792a78f42ae8ae6eefe9ec78748'), - (203, '2024-05-17 14:47:43.233989+00', '384424', '291942', 1000, '0x0c982aab4c4c40166575de3c15b0afb01499e6d2'), - (204, '2024-05-17 14:47:45.278998+00', '384424', '248389', 678, '0xc03577d4cbbd7e20aa6d2858e85b6fa5d205e975'), - (205, '2024-05-17 14:47:46.539165+00', '384424', '211227', 0, '0xd240b8bccf556717e839cc1f62b1d55a217b02f6'), - (206, '2024-05-17 15:18:49.880003+00', '410573', '0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5,0xe15c7575b6efa56ec9355e36fba650cdc92738b5', 0, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (207, '2024-05-17 15:18:50.600692+00', '410573', '0xcae4ccfe670f8c2a4999f9dfaf44625110fce9e5,0xe15c7575b6efa56ec9355e36fba650cdc92738b5', 0, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (208, '2024-05-17 15:18:52.460355+00', '410573', '0xc4f67dea55e19155774dd2c9611738677a687d9a', 0, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (209, '2024-05-17 15:18:53.40559+00', '410573', '0xc4f67dea55e19155774dd2c9611738677a687d9a', 0, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (210, '2024-05-17 15:18:54.462008+00', '410573', '0xc4f67dea55e19155774dd2c9611738677a687d9a', 0, '0x0d009d8768e48f7b8cd15906d7d97086cec5f291'), - (211, '2024-05-17 15:19:18.21701+00', '410573', '0xa7eccf5c6a2b1be67a1d9f117927113cbe7106fa', 0, '0x0047d25c686f5fe9928ee0cf505614c37dac8e4d'), - (212, '2024-05-17 15:19:26.593572+00', '410573', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 0, '0xf0ce5bbe7d5872eeab46536ff0f76bcb5f16d614'), - (213, '2024-05-17 15:20:32.720478+00', '410573', '0x71535aae1b6c0c51db317b54d5eee72d1ab843c1', 0, '0xc36942b746661e5a8727cc72d412f3eb1760458c'), - (214, '2024-05-17 15:20:39.343339+00', '410573', '0xc6729c943584fe18345b5551599a8fa3e14d432a', 0, '0x295d1f3ec5b7ee21155304390b19a414377d9da3'), - (215, '2024-05-17 15:22:54.829376+00', '410573', '0xd1642fcc093202f30e64d28eb8de8d0714958f8f', 0, '0x2bcc824c5cb378cfb68ecb050e8ce10a31df61da'), - (216, '2024-05-17 15:22:55.037318+00', '410573', '0x95f45afde79613c10634d82e94b2a0da5bd2d0c6', 0, '0xd24c2026559d24cc435850b60965dbb46b671e07'), - (217, '2024-05-17 15:22:55.790786+00', '410573', '0x01b4fae0b350af95d1bd8fb1341d9dce1a87a453,0xf95972d846684eb401083e8bc1a5554a3d4ed888', 0, '0x1e9074ff0c19e3cc25c71bc3b4171097cdb30210'), - (218, '2024-05-17 15:22:55.956001+00', '410573', '0xe06ce2ca5418f0763e9091f5bb348707a1b65bde', 0, '0x00b2a2398d88948b407e1890d81a6e26a7bd7de2'), - (219, '2024-05-17 15:22:56.53711+00', '410573', '0xf6f92a1e3eee58e3717cf3c074185c9101e86b47', 0, '0x96dc93dcbf75ad02cbb83d1babe25e51185f30ac'), - (220, '2024-05-17 15:23:29.512277+00', '410573', '410523', 0, '0xd24c2026559d24cc435850b60965dbb46b671e07'), - (221, '2024-05-17 15:23:39.569656+00', '410573', '410523', 0, '0xd24c2026559d24cc435850b60965dbb46b671e07'), - (222, '2024-05-17 16:36:45.038012+00', '439718', '288204', 100, '0xb5af1efa645d5640ca7e5148bdf8537969a3e5eb'), - (223, '2024-05-17 16:37:09.189018+00', '439718', '248389', 100, '0xc03577d4cbbd7e20aa6d2858e85b6fa5d205e975'), - (224, '2024-05-17 16:44:35.133705+00', '219069', '17507', 0, '0xd4f7293cad1f938f0bc315b907e683c0916a966f'), - (225, '2024-05-17 16:50:20.854029+00', '439718', '335788', 200, '0x50664484c27c7dc660f5af8a90dee70cadf43e6a'), - (226, '2024-05-17 17:08:25.582107+00', '439718', '291942', 500, '0xfd313fc5841b0f6e9c894dc3ab6d9fdb0890d8c5'), - (227, '2024-05-17 17:09:40.3905+00', '439718', '420229', 500, '0xcaa78d9708e2fe54c02c6eb819d907abf3c2debd'), - (228, '2024-05-17 17:30:06.925766+00', '355566', '426065', 100, '0x0f7553c844c1610c513a1cbcd05119e42e2aecec'), - (229, '2024-05-17 17:30:39.791937+00', '355566', '0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426', 10, '0x59f9780f5fabf10ab3f7184d9bb7fc7e99a4785c'), - (230, '2024-05-17 17:30:47.003266+00', '355566', '0x94734e11b78680a35b0a86ba3ce634d334d6d2a7', 10, '0xf1f0c8adb4dcf1de90b493381bdc04958e58b454'), - (231, '2024-05-17 17:30:50.126216+00', '355566', '373566', 100, '0xf1f0c8adb4dcf1de90b493381bdc04958e58b454'), - (232, '2024-05-17 17:31:24.746014+00', '355566', '14537', 100, '0x64a78f3c1d305286e415c8e0c0105f70213cef7b'), - (233, '2024-05-17 17:31:26.519768+00', '355566', '0x64bf8d9a93a5642ca93d98b5db88b2cc953c8426', 10, '0x64a78f3c1d305286e415c8e0c0105f70213cef7b'), - (234, '2024-05-17 17:31:29.803433+00', '355566', '0x94734e11b78680a35b0a86ba3ce634d334d6d2a7', 10, '0xec5418594e911efe32a9177543f2e4f5801fb379'), - (235, '2024-05-17 17:31:35.57937+00', '355566', '838', 100, '0xbc617b9abbf42e1c7a060676c35d137914b43cb2'), - (236, '2024-05-17 17:31:42.173754+00', '355566', '373566', 100, '0x7d707a24e6bcfd097b96810363bd4fa6740d1264'), - (237, '2024-05-17 17:31:43.505258+00', '355566', '0x94734e11b78680a35b0a86ba3ce634d334d6d2a7', 10, '0x7d707a24e6bcfd097b96810363bd4fa6740d1264'), - (238, '2024-05-17 17:44:50.581407+00', '439718', '253764', 100, '0x0b0fc4bbe9561f57a337a35a82df222ee23d9a36'), - (239, '2024-05-17 17:45:10.675806+00', '439718', '384424', 300, '0x7e6daf3f98d4e53a736cd6321c199c13d803e51b'), - (240, '2024-05-17 18:46:17.615072+00', '245024', '245124', 100, '0x2bcc824c5cb378cfb68ecb050e8ce10a31df61da'), - (241, '2024-05-17 18:46:19.871047+00', '245024', '245124', 100, '0x2bcc824c5cb378cfb68ecb050e8ce10a31df61da'), - (242, '2024-05-17 18:46:23.739487+00', '245024', '245124', 100, '0x2bcc824c5cb378cfb68ecb050e8ce10a31df61da'), - (243, '2024-05-17 18:46:25.60569+00', '245024', '245124', 100, '0x2bcc824c5cb378cfb68ecb050e8ce10a31df61da'), - (244, '2024-05-17 18:46:28.715638+00', '245024', '245124', 100, '0x2bcc824c5cb378cfb68ecb050e8ce10a31df61da'); - - --- --- Data for Name: buckets; Type: TABLE DATA; Schema: storage; Owner: supabase_storage_admin --- - - - --- --- Data for Name: objects; Type: TABLE DATA; Schema: storage; Owner: supabase_storage_admin --- - - - --- --- Data for Name: s3_multipart_uploads; Type: TABLE DATA; Schema: storage; Owner: supabase_storage_admin --- - - - --- --- Data for Name: s3_multipart_uploads_parts; Type: TABLE DATA; Schema: storage; Owner: supabase_storage_admin --- - - - --- --- Data for Name: secrets; Type: TABLE DATA; Schema: vault; Owner: supabase_admin --- - - - --- --- Name: refresh_tokens_id_seq; Type: SEQUENCE SET; Schema: auth; Owner: supabase_auth_admin --- - -SELECT pg_catalog.setval('"auth"."refresh_tokens_id_seq"', 1, false); - - --- --- Name: key_key_id_seq; Type: SEQUENCE SET; Schema: pgsodium; Owner: supabase_admin --- - -SELECT pg_catalog.setval('"pgsodium"."key_key_id_seq"', 1, false); - - --- --- Name: activity_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('"public"."activity_log_id_seq"', 244, true); - - --- --- Name: airdrop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('"public"."airdrop_id_seq"', 13154, true); - - --- --- Name: cast_query_date_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('"public"."cast_query_date_id_seq"', 1, false); - - --- --- Name: posts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('"public"."posts_id_seq"', 1176543, true); - - --- --- Name: tip_query_date_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('"public"."tip_query_date_id_seq"', 1, true); - - --- --- Name: tips_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('"public"."tips_id_seq"', 98036, true); - - --- --- PostgreSQL database dump complete --- - -RESET ALL; diff --git a/types/AudioController.ts b/types/AudioController.ts deleted file mode 100644 index b116de4a..00000000 --- a/types/AudioController.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type AudioController = { - play: () => void; - pause: () => void; - seek: (time: number) => void; - load: (url: string) => void; -}; diff --git a/types/Cast.d.ts b/types/Cast.d.ts deleted file mode 100644 index c3710756..00000000 --- a/types/Cast.d.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Cast as CastType, CastWithInteractionsReactions } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { Address } from 'viem'; - -export type Cast = CastType & { - hash: Address; - reactions: { - likes: { - fid: string; - }[]; - }; - points: number; - degen: number; -}; - -export interface CastResponse { - cast: { - reactions: { - likes_count: number; - } & CastWithInteractionsReactions; - }; -}; \ No newline at end of file diff --git a/types/ChannelStats.ts b/types/ChannelStats.ts deleted file mode 100644 index ad71de45..00000000 --- a/types/ChannelStats.ts +++ /dev/null @@ -1,12 +0,0 @@ -export type ChannelAccumulator = Record<string, { - uniqueAuthors: Set<number>; - uniquePosts: Set<string>; - notes?: number; -}>; - -export interface ChannelStats { - channelId: string; - numberOfCurators: number; - numberOfSongs: number; - numberOfNotes?: number -}; \ No newline at end of file diff --git a/types/ContractCastMap.ts b/types/ContractCastMap.ts deleted file mode 100644 index b84db1ec..00000000 --- a/types/ContractCastMap.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { Cast } from "@neynar/nodejs-sdk/build/neynar-api/v2"; -import { Address } from "viem"; - -export interface IContract { - address: Address, - abi: any, - functionName: string, - args?: unknown[] -}; - -export interface ICastsAndContracts { - contracts: IContract[], - casts: Cast[], -}; diff --git a/types/Feed.ts b/types/Feed.ts deleted file mode 100644 index 1850fc36..00000000 --- a/types/Feed.ts +++ /dev/null @@ -1,18 +0,0 @@ -type FeedFilterField = 'platform' | 'channel'; - -export type FeedFilter = { - [key in FeedFilterField]?: string; -}; - -export type FeedAvailableFilter = { - name: string; - key: FeedFilterField; - options: { label: string; value: string }[]; -}; - -export enum FeedType { - Trending = 'Trending', - Recent = 'Recent', - Following = 'Following', - Posts = 'Posts', -} diff --git a/types/Item.d.ts b/types/Item.d.ts deleted file mode 100644 index 0b075ee8..00000000 --- a/types/Item.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -export type Item = { - fid: number; - fname: string; -}; diff --git a/types/Modal.d.ts b/types/Modal.d.ts deleted file mode 100644 index 61b0a912..00000000 --- a/types/Modal.d.ts +++ /dev/null @@ -1 +0,0 @@ -export type CloseModal = () => void; diff --git a/types/NeynarUserData.ts b/types/NeynarUserData.ts deleted file mode 100644 index 99d8d454..00000000 --- a/types/NeynarUserData.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { Address } from 'viem'; - -export type NeynarUserData = { - fid: number; - custodyAddress: Address; - username: string; - displayName: string; - pfp: { - url: string; - }; - pfp_url: string; - profile: { - bio: { - text?: string; - mentionedProfiles?: any; - }; - }; - followerCount: number; - followingCount: number; - verifications: Address[]; - verifiedAddresses: { - eth_addresses: Address[]; - sol_addresses: string[]; - }; - activeStatus: 'active' | 'inactive'; - powerBadge: boolean; -}; diff --git a/types/OEmbedData.d.ts b/types/OEmbedData.d.ts deleted file mode 100644 index 80f2e3f2..00000000 --- a/types/OEmbedData.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -export type OEmbedData = { - html: string; - width: number; - height: number; - version: string; - provider_name: string; - provider_url: string; - type: string; - title: string; - thumbnail_url: string; - - description?: string; - author_name?: string; -}; diff --git a/types/Privy.ts b/types/Privy.ts deleted file mode 100644 index 3392bb21..00000000 --- a/types/Privy.ts +++ /dev/null @@ -1,22 +0,0 @@ -export interface PrivyLinkedAccount { - type: "wallet" | "email"; - address: string; - chain_type?: string; // currently supporting EVM only - verified_at?: number; -}; - -export interface PrivyUser { - id: string; - created_at: number; - linked_accounts: PrivyLinkedAccount[]; -} - -export interface PrivyBatchUserResponse { - data: PrivyUser[]; - next_cursor: string | null; -} - -export interface PrivyClientOptions { - method?: string; - body?: Record<string, unknown>; -}; \ No newline at end of file diff --git a/types/SpotifyPlaybackUpdateEvent.d.ts b/types/SpotifyPlaybackUpdateEvent.d.ts deleted file mode 100644 index 1399bf14..00000000 --- a/types/SpotifyPlaybackUpdateEvent.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -export type SpotifyPlaybackUpdateEvent = { - data: { - duration: number; - position: number; - isPaused: boolean; - isBuffering: boolean; - }; -}; diff --git a/types/SpotifyTrack.d.ts b/types/SpotifyTrack.d.ts deleted file mode 100644 index d3c8f90e..00000000 --- a/types/SpotifyTrack.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -export type SpotifyTrack = { - album: { - images: { - height: number; - url: string; - width: number; - }[]; - }; - artists: { - name: string; - }[]; - duration_ms: number; - name: string; - preview_url?: string; - uri: string; - error?: { - status: number; - message: string; - }; -}; diff --git a/types/SupabasePost.ts b/types/SupabasePost.ts deleted file mode 100644 index 95da53c8..00000000 --- a/types/SupabasePost.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { User } from '@neynar/nodejs-sdk/build/neynar-api/v2'; -import { Address } from 'viem'; - -export type SupabasePost = { - post_hash: Address; - likes?: number; - author: User; - authorFid: number; - created_at: Date; - embeds: string[]; - alternativeEmbeds: string[]; - points?: number; - degen?: number; - parent_url?: string; - channelId?: string; - hypersub_subscribed_since?: Date; - id: number; -}; diff --git a/types/TipResponse.d.ts b/types/TipResponse.d.ts deleted file mode 100644 index 46dcadde..00000000 --- a/types/TipResponse.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type TipResponse = { - message: string; - tipRemaining: number; - usedTip: number; - totalTipOnPost: number; -}; diff --git a/types/Track.d.ts b/types/Track.d.ts deleted file mode 100644 index 86e8615c..00000000 --- a/types/Track.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { CONTENT_PLATFORMS } from '@/lib/consts'; - -export type TrackType = (typeof CONTENT_PLATFORMS)[number]['title']; - -export type TrackMetadata = { - id: string; - type: TrackType; - artistName: string; - trackName: string; - artworkUrl: string; - url: string; - feedId: number; -}; - -export type TrackControls = { - play: () => void; - pause: () => void; - seek: (time: number) => void; -}; diff --git a/types/VerifiedSigner.d.ts b/types/VerifiedSigner.d.ts deleted file mode 100644 index ee4d84ff..00000000 --- a/types/VerifiedSigner.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -export type VerifiedSigner = { - fid: number; - status: boolean; -}; diff --git a/types/token.ts b/types/token.ts new file mode 100644 index 00000000..e54cde11 --- /dev/null +++ b/types/token.ts @@ -0,0 +1,15 @@ +export type TOKEN_EVENT_TYPE = { + event: string; + address: string; + timestamp: string; + points: number; + metadata: { + user: string; + tokenId: string; + uniqueId: string; + collection: string; + blockNumber: string; + permissions: string; + transactionHash: string; + }; +}; diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 6825ba31..00000000 --- a/vercel.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "crons": [ - { - "path": "/api/jobs/update_tips", - "schedule": "0 6 * * *" - }, - { - "path": "/api/jobs/updateHypersub", - "schedule": "0 7 * * *" - }, - { - "path": "/api/jobs/reward_trending_posts", - "schedule": "0 7 * * *" - }, - { - "path": "/api/jobs/getNewCasts", - "schedule": "*/1 * * * *" - }, - { - "path": "/api/jobs/getMissingCasts", - "schedule": "0 */3 * * *" - } - ] -} diff --git a/yarn.lock b/yarn.lock index 90208fc1..e823a913 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12,18 +12,13 @@ resolved "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz" integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== -"@babel/runtime@^7.13.10", "@babel/runtime@^7.21.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.24.1": +"@babel/runtime@^7.13.10", "@babel/runtime@^7.23.2", "@babel/runtime@^7.24.1": version "7.24.1" resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.1.tgz" integrity sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ== dependencies: regenerator-runtime "^0.14.0" -"@coinbase/onchainkit@^0.9.5": - version "0.9.5" - resolved "https://registry.npmjs.org/@coinbase/onchainkit/-/onchainkit-0.9.5.tgz" - integrity sha512-uUwQMt8AGh1mJzxP4RhfuZN5FVMVBGkSlK7OBdC6N8NtIiX5fROcGf5EuW/qmB3H6jORAU6LPx257QBQg1sHBA== - "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" @@ -56,11 +51,6 @@ resolved "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz" integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== -"@fastify/busboy@^2.0.0": - version "2.1.1" - resolved "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz" - integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA== - "@floating-ui/core@^1.0.0": version "1.6.2" resolved "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.2.tgz" @@ -119,13 +109,6 @@ wrap-ansi "^8.1.0" wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" -"@isaacs/fs-minipass@^4.0.0": - version "4.0.1" - resolved "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz" - integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== - dependencies: - minipass "^7.0.4" - "@jridgewell/gen-mapping@^0.3.2": version "0.3.5" resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz" @@ -158,37 +141,6 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@lukeed/csprng@^1.0.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@lukeed/csprng/-/csprng-1.1.0.tgz" - integrity sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA== - -"@nestjs/axios@3.0.1": - version "3.0.1" - resolved "https://registry.npmjs.org/@nestjs/axios/-/axios-3.0.1.tgz" - integrity sha512-VlOZhAGDmOoFdsmewn8AyClAdGpKXQQaY1+3PGB+g6ceurGIdTxZgRX3VXc1T6Zs60PedWjg3A82TDOB05mrzQ== - -"@nestjs/common@10.3.0": - version "10.3.0" - resolved "https://registry.npmjs.org/@nestjs/common/-/common-10.3.0.tgz" - integrity sha512-DGv34UHsZBxCM3H5QGE2XE/+oLJzz5+714JQjBhjD9VccFlQs3LRxo/epso4l7nJIiNlZkPyIUC8WzfU/5RTsQ== - dependencies: - uid "2.0.2" - iterare "1.2.1" - tslib "2.6.2" - -"@nestjs/core@10.3.0": - version "10.3.0" - resolved "https://registry.npmjs.org/@nestjs/core/-/core-10.3.0.tgz" - integrity sha512-N06P5ncknW/Pm8bj964WvLIZn2gNhHliCBoAO1LeBvNImYkecqKcrmLbY49Fa1rmMfEM3MuBHeDys3edeuYAOA== - dependencies: - uid "2.0.2" - "@nuxtjs/opencollective" "0.3.2" - fast-safe-stringify "2.1.1" - iterare "1.2.1" - path-to-regexp "3.2.0" - tslib "2.6.2" - "@next/env@14.2.3": version "14.2.3" resolved "https://registry.npmjs.org/@next/env/-/env-14.2.3.tgz" @@ -201,84 +153,35 @@ dependencies: glob "10.3.10" -"@next/swc-darwin-arm64@14.2.3": - version "14.2.3" - resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.3.tgz" - integrity sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A== - -"@next/swc-darwin-x64@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.3.tgz#a3f8af05b5f9a52ac3082e66ac29e125ab1d7b9c" - integrity sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA== - -"@next/swc-linux-arm64-gnu@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.3.tgz#4e63f43879285b52554bfd39e6e0cc78a9b27bbf" - integrity sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA== - -"@next/swc-linux-arm64-musl@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.3.tgz#ebdaed26214448b1e6f2c3e8b3cd29bfba387990" - integrity sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw== - -"@next/swc-linux-x64-gnu@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.3.tgz#19e3bcc137c3b582a1ab867106817e5c90a20593" - integrity sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w== - -"@next/swc-linux-x64-musl@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.3.tgz#794a539b98e064169cf0ff7741b2a4fb16adec7d" - integrity sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ== - -"@next/swc-win32-arm64-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.3.tgz#eda9fa0fbf1ff9113e87ac2668ee67ce9e5add5a" - integrity sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A== - -"@next/swc-win32-ia32-msvc@14.2.3": - version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.3.tgz#7c1190e3f640ab16580c6bdbd7d0e766b9920457" - integrity sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw== - "@next/swc-win32-x64-msvc@14.2.3": version "14.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.3.tgz#2be4e39ee25bfbd85be78eea17c0e7751dc4323c" + resolved "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.3.tgz" integrity sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA== -"@neynar/nodejs-sdk@^1.14.0": - version "1.14.0" - resolved "https://registry.npmjs.org/@neynar/nodejs-sdk/-/nodejs-sdk-1.14.0.tgz" - integrity sha512-VfN15qPA4T8L7oKdwjPQNfh7xCpkCeEl0jAIdgu3lt4Mw93x79kiY2x8TjKtkXyVb6oSzH+aq8haIz/dik5LkQ== +"@noble/curves@~1.2.0": + version "1.2.0" + resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz" + integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== dependencies: - "@openapitools/openapi-generator-cli" "^2.7.0" - axios "^1.6.2" - viem "^1.19.9" + "@noble/hashes" "1.3.2" -"@noble/curves@1.2.0", "@noble/curves@~1.2.0": +"@noble/curves@1.2.0": version "1.2.0" resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz" integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== dependencies: "@noble/hashes" "1.3.2" -"@noble/curves@^1.3.0": - version "1.3.0" - resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.3.0.tgz" - integrity sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA== - dependencies: - "@noble/hashes" "1.3.3" +"@noble/hashes@~1.3.0": + version "1.3.3" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz" + integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA== -"@noble/hashes@1.3.2", "@noble/hashes@~1.3.2": +"@noble/hashes@~1.3.2", "@noble/hashes@1.3.2": version "1.3.2" resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz" integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== -"@noble/hashes@1.3.3", "@noble/hashes@^1.3.3", "@noble/hashes@~1.3.0": - version "1.3.3" - resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz" - integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA== - "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" @@ -287,7 +190,7 @@ "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": +"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": version "2.0.5" resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== @@ -300,102 +203,15 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@nuxtjs/opencollective@0.3.2": - version "0.3.2" - resolved "https://registry.npmjs.org/@nuxtjs/opencollective/-/opencollective-0.3.2.tgz" - integrity sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA== - dependencies: - chalk "^4.1.0" - consola "^2.15.0" - node-fetch "^2.6.1" - -"@openapitools/openapi-generator-cli@^2.7.0": - version "2.13.1" - resolved "https://registry.npmjs.org/@openapitools/openapi-generator-cli/-/openapi-generator-cli-2.13.1.tgz" - integrity sha512-WJB6MsFXlA69mpKCuR3hBsdFr7MptNhoIGlyvoYEorBQEg3cd6n1gACHx0fz20B3e03/imvorQlNMsrHTIeU9w== - dependencies: - "@nestjs/axios" "3.0.1" - "@nestjs/common" "10.3.0" - "@nestjs/core" "10.3.0" - "@nuxtjs/opencollective" "0.3.2" - axios "1.6.5" - chalk "4.1.2" - commander "8.3.0" - compare-versions "4.1.4" - concurrently "6.5.1" - console.table "0.10.0" - fs-extra "10.1.0" - glob "7.2.3" - inquirer "8.2.6" - lodash "4.17.21" - reflect-metadata "0.1.13" - rxjs "7.8.1" - tslib "2.6.2" - "@pkgjs/parseargs@^0.11.0": version "0.11.0" resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": - version "1.1.2" - resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz" - integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== - -"@protobufjs/base64@^1.1.2": - version "1.1.2" - resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz" - integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== - -"@protobufjs/codegen@^2.0.4": - version "2.0.4" - resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz" - integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== - -"@protobufjs/eventemitter@^1.1.0": +"@radix-ui/number@1.1.0": version "1.1.0" - resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz" - integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== - -"@protobufjs/fetch@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz" - integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== - dependencies: - "@protobufjs/aspromise" "^1.1.1" - "@protobufjs/inquire" "^1.1.0" - -"@protobufjs/float@^1.0.2": - version "1.0.2" - resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz" - integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== - -"@protobufjs/inquire@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz" - integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== - -"@protobufjs/path@^1.1.2": - version "1.1.2" - resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz" - integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== - -"@protobufjs/pool@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz" - integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== - -"@protobufjs/utf8@^1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz" - integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== - -"@radix-ui/number@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@radix-ui/number/-/number-1.0.1.tgz#644161a3557f46ed38a042acf4a770e826021674" - integrity sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg== - dependencies: - "@babel/runtime" "^7.13.10" + resolved "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.0.tgz" + integrity sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ== "@radix-ui/primitive@1.0.1": version "1.0.1" @@ -404,6 +220,11 @@ dependencies: "@babel/runtime" "^7.13.10" +"@radix-ui/primitive@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz" + integrity sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA== + "@radix-ui/react-arrow@1.0.3": version "1.0.3" resolved "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz" @@ -412,6 +233,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-primitive" "1.0.3" +"@radix-ui/react-arrow@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.0.tgz" + integrity sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw== + dependencies: + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-avatar@^1.0.4": version "1.0.4" resolved "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.0.4.tgz" @@ -434,6 +262,16 @@ "@radix-ui/react-primitive" "1.0.3" "@radix-ui/react-slot" "1.0.2" +"@radix-ui/react-collection@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.0.tgz" + integrity sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw== + dependencies: + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-context" "1.1.0" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-slot" "1.1.0" + "@radix-ui/react-compose-refs@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz" @@ -441,6 +279,11 @@ dependencies: "@babel/runtime" "^7.13.10" +"@radix-ui/react-compose-refs@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz" + integrity sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw== + "@radix-ui/react-context@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz" @@ -448,26 +291,35 @@ dependencies: "@babel/runtime" "^7.13.10" -"@radix-ui/react-dialog@^1.0.4", "@radix-ui/react-dialog@^1.0.5": - version "1.0.5" - resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.5.tgz" - integrity sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/primitive" "1.0.1" - "@radix-ui/react-compose-refs" "1.0.1" - "@radix-ui/react-context" "1.0.1" - "@radix-ui/react-dismissable-layer" "1.0.5" - "@radix-ui/react-focus-guards" "1.0.1" - "@radix-ui/react-focus-scope" "1.0.4" - "@radix-ui/react-id" "1.0.1" - "@radix-ui/react-portal" "1.0.4" - "@radix-ui/react-presence" "1.0.1" - "@radix-ui/react-primitive" "1.0.3" - "@radix-ui/react-slot" "1.0.2" - "@radix-ui/react-use-controllable-state" "1.0.1" +"@radix-ui/react-context@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz" + integrity sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A== + +"@radix-ui/react-context@1.1.1": + version "1.1.1" + resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.1.tgz" + integrity sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q== + +"@radix-ui/react-dialog@^1.0.5", "@radix-ui/react-dialog@^1.1.1": + version "1.1.2" + resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.2.tgz" + integrity sha512-Yj4dZtqa2o+kG61fzB0H2qUvmwBA2oyQroGLyNtBj1beo1khoQ3q1a2AO8rrQYjd8256CO9+N8L9tvsS+bnIyA== + dependencies: + "@radix-ui/primitive" "1.1.0" + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-context" "1.1.1" + "@radix-ui/react-dismissable-layer" "1.1.1" + "@radix-ui/react-focus-guards" "1.1.1" + "@radix-ui/react-focus-scope" "1.1.0" + "@radix-ui/react-id" "1.1.0" + "@radix-ui/react-portal" "1.1.2" + "@radix-ui/react-presence" "1.1.1" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-slot" "1.1.0" + "@radix-ui/react-use-controllable-state" "1.1.0" aria-hidden "^1.1.1" - react-remove-scroll "2.5.5" + react-remove-scroll "2.6.0" "@radix-ui/react-direction@1.0.1": version "1.0.1" @@ -476,6 +328,11 @@ dependencies: "@babel/runtime" "^7.13.10" +"@radix-ui/react-direction@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz" + integrity sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg== + "@radix-ui/react-dismissable-layer@1.0.5": version "1.0.5" resolved "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz" @@ -488,6 +345,17 @@ "@radix-ui/react-use-callback-ref" "1.0.1" "@radix-ui/react-use-escape-keydown" "1.0.3" +"@radix-ui/react-dismissable-layer@1.1.1": + version "1.1.1" + resolved "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.1.tgz" + integrity sha512-QSxg29lfr/xcev6kSz7MAlmDnzbP1eI/Dwn3Tp1ip0KT5CUELsxkekFEMVBEoykI3oV39hKT4TKZzBNMbcTZYQ== + dependencies: + "@radix-ui/primitive" "1.1.0" + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-use-callback-ref" "1.1.0" + "@radix-ui/react-use-escape-keydown" "1.1.0" + "@radix-ui/react-dropdown-menu@^2.0.6": version "2.0.6" resolved "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.0.6.tgz" @@ -509,6 +377,11 @@ dependencies: "@babel/runtime" "^7.13.10" +"@radix-ui/react-focus-guards@1.1.1": + version "1.1.1" + resolved "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.1.tgz" + integrity sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg== + "@radix-ui/react-focus-scope@1.0.4": version "1.0.4" resolved "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.4.tgz" @@ -519,6 +392,15 @@ "@radix-ui/react-primitive" "1.0.3" "@radix-ui/react-use-callback-ref" "1.0.1" +"@radix-ui/react-focus-scope@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.0.tgz" + integrity sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA== + dependencies: + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-use-callback-ref" "1.1.0" + "@radix-ui/react-icons@^1.3.0": version "1.3.0" resolved "https://registry.npmjs.org/@radix-ui/react-icons/-/react-icons-1.3.0.tgz" @@ -532,6 +414,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-use-layout-effect" "1.0.1" +"@radix-ui/react-id@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.0.tgz" + integrity sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA== + dependencies: + "@radix-ui/react-use-layout-effect" "1.1.0" + "@radix-ui/react-label@^2.0.2": version "2.0.2" resolved "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.0.2.tgz" @@ -566,26 +455,25 @@ react-remove-scroll "2.5.5" "@radix-ui/react-popover@^1.0.7": - version "1.0.7" - resolved "https://registry.yarnpkg.com/@radix-ui/react-popover/-/react-popover-1.0.7.tgz#23eb7e3327330cb75ec7b4092d685398c1654e3c" - integrity sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/primitive" "1.0.1" - "@radix-ui/react-compose-refs" "1.0.1" - "@radix-ui/react-context" "1.0.1" - "@radix-ui/react-dismissable-layer" "1.0.5" - "@radix-ui/react-focus-guards" "1.0.1" - "@radix-ui/react-focus-scope" "1.0.4" - "@radix-ui/react-id" "1.0.1" - "@radix-ui/react-popper" "1.1.3" - "@radix-ui/react-portal" "1.0.4" - "@radix-ui/react-presence" "1.0.1" - "@radix-ui/react-primitive" "1.0.3" - "@radix-ui/react-slot" "1.0.2" - "@radix-ui/react-use-controllable-state" "1.0.1" + version "1.1.2" + resolved "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.2.tgz" + integrity sha512-u2HRUyWW+lOiA2g0Le0tMmT55FGOEWHwPFt1EPfbLly7uXQExFo5duNKqG2DzmFXIdqOeNd+TpE8baHWJCyP9w== + dependencies: + "@radix-ui/primitive" "1.1.0" + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-context" "1.1.1" + "@radix-ui/react-dismissable-layer" "1.1.1" + "@radix-ui/react-focus-guards" "1.1.1" + "@radix-ui/react-focus-scope" "1.1.0" + "@radix-ui/react-id" "1.1.0" + "@radix-ui/react-popper" "1.2.0" + "@radix-ui/react-portal" "1.1.2" + "@radix-ui/react-presence" "1.1.1" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-slot" "1.1.0" + "@radix-ui/react-use-controllable-state" "1.1.0" aria-hidden "^1.1.1" - react-remove-scroll "2.5.5" + react-remove-scroll "2.6.0" "@radix-ui/react-popper@1.1.3": version "1.1.3" @@ -604,6 +492,22 @@ "@radix-ui/react-use-size" "1.0.1" "@radix-ui/rect" "1.0.1" +"@radix-ui/react-popper@1.2.0": + version "1.2.0" + resolved "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.0.tgz" + integrity sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg== + dependencies: + "@floating-ui/react-dom" "^2.0.0" + "@radix-ui/react-arrow" "1.1.0" + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-context" "1.1.0" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-use-callback-ref" "1.1.0" + "@radix-ui/react-use-layout-effect" "1.1.0" + "@radix-ui/react-use-rect" "1.1.0" + "@radix-ui/react-use-size" "1.1.0" + "@radix-ui/rect" "1.1.0" + "@radix-ui/react-portal@1.0.4": version "1.0.4" resolved "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz" @@ -612,6 +516,14 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-primitive" "1.0.3" +"@radix-ui/react-portal@1.1.2": + version "1.1.2" + resolved "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.2.tgz" + integrity sha512-WeDYLGPxJb/5EGBoedyJbT0MpoULmwnIPMJMSldkuiMsBAv7N1cRdsTWZWht9vpPOiN3qyiGAtbK2is47/uMFg== + dependencies: + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-use-layout-effect" "1.1.0" + "@radix-ui/react-presence@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz" @@ -621,6 +533,14 @@ "@radix-ui/react-compose-refs" "1.0.1" "@radix-ui/react-use-layout-effect" "1.0.1" +"@radix-ui/react-presence@1.1.1": + version "1.1.1" + resolved "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.1.tgz" + integrity sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A== + dependencies: + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-use-layout-effect" "1.1.0" + "@radix-ui/react-primitive@1.0.3": version "1.0.3" resolved "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz" @@ -629,6 +549,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-slot" "1.0.2" +"@radix-ui/react-primitive@2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz" + integrity sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw== + dependencies: + "@radix-ui/react-slot" "1.1.0" + "@radix-ui/react-radio-group@^1.1.3": version "1.1.3" resolved "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.1.3.tgz" @@ -671,24 +598,23 @@ "@radix-ui/react-primitive" "1.0.3" "@radix-ui/react-slider@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-slider/-/react-slider-1.1.2.tgz#330ff2a0e1f6c19aace76590004f229a7e8fbe6c" - integrity sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/number" "1.0.1" - "@radix-ui/primitive" "1.0.1" - "@radix-ui/react-collection" "1.0.3" - "@radix-ui/react-compose-refs" "1.0.1" - "@radix-ui/react-context" "1.0.1" - "@radix-ui/react-direction" "1.0.1" - "@radix-ui/react-primitive" "1.0.3" - "@radix-ui/react-use-controllable-state" "1.0.1" - "@radix-ui/react-use-layout-effect" "1.0.1" - "@radix-ui/react-use-previous" "1.0.1" - "@radix-ui/react-use-size" "1.0.1" - -"@radix-ui/react-slot@1.0.2", "@radix-ui/react-slot@^1.0.2": + version "1.2.1" + resolved "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.2.1.tgz" + integrity sha512-bEzQoDW0XP+h/oGbutF5VMWJPAl/UU8IJjr7h02SOHDIIIxq+cep8nItVNoBV+OMmahCdqdF38FTpmXoqQUGvw== + dependencies: + "@radix-ui/number" "1.1.0" + "@radix-ui/primitive" "1.1.0" + "@radix-ui/react-collection" "1.1.0" + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-context" "1.1.1" + "@radix-ui/react-direction" "1.1.0" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-use-controllable-state" "1.1.0" + "@radix-ui/react-use-layout-effect" "1.1.0" + "@radix-ui/react-use-previous" "1.1.0" + "@radix-ui/react-use-size" "1.1.0" + +"@radix-ui/react-slot@^1.0.2", "@radix-ui/react-slot@1.0.2": version "1.0.2" resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz" integrity sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg== @@ -696,6 +622,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-compose-refs" "1.0.1" +"@radix-ui/react-slot@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz" + integrity sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw== + dependencies: + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-toast@^1.1.5": version "1.1.5" resolved "https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.1.5.tgz" @@ -722,6 +655,11 @@ dependencies: "@babel/runtime" "^7.13.10" +"@radix-ui/react-use-callback-ref@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz" + integrity sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw== + "@radix-ui/react-use-controllable-state@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz" @@ -730,6 +668,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-use-callback-ref" "1.0.1" +"@radix-ui/react-use-controllable-state@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz" + integrity sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw== + dependencies: + "@radix-ui/react-use-callback-ref" "1.1.0" + "@radix-ui/react-use-escape-keydown@1.0.3": version "1.0.3" resolved "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz" @@ -738,6 +683,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-use-callback-ref" "1.0.1" +"@radix-ui/react-use-escape-keydown@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.0.tgz" + integrity sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw== + dependencies: + "@radix-ui/react-use-callback-ref" "1.1.0" + "@radix-ui/react-use-layout-effect@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz" @@ -745,6 +697,11 @@ dependencies: "@babel/runtime" "^7.13.10" +"@radix-ui/react-use-layout-effect@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz" + integrity sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w== + "@radix-ui/react-use-previous@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz" @@ -752,6 +709,11 @@ dependencies: "@babel/runtime" "^7.13.10" +"@radix-ui/react-use-previous@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.0.tgz" + integrity sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og== + "@radix-ui/react-use-rect@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz" @@ -760,6 +722,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/rect" "1.0.1" +"@radix-ui/react-use-rect@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.0.tgz" + integrity sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ== + dependencies: + "@radix-ui/rect" "1.1.0" + "@radix-ui/react-use-size@1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz" @@ -768,6 +737,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-use-layout-effect" "1.0.1" +"@radix-ui/react-use-size@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.0.tgz" + integrity sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw== + dependencies: + "@radix-ui/react-use-layout-effect" "1.1.0" + "@radix-ui/react-visually-hidden@1.0.3": version "1.0.3" resolved "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz" @@ -783,89 +759,10 @@ dependencies: "@babel/runtime" "^7.13.10" -"@react-spring/animated@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/animated/-/animated-9.7.3.tgz" - integrity sha512-5CWeNJt9pNgyvuSzQH+uy2pvTg8Y4/OisoscZIR8/ZNLIOI+CatFBhGZpDGTF/OzdNFsAoGk3wiUYTwoJ0YIvw== - dependencies: - "@react-spring/shared" "~9.7.3" - "@react-spring/types" "~9.7.3" - -"@react-spring/core@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/core/-/core-9.7.3.tgz" - integrity sha512-IqFdPVf3ZOC1Cx7+M0cXf4odNLxDC+n7IN3MDcVCTIOSBfqEcBebSv+vlY5AhM0zw05PDbjKrNmBpzv/AqpjnQ== - dependencies: - "@react-spring/animated" "~9.7.3" - "@react-spring/shared" "~9.7.3" - "@react-spring/types" "~9.7.3" - -"@react-spring/konva@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/konva/-/konva-9.7.3.tgz" - integrity sha512-R9sY6SiPGYqz1383P5qppg5z57YfChVknOC1UxxaGxpw+WiZa8fZ4zmZobslrw+os3/+HAXZv8O+EvU/nQpf7g== - dependencies: - "@react-spring/animated" "~9.7.3" - "@react-spring/core" "~9.7.3" - "@react-spring/shared" "~9.7.3" - "@react-spring/types" "~9.7.3" - -"@react-spring/native@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/native/-/native-9.7.3.tgz" - integrity sha512-4mpxX3FuEBCUT6ae2fjhxcJW6bhr2FBwFf274eXB7n+U30Gdg8Wo2qYwcUnmiAA0S3dvP8vLTazx3+CYWFShnA== - dependencies: - "@react-spring/animated" "~9.7.3" - "@react-spring/core" "~9.7.3" - "@react-spring/shared" "~9.7.3" - "@react-spring/types" "~9.7.3" - -"@react-spring/shared@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/shared/-/shared-9.7.3.tgz" - integrity sha512-NEopD+9S5xYyQ0pGtioacLhL2luflh6HACSSDUZOwLHoxA5eku1UPuqcJqjwSD6luKjjLfiLOspxo43FUHKKSA== - dependencies: - "@react-spring/types" "~9.7.3" - -"@react-spring/three@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/three/-/three-9.7.3.tgz" - integrity sha512-Q1p512CqUlmMK8UMBF/Rj79qndhOWq4XUTayxMP9S892jiXzWQuj+xC3Xvm59DP/D4JXusXpxxqfgoH+hmOktA== - dependencies: - "@react-spring/animated" "~9.7.3" - "@react-spring/core" "~9.7.3" - "@react-spring/shared" "~9.7.3" - "@react-spring/types" "~9.7.3" - -"@react-spring/types@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/types/-/types-9.7.3.tgz" - integrity sha512-Kpx/fQ/ZFX31OtlqVEFfgaD1ACzul4NksrvIgYfIFq9JpDHFwQkMVZ10tbo0FU/grje4rcL4EIrjekl3kYwgWw== - -"@react-spring/web@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/web/-/web-9.7.3.tgz" - integrity sha512-BXt6BpS9aJL/QdVqEIX9YoUy8CE6TJrU0mNCqSoxdXlIeNcEBWOfIyE6B14ENNsyQKS3wOWkiJfco0tCr/9tUg== - dependencies: - "@react-spring/animated" "~9.7.3" - "@react-spring/core" "~9.7.3" - "@react-spring/shared" "~9.7.3" - "@react-spring/types" "~9.7.3" - -"@react-spring/zdog@~9.7.3": - version "9.7.3" - resolved "https://registry.npmjs.org/@react-spring/zdog/-/zdog-9.7.3.tgz" - integrity sha512-L+yK/1PvNi9n8cldiJ309k4LdxcPkeWE0W18l1zrP1IBIyd5NB5EPA8DMsGr9gtNnnIujtEzZk+4JIOjT8u/tw== - dependencies: - "@react-spring/animated" "~9.7.3" - "@react-spring/core" "~9.7.3" - "@react-spring/shared" "~9.7.3" - "@react-spring/types" "~9.7.3" - -"@resvg/resvg-wasm@2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@resvg/resvg-wasm/-/resvg-wasm-2.4.0.tgz" - integrity sha512-C7c51Nn4yTxXFKvgh2txJFNweaVcfUPQxwEUFw4aWsCmfiBDJsTSwviIF8EcwjQ6k8bPyMWCl1vw4BdxE569Cg== +"@radix-ui/rect@1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.0.tgz" + integrity sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg== "@rushstack/eslint-patch@^1.3.3": version "1.10.3" @@ -894,79 +791,14 @@ "@noble/hashes" "~1.3.0" "@scure/base" "~1.1.0" -"@shuding/opentype.js@1.4.0-beta.0": - version "1.4.0-beta.0" - resolved "https://registry.npmjs.org/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz" - integrity sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA== - dependencies: - fflate "^0.7.3" - string.prototype.codepointat "^0.2.1" - -"@stackso/js-core@^0.2.30": - version "0.2.30" - resolved "https://registry.npmjs.org/@stackso/js-core/-/js-core-0.2.30.tgz" - integrity sha512-T8va1lge2VStgoPHE2T2mO6iTjp7Y/BHfE7kCj9BmMEfpwy0G7pJlTFgniuyVlB5XSgMi+3tPcZsMvz2Ss1ZfQ== +"@stackso/js-core@^0.4.16": + version "0.4.17" + resolved "https://registry.npmjs.org/@stackso/js-core/-/js-core-0.4.17.tgz" + integrity sha512-dbLtuyfWTrY3eciCYa/0Td+t9mEv+nG7IHpUjXec0k3mVcXH2/b2/ctUwK0CAdaZbi/pJjAJT3HCGVMpT/wnmA== dependencies: axios "^1.6.2" viem "^2.7.12" -"@supabase/auth-js@2.63.0": - version "2.63.0" - resolved "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.63.0.tgz" - integrity sha512-yIgcHnlgv24GxHtVGUhwGqAFDyJkPIC/xjx7HostN08A8yCy8HIfl4JEkTKyBqD1v1L05jNEJOUke4Lf4O1+Qg== - dependencies: - "@supabase/node-fetch" "^2.6.14" - -"@supabase/functions-js@2.3.0": - version "2.3.0" - resolved "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.3.0.tgz" - integrity sha512-GPXzSl4MXdc0P7q+TvE8XgaPdvGBeAJ0p6AN0tbKcezpkp32mpsDf58JXaWOJGyiWSVJn6z1W73eKxf6NZNaFA== - dependencies: - "@supabase/node-fetch" "^2.6.14" - -"@supabase/node-fetch@2.6.15", "@supabase/node-fetch@^2.6.14": - version "2.6.15" - resolved "https://registry.npmjs.org/@supabase/node-fetch/-/node-fetch-2.6.15.tgz" - integrity sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ== - dependencies: - whatwg-url "^5.0.0" - -"@supabase/postgrest-js@1.15.2": - version "1.15.2" - resolved "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-1.15.2.tgz" - integrity sha512-9/7pUmXExvGuEK1yZhVYXPZnLEkDTwxgMQHXLrN5BwPZZm4iUCL1YEyep/Z2lIZah8d8M433mVAUEGsihUj5KQ== - dependencies: - "@supabase/node-fetch" "^2.6.14" - -"@supabase/realtime-js@2.9.4": - version "2.9.4" - resolved "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.9.4.tgz" - integrity sha512-wdq+2hZpgw0r2ldRs87d3U08Y8BrsO1bZxPNqbImpYshAEkusDz4vufR8KaqujKxqewmXS6YnUhuRVdvSEIKCA== - dependencies: - "@supabase/node-fetch" "^2.6.14" - "@types/phoenix" "^1.5.4" - "@types/ws" "^8.5.10" - ws "^8.14.2" - -"@supabase/storage-js@2.5.5": - version "2.5.5" - resolved "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.5.5.tgz" - integrity sha512-OpLoDRjFwClwc2cjTJZG8XviTiQH4Ik8sCiMK5v7et0MDu2QlXjCAW3ljxJB5+z/KazdMOTnySi+hysxWUPu3w== - dependencies: - "@supabase/node-fetch" "^2.6.14" - -"@supabase/supabase-js@^2.42.4": - version "2.42.4" - resolved "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.42.4.tgz" - integrity sha512-tRn3wloKnnFdmEr3O2VIaxqzKACpyJ3ymLDmeq0V5lvhkJ+B4VH+QmDrnBbJJUkO2t+IHg65j5jombZxU4yMyw== - dependencies: - "@supabase/auth-js" "2.63.0" - "@supabase/functions-js" "2.3.0" - "@supabase/node-fetch" "2.6.15" - "@supabase/postgrest-js" "1.15.2" - "@supabase/realtime-js" "2.9.4" - "@supabase/storage-js" "2.5.5" - "@swc/counter@^0.1.3": version "0.1.3" resolved "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz" @@ -985,29 +817,19 @@ resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== -"@types/lodash@^4.17.0": - version "4.17.0" - resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.0.tgz" - integrity sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA== - -"@types/node@*", "@types/node@>=13.7.0", "@types/node@^20.11.8": +"@types/node@^20.11.8": version "20.11.20" resolved "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz" integrity sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg== dependencies: undici-types "~5.26.4" -"@types/phoenix@^1.5.4": - version "1.6.4" - resolved "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.6.4.tgz" - integrity sha512-B34A7uot1Cv0XtaHRYDATltAdKx0BvVKNgYNqE4WjtPUa4VQJM7kxeXcVKaH+KS+kCmZ+6w+QaUdcljiheiBJA== - "@types/prop-types@*": version "15.7.11" resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz" integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== -"@types/react-dom@^18.3.0": +"@types/react-dom@*", "@types/react-dom@^18.3.0": version "18.3.0" resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz" integrity sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg== @@ -1021,7 +843,7 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@18.2.48": +"@types/react@*", "@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@18.2.48": version "18.2.48" resolved "https://registry.npmjs.org/@types/react/-/react-18.2.48.tgz" integrity sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w== @@ -1035,13 +857,6 @@ resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz" integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== -"@types/ws@^8.5.10": - version "8.5.10" - resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz" - integrity sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A== - dependencies: - "@types/node" "*" - "@typescript-eslint/eslint-plugin@^7.7.1": version "7.9.0" resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.9.0.tgz" @@ -1068,7 +883,7 @@ "@typescript-eslint/visitor-keys" "7.2.0" debug "^4.3.4" -"@typescript-eslint/parser@^7.7.1": +"@typescript-eslint/parser@^7.0.0", "@typescript-eslint/parser@^7.7.1": version "7.9.0" resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.9.0.tgz" integrity sha512-qHMJfkL5qvgQB2aLvhUSXxbK7OLnDkwPzFalg458pxQgfxKDfT1ZDbHQM/I6mDIf/svlMkj21kzKuQ2ixJlatQ== @@ -1181,45 +996,11 @@ dependencies: server-only "^0.0.1" -"@vercel/og@^0.6.2": - version "0.6.2" - resolved "https://registry.npmjs.org/@vercel/og/-/og-0.6.2.tgz" - integrity sha512-OTe0KE37F5Y2eTys6eMnfopC+P4qr2ooXUTFyFPTplYSPwowmFk/HLD1FXtbKLjqsIH0SgekcJWad+C5uX4nkg== - dependencies: - "@resvg/resvg-wasm" "2.4.0" - satori "0.10.9" - yoga-wasm-web "0.3.3" - -"@xmtp/frames-validator@^0.5.2": - version "0.5.2" - resolved "https://registry.npmjs.org/@xmtp/frames-validator/-/frames-validator-0.5.2.tgz" - integrity sha512-m62HoAs47Dz3MHpW1Ec9fdmnvK9GJYyPJl6mWifKblWmoA4s67zAuTF3V8qXv8hEUag6t1XBRF6BpfeKDva4HQ== - dependencies: - "@noble/curves" "^1.3.0" - "@noble/hashes" "^1.3.3" - "@xmtp/proto" "3.45.0" - viem "^2.7.14" - -"@xmtp/proto@3.45.0": - version "3.45.0" - resolved "https://registry.npmjs.org/@xmtp/proto/-/proto-3.45.0.tgz" - integrity sha512-6d/UE/vqi1erpL+z/HSGvFOnJt+y7RE23g6SUUUB7tx75VAi5A0/uLwzPr/eyVkiHZGqlbktq8Rzco+HgTyTAw== - dependencies: - long "^5.2.0" - protobufjs "^7.0.0" - rxjs "^7.8.0" - undici "^5.8.1" - "@zoralabs/protocol-deployments@^0.1.13": version "0.1.13" - resolved "https://registry.yarnpkg.com/@zoralabs/protocol-deployments/-/protocol-deployments-0.1.13.tgz#e64e46a4b339b43de4f413ae7b5244cc0c3d3caa" + resolved "https://registry.npmjs.org/@zoralabs/protocol-deployments/-/protocol-deployments-0.1.13.tgz" integrity sha512-pAJ+rr7Q6RsulTl2EB+osUJMldGx+Sj/XfrkfOQsScL/RQlu+H6sL0sRVdaG3VLWVd9ua8szIRSeJ+RqwEZNyg== -abitype@0.9.8: - version "0.9.8" - resolved "https://registry.npmjs.org/abitype/-/abitype-0.9.8.tgz" - integrity sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ== - abitype@1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/abitype/-/abitype-1.0.0.tgz" @@ -1230,18 +1011,11 @@ acorn-jsx@^5.3.2: resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn@^8.9.0: +"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.9.0: version "8.11.3" resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz" integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== -agent-base@^7.0.2: - version "7.1.1" - resolved "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz" - integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== - dependencies: - debug "^4.3.4" - ajv@^6.12.4: version "6.12.6" resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" @@ -1252,13 +1026,6 @@ ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" @@ -1456,15 +1223,6 @@ axe-core@=4.7.0: resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz" integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ== -axios@1.6.5: - version "1.6.5" - resolved "https://registry.npmjs.org/axios/-/axios-1.6.5.tgz" - integrity sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg== - dependencies: - follow-redirects "^1.15.4" - form-data "^4.0.0" - proxy-from-env "^1.1.0" - axios@^1.6.2: version "1.6.8" resolved "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz" @@ -1486,40 +1244,11 @@ balanced-match@^1.0.0: resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@0.0.8: - version "0.0.8" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz" - integrity sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -bin-links@^4.0.3: - version "4.0.4" - resolved "https://registry.npmjs.org/bin-links/-/bin-links-4.0.4.tgz" - integrity sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA== - dependencies: - cmd-shim "^6.0.0" - npm-normalize-package-bin "^3.0.0" - read-cmd-shim "^4.0.0" - write-file-atomic "^5.0.0" - binary-extensions@^2.0.0: version "2.2.0" resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -bl@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" @@ -1542,7 +1271,7 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" -browserslist@^4.22.2: +browserslist@^4.22.2, "browserslist@>= 4.21.0": version "4.23.0" resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz" integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== @@ -1552,15 +1281,7 @@ browserslist@^4.22.2: node-releases "^2.0.14" update-browserslist-db "^1.0.13" -buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -bufferutil@^4.0.8: +bufferutil@^4.0.1: version "4.0.8" resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.8.tgz" integrity sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw== @@ -1595,17 +1316,12 @@ camelcase-css@^2.0.1: resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== -camelize@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz" - integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== - caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001587: version "1.0.30001589" resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz" integrity sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg== -chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -1613,11 +1329,6 @@ chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: ansi-styles "^4.1.0" supports-color "^7.1.0" -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - chokidar@^3.5.3: version "3.6.0" resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz" @@ -1633,11 +1344,6 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" -chownr@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz" - integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== - class-variance-authority@^0.7.0: version "0.7.0" resolved "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.0.tgz" @@ -1645,56 +1351,20 @@ class-variance-authority@^0.7.0: dependencies: clsx "2.0.0" -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-spinners@^2.5.0: - version "2.9.2" - resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz" - integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== - -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== - client-only@0.0.1: version "0.0.1" resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - -clsx@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz" - integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== - clsx@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.0.tgz" integrity sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg== -cmd-shim@^6.0.0: - version "6.0.3" - resolved "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.3.tgz" - integrity sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA== +clsx@2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz" + integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== color-convert@^2.0.1: version "2.0.1" @@ -1703,7 +1373,7 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@^1.1.4, color-name@~1.1.4: +color-name@~1.1.4: version "1.1.4" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== @@ -1715,52 +1385,16 @@ combined-stream@^1.0.8: dependencies: delayed-stream "~1.0.0" -commander@8.3.0: - version "8.3.0" - resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz" - integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== - commander@^4.0.0: version "4.1.1" resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== -compare-versions@4.1.4: - version "4.1.4" - resolved "https://registry.npmjs.org/compare-versions/-/compare-versions-4.1.4.tgz" - integrity sha512-FemMreK9xNyL8gQevsdRMrvO4lFCkQP7qbuktn1q8ndcNk1+0mz7lgE7b/sNvbhVgY4w6tMN1FDp6aADjqw2rw== - concat-map@0.0.1: version "0.0.1" resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concurrently@6.5.1: - version "6.5.1" - resolved "https://registry.npmjs.org/concurrently/-/concurrently-6.5.1.tgz" - integrity sha512-FlSwNpGjWQfRwPLXvJ/OgysbBxPkWpiVjy1042b0U7on7S7qwwMIILRj7WTN1mTgqa582bG6NFuScOoh6Zgdag== - dependencies: - chalk "^4.1.0" - date-fns "^2.16.1" - lodash "^4.17.21" - rxjs "^6.6.3" - spawn-command "^0.0.2-1" - supports-color "^8.1.0" - tree-kill "^1.2.2" - yargs "^16.2.0" - -consola@^2.15.0: - version "2.15.3" - resolved "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz" - integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== - -console.table@0.10.0: - version "0.10.0" - resolved "https://registry.npmjs.org/console.table/-/console.table-0.10.0.tgz" - integrity sha512-dPyZofqggxuvSf7WXvNjuRfnsOk1YazkVP8FdxH4tcH2c37wc79/Yl6Bhr7Lsu00KMgy2ql/qCMuNu8xctZM8g== - dependencies: - easy-table "1.1.0" - cross-spawn@^7.0.0, cross-spawn@^7.0.2: version "7.0.3" resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" @@ -1770,30 +1404,6 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2: shebang-command "^2.0.0" which "^2.0.1" -css-background-parser@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/css-background-parser/-/css-background-parser-0.1.0.tgz" - integrity sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA== - -css-box-shadow@1.0.0-3: - version "1.0.0-3" - resolved "https://registry.npmjs.org/css-box-shadow/-/css-box-shadow-1.0.0-3.tgz" - integrity sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg== - -css-color-keywords@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz" - integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg== - -css-to-react-native@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz" - integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ== - dependencies: - camelize "^1.0.0" - css-color-keywords "^1.0.0" - postcss-value-parser "^4.0.2" - cssesc@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" @@ -1809,11 +1419,6 @@ damerau-levenshtein@^1.0.8: resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== -data-uri-to-buffer@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz" - integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== - data-view-buffer@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz" @@ -1841,44 +1446,25 @@ data-view-byte-offset@^1.0.0: es-errors "^1.3.0" is-data-view "^1.0.1" -date-fns@^2.16.1: - version "2.30.0" - resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz" - integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: - "@babel/runtime" "^7.21.0" - -dayjs@^1.11.11: - version "1.11.11" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.11.tgz#dfe0e9d54c5f8b68ccf8ca5f72ac603e7e5ed59e" - integrity sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg== + ms "^2.1.1" -debug@4, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: +debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: version "4.3.4" resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - deep-is@^0.1.3: version "0.1.4" resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== - dependencies: - clone "^1.0.2" - define-data-property@^1.0.1, define-data-property@^1.1.4: version "1.1.4" resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" @@ -1948,23 +1534,11 @@ eastasianwidth@^0.2.0: resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== -easy-table@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz" - integrity sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA== - optionalDependencies: - wcwidth ">=1.0.1" - electron-to-chromium@^1.4.668: version "1.4.682" resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.682.tgz" integrity sha512-oCglfs8yYKs9RQjJFOHonSnhikPK3y+0SvSYc/YpYJV//6rqc0/hbwd0c7vgK4vrl6y2gJAwjkhkSGWK+z4KRA== -emoji-regex@^10.2.1: - version "10.3.0" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz" - integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw== - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" @@ -2104,16 +1678,6 @@ escalade@^3.1.1: resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz" integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== -escape-html@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" @@ -2173,7 +1737,7 @@ eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: dependencies: debug "^3.2.7" -eslint-plugin-import@^2.28.1, eslint-plugin-import@^2.29.1: +eslint-plugin-import@*, eslint-plugin-import@^2.28.1, eslint-plugin-import@^2.29.1, eslint-plugin-import@>=1.4.0: version "2.29.1" resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz" integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== @@ -2268,7 +1832,7 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@^8: +eslint@*, "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", "eslint@^7.23.0 || ^8.0.0", eslint@^8, eslint@^8.56.0, eslint@>=7.0.0: version "8.57.0" resolved "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz" integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== @@ -2345,15 +1909,6 @@ esutils@^2.0.2: resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" @@ -2380,11 +1935,6 @@ fast-levenshtein@^2.0.6: resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== -fast-safe-stringify@2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz" - integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== - fastq@^1.6.0: version "1.17.1" resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz" @@ -2392,26 +1942,6 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" -fetch-blob@^3.1.2, fetch-blob@^3.1.4: - version "3.2.0" - resolved "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz" - integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== - dependencies: - node-domexception "^1.0.0" - web-streams-polyfill "^3.0.3" - -fflate@^0.7.3: - version "0.7.4" - resolved "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz" - integrity sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw== - -figures@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" @@ -2448,7 +1978,7 @@ flatted@^3.2.9: resolved "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz" integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== -follow-redirects@^1.15.4, follow-redirects@^1.15.6: +follow-redirects@^1.15.6: version "1.15.6" resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz" integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== @@ -2477,37 +2007,16 @@ form-data@^4.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" -formdata-polyfill@^4.0.10: - version "4.0.10" - resolved "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz" - integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== - dependencies: - fetch-blob "^3.1.2" - fraction.js@^4.3.7: version "4.3.7" resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz" integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== -fs-extra@10.1.0: - version "10.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@~2.3.2: - version "2.3.3" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - function-bind@^1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" @@ -2528,11 +2037,6 @@ functions-have-names@^1.2.3: resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: version "1.2.4" resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" @@ -2565,7 +2069,7 @@ get-tsconfig@^4.5.0: dependencies: resolve-pkg-maps "^1.0.0" -glob-parent@^5.1.2, glob-parent@~5.1.2: +glob-parent@^5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -2579,7 +2083,14 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@10.3.10, glob@^10.3.10: +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@^10.3.10: version "10.3.10" resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz" integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== @@ -2590,7 +2101,7 @@ glob@10.3.10, glob@^10.3.10: minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-scurry "^1.10.1" -glob@7.2.3, glob@^7.1.3: +glob@^7.1.3: version "7.2.3" resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -2602,16 +2113,16 @@ glob@7.2.3, glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^10.3.7: - version "10.3.15" - resolved "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz" - integrity sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw== +glob@10.3.10: + version "10.3.10" + resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz" + integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== dependencies: foreground-child "^3.1.0" - jackspeak "^2.3.6" + jackspeak "^2.3.5" minimatch "^9.0.1" - minipass "^7.0.4" - path-scurry "^1.11.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry "^1.10.1" globals@^13.19.0: version "13.24.0" @@ -2647,7 +2158,7 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" -graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4: +graceful-fs@^4.2.11, graceful-fs@^4.2.4: version "4.2.11" resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -2698,31 +2209,6 @@ hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: dependencies: function-bind "^1.1.2" -hex-rgb@^4.1.0: - version "4.3.0" - resolved "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz" - integrity sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw== - -https-proxy-agent@^7.0.2: - version "7.0.4" - resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz" - integrity sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg== - dependencies: - agent-base "^7.0.2" - debug "4" - -iconv-lite@^0.4.24: - version "0.4.24" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - ignore@^5.2.0, ignore@^5.3.1: version "5.3.1" resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz" @@ -2749,32 +2235,11 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4: +inherits@2: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -inquirer@8.2.6: - version "8.2.6" - resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz" - integrity sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg== - dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.1" - cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" - lodash "^4.17.21" - mute-stream "0.0.8" - ora "^5.4.1" - run-async "^2.4.0" - rxjs "^7.5.5" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" - wrap-ansi "^6.0.1" - internal-slot@^1.0.7: version "1.0.7" resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz" @@ -2885,11 +2350,6 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - is-map@^2.0.3: version "2.0.3" resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz" @@ -2958,11 +2418,6 @@ is-typed-array@^1.1.13: dependencies: which-typed-array "^1.1.14" -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - is-weakmap@^2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz" @@ -2998,11 +2453,6 @@ isows@1.0.3: resolved "https://registry.npmjs.org/isows/-/isows-1.0.3.tgz" integrity sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg== -iterare@1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/iterare/-/iterare-1.2.1.tgz" - integrity sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q== - iterator.prototype@^1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz" @@ -3014,7 +2464,7 @@ iterator.prototype@^1.1.2: reflect.getprototypeof "^1.0.4" set-function-name "^2.0.1" -jackspeak@^2.3.5, jackspeak@^2.3.6: +jackspeak@^2.3.5: version "2.3.6" resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz" integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== @@ -3062,15 +2512,6 @@ json5@^1.0.2: dependencies: minimist "^1.2.0" -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: version "3.3.5" resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz" @@ -3118,14 +2559,6 @@ lilconfig@^3.0.0: resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz" integrity sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ== -linebreak@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/linebreak/-/linebreak-1.1.0.tgz" - integrity sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ== - dependencies: - base64-js "0.0.8" - unicode-trie "^2.0.0" - lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" @@ -3138,34 +2571,11 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== -lodash@4.17.21, lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - -long@^5.0.0, long@^5.2.0: - version "5.2.3" - resolved "https://registry.npmjs.org/long/-/long-5.2.3.tgz" - integrity sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q== - loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" @@ -3208,18 +2618,6 @@ mime-types@^2.1.12: dependencies: mime-db "1.52.0" -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -minimatch@9.0.3: - version "9.0.3" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" - integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== - dependencies: - brace-expansion "^2.0.1" - minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" @@ -3227,46 +2625,42 @@ minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: dependencies: brace-expansion "^1.1.7" -minimatch@^9.0.1, minimatch@^9.0.4: +minimatch@^9.0.1: + version "9.0.4" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz" + integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^9.0.4: version "9.0.4" resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz" integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== dependencies: brace-expansion "^2.0.1" +minimatch@9.0.3: + version "9.0.3" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== + dependencies: + brace-expansion "^2.0.1" + minimist@^1.2.0, minimist@^1.2.6: version "1.2.8" resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4, minipass@^7.1.0: +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": version "7.1.1" resolved "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz" integrity sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA== -minizlib@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz" - integrity sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg== - dependencies: - minipass "^7.0.4" - rimraf "^5.0.5" - -mkdirp@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz" - integrity sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg== - -ms@2.1.2, ms@^2.1.1: +ms@^2.1.1, ms@2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -mute-stream@0.0.8: - version "0.0.8" - resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - mz@^2.7.0: version "2.7.0" resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" @@ -3286,7 +2680,7 @@ natural-compare@^1.4.0: resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -next@^14.2.2: +next@^14.2.2, "next@>= 13": version "14.2.3" resolved "https://registry.npmjs.org/next/-/next-14.2.3.tgz" integrity sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A== @@ -3309,27 +2703,6 @@ next@^14.2.2: "@next/swc-win32-ia32-msvc" "14.2.3" "@next/swc-win32-x64-msvc" "14.2.3" -node-domexception@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-fetch@^2.6.1: - version "2.7.0" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" - integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== - dependencies: - whatwg-url "^5.0.0" - -node-fetch@^3.3.2: - version "3.3.2" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz" - integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA== - dependencies: - data-uri-to-buffer "^4.0.0" - fetch-blob "^3.1.4" - formdata-polyfill "^4.0.10" - node-gyp-build@^4.3.0: version "4.8.0" resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz" @@ -3350,11 +2723,6 @@ normalize-range@^0.1.2: resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== -npm-normalize-package-bin@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz" - integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== - object-assign@^4.0.1, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" @@ -3438,13 +2806,6 @@ once@^1.3.0: dependencies: wrappy "1" -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - optionator@^0.9.3: version "0.9.4" resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz" @@ -3457,26 +2818,6 @@ optionator@^0.9.3: type-check "^0.4.0" word-wrap "^1.2.5" -ora@^5.4.1: - version "5.4.1" - resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - dependencies: - bl "^4.1.0" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-spinners "^2.5.0" - is-interactive "^1.0.0" - is-unicode-supported "^0.1.0" - log-symbols "^4.1.0" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - p-limit@^3.0.2: version "3.1.0" resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" @@ -3491,11 +2832,6 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" -pako@^0.2.5: - version "0.2.9" - resolved "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz" - integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== - parent-module@^1.0.0: version "1.0.1" resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" @@ -3503,14 +2839,6 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-css-color@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/parse-css-color/-/parse-css-color-0.2.1.tgz" - integrity sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg== - dependencies: - color-name "^1.1.4" - hex-rgb "^4.1.0" - path-exists@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" @@ -3531,7 +2859,7 @@ path-parse@^1.0.7: resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-scurry@^1.10.1, path-scurry@^1.11.0: +path-scurry@^1.10.1: version "1.11.1" resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== @@ -3539,11 +2867,6 @@ path-scurry@^1.10.1, path-scurry@^1.11.0: lru-cache "^10.2.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" -path-to-regexp@3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.2.0.tgz" - integrity sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA== - path-type@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" @@ -3613,11 +2936,20 @@ postcss-selector-parser@^6.0.11: cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.2.0: +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== +postcss@^8.0.0, postcss@^8.1.0, postcss@^8.2.14, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.35, postcss@^8.4.4, postcss@>=8.0.9: + version "8.4.35" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz" + integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.0" + source-map-js "^1.0.2" + postcss@8.4.31: version "8.4.31" resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz" @@ -3627,15 +2959,6 @@ postcss@8.4.31: picocolors "^1.0.0" source-map-js "^1.0.2" -postcss@^8.4.23, postcss@^8.4.35, postcss@^8.4.4: - version "8.4.35" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz" - integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== - dependencies: - nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.0.2" - prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" @@ -3655,24 +2978,6 @@ prop-types@^15.8.1: object-assign "^4.1.1" react-is "^16.13.1" -protobufjs@^7.0.0: - version "7.2.6" - resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.6.tgz" - integrity sha512-dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw== - dependencies: - "@protobufjs/aspromise" "^1.1.2" - "@protobufjs/base64" "^1.1.2" - "@protobufjs/codegen" "^2.0.4" - "@protobufjs/eventemitter" "^1.1.0" - "@protobufjs/fetch" "^1.1.0" - "@protobufjs/float" "^1.0.2" - "@protobufjs/inquire" "^1.1.0" - "@protobufjs/path" "^1.1.2" - "@protobufjs/pool" "^1.1.0" - "@protobufjs/utf8" "^1.1.0" - "@types/node" ">=13.7.0" - long "^5.0.0" - proxy-from-env@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz" @@ -3688,7 +2993,7 @@ queue-microtask@^1.2.2: resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -react-dom@^18.3.1: +"react-dom@^16.8 || ^17.0 || ^18.0", "react-dom@^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", react-dom@^18.2.0, react-dom@^18.3.1, react-dom@>=16.8.0: version "18.3.1" resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz" integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== @@ -3701,19 +3006,12 @@ react-icons@^5.1.0: resolved "https://registry.npmjs.org/react-icons/-/react-icons-5.1.0.tgz" integrity sha512-D3zug1270S4hbSlIRJ0CUS97QE1yNNKDjzQe3HqY0aefp2CBn9VgzgES27sRR2gOvFK+0CNx/BW0ggOESp6fqQ== -react-infinite-scroll-component@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/react-infinite-scroll-component/-/react-infinite-scroll-component-6.1.0.tgz" - integrity sha512-SQu5nCqy8DxQWpnUVLx7V7b7LcA37aM7tvoWjTLZp1dk6EJibM5/4EJKzOnl07/BsM1Y40sKLuqjCwwH/xV0TQ== - dependencies: - throttle-debounce "^2.1.0" - react-is@^16.13.1: version "16.13.1" resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -react-remove-scroll-bar@^2.3.3: +react-remove-scroll-bar@^2.3.3, react-remove-scroll-bar@^2.3.6: version "2.3.6" resolved "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz" integrity sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g== @@ -3732,17 +3030,16 @@ react-remove-scroll@2.5.5: use-callback-ref "^1.3.0" use-sidecar "^1.1.2" -react-spring@^9.7.3: - version "9.7.3" - resolved "https://registry.npmjs.org/react-spring/-/react-spring-9.7.3.tgz" - integrity sha512-oTxDpFV5gzq7jQX6+bU0SVq+vX8VnuuT5c8Zwn6CpDErOPvCmV+DRkPiEBtaL3Ozgzwiy5yFx83N0h303j/r3A== +react-remove-scroll@2.6.0: + version "2.6.0" + resolved "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.6.0.tgz" + integrity sha512-I2U4JVEsQenxDAKaVa3VZ/JeJZe0/2DxPWL8Tj8yLKctQJQiZM52pn/GWFpSp8dftjM3pSAHVJZscAnC/y+ySQ== dependencies: - "@react-spring/core" "~9.7.3" - "@react-spring/konva" "~9.7.3" - "@react-spring/native" "~9.7.3" - "@react-spring/three" "~9.7.3" - "@react-spring/web" "~9.7.3" - "@react-spring/zdog" "~9.7.3" + react-remove-scroll-bar "^2.3.6" + react-style-singleton "^2.2.1" + tslib "^2.1.0" + use-callback-ref "^1.3.0" + use-sidecar "^1.1.2" react-style-singleton@^2.2.1: version "2.2.1" @@ -3753,7 +3050,7 @@ react-style-singleton@^2.2.1: invariant "^2.2.4" tslib "^2.0.0" -react@^18.3.1: +react@*, "react@^16.5.1 || ^17.0.0 || ^18.0.0", "react@^16.8 || ^17.0 || ^18.0", "react@^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.x || ^17.x || ^18.x", "react@^18 || ^19", react@^18.2.0, react@^18.3.1, "react@>= 16.8.0 || 17.x.x || ^18.0.0-0", react@>=16.8.0: version "18.3.1" resolved "https://registry.npmjs.org/react/-/react-18.3.1.tgz" integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== @@ -3767,20 +3064,6 @@ read-cache@^1.0.0: dependencies: pify "^2.3.0" -read-cmd-shim@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz" - integrity sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q== - -readable-stream@^3.4.0: - version "3.6.2" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - readdirp@~3.6.0: version "3.6.0" resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" @@ -3788,11 +3071,6 @@ readdirp@~3.6.0: dependencies: picomatch "^2.2.1" -reflect-metadata@0.1.13: - version "0.1.13" - resolved "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz" - integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== - reflect.getprototypeof@^1.0.4: version "1.0.6" resolved "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz" @@ -3821,11 +3099,6 @@ regexp.prototype.flags@^1.5.2: es-errors "^1.3.0" set-function-name "^2.0.1" -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" @@ -3854,14 +3127,6 @@ resolve@^2.0.0-next.5: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - reusify@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" @@ -3874,18 +3139,6 @@ rimraf@^3.0.2: dependencies: glob "^7.1.3" -rimraf@^5.0.5: - version "5.0.7" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz" - integrity sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg== - dependencies: - glob "^10.3.7" - -run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" @@ -3893,20 +3146,6 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -rxjs@7.8.1, rxjs@^7.5.5, rxjs@^7.8.0: - version "7.8.1" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== - dependencies: - tslib "^2.1.0" - -rxjs@^6.6.3: - version "6.6.7" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" - integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== - dependencies: - tslib "^1.9.0" - safe-array-concat@^1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz" @@ -3917,11 +3156,6 @@ safe-array-concat@^1.1.2: has-symbols "^1.0.3" isarray "^2.0.5" -safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - safe-regex-test@^1.0.3: version "1.0.3" resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz" @@ -3931,27 +3165,6 @@ safe-regex-test@^1.0.3: es-errors "^1.3.0" is-regex "^1.1.4" -"safer-buffer@>= 2.1.2 < 3": - version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -satori@0.10.9: - version "0.10.9" - resolved "https://registry.npmjs.org/satori/-/satori-0.10.9.tgz" - integrity sha512-XU9EELUEZuioT4acLIpCXxHcFzrsC8muvg0MY28d+TlqwxbkTzBmWbw+3+hnCzXT7YZ0Qm8k3eXktDaEu+qmEw== - dependencies: - "@shuding/opentype.js" "1.4.0-beta.0" - css-background-parser "^0.1.0" - css-box-shadow "1.0.0-3" - css-to-react-native "^3.0.0" - emoji-regex "^10.2.1" - escape-html "^1.0.3" - linebreak "^1.1.0" - parse-css-color "^0.2.1" - postcss-value-parser "^4.2.0" - yoga-wasm-web "^0.3.3" - scheduler@^0.23.2: version "0.23.2" resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz" @@ -3964,7 +3177,12 @@ semver@^6.3.1: resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.5.4, semver@^7.6.0: +semver@^7.5.4: + version "7.6.2" + resolved "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz" + integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== + +semver@^7.6.0: version "7.6.2" resolved "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz" integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== @@ -4018,11 +3236,6 @@ side-channel@^1.0.4, side-channel@^1.0.6: get-intrinsic "^1.2.4" object-inspect "^1.13.1" -signal-exit@^3.0.2: - version "3.0.7" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - signal-exit@^4.0.1: version "4.1.0" resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" @@ -4038,11 +3251,6 @@ source-map-js@^1.0.2: resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -spawn-command@^0.0.2-1: - version "0.0.2-1" - resolved "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz" - integrity sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg== - streamsearch@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz" @@ -4057,7 +3265,7 @@ streamsearch@^1.1.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^4.1.0, string-width@^4.2.0: +string-width@^4.1.0: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -4075,11 +3283,6 @@ string-width@^5.0.1, string-width@^5.1.2: emoji-regex "^9.2.2" strip-ansi "^7.0.1" -string.prototype.codepointat@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz" - integrity sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg== - string.prototype.matchall@^4.0.10: version "4.0.11" resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz" @@ -4126,13 +3329,6 @@ string.prototype.trimstart@^1.0.8: define-properties "^1.2.1" es-object-atoms "^1.0.0" -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - "strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" @@ -4184,16 +3380,6 @@ sucrase@^3.32.0: pirates "^4.0.1" ts-interface-checker "^0.1.9" -supabase@^1.167.4: - version "1.167.4" - resolved "https://registry.npmjs.org/supabase/-/supabase-1.167.4.tgz" - integrity sha512-DTaTsYQ48FdOPvTTl3H1cQnGDHvm4kQdBakeI5qbs7BFZgu2SRJDYRrCcSgH9sbZReOKrQdJCPfNpoy/Z359gA== - dependencies: - bin-links "^4.0.3" - https-proxy-agent "^7.0.2" - node-fetch "^3.3.2" - tar "7.1.0" - supports-color@^7.1.0: version "7.2.0" resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" @@ -4201,13 +3387,6 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^8.1.0: - version "8.1.1" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" @@ -4225,7 +3404,7 @@ tailwindcss-animate@^1.0.7: resolved "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz" integrity sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA== -tailwindcss@^3.4.1: +tailwindcss@^3.4.0, tailwindcss@^3.4.1, "tailwindcss@>=3.0.0 || insiders": version "3.4.1" resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz" integrity sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA== @@ -4258,18 +3437,6 @@ tapable@^2.2.0: resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== -tar@7.1.0: - version "7.1.0" - resolved "https://registry.npmjs.org/tar/-/tar-7.1.0.tgz" - integrity sha512-ENhg4W6BmjYxl8GTaE7/h99f0aXiSWv4kikRZ9n2/JRxypZniE84ILZqimAhxxX7Zb8Px6pFdheW3EeHfhnXQQ== - dependencies: - "@isaacs/fs-minipass" "^4.0.0" - chownr "^3.0.0" - minipass "^7.1.0" - minizlib "^3.0.1" - mkdirp "^3.0.1" - yallist "^5.0.0" - text-table@^0.2.0: version "0.2.0" resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" @@ -4289,28 +3456,6 @@ thenify-all@^1.0.0: dependencies: any-promise "^1.0.0" -throttle-debounce@^2.1.0: - version "2.3.0" - resolved "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-2.3.0.tgz" - integrity sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ== - -through@^2.3.6: - version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -tiny-inflate@^1.0.0: - version "1.0.3" - resolved "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz" - integrity sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw== - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" @@ -4318,16 +3463,6 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -tree-kill@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz" - integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== - ts-api-utils@^1.0.1, ts-api-utils@^1.3.0: version "1.3.0" resolved "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz" @@ -4348,16 +3483,11 @@ tsconfig-paths@^3.15.0: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@2.6.2, tslib@^2.0.0, tslib@^2.1.0, tslib@^2.4.0: +tslib@^2.0.0, tslib@^2.1.0, tslib@^2.4.0: version "2.6.2" resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -tslib@^1.9.0: - version "1.14.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" @@ -4370,11 +3500,6 @@ type-fest@^0.20.2: resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - typed-array-buffer@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz" @@ -4419,18 +3544,11 @@ typed-array-length@^1.0.6: is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" -typescript@^5.3.3: +typescript@^5.3.3, typescript@>=3.3.1, typescript@>=4.2.0, typescript@>=5.0.4: version "5.3.3" resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz" integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== -uid@2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/uid/-/uid-2.0.2.tgz" - integrity sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g== - dependencies: - "@lukeed/csprng" "^1.0.0" - unbox-primitive@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" @@ -4446,26 +3564,6 @@ undici-types@~5.26.4: resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -undici@^5.8.1: - version "5.28.3" - resolved "https://registry.npmjs.org/undici/-/undici-5.28.3.tgz" - integrity sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA== - dependencies: - "@fastify/busboy" "^2.0.0" - -unicode-trie@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz" - integrity sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ== - dependencies: - pako "^0.2.5" - tiny-inflate "^1.0.0" - -universalify@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" - integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== - update-browserslist-db@^1.0.13: version "1.0.13" resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz" @@ -4496,47 +3594,26 @@ use-sidecar@^1.1.2: detect-node-es "^1.1.0" tslib "^2.0.0" -usehooks-ts@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/usehooks-ts/-/usehooks-ts-3.1.0.tgz#156119f36efc85f1b1952616c02580f140950eca" - integrity sha512-bBIa7yUyPhE1BCc0GmR96VU/15l/9gP1Ch5mYdLcFBaFGQsdmXkvjV0TtOqW1yUd6VjIwDunm+flSciCQXujiw== - dependencies: - lodash.debounce "^4.0.8" - -utf-8-validate@^6.0.3: +utf-8-validate@>=5.0.2: version "6.0.3" resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.3.tgz" integrity sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA== dependencies: node-gyp-build "^4.3.0" -util-deprecate@^1.0.1, util-deprecate@^1.0.2: +util-deprecate@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== vaul@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/vaul/-/vaul-0.9.1.tgz#3640198e04636b209b1f907fcf3079bec6ecc66b" - integrity sha512-fAhd7i4RNMinx+WEm6pF3nOl78DFkAazcN04ElLPFF9BMCNGbY/kou8UMhIcicm0rJCNePJP0Yyza60gGOD0Jw== - dependencies: - "@radix-ui/react-dialog" "^1.0.4" - -viem@^1.19.9: - version "1.21.4" - resolved "https://registry.npmjs.org/viem/-/viem-1.21.4.tgz" - integrity sha512-BNVYdSaUjeS2zKQgPs+49e5JKocfo60Ib2yiXOWBT6LuVxY1I/6fFX3waEtpXvL1Xn4qu+BVitVtMh9lyThyhQ== + version "0.9.9" + resolved "https://registry.npmjs.org/vaul/-/vaul-0.9.9.tgz" + integrity sha512-7afKg48srluhZwIkaU+lgGtFCUsYBSGOl8vcc8N/M3YQlZFlynHD15AE+pwrYdc826o7nrIND4lL9Y6b9WWZZQ== 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.9.8" - isows "1.0.3" - ws "8.13.0" + "@radix-ui/react-dialog" "^1.1.1" -viem@^2.7.12, viem@^2.7.14, viem@^2.9.17: +viem@^2.7.12, viem@^2.9.17: version "2.9.17" resolved "https://registry.npmjs.org/viem/-/viem-2.9.17.tgz" integrity sha512-xMQ4JhgR1fPXQYagEeSsq9lmKXXooHP2gcnowb0eJRq3NTheyzpVBtMuH8DZnnWT4aeFepZktqSXlFul+Ou5Xg== @@ -4550,31 +3627,6 @@ viem@^2.7.12, viem@^2.7.14, viem@^2.9.17: isows "1.0.3" ws "8.13.0" -wcwidth@>=1.0.1, wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - -web-streams-polyfill@^3.0.3: - version "3.3.3" - resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz" - integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - which-boxed-primitive@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" @@ -4646,24 +3698,6 @@ word-wrap@^1.2.5: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^6.0.1: - version "6.2.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" @@ -4678,63 +3712,22 @@ wrappy@1: resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -write-file-atomic@^5.0.0: - version "5.0.1" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz" - integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^4.0.1" +ws@*, ws@^8.16.0: + version "8.16.0" + resolved "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz" + integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== ws@8.13.0: version "8.13.0" resolved "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz" integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== -ws@^8.14.2, ws@^8.16.0: - version "8.16.0" - resolved "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz" - integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz" - integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== - yaml@^2.3.4: version "2.4.0" resolved "https://registry.npmjs.org/yaml/-/yaml-2.4.0.tgz" integrity sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ== -yargs-parser@^20.2.2: - version "20.2.9" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -yoga-wasm-web@0.3.3, yoga-wasm-web@^0.3.3: - version "0.3.3" - resolved "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz" - integrity sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==